@shopify/ui-extensions 0.0.0-internal-20230622171951
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/README.md +42 -0
- package/build/cjs/index.js +2 -0
- package/build/cjs/surfaces/admin/components/Badge/Badge.js +12 -0
- package/build/cjs/surfaces/admin/components/Banner/Banner.js +14 -0
- package/build/cjs/surfaces/admin/components/BlockStack/BlockStack.js +15 -0
- package/build/cjs/surfaces/admin/components/Button/Button.js +12 -0
- package/build/cjs/surfaces/admin/components/Card/Card.js +15 -0
- package/build/cjs/surfaces/admin/components/CardSection/CardSection.js +12 -0
- package/build/cjs/surfaces/admin/components/Checkbox/Checkbox.js +12 -0
- package/build/cjs/surfaces/admin/components/CustomerSegmentationTemplate/CustomerSegmentationTemplate.js +12 -0
- package/build/cjs/surfaces/admin/components/Heading/Heading.js +12 -0
- package/build/cjs/surfaces/admin/components/Icon/Icon.js +12 -0
- package/build/cjs/surfaces/admin/components/InlineStack/InlineStack.js +15 -0
- package/build/cjs/surfaces/admin/components/Link/Link.js +12 -0
- package/build/cjs/surfaces/admin/components/Modal/Modal.js +14 -0
- package/build/cjs/surfaces/admin/components/OptionList/OptionList.js +15 -0
- package/build/cjs/surfaces/admin/components/Pressable/Pressable.js +13 -0
- package/build/cjs/surfaces/admin/components/Radio/Radio.js +12 -0
- package/build/cjs/surfaces/admin/components/ResourceItem/ResourceItem.js +14 -0
- package/build/cjs/surfaces/admin/components/ResourceList/ResourceList.js +15 -0
- package/build/cjs/surfaces/admin/components/Select/Select.js +14 -0
- package/build/cjs/surfaces/admin/components/Spinner/Spinner.js +12 -0
- package/build/cjs/surfaces/admin/components/StackItem/StackItem.js +14 -0
- package/build/cjs/surfaces/admin/components/Text/Text.js +12 -0
- package/build/cjs/surfaces/admin/components/TextBlock/TextBlock.js +13 -0
- package/build/cjs/surfaces/admin/components/TextField/TextField.js +14 -0
- package/build/cjs/surfaces/admin/components/Thumbnail/Thumbnail.js +12 -0
- package/build/cjs/surfaces/admin/extension.js +11 -0
- package/build/cjs/surfaces/admin.js +60 -0
- 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 +11 -0
- package/build/cjs/surfaces/checkout/style/isEqual.js +29 -0
- package/build/cjs/surfaces/checkout/style/memoize.js +139 -0
- package/build/cjs/surfaces/checkout/style/style.js +74 -0
- package/build/cjs/surfaces/checkout.js +88 -0
- package/build/cjs/utilities/registration.js +45 -0
- package/build/esm/index.mjs +1 -0
- package/build/esm/surfaces/admin/components/Badge/Badge.mjs +8 -0
- package/build/esm/surfaces/admin/components/Banner/Banner.mjs +10 -0
- package/build/esm/surfaces/admin/components/BlockStack/BlockStack.mjs +11 -0
- package/build/esm/surfaces/admin/components/Button/Button.mjs +8 -0
- package/build/esm/surfaces/admin/components/Card/Card.mjs +11 -0
- package/build/esm/surfaces/admin/components/CardSection/CardSection.mjs +8 -0
- package/build/esm/surfaces/admin/components/Checkbox/Checkbox.mjs +8 -0
- package/build/esm/surfaces/admin/components/CustomerSegmentationTemplate/CustomerSegmentationTemplate.mjs +8 -0
- package/build/esm/surfaces/admin/components/Heading/Heading.mjs +8 -0
- package/build/esm/surfaces/admin/components/Icon/Icon.mjs +8 -0
- package/build/esm/surfaces/admin/components/InlineStack/InlineStack.mjs +11 -0
- package/build/esm/surfaces/admin/components/Link/Link.mjs +8 -0
- package/build/esm/surfaces/admin/components/Modal/Modal.mjs +10 -0
- package/build/esm/surfaces/admin/components/OptionList/OptionList.mjs +11 -0
- package/build/esm/surfaces/admin/components/Pressable/Pressable.mjs +9 -0
- package/build/esm/surfaces/admin/components/Radio/Radio.mjs +8 -0
- package/build/esm/surfaces/admin/components/ResourceItem/ResourceItem.mjs +10 -0
- package/build/esm/surfaces/admin/components/ResourceList/ResourceList.mjs +11 -0
- package/build/esm/surfaces/admin/components/Select/Select.mjs +10 -0
- package/build/esm/surfaces/admin/components/Spinner/Spinner.mjs +8 -0
- package/build/esm/surfaces/admin/components/StackItem/StackItem.mjs +10 -0
- package/build/esm/surfaces/admin/components/Text/Text.mjs +8 -0
- package/build/esm/surfaces/admin/components/TextBlock/TextBlock.mjs +9 -0
- package/build/esm/surfaces/admin/components/TextField/TextField.mjs +10 -0
- package/build/esm/surfaces/admin/components/Thumbnail/Thumbnail.mjs +8 -0
- package/build/esm/surfaces/admin/extension.mjs +6 -0
- package/build/esm/surfaces/admin.mjs +26 -0
- 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 +6 -0
- package/build/esm/surfaces/checkout/style/isEqual.mjs +25 -0
- package/build/esm/surfaces/checkout/style/memoize.mjs +133 -0
- package/build/esm/surfaces/checkout/style/style.mjs +68 -0
- package/build/esm/surfaces/checkout.mjs +39 -0
- package/build/esm/utilities/registration.mjs +41 -0
- package/build/esnext/index.esnext +1 -0
- package/build/esnext/surfaces/admin/components/Badge/Badge.esnext +8 -0
- package/build/esnext/surfaces/admin/components/Banner/Banner.esnext +10 -0
- package/build/esnext/surfaces/admin/components/BlockStack/BlockStack.esnext +11 -0
- package/build/esnext/surfaces/admin/components/Button/Button.esnext +8 -0
- package/build/esnext/surfaces/admin/components/Card/Card.esnext +11 -0
- package/build/esnext/surfaces/admin/components/CardSection/CardSection.esnext +8 -0
- package/build/esnext/surfaces/admin/components/Checkbox/Checkbox.esnext +8 -0
- package/build/esnext/surfaces/admin/components/CustomerSegmentationTemplate/CustomerSegmentationTemplate.esnext +8 -0
- package/build/esnext/surfaces/admin/components/Heading/Heading.esnext +8 -0
- package/build/esnext/surfaces/admin/components/Icon/Icon.esnext +8 -0
- package/build/esnext/surfaces/admin/components/InlineStack/InlineStack.esnext +11 -0
- package/build/esnext/surfaces/admin/components/Link/Link.esnext +8 -0
- package/build/esnext/surfaces/admin/components/Modal/Modal.esnext +10 -0
- package/build/esnext/surfaces/admin/components/OptionList/OptionList.esnext +11 -0
- package/build/esnext/surfaces/admin/components/Pressable/Pressable.esnext +9 -0
- package/build/esnext/surfaces/admin/components/Radio/Radio.esnext +8 -0
- package/build/esnext/surfaces/admin/components/ResourceItem/ResourceItem.esnext +10 -0
- package/build/esnext/surfaces/admin/components/ResourceList/ResourceList.esnext +11 -0
- package/build/esnext/surfaces/admin/components/Select/Select.esnext +10 -0
- package/build/esnext/surfaces/admin/components/Spinner/Spinner.esnext +8 -0
- package/build/esnext/surfaces/admin/components/StackItem/StackItem.esnext +10 -0
- package/build/esnext/surfaces/admin/components/Text/Text.esnext +8 -0
- package/build/esnext/surfaces/admin/components/TextBlock/TextBlock.esnext +9 -0
- package/build/esnext/surfaces/admin/components/TextField/TextField.esnext +10 -0
- package/build/esnext/surfaces/admin/components/Thumbnail/Thumbnail.esnext +8 -0
- package/build/esnext/surfaces/admin/extension.esnext +6 -0
- package/build/esnext/surfaces/admin.esnext +26 -0
- 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 +6 -0
- package/build/esnext/surfaces/checkout/style/isEqual.esnext +25 -0
- package/build/esnext/surfaces/checkout/style/memoize.esnext +133 -0
- package/build/esnext/surfaces/checkout/style/style.esnext +68 -0
- package/build/esnext/surfaces/checkout.esnext +39 -0
- package/build/esnext/utilities/registration.esnext +41 -0
- package/build/ts/api.d.ts +66 -0
- package/build/ts/api.d.ts.map +1 -0
- package/build/ts/extension.d.ts +15 -0
- package/build/ts/extension.d.ts.map +1 -0
- package/build/ts/index.d.ts +3 -0
- package/build/ts/index.d.ts.map +1 -0
- package/build/ts/shared.d.ts +6 -0
- package/build/ts/shared.d.ts.map +1 -0
- package/build/ts/surfaces/admin/api/customer-segmentation-template/customer-segmentation-template.d.ts +11 -0
- package/build/ts/surfaces/admin/api/customer-segmentation-template/customer-segmentation-template.d.ts.map +1 -0
- package/build/ts/surfaces/admin/api/standard/standard.d.ts +12 -0
- package/build/ts/surfaces/admin/api/standard/standard.d.ts.map +1 -0
- package/build/ts/surfaces/admin/api.d.ts +4 -0
- package/build/ts/surfaces/admin/api.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Badge/Badge.d.ts +20 -0
- package/build/ts/surfaces/admin/components/Badge/Badge.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Banner/Banner.d.ts +28 -0
- package/build/ts/surfaces/admin/components/Banner/Banner.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/BlockStack/BlockStack.d.ts +25 -0
- package/build/ts/surfaces/admin/components/BlockStack/BlockStack.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Button/Button.d.ts +66 -0
- package/build/ts/surfaces/admin/components/Button/Button.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Card/Card.d.ts +25 -0
- package/build/ts/surfaces/admin/components/Card/Card.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/CardSection/CardSection.d.ts +12 -0
- package/build/ts/surfaces/admin/components/CardSection/CardSection.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Checkbox/Checkbox.d.ts +22 -0
- package/build/ts/surfaces/admin/components/Checkbox/Checkbox.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/CustomerSegmentationTemplate/CustomerSegmentationTemplate.d.ts +27 -0
- package/build/ts/surfaces/admin/components/CustomerSegmentationTemplate/CustomerSegmentationTemplate.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Heading/Heading.d.ts +24 -0
- package/build/ts/surfaces/admin/components/Heading/Heading.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Icon/Icon.d.ts +17 -0
- package/build/ts/surfaces/admin/components/Icon/Icon.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/InlineStack/InlineStack.d.ts +30 -0
- package/build/ts/surfaces/admin/components/InlineStack/InlineStack.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Link/Link.d.ts +23 -0
- package/build/ts/surfaces/admin/components/Link/Link.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Modal/Modal.d.ts +36 -0
- package/build/ts/surfaces/admin/components/Modal/Modal.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/OptionList/OptionList.d.ts +36 -0
- package/build/ts/surfaces/admin/components/OptionList/OptionList.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Pressable/Pressable.d.ts +14 -0
- package/build/ts/surfaces/admin/components/Pressable/Pressable.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Radio/Radio.d.ts +26 -0
- package/build/ts/surfaces/admin/components/Radio/Radio.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/ResourceItem/ResourceItem.d.ts +17 -0
- package/build/ts/surfaces/admin/components/ResourceItem/ResourceItem.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/ResourceList/ResourceList.d.ts +26 -0
- package/build/ts/surfaces/admin/components/ResourceList/ResourceList.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Select/Select.d.ts +34 -0
- package/build/ts/surfaces/admin/components/Select/Select.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Spinner/Spinner.d.ts +11 -0
- package/build/ts/surfaces/admin/components/Spinner/Spinner.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/StackItem/StackItem.d.ts +15 -0
- package/build/ts/surfaces/admin/components/StackItem/StackItem.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Text/Text.d.ts +20 -0
- package/build/ts/surfaces/admin/components/Text/Text.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/TextBlock/TextBlock.d.ts +20 -0
- package/build/ts/surfaces/admin/components/TextBlock/TextBlock.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/TextField/TextField.d.ts +41 -0
- package/build/ts/surfaces/admin/components/TextField/TextField.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.d.ts +19 -0
- package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components/shared.d.ts +22 -0
- package/build/ts/surfaces/admin/components/shared.d.ts.map +1 -0
- package/build/ts/surfaces/admin/components.d.ts +52 -0
- package/build/ts/surfaces/admin/components.d.ts.map +1 -0
- package/build/ts/surfaces/admin/extension-points.d.ts +52 -0
- package/build/ts/surfaces/admin/extension-points.d.ts.map +1 -0
- package/build/ts/surfaces/admin/extension.d.ts +5 -0
- package/build/ts/surfaces/admin/extension.d.ts.map +1 -0
- package/build/ts/surfaces/admin/globals.d.ts +5 -0
- package/build/ts/surfaces/admin/globals.d.ts.map +1 -0
- package/build/ts/surfaces/admin/shared.d.ts +6 -0
- package/build/ts/surfaces/admin/shared.d.ts.map +1 -0
- package/build/ts/surfaces/admin.d.ts +7 -0
- package/build/ts/surfaces/admin.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts +9 -0
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api/shared.d.ts +5 -0
- package/build/ts/surfaces/checkout/api/shared.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts +1060 -0
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api.d.ts +5 -0
- package/build/ts/surfaces/checkout/api.d.ts.map +1 -0
- 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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/ScrollView/ScrollView.d.ts +75 -0
- package/build/ts/surfaces/checkout/components/ScrollView/ScrollView.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/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/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/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/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/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/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/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/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/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/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/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/shared.d.ts +407 -0
- package/build/ts/surfaces/checkout/components/shared.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components.d.ts +76 -0
- package/build/ts/surfaces/checkout/components.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/extension-points.d.ts +98 -0
- package/build/ts/surfaces/checkout/extension-points.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/extension.d.ts +5 -0
- package/build/ts/surfaces/checkout/extension.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/globals.d.ts +6 -0
- package/build/ts/surfaces/checkout/globals.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/shared.d.ts +6 -0
- package/build/ts/surfaces/checkout/shared.d.ts.map +1 -0
- 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/surfaces/checkout.d.ts +8 -0
- package/build/ts/surfaces/checkout.d.ts.map +1 -0
- package/build/ts/utilities/registration.d.ts +16 -0
- package/build/ts/utilities/registration.d.ts.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -0
- package/checkout.esnext +1 -0
- package/checkout.js +1 -0
- package/checkout.mjs +1 -0
- package/index.esnext +1 -0
- package/index.js +1 -0
- package/index.mjs +1 -0
- package/package.json +60 -0
- package/src/api.ts +76 -0
- package/src/extension.ts +48 -0
- package/src/index.ts +2 -0
- package/src/shared.ts +13 -0
- package/src/surfaces/admin/api/customer-segmentation-template/customer-segmentation-template.ts +19 -0
- package/src/surfaces/admin/api/standard/README.md +1 -0
- package/src/surfaces/admin/api/standard/standard.ts +13 -0
- package/src/surfaces/admin/api.ts +3 -0
- package/src/surfaces/admin/components/Badge/Badge.ts +18 -0
- package/src/surfaces/admin/components/Badge/content/guidelines.md +10 -0
- package/src/surfaces/admin/components/Badge/examples/badge.example.ts +11 -0
- package/src/surfaces/admin/components/Banner/Banner.ts +32 -0
- package/src/surfaces/admin/components/Banner/content/guidelines.md +11 -0
- package/src/surfaces/admin/components/Banner/examples/Banner.example.ts +20 -0
- package/src/surfaces/admin/components/BlockStack/BlockStack.ts +27 -0
- package/src/surfaces/admin/components/BlockStack/content/guidelines.md +10 -0
- package/src/surfaces/admin/components/BlockStack/examples/BlockStack.example.ts +22 -0
- package/src/surfaces/admin/components/Button/Button.ts +68 -0
- package/src/surfaces/admin/components/Button/content/guidelines.md +14 -0
- package/src/surfaces/admin/components/Button/examples/Button.example.ts +17 -0
- package/src/surfaces/admin/components/Card/Card.ts +28 -0
- package/src/surfaces/admin/components/Card/content/guidelines.md +9 -0
- package/src/surfaces/admin/components/Card/examples/Card.example.ts +10 -0
- package/src/surfaces/admin/components/CardSection/CardSection.ts +13 -0
- package/src/surfaces/admin/components/CardSection/content/guidelines.md +5 -0
- package/src/surfaces/admin/components/CardSection/examples/CardSection.example.ts +20 -0
- package/src/surfaces/admin/components/Checkbox/Checkbox.ts +25 -0
- package/src/surfaces/admin/components/Checkbox/content/guidelines.md +8 -0
- package/src/surfaces/admin/components/Checkbox/examples/Checkbox.example.ts +13 -0
- package/src/surfaces/admin/components/CustomerSegmentationTemplate/CustomerSegmentationTemplate.ts +66 -0
- package/src/surfaces/admin/components/CustomerSegmentationTemplate/examples/CustomerSegmentationTemplate.example.ts +37 -0
- package/src/surfaces/admin/components/Heading/Heading.ts +25 -0
- package/src/surfaces/admin/components/Heading/content/guidelines.md +11 -0
- package/src/surfaces/admin/components/Heading/examples/Heading.example.ts +14 -0
- package/src/surfaces/admin/components/Icon/Icon.ts +21 -0
- package/src/surfaces/admin/components/Icon/content/guidelines.md +8 -0
- package/src/surfaces/admin/components/Icon/examples/Icon.example.ts +12 -0
- package/src/surfaces/admin/components/InlineStack/InlineStack.ts +34 -0
- package/src/surfaces/admin/components/InlineStack/content/guidelines.md +10 -0
- package/src/surfaces/admin/components/InlineStack/examples/InlineStack.example.ts +16 -0
- package/src/surfaces/admin/components/Link/Link.ts +23 -0
- package/src/surfaces/admin/components/Link/content/guidelines.md +10 -0
- package/src/surfaces/admin/components/Link/examples/AbsoluteLink.example.ts +13 -0
- package/src/surfaces/admin/components/Link/examples/LogLink.example.ts +12 -0
- package/src/surfaces/admin/components/Link/examples/RelativeLink.example.ts +12 -0
- package/src/surfaces/admin/components/Modal/Modal.ts +33 -0
- package/src/surfaces/admin/components/Modal/content/guidelines.md +8 -0
- package/src/surfaces/admin/components/Modal/examples/Modal.example.ts +14 -0
- package/src/surfaces/admin/components/OptionList/OptionList.ts +42 -0
- package/src/surfaces/admin/components/OptionList/content/guidelines.md +7 -0
- package/src/surfaces/admin/components/OptionList/examples/OptionList.example.ts +24 -0
- package/src/surfaces/admin/components/Pressable/Pressable.ts +14 -0
- package/src/surfaces/admin/components/Pressable/content/guidelines.md +12 -0
- package/src/surfaces/admin/components/Pressable/examples/Pressable.example.ts +15 -0
- package/src/surfaces/admin/components/Radio/Radio.ts +29 -0
- package/src/surfaces/admin/components/Radio/content/guidelines.md +6 -0
- package/src/surfaces/admin/components/Radio/examples/Radio.example.ts +25 -0
- package/src/surfaces/admin/components/ResourceItem/ResourceItem.ts +19 -0
- package/src/surfaces/admin/components/ResourceItem/content/guidelines.md +8 -0
- package/src/surfaces/admin/components/ResourceItem/examples/ResourceItem.example.ts +22 -0
- package/src/surfaces/admin/components/ResourceList/ResourceList.ts +30 -0
- package/src/surfaces/admin/components/ResourceList/content/guidelines.md +9 -0
- package/src/surfaces/admin/components/ResourceList/examples/ResourceList.example.ts +29 -0
- package/src/surfaces/admin/components/Select/Select.ts +39 -0
- package/src/surfaces/admin/components/Select/content/guidelines.md +7 -0
- package/src/surfaces/admin/components/Select/examples/Select.example.ts +30 -0
- package/src/surfaces/admin/components/Spinner/Spinner.ts +10 -0
- package/src/surfaces/admin/components/Spinner/content/guidelines.md +5 -0
- package/src/surfaces/admin/components/Spinner/examples/Spinner.example.ts +12 -0
- package/src/surfaces/admin/components/StackItem/StackItem.ts +15 -0
- package/src/surfaces/admin/components/StackItem/content/guidelines.md +8 -0
- package/src/surfaces/admin/components/StackItem/examples/StackItem.example.ts +25 -0
- package/src/surfaces/admin/components/Text/Text.ts +26 -0
- package/src/surfaces/admin/components/Text/content/guidelines.md +8 -0
- package/src/surfaces/admin/components/Text/examples/Text.example.ts +20 -0
- package/src/surfaces/admin/components/TextBlock/TextBlock.ts +20 -0
- package/src/surfaces/admin/components/TextBlock/content/guidelines.md +11 -0
- package/src/surfaces/admin/components/TextBlock/examples/TextBlock.example.ts +8 -0
- package/src/surfaces/admin/components/TextField/TextField.ts +54 -0
- package/src/surfaces/admin/components/TextField/content/guidelines.md +10 -0
- package/src/surfaces/admin/components/TextField/examples/TextField.example.ts +23 -0
- package/src/surfaces/admin/components/Thumbnail/Thumbnail.ts +31 -0
- package/src/surfaces/admin/components/Thumbnail/examples/Thumbnail.example.ts +13 -0
- package/src/surfaces/admin/components/shared.ts +30 -0
- package/src/surfaces/admin/components.ts +51 -0
- package/src/surfaces/admin/extension-points.ts +85 -0
- package/src/surfaces/admin/extension.ts +8 -0
- package/src/surfaces/admin/globals.ts +8 -0
- package/src/surfaces/admin/shared.ts +6 -0
- package/src/surfaces/admin.ts +6 -0
- package/src/surfaces/checkout/api/cart-line-details/README.md +1 -0
- package/src/surfaces/checkout/api/cart-line-details/render-after.ts +11 -0
- package/src/surfaces/checkout/api/shared.ts +810 -0
- package/src/surfaces/checkout/api/standard/README.md +1 -0
- package/src/surfaces/checkout/api/standard/standard.ts +1266 -0
- package/src/surfaces/checkout/api.ts +66 -0
- 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/surfaces/checkout/components/Checkbox/Checkbox.ts +63 -0
- 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 +20 -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 +28 -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 +581 -0
- package/src/surfaces/checkout/components.ts +157 -0
- package/src/surfaces/checkout/extension-points.ts +164 -0
- package/src/surfaces/checkout/extension.ts +8 -0
- package/src/surfaces/checkout/globals.ts +9 -0
- package/src/surfaces/checkout/shared.ts +6 -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 +177 -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/surfaces/checkout.ts +7 -0
- package/src/utilities/registration.ts +79 -0
|
@@ -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,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,407 @@
|
|
|
1
|
+
import { RemoteFragment } from '@remote-ui/core';
|
|
2
|
+
import { MaybeConditionalStyle, MaybeResponsiveConditionalStyle } from '../style';
|
|
3
|
+
/**
|
|
4
|
+
* A descriptor for selecting the data a field would like to receive during
|
|
5
|
+
* autocomplete. This attribute is modeled off of a limited set of the autocomplete
|
|
6
|
+
* values supported in browsers.
|
|
7
|
+
*
|
|
8
|
+
* @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill-detail-tokens
|
|
9
|
+
*/
|
|
10
|
+
export interface Autocomplete {
|
|
11
|
+
/**
|
|
12
|
+
* The contact information “group” the autocomplete data should be sourced from.
|
|
13
|
+
*/
|
|
14
|
+
group?: AutocompleteGroup;
|
|
15
|
+
/**
|
|
16
|
+
* The type of data that should be inserted into a field supporting autocomplete.
|
|
17
|
+
*/
|
|
18
|
+
field: AutocompleteField;
|
|
19
|
+
}
|
|
20
|
+
export type AutocompleteGroup = 'shipping' | 'billing' | 'location';
|
|
21
|
+
export type AutocompleteField = 'name' | 'honorific-prefix' | 'given-name' | 'additional-name' | 'family-name' | 'honorific-suffix' | 'nickname' | 'username' | 'new-password' | 'current-password' | 'one-time-code' | 'organization-title' | 'organization' | 'street-address' | 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2' | 'address-level1' | 'country' | 'country-name' | 'postal-code' | 'credit-card-name' | 'credit-card-given-name' | 'credit-card-additional-name' | 'credit-card-family-name' | 'credit-card-number' | 'credit-card-expiry' | 'credit-card-expiry-month' | 'credit-card-expiry-year' | 'credit-card-security-code' | 'credit-card-type' | 'transaction-currency' | 'transaction-amount' | 'language' | 'birthday' | 'birthday-day' | 'birthday-month' | 'birthday-year' | 'sex' | 'url' | 'photo' | 'telephone' | 'telephone-country-code' | 'telephone-national' | 'telephone-area-code' | 'telephone-local' | 'telephone-local-prefix' | 'telephone-local-suffix' | 'telephone-extension' | 'email' | 'instant-message' | 'home telephone' | 'home telephone-country-code' | 'home telephone-national' | 'home telephone-area-code' | 'home telephone-local' | 'home telephone-local-prefix' | 'home telephone-local-suffix' | 'home telephone-extension' | 'home email' | 'home instant-message' | 'work telephone' | 'work telephone-country-code' | 'work telephone-national' | 'work telephone-area-code' | 'work telephone-local' | 'work telephone-local-prefix' | 'work telephone-local-suffix' | 'work telephone-extension' | 'work email' | 'work instant-message' | 'mobile telephone' | 'mobile telephone-country-code' | 'mobile telephone-national' | 'mobile telephone-area-code' | 'mobile telephone-local' | 'mobile telephone-local-prefix' | 'mobile telephone-local-suffix' | 'mobile telephone-extension' | 'mobile email' | 'mobile instant-message' | 'fax telephone' | 'fax telephone-country-code' | 'fax telephone-national' | 'fax telephone-area-code' | 'fax telephone-local' | 'fax telephone-local-prefix' | 'fax telephone-local-suffix' | 'fax telephone-extension' | 'fax email' | 'fax instant-message' | 'pager telephone' | 'pager telephone-country-code' | 'pager telephone-national' | 'pager telephone-area-code' | 'pager telephone-local' | 'pager telephone-local-prefix' | 'pager telephone-local-suffix' | 'pager telephone-extension' | 'pager email' | 'pager instant-message';
|
|
22
|
+
export type Breakpoint = 'base' | 'small' | 'medium' | 'large';
|
|
23
|
+
export type Display = 'block' | 'inline';
|
|
24
|
+
export type ShorthandProperty<T> = [T, T] | [T, T, T, T];
|
|
25
|
+
export type MaybeShorthandProperty<T> = T | ShorthandProperty<T>;
|
|
26
|
+
export type BorderRadius = 'base' | 'tight' | 'loose' | 'fullyRounded' | 'none';
|
|
27
|
+
export type BorderStyle = 'base' | 'dotted' | 'none';
|
|
28
|
+
export type BorderWidth = 'base' | 'medium';
|
|
29
|
+
export type CornerRadius = 'base' | 'small' | 'large' | 'fullyRounded' | 'none';
|
|
30
|
+
export interface BackgroundProps {
|
|
31
|
+
/**
|
|
32
|
+
* Adjust the background.
|
|
33
|
+
*/
|
|
34
|
+
background?: MaybeConditionalStyle<Background>;
|
|
35
|
+
/**
|
|
36
|
+
* Sets one or multiple responsive background images.
|
|
37
|
+
*/
|
|
38
|
+
backgroundImage?: MaybeConditionalStyle<string>;
|
|
39
|
+
/**
|
|
40
|
+
* Indicates if the background image should scale its container without cropping
|
|
41
|
+
* and stretching, or scale as large as possible to fill the container and stretching if necessary.
|
|
42
|
+
*/
|
|
43
|
+
backgroundFit?: BackgroundFit;
|
|
44
|
+
/**
|
|
45
|
+
* Sets the initial position of the background image.
|
|
46
|
+
*
|
|
47
|
+
* @defaultValue 'center'
|
|
48
|
+
*/
|
|
49
|
+
backgroundPosition?: BackgroundPosition;
|
|
50
|
+
/**
|
|
51
|
+
* Sets how background image are repeated.
|
|
52
|
+
*
|
|
53
|
+
* @defaultValue 'noRepeat'
|
|
54
|
+
*/
|
|
55
|
+
backgroundRepeat?: BackgroundRepeat;
|
|
56
|
+
}
|
|
57
|
+
export interface BorderProps {
|
|
58
|
+
/**
|
|
59
|
+
* Adjust the border style.
|
|
60
|
+
*
|
|
61
|
+
* To shorten the code, it is possible to specify all the border style properties in one property.
|
|
62
|
+
*
|
|
63
|
+
* For example:
|
|
64
|
+
*
|
|
65
|
+
* - `base` means blockStart, inlineEnd, blockEnd and inlineStart border styles are `base`
|
|
66
|
+
*
|
|
67
|
+
* - `['base', 'none']` means blockStart and blockEnd border styles are `base`, inlineStart and inlineEnd border styles are `none`
|
|
68
|
+
*
|
|
69
|
+
* - `['base', 'none', 'dotted', 'base']` means blockStart border style is `base`, inlineEnd border style is `none`, blockEnd border style is `dotted` and blockStart border style is `base`
|
|
70
|
+
*/
|
|
71
|
+
border?: MaybeResponsiveConditionalStyle<MaybeShorthandProperty<BorderStyle>>;
|
|
72
|
+
/**
|
|
73
|
+
* Adjust the border width.
|
|
74
|
+
*
|
|
75
|
+
* To shorten the code, it is possible to specify all the border width properties in one property.
|
|
76
|
+
*
|
|
77
|
+
* For example:
|
|
78
|
+
*
|
|
79
|
+
* - `base` means blockStart, inlineEnd, blockEnd and inlineStart border widths are `base`
|
|
80
|
+
*
|
|
81
|
+
* - `['base', 'medium']` means blockStart and blockEnd border widths are `base`, inlineStart and inlineEnd border widths are `medium`
|
|
82
|
+
*
|
|
83
|
+
* - `['base', 'medium', 'medium', 'base']` means blockStart border width is `base`, inlineEnd border width is `medium`, blockEnd border width is `medium` and blockStart border width is `base`
|
|
84
|
+
*/
|
|
85
|
+
borderWidth?: MaybeResponsiveConditionalStyle<MaybeShorthandProperty<BorderWidth>>;
|
|
86
|
+
/**
|
|
87
|
+
* Adjust the border radius.
|
|
88
|
+
*
|
|
89
|
+
* To shorten the code, it is possible to specify all the border width properties in one property.
|
|
90
|
+
*
|
|
91
|
+
* For example:
|
|
92
|
+
*
|
|
93
|
+
* - `base` means blockStart, inlineEnd, blockEnd and inlineStart border radii are `base`
|
|
94
|
+
*
|
|
95
|
+
* - `['base', 'none']` means blockStart and blockEnd border radii are `base`, inlineStart and inlineEnd border radii are `none`
|
|
96
|
+
*
|
|
97
|
+
* - `['base', 'none', 'tight', 'base']` means blockStart border radius is `base`, inlineEnd border radius is `none`, blockEnd border radius is `tight` and blockStart border radius is `base`
|
|
98
|
+
*/
|
|
99
|
+
borderRadius?: MaybeConditionalStyle<MaybeShorthandProperty<BorderRadius>>;
|
|
100
|
+
}
|
|
101
|
+
export interface CornerProps {
|
|
102
|
+
/**
|
|
103
|
+
* Adjust the corner radius.
|
|
104
|
+
*
|
|
105
|
+
* To shorten the code, it is possible to specify all the corner radii in one property.
|
|
106
|
+
*
|
|
107
|
+
* For example:
|
|
108
|
+
*
|
|
109
|
+
* - `base` means all 4 corner radii are `base`
|
|
110
|
+
*
|
|
111
|
+
* - `['base', 'none']` means the StartStart and EndEnd corner radii are `base`, StartEnd and EndStart corner radii are `none`.
|
|
112
|
+
* When the context’s language direction is left to right, StartStart and EndEnd corners are the top left and bottom right corners
|
|
113
|
+
* while StartEnd and EndStart corners are the top right and bottom left corners.
|
|
114
|
+
*
|
|
115
|
+
* - `['base', 'none', 'small', 'base']` means StartStart corner radius is `base`, StartEnd corner radius is `none`, EndEnd corner radius is `small` and EndStart corner radius is `base`
|
|
116
|
+
*/
|
|
117
|
+
cornerRadius?: MaybeResponsiveConditionalStyle<MaybeShorthandProperty<CornerRadius>>;
|
|
118
|
+
}
|
|
119
|
+
export interface SizingProps {
|
|
120
|
+
/**
|
|
121
|
+
* Adjust the maximum block size.
|
|
122
|
+
*
|
|
123
|
+
* `number`: size in pixels.
|
|
124
|
+
*
|
|
125
|
+
* `` `${number}%` ``: size in percentages.
|
|
126
|
+
*
|
|
127
|
+
* `fill`: takes all the available space.
|
|
128
|
+
*/
|
|
129
|
+
maxBlockSize?: MaybeResponsiveConditionalStyle<number | `${number}%` | 'fill'>;
|
|
130
|
+
/**
|
|
131
|
+
* Adjust the maximum inline size.
|
|
132
|
+
*
|
|
133
|
+
* `number`: size in pixels.
|
|
134
|
+
*
|
|
135
|
+
* `` `${number}%` ``: size in percentages.
|
|
136
|
+
*
|
|
137
|
+
* `fill`: takes all the available space.
|
|
138
|
+
*/
|
|
139
|
+
maxInlineSize?: MaybeResponsiveConditionalStyle<number | `${number}%` | 'fill'>;
|
|
140
|
+
/**
|
|
141
|
+
* Adjust the minimum inline size.
|
|
142
|
+
*
|
|
143
|
+
* `number`: size in pixels.
|
|
144
|
+
*
|
|
145
|
+
* `` `${number}%` ``: size in percentages.
|
|
146
|
+
*
|
|
147
|
+
* `fill`: takes all the available space.
|
|
148
|
+
*/
|
|
149
|
+
minInlineSize?: MaybeResponsiveConditionalStyle<number | `${number}%` | 'fill'>;
|
|
150
|
+
/**
|
|
151
|
+
* Adjust the block size.
|
|
152
|
+
*
|
|
153
|
+
* `number`: size in pixels.
|
|
154
|
+
*
|
|
155
|
+
* `` `${number}%` ``: size in percentages.
|
|
156
|
+
*
|
|
157
|
+
* `fill`: takes all the available space.
|
|
158
|
+
*/
|
|
159
|
+
minBlockSize?: MaybeResponsiveConditionalStyle<number | `${number}%` | 'fill'>;
|
|
160
|
+
}
|
|
161
|
+
export interface SpacingProps {
|
|
162
|
+
/**
|
|
163
|
+
* Adjust the padding.
|
|
164
|
+
*
|
|
165
|
+
* To shorten the code, it is possible to specify all the padding properties in one property.
|
|
166
|
+
*
|
|
167
|
+
*
|
|
168
|
+
* Examples:
|
|
169
|
+
*
|
|
170
|
+
* - `base` means blockStart, inlineEnd, blockEnd and inlineStart paddings are `base`
|
|
171
|
+
*
|
|
172
|
+
* - [`base`, `none`] means blockStart and blockEnd paddings are `base`, inlineStart and inlineEnd paddings are `none`
|
|
173
|
+
*
|
|
174
|
+
* - [`base`, `none`, `loose`, `tight`] means blockStart padding is `base`, inlineEnd padding is `none`, blockEnd padding is `loose` and blockStart padding is `tight`
|
|
175
|
+
*/
|
|
176
|
+
padding?: MaybeResponsiveConditionalStyle<MaybeShorthandProperty<Spacing>>;
|
|
177
|
+
}
|
|
178
|
+
export type AccessibilityRole =
|
|
179
|
+
/** Used to indicate the primary content. */
|
|
180
|
+
'main'
|
|
181
|
+
/** Used to indicate the component is a header. */
|
|
182
|
+
| 'header'
|
|
183
|
+
/** Used to display information such as copyright information, navigation links, and privacy statements. */
|
|
184
|
+
| 'footer'
|
|
185
|
+
/** Used to indicate a generic section. */
|
|
186
|
+
| 'section'
|
|
187
|
+
/** Used to designate a supporting section that relates to the main content. */
|
|
188
|
+
| 'complementary'
|
|
189
|
+
/** Used to identify major groups of links used for navigating. */
|
|
190
|
+
| 'navigation'
|
|
191
|
+
/** Used to identify a list of ordered items. */
|
|
192
|
+
| 'orderedList'
|
|
193
|
+
/** Used to identify an item inside a list of items. */
|
|
194
|
+
| 'listItem'
|
|
195
|
+
/** Used to identify a list of unordered items. */
|
|
196
|
+
| 'unorderedList'
|
|
197
|
+
/** Used to indicates the component acts as a divider that separates and distinguishes sections of content. */
|
|
198
|
+
| 'separator'
|
|
199
|
+
/** Used to define a live region containing advisory information for the user that is not important enough to be an alert. */
|
|
200
|
+
| 'status'
|
|
201
|
+
/** Used for important, and usually time-sensitive, information. */
|
|
202
|
+
| 'alert'
|
|
203
|
+
/** Used to indicate that an image is decorative and should be hidden from assistive technologies. */
|
|
204
|
+
| 'decorative'
|
|
205
|
+
/** Used to strip the semantic meaning of an element, but leave the visual styling intact. */
|
|
206
|
+
| 'presentation';
|
|
207
|
+
export type NonPresentationalAccessibilityRole = Exclude<AccessibilityRole, 'decorative' | 'presentation'>;
|
|
208
|
+
export type ViewLikeAccessibilityRole = NonPresentationalAccessibilityRole | [NonPresentationalAccessibilityRole, NonPresentationalAccessibilityRole];
|
|
209
|
+
export type ButtonAccessibilityRole = 'button' | 'submit';
|
|
210
|
+
export type TextAccessibilityRole =
|
|
211
|
+
/**
|
|
212
|
+
* Indicate the text is contact information. Typically used for addresses.
|
|
213
|
+
*/
|
|
214
|
+
'address'
|
|
215
|
+
/**
|
|
216
|
+
* Indicate the text has been deleted. Typically used for discounted prices.
|
|
217
|
+
*/
|
|
218
|
+
| 'deletion'
|
|
219
|
+
/**
|
|
220
|
+
* Indicate the text is marked or highlighted and relevant to the buyer’s current action.
|
|
221
|
+
* Typically used to indicate the characters that matched a search query.
|
|
222
|
+
*/
|
|
223
|
+
| 'marking'
|
|
224
|
+
/**
|
|
225
|
+
* Indicate the text is an abbreviation or acronym. Use the `for` option to
|
|
226
|
+
* provide a description of the abbreviation.
|
|
227
|
+
*/
|
|
228
|
+
| {
|
|
229
|
+
type: 'abbreviation';
|
|
230
|
+
for?: string;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Override the text directionality. Typically used for email and phone numbers.
|
|
234
|
+
*/
|
|
235
|
+
| {
|
|
236
|
+
type: 'directional-override';
|
|
237
|
+
direction: 'ltr' | 'rtl';
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* Indicate the text is a date, a time or a duration. Use the `machineReadable` option
|
|
241
|
+
* to help browsers, tools or software understand the human-readable date. The valid
|
|
242
|
+
* format for `machineReadable` can be found here:
|
|
243
|
+
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time#Valid_datetime_Values
|
|
244
|
+
*/
|
|
245
|
+
| {
|
|
246
|
+
type: 'datetime';
|
|
247
|
+
machineReadable?: string;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Indicate emphatic stress. Typically for words that have a stressed emphasis compared to surrounding text.
|
|
251
|
+
*
|
|
252
|
+
* In an HTML host, the text will be rendered in a `<em>` tag.
|
|
253
|
+
*/
|
|
254
|
+
| 'stress'
|
|
255
|
+
/**
|
|
256
|
+
* Indicate an offset from the normal prose of the text. Typically used to indicate
|
|
257
|
+
* a foreign word, fictional character thoughts, or when the text refers to the definition of a word
|
|
258
|
+
* instead of representing its semantic meaning.
|
|
259
|
+
*
|
|
260
|
+
* In an HTML host, the text will be rendered in a `<i>` tag.
|
|
261
|
+
*/
|
|
262
|
+
| 'offset'
|
|
263
|
+
/**
|
|
264
|
+
* Indicate strong importance, seriousness, or urgency.
|
|
265
|
+
*
|
|
266
|
+
* In an HTML host, the text will be rendered in a `<strong>` tag.
|
|
267
|
+
*/
|
|
268
|
+
| 'strong';
|
|
269
|
+
export type Status =
|
|
270
|
+
/**
|
|
271
|
+
* Use to convey general information or actions that aren’t critical or tied to
|
|
272
|
+
* a particular action.
|
|
273
|
+
*/
|
|
274
|
+
'info'
|
|
275
|
+
/**
|
|
276
|
+
* Use rarely, only if you need additional visual confirmation that a
|
|
277
|
+
* non-standard action has been completed successfully, for example adding an
|
|
278
|
+
* item to an order as an upsell.
|
|
279
|
+
*/
|
|
280
|
+
| 'success'
|
|
281
|
+
/**
|
|
282
|
+
* Use to display information that needs attention or that customers should
|
|
283
|
+
* take action on. Seeing these banners can be stressful for customers so be
|
|
284
|
+
* cautious about using them. Should not block progress to next step.
|
|
285
|
+
*/
|
|
286
|
+
| 'warning'
|
|
287
|
+
/**
|
|
288
|
+
* Use to communicate problems that have to be resolved immediately for
|
|
289
|
+
* customers to complete a task. For example, using a different payment method
|
|
290
|
+
* if card details couldn't be processed. Seeing these banners can be stressful
|
|
291
|
+
* for customers so be cautious about using them.
|
|
292
|
+
*/
|
|
293
|
+
| 'critical';
|
|
294
|
+
export type Size = 'extraSmall' | 'small' | 'base' | 'large' | 'extraLarge' | 'fill';
|
|
295
|
+
export type Spacing = 'none' | 'extraTight' | 'tight' | 'base' | 'loose' | 'extraLoose';
|
|
296
|
+
export type Alignment = 'start' | 'center' | 'end';
|
|
297
|
+
export type InlineAlignment = 'start' | 'center' | 'end';
|
|
298
|
+
export type BlockAlignment = Alignment | 'baseline';
|
|
299
|
+
export type Background = 'transparent' | 'color1' | 'color2' | 'color3';
|
|
300
|
+
export type BackgroundFit = 'cover' | 'contain';
|
|
301
|
+
export type BackgroundPosition = 'top' | 'bottom' | 'left' | 'right' | 'center';
|
|
302
|
+
export type BackgroundRepeat = 'repeat' | 'noRepeat';
|
|
303
|
+
export type Appearance =
|
|
304
|
+
/** Use to convey emphasis and draw attention to the icon.*/
|
|
305
|
+
'accent'
|
|
306
|
+
/** Use to convey that the icon is pressable, hoverable or otherwise interactive.*/
|
|
307
|
+
| 'interactive'
|
|
308
|
+
/** Use to convey a subdued or disabled state for the icon.*/
|
|
309
|
+
| 'subdued'
|
|
310
|
+
/** Use to convey icon is informative or has information.*/
|
|
311
|
+
| 'info'
|
|
312
|
+
/** Use to convey a successful interaction.*/
|
|
313
|
+
| 'success'
|
|
314
|
+
/** Use to convey something needs attention or an action needs to be taken.*/
|
|
315
|
+
| 'warning'
|
|
316
|
+
/** Use to convey a problem has arisen.*/
|
|
317
|
+
| 'critical'
|
|
318
|
+
/** Will take the color of its parent*/
|
|
319
|
+
| 'monochrome';
|
|
320
|
+
export type Direction = 'inline' | 'block';
|
|
321
|
+
export type Fit =
|
|
322
|
+
/**
|
|
323
|
+
* Image maintains its aspect ratio while fitting within the frame.
|
|
324
|
+
*/
|
|
325
|
+
'cover'
|
|
326
|
+
/**
|
|
327
|
+
* Image maintains its aspect ratio while filling the frame.
|
|
328
|
+
* If the image is larger than the frame, then it will be cropped.
|
|
329
|
+
*/
|
|
330
|
+
| 'contain';
|
|
331
|
+
export type GridItemSize = 'auto' | 'fill' | number | `${number}fr` | `${number}%`;
|
|
332
|
+
export type Columns = GridItemSize[] | GridItemSize;
|
|
333
|
+
export type Rows = GridItemSize[] | GridItemSize;
|
|
334
|
+
/**
|
|
335
|
+
* Use to emphasize a word or a group of words.
|
|
336
|
+
*/
|
|
337
|
+
export type Emphasis =
|
|
338
|
+
/**
|
|
339
|
+
* Set the text in italic.
|
|
340
|
+
*
|
|
341
|
+
* Combine with an `accessibilityRole` of `offset` or `stress`
|
|
342
|
+
* to add more meaning to the text.
|
|
343
|
+
*/
|
|
344
|
+
'italic'
|
|
345
|
+
/**
|
|
346
|
+
* Set the text in bold.
|
|
347
|
+
*
|
|
348
|
+
* Combine with an `accessibilityRole` of `strong`
|
|
349
|
+
* to add more meaning to the text.
|
|
350
|
+
*/
|
|
351
|
+
| 'bold';
|
|
352
|
+
/**
|
|
353
|
+
* Takes a base type (Base) and a list of accepted combinations of
|
|
354
|
+
* its properties (AcceptedCombinations) and returns a new type
|
|
355
|
+
* that only allows the properties listed in AcceptedCombinations
|
|
356
|
+
* to be used together.
|
|
357
|
+
*
|
|
358
|
+
* Example:
|
|
359
|
+
*
|
|
360
|
+
* We want to accept either aspectRatio or width and height on a type,
|
|
361
|
+
* but not both simultaneously:
|
|
362
|
+
*
|
|
363
|
+
* type BaseDimensions = {
|
|
364
|
+
* aspectRatio: number,
|
|
365
|
+
* height: number,
|
|
366
|
+
* width: number,
|
|
367
|
+
* };
|
|
368
|
+
*
|
|
369
|
+
* type OneDimension = MultiPick<BaseDimensions, ['height' | 'width', 'aspectRatio']>;
|
|
370
|
+
*
|
|
371
|
+
* The OneDimension type would be equivalent to:
|
|
372
|
+
*
|
|
373
|
+
* {
|
|
374
|
+
* aspectRatio?: number,
|
|
375
|
+
* height?: never,
|
|
376
|
+
* width?: never,
|
|
377
|
+
* } | {
|
|
378
|
+
* aspectRatio?: never,
|
|
379
|
+
* height?: number,
|
|
380
|
+
* width?: number,
|
|
381
|
+
* }
|
|
382
|
+
*/
|
|
383
|
+
export type MultiPick<Base, AcceptedCombinations extends (keyof Base)[]> = {
|
|
384
|
+
[Combination in keyof AcceptedCombinations]: {
|
|
385
|
+
[Accepted in AcceptedCombinations[Combination] as Accepted extends keyof Base ? Accepted : never]?: Accepted extends keyof Base ? Base[Accepted] : never;
|
|
386
|
+
} & {
|
|
387
|
+
[NotAccepted in Exclude<keyof Base, AcceptedCombinations[Combination]>]?: never;
|
|
388
|
+
};
|
|
389
|
+
}[number];
|
|
390
|
+
export type Visibility = 'hidden';
|
|
391
|
+
export interface VisibilityProps {
|
|
392
|
+
/**
|
|
393
|
+
* Changes the visibility of the element.
|
|
394
|
+
*
|
|
395
|
+
* `hidden` visually hides the component while keeping it accessible
|
|
396
|
+
* to assistive technology, such as screen readers.
|
|
397
|
+
* Hidden elements don't take any visual space contrary to CSS visibility: hidden;
|
|
398
|
+
*/
|
|
399
|
+
visibility?: Visibility;
|
|
400
|
+
}
|
|
401
|
+
export interface OverlayActivatorProps {
|
|
402
|
+
/**
|
|
403
|
+
* An overlay component to render when the user interacts with the component.
|
|
404
|
+
*/
|
|
405
|
+
overlay?: RemoteFragment;
|
|
406
|
+
}
|
|
407
|
+
//# sourceMappingURL=shared.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/components/shared.ts"],"names":[],"mappings":"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"}
|