@shopify/ui-extensions 2.0.0-alpha.2 → 2022.10.1
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/build/cjs/index.js +1 -43
- package/build/cjs/surfaces/checkout/components/Banner/Banner.js +12 -0
- package/build/cjs/surfaces/checkout/components/BlockLayout/BlockLayout.js +14 -0
- package/build/cjs/surfaces/checkout/components/BlockSpacer/BlockSpacer.js +15 -0
- package/build/cjs/surfaces/checkout/components/BlockStack/BlockStack.js +12 -0
- package/build/cjs/surfaces/checkout/components/Button/Button.js +12 -0
- package/build/cjs/surfaces/checkout/components/Checkbox/Checkbox.js +12 -0
- package/build/cjs/surfaces/checkout/components/Choice/Choice.js +13 -0
- package/build/cjs/surfaces/checkout/components/ChoiceList/ChoiceList.js +13 -0
- package/build/cjs/surfaces/checkout/components/Divider/Divider.js +12 -0
- package/build/cjs/surfaces/checkout/components/Form/Form.js +20 -0
- package/build/cjs/surfaces/checkout/components/Grid/Grid.js +12 -0
- package/build/cjs/surfaces/checkout/components/GridItem/GridItem.js +14 -0
- package/build/cjs/surfaces/checkout/components/Heading/Heading.js +17 -0
- package/build/cjs/surfaces/checkout/components/HeadingGroup/HeadingGroup.js +16 -0
- package/build/cjs/surfaces/checkout/components/Icon/Icon.js +13 -0
- package/build/cjs/surfaces/checkout/components/Image/Image.js +12 -0
- package/build/cjs/surfaces/checkout/components/InlineLayout/InlineLayout.js +16 -0
- package/build/cjs/surfaces/checkout/components/InlineSpacer/InlineSpacer.js +15 -0
- package/build/cjs/surfaces/checkout/components/InlineStack/InlineStack.js +12 -0
- package/build/cjs/surfaces/checkout/components/Link/Link.js +12 -0
- package/build/cjs/surfaces/checkout/components/List/List.js +12 -0
- package/build/cjs/surfaces/checkout/components/ListItem/ListItem.js +14 -0
- package/build/cjs/surfaces/checkout/components/PhoneField/PhoneField.js +17 -0
- package/build/cjs/surfaces/checkout/components/Pressable/Pressable.js +14 -0
- package/build/cjs/surfaces/checkout/components/ScrollView/ScrollView.js +13 -0
- package/build/cjs/surfaces/checkout/components/Select/Select.js +13 -0
- package/build/cjs/surfaces/checkout/components/SkeletonImage/SkeletonImage.js +12 -0
- package/build/cjs/surfaces/checkout/components/SkeletonText/SkeletonText.js +12 -0
- package/build/cjs/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.js +12 -0
- package/build/cjs/surfaces/checkout/components/Spinner/Spinner.js +13 -0
- package/build/cjs/surfaces/checkout/components/Stepper/Stepper.js +12 -0
- package/build/cjs/surfaces/checkout/components/Tag/Tag.js +12 -0
- package/build/cjs/surfaces/checkout/components/Text/Text.js +13 -0
- package/build/cjs/surfaces/checkout/components/TextBlock/TextBlock.js +12 -0
- package/build/cjs/surfaces/checkout/components/TextField/TextField.js +12 -0
- package/build/cjs/surfaces/checkout/components/Tooltip/Tooltip.js +17 -0
- package/build/cjs/surfaces/checkout/components/View/View.js +17 -0
- package/build/cjs/surfaces/checkout/extension.js +5 -23
- package/build/cjs/surfaces/checkout/index.js +82 -65
- package/build/cjs/surfaces/checkout/style/isEqual.js +29 -0
- package/build/cjs/surfaces/checkout/style/memoize.js +138 -0
- package/build/cjs/surfaces/checkout/style/style.js +74 -0
- package/build/cjs/utilities/registration.js +8 -98
- package/build/esm/index.mjs +1 -3
- package/build/esm/surfaces/checkout/components/Banner/Banner.mjs +8 -0
- package/build/esm/surfaces/checkout/components/BlockLayout/BlockLayout.mjs +10 -0
- package/build/esm/surfaces/checkout/components/BlockSpacer/BlockSpacer.mjs +11 -0
- package/build/esm/surfaces/checkout/components/BlockStack/BlockStack.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Button/Button.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Checkbox/Checkbox.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Choice/Choice.mjs +9 -0
- package/build/esm/surfaces/checkout/components/ChoiceList/ChoiceList.mjs +9 -0
- package/build/esm/surfaces/checkout/components/Divider/Divider.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Form/Form.mjs +16 -0
- package/build/esm/surfaces/checkout/components/Grid/Grid.mjs +8 -0
- package/build/esm/surfaces/checkout/components/GridItem/GridItem.mjs +10 -0
- package/build/esm/surfaces/checkout/components/Heading/Heading.mjs +13 -0
- package/build/esm/surfaces/checkout/components/HeadingGroup/HeadingGroup.mjs +12 -0
- package/build/esm/surfaces/checkout/components/Icon/Icon.mjs +9 -0
- package/build/esm/surfaces/checkout/components/Image/Image.mjs +8 -0
- package/build/esm/surfaces/checkout/components/InlineLayout/InlineLayout.mjs +12 -0
- package/build/esm/surfaces/checkout/components/InlineSpacer/InlineSpacer.mjs +11 -0
- package/build/esm/surfaces/checkout/components/InlineStack/InlineStack.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Link/Link.mjs +8 -0
- package/build/esm/surfaces/checkout/components/List/List.mjs +8 -0
- package/build/esm/surfaces/checkout/components/ListItem/ListItem.mjs +10 -0
- package/build/esm/surfaces/checkout/components/PhoneField/PhoneField.mjs +13 -0
- package/build/esm/surfaces/checkout/components/Pressable/Pressable.mjs +10 -0
- package/build/esm/surfaces/checkout/components/ScrollView/ScrollView.mjs +9 -0
- package/build/esm/surfaces/checkout/components/Select/Select.mjs +9 -0
- package/build/esm/surfaces/checkout/components/SkeletonImage/SkeletonImage.mjs +8 -0
- package/build/esm/surfaces/checkout/components/SkeletonText/SkeletonText.mjs +8 -0
- package/build/esm/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Spinner/Spinner.mjs +9 -0
- package/build/esm/surfaces/checkout/components/Stepper/Stepper.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Tag/Tag.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Text/Text.mjs +9 -0
- package/build/esm/surfaces/checkout/components/TextBlock/TextBlock.mjs +8 -0
- package/build/esm/surfaces/checkout/components/TextField/TextField.mjs +8 -0
- package/build/esm/surfaces/checkout/components/Tooltip/Tooltip.mjs +13 -0
- package/build/esm/surfaces/checkout/components/View/View.mjs +13 -0
- package/build/esm/surfaces/checkout/extension.mjs +5 -3
- package/build/esm/surfaces/checkout/index.mjs +39 -5
- package/build/esm/surfaces/checkout/style/isEqual.mjs +25 -0
- package/build/esm/surfaces/checkout/style/memoize.mjs +132 -0
- package/build/esm/surfaces/checkout/style/style.mjs +68 -0
- package/build/esm/utilities/registration.mjs +7 -92
- package/build/esnext/index.esnext +1 -3
- package/build/esnext/surfaces/checkout/components/Banner/Banner.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/BlockLayout/BlockLayout.esnext +10 -0
- package/build/esnext/surfaces/checkout/components/BlockSpacer/BlockSpacer.esnext +11 -0
- package/build/esnext/surfaces/checkout/components/BlockStack/BlockStack.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Button/Button.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Checkbox/Checkbox.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Choice/Choice.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/ChoiceList/ChoiceList.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/Divider/Divider.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Form/Form.esnext +16 -0
- package/build/esnext/surfaces/checkout/components/Grid/Grid.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/GridItem/GridItem.esnext +10 -0
- package/build/esnext/surfaces/checkout/components/Heading/Heading.esnext +13 -0
- package/build/esnext/surfaces/checkout/components/HeadingGroup/HeadingGroup.esnext +12 -0
- package/build/esnext/surfaces/checkout/components/Icon/Icon.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/Image/Image.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/InlineLayout/InlineLayout.esnext +12 -0
- package/build/esnext/surfaces/checkout/components/InlineSpacer/InlineSpacer.esnext +11 -0
- package/build/esnext/surfaces/checkout/components/InlineStack/InlineStack.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Link/Link.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/List/List.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/ListItem/ListItem.esnext +10 -0
- package/build/esnext/surfaces/checkout/components/PhoneField/PhoneField.esnext +13 -0
- package/build/esnext/surfaces/checkout/components/Pressable/Pressable.esnext +10 -0
- package/build/esnext/surfaces/checkout/components/ScrollView/ScrollView.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/Select/Select.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/SkeletonImage/SkeletonImage.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/SkeletonText/SkeletonText.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Spinner/Spinner.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/Stepper/Stepper.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Tag/Tag.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Text/Text.esnext +9 -0
- package/build/esnext/surfaces/checkout/components/TextBlock/TextBlock.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/TextField/TextField.esnext +8 -0
- package/build/esnext/surfaces/checkout/components/Tooltip/Tooltip.esnext +13 -0
- package/build/esnext/surfaces/checkout/components/View/View.esnext +13 -0
- package/build/esnext/surfaces/checkout/extension.esnext +5 -3
- package/build/esnext/surfaces/checkout/index.esnext +39 -5
- package/build/esnext/surfaces/checkout/style/isEqual.esnext +25 -0
- package/build/esnext/surfaces/checkout/style/memoize.esnext +132 -0
- package/build/esnext/surfaces/checkout/style/style.esnext +68 -0
- package/build/esnext/utilities/registration.esnext +7 -28
- package/build/ts/api.d.ts +0 -4
- package/build/ts/api.d.ts.map +1 -1
- package/build/ts/extension.d.ts +2 -9
- package/build/ts/extension.d.ts.map +1 -1
- package/build/ts/index.d.ts +1 -1
- package/build/ts/index.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts +6 -3
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/api/shared.d.ts +4 -3
- package/build/ts/surfaces/checkout/api/shared.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts +1046 -2
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/components/Banner/Banner.d.ts +38 -0
- package/build/ts/surfaces/checkout/components/Banner/Banner.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Banner/examples/basic-banner.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Banner/examples/basic-banner.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/BlockLayout/BlockLayout.d.ts +41 -0
- package/build/ts/surfaces/checkout/components/BlockLayout/BlockLayout.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/BlockLayout/examples/basic-blockLayout.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/BlockLayout/examples/basic-blockLayout.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/BlockSpacer/BlockSpacer.d.ts +22 -0
- package/build/ts/surfaces/checkout/components/BlockSpacer/BlockSpacer.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/BlockSpacer/examples/basic-blockspacer.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/BlockSpacer/examples/basic-blockspacer.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/BlockStack/BlockStack.d.ts +42 -0
- package/build/ts/surfaces/checkout/components/BlockStack/BlockStack.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/BlockStack/examples/basic-blockstack.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/BlockStack/examples/basic-blockstack.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Button/Button.d.ts +83 -0
- package/build/ts/surfaces/checkout/components/Button/Button.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Button/examples/basic-button.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Button/examples/basic-button.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.d.ts +59 -0
- package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Checkbox/examples/basic-checkbox.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Checkbox/examples/basic-checkbox.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Choice/Choice.d.ts +27 -0
- package/build/ts/surfaces/checkout/components/Choice/Choice.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Choice/examples/basic-choice.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Choice/examples/basic-choice.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.d.ts +32 -0
- package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/ChoiceList/examples/basic-choicelist.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/ChoiceList/examples/basic-choicelist.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Divider/Divider.d.ts +30 -0
- package/build/ts/surfaces/checkout/components/Divider/Divider.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Divider/examples/basic-divider.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Divider/examples/basic-divider.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Form/Form.d.ts +32 -0
- package/build/ts/surfaces/checkout/components/Form/Form.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Form/examples/basic-form.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Form/examples/basic-form.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Grid/Grid.d.ts +95 -0
- package/build/ts/surfaces/checkout/components/Grid/Grid.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Grid/examples/basic-grid.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Grid/examples/basic-grid.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/GridItem/GridItem.d.ts +36 -0
- package/build/ts/surfaces/checkout/components/GridItem/GridItem.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/GridItem/examples/basic-griditem.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/GridItem/examples/basic-griditem.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Heading/Heading.d.ts +43 -0
- package/build/ts/surfaces/checkout/components/Heading/Heading.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Heading/examples/basic-heading.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Heading/examples/basic-heading.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/HeadingGroup/HeadingGroup.d.ts +15 -0
- package/build/ts/surfaces/checkout/components/HeadingGroup/HeadingGroup.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/HeadingGroup/examples/basic-headinggroup.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/HeadingGroup/examples/basic-headinggroup.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Icon/Icon.d.ts +38 -0
- package/build/ts/surfaces/checkout/components/Icon/Icon.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Icon/examples/basic-icon.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Icon/examples/basic-icon.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Image/Image.d.ts +73 -0
- package/build/ts/surfaces/checkout/components/Image/Image.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Image/examples/basic-image.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Image/examples/basic-image.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/InlineLayout/InlineLayout.d.ts +43 -0
- package/build/ts/surfaces/checkout/components/InlineLayout/InlineLayout.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/InlineLayout/examples/basic-inlineLayout.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/InlineLayout/examples/basic-inlineLayout.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/InlineSpacer/InlineSpacer.d.ts +22 -0
- package/build/ts/surfaces/checkout/components/InlineSpacer/InlineSpacer.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/InlineSpacer/examples/basic-inlinespacer.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/InlineSpacer/examples/basic-inlinespacer.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/InlineStack/InlineStack.d.ts +50 -0
- package/build/ts/surfaces/checkout/components/InlineStack/InlineStack.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/InlineStack/examples/basic-inlinestack.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/InlineStack/examples/basic-inlinestack.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Link/Link.d.ts +50 -0
- package/build/ts/surfaces/checkout/components/Link/Link.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Link/examples/basic-link.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Link/examples/basic-link.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/List/List.d.ts +32 -0
- package/build/ts/surfaces/checkout/components/List/List.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/List/examples/basic-list.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/List/examples/basic-list.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/ListItem/ListItem.d.ts +13 -0
- package/build/ts/surfaces/checkout/components/ListItem/ListItem.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/ListItem/examples/basic-listitem.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/ListItem/examples/basic-listitem.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.d.ts +58 -0
- package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/PhoneField/examples/basic-phonefield.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/PhoneField/examples/basic-phonefield.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Pressable/Pressable.d.ts +96 -0
- package/build/ts/surfaces/checkout/components/Pressable/Pressable.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Pressable/examples/basic-pressable.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Pressable/examples/basic-pressable.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/ScrollView/ScrollView.d.ts +74 -0
- package/build/ts/surfaces/checkout/components/ScrollView/ScrollView.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/ScrollView/examples/basic-scrollview.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/ScrollView/examples/basic-scrollview.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Select/Select.d.ts +98 -0
- package/build/ts/surfaces/checkout/components/Select/Select.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Select/examples/basic-select.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Select/examples/basic-select.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/SkeletonImage/SkeletonImage.d.ts +25 -0
- package/build/ts/surfaces/checkout/components/SkeletonImage/SkeletonImage.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/SkeletonImage/examples/basic-skeletonimage.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/SkeletonImage/examples/basic-skeletonimage.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/SkeletonText/SkeletonText.d.ts +21 -0
- package/build/ts/surfaces/checkout/components/SkeletonText/SkeletonText.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/SkeletonText/examples/basic-skeletontext.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/SkeletonText/examples/basic-skeletontext.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.d.ts +22 -0
- package/build/ts/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/SkeletonTextBlock/examples/basic-skeletontextblock.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/SkeletonTextBlock/examples/basic-skeletontextblock.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Spinner/Spinner.d.ts +32 -0
- package/build/ts/surfaces/checkout/components/Spinner/Spinner.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Spinner/examples/basic-spinner.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Spinner/examples/basic-spinner.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Stepper/Stepper.d.ts +42 -0
- package/build/ts/surfaces/checkout/components/Stepper/Stepper.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Stepper/examples/basic-stepper.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Stepper/examples/basic-stepper.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Tag/Tag.d.ts +31 -0
- package/build/ts/surfaces/checkout/components/Tag/Tag.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Tag/examples/basic-tag.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Tag/examples/basic-tag.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Text/Text.d.ts +34 -0
- package/build/ts/surfaces/checkout/components/Text/Text.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Text/examples/basic-text.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Text/examples/basic-text.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/TextBlock/TextBlock.d.ts +32 -0
- package/build/ts/surfaces/checkout/components/TextBlock/TextBlock.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/TextBlock/examples/basic-textblock.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/TextBlock/examples/basic-textblock.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/TextField/TextField.d.ts +175 -0
- package/build/ts/surfaces/checkout/components/TextField/TextField.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/TextField/examples/basic-textfield.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/TextField/examples/basic-textfield.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.d.ts +16 -0
- package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/Tooltip/examples/basic-tooltip.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/Tooltip/examples/basic-tooltip.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/View/View.d.ts +169 -0
- package/build/ts/surfaces/checkout/components/View/View.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/View/examples/basic-view.example.d.ts +2 -0
- package/build/ts/surfaces/checkout/components/View/examples/basic-view.example.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components/shared.d.ts +388 -0
- package/build/ts/surfaces/checkout/components/shared.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components.d.ts +75 -1
- package/build/ts/surfaces/checkout/components.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/extension-points.d.ts +50 -2
- package/build/ts/surfaces/checkout/extension-points.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/globals.d.ts +11 -0
- package/build/ts/surfaces/checkout/globals.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/index.d.ts +2 -0
- package/build/ts/surfaces/checkout/index.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/shared.d.ts +3 -3
- package/build/ts/surfaces/checkout/shared.d.ts.map +1 -1
- package/build/ts/surfaces/checkout/style/isEqual.d.ts +8 -0
- package/build/ts/surfaces/checkout/style/isEqual.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/style/isEqual.test.d.ts +2 -0
- package/build/ts/surfaces/checkout/style/isEqual.test.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/style/memoize.d.ts +13 -0
- package/build/ts/surfaces/checkout/style/memoize.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/style/style.d.ts +70 -0
- package/build/ts/surfaces/checkout/style/style.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/style/style.test.d.ts +2 -0
- package/build/ts/surfaces/checkout/style/style.test.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/style/types.d.ts +46 -0
- package/build/ts/surfaces/checkout/style/types.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/style.d.ts +3 -0
- package/build/ts/surfaces/checkout/style.d.ts.map +1 -0
- package/build/ts/utilities/registration.d.ts +1 -2
- package/build/ts/utilities/registration.d.ts.map +1 -1
- package/checkout.esnext +1 -1
- package/checkout.js +1 -1
- package/checkout.mjs +1 -1
- package/index.esnext +1 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +17 -11
- package/src/api.ts +0 -5
- package/src/extension.ts +3 -29
- package/src/index.ts +1 -1
- package/src/surfaces/checkout/api/cart-line-details/render-after.ts +7 -3
- package/src/surfaces/checkout/api/shared.ts +810 -3
- package/src/surfaces/checkout/api/standard/standard.ts +1240 -2
- package/src/surfaces/checkout/components/Banner/Banner.ts +37 -0
- package/src/surfaces/checkout/components/Banner/README.md +14 -0
- package/src/surfaces/checkout/components/Banner/content/guidelines.md +9 -0
- package/src/surfaces/checkout/components/Banner/examples/basic-banner.example.ts +11 -0
- package/src/surfaces/checkout/components/BlockLayout/BlockLayout.ts +43 -0
- package/src/surfaces/checkout/components/BlockLayout/README.md +101 -0
- package/src/surfaces/checkout/components/BlockLayout/examples/basic-blockLayout.example.ts +16 -0
- package/src/surfaces/checkout/components/BlockSpacer/BlockSpacer.ts +25 -0
- package/src/surfaces/checkout/components/BlockSpacer/README.md +14 -0
- package/src/surfaces/checkout/components/BlockSpacer/examples/basic-blockspacer.example.ts +11 -0
- package/src/surfaces/checkout/components/BlockStack/BlockStack.ts +53 -0
- package/src/surfaces/checkout/components/BlockStack/README.md +77 -0
- package/src/surfaces/checkout/components/BlockStack/examples/basic-blockstack.example.ts +11 -0
- package/src/surfaces/checkout/components/Button/Button.ts +87 -0
- package/src/surfaces/checkout/components/Button/README.md +22 -0
- package/src/surfaces/checkout/components/Button/content/guidelines.md +10 -0
- package/src/surfaces/checkout/components/Button/examples/basic-button.example.ts +11 -0
- package/src/{components → surfaces/checkout/components}/Checkbox/Checkbox.ts +32 -1
- package/src/surfaces/checkout/components/Checkbox/README.md +18 -0
- package/src/surfaces/checkout/components/Checkbox/content/guidelines.md +9 -0
- package/src/surfaces/checkout/components/Checkbox/examples/basic-checkbox.example.ts +11 -0
- package/src/surfaces/checkout/components/Choice/Choice.ts +25 -0
- package/src/surfaces/checkout/components/Choice/README.md +14 -0
- package/src/surfaces/checkout/components/Choice/content/guidelines.md +9 -0
- package/src/surfaces/checkout/components/Choice/examples/basic-choice.example.ts +50 -0
- package/src/surfaces/checkout/components/ChoiceList/ChoiceList.ts +33 -0
- package/src/surfaces/checkout/components/ChoiceList/README.md +14 -0
- package/src/surfaces/checkout/components/ChoiceList/content/guidelines.md +10 -0
- package/src/surfaces/checkout/components/ChoiceList/examples/basic-choicelist.example.ts +50 -0
- package/src/surfaces/checkout/components/Divider/Divider.ts +33 -0
- package/src/surfaces/checkout/components/Divider/README.md +13 -0
- package/src/surfaces/checkout/components/Divider/examples/basic-divider.example.ts +7 -0
- package/src/surfaces/checkout/components/Form/Form.ts +30 -0
- package/src/surfaces/checkout/components/Form/README.md +21 -0
- package/src/surfaces/checkout/components/Form/content/guidelines.md +4 -0
- package/src/surfaces/checkout/components/Form/examples/basic-form.example.ts +48 -0
- package/src/surfaces/checkout/components/Grid/Grid.ts +104 -0
- package/src/surfaces/checkout/components/Grid/README.md +105 -0
- package/src/surfaces/checkout/components/Grid/content/guidelines.md +3 -0
- package/src/surfaces/checkout/components/Grid/examples/basic-grid.example.ts +45 -0
- package/src/surfaces/checkout/components/GridItem/GridItem.ts +42 -0
- package/src/surfaces/checkout/components/GridItem/README.md +72 -0
- package/src/surfaces/checkout/components/GridItem/content/guidelines.md +3 -0
- package/src/surfaces/checkout/components/GridItem/examples/basic-griditem.example.ts +42 -0
- package/src/surfaces/checkout/components/Heading/Heading.ts +44 -0
- package/src/surfaces/checkout/components/Heading/README.md +19 -0
- package/src/surfaces/checkout/components/Heading/content/guidelines.md +10 -0
- package/src/surfaces/checkout/components/Heading/examples/basic-heading.example.ts +7 -0
- package/src/surfaces/checkout/components/HeadingGroup/HeadingGroup.ts +15 -0
- package/src/surfaces/checkout/components/HeadingGroup/README.md +7 -0
- package/src/surfaces/checkout/components/HeadingGroup/content/guidelines.md +9 -0
- package/src/surfaces/checkout/components/HeadingGroup/examples/basic-headinggroup.example.ts +20 -0
- package/src/surfaces/checkout/components/Icon/Icon.ts +91 -0
- package/src/surfaces/checkout/components/Icon/README.md +15 -0
- package/src/surfaces/checkout/components/Icon/examples/basic-icon.example.ts +7 -0
- package/src/surfaces/checkout/components/Image/Image.ts +83 -0
- package/src/surfaces/checkout/components/Image/README.md +53 -0
- package/src/surfaces/checkout/components/Image/examples/basic-image.example.ts +10 -0
- package/src/surfaces/checkout/components/InlineLayout/InlineLayout.ts +49 -0
- package/src/surfaces/checkout/components/InlineLayout/README.md +103 -0
- package/src/surfaces/checkout/components/InlineLayout/examples/basic-inlineLayout.example.ts +16 -0
- package/src/surfaces/checkout/components/InlineSpacer/InlineSpacer.ts +24 -0
- package/src/surfaces/checkout/components/InlineSpacer/README.md +14 -0
- package/src/surfaces/checkout/components/InlineSpacer/examples/basic-inlinespacer.example.ts +16 -0
- package/src/surfaces/checkout/components/InlineStack/InlineStack.ts +63 -0
- package/src/surfaces/checkout/components/InlineStack/README.md +87 -0
- package/src/surfaces/checkout/components/InlineStack/examples/basic-inlinestack.example.ts +18 -0
- package/src/surfaces/checkout/components/Link/Link.ts +49 -0
- package/src/surfaces/checkout/components/Link/README.md +18 -0
- package/src/surfaces/checkout/components/Link/content/guidelines.md +9 -0
- package/src/surfaces/checkout/components/Link/examples/basic-link.example.ts +11 -0
- package/src/surfaces/checkout/components/List/List.ts +32 -0
- package/src/surfaces/checkout/components/List/README.md +19 -0
- package/src/surfaces/checkout/components/List/content/guidelines.md +11 -0
- package/src/surfaces/checkout/components/List/examples/basic-list.example.ts +11 -0
- package/src/surfaces/checkout/components/ListItem/ListItem.ts +12 -0
- package/src/surfaces/checkout/components/ListItem/README.md +5 -0
- package/src/surfaces/checkout/components/ListItem/content/guidelines.md +3 -0
- package/src/surfaces/checkout/components/ListItem/examples/basic-listitem.example.ts +9 -0
- package/src/surfaces/checkout/components/PhoneField/PhoneField.ts +77 -0
- package/src/surfaces/checkout/components/PhoneField/README.md +49 -0
- package/src/surfaces/checkout/components/PhoneField/examples/basic-phonefield.example.ts +10 -0
- package/src/surfaces/checkout/components/Pressable/Pressable.ts +128 -0
- package/src/surfaces/checkout/components/Pressable/README.md +74 -0
- package/src/surfaces/checkout/components/Pressable/examples/basic-pressable.example.ts +27 -0
- package/src/surfaces/checkout/components/ScrollView/README.md +62 -0
- package/src/surfaces/checkout/components/ScrollView/ScrollView.ts +76 -0
- package/src/surfaces/checkout/components/ScrollView/examples/basic-scrollview.example.ts +38 -0
- package/src/surfaces/checkout/components/Select/README.md +41 -0
- package/src/surfaces/checkout/components/Select/Select.ts +97 -0
- package/src/surfaces/checkout/components/Select/content/guidelines.md +4 -0
- package/src/surfaces/checkout/components/Select/examples/basic-select.example.ts +36 -0
- package/src/surfaces/checkout/components/SkeletonImage/README.md +13 -0
- package/src/surfaces/checkout/components/SkeletonImage/SkeletonImage.ts +27 -0
- package/src/surfaces/checkout/components/SkeletonImage/examples/basic-skeletonimage.example.ts +10 -0
- package/src/surfaces/checkout/components/SkeletonText/README.md +13 -0
- package/src/surfaces/checkout/components/SkeletonText/SkeletonText.ts +23 -0
- package/src/surfaces/checkout/components/SkeletonText/examples/basic-skeletontext.example.ts +7 -0
- package/src/surfaces/checkout/components/SkeletonTextBlock/README.md +13 -0
- package/src/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.ts +24 -0
- package/src/surfaces/checkout/components/SkeletonTextBlock/examples/basic-skeletontextblock.example.ts +7 -0
- package/src/surfaces/checkout/components/Spinner/README.md +14 -0
- package/src/surfaces/checkout/components/Spinner/Spinner.ts +35 -0
- package/src/surfaces/checkout/components/Spinner/examples/basic-spinner.example.ts +7 -0
- package/src/surfaces/checkout/components/Stepper/README.md +28 -0
- package/src/surfaces/checkout/components/Stepper/Stepper.ts +63 -0
- package/src/surfaces/checkout/components/Stepper/content/guidelines.md +4 -0
- package/src/surfaces/checkout/components/Stepper/examples/basic-stepper.example.ts +10 -0
- package/src/surfaces/checkout/components/Tag/README.md +14 -0
- package/src/surfaces/checkout/components/Tag/Tag.ts +26 -0
- package/src/surfaces/checkout/components/Tag/examples/basic-tag.example.ts +7 -0
- package/src/surfaces/checkout/components/Text/README.md +17 -0
- package/src/surfaces/checkout/components/Text/Text.ts +44 -0
- package/src/surfaces/checkout/components/Text/content/guidelines.md +10 -0
- package/src/surfaces/checkout/components/Text/examples/basic-text.example.ts +14 -0
- package/src/surfaces/checkout/components/TextBlock/README.md +15 -0
- package/src/surfaces/checkout/components/TextBlock/TextBlock.ts +38 -0
- package/src/surfaces/checkout/components/TextBlock/content/guidelines.md +9 -0
- package/src/surfaces/checkout/components/TextBlock/examples/basic-textblock.example.ts +18 -0
- package/src/surfaces/checkout/components/TextField/README.md +49 -0
- package/src/surfaces/checkout/components/TextField/TextField.ts +173 -0
- package/src/surfaces/checkout/components/TextField/content/guidelines.md +5 -0
- package/src/surfaces/checkout/components/TextField/examples/basic-textfield.example.ts +9 -0
- package/src/surfaces/checkout/components/Tooltip/README.md +8 -0
- package/src/surfaces/checkout/components/Tooltip/Tooltip.ts +15 -0
- package/src/surfaces/checkout/components/Tooltip/examples/basic-tooltip.example.ts +23 -0
- package/src/surfaces/checkout/components/View/README.md +97 -0
- package/src/surfaces/checkout/components/View/View.ts +196 -0
- package/src/surfaces/checkout/components/View/examples/basic-view.example.ts +11 -0
- package/src/surfaces/checkout/components/shared.ts +560 -0
- package/src/surfaces/checkout/components.ts +155 -1
- package/src/surfaces/checkout/extension-points.ts +83 -3
- package/src/surfaces/checkout/globals.ts +15 -0
- package/src/surfaces/checkout/index.ts +2 -0
- package/src/surfaces/checkout/style/isEqual.test.ts +67 -0
- package/src/surfaces/checkout/style/isEqual.ts +41 -0
- package/src/surfaces/checkout/style/memoize.ts +176 -0
- package/src/surfaces/checkout/style/style.test.ts +131 -0
- package/src/surfaces/checkout/style/style.ts +161 -0
- package/src/surfaces/checkout/style/types.ts +67 -0
- package/src/surfaces/checkout/style.ts +16 -0
- package/src/utilities/registration.ts +9 -42
- package/LICENSE.md +0 -7
- package/admin.d.ts +0 -1
- package/admin.esnext +0 -1
- package/admin.js +0 -1
- package/admin.mjs +0 -1
- package/build/cjs/api.js +0 -1
- package/build/cjs/components/BlockStack/BlockStack.js +0 -11
- package/build/cjs/components/BlockStack/README.md +0 -1
- package/build/cjs/components/Button/Button.js +0 -11
- package/build/cjs/components/Button/README.md +0 -1
- package/build/cjs/components/Checkbox/Checkbox.js +0 -14
- package/build/cjs/components/Checkbox/README.md +0 -1
- package/build/cjs/components/Text/README.md +0 -1
- package/build/cjs/components/Text/Text.js +0 -11
- package/build/cjs/components/TextField/README.md +0 -1
- package/build/cjs/components/TextField/TextField.js +0 -11
- package/build/cjs/components/View/README.md +0 -1
- package/build/cjs/components/View/View.js +0 -11
- package/build/cjs/components.js +0 -53
- package/build/cjs/extension.js +0 -1
- package/build/cjs/surfaces/admin/api/checkout-editor/README.md +0 -1
- package/build/cjs/surfaces/admin/api/checkout-editor/render-settings.js +0 -1
- package/build/cjs/surfaces/admin/api/standard/README.md +0 -1
- package/build/cjs/surfaces/admin/api/standard/standard.js +0 -1
- package/build/cjs/surfaces/admin/api.js +0 -1
- package/build/cjs/surfaces/admin/components/TextField/TextField.js +0 -11
- package/build/cjs/surfaces/admin/components.js +0 -30
- package/build/cjs/surfaces/admin/extension-points.js +0 -1
- package/build/cjs/surfaces/admin/extension.js +0 -27
- package/build/cjs/surfaces/admin/index.js +0 -70
- package/build/cjs/surfaces/admin/shared.js +0 -1
- package/build/cjs/surfaces/checkout/api/cart-line-details/README.md +0 -1
- package/build/cjs/surfaces/checkout/api/cart-line-details/render-after.js +0 -1
- package/build/cjs/surfaces/checkout/api/shared.js +0 -1
- package/build/cjs/surfaces/checkout/api/standard/README.md +0 -1
- package/build/cjs/surfaces/checkout/api/standard/standard.js +0 -1
- package/build/cjs/surfaces/checkout/api.js +0 -1
- package/build/cjs/surfaces/checkout/components.js +0 -18
- package/build/cjs/surfaces/checkout/extension-points.js +0 -1
- package/build/cjs/surfaces/checkout/shared.js +0 -1
- package/build/esm/api.mjs +0 -0
- package/build/esm/components/BlockStack/BlockStack.mjs +0 -2
- package/build/esm/components/BlockStack/README.md +0 -1
- package/build/esm/components/Button/Button.mjs +0 -2
- package/build/esm/components/Button/README.md +0 -1
- package/build/esm/components/Checkbox/Checkbox.mjs +0 -6
- package/build/esm/components/Checkbox/README.md +0 -1
- package/build/esm/components/Text/README.md +0 -1
- package/build/esm/components/Text/Text.mjs +0 -2
- package/build/esm/components/TextField/README.md +0 -1
- package/build/esm/components/TextField/TextField.mjs +0 -2
- package/build/esm/components/View/README.md +0 -1
- package/build/esm/components/View/View.mjs +0 -2
- package/build/esm/components.mjs +0 -6
- package/build/esm/extension.mjs +0 -0
- package/build/esm/surfaces/admin/api/checkout-editor/README.md +0 -1
- package/build/esm/surfaces/admin/api/checkout-editor/render-settings.mjs +0 -0
- package/build/esm/surfaces/admin/api/standard/README.md +0 -1
- package/build/esm/surfaces/admin/api/standard/standard.mjs +0 -0
- package/build/esm/surfaces/admin/api.mjs +0 -0
- package/build/esm/surfaces/admin/components/TextField/TextField.mjs +0 -2
- package/build/esm/surfaces/admin/components.mjs +0 -2
- package/build/esm/surfaces/admin/extension-points.mjs +0 -0
- package/build/esm/surfaces/admin/extension.mjs +0 -3
- package/build/esm/surfaces/admin/index.mjs +0 -5
- package/build/esm/surfaces/admin/shared.mjs +0 -0
- package/build/esm/surfaces/checkout/api/cart-line-details/README.md +0 -1
- package/build/esm/surfaces/checkout/api/cart-line-details/render-after.mjs +0 -0
- package/build/esm/surfaces/checkout/api/shared.mjs +0 -0
- package/build/esm/surfaces/checkout/api/standard/README.md +0 -1
- package/build/esm/surfaces/checkout/api/standard/standard.mjs +0 -0
- package/build/esm/surfaces/checkout/api.mjs +0 -0
- package/build/esm/surfaces/checkout/components.mjs +0 -1
- package/build/esm/surfaces/checkout/extension-points.mjs +0 -0
- package/build/esm/surfaces/checkout/shared.mjs +0 -0
- package/build/esnext/api.esnext +0 -0
- package/build/esnext/components/BlockStack/BlockStack.esnext +0 -2
- package/build/esnext/components/BlockStack/README.md +0 -1
- package/build/esnext/components/Button/Button.esnext +0 -2
- package/build/esnext/components/Button/README.md +0 -1
- package/build/esnext/components/Checkbox/Checkbox.esnext +0 -6
- package/build/esnext/components/Checkbox/README.md +0 -1
- package/build/esnext/components/Text/README.md +0 -1
- package/build/esnext/components/Text/Text.esnext +0 -2
- package/build/esnext/components/TextField/README.md +0 -1
- package/build/esnext/components/TextField/TextField.esnext +0 -2
- package/build/esnext/components/View/README.md +0 -1
- package/build/esnext/components/View/View.esnext +0 -2
- package/build/esnext/components.esnext +0 -6
- package/build/esnext/extension.esnext +0 -0
- package/build/esnext/surfaces/admin/api/checkout-editor/README.md +0 -1
- package/build/esnext/surfaces/admin/api/checkout-editor/render-settings.esnext +0 -0
- package/build/esnext/surfaces/admin/api/standard/README.md +0 -1
- package/build/esnext/surfaces/admin/api/standard/standard.esnext +0 -0
- package/build/esnext/surfaces/admin/api.esnext +0 -0
- package/build/esnext/surfaces/admin/components/TextField/TextField.esnext +0 -2
- package/build/esnext/surfaces/admin/components.esnext +0 -2
- package/build/esnext/surfaces/admin/extension-points.esnext +0 -0
- package/build/esnext/surfaces/admin/extension.esnext +0 -3
- package/build/esnext/surfaces/admin/index.esnext +0 -5
- package/build/esnext/surfaces/admin/shared.esnext +0 -0
- package/build/esnext/surfaces/checkout/api/cart-line-details/README.md +0 -1
- package/build/esnext/surfaces/checkout/api/cart-line-details/render-after.esnext +0 -0
- package/build/esnext/surfaces/checkout/api/shared.esnext +0 -0
- package/build/esnext/surfaces/checkout/api/standard/README.md +0 -1
- package/build/esnext/surfaces/checkout/api/standard/standard.esnext +0 -0
- package/build/esnext/surfaces/checkout/api.esnext +0 -0
- package/build/esnext/surfaces/checkout/components.esnext +0 -1
- package/build/esnext/surfaces/checkout/extension-points.esnext +0 -0
- package/build/esnext/surfaces/checkout/shared.esnext +0 -0
- package/build/node/api.js +0 -1
- package/build/node/components/BlockStack/BlockStack.js +0 -11
- package/build/node/components/BlockStack/README.md +0 -1
- package/build/node/components/Button/Button.js +0 -11
- package/build/node/components/Button/README.md +0 -1
- package/build/node/components/Checkbox/Checkbox.js +0 -14
- package/build/node/components/Checkbox/README.md +0 -1
- package/build/node/components/Text/README.md +0 -1
- package/build/node/components/Text/Text.js +0 -11
- package/build/node/components/TextField/README.md +0 -1
- package/build/node/components/TextField/TextField.js +0 -11
- package/build/node/components/View/README.md +0 -1
- package/build/node/components/View/View.js +0 -11
- package/build/node/components.js +0 -53
- package/build/node/extension.js +0 -1
- package/build/node/index.js +0 -44
- package/build/node/surfaces/admin/api/checkout-editor/README.md +0 -1
- package/build/node/surfaces/admin/api/checkout-editor/render-settings.js +0 -1
- package/build/node/surfaces/admin/api/standard/README.md +0 -1
- package/build/node/surfaces/admin/api/standard/standard.js +0 -1
- package/build/node/surfaces/admin/api.js +0 -1
- package/build/node/surfaces/admin/components/TextField/TextField.js +0 -11
- package/build/node/surfaces/admin/components.js +0 -30
- package/build/node/surfaces/admin/extension-points.js +0 -1
- package/build/node/surfaces/admin/extension.js +0 -27
- package/build/node/surfaces/admin/index.js +0 -70
- package/build/node/surfaces/admin/shared.js +0 -1
- package/build/node/surfaces/checkout/api/cart-line-details/README.md +0 -1
- package/build/node/surfaces/checkout/api/cart-line-details/render-after.js +0 -1
- package/build/node/surfaces/checkout/api/shared.js +0 -1
- package/build/node/surfaces/checkout/api/standard/README.md +0 -1
- package/build/node/surfaces/checkout/api/standard/standard.js +0 -1
- package/build/node/surfaces/checkout/api.js +0 -1
- package/build/node/surfaces/checkout/components.js +0 -18
- package/build/node/surfaces/checkout/extension-points.js +0 -1
- package/build/node/surfaces/checkout/extension.js +0 -27
- package/build/node/surfaces/checkout/index.js +0 -70
- package/build/node/surfaces/checkout/shared.js +0 -1
- package/build/node/utilities/registration.js +0 -44
- package/build/ts/api.js +0 -2
- package/build/ts/components/BlockStack/BlockStack.d.ts +0 -8
- package/build/ts/components/BlockStack/BlockStack.d.ts.map +0 -1
- package/build/ts/components/BlockStack/BlockStack.js +0 -5
- package/build/ts/components/Button/Button.d.ts +0 -12
- package/build/ts/components/Button/Button.d.ts.map +0 -1
- package/build/ts/components/Button/Button.js +0 -5
- package/build/ts/components/Checkbox/Checkbox.d.ts +0 -30
- package/build/ts/components/Checkbox/Checkbox.d.ts.map +0 -1
- package/build/ts/components/Checkbox/Checkbox.js +0 -8
- package/build/ts/components/Text/Text.d.ts +0 -8
- package/build/ts/components/Text/Text.d.ts.map +0 -1
- package/build/ts/components/Text/Text.js +0 -5
- package/build/ts/components/TextField/TextField.d.ts +0 -53
- package/build/ts/components/TextField/TextField.d.ts.map +0 -1
- package/build/ts/components/TextField/TextField.js +0 -5
- package/build/ts/components/View/View.d.ts +0 -8
- package/build/ts/components/View/View.d.ts.map +0 -1
- package/build/ts/components/View/View.js +0 -5
- package/build/ts/components.d.ts +0 -13
- package/build/ts/components.d.ts.map +0 -1
- package/build/ts/components.js +0 -15
- package/build/ts/extension.js +0 -2
- package/build/ts/index.js +0 -19
- package/build/ts/surfaces/admin/api/checkout-editor/render-settings.d.ts +0 -19
- package/build/ts/surfaces/admin/api/checkout-editor/render-settings.d.ts.map +0 -1
- package/build/ts/surfaces/admin/api/checkout-editor/render-settings.js +0 -2
- package/build/ts/surfaces/admin/api/standard/standard.d.ts +0 -7
- package/build/ts/surfaces/admin/api/standard/standard.d.ts.map +0 -1
- package/build/ts/surfaces/admin/api/standard/standard.js +0 -2
- package/build/ts/surfaces/admin/api.d.ts +0 -3
- package/build/ts/surfaces/admin/api.d.ts.map +0 -1
- package/build/ts/surfaces/admin/api.js +0 -2
- package/build/ts/surfaces/admin/components/TextField/TextField.d.ts +0 -15
- package/build/ts/surfaces/admin/components/TextField/TextField.d.ts.map +0 -1
- package/build/ts/surfaces/admin/components/TextField/TextField.js +0 -5
- package/build/ts/surfaces/admin/components.d.ts +0 -4
- package/build/ts/surfaces/admin/components.d.ts.map +0 -1
- package/build/ts/surfaces/admin/components.js +0 -20
- package/build/ts/surfaces/admin/extension-points.d.ts +0 -9
- package/build/ts/surfaces/admin/extension-points.d.ts.map +0 -1
- package/build/ts/surfaces/admin/extension-points.js +0 -2
- package/build/ts/surfaces/admin/extension.d.ts +0 -4
- package/build/ts/surfaces/admin/extension.d.ts.map +0 -1
- package/build/ts/surfaces/admin/extension.js +0 -20
- package/build/ts/surfaces/admin/index.d.ts +0 -6
- package/build/ts/surfaces/admin/index.d.ts.map +0 -1
- package/build/ts/surfaces/admin/index.js +0 -21
- package/build/ts/surfaces/admin/shared.d.ts +0 -8
- package/build/ts/surfaces/admin/shared.d.ts.map +0 -1
- package/build/ts/surfaces/admin/shared.js +0 -2
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.js +0 -2
- package/build/ts/surfaces/checkout/api/shared.js +0 -2
- package/build/ts/surfaces/checkout/api/standard/standard.js +0 -2
- package/build/ts/surfaces/checkout/api.js +0 -2
- package/build/ts/surfaces/checkout/components.js +0 -17
- package/build/ts/surfaces/checkout/extension-points.js +0 -2
- package/build/ts/surfaces/checkout/extension.js +0 -20
- package/build/ts/surfaces/checkout/index.js +0 -21
- package/build/ts/surfaces/checkout/shared.js +0 -2
- package/build/ts/utilities/registration.js +0 -111
- package/build/tsconfig.tsbuildinfo +0 -1
- package/checkout.d.ts +0 -1
- package/index.d.ts +0 -1
- package/sewing-kit.config.ts +0 -9
- package/src/components/BlockStack/BlockStack.ts +0 -7
- package/src/components/BlockStack/README.md +0 -1
- package/src/components/Button/Button.ts +0 -10
- package/src/components/Button/README.md +0 -1
- package/src/components/Checkbox/README.md +0 -1
- package/src/components/Text/README.md +0 -1
- package/src/components/Text/Text.ts +0 -5
- package/src/components/TextField/README.md +0 -1
- package/src/components/TextField/TextField.ts +0 -56
- package/src/components/View/README.md +0 -1
- package/src/components/View/View.ts +0 -5
- package/src/components.ts +0 -17
- package/src/surfaces/admin/api/checkout-editor/README.md +0 -1
- package/src/surfaces/admin/api/checkout-editor/render-settings.ts +0 -26
- package/src/surfaces/admin/api/standard/README.md +0 -1
- package/src/surfaces/admin/api/standard/standard.ts +0 -8
- package/src/surfaces/admin/api.ts +0 -2
- package/src/surfaces/admin/components/TextField/TextField.ts +0 -16
- package/src/surfaces/admin/components.ts +0 -4
- package/src/surfaces/admin/extension-points.ts +0 -17
- package/src/surfaces/admin/extension.ts +0 -7
- package/src/surfaces/admin/index.ts +0 -5
- package/src/surfaces/admin/shared.ts +0 -14
- package/tsconfig.json +0 -9
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { IconSource } from '../Icon/Icon';
|
|
2
|
+
export interface TagProps {
|
|
3
|
+
children?: string;
|
|
4
|
+
/**
|
|
5
|
+
* Icon source
|
|
6
|
+
*/
|
|
7
|
+
icon?: IconSource;
|
|
8
|
+
/**
|
|
9
|
+
* A label used for buyers using assistive technologies. When set, any
|
|
10
|
+
* `children` supplied to this component are hidden from being seen for
|
|
11
|
+
* accessibility purposes to prevent duplicate content from being read.
|
|
12
|
+
*/
|
|
13
|
+
accessibilityLabel?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Callback when tag is removed
|
|
16
|
+
*/
|
|
17
|
+
onRemove?(): void;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* A Tag is used to help label, organize or categorize objects. It is commonly used in Checkout to display the discounts applied to a cart.
|
|
21
|
+
*/
|
|
22
|
+
export declare const Tag: "Tag" & {
|
|
23
|
+
readonly type?: "Tag" | undefined; /**
|
|
24
|
+
* A label used for buyers using assistive technologies. When set, any
|
|
25
|
+
* `children` supplied to this component are hidden from being seen for
|
|
26
|
+
* accessibility purposes to prevent duplicate content from being read.
|
|
27
|
+
*/
|
|
28
|
+
readonly props?: TagProps | undefined;
|
|
29
|
+
readonly children?: true | undefined;
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=Tag.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/components/Tag/Tag.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAE7C,MAAM,WAAW,QAAQ;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,IAAI,IAAI,CAAC;CACnB;AAED;;GAEG;AACH,eAAO,MAAM,GAAG;uCAfd;;;;OAIG;;;CAW2D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-tag.example.d.ts","sourceRoot":"","sources":["../../../../../../../src/surfaces/checkout/components/Tag/examples/basic-tag.example.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { TextAccessibilityRole, Emphasis, Size, Appearance, VisibilityProps } from '../shared';
|
|
2
|
+
export interface TextProps extends VisibilityProps {
|
|
3
|
+
/**
|
|
4
|
+
* Size of the text
|
|
5
|
+
*/
|
|
6
|
+
size?: Extract<Size, 'extraSmall' | 'small' | 'base' | 'large' | 'extraLarge'> | 'medium';
|
|
7
|
+
/**
|
|
8
|
+
* Use to emphasize a word or a group of words.
|
|
9
|
+
*/
|
|
10
|
+
emphasis?: Emphasis;
|
|
11
|
+
/**
|
|
12
|
+
* Set the semantic of the component’s content
|
|
13
|
+
*/
|
|
14
|
+
accessibilityRole?: TextAccessibilityRole;
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier. Typically used as a target for another component’s controls
|
|
17
|
+
* to associate an accessible label with an action.
|
|
18
|
+
*/
|
|
19
|
+
id?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Changes the visual appearance
|
|
22
|
+
*/
|
|
23
|
+
appearance?: Extract<Appearance, 'accent' | 'subdued' | 'info' | 'success' | 'warning' | 'critical'>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Text is used to visually style and provide semantic value for a small piece of text
|
|
27
|
+
* content.
|
|
28
|
+
*/
|
|
29
|
+
export declare const Text: "Text" & {
|
|
30
|
+
readonly type?: "Text" | undefined;
|
|
31
|
+
readonly props?: TextProps | undefined;
|
|
32
|
+
readonly children?: true | undefined;
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=Text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/components/Text/Text.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,qBAAqB,EACrB,QAAQ,EACR,IAAI,EACJ,UAAU,EACV,eAAe,EAChB,MAAM,WAAW,CAAC;AAEnB,MAAM,WAAW,SAAU,SAAQ,eAAe;IAChD;;OAEG;IACH,IAAI,CAAC,EACD,OAAO,CAAC,IAAI,EAAE,YAAY,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,YAAY,CAAC,GACvE,QAAQ,CAAC;IACb;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB;;OAEG;IACH,iBAAiB,CAAC,EAAE,qBAAqB,CAAC;IAC1C;;;OAGG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAClB,UAAU,EACV,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CACnE,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,IAAI;;;;CAAmD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-text.example.d.ts","sourceRoot":"","sources":["../../../../../../../src/surfaces/checkout/components/Text/examples/basic-text.example.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { InlineAlignment, Emphasis, Size, Appearance } from '../shared';
|
|
2
|
+
export interface TextBlockProps {
|
|
3
|
+
/**
|
|
4
|
+
* Size of the text
|
|
5
|
+
*/
|
|
6
|
+
size?: Extract<Size, 'extraSmall' | 'small' | 'base' | 'large' | 'extraLarge'> | 'medium';
|
|
7
|
+
/**
|
|
8
|
+
* Use to emphasize a word or a group of words.
|
|
9
|
+
*/
|
|
10
|
+
emphasis?: Emphasis;
|
|
11
|
+
/**
|
|
12
|
+
* Unique identifier
|
|
13
|
+
*/
|
|
14
|
+
id?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Changes the visual appearance
|
|
17
|
+
*/
|
|
18
|
+
appearance?: Extract<Appearance, 'accent' | 'subdued' | 'info' | 'success' | 'warning' | 'critical'>;
|
|
19
|
+
/**
|
|
20
|
+
* Align text along the main axis.
|
|
21
|
+
*/
|
|
22
|
+
inlineAlignment?: InlineAlignment;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Text block is used to render a block of text that occupies the full width available, like a paragraph.
|
|
26
|
+
*/
|
|
27
|
+
export declare const TextBlock: "TextBlock" & {
|
|
28
|
+
readonly type?: "TextBlock" | undefined;
|
|
29
|
+
readonly props?: TextBlockProps | undefined;
|
|
30
|
+
readonly children?: true | undefined;
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=TextBlock.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextBlock.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/components/TextBlock/TextBlock.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,UAAU,EAAC,MAAM,WAAW,CAAC;AAE3E,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,IAAI,CAAC,EACD,OAAO,CAAC,IAAI,EAAE,YAAY,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,YAAY,CAAC,GACvE,QAAQ,CAAC;IACb;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAClB,UAAU,EACV,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CACnE,CAAC;IACF;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC;AAED;;GAEG;AACH,eAAO,MAAM,SAAS;;;;CAErB,CAAC"}
|
package/build/ts/surfaces/checkout/components/TextBlock/examples/basic-textblock.example.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-textblock.example.d.ts","sourceRoot":"","sources":["../../../../../../../src/surfaces/checkout/components/TextBlock/examples/basic-textblock.example.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { RemoteFragment } from '@remote-ui/core';
|
|
2
|
+
import type { Autocomplete } from '../shared';
|
|
3
|
+
import type { IconSource } from '../Icon/Icon';
|
|
4
|
+
type Type = 'text' | 'email' | 'number' | 'telephone';
|
|
5
|
+
export interface TextFieldProps<T extends string | number | undefined> {
|
|
6
|
+
/**
|
|
7
|
+
* A unique identifier for the field. When no `id` is set,
|
|
8
|
+
* a globally unique value will be used instead.
|
|
9
|
+
*/
|
|
10
|
+
id?: string;
|
|
11
|
+
/**
|
|
12
|
+
* An icon to render at the start or end of the field.
|
|
13
|
+
* It will render at the start by default.
|
|
14
|
+
*/
|
|
15
|
+
icon?: IconSource | {
|
|
16
|
+
source: IconSource;
|
|
17
|
+
position?: 'start' | 'end';
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* An identifier for the field that is unique within the nearest
|
|
21
|
+
* containing `Form` component.
|
|
22
|
+
*/
|
|
23
|
+
name?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Content to use as the field label. This value is also used as the placeholder
|
|
26
|
+
* when the field is empty.
|
|
27
|
+
*/
|
|
28
|
+
label: string;
|
|
29
|
+
/**
|
|
30
|
+
* Text content to render before the value.
|
|
31
|
+
*/
|
|
32
|
+
prefix?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Text content to render at the end of the text field.
|
|
35
|
+
*/
|
|
36
|
+
suffix?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Any content to render at the end of the text field. Commonly used
|
|
39
|
+
* to display an icon that opens a tooltip providing more information about the field.
|
|
40
|
+
*/
|
|
41
|
+
accessory?: string | RemoteFragment;
|
|
42
|
+
/**
|
|
43
|
+
* A detailed description for screen readers.
|
|
44
|
+
*/
|
|
45
|
+
accessibilityDescription?: string;
|
|
46
|
+
/**
|
|
47
|
+
* The current value for the field. If omitted, the field will be empty. You should
|
|
48
|
+
* update this value in response to the `onChange` callback.
|
|
49
|
+
*/
|
|
50
|
+
value?: T;
|
|
51
|
+
/**
|
|
52
|
+
* In rare cases, like the PhoneField component, we completely control state.
|
|
53
|
+
* In those cases, there is never a difference between the `value` prop of the field
|
|
54
|
+
* and the current value in the field, and so this component never considers the
|
|
55
|
+
* field to have changed. Use the `controlledValue` prop to provide the value that
|
|
56
|
+
* should be shown to the buyer in those circumstances, but where the `value` prop
|
|
57
|
+
* will continue to be used as the comparison value to determine whether the field
|
|
58
|
+
* has changed. This value will usually be set to the last committed, unformatted value
|
|
59
|
+
* for the controlled input.
|
|
60
|
+
*/
|
|
61
|
+
controlledValue?: T;
|
|
62
|
+
/**
|
|
63
|
+
* The content type a buyer will enter into the field. This type is used to provide
|
|
64
|
+
* semantic value to the field and, where possible, will provide the buyer with
|
|
65
|
+
* a better editing experience for the content type.
|
|
66
|
+
*
|
|
67
|
+
* Note that the type property does not change the way the text field’s value will
|
|
68
|
+
* be provided in `onChange` or `onInput`; a text field with a type of `'number'`
|
|
69
|
+
* will still provide the exact user entry, as a string, to those callbacks. The
|
|
70
|
+
* type also does not perform any form of automatic validation. If you want to
|
|
71
|
+
* perform validation, use the `error` property.
|
|
72
|
+
*/
|
|
73
|
+
type?: Type;
|
|
74
|
+
/**
|
|
75
|
+
* Whether the field needs a value. This requirement adds semantic value
|
|
76
|
+
* to the field, but it will not cause an error to appear automatically.
|
|
77
|
+
* If you want to present an error when this field is empty, you can do
|
|
78
|
+
* so with the `error` prop.
|
|
79
|
+
*/
|
|
80
|
+
required?: boolean;
|
|
81
|
+
/**
|
|
82
|
+
* Indicate an error to the user. The field will be given a specific stylistic treatment
|
|
83
|
+
* to communicate problems that have to be resolved immediately.
|
|
84
|
+
*/
|
|
85
|
+
error?: string;
|
|
86
|
+
/**
|
|
87
|
+
* Whether the field supports multiple lines of input.
|
|
88
|
+
* Set a `number` to define the default lines of the input.
|
|
89
|
+
*/
|
|
90
|
+
multiline?: boolean | number;
|
|
91
|
+
/**
|
|
92
|
+
* A hint as to the intended content of the field.
|
|
93
|
+
*
|
|
94
|
+
* When set to `true`, this property indicates that the field should support
|
|
95
|
+
* autofill, but you do not have any more semantic information on the intended
|
|
96
|
+
* contents.
|
|
97
|
+
*
|
|
98
|
+
* When set to `false`, you are indicating that this field contains sensitive
|
|
99
|
+
* information, or contents that are never saved, like one-time codes.
|
|
100
|
+
*
|
|
101
|
+
* Alternatively, you can provide an `Autocomplete` object, which describes the
|
|
102
|
+
* specific data you would like to be entered into this field during autofill.
|
|
103
|
+
*/
|
|
104
|
+
autocomplete?: Autocomplete | boolean;
|
|
105
|
+
/**
|
|
106
|
+
* Whether the field can be modified.
|
|
107
|
+
*/
|
|
108
|
+
disabled?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Whether the field is read-only.
|
|
111
|
+
*/
|
|
112
|
+
readonly?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* Specifies the maximum number of characters allowed.
|
|
115
|
+
*/
|
|
116
|
+
maxLength?: number;
|
|
117
|
+
/**
|
|
118
|
+
* Callback when input is focused.
|
|
119
|
+
*/
|
|
120
|
+
onFocus?(): void;
|
|
121
|
+
/**
|
|
122
|
+
* Callback when focus is removed.
|
|
123
|
+
*/
|
|
124
|
+
onBlur?(): void;
|
|
125
|
+
/**
|
|
126
|
+
* Callback when the buyer has **finished editing** a field. Unlike `onChange`
|
|
127
|
+
* callbacks you may be familiar with from Polaris or other React component libraries,
|
|
128
|
+
* this callback is **not** run on every change to the input. Text fields are
|
|
129
|
+
* “partially controlled” components, which means that while the buyer edits the
|
|
130
|
+
* field, its state is controlled by the component. Once the buyer has signalled that
|
|
131
|
+
* they have finished editing the field (typically, by blurring the field), `onChange`
|
|
132
|
+
* is called if the input actually changed from the most recent `value` property. At
|
|
133
|
+
* that point, you are expected to store this “committed value” in state, and reflect
|
|
134
|
+
* it in the text field’s `value` property.
|
|
135
|
+
*
|
|
136
|
+
* This state management model is important given how UI Extensions are rendered. UI Extension components
|
|
137
|
+
* run on a separate thread from the UI, so they can’t respond to input synchronously.
|
|
138
|
+
* A pattern popularized by [controlled React components](https://reactjs.org/docs/forms.html#controlled-components)
|
|
139
|
+
* is to have the component be the source of truth for the input `value`, and update
|
|
140
|
+
* the `value` on every user input. The delay in responding to events from a UI
|
|
141
|
+
* extension is only a few milliseconds, but attempting to strictly store state with
|
|
142
|
+
* this delay can cause issues if a user types quickly, or if the buyer is using a
|
|
143
|
+
* lower-powered device. Having the UI thread take ownership for “in progress” input,
|
|
144
|
+
* and only synchronizing when the user is finished with a field, avoids this risk.
|
|
145
|
+
*
|
|
146
|
+
* It can still sometimes be useful to be notified when the user makes any input in
|
|
147
|
+
* the field. If you need this capability, you can use the `onInput` prop. However,
|
|
148
|
+
* never use that property to create tightly controlled state for the `value`.
|
|
149
|
+
*
|
|
150
|
+
* This callback is called with the current value of the field. If the value of a field
|
|
151
|
+
* is the same as the current `value` prop provided to the field, the `onChange` callback
|
|
152
|
+
* will not be run.
|
|
153
|
+
*/
|
|
154
|
+
onChange?(value: T): void;
|
|
155
|
+
/**
|
|
156
|
+
* Callback when the user makes any changes in the field. As noted in the documentation
|
|
157
|
+
* for `onChange`, you **must not** use this to update `state` — use the `onChange`
|
|
158
|
+
* callback for that purpose. Use the `onInput` prop when you need to do something
|
|
159
|
+
* as soon as the buyer makes a change, like clearing validation errors that apply to
|
|
160
|
+
* the field as soon as the user begins making the necessary adjustments.
|
|
161
|
+
*
|
|
162
|
+
* This callback is called with the current value of the field.
|
|
163
|
+
*/
|
|
164
|
+
onInput?(value: T): void;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* Use a text field to get text input from a customer.
|
|
168
|
+
*/
|
|
169
|
+
export declare const TextField: "TextField" & {
|
|
170
|
+
readonly type?: "TextField" | undefined;
|
|
171
|
+
readonly props?: TextFieldProps<string> | undefined;
|
|
172
|
+
readonly children?: true | undefined;
|
|
173
|
+
};
|
|
174
|
+
export {};
|
|
175
|
+
//# sourceMappingURL=TextField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/components/TextField/TextField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAEtE,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,WAAW,CAAC;AAC5C,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAE7C,KAAK,IAAI,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,WAAW,CAAC;AAEtD,MAAM,WAAW,cAAc,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,SAAS;IACnE;;;OAGG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;;OAGG;IACH,IAAI,CAAC,EAAE,UAAU,GAAG;QAAC,MAAM,EAAE,UAAU,CAAC;QAAC,QAAQ,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;KAAC,CAAC;IACrE;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,cAAc,CAAC;IACpC;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC;;;OAGG;IACH,KAAK,CAAC,EAAE,CAAC,CAAC;IACV;;;;;;;;;OASG;IACH,eAAe,CAAC,EAAE,CAAC,CAAC;IACpB;;;;;;;;;;OAUG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC7B;;;;;;;;;;;;OAYG;IACH,YAAY,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC;IACtC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,IAAI,IAAI,CAAC;IACjB;;OAEG;IACH,MAAM,CAAC,IAAI,IAAI,CAAC;IAChB;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IACH,QAAQ,CAAC,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;IAC1B;;;;;;;;OAQG;IACH,OAAO,CAAC,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;CAC1B;AAED;;GAEG;AACH,eAAO,MAAM,SAAS;;;;CAGR,CAAC"}
|
package/build/ts/surfaces/checkout/components/TextField/examples/basic-textfield.example.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-textfield.example.d.ts","sourceRoot":"","sources":["../../../../../../../src/surfaces/checkout/components/TextField/examples/basic-textfield.example.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface TooltipProps {
|
|
2
|
+
}
|
|
3
|
+
/**
|
|
4
|
+
* Tooltips are floating labels that briefly explain the function of a user interface element.
|
|
5
|
+
* They must be specified inside the `overlay` prop of an activator component.
|
|
6
|
+
* Currently, activator components are `Button`, `Link`, and `Pressable`.
|
|
7
|
+
*
|
|
8
|
+
* The library takes care of applying the WAI-ARIA Tooltip Widget pattern automatically for the activator
|
|
9
|
+
* and the tooltip content. Expect screen readers to read the tooltip content when the user focuses the activator.
|
|
10
|
+
*/
|
|
11
|
+
export declare const Tooltip: "Tooltip" & {
|
|
12
|
+
readonly type?: "Tooltip" | undefined;
|
|
13
|
+
readonly props?: TooltipProps | undefined;
|
|
14
|
+
readonly children?: true | undefined;
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/components/Tooltip/Tooltip.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,YAAY;CAAG;AAEhC;;;;;;;GAOG;AACH,eAAO,MAAM,OAAO;;;;CAEnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-tooltip.example.d.ts","sourceRoot":"","sources":["../../../../../../../src/surfaces/checkout/components/Tooltip/examples/basic-tooltip.example.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { MaybeResponsiveConditionalStyle } from '../../style';
|
|
2
|
+
import type { BlockAlignment, BorderProps, InlineAlignment, SizingProps, SpacingProps, VisibilityProps, Display, MultiPick, ViewLikeAccessibilityRole } from '../shared';
|
|
3
|
+
type AccessibilityVisibility = 'hidden';
|
|
4
|
+
type Opacity = 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90;
|
|
5
|
+
export type PositionType = 'absolute' | 'relative' | 'sticky';
|
|
6
|
+
export type Coordinate = number | `${number}%`;
|
|
7
|
+
interface BaseCoordinates {
|
|
8
|
+
/**
|
|
9
|
+
* Adjust the block start offset.
|
|
10
|
+
*
|
|
11
|
+
* `number`: size in pixels.
|
|
12
|
+
*
|
|
13
|
+
* `` `${number}%` ``: size in percentages. It refers to the block size of the parent component.
|
|
14
|
+
*/
|
|
15
|
+
blockStart: Coordinate;
|
|
16
|
+
/**
|
|
17
|
+
* Adjust the inline start offset.
|
|
18
|
+
*
|
|
19
|
+
* `number`: size in pixels.
|
|
20
|
+
*
|
|
21
|
+
* `` `${number}%` ``: size in percentages. It refers to the block size of the parent component.
|
|
22
|
+
*/
|
|
23
|
+
inlineStart: Coordinate;
|
|
24
|
+
/**
|
|
25
|
+
* Adjust the block end offset.
|
|
26
|
+
*
|
|
27
|
+
* `number`: size in pixels.
|
|
28
|
+
*
|
|
29
|
+
* `` `${number}%` ``: size in percentages. It refers to the block size of the parent component.
|
|
30
|
+
*/
|
|
31
|
+
blockEnd: Coordinate;
|
|
32
|
+
/**
|
|
33
|
+
* Adjust the inline end offset.
|
|
34
|
+
*
|
|
35
|
+
* `number`: size in pixels.
|
|
36
|
+
*
|
|
37
|
+
* `` `${number}%` ``: size in percentages. It refers to the block size of the parent component.
|
|
38
|
+
*/
|
|
39
|
+
inlineEnd: Coordinate;
|
|
40
|
+
}
|
|
41
|
+
type PositionCoordinates = MultiPick<BaseCoordinates, [
|
|
42
|
+
'blockStart' | 'inlineStart',
|
|
43
|
+
'blockStart' | 'inlineEnd',
|
|
44
|
+
'blockEnd' | 'inlineStart',
|
|
45
|
+
'blockEnd' | 'inlineEnd',
|
|
46
|
+
'blockStart',
|
|
47
|
+
'blockEnd',
|
|
48
|
+
'inlineStart',
|
|
49
|
+
'inlineEnd'
|
|
50
|
+
]>;
|
|
51
|
+
export type Position = {
|
|
52
|
+
/**
|
|
53
|
+
* Changes how the View is positioned. For setting the position, only properties
|
|
54
|
+
* that set the offset on a different axis can be set simultaneously. This means
|
|
55
|
+
* that these combinations are not allowed:
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
* { blockStart, blockEnd }
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* ```
|
|
62
|
+
* { inlineStart, inlineEnd }
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* @defaultValue 'relative'
|
|
66
|
+
*/
|
|
67
|
+
type?: PositionType;
|
|
68
|
+
} & PositionCoordinates;
|
|
69
|
+
export interface Translate {
|
|
70
|
+
/**
|
|
71
|
+
* Adjust the translation on the cross axis.
|
|
72
|
+
*
|
|
73
|
+
* A percentage value refers to the block size of the View.
|
|
74
|
+
*/
|
|
75
|
+
block?: number | `${number}%`;
|
|
76
|
+
/**
|
|
77
|
+
* Adjust the translation on the main axis.
|
|
78
|
+
*
|
|
79
|
+
* A percentage value refers to the inline size of the View.
|
|
80
|
+
*/
|
|
81
|
+
inline?: number | `${number}%`;
|
|
82
|
+
}
|
|
83
|
+
export interface ViewProps extends BorderProps, SizingProps, SpacingProps, VisibilityProps {
|
|
84
|
+
/**
|
|
85
|
+
* Changes the visibility of the element to assistive technologies.
|
|
86
|
+
*
|
|
87
|
+
* `hidden` hides the component from assistive technology (for example,
|
|
88
|
+
* a screen reader) but remains visually visible.
|
|
89
|
+
*/
|
|
90
|
+
accessibilityVisibility?: AccessibilityVisibility;
|
|
91
|
+
/**
|
|
92
|
+
* Changes the display of the View.
|
|
93
|
+
*
|
|
94
|
+
*
|
|
95
|
+
* `inline` follows the direction of words in a sentence based on the document’s writing mode.
|
|
96
|
+
*
|
|
97
|
+
* `block` follows the direction of paragraphs based on the document’s writing mode.
|
|
98
|
+
*
|
|
99
|
+
*
|
|
100
|
+
* @defaultValue 'block'
|
|
101
|
+
*/
|
|
102
|
+
display?: Display;
|
|
103
|
+
/**
|
|
104
|
+
* A unique identifier for the View.
|
|
105
|
+
*/
|
|
106
|
+
id?: string;
|
|
107
|
+
/**
|
|
108
|
+
* Sets the opacity of the View. The opacity will be applied to the background as well as all
|
|
109
|
+
* the children of the View. Use carefully as this could decrease the contrast ratio between
|
|
110
|
+
* the background and foreground elements, resulting in unreadable and inaccessible text.
|
|
111
|
+
*/
|
|
112
|
+
opacity?: Opacity;
|
|
113
|
+
/**
|
|
114
|
+
* A label that describes the purpose or contents of the element. When set,
|
|
115
|
+
* it will be announced to buyers using assistive technologies and will
|
|
116
|
+
* provide them with more context.
|
|
117
|
+
*/
|
|
118
|
+
accessibilityLabel?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Sets the semantic meaning of the component’s content. When set,
|
|
121
|
+
* the role will be used by assistive technologies to help buyers
|
|
122
|
+
* navigate the page.
|
|
123
|
+
*
|
|
124
|
+
*
|
|
125
|
+
* For example:
|
|
126
|
+
*
|
|
127
|
+
* - In an HTML host a `['listItem', 'separator']` tuple will render: <li role='separator'>
|
|
128
|
+
*
|
|
129
|
+
* - In an HTML host a `listItem` string will render: <li>
|
|
130
|
+
*/
|
|
131
|
+
accessibilityRole?: ViewLikeAccessibilityRole;
|
|
132
|
+
/**
|
|
133
|
+
* Changes how the View is positioned.
|
|
134
|
+
*/
|
|
135
|
+
position?: MaybeResponsiveConditionalStyle<Position>;
|
|
136
|
+
/**
|
|
137
|
+
* Specifies a two-dimensional translation of the View.
|
|
138
|
+
*/
|
|
139
|
+
translate?: MaybeResponsiveConditionalStyle<Translate>;
|
|
140
|
+
/**
|
|
141
|
+
* Position children along the cross axis
|
|
142
|
+
*/
|
|
143
|
+
blockAlignment?: MaybeResponsiveConditionalStyle<Extract<BlockAlignment, 'start' | 'center' | 'end'>>;
|
|
144
|
+
/**
|
|
145
|
+
* Position children along the main axis
|
|
146
|
+
*/
|
|
147
|
+
inlineAlignment?: MaybeResponsiveConditionalStyle<InlineAlignment>;
|
|
148
|
+
/**
|
|
149
|
+
* Adjust the inline size.
|
|
150
|
+
*
|
|
151
|
+
* `fill`: takes all the available space.
|
|
152
|
+
*/
|
|
153
|
+
inlineSize?: MaybeResponsiveConditionalStyle<'fill'>;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* View is a generic container component. Its contents will always be their
|
|
157
|
+
* “natural” size, so this component can be useful in layout components (like `Grid`,
|
|
158
|
+
* `BlockStack`, `InlineStack`) that would otherwise stretch their children to fit.
|
|
159
|
+
*
|
|
160
|
+
* Note: View’s box model related properties like `padding`, `border`, `borderRadius`, and `borderColor` are implemented as
|
|
161
|
+
* [CSS Logical Properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties/Basic_concepts).
|
|
162
|
+
*/
|
|
163
|
+
export declare const View: "View" & {
|
|
164
|
+
readonly type?: "View" | undefined;
|
|
165
|
+
readonly props?: ViewProps | undefined;
|
|
166
|
+
readonly children?: true | undefined;
|
|
167
|
+
};
|
|
168
|
+
export {};
|
|
169
|
+
//# sourceMappingURL=View.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/components/View/View.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,+BAA+B,EAAC,MAAM,aAAa,CAAC;AAC5D,OAAO,KAAK,EACV,cAAc,EACd,WAAW,EACX,eAAe,EACf,WAAW,EACX,YAAY,EACZ,eAAe,EACf,OAAO,EACP,SAAS,EACT,yBAAyB,EAC1B,MAAM,WAAW,CAAC;AAEnB,KAAK,uBAAuB,GAAG,QAAQ,CAAC;AAExC,KAAK,OAAO,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;AAE1D,MAAM,MAAM,YAAY,GAAG,UAAU,GAAG,UAAU,GAAG,QAAQ,CAAC;AAE9D,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC;AAC/C,UAAU,eAAe;IACvB;;;;;;OAMG;IACH,UAAU,EAAE,UAAU,CAAC;IACvB;;;;;;OAMG;IACH,WAAW,EAAE,UAAU,CAAC;IACxB;;;;;;OAMG;IACH,QAAQ,EAAE,UAAU,CAAC;IACrB;;;;;;OAMG;IACH,SAAS,EAAE,UAAU,CAAC;CACvB;AAED,KAAK,mBAAmB,GAAG,SAAS,CAClC,eAAe,EACf;IACE,YAAY,GAAG,aAAa;IAC5B,YAAY,GAAG,WAAW;IAC1B,UAAU,GAAG,aAAa;IAC1B,UAAU,GAAG,WAAW;IACxB,YAAY;IACZ,UAAU;IACV,aAAa;IACb,WAAW;CACZ,CACF,CAAC;AAEF,MAAM,MAAM,QAAQ,GAAG;IACrB;;;;;;;;;;;;;;OAcG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;CACrB,GAAG,mBAAmB,CAAC;AAExB,MAAM,WAAW,SAAS;IACxB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,GAAG,MAAM,GAAG,CAAC;CAChC;AAED,MAAM,WAAW,SACf,SAAQ,WAAW,EACjB,WAAW,EACX,YAAY,EACZ,eAAe;IACjB;;;;;OAKG;IACH,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;IAElD;;;;;;;;;;OAUG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;;;;;;;;OAWG;IACH,iBAAiB,CAAC,EAAE,yBAAyB,CAAC;IAC9C;;OAEG;IACH,QAAQ,CAAC,EAAE,+BAA+B,CAAC,QAAQ,CAAC,CAAC;IACrD;;OAEG;IACH,SAAS,CAAC,EAAE,+BAA+B,CAAC,SAAS,CAAC,CAAC;IACvD;;OAEG;IACH,cAAc,CAAC,EAAE,+BAA+B,CAC9C,OAAO,CAAC,cAAc,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC,CACpD,CAAC;IACF;;OAEG;IACH,eAAe,CAAC,EAAE,+BAA+B,CAAC,eAAe,CAAC,CAAC;IACnE;;;;OAIG;IACH,UAAU,CAAC,EAAE,+BAA+B,CAAC,MAAM,CAAC,CAAC;CACtD;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,IAAI;;;;CAAmD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basic-view.example.d.ts","sourceRoot":"","sources":["../../../../../../../src/surfaces/checkout/components/View/examples/basic-view.example.ts"],"names":[],"mappings":""}
|