Ted Patrick

Results 50 comments of Ted Patrick

Within PyScript today, we utilize TypeScript and Rollup which only work when using a NodeJS build process and the node ecosystem of libraries. I believe in using the right tool...

Contributed examples should be submitted as PRs to https://github.com/pyscript/pyscript-collective. We are focusing the examples within [PyScript](https://github.com/pyscript/pyscript) on feature use cases and testing. Thanks for your patience, understanding, and contribution.

Starting is hard and we are just now ironing out the process and direction. We had a long delay in approving @pauleveritt work on the Collective, and we are working...

I feel these components should not exist in PyScript. I view them as signals that the event API is not simple enough. Rather than reinvent button, input, and (long list...

Assuming our event implementation supported all event types... we can add custom lifecycle events for PyScript. ```html My app elements import js @handler( event="py-start" ) def start_me(e): js.console.log("pyscript started") @handler(...

Pardon my bold tone. I simply want to align with the Web and enable any of these elements to just work. https://shoelace.style/ https://fast.design/ https://github.com/carbon-design-system/carbon-web-components https://material-components.github.io/material-web https://ionicframework.com/docs/components https://patternflyelements.org/ https://developer.salesforce.com/docs/component-library/overview/components https://auro.alaskaair.com/ https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong

Yes I have had a few proposals and lacked an effective place to put them. I would also welcome alternative approaches to core problems and alternative ways of app building....

1. Added the https://github.com/pyscript/research 2. Added WIP event research as a [proposal here](https://github.com/pyscript/research/tree/main/proposals/wip_events)

Yes, we need a way to get the event passed cleanly into the function. Looks like an area of work.

I am working on this at 2 levels: 1. How do we subscribe py-{event} at startup 2. How do we support adding a py-{event} attribute at runtime after PyScript has...