@webstudio-is/react-sdk 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/app/custom-components/image.js +46 -0
- package/lib/app/custom-components/index.js +18 -0
- package/lib/app/custom-components/link.js +6 -0
- package/lib/app/custom-components/rich-text-link.js +6 -0
- package/lib/app/custom-components/shared/remix-link.js +29 -0
- package/lib/app/handle-request.server.js +19 -0
- package/lib/{remix → app}/index.js +1 -0
- package/lib/app/params.js +10 -0
- package/lib/app/root.js +40 -0
- package/lib/cjs/app/custom-components/image.cjs +63 -0
- package/lib/cjs/app/custom-components/index.cjs +38 -0
- package/lib/cjs/app/custom-components/link.cjs +26 -0
- package/lib/cjs/app/custom-components/rich-text-link.cjs +26 -0
- package/lib/cjs/app/custom-components/shared/remix-link.cjs +49 -0
- package/lib/cjs/app/handle-request.server.cjs +39 -0
- package/lib/cjs/app/index.cjs +20 -0
- package/lib/cjs/app/params.cjs +30 -0
- package/lib/cjs/app/root.cjs +60 -0
- package/lib/cjs/components/__generated__/body.props.json +491 -0
- package/lib/cjs/components/__generated__/bold.props.json +491 -0
- package/lib/cjs/components/__generated__/box.props.json +508 -0
- package/lib/cjs/components/__generated__/button.props.json +547 -0
- package/lib/cjs/components/__generated__/form.props.json +531 -0
- package/lib/cjs/components/__generated__/heading.props.json +497 -0
- package/lib/cjs/components/__generated__/image.props.json +560 -0
- package/lib/cjs/components/__generated__/input.props.json +657 -0
- package/lib/cjs/components/__generated__/italic.props.json +491 -0
- package/lib/cjs/components/__generated__/link.props.json +547 -0
- package/lib/cjs/components/__generated__/paragraph.props.json +491 -0
- package/lib/cjs/components/__generated__/rich-text-link.props.json +547 -0
- package/lib/cjs/components/__generated__/span.props.json +491 -0
- package/lib/cjs/components/__generated__/subscript.props.json +491 -0
- package/lib/cjs/components/__generated__/superscript.props.json +491 -0
- package/lib/cjs/components/__generated__/text-block.props.json +491 -0
- package/lib/cjs/components/body.cjs +29 -6
- package/lib/cjs/components/body.ws.cjs +83 -59
- package/lib/cjs/components/bold.cjs +29 -6
- package/lib/cjs/components/bold.ws.cjs +35 -11
- package/lib/cjs/components/box.cjs +29 -7
- package/lib/cjs/components/box.ws.cjs +40 -16
- package/lib/cjs/components/button.cjs +33 -8
- package/lib/cjs/components/button.ws.cjs +36 -12
- package/lib/cjs/components/component-type.cjs +77 -27
- package/lib/cjs/components/form.cjs +29 -6
- package/lib/cjs/components/form.ws.cjs +45 -21
- package/lib/cjs/components/heading.cjs +29 -7
- package/lib/cjs/components/heading.ws.cjs +36 -12
- package/lib/cjs/components/image.cjs +39 -14
- package/lib/cjs/components/image.ws.cjs +45 -24
- package/lib/cjs/components/index.cjs +145 -35
- package/lib/cjs/components/input.cjs +29 -6
- package/lib/cjs/components/input.ws.cjs +35 -11
- package/lib/cjs/components/italic.cjs +29 -6
- package/lib/cjs/components/italic.ws.cjs +40 -16
- package/lib/cjs/components/link.cjs +32 -7
- package/lib/cjs/components/link.ws.cjs +46 -22
- package/lib/cjs/components/paragraph.cjs +29 -6
- package/lib/cjs/components/paragraph.ws.cjs +36 -12
- package/lib/cjs/components/rich-text-link.cjs +33 -0
- package/lib/cjs/components/rich-text-link.ws.cjs +38 -0
- package/lib/cjs/components/span.cjs +29 -6
- package/lib/cjs/components/span.ws.cjs +35 -11
- package/lib/cjs/components/subscript.cjs +29 -6
- package/lib/cjs/components/subscript.ws.cjs +35 -11
- package/lib/cjs/components/superscript.cjs +29 -6
- package/lib/cjs/components/superscript.ws.cjs +35 -11
- package/lib/cjs/components/text-block.cjs +29 -6
- package/lib/cjs/components/text-block.ws.cjs +42 -18
- package/lib/cjs/css/breakpoints.cjs +27 -7
- package/lib/cjs/css/categories.cjs +218 -203
- package/lib/cjs/css/get-browser-style.cjs +56 -40
- package/lib/cjs/css/index.cjs +18 -17
- package/lib/cjs/db/index.cjs +17 -16
- package/lib/cjs/db/instance.cjs +37 -17
- package/lib/cjs/db/types.cjs +15 -1
- package/lib/cjs/index.cjs +30 -34
- package/lib/cjs/pubsub/create.cjs +76 -61
- package/lib/cjs/pubsub/index.cjs +16 -15
- package/lib/cjs/tree/create-elements-tree.cjs +90 -48
- package/lib/cjs/tree/index.cjs +18 -17
- package/lib/cjs/tree/root.cjs +43 -15
- package/lib/cjs/tree/session-storage-polyfill.cjs +60 -37
- package/lib/cjs/tree/wrapper-component.cjs +53 -46
- package/lib/cjs/user-props/all-user-props.cjs +35 -17
- package/lib/cjs/user-props/index.cjs +19 -18
- package/lib/cjs/user-props/schema.cjs +52 -31
- package/lib/cjs/user-props/types.cjs +15 -1
- package/lib/cjs/user-props/use-user-props-asset.cjs +41 -0
- package/lib/cjs/user-props/use-user-props.cjs +38 -30
- package/lib/components/__generated__/body.props.json +491 -0
- package/lib/components/__generated__/bold.props.json +491 -0
- package/lib/components/__generated__/box.props.json +508 -0
- package/lib/components/__generated__/button.props.json +547 -0
- package/lib/components/__generated__/form.props.json +531 -0
- package/lib/components/__generated__/heading.props.json +497 -0
- package/lib/components/__generated__/image.props.json +560 -0
- package/lib/components/__generated__/input.props.json +657 -0
- package/lib/components/__generated__/italic.props.json +491 -0
- package/lib/components/__generated__/link.props.json +547 -0
- package/lib/components/__generated__/paragraph.props.json +491 -0
- package/lib/components/__generated__/rich-text-link.props.json +547 -0
- package/lib/components/__generated__/span.props.json +491 -0
- package/lib/components/__generated__/subscript.props.json +491 -0
- package/lib/components/__generated__/superscript.props.json +491 -0
- package/lib/components/__generated__/text-block.props.json +491 -0
- package/lib/components/body.js +8 -2
- package/lib/components/body.ws.js +57 -57
- package/lib/components/bold.js +8 -2
- package/lib/components/bold.ws.js +9 -9
- package/lib/components/box.js +11 -3
- package/lib/components/box.ws.js +14 -14
- package/lib/components/button.js +11 -3
- package/lib/components/button.ws.js +10 -10
- package/lib/components/component-type.js +54 -21
- package/lib/components/form.js +8 -2
- package/lib/components/form.ws.js +19 -19
- package/lib/components/heading.js +11 -3
- package/lib/components/heading.ws.js +10 -10
- package/lib/components/image.js +17 -9
- package/lib/components/image.ws.js +19 -22
- package/lib/components/index.js +120 -15
- package/lib/components/input.js +8 -2
- package/lib/components/input.ws.js +9 -9
- package/lib/components/italic.js +8 -2
- package/lib/components/italic.ws.js +14 -14
- package/lib/components/link.js +11 -3
- package/lib/components/link.ws.js +20 -20
- package/lib/components/paragraph.js +8 -2
- package/lib/components/paragraph.ws.js +10 -10
- package/lib/components/rich-text-link.js +13 -0
- package/lib/components/rich-text-link.ws.js +12 -0
- package/lib/components/span.js +8 -2
- package/lib/components/span.ws.js +9 -9
- package/lib/components/subscript.js +8 -2
- package/lib/components/subscript.ws.js +9 -9
- package/lib/components/superscript.js +8 -2
- package/lib/components/superscript.ws.js +9 -9
- package/lib/components/text-block.js +8 -2
- package/lib/components/text-block.ws.js +16 -16
- package/lib/css/breakpoints.js +8 -5
- package/lib/css/categories.js +198 -200
- package/lib/css/get-browser-style.js +35 -35
- package/lib/db/instance.js +14 -10
- package/lib/db/types.js +0 -1
- package/lib/index.js +10 -3
- package/lib/pubsub/create.js +51 -55
- package/lib/tree/create-elements-tree.js +68 -42
- package/lib/tree/root.js +21 -9
- package/lib/tree/session-storage-polyfill.js +41 -34
- package/lib/tree/wrapper-component.js +34 -19
- package/lib/user-props/all-user-props.js +15 -13
- package/lib/user-props/schema.js +33 -29
- package/lib/user-props/types.js +0 -1
- package/lib/user-props/use-user-props-asset.js +21 -0
- package/lib/user-props/use-user-props.js +19 -27
- package/package.json +14 -24
- package/src/app/custom-components/image.tsx +62 -0
- package/src/app/custom-components/index.ts +17 -0
- package/src/app/custom-components/link.tsx +4 -0
- package/src/app/custom-components/rich-text-link.tsx +4 -0
- package/src/app/custom-components/shared/remix-link.tsx +40 -0
- package/src/app/handle-request.server.tsx +21 -0
- package/{lib/cjs/remix/index.d.ts → src/app/index.ts} +1 -1
- package/src/app/params.ts +13 -0
- package/src/app/root.tsx +27 -0
- package/src/components/__generated__/body.props.json +491 -0
- package/src/components/__generated__/bold.props.json +491 -0
- package/src/components/__generated__/box.props.json +508 -0
- package/src/components/__generated__/button.props.json +547 -0
- package/src/components/__generated__/form.props.json +531 -0
- package/src/components/__generated__/heading.props.json +497 -0
- package/src/components/__generated__/image.props.json +560 -0
- package/src/components/__generated__/input.props.json +657 -0
- package/src/components/__generated__/italic.props.json +491 -0
- package/src/components/__generated__/link.props.json +547 -0
- package/src/components/__generated__/paragraph.props.json +491 -0
- package/src/components/__generated__/rich-text-link.props.json +547 -0
- package/src/components/__generated__/span.props.json +491 -0
- package/src/components/__generated__/subscript.props.json +491 -0
- package/src/components/__generated__/superscript.props.json +491 -0
- package/src/components/__generated__/text-block.props.json +491 -0
- package/src/components/body.stories.tsx +11 -0
- package/src/components/body.tsx +10 -0
- package/src/components/body.ws.tsx +63 -0
- package/src/components/bold.stories.tsx +16 -0
- package/src/components/bold.tsx +10 -0
- package/src/components/bold.ws.tsx +12 -0
- package/src/components/box.stories.tsx +17 -0
- package/src/components/box.tsx +31 -0
- package/src/components/box.ws.ts +20 -0
- package/src/components/button.stories.tsx +17 -0
- package/src/components/button.tsx +14 -0
- package/src/components/button.ws.tsx +13 -0
- package/src/components/component-type.ts +89 -0
- package/src/components/form.stories.tsx +14 -0
- package/src/components/form.tsx +10 -0
- package/src/components/form.ws.tsx +25 -0
- package/src/components/heading.stories.tsx +16 -0
- package/src/components/heading.tsx +20 -0
- package/src/components/heading.ws.tsx +13 -0
- package/src/components/image.stories.tsx +15 -0
- package/src/components/image.tsx +52 -0
- package/src/components/image.ws.tsx +28 -0
- package/src/components/index.test.ts +28 -0
- package/src/components/index.ts +159 -0
- package/src/components/input.stories.tsx +14 -0
- package/src/components/input.tsx +11 -0
- package/src/components/input.ws.tsx +12 -0
- package/src/components/italic.stories.tsx +16 -0
- package/src/components/italic.tsx +10 -0
- package/src/components/italic.ws.tsx +20 -0
- package/src/components/link.stories.tsx +16 -0
- package/src/components/link.tsx +9 -0
- package/src/components/link.ws.tsx +26 -0
- package/src/components/paragraph.stories.tsx +16 -0
- package/src/components/paragraph.tsx +10 -0
- package/src/components/paragraph.ws.tsx +13 -0
- package/src/components/rich-text-link.stories.tsx +16 -0
- package/src/components/rich-text-link.tsx +9 -0
- package/src/components/rich-text-link.ws.tsx +12 -0
- package/src/components/span.stories.tsx +16 -0
- package/src/components/span.tsx +10 -0
- package/src/components/span.ws.tsx +12 -0
- package/src/components/subscript.stories.tsx +16 -0
- package/src/components/subscript.tsx +10 -0
- package/src/components/subscript.ws.tsx +12 -0
- package/src/components/superscript.stories.tsx +16 -0
- package/src/components/superscript.tsx +10 -0
- package/src/components/superscript.ws.tsx +12 -0
- package/src/components/text-block.stories.tsx +16 -0
- package/src/components/text-block.tsx +10 -0
- package/src/components/text-block.ws.tsx +22 -0
- package/src/css/breakpoints.ts +10 -0
- package/src/css/categories.ts +254 -0
- package/src/css/get-browser-style.ts +50 -0
- package/{lib/cjs/css/index.d.ts → src/css/index.ts} +0 -1
- package/{lib/cjs/db/index.d.ts → src/db/index.ts} +0 -1
- package/src/db/instance.ts +34 -0
- package/src/db/types.ts +18 -0
- package/src/index.ts +12 -0
- package/src/pubsub/create.ts +84 -0
- package/src/pubsub/index.ts +1 -0
- package/src/tree/create-elements-tree.tsx +102 -0
- package/{lib/tree/index.d.ts → src/tree/index.ts} +0 -1
- package/src/tree/root.ts +45 -0
- package/src/tree/session-storage-polyfill.tsx +50 -0
- package/src/tree/wrapper-component.tsx +48 -0
- package/src/user-props/all-user-props.ts +22 -0
- package/{lib/cjs/user-props/index.d.ts → src/user-props/index.ts} +0 -1
- package/src/user-props/schema.ts +35 -0
- package/src/user-props/types.ts +14 -0
- package/src/user-props/use-user-props-asset.ts +31 -0
- package/src/user-props/use-user-props.ts +30 -0
- package/lib/arg-types/utils.d.ts +0 -10
- package/lib/arg-types/utils.d.ts.map +0 -1
- package/lib/arg-types/utils.js +0 -83
- package/lib/cjs/arg-types/utils.cjs +0 -88
- package/lib/cjs/arg-types/utils.d.ts +0 -10
- package/lib/cjs/arg-types/utils.d.ts.map +0 -1
- package/lib/cjs/components/body.d.ts +0 -3
- package/lib/cjs/components/body.d.ts.map +0 -1
- package/lib/cjs/components/body.props.json +0 -491
- package/lib/cjs/components/body.stories.cjs +0 -11
- package/lib/cjs/components/body.stories.d.ts +0 -7
- package/lib/cjs/components/body.stories.d.ts.map +0 -1
- package/lib/cjs/components/body.ws.d.ts +0 -5
- package/lib/cjs/components/body.ws.d.ts.map +0 -1
- package/lib/cjs/components/bold.d.ts +0 -3
- package/lib/cjs/components/bold.d.ts.map +0 -1
- package/lib/cjs/components/bold.props.json +0 -491
- package/lib/cjs/components/bold.stories.cjs +0 -14
- package/lib/cjs/components/bold.stories.d.ts +0 -6
- package/lib/cjs/components/bold.stories.d.ts.map +0 -1
- package/lib/cjs/components/bold.ws.d.ts +0 -5
- package/lib/cjs/components/bold.ws.d.ts.map +0 -1
- package/lib/cjs/components/box.d.ts +0 -8
- package/lib/cjs/components/box.d.ts.map +0 -1
- package/lib/cjs/components/box.props.json +0 -508
- package/lib/cjs/components/box.stories.cjs +0 -12
- package/lib/cjs/components/box.stories.d.ts +0 -10
- package/lib/cjs/components/box.stories.d.ts.map +0 -1
- package/lib/cjs/components/box.ws.d.ts +0 -5
- package/lib/cjs/components/box.ws.d.ts.map +0 -1
- package/lib/cjs/components/button.d.ts +0 -3
- package/lib/cjs/components/button.d.ts.map +0 -1
- package/lib/cjs/components/button.props.json +0 -547
- package/lib/cjs/components/button.stories.cjs +0 -14
- package/lib/cjs/components/button.stories.d.ts +0 -6
- package/lib/cjs/components/button.stories.d.ts.map +0 -1
- package/lib/cjs/components/button.ws.d.ts +0 -5
- package/lib/cjs/components/button.ws.d.ts.map +0 -1
- package/lib/cjs/components/component-type.d.ts +0 -17
- package/lib/cjs/components/component-type.d.ts.map +0 -1
- package/lib/cjs/components/form.d.ts +0 -3
- package/lib/cjs/components/form.d.ts.map +0 -1
- package/lib/cjs/components/form.props.json +0 -531
- package/lib/cjs/components/form.stories.cjs +0 -12
- package/lib/cjs/components/form.stories.d.ts +0 -6
- package/lib/cjs/components/form.stories.d.ts.map +0 -1
- package/lib/cjs/components/form.ws.d.ts +0 -5
- package/lib/cjs/components/form.ws.d.ts.map +0 -1
- package/lib/cjs/components/heading.d.ts +0 -8
- package/lib/cjs/components/heading.d.ts.map +0 -1
- package/lib/cjs/components/heading.props.json +0 -497
- package/lib/cjs/components/heading.stories.cjs +0 -14
- package/lib/cjs/components/heading.stories.d.ts +0 -10
- package/lib/cjs/components/heading.stories.d.ts.map +0 -1
- package/lib/cjs/components/heading.ws.d.ts +0 -5
- package/lib/cjs/components/heading.ws.d.ts.map +0 -1
- package/lib/cjs/components/image.d.ts +0 -3
- package/lib/cjs/components/image.d.ts.map +0 -1
- package/lib/cjs/components/image.props.json +0 -575
- package/lib/cjs/components/image.stories.cjs +0 -12
- package/lib/cjs/components/image.stories.d.ts +0 -6
- package/lib/cjs/components/image.stories.d.ts.map +0 -1
- package/lib/cjs/components/image.ws.d.ts +0 -5
- package/lib/cjs/components/image.ws.d.ts.map +0 -1
- package/lib/cjs/components/index.d.ts +0 -16
- package/lib/cjs/components/index.d.ts.map +0 -1
- package/lib/cjs/components/index.test.cjs +0 -33
- package/lib/cjs/components/index.test.d.ts +0 -2
- package/lib/cjs/components/index.test.d.ts.map +0 -1
- package/lib/cjs/components/input.d.ts +0 -3
- package/lib/cjs/components/input.d.ts.map +0 -1
- package/lib/cjs/components/input.props.json +0 -657
- package/lib/cjs/components/input.stories.cjs +0 -12
- package/lib/cjs/components/input.stories.d.ts +0 -6
- package/lib/cjs/components/input.stories.d.ts.map +0 -1
- package/lib/cjs/components/input.ws.d.ts +0 -5
- package/lib/cjs/components/input.ws.d.ts.map +0 -1
- package/lib/cjs/components/italic.d.ts +0 -3
- package/lib/cjs/components/italic.d.ts.map +0 -1
- package/lib/cjs/components/italic.props.json +0 -491
- package/lib/cjs/components/italic.stories.cjs +0 -14
- package/lib/cjs/components/italic.stories.d.ts +0 -6
- package/lib/cjs/components/italic.stories.d.ts.map +0 -1
- package/lib/cjs/components/italic.ws.d.ts +0 -5
- package/lib/cjs/components/italic.ws.d.ts.map +0 -1
- package/lib/cjs/components/link.d.ts +0 -8
- package/lib/cjs/components/link.d.ts.map +0 -1
- package/lib/cjs/components/link.props.json +0 -547
- package/lib/cjs/components/link.stories.cjs +0 -14
- package/lib/cjs/components/link.stories.d.ts +0 -10
- package/lib/cjs/components/link.stories.d.ts.map +0 -1
- package/lib/cjs/components/link.ws.d.ts +0 -5
- package/lib/cjs/components/link.ws.d.ts.map +0 -1
- package/lib/cjs/components/meta.cjs +0 -40
- package/lib/cjs/components/meta.d.ts +0 -7479
- package/lib/cjs/components/meta.d.ts.map +0 -1
- package/lib/cjs/components/paragraph.d.ts +0 -3
- package/lib/cjs/components/paragraph.d.ts.map +0 -1
- package/lib/cjs/components/paragraph.props.json +0 -491
- package/lib/cjs/components/paragraph.stories.cjs +0 -14
- package/lib/cjs/components/paragraph.stories.d.ts +0 -6
- package/lib/cjs/components/paragraph.stories.d.ts.map +0 -1
- package/lib/cjs/components/paragraph.ws.d.ts +0 -5
- package/lib/cjs/components/paragraph.ws.d.ts.map +0 -1
- package/lib/cjs/components/span.d.ts +0 -3
- package/lib/cjs/components/span.d.ts.map +0 -1
- package/lib/cjs/components/span.props.json +0 -491
- package/lib/cjs/components/span.stories.cjs +0 -14
- package/lib/cjs/components/span.stories.d.ts +0 -6
- package/lib/cjs/components/span.stories.d.ts.map +0 -1
- package/lib/cjs/components/span.ws.d.ts +0 -5
- package/lib/cjs/components/span.ws.d.ts.map +0 -1
- package/lib/cjs/components/subscript.d.ts +0 -3
- package/lib/cjs/components/subscript.d.ts.map +0 -1
- package/lib/cjs/components/subscript.props.json +0 -491
- package/lib/cjs/components/subscript.stories.cjs +0 -14
- package/lib/cjs/components/subscript.stories.d.ts +0 -6
- package/lib/cjs/components/subscript.stories.d.ts.map +0 -1
- package/lib/cjs/components/subscript.ws.d.ts +0 -5
- package/lib/cjs/components/subscript.ws.d.ts.map +0 -1
- package/lib/cjs/components/superscript.d.ts +0 -3
- package/lib/cjs/components/superscript.d.ts.map +0 -1
- package/lib/cjs/components/superscript.props.json +0 -491
- package/lib/cjs/components/superscript.stories.cjs +0 -14
- package/lib/cjs/components/superscript.stories.d.ts +0 -6
- package/lib/cjs/components/superscript.stories.d.ts.map +0 -1
- package/lib/cjs/components/superscript.ws.d.ts +0 -5
- package/lib/cjs/components/superscript.ws.d.ts.map +0 -1
- package/lib/cjs/components/text-block.d.ts +0 -3
- package/lib/cjs/components/text-block.d.ts.map +0 -1
- package/lib/cjs/components/text-block.props.json +0 -491
- package/lib/cjs/components/text-block.stories.cjs +0 -14
- package/lib/cjs/components/text-block.stories.d.ts +0 -6
- package/lib/cjs/components/text-block.stories.d.ts.map +0 -1
- package/lib/cjs/components/text-block.ws.d.ts +0 -5
- package/lib/cjs/components/text-block.ws.d.ts.map +0 -1
- package/lib/cjs/css/breakpoints.d.ts +0 -4
- package/lib/cjs/css/breakpoints.d.ts.map +0 -1
- package/lib/cjs/css/categories.d.ts +0 -408
- package/lib/cjs/css/categories.d.ts.map +0 -1
- package/lib/cjs/css/get-browser-style.d.ts +0 -3
- package/lib/cjs/css/get-browser-style.d.ts.map +0 -1
- package/lib/cjs/css/index.d.ts.map +0 -1
- package/lib/cjs/db/index.d.ts.map +0 -1
- package/lib/cjs/db/instance.d.ts +0 -14
- package/lib/cjs/db/instance.d.ts.map +0 -1
- package/lib/cjs/db/types.d.ts +0 -17
- package/lib/cjs/db/types.d.ts.map +0 -1
- package/lib/cjs/index.d.ts +0 -9
- package/lib/cjs/index.d.ts.map +0 -1
- package/lib/cjs/pubsub/create.d.ts +0 -29
- package/lib/cjs/pubsub/create.d.ts.map +0 -1
- package/lib/cjs/pubsub/index.d.ts +0 -2
- package/lib/cjs/pubsub/index.d.ts.map +0 -1
- package/lib/cjs/remix/handle-request.server.cjs +0 -15
- package/lib/cjs/remix/handle-request.server.d.ts +0 -3
- package/lib/cjs/remix/handle-request.server.d.ts.map +0 -1
- package/lib/cjs/remix/index.cjs +0 -18
- package/lib/cjs/remix/index.d.ts.map +0 -1
- package/lib/cjs/remix/root.cjs +0 -13
- package/lib/cjs/remix/root.d.ts +0 -8
- package/lib/cjs/remix/root.d.ts.map +0 -1
- package/lib/cjs/tree/create-elements-tree.d.ts +0 -19
- package/lib/cjs/tree/create-elements-tree.d.ts.map +0 -1
- package/lib/cjs/tree/index.d.ts +0 -4
- package/lib/cjs/tree/index.d.ts.map +0 -1
- package/lib/cjs/tree/root.d.ts +0 -18
- package/lib/cjs/tree/root.d.ts.map +0 -1
- package/lib/cjs/tree/session-storage-polyfill.d.ts +0 -2
- package/lib/cjs/tree/session-storage-polyfill.d.ts.map +0 -1
- package/lib/cjs/tree/wrapper-component.d.ts +0 -12
- package/lib/cjs/tree/wrapper-component.d.ts.map +0 -1
- package/lib/cjs/user-props/all-user-props.d.ts +0 -8
- package/lib/cjs/user-props/all-user-props.d.ts.map +0 -1
- package/lib/cjs/user-props/index.d.ts.map +0 -1
- package/lib/cjs/user-props/schema.d.ts +0 -72
- package/lib/cjs/user-props/schema.d.ts.map +0 -1
- package/lib/cjs/user-props/types.d.ts +0 -13
- package/lib/cjs/user-props/types.d.ts.map +0 -1
- package/lib/cjs/user-props/use-user-props.d.ts +0 -12
- package/lib/cjs/user-props/use-user-props.d.ts.map +0 -1
- package/lib/components/body.d.ts +0 -3
- package/lib/components/body.d.ts.map +0 -1
- package/lib/components/body.props.json +0 -491
- package/lib/components/body.stories.d.ts +0 -7
- package/lib/components/body.stories.d.ts.map +0 -1
- package/lib/components/body.stories.js +0 -7
- package/lib/components/body.ws.d.ts +0 -5
- package/lib/components/body.ws.d.ts.map +0 -1
- package/lib/components/bold.d.ts +0 -3
- package/lib/components/bold.d.ts.map +0 -1
- package/lib/components/bold.props.json +0 -491
- package/lib/components/bold.stories.d.ts +0 -6
- package/lib/components/bold.stories.d.ts.map +0 -1
- package/lib/components/bold.stories.js +0 -11
- package/lib/components/bold.ws.d.ts +0 -5
- package/lib/components/bold.ws.d.ts.map +0 -1
- package/lib/components/box.d.ts +0 -8
- package/lib/components/box.d.ts.map +0 -1
- package/lib/components/box.props.json +0 -508
- package/lib/components/box.stories.d.ts +0 -10
- package/lib/components/box.stories.d.ts.map +0 -1
- package/lib/components/box.stories.js +0 -9
- package/lib/components/box.ws.d.ts +0 -5
- package/lib/components/box.ws.d.ts.map +0 -1
- package/lib/components/button.d.ts +0 -3
- package/lib/components/button.d.ts.map +0 -1
- package/lib/components/button.props.json +0 -547
- package/lib/components/button.stories.d.ts +0 -6
- package/lib/components/button.stories.d.ts.map +0 -1
- package/lib/components/button.stories.js +0 -11
- package/lib/components/button.ws.d.ts +0 -5
- package/lib/components/button.ws.d.ts.map +0 -1
- package/lib/components/component-type.d.ts +0 -17
- package/lib/components/component-type.d.ts.map +0 -1
- package/lib/components/form.d.ts +0 -3
- package/lib/components/form.d.ts.map +0 -1
- package/lib/components/form.props.json +0 -531
- package/lib/components/form.stories.d.ts +0 -6
- package/lib/components/form.stories.d.ts.map +0 -1
- package/lib/components/form.stories.js +0 -9
- package/lib/components/form.ws.d.ts +0 -5
- package/lib/components/form.ws.d.ts.map +0 -1
- package/lib/components/heading.d.ts +0 -8
- package/lib/components/heading.d.ts.map +0 -1
- package/lib/components/heading.props.json +0 -497
- package/lib/components/heading.stories.d.ts +0 -10
- package/lib/components/heading.stories.d.ts.map +0 -1
- package/lib/components/heading.stories.js +0 -11
- package/lib/components/heading.ws.d.ts +0 -5
- package/lib/components/heading.ws.d.ts.map +0 -1
- package/lib/components/image.d.ts +0 -3
- package/lib/components/image.d.ts.map +0 -1
- package/lib/components/image.props.json +0 -575
- package/lib/components/image.stories.d.ts +0 -6
- package/lib/components/image.stories.d.ts.map +0 -1
- package/lib/components/image.stories.js +0 -9
- package/lib/components/image.ws.d.ts +0 -5
- package/lib/components/image.ws.d.ts.map +0 -1
- package/lib/components/index.d.ts +0 -16
- package/lib/components/index.d.ts.map +0 -1
- package/lib/components/index.test.d.ts +0 -2
- package/lib/components/index.test.d.ts.map +0 -1
- package/lib/components/index.test.js +0 -8
- package/lib/components/input.d.ts +0 -3
- package/lib/components/input.d.ts.map +0 -1
- package/lib/components/input.props.json +0 -657
- package/lib/components/input.stories.d.ts +0 -6
- package/lib/components/input.stories.d.ts.map +0 -1
- package/lib/components/input.stories.js +0 -9
- package/lib/components/input.ws.d.ts +0 -5
- package/lib/components/input.ws.d.ts.map +0 -1
- package/lib/components/italic.d.ts +0 -3
- package/lib/components/italic.d.ts.map +0 -1
- package/lib/components/italic.props.json +0 -491
- package/lib/components/italic.stories.d.ts +0 -6
- package/lib/components/italic.stories.d.ts.map +0 -1
- package/lib/components/italic.stories.js +0 -11
- package/lib/components/italic.ws.d.ts +0 -5
- package/lib/components/italic.ws.d.ts.map +0 -1
- package/lib/components/link.d.ts +0 -8
- package/lib/components/link.d.ts.map +0 -1
- package/lib/components/link.props.json +0 -547
- package/lib/components/link.stories.d.ts +0 -10
- package/lib/components/link.stories.d.ts.map +0 -1
- package/lib/components/link.stories.js +0 -11
- package/lib/components/link.ws.d.ts +0 -5
- package/lib/components/link.ws.d.ts.map +0 -1
- package/lib/components/meta.d.ts +0 -7479
- package/lib/components/meta.d.ts.map +0 -1
- package/lib/components/meta.js +0 -34
- package/lib/components/paragraph.d.ts +0 -3
- package/lib/components/paragraph.d.ts.map +0 -1
- package/lib/components/paragraph.props.json +0 -491
- package/lib/components/paragraph.stories.d.ts +0 -6
- package/lib/components/paragraph.stories.d.ts.map +0 -1
- package/lib/components/paragraph.stories.js +0 -11
- package/lib/components/paragraph.ws.d.ts +0 -5
- package/lib/components/paragraph.ws.d.ts.map +0 -1
- package/lib/components/span.d.ts +0 -3
- package/lib/components/span.d.ts.map +0 -1
- package/lib/components/span.props.json +0 -491
- package/lib/components/span.stories.d.ts +0 -6
- package/lib/components/span.stories.d.ts.map +0 -1
- package/lib/components/span.stories.js +0 -11
- package/lib/components/span.ws.d.ts +0 -5
- package/lib/components/span.ws.d.ts.map +0 -1
- package/lib/components/subscript.d.ts +0 -3
- package/lib/components/subscript.d.ts.map +0 -1
- package/lib/components/subscript.props.json +0 -491
- package/lib/components/subscript.stories.d.ts +0 -6
- package/lib/components/subscript.stories.d.ts.map +0 -1
- package/lib/components/subscript.stories.js +0 -11
- package/lib/components/subscript.ws.d.ts +0 -5
- package/lib/components/subscript.ws.d.ts.map +0 -1
- package/lib/components/superscript.d.ts +0 -3
- package/lib/components/superscript.d.ts.map +0 -1
- package/lib/components/superscript.props.json +0 -491
- package/lib/components/superscript.stories.d.ts +0 -6
- package/lib/components/superscript.stories.d.ts.map +0 -1
- package/lib/components/superscript.stories.js +0 -11
- package/lib/components/superscript.ws.d.ts +0 -5
- package/lib/components/superscript.ws.d.ts.map +0 -1
- package/lib/components/text-block.d.ts +0 -3
- package/lib/components/text-block.d.ts.map +0 -1
- package/lib/components/text-block.props.json +0 -491
- package/lib/components/text-block.stories.d.ts +0 -6
- package/lib/components/text-block.stories.d.ts.map +0 -1
- package/lib/components/text-block.stories.js +0 -11
- package/lib/components/text-block.ws.d.ts +0 -5
- package/lib/components/text-block.ws.d.ts.map +0 -1
- package/lib/css/breakpoints.d.ts +0 -4
- package/lib/css/breakpoints.d.ts.map +0 -1
- package/lib/css/categories.d.ts +0 -408
- package/lib/css/categories.d.ts.map +0 -1
- package/lib/css/get-browser-style.d.ts +0 -3
- package/lib/css/get-browser-style.d.ts.map +0 -1
- package/lib/css/index.d.ts +0 -4
- package/lib/css/index.d.ts.map +0 -1
- package/lib/db/index.d.ts +0 -3
- package/lib/db/index.d.ts.map +0 -1
- package/lib/db/instance.d.ts +0 -14
- package/lib/db/instance.d.ts.map +0 -1
- package/lib/db/types.d.ts +0 -17
- package/lib/db/types.d.ts.map +0 -1
- package/lib/index.d.ts +0 -9
- package/lib/index.d.ts.map +0 -1
- package/lib/pubsub/create.d.ts +0 -29
- package/lib/pubsub/create.d.ts.map +0 -1
- package/lib/pubsub/index.d.ts +0 -2
- package/lib/pubsub/index.d.ts.map +0 -1
- package/lib/remix/handle-request.server.d.ts +0 -3
- package/lib/remix/handle-request.server.d.ts.map +0 -1
- package/lib/remix/handle-request.server.js +0 -11
- package/lib/remix/index.d.ts +0 -3
- package/lib/remix/index.d.ts.map +0 -1
- package/lib/remix/root.d.ts +0 -8
- package/lib/remix/root.d.ts.map +0 -1
- package/lib/remix/root.js +0 -9
- package/lib/tree/create-elements-tree.d.ts +0 -19
- package/lib/tree/create-elements-tree.d.ts.map +0 -1
- package/lib/tree/index.d.ts.map +0 -1
- package/lib/tree/root.d.ts +0 -18
- package/lib/tree/root.d.ts.map +0 -1
- package/lib/tree/session-storage-polyfill.d.ts +0 -2
- package/lib/tree/session-storage-polyfill.d.ts.map +0 -1
- package/lib/tree/wrapper-component.d.ts +0 -12
- package/lib/tree/wrapper-component.d.ts.map +0 -1
- package/lib/tsconfig.tsbuildinfo +0 -1
- package/lib/user-props/all-user-props.d.ts +0 -8
- package/lib/user-props/all-user-props.d.ts.map +0 -1
- package/lib/user-props/index.d.ts +0 -5
- package/lib/user-props/index.d.ts.map +0 -1
- package/lib/user-props/schema.d.ts +0 -72
- package/lib/user-props/schema.d.ts.map +0 -1
- package/lib/user-props/types.d.ts +0 -13
- package/lib/user-props/types.d.ts.map +0 -1
- package/lib/user-props/use-user-props.d.ts +0 -12
- package/lib/user-props/use-user-props.d.ts.map +0 -1
|
@@ -1,547 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"slot": {
|
|
3
|
-
"defaultValue": null,
|
|
4
|
-
"required": false,
|
|
5
|
-
"type": "text"
|
|
6
|
-
},
|
|
7
|
-
"style": {
|
|
8
|
-
"defaultValue": null,
|
|
9
|
-
"required": false,
|
|
10
|
-
"type": "text"
|
|
11
|
-
},
|
|
12
|
-
"title": {
|
|
13
|
-
"defaultValue": null,
|
|
14
|
-
"required": false,
|
|
15
|
-
"type": "text"
|
|
16
|
-
},
|
|
17
|
-
"download": {
|
|
18
|
-
"defaultValue": null,
|
|
19
|
-
"required": false,
|
|
20
|
-
"type": "text"
|
|
21
|
-
},
|
|
22
|
-
"href": {
|
|
23
|
-
"defaultValue": "",
|
|
24
|
-
"required": false,
|
|
25
|
-
"type": "text"
|
|
26
|
-
},
|
|
27
|
-
"hrefLang": {
|
|
28
|
-
"defaultValue": null,
|
|
29
|
-
"required": false,
|
|
30
|
-
"type": "text"
|
|
31
|
-
},
|
|
32
|
-
"media": {
|
|
33
|
-
"defaultValue": null,
|
|
34
|
-
"required": false,
|
|
35
|
-
"type": "text"
|
|
36
|
-
},
|
|
37
|
-
"ping": {
|
|
38
|
-
"defaultValue": null,
|
|
39
|
-
"required": false,
|
|
40
|
-
"type": "text"
|
|
41
|
-
},
|
|
42
|
-
"rel": {
|
|
43
|
-
"defaultValue": null,
|
|
44
|
-
"required": false,
|
|
45
|
-
"type": "text"
|
|
46
|
-
},
|
|
47
|
-
"target": {
|
|
48
|
-
"defaultValue": null,
|
|
49
|
-
"required": false,
|
|
50
|
-
"type": "text"
|
|
51
|
-
},
|
|
52
|
-
"type": {
|
|
53
|
-
"defaultValue": null,
|
|
54
|
-
"required": false,
|
|
55
|
-
"type": "text"
|
|
56
|
-
},
|
|
57
|
-
"referrerPolicy": {
|
|
58
|
-
"defaultValue": null,
|
|
59
|
-
"options": [
|
|
60
|
-
"\"\"",
|
|
61
|
-
"no-referrer",
|
|
62
|
-
"no-referrer-when-downgrade",
|
|
63
|
-
"origin",
|
|
64
|
-
"origin-when-cross-origin",
|
|
65
|
-
"same-origin",
|
|
66
|
-
"strict-origin",
|
|
67
|
-
"strict-origin-when-cross-origin",
|
|
68
|
-
"unsafe-url"
|
|
69
|
-
],
|
|
70
|
-
"required": false,
|
|
71
|
-
"type": "select"
|
|
72
|
-
},
|
|
73
|
-
"defaultChecked": {
|
|
74
|
-
"defaultValue": null,
|
|
75
|
-
"required": false,
|
|
76
|
-
"type": "boolean"
|
|
77
|
-
},
|
|
78
|
-
"defaultValue": {
|
|
79
|
-
"defaultValue": null,
|
|
80
|
-
"required": false,
|
|
81
|
-
"type": "text"
|
|
82
|
-
},
|
|
83
|
-
"suppressContentEditableWarning": {
|
|
84
|
-
"defaultValue": null,
|
|
85
|
-
"required": false,
|
|
86
|
-
"type": "boolean"
|
|
87
|
-
},
|
|
88
|
-
"suppressHydrationWarning": {
|
|
89
|
-
"defaultValue": null,
|
|
90
|
-
"required": false,
|
|
91
|
-
"type": "boolean"
|
|
92
|
-
},
|
|
93
|
-
"accessKey": {
|
|
94
|
-
"defaultValue": null,
|
|
95
|
-
"required": false,
|
|
96
|
-
"type": "text"
|
|
97
|
-
},
|
|
98
|
-
"className": {
|
|
99
|
-
"defaultValue": null,
|
|
100
|
-
"required": false,
|
|
101
|
-
"type": "text"
|
|
102
|
-
},
|
|
103
|
-
"contentEditable": {
|
|
104
|
-
"defaultValue": null,
|
|
105
|
-
"required": false,
|
|
106
|
-
"type": "text"
|
|
107
|
-
},
|
|
108
|
-
"contextMenu": {
|
|
109
|
-
"defaultValue": null,
|
|
110
|
-
"required": false,
|
|
111
|
-
"type": "text"
|
|
112
|
-
},
|
|
113
|
-
"dir": {
|
|
114
|
-
"defaultValue": null,
|
|
115
|
-
"required": false,
|
|
116
|
-
"type": "text"
|
|
117
|
-
},
|
|
118
|
-
"draggable": {
|
|
119
|
-
"defaultValue": null,
|
|
120
|
-
"required": false,
|
|
121
|
-
"type": "boolean"
|
|
122
|
-
},
|
|
123
|
-
"hidden": {
|
|
124
|
-
"defaultValue": null,
|
|
125
|
-
"required": false,
|
|
126
|
-
"type": "boolean"
|
|
127
|
-
},
|
|
128
|
-
"id": {
|
|
129
|
-
"defaultValue": null,
|
|
130
|
-
"required": false,
|
|
131
|
-
"type": "text"
|
|
132
|
-
},
|
|
133
|
-
"lang": {
|
|
134
|
-
"defaultValue": null,
|
|
135
|
-
"required": false,
|
|
136
|
-
"type": "text"
|
|
137
|
-
},
|
|
138
|
-
"placeholder": {
|
|
139
|
-
"defaultValue": null,
|
|
140
|
-
"required": false,
|
|
141
|
-
"type": "text"
|
|
142
|
-
},
|
|
143
|
-
"spellCheck": {
|
|
144
|
-
"defaultValue": null,
|
|
145
|
-
"required": false,
|
|
146
|
-
"type": "boolean"
|
|
147
|
-
},
|
|
148
|
-
"tabIndex": {
|
|
149
|
-
"defaultValue": null,
|
|
150
|
-
"required": false,
|
|
151
|
-
"type": "number"
|
|
152
|
-
},
|
|
153
|
-
"translate": {
|
|
154
|
-
"defaultValue": null,
|
|
155
|
-
"options": ["yes", "no"],
|
|
156
|
-
"required": false,
|
|
157
|
-
"type": "radio"
|
|
158
|
-
},
|
|
159
|
-
"radioGroup": {
|
|
160
|
-
"defaultValue": null,
|
|
161
|
-
"required": false,
|
|
162
|
-
"type": "text"
|
|
163
|
-
},
|
|
164
|
-
"role": {
|
|
165
|
-
"defaultValue": null,
|
|
166
|
-
"required": false,
|
|
167
|
-
"type": "text"
|
|
168
|
-
},
|
|
169
|
-
"about": {
|
|
170
|
-
"defaultValue": null,
|
|
171
|
-
"required": false,
|
|
172
|
-
"type": "text"
|
|
173
|
-
},
|
|
174
|
-
"datatype": {
|
|
175
|
-
"defaultValue": null,
|
|
176
|
-
"required": false,
|
|
177
|
-
"type": "text"
|
|
178
|
-
},
|
|
179
|
-
"inlist": {
|
|
180
|
-
"defaultValue": null,
|
|
181
|
-
"required": false,
|
|
182
|
-
"type": "text"
|
|
183
|
-
},
|
|
184
|
-
"prefix": {
|
|
185
|
-
"defaultValue": null,
|
|
186
|
-
"required": false,
|
|
187
|
-
"type": "text"
|
|
188
|
-
},
|
|
189
|
-
"property": {
|
|
190
|
-
"defaultValue": null,
|
|
191
|
-
"required": false,
|
|
192
|
-
"type": "text"
|
|
193
|
-
},
|
|
194
|
-
"resource": {
|
|
195
|
-
"defaultValue": null,
|
|
196
|
-
"required": false,
|
|
197
|
-
"type": "text"
|
|
198
|
-
},
|
|
199
|
-
"typeof": {
|
|
200
|
-
"defaultValue": null,
|
|
201
|
-
"required": false,
|
|
202
|
-
"type": "text"
|
|
203
|
-
},
|
|
204
|
-
"vocab": {
|
|
205
|
-
"defaultValue": null,
|
|
206
|
-
"required": false,
|
|
207
|
-
"type": "text"
|
|
208
|
-
},
|
|
209
|
-
"autoCapitalize": {
|
|
210
|
-
"defaultValue": null,
|
|
211
|
-
"required": false,
|
|
212
|
-
"type": "text"
|
|
213
|
-
},
|
|
214
|
-
"autoCorrect": {
|
|
215
|
-
"defaultValue": null,
|
|
216
|
-
"required": false,
|
|
217
|
-
"type": "text"
|
|
218
|
-
},
|
|
219
|
-
"autoSave": {
|
|
220
|
-
"defaultValue": null,
|
|
221
|
-
"required": false,
|
|
222
|
-
"type": "text"
|
|
223
|
-
},
|
|
224
|
-
"color": {
|
|
225
|
-
"defaultValue": null,
|
|
226
|
-
"required": false,
|
|
227
|
-
"type": "color"
|
|
228
|
-
},
|
|
229
|
-
"itemProp": {
|
|
230
|
-
"defaultValue": null,
|
|
231
|
-
"required": false,
|
|
232
|
-
"type": "text"
|
|
233
|
-
},
|
|
234
|
-
"itemScope": {
|
|
235
|
-
"defaultValue": null,
|
|
236
|
-
"required": false,
|
|
237
|
-
"type": "boolean"
|
|
238
|
-
},
|
|
239
|
-
"itemType": {
|
|
240
|
-
"defaultValue": null,
|
|
241
|
-
"required": false,
|
|
242
|
-
"type": "text"
|
|
243
|
-
},
|
|
244
|
-
"itemID": {
|
|
245
|
-
"defaultValue": null,
|
|
246
|
-
"required": false,
|
|
247
|
-
"type": "text"
|
|
248
|
-
},
|
|
249
|
-
"itemRef": {
|
|
250
|
-
"defaultValue": null,
|
|
251
|
-
"required": false,
|
|
252
|
-
"type": "text"
|
|
253
|
-
},
|
|
254
|
-
"results": {
|
|
255
|
-
"defaultValue": null,
|
|
256
|
-
"required": false,
|
|
257
|
-
"type": "number"
|
|
258
|
-
},
|
|
259
|
-
"security": {
|
|
260
|
-
"defaultValue": null,
|
|
261
|
-
"required": false,
|
|
262
|
-
"type": "text"
|
|
263
|
-
},
|
|
264
|
-
"unselectable": {
|
|
265
|
-
"defaultValue": null,
|
|
266
|
-
"options": ["on", "off"],
|
|
267
|
-
"required": false,
|
|
268
|
-
"type": "radio"
|
|
269
|
-
},
|
|
270
|
-
"inputMode": {
|
|
271
|
-
"defaultValue": null,
|
|
272
|
-
"options": [
|
|
273
|
-
"text",
|
|
274
|
-
"none",
|
|
275
|
-
"search",
|
|
276
|
-
"tel",
|
|
277
|
-
"url",
|
|
278
|
-
"email",
|
|
279
|
-
"numeric",
|
|
280
|
-
"decimal"
|
|
281
|
-
],
|
|
282
|
-
"required": false,
|
|
283
|
-
"type": "select"
|
|
284
|
-
},
|
|
285
|
-
"is": {
|
|
286
|
-
"defaultValue": null,
|
|
287
|
-
"required": false,
|
|
288
|
-
"type": "text"
|
|
289
|
-
},
|
|
290
|
-
"aria-activedescendant": {
|
|
291
|
-
"defaultValue": null,
|
|
292
|
-
"required": false,
|
|
293
|
-
"type": "text"
|
|
294
|
-
},
|
|
295
|
-
"aria-atomic": {
|
|
296
|
-
"defaultValue": null,
|
|
297
|
-
"required": false,
|
|
298
|
-
"type": "boolean"
|
|
299
|
-
},
|
|
300
|
-
"aria-autocomplete": {
|
|
301
|
-
"defaultValue": null,
|
|
302
|
-
"options": ["list", "none", "inline", "both"],
|
|
303
|
-
"required": false,
|
|
304
|
-
"type": "radio"
|
|
305
|
-
},
|
|
306
|
-
"aria-busy": {
|
|
307
|
-
"defaultValue": null,
|
|
308
|
-
"required": false,
|
|
309
|
-
"type": "boolean"
|
|
310
|
-
},
|
|
311
|
-
"aria-checked": {
|
|
312
|
-
"defaultValue": null,
|
|
313
|
-
"required": false,
|
|
314
|
-
"type": "text"
|
|
315
|
-
},
|
|
316
|
-
"aria-colcount": {
|
|
317
|
-
"defaultValue": null,
|
|
318
|
-
"required": false,
|
|
319
|
-
"type": "number"
|
|
320
|
-
},
|
|
321
|
-
"aria-colindex": {
|
|
322
|
-
"defaultValue": null,
|
|
323
|
-
"required": false,
|
|
324
|
-
"type": "number"
|
|
325
|
-
},
|
|
326
|
-
"aria-colspan": {
|
|
327
|
-
"defaultValue": null,
|
|
328
|
-
"required": false,
|
|
329
|
-
"type": "number"
|
|
330
|
-
},
|
|
331
|
-
"aria-controls": {
|
|
332
|
-
"defaultValue": null,
|
|
333
|
-
"required": false,
|
|
334
|
-
"type": "text"
|
|
335
|
-
},
|
|
336
|
-
"aria-current": {
|
|
337
|
-
"defaultValue": null,
|
|
338
|
-
"required": false,
|
|
339
|
-
"type": "text"
|
|
340
|
-
},
|
|
341
|
-
"aria-describedby": {
|
|
342
|
-
"defaultValue": null,
|
|
343
|
-
"required": false,
|
|
344
|
-
"type": "text"
|
|
345
|
-
},
|
|
346
|
-
"aria-details": {
|
|
347
|
-
"defaultValue": null,
|
|
348
|
-
"required": false,
|
|
349
|
-
"type": "text"
|
|
350
|
-
},
|
|
351
|
-
"aria-disabled": {
|
|
352
|
-
"defaultValue": null,
|
|
353
|
-
"required": false,
|
|
354
|
-
"type": "boolean"
|
|
355
|
-
},
|
|
356
|
-
"aria-dropeffect": {
|
|
357
|
-
"defaultValue": null,
|
|
358
|
-
"options": ["link", "none", "copy", "execute", "move", "popup"],
|
|
359
|
-
"required": false,
|
|
360
|
-
"type": "select"
|
|
361
|
-
},
|
|
362
|
-
"aria-errormessage": {
|
|
363
|
-
"defaultValue": null,
|
|
364
|
-
"required": false,
|
|
365
|
-
"type": "text"
|
|
366
|
-
},
|
|
367
|
-
"aria-expanded": {
|
|
368
|
-
"defaultValue": null,
|
|
369
|
-
"required": false,
|
|
370
|
-
"type": "boolean"
|
|
371
|
-
},
|
|
372
|
-
"aria-flowto": {
|
|
373
|
-
"defaultValue": null,
|
|
374
|
-
"required": false,
|
|
375
|
-
"type": "text"
|
|
376
|
-
},
|
|
377
|
-
"aria-grabbed": {
|
|
378
|
-
"defaultValue": null,
|
|
379
|
-
"required": false,
|
|
380
|
-
"type": "boolean"
|
|
381
|
-
},
|
|
382
|
-
"aria-haspopup": {
|
|
383
|
-
"defaultValue": null,
|
|
384
|
-
"required": false,
|
|
385
|
-
"type": "text"
|
|
386
|
-
},
|
|
387
|
-
"aria-hidden": {
|
|
388
|
-
"defaultValue": null,
|
|
389
|
-
"required": false,
|
|
390
|
-
"type": "boolean"
|
|
391
|
-
},
|
|
392
|
-
"aria-invalid": {
|
|
393
|
-
"defaultValue": null,
|
|
394
|
-
"required": false,
|
|
395
|
-
"type": "text"
|
|
396
|
-
},
|
|
397
|
-
"aria-keyshortcuts": {
|
|
398
|
-
"defaultValue": null,
|
|
399
|
-
"required": false,
|
|
400
|
-
"type": "text"
|
|
401
|
-
},
|
|
402
|
-
"aria-label": {
|
|
403
|
-
"defaultValue": null,
|
|
404
|
-
"required": false,
|
|
405
|
-
"type": "text"
|
|
406
|
-
},
|
|
407
|
-
"aria-labelledby": {
|
|
408
|
-
"defaultValue": null,
|
|
409
|
-
"required": false,
|
|
410
|
-
"type": "text"
|
|
411
|
-
},
|
|
412
|
-
"aria-level": {
|
|
413
|
-
"defaultValue": null,
|
|
414
|
-
"required": false,
|
|
415
|
-
"type": "number"
|
|
416
|
-
},
|
|
417
|
-
"aria-live": {
|
|
418
|
-
"defaultValue": null,
|
|
419
|
-
"options": ["off", "assertive", "polite"],
|
|
420
|
-
"required": false,
|
|
421
|
-
"type": "radio"
|
|
422
|
-
},
|
|
423
|
-
"aria-modal": {
|
|
424
|
-
"defaultValue": null,
|
|
425
|
-
"required": false,
|
|
426
|
-
"type": "boolean"
|
|
427
|
-
},
|
|
428
|
-
"aria-multiline": {
|
|
429
|
-
"defaultValue": null,
|
|
430
|
-
"required": false,
|
|
431
|
-
"type": "boolean"
|
|
432
|
-
},
|
|
433
|
-
"aria-multiselectable": {
|
|
434
|
-
"defaultValue": null,
|
|
435
|
-
"required": false,
|
|
436
|
-
"type": "boolean"
|
|
437
|
-
},
|
|
438
|
-
"aria-orientation": {
|
|
439
|
-
"defaultValue": null,
|
|
440
|
-
"options": ["horizontal", "vertical"],
|
|
441
|
-
"required": false,
|
|
442
|
-
"type": "radio"
|
|
443
|
-
},
|
|
444
|
-
"aria-owns": {
|
|
445
|
-
"defaultValue": null,
|
|
446
|
-
"required": false,
|
|
447
|
-
"type": "text"
|
|
448
|
-
},
|
|
449
|
-
"aria-placeholder": {
|
|
450
|
-
"defaultValue": null,
|
|
451
|
-
"required": false,
|
|
452
|
-
"type": "text"
|
|
453
|
-
},
|
|
454
|
-
"aria-posinset": {
|
|
455
|
-
"defaultValue": null,
|
|
456
|
-
"required": false,
|
|
457
|
-
"type": "number"
|
|
458
|
-
},
|
|
459
|
-
"aria-pressed": {
|
|
460
|
-
"defaultValue": null,
|
|
461
|
-
"required": false,
|
|
462
|
-
"type": "text"
|
|
463
|
-
},
|
|
464
|
-
"aria-readonly": {
|
|
465
|
-
"defaultValue": null,
|
|
466
|
-
"required": false,
|
|
467
|
-
"type": "boolean"
|
|
468
|
-
},
|
|
469
|
-
"aria-relevant": {
|
|
470
|
-
"defaultValue": null,
|
|
471
|
-
"options": [
|
|
472
|
-
"text",
|
|
473
|
-
"additions",
|
|
474
|
-
"additions removals",
|
|
475
|
-
"additions text",
|
|
476
|
-
"all",
|
|
477
|
-
"removals",
|
|
478
|
-
"removals additions",
|
|
479
|
-
"removals text",
|
|
480
|
-
"text additions",
|
|
481
|
-
"text removals"
|
|
482
|
-
],
|
|
483
|
-
"required": false,
|
|
484
|
-
"type": "select"
|
|
485
|
-
},
|
|
486
|
-
"aria-required": {
|
|
487
|
-
"defaultValue": null,
|
|
488
|
-
"required": false,
|
|
489
|
-
"type": "boolean"
|
|
490
|
-
},
|
|
491
|
-
"aria-roledescription": {
|
|
492
|
-
"defaultValue": null,
|
|
493
|
-
"required": false,
|
|
494
|
-
"type": "text"
|
|
495
|
-
},
|
|
496
|
-
"aria-rowcount": {
|
|
497
|
-
"defaultValue": null,
|
|
498
|
-
"required": false,
|
|
499
|
-
"type": "number"
|
|
500
|
-
},
|
|
501
|
-
"aria-rowindex": {
|
|
502
|
-
"defaultValue": null,
|
|
503
|
-
"required": false,
|
|
504
|
-
"type": "number"
|
|
505
|
-
},
|
|
506
|
-
"aria-rowspan": {
|
|
507
|
-
"defaultValue": null,
|
|
508
|
-
"required": false,
|
|
509
|
-
"type": "number"
|
|
510
|
-
},
|
|
511
|
-
"aria-selected": {
|
|
512
|
-
"defaultValue": null,
|
|
513
|
-
"required": false,
|
|
514
|
-
"type": "boolean"
|
|
515
|
-
},
|
|
516
|
-
"aria-setsize": {
|
|
517
|
-
"defaultValue": null,
|
|
518
|
-
"required": false,
|
|
519
|
-
"type": "number"
|
|
520
|
-
},
|
|
521
|
-
"aria-sort": {
|
|
522
|
-
"defaultValue": null,
|
|
523
|
-
"options": ["none", "ascending", "descending", "other"],
|
|
524
|
-
"required": false,
|
|
525
|
-
"type": "radio"
|
|
526
|
-
},
|
|
527
|
-
"aria-valuemax": {
|
|
528
|
-
"defaultValue": null,
|
|
529
|
-
"required": false,
|
|
530
|
-
"type": "number"
|
|
531
|
-
},
|
|
532
|
-
"aria-valuemin": {
|
|
533
|
-
"defaultValue": null,
|
|
534
|
-
"required": false,
|
|
535
|
-
"type": "number"
|
|
536
|
-
},
|
|
537
|
-
"aria-valuenow": {
|
|
538
|
-
"defaultValue": null,
|
|
539
|
-
"required": false,
|
|
540
|
-
"type": "number"
|
|
541
|
-
},
|
|
542
|
-
"aria-valuetext": {
|
|
543
|
-
"defaultValue": null,
|
|
544
|
-
"required": false,
|
|
545
|
-
"type": "text"
|
|
546
|
-
}
|
|
547
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Link = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const link_1 = require("./link");
|
|
6
|
-
exports.default = {
|
|
7
|
-
title: "Components/Link",
|
|
8
|
-
component: link_1.Link,
|
|
9
|
-
};
|
|
10
|
-
const Template = (args) => ((0, jsx_runtime_1.jsx)(link_1.Link, { ...args }));
|
|
11
|
-
exports.Link = Template.bind({});
|
|
12
|
-
exports.Link.args = {
|
|
13
|
-
children: "Link",
|
|
14
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { ComponentStory, ComponentMeta } from "@storybook/react";
|
|
3
|
-
declare const _default: ComponentMeta<import("react").ForwardRefExoticComponent<Pick<Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "href"> & {
|
|
4
|
-
href?: string | undefined;
|
|
5
|
-
}, "color" | "translate" | "type" | "id" | "children" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "media" | "target" | "href" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy"> & import("react").RefAttributes<HTMLAnchorElement>>>;
|
|
6
|
-
export default _default;
|
|
7
|
-
export declare const Link: ComponentStory<import("react").ForwardRefExoticComponent<Pick<Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "href"> & {
|
|
8
|
-
href?: string | undefined;
|
|
9
|
-
}, "color" | "translate" | "type" | "id" | "children" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "media" | "target" | "href" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy"> & import("react").RefAttributes<HTMLAnchorElement>>>;
|
|
10
|
-
//# sourceMappingURL=link.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"link.stories.d.ts","sourceRoot":"","sources":["../../../src/components/link.stories.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;;;AAGtE,wBAGyC;AAMzC,eAAO,MAAM,IAAI;;kpJAAoB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"link.ws.d.ts","sourceRoot":"","sources":["../../../src/components/link.ws.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAcxD,QAAA,MAAM,IAAI,EAAE,eAAe,CAAC,OAAO,IAAI,CAUtC,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.componentsMeta = void 0;
|
|
7
|
-
const body_props_json_1 = __importDefault(require("./body.props.json"));
|
|
8
|
-
const button_props_json_1 = __importDefault(require("./button.props.json"));
|
|
9
|
-
const bold_props_json_1 = __importDefault(require("./bold.props.json"));
|
|
10
|
-
const box_props_json_1 = __importDefault(require("./box.props.json"));
|
|
11
|
-
const form_props_json_1 = __importDefault(require("./form.props.json"));
|
|
12
|
-
const heading_props_json_1 = __importDefault(require("./heading.props.json"));
|
|
13
|
-
const input_props_json_1 = __importDefault(require("./input.props.json"));
|
|
14
|
-
const italic_props_json_1 = __importDefault(require("./italic.props.json"));
|
|
15
|
-
const superscript_props_json_1 = __importDefault(require("./superscript.props.json"));
|
|
16
|
-
const subscript_props_json_1 = __importDefault(require("./subscript.props.json"));
|
|
17
|
-
const link_props_json_1 = __importDefault(require("./link.props.json"));
|
|
18
|
-
const paragraph_props_json_1 = __importDefault(require("./paragraph.props.json"));
|
|
19
|
-
const span_props_json_1 = __importDefault(require("./span.props.json"));
|
|
20
|
-
const text_block_props_json_1 = __importDefault(require("./text-block.props.json"));
|
|
21
|
-
const image_props_json_1 = __importDefault(require("./image.props.json"));
|
|
22
|
-
const meta = {
|
|
23
|
-
Body: body_props_json_1.default,
|
|
24
|
-
Button: button_props_json_1.default,
|
|
25
|
-
Bold: bold_props_json_1.default,
|
|
26
|
-
Box: box_props_json_1.default,
|
|
27
|
-
Form: form_props_json_1.default,
|
|
28
|
-
Heading: heading_props_json_1.default,
|
|
29
|
-
Input: input_props_json_1.default,
|
|
30
|
-
Italic: italic_props_json_1.default,
|
|
31
|
-
Superscript: superscript_props_json_1.default,
|
|
32
|
-
Subscript: subscript_props_json_1.default,
|
|
33
|
-
Link: link_props_json_1.default,
|
|
34
|
-
Paragraph: paragraph_props_json_1.default,
|
|
35
|
-
Span: span_props_json_1.default,
|
|
36
|
-
TextBlock: text_block_props_json_1.default,
|
|
37
|
-
Image: image_props_json_1.default,
|
|
38
|
-
};
|
|
39
|
-
// Probably better instead of JSON to generate ts with `as const`
|
|
40
|
-
exports.componentsMeta = meta;
|