legacy-paperclip
legacy-paperclip copied to clipboard
Paperclip is a common language for designers and developers
This could provide additional functionality that isn't supported by HTML and CSS out of the box. For example: Can be expressed with: ```css div { style { /* left right...
Ideally a collection of components that integrate with Wordpress
It will be confusing for users that they cannot re-use the same name for different expressions. For example: ```javascript style Button { } component Button { } ``` Will produce...
Components would need to be wrapped around web components, and then props would need to be exposed to enable designers to customize UIs.
E.g: ```javascript export const useSomething = (props) => { return { items: [] }; }; useSomething.props = { props: { }, returns: { items: ["string"] } }; ``` ☝️ use...
```javascript public variant mobile trigger { "@media screen and (max-width: 100px)" } public component Test { render div { style trigger mobile { } } } ``` Alternatively: ```javascript public...
``` public variant mobile trigger { "@media screen and (max-width: 100px)" } public token fontSize { default 12px variant mobile 32px } ```