@shopify/ui-extensions 0.0.0-unstable-20230118190150
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/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 +21 -0
- package/build/esm/index.mjs +1 -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 +17 -0
- package/build/esnext/index.esnext +1 -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 +17 -0
- package/build/ts/api.d.ts +4 -0
- package/build/ts/api.d.ts.map +1 -0
- package/build/ts/extension.d.ts +8 -0
- package/build/ts/extension.d.ts.map +1 -0
- package/build/ts/index.d.ts +4 -0
- package/build/ts/index.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 +1122 -0
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api.d.ts +4 -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 +11 -0
- package/build/ts/surfaces/checkout/globals.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/shared.d.ts +8 -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 +12 -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 +51 -0
- package/src/api.ts +3 -0
- package/src/extension.ts +19 -0
- package/src/index.ts +3 -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 +1340 -0
- package/src/surfaces/checkout/api.ts +67 -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 +15 -0
- package/src/surfaces/checkout/shared.ts +14 -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 +27 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
export { Banner } from './components/Banner/Banner';
|
|
2
|
+
export type { BannerProps } from './components/Banner/Banner';
|
|
3
|
+
export { BlockLayout } from './components/BlockLayout/BlockLayout';
|
|
4
|
+
export type { BlockLayoutProps } from './components/BlockLayout/BlockLayout';
|
|
5
|
+
export { BlockSpacer } from './components/BlockSpacer/BlockSpacer';
|
|
6
|
+
export type { BlockSpacerProps } from './components/BlockSpacer/BlockSpacer';
|
|
7
|
+
export { BlockStack } from './components/BlockStack/BlockStack';
|
|
8
|
+
export type { BlockStackProps } from './components/BlockStack/BlockStack';
|
|
9
|
+
export { Button } from './components/Button/Button';
|
|
10
|
+
export type { ButtonProps } from './components/Button/Button';
|
|
11
|
+
export { Checkbox } from './components/Checkbox/Checkbox';
|
|
12
|
+
export type { CheckboxProps } from './components/Checkbox/Checkbox';
|
|
13
|
+
export { Choice } from './components/Choice/Choice';
|
|
14
|
+
export type { ChoiceProps } from './components/Choice/Choice';
|
|
15
|
+
export { ChoiceList } from './components/ChoiceList/ChoiceList';
|
|
16
|
+
export type { ChoiceListProps } from './components/ChoiceList/ChoiceList';
|
|
17
|
+
export { Divider } from './components/Divider/Divider';
|
|
18
|
+
export type { DividerProps } from './components/Divider/Divider';
|
|
19
|
+
export { Form } from './components/Form/Form';
|
|
20
|
+
export type { FormProps } from './components/Form/Form';
|
|
21
|
+
export { Grid } from './components/Grid/Grid';
|
|
22
|
+
export type { GridProps } from './components/Grid/Grid';
|
|
23
|
+
export { GridItem } from './components/GridItem/GridItem';
|
|
24
|
+
export type { GridItemProps } from './components/GridItem/GridItem';
|
|
25
|
+
export { Heading } from './components/Heading/Heading';
|
|
26
|
+
export type { HeadingProps } from './components/Heading/Heading';
|
|
27
|
+
export { HeadingGroup } from './components/HeadingGroup/HeadingGroup';
|
|
28
|
+
export type { HeadingGroupProps } from './components/HeadingGroup/HeadingGroup';
|
|
29
|
+
export { Icon } from './components/Icon/Icon';
|
|
30
|
+
export type { IconProps } from './components/Icon/Icon';
|
|
31
|
+
export { Image } from './components/Image/Image';
|
|
32
|
+
export type { ImageProps } from './components/Image/Image';
|
|
33
|
+
export { InlineLayout } from './components/InlineLayout/InlineLayout';
|
|
34
|
+
export type { InlineLayoutProps } from './components/InlineLayout/InlineLayout';
|
|
35
|
+
export { InlineStack } from './components/InlineStack/InlineStack';
|
|
36
|
+
export type { InlineStackProps } from './components/InlineStack/InlineStack';
|
|
37
|
+
export { InlineSpacer } from './components/InlineSpacer/InlineSpacer';
|
|
38
|
+
export type { InlineSpacerProps } from './components/InlineSpacer/InlineSpacer';
|
|
39
|
+
export { Link } from './components/Link/Link';
|
|
40
|
+
export type { LinkProps } from './components/Link/Link';
|
|
41
|
+
export { List } from './components/List/List';
|
|
42
|
+
export type { ListProps } from './components/List/List';
|
|
43
|
+
export { ListItem } from './components/ListItem/ListItem';
|
|
44
|
+
export type { ListItemProps } from './components/ListItem/ListItem';
|
|
45
|
+
export { PhoneField } from './components/PhoneField/PhoneField';
|
|
46
|
+
export type { PhoneFieldProps } from './components/PhoneField/PhoneField';
|
|
47
|
+
export { Pressable } from './components/Pressable/Pressable';
|
|
48
|
+
export type { PressableProps } from './components/Pressable/Pressable';
|
|
49
|
+
export { ScrollView } from './components/ScrollView/ScrollView';
|
|
50
|
+
export type { ScrollViewProps, ScrollViewEvent, } from './components/ScrollView/ScrollView';
|
|
51
|
+
export { Select } from './components/Select/Select';
|
|
52
|
+
export type { SelectProps } from './components/Select/Select';
|
|
53
|
+
export { SkeletonImage } from './components/SkeletonImage/SkeletonImage';
|
|
54
|
+
export type { SkeletonImageProps } from './components/SkeletonImage/SkeletonImage';
|
|
55
|
+
export { SkeletonText } from './components/SkeletonText/SkeletonText';
|
|
56
|
+
export type { SkeletonTextProps } from './components/SkeletonText/SkeletonText';
|
|
57
|
+
export { SkeletonTextBlock } from './components/SkeletonTextBlock/SkeletonTextBlock';
|
|
58
|
+
export type { SkeletonTextBlockProps } from './components/SkeletonTextBlock/SkeletonTextBlock';
|
|
59
|
+
export { Spinner } from './components/Spinner/Spinner';
|
|
60
|
+
export type { SpinnerProps } from './components/Spinner/Spinner';
|
|
61
|
+
export { Stepper } from './components/Stepper/Stepper';
|
|
62
|
+
export type { StepperProps } from './components/Stepper/Stepper';
|
|
63
|
+
export { Tag } from './components/Tag/Tag';
|
|
64
|
+
export type { TagProps } from './components/Tag/Tag';
|
|
65
|
+
export { Text } from './components/Text/Text';
|
|
66
|
+
export type { TextProps } from './components/Text/Text';
|
|
67
|
+
export { TextBlock } from './components/TextBlock/TextBlock';
|
|
68
|
+
export type { TextBlockProps } from './components/TextBlock/TextBlock';
|
|
69
|
+
export { TextField } from './components/TextField/TextField';
|
|
70
|
+
export type { TextFieldProps } from './components/TextField/TextField';
|
|
71
|
+
export { Tooltip } from './components/Tooltip/Tooltip';
|
|
72
|
+
export type { TooltipProps } from './components/Tooltip/Tooltip';
|
|
73
|
+
export { View } from './components/View/View';
|
|
74
|
+
export type { ViewProps, Coordinate as ViewCoordinate, Position as ViewPosition, PositionType as ViewPositionType, Translate as ViewTranslate, } from './components/View/View';
|
|
75
|
+
export type { AccessibilityRole, ViewLikeAccessibilityRole, NonPresentationalAccessibilityRole, Autocomplete, AutocompleteField, AutocompleteGroup, Background, BackgroundFit, BackgroundPosition, BackgroundRepeat, BlockAlignment, InlineAlignment, BorderRadius, BorderStyle, BorderWidth, Breakpoint, CornerRadius, ShorthandProperty, MaybeShorthandProperty, Fit, Status, Size, Spacing, Alignment, Appearance, GridItemSize, Columns, Rows, BackgroundProps, BorderProps, CornerProps, SizingProps, SpacingProps, VisibilityProps, OverlayActivatorProps, } from './components/shared';
|
|
76
|
+
//# sourceMappingURL=components.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/checkout/components.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import type { RenderExtension } from '../../extension';
|
|
2
|
+
import type { AnyComponent } from './shared';
|
|
3
|
+
import type { StandardApi, CartLineDetailsRenderAfterApi } from './api';
|
|
4
|
+
export interface ExtensionPoints {
|
|
5
|
+
/**
|
|
6
|
+
* A [dynamic extension point](https://shopify.dev/api/checkout-extensions/checkout#extension-points) that isn't tied to a specific checkout section or feature.
|
|
7
|
+
* Unlike static extension points, dynamic extension points render where the merchant
|
|
8
|
+
* sets them using the [checkout editor](https://shopify.dev/apps/checkout/test-ui-extensions#test-the-extension-in-the-checkout-editor).
|
|
9
|
+
*`
|
|
10
|
+
* The [supported locations](https://shopify.dev/api/checkout-extensions/checkout#supported-locations) for dynamic extension points can be previewed during development
|
|
11
|
+
* by [using a URL parameter](https://shopify.dev/apps/checkout/test-ui-extensions#dynamic-extension-points).
|
|
12
|
+
*/
|
|
13
|
+
'Checkout::Dynamic::Render': RenderExtension<StandardApi<'Checkout::Dynamic::Render'>, AnyComponent>;
|
|
14
|
+
/**
|
|
15
|
+
* A static extension point that renders on every line item, inside the details
|
|
16
|
+
* under the line item properties element.
|
|
17
|
+
*/
|
|
18
|
+
'Checkout::CartLineDetails::RenderAfter': RenderExtension<CartLineDetailsRenderAfterApi, AnyComponent>;
|
|
19
|
+
/**
|
|
20
|
+
* A static extension point that is rendered after all line items.
|
|
21
|
+
*/
|
|
22
|
+
'Checkout::CartLines::RenderAfter': RenderExtension<StandardApi<'Checkout::CartLines::RenderAfter'>, AnyComponent>;
|
|
23
|
+
/**
|
|
24
|
+
* A static extension point that is rendered between the shipping address header
|
|
25
|
+
* and shipping address form elements.
|
|
26
|
+
*/
|
|
27
|
+
'Checkout::DeliveryAddress::RenderBefore': RenderExtension<StandardApi<'Checkout::DeliveryAddress::RenderBefore'>, AnyComponent>;
|
|
28
|
+
/**
|
|
29
|
+
* A static extension point that is rendered between the shipping method
|
|
30
|
+
* header and shipping method options.
|
|
31
|
+
*/
|
|
32
|
+
'Checkout::ShippingMethods::RenderBefore': RenderExtension<StandardApi<'Checkout::ShippingMethods::RenderBefore'>, AnyComponent>;
|
|
33
|
+
/**
|
|
34
|
+
* A static extension point that is rendered after the shipping method
|
|
35
|
+
* options.
|
|
36
|
+
*/
|
|
37
|
+
'Checkout::ShippingMethods::RenderAfter': RenderExtension<StandardApi<'Checkout::ShippingMethods::RenderAfter'>, AnyComponent>;
|
|
38
|
+
/**
|
|
39
|
+
* A static extension point that is rendered in the order summary, before the discount form element.
|
|
40
|
+
*/
|
|
41
|
+
'Checkout::Reductions::RenderBefore': RenderExtension<StandardApi<'Checkout::Reductions::RenderBefore'>, AnyComponent>;
|
|
42
|
+
/**
|
|
43
|
+
* A static extension point that is rendered in the order summary, after the discount form
|
|
44
|
+
* and discount tag elements.
|
|
45
|
+
*/
|
|
46
|
+
'Checkout::Reductions::RenderAfter': RenderExtension<StandardApi<'Checkout::Reductions::RenderAfter'>, AnyComponent>;
|
|
47
|
+
/**
|
|
48
|
+
* A static extension point that is rendered immediately before any actions within each step.
|
|
49
|
+
*/
|
|
50
|
+
'Checkout::Actions::RenderBefore': RenderExtension<StandardApi<'Checkout::Actions::RenderBefore'>, AnyComponent>;
|
|
51
|
+
/**
|
|
52
|
+
* A static extension point that is rendered immediately after the contact form element.
|
|
53
|
+
*/
|
|
54
|
+
'Checkout::Contact::RenderAfter': RenderExtension<StandardApi<'Checkout::Contact::RenderAfter'>, AnyComponent>;
|
|
55
|
+
}
|
|
56
|
+
export type ExtensionPoint = keyof ExtensionPoints;
|
|
57
|
+
export type ExtensionForExtensionPoint<T extends ExtensionPoint> = ExtensionPoints[T];
|
|
58
|
+
/**
|
|
59
|
+
* For a given extension point, returns the value that is expected to be
|
|
60
|
+
* returned by that extension point’s callback type.
|
|
61
|
+
*/
|
|
62
|
+
export type ReturnTypeForExtension<ID extends keyof ExtensionPoints> = ReturnType<ExtensionPoints[ID]>;
|
|
63
|
+
/**
|
|
64
|
+
* For a given extension point, returns the tuple of arguments that would
|
|
65
|
+
* be provided to that extension point’s callback type.
|
|
66
|
+
*/
|
|
67
|
+
export type ArgumentsForExtension<ID extends keyof ExtensionPoints> = Parameters<ExtensionPoints[ID]>;
|
|
68
|
+
/**
|
|
69
|
+
* A union type containing all of the extension points that follow the pattern of
|
|
70
|
+
* accepting a [`@remote-ui/core` `RemoteRoot`](https://github.com/Shopify/remote-ui/tree/main/packages/core)
|
|
71
|
+
* and an additional `api` argument, and using those arguments to render
|
|
72
|
+
* UI.
|
|
73
|
+
*/
|
|
74
|
+
export type RenderExtensionPoint = {
|
|
75
|
+
[ID in keyof ExtensionPoints]: ExtensionPoints[ID] extends RenderExtension<any, any> ? ID : never;
|
|
76
|
+
}[keyof ExtensionPoints];
|
|
77
|
+
/**
|
|
78
|
+
* A mapping of each “render extension” name to its callback type.
|
|
79
|
+
*/
|
|
80
|
+
export type RenderExtensions = {
|
|
81
|
+
[ID in RenderExtensionPoint]: ExtensionPoints[ID];
|
|
82
|
+
};
|
|
83
|
+
type ExtractedApiFromRenderExtension<T> = T extends RenderExtension<infer Api, any> ? Api : never;
|
|
84
|
+
type ExtractedAllowedComponentsFromRenderExtension<T> = T extends RenderExtension<any, infer Components> ? Components : never;
|
|
85
|
+
/**
|
|
86
|
+
* For a given rendering extension point, returns the type of the API that the
|
|
87
|
+
* extension will receive at runtime. This API type is the second argument to
|
|
88
|
+
* the callback for that extension point. The first callback for all of the rendering
|
|
89
|
+
* extension points each receive a `RemoteRoot` object.
|
|
90
|
+
*/
|
|
91
|
+
export type ApiForRenderExtension<ID extends keyof RenderExtensions> = ExtractedApiFromRenderExtension<RenderExtensions[ID]>;
|
|
92
|
+
/**
|
|
93
|
+
* For a given rendering extension point, returns the UI components that the
|
|
94
|
+
* extension point supports.
|
|
95
|
+
*/
|
|
96
|
+
export type AllowedComponentsForRenderExtension<ID extends keyof RenderExtensions> = ExtractedAllowedComponentsFromRenderExtension<RenderExtensions[ID]>;
|
|
97
|
+
export {};
|
|
98
|
+
//# sourceMappingURL=extension-points.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extension-points.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/checkout/extension-points.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ExtensionPoints } from './extension-points';
|
|
2
|
+
export * from '../../extension';
|
|
3
|
+
export declare const extension: import("../../utilities/registration").ExtensionRegistrationFunction<ExtensionPoints>;
|
|
4
|
+
export declare const extend: import("../../utilities/registration").ExtensionRegistrationFunction<ExtensionPoints>;
|
|
5
|
+
//# sourceMappingURL=extension.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/checkout/extension.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,oBAAoB,CAAC;AAExD,cAAc,iBAAiB,CAAC;AAEhC,eAAO,MAAM,SAAS,uFAAyD,CAAC;AAChF,eAAO,MAAM,MAAM,uFAAY,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ExtensionPoints } from './extension-points';
|
|
2
|
+
export interface ShopifyGlobal {
|
|
3
|
+
extend<ExtensionPoint extends keyof ExtensionPoints>(extensionPoint: ExtensionPoint, extend: ExtensionPoints[ExtensionPoint]): void;
|
|
4
|
+
reload(): void;
|
|
5
|
+
}
|
|
6
|
+
declare global {
|
|
7
|
+
interface WorkerGlobalScope {
|
|
8
|
+
readonly shopify: ShopifyGlobal;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=globals.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"globals.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/checkout/globals.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,oBAAoB,CAAC;AAExD,MAAM,WAAW,aAAa;IAC5B,MAAM,CAAC,cAAc,SAAS,MAAM,eAAe,EACjD,cAAc,EAAE,cAAc,EAC9B,MAAM,EAAE,eAAe,CAAC,cAAc,CAAC,GACtC,IAAI,CAAC;IACR,MAAM,IAAI,IAAI,CAAC;CAChB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,iBAAiB;QACzB,QAAQ,CAAC,OAAO,EAAE,aAAa,CAAC;KACjC;CACF"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { RemoteComponentType } from '@remote-ui/core';
|
|
2
|
+
type ComponentTypes = typeof import('./components');
|
|
3
|
+
export type Components = {
|
|
4
|
+
[K in keyof ComponentTypes]: ComponentTypes[K] extends RemoteComponentType<any, any> ? ComponentTypes[K] : never;
|
|
5
|
+
};
|
|
6
|
+
export type AnyComponent = Components[keyof Components];
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=shared.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/checkout/shared.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,iBAAiB,CAAC;AAEzD,KAAK,cAAc,GAAG,cAAc,cAAc,CAAC,CAAC;AAEpD,MAAM,MAAM,UAAU,GAAG;KACtB,CAAC,IAAI,MAAM,cAAc,GAAG,cAAc,CAAC,CAAC,CAAC,SAAS,mBAAmB,CACxE,GAAG,EACH,GAAG,CACJ,GACG,cAAc,CAAC,CAAC,CAAC,GACjB,KAAK;CACV,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,MAAM,UAAU,CAAC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A simple isEqual function that can be used to compare two style objects that's
|
|
3
|
+
* good enough for our use case on the style builder.
|
|
4
|
+
*/
|
|
5
|
+
export declare function isEqual<T = {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
} | any[] | number | boolean | string | null | undefined>(first: T, second: T): boolean;
|
|
8
|
+
//# sourceMappingURL=isEqual.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isEqual.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/style/isEqual.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,wBAAgB,OAAO,CACrB,CAAC,GACG;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAC,GACpB,GAAG,EAAE,GACL,MAAM,GACN,OAAO,GACP,MAAM,GACN,IAAI,GACJ,SAAS,EACb,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,GAAG,OAAO,CA2B9B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isEqual.test.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/style/isEqual.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type EqualityFn = (a: any, b: any) => boolean;
|
|
2
|
+
export declare const defaultEqualityCheck: EqualityFn;
|
|
3
|
+
export declare function createCacheKeyComparator(equalityCheck: EqualityFn): (prev: unknown[] | IArguments | null, next: unknown[] | IArguments | null) => boolean;
|
|
4
|
+
export interface DefaultMemoizeOptions {
|
|
5
|
+
equalityCheck?: EqualityFn;
|
|
6
|
+
resultEqualityCheck?: EqualityFn;
|
|
7
|
+
maxSize?: number;
|
|
8
|
+
}
|
|
9
|
+
export declare function memoize<F extends (...args: any[]) => any>(func: F, equalityCheckOrOptions?: EqualityFn | DefaultMemoizeOptions): F & {
|
|
10
|
+
clearCache: () => void;
|
|
11
|
+
};
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=memoize.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"memoize.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/style/memoize.ts"],"names":[],"mappings":"AAMA,KAAK,UAAU,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC;AAwF9C,eAAO,MAAM,oBAAoB,EAAE,UAElC,CAAC;AAEF,wBAAgB,wBAAwB,CAAC,aAAa,EAAE,UAAU,UAExD,OAAO,EAAE,GAAG,UAAU,GAAG,IAAI,QAC7B,OAAO,EAAE,GAAG,UAAU,GAAG,IAAI,KAClC,OAAO,CAeX;AAED,MAAM,WAAW,qBAAqB;IACpC,aAAa,CAAC,EAAE,UAAU,CAAC;IAC3B,mBAAmB,CAAC,EAAE,UAAU,CAAC;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAID,wBAAgB,OAAO,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,EACvD,IAAI,EAAE,CAAC,EACP,sBAAsB,CAAC,EAAE,UAAU,GAAG,qBAAqB;gBA8CvB,MAAM,IAAI;EAC/C"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { Conditions, ConditionalStyle, BaseConditions } from './types';
|
|
2
|
+
type Chainable<TConditionalStyle> = TConditionalStyle extends ConditionalStyle<infer T, infer TAcceptedConditions> ? TConditionalStyle & {
|
|
3
|
+
when: <U, AcceptedConditions extends BaseConditions = TAcceptedConditions>(this: TConditionalStyle, conditions: AcceptedConditions, value: U) => Chainable<TConditionalStyle extends {
|
|
4
|
+
default: T;
|
|
5
|
+
} ? Required<ConditionalStyle<U, AcceptedConditions>> : ConditionalStyle<U, AcceptedConditions>>;
|
|
6
|
+
} : never;
|
|
7
|
+
type WhenContext<T, AcceptedConditions extends BaseConditions = Conditions> = typeof Style | ConditionalStyle<T, AcceptedConditions> | Required<ConditionalStyle<T, AcceptedConditions>>;
|
|
8
|
+
type WhenReturnType<T, TContext extends WhenContext<any, AcceptedConditions>, AcceptedConditions extends BaseConditions = Conditions> = Chainable<TContext extends typeof Style ? ConditionalStyle<T, AcceptedConditions> : TContext extends {
|
|
9
|
+
default: infer U;
|
|
10
|
+
} ? Required<ConditionalStyle<T | U, AcceptedConditions>> : TContext extends {
|
|
11
|
+
default?: infer U;
|
|
12
|
+
} ? ConditionalStyle<T | U, AcceptedConditions> : ConditionalStyle<T, AcceptedConditions>>;
|
|
13
|
+
interface WhenFunction {
|
|
14
|
+
<T, TContext extends WhenContext<any, AcceptedConditions>, AcceptedConditions extends BaseConditions = Conditions>(this: TContext, conditions: AcceptedConditions, value: T): WhenReturnType<T, TContext, AcceptedConditions>;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Style is a helper for authoring conditional values for prop styles.
|
|
18
|
+
* Write complex conditional styles based on one or more conditions (viewport
|
|
19
|
+
* sizes and interactive states) in a concise and expressive way.
|
|
20
|
+
*/
|
|
21
|
+
export declare const Style: {
|
|
22
|
+
/**
|
|
23
|
+
* Sets an optional default value to use when no other condition is met.
|
|
24
|
+
*
|
|
25
|
+
* @param defaultValue The default value
|
|
26
|
+
* @returns The chainable condition style
|
|
27
|
+
*/
|
|
28
|
+
readonly default: (<T, AcceptedConditions extends BaseConditions = Conditions>(defaultValue: T) => Required<ConditionalStyle<T, AcceptedConditions>> & {
|
|
29
|
+
when: <U, AcceptedConditions_1 extends BaseConditions = AcceptedConditions>(this: Required<ConditionalStyle<T, AcceptedConditions>>, conditions: AcceptedConditions_1, value: U) => Required<ConditionalStyle<U, AcceptedConditions_1>> & {
|
|
30
|
+
when: <U_1, AcceptedConditions_2 extends BaseConditions = AcceptedConditions_1>(this: Required<ConditionalStyle<U, AcceptedConditions_1>>, conditions: AcceptedConditions_2, value: U_1) => Required<ConditionalStyle<U_1, AcceptedConditions_2>> & {
|
|
31
|
+
when: <U_2, AcceptedConditions_3 extends BaseConditions = AcceptedConditions_2>(this: Required<ConditionalStyle<U_1, AcceptedConditions_2>>, conditions: AcceptedConditions_3, value: U_2) => Required<ConditionalStyle<U_2, AcceptedConditions_3>> & {
|
|
32
|
+
when: <U_3, AcceptedConditions_4 extends BaseConditions = AcceptedConditions_3>(this: Required<ConditionalStyle<U_2, AcceptedConditions_3>>, conditions: AcceptedConditions_4, value: U_3) => Required<ConditionalStyle<U_3, AcceptedConditions_4>> & {
|
|
33
|
+
when: <U_4, AcceptedConditions_5 extends BaseConditions = AcceptedConditions_4>(this: Required<ConditionalStyle<U_3, AcceptedConditions_4>>, conditions: AcceptedConditions_5, value: U_4) => Required<ConditionalStyle<U_4, AcceptedConditions_5>> & {
|
|
34
|
+
when: <U_5, AcceptedConditions_6 extends BaseConditions = AcceptedConditions_5>(this: Required<ConditionalStyle<U_4, AcceptedConditions_5>>, conditions: AcceptedConditions_6, value: U_5) => Required<ConditionalStyle<U_5, AcceptedConditions_6>> & {
|
|
35
|
+
when: <U_6, AcceptedConditions_7 extends BaseConditions = AcceptedConditions_6>(this: Required<ConditionalStyle<U_5, AcceptedConditions_6>>, conditions: AcceptedConditions_7, value: U_6) => Required<ConditionalStyle<U_6, AcceptedConditions_7>> & {
|
|
36
|
+
when: <U_7, AcceptedConditions_8 extends BaseConditions = AcceptedConditions_7>(this: Required<ConditionalStyle<U_6, AcceptedConditions_7>>, conditions: AcceptedConditions_8, value: U_7) => Required<ConditionalStyle<U_7, AcceptedConditions_8>> & {
|
|
37
|
+
when: <U_8, AcceptedConditions_9 extends BaseConditions = AcceptedConditions_8>(this: Required<ConditionalStyle<U_7, AcceptedConditions_8>>, conditions: AcceptedConditions_9, value: U_8) => Required<ConditionalStyle<U_8, AcceptedConditions_9>> & {
|
|
38
|
+
when: <U_9, AcceptedConditions_10 extends BaseConditions = AcceptedConditions_9>(this: Required<ConditionalStyle<U_8, AcceptedConditions_9>>, conditions: AcceptedConditions_10, value: U_9) => Required<ConditionalStyle<U_9, AcceptedConditions_10>> & {
|
|
39
|
+
when: <U_10, AcceptedConditions_11 extends BaseConditions = AcceptedConditions_10>(this: Required<ConditionalStyle<U_9, AcceptedConditions_10>>, conditions: AcceptedConditions_11, value: U_10) => Required<ConditionalStyle<U_10, AcceptedConditions_11>> & any;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}) & {
|
|
51
|
+
clearCache: () => void;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Adjusts the style based on different conditions. All conditions, expressed
|
|
55
|
+
* as a literal object, must be met for the associated value to be applied.
|
|
56
|
+
*
|
|
57
|
+
* The `when` method can be chained together to build more complex styles.
|
|
58
|
+
*
|
|
59
|
+
* @param conditions The condition(s)
|
|
60
|
+
* @param value The conditional value that can be applied if the conditions are met
|
|
61
|
+
* @returns The chainable condition style
|
|
62
|
+
*/
|
|
63
|
+
readonly when: WhenFunction & {
|
|
64
|
+
clearCache: () => void;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
export declare function isConditionalStyle<T, AcceptedConditions extends BaseConditions = Conditions>(value?: any): value is ConditionalStyle<T, AcceptedConditions>;
|
|
68
|
+
export declare function isConditionalStyleWithDefault<T, AcceptedConditions extends BaseConditions = Conditions>(value?: any): value is Required<ConditionalStyle<T, AcceptedConditions>>;
|
|
69
|
+
export {};
|
|
70
|
+
//# sourceMappingURL=style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/style/style.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,UAAU,EAAE,gBAAgB,EAAE,cAAc,EAAC,MAAM,SAAS,CAAC;AAUrE,KAAK,SAAS,CAAC,iBAAiB,IAAI,iBAAiB,SAAS,gBAAgB,CAC5E,MAAM,CAAC,EACP,MAAM,mBAAmB,CAC1B,GACG,iBAAiB,GAAG;IAClB,IAAI,EAAE,CACJ,CAAC,EACD,kBAAkB,SAAS,cAAc,GAAG,mBAAmB,EAE/D,IAAI,EAAE,iBAAiB,EACvB,UAAU,EAAE,kBAAkB,EAC9B,KAAK,EAAE,CAAC,KACL,SAAS,CACZ,iBAAiB,SAAS;QAAC,OAAO,EAAE,CAAC,CAAA;KAAC,GAClC,QAAQ,CAAC,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,GACjD,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAC5C,CAAC;CACH,GACD,KAAK,CAAC;AAEV,KAAK,WAAW,CAAC,CAAC,EAAE,kBAAkB,SAAS,cAAc,GAAG,UAAU,IACtE,OAAO,KAAK,GACZ,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,GACvC,QAAQ,CAAC,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC;AAEtD,KAAK,cAAc,CACjB,CAAC,EACD,QAAQ,SAAS,WAAW,CAAC,GAAG,EAAE,kBAAkB,CAAC,EACrD,kBAAkB,SAAS,cAAc,GAAG,UAAU,IACpD,SAAS,CACX,QAAQ,SAAS,OAAO,KAAK,GACzB,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,GACvC,QAAQ,SAAS;IAAC,OAAO,EAAE,MAAM,CAAC,CAAA;CAAC,GACnC,QAAQ,CAAC,gBAAgB,CAAC,CAAC,GAAG,CAAC,EAAE,kBAAkB,CAAC,CAAC,GACrD,QAAQ,SAAS;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC,CAAA;CAAC,GACpC,gBAAgB,CAAC,CAAC,GAAG,CAAC,EAAE,kBAAkB,CAAC,GAC3C,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAC5C,CAAC;AAEF,UAAU,YAAY;IACpB,CACE,CAAC,EACD,QAAQ,SAAS,WAAW,CAAC,GAAG,EAAE,kBAAkB,CAAC,EACrD,kBAAkB,SAAS,cAAc,GAAG,UAAU,EAEtD,IAAI,EAAE,QAAQ,EACd,UAAU,EAAE,kBAAkB,EAC9B,KAAK,EAAE,CAAC,GACP,cAAc,CAAC,CAAC,EAAE,QAAQ,EAAE,kBAAkB,CAAC,CAAC;CACpD;AAsBD;;;;GAIG;AACH,eAAO,MAAM,KAAK;IAChB;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;IAeH;;;;;;;;;OASG;;;;CAEK,CAAC;AAyBX,wBAAgB,kBAAkB,CAChC,CAAC,EACD,kBAAkB,SAAS,cAAc,GAAG,UAAU,EACtD,KAAK,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAE/D;AAED,wBAAgB,6BAA6B,CAC3C,CAAC,EACD,kBAAkB,SAAS,cAAc,GAAG,UAAU,EACtD,KAAK,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,QAAQ,CAAC,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAMzE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.test.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/style/style.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
type Resolution = 1 | 1.3 | 1.5 | 2 | 2.6 | 3 | 3.5 | 4;
|
|
2
|
+
export interface InteractiveConditions {
|
|
3
|
+
hover: true;
|
|
4
|
+
focus: true;
|
|
5
|
+
}
|
|
6
|
+
export interface ResolutionCondition {
|
|
7
|
+
resolution: Resolution;
|
|
8
|
+
}
|
|
9
|
+
type ViewportInlineSize = 'small' | 'medium' | 'large';
|
|
10
|
+
export interface ViewportSizeCondition {
|
|
11
|
+
viewportInlineSize: {
|
|
12
|
+
min: ViewportInlineSize;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export type AtLeastOne<T, U = {
|
|
16
|
+
[K in keyof T]: Pick<T, K>;
|
|
17
|
+
}> = Partial<T> & U[keyof U];
|
|
18
|
+
type DefaultConditions = InteractiveConditions & ViewportSizeCondition;
|
|
19
|
+
export type Conditions = AtLeastOne<DefaultConditions>;
|
|
20
|
+
export type BaseConditions = AtLeastOne<DefaultConditions & ResolutionCondition>;
|
|
21
|
+
export interface ConditionalValue<T, AcceptedConditions extends BaseConditions = Conditions> {
|
|
22
|
+
/**
|
|
23
|
+
* The conditions that must be met for the value to be applied. At least one
|
|
24
|
+
* condition must be specified.
|
|
25
|
+
*/
|
|
26
|
+
conditions: AcceptedConditions;
|
|
27
|
+
/**
|
|
28
|
+
* The value that will be applied if the conditions are met.
|
|
29
|
+
*/
|
|
30
|
+
value: T;
|
|
31
|
+
}
|
|
32
|
+
export interface ConditionalStyle<T, AcceptedConditions extends BaseConditions = Conditions> {
|
|
33
|
+
/**
|
|
34
|
+
* The default value applied when none of the conditional values
|
|
35
|
+
* specified in `conditionals` are met.
|
|
36
|
+
*/
|
|
37
|
+
default?: T;
|
|
38
|
+
/**
|
|
39
|
+
* An array of conditional values.
|
|
40
|
+
*/
|
|
41
|
+
conditionals: ConditionalValue<T, AcceptedConditions>[];
|
|
42
|
+
}
|
|
43
|
+
export type MaybeConditionalStyle<T, AcceptedConditions extends BaseConditions = Conditions> = T | ConditionalStyle<T, AcceptedConditions>;
|
|
44
|
+
export type MaybeResponsiveConditionalStyle<T> = MaybeConditionalStyle<T, ViewportSizeCondition>;
|
|
45
|
+
export {};
|
|
46
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/style/types.ts"],"names":[],"mappings":"AAAA,KAAK,UAAU,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC;AAExD,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,IAAI,CAAC;IACZ,KAAK,EAAE,IAAI,CAAC;CACb;AAED,MAAM,WAAW,mBAAmB;IAClC,UAAU,EAAE,UAAU,CAAC;CACxB;AAED,KAAK,kBAAkB,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;AAEvD,MAAM,WAAW,qBAAqB;IACpC,kBAAkB,EAAE;QAAC,GAAG,EAAE,kBAAkB,CAAA;KAAC,CAAC;CAC/C;AAED,MAAM,MAAM,UAAU,CAAC,CAAC,EAAE,CAAC,GAAG;KAAE,CAAC,IAAI,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC;CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,GACtE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AAEb,KAAK,iBAAiB,GAAG,qBAAqB,GAAG,qBAAqB,CAAC;AAEvE,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,iBAAiB,CAAC,CAAC;AAEvD,MAAM,MAAM,cAAc,GAAG,UAAU,CACrC,iBAAiB,GAAG,mBAAmB,CACxC,CAAC;AAEF,MAAM,WAAW,gBAAgB,CAC/B,CAAC,EACD,kBAAkB,SAAS,cAAc,GAAG,UAAU;IAEtD;;;OAGG;IACH,UAAU,EAAE,kBAAkB,CAAC;IAC/B;;OAEG;IACH,KAAK,EAAE,CAAC,CAAC;CACV;AAED,MAAM,WAAW,gBAAgB,CAC/B,CAAC,EACD,kBAAkB,SAAS,cAAc,GAAG,UAAU;IAEtD;;;OAGG;IACH,OAAO,CAAC,EAAE,CAAC,CAAC;IACZ;;OAEG;IACH,YAAY,EAAE,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,EAAE,CAAC;CACzD;AAED,MAAM,MAAM,qBAAqB,CAC/B,CAAC,EACD,kBAAkB,SAAS,cAAc,GAAG,UAAU,IACpD,CAAC,GAAG,gBAAgB,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC;AAEhD,MAAM,MAAM,+BAA+B,CAAC,CAAC,IAAI,qBAAqB,CACpE,CAAC,EACD,qBAAqB,CACtB,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { Style, isConditionalStyle, isConditionalStyleWithDefault, } from './style/style';
|
|
2
|
+
export type { AtLeastOne, Conditions, ConditionalStyle, ConditionalValue, InteractiveConditions, MaybeConditionalStyle, MaybeResponsiveConditionalStyle, ResolutionCondition, ViewportSizeCondition, } from './style/types';
|
|
3
|
+
//# sourceMappingURL=style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/checkout/style.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,kBAAkB,EAClB,6BAA6B,GAC9B,MAAM,eAAe,CAAC;AACvB,YAAY,EACV,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EACrB,qBAAqB,EACrB,+BAA+B,EAC/B,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './checkout/api';
|
|
2
|
+
export * from './checkout/components';
|
|
3
|
+
export * from './checkout/extension-points';
|
|
4
|
+
export * from './checkout/extension';
|
|
5
|
+
export * from './checkout/shared';
|
|
6
|
+
export * from './checkout/style';
|
|
7
|
+
export * from './checkout/globals';
|
|
8
|
+
//# sourceMappingURL=checkout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkout.d.ts","sourceRoot":"","sources":["../../../src/surfaces/checkout.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface ExtensionRegistrationFunction<ExtensionPoints> {
|
|
2
|
+
<Target extends keyof ExtensionPoints>(target: Target, implementation: ExtensionPoints[Target]): ExtensionPoints[Target];
|
|
3
|
+
}
|
|
4
|
+
/**
|
|
5
|
+
* This function takes an extension function that is expecting a `RemoteRoot` as its
|
|
6
|
+
* first argument, and returns a new function that accepts a `RemoteChannel` instead.
|
|
7
|
+
* This is a convenience that allows the raw UI extension API to only expose the simpler
|
|
8
|
+
* `RemoteChannel` type, while allowing the extension to use the more powerful `RemoteRoot`,
|
|
9
|
+
* provided by a version of `@remote-ui/core` that the extension controls.
|
|
10
|
+
*/
|
|
11
|
+
export declare function createExtensionRegistrationFunction<ExtensionPoints>(): ExtensionRegistrationFunction<ExtensionPoints>;
|
|
12
|
+
//# sourceMappingURL=registration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registration.d.ts","sourceRoot":"","sources":["../../../src/utilities/registration.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,6BAA6B,CAAC,eAAe;IAC5D,CAAC,MAAM,SAAS,MAAM,eAAe,EACnC,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,eAAe,CAAC,MAAM,CAAC,GACtC,eAAe,CAAC,MAAM,CAAC,CAAC;CAC5B;AAED;;;;;;GAMG;AACH,wBAAgB,mCAAmC,CACjD,eAAe,KACZ,6BAA6B,CAAC,eAAe,CAAC,CAUlD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@shopify/typescript-configs/definitions/images.d.ts","../../../node_modules/@shopify/typescript-configs/definitions/styles.d.ts","../src/api.ts","../../../node_modules/@remote-ui/types/build/ts/index.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/types.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/endpoint.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/encoding/basic.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/encoding/index.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/adaptors/iframe-parent.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/adaptors/iframe-child.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/adaptors/message-port.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/adaptors/web-worker.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/adaptors/index.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/memory.d.ts","../../../node_modules/@remote-ui/rpc/build/ts/index.d.ts","../../../node_modules/@remote-ui/core/build/ts/component.d.ts","../../../node_modules/@remote-ui/core/build/ts/types.d.ts","../../../node_modules/@remote-ui/core/build/ts/root.d.ts","../../../node_modules/@remote-ui/core/build/ts/receiver.d.ts","../../../node_modules/@remote-ui/core/build/ts/utilities.d.ts","../../../node_modules/@remote-ui/core/build/ts/index.d.ts","../src/extension.ts","../src/index.ts","../src/surfaces/checkout/api/shared.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/types.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/endpoint.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/encoding/basic.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/encoding/index.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/adaptors/iframe-parent.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/adaptors/iframe-child.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/adaptors/message-port.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/adaptors/web-worker.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/adaptors/index.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/memory.d.ts","../../../node_modules/@remote-ui/async-subscription/node_modules/@remote-ui/rpc/build/ts/index.d.ts","../../../node_modules/@remote-ui/async-subscription/build/ts/types.d.ts","../../../node_modules/@remote-ui/async-subscription/build/ts/stateful.d.ts","../../../node_modules/@remote-ui/async-subscription/build/ts/create.d.ts","../../../node_modules/@remote-ui/async-subscription/build/ts/index.d.ts","../src/surfaces/checkout/style/memoize.ts","../src/surfaces/checkout/style/types.ts","../src/surfaces/checkout/style/isEqual.ts","../src/surfaces/checkout/style/style.ts","../src/surfaces/checkout/style.ts","../src/surfaces/checkout/components/shared.ts","../src/surfaces/checkout/components/Banner/Banner.ts","../src/surfaces/checkout/components/Grid/Grid.ts","../src/surfaces/checkout/components/BlockLayout/BlockLayout.ts","../src/surfaces/checkout/components/BlockSpacer/BlockSpacer.ts","../src/surfaces/checkout/components/BlockStack/BlockStack.ts","../src/surfaces/checkout/components/Button/Button.ts","../src/surfaces/checkout/components/Checkbox/Checkbox.ts","../src/surfaces/checkout/components/Choice/Choice.ts","../src/surfaces/checkout/components/ChoiceList/ChoiceList.ts","../src/surfaces/checkout/components/Divider/Divider.ts","../src/surfaces/checkout/components/Form/Form.ts","../src/surfaces/checkout/components/GridItem/GridItem.ts","../src/surfaces/checkout/components/Heading/Heading.ts","../src/surfaces/checkout/components/HeadingGroup/HeadingGroup.ts","../src/surfaces/checkout/components/Icon/Icon.ts","../src/surfaces/checkout/components/Image/Image.ts","../src/surfaces/checkout/components/InlineLayout/InlineLayout.ts","../src/surfaces/checkout/components/InlineStack/InlineStack.ts","../src/surfaces/checkout/components/InlineSpacer/InlineSpacer.ts","../src/surfaces/checkout/components/Link/Link.ts","../src/surfaces/checkout/components/List/List.ts","../src/surfaces/checkout/components/ListItem/ListItem.ts","../src/surfaces/checkout/components/TextField/TextField.ts","../src/surfaces/checkout/components/PhoneField/PhoneField.ts","../src/surfaces/checkout/components/View/View.ts","../src/surfaces/checkout/components/Pressable/Pressable.ts","../src/surfaces/checkout/components/ScrollView/ScrollView.ts","../src/surfaces/checkout/components/Select/Select.ts","../src/surfaces/checkout/components/SkeletonImage/SkeletonImage.ts","../src/surfaces/checkout/components/Text/Text.ts","../src/surfaces/checkout/components/SkeletonText/SkeletonText.ts","../src/surfaces/checkout/components/TextBlock/TextBlock.ts","../src/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.ts","../src/surfaces/checkout/components/Spinner/Spinner.ts","../src/surfaces/checkout/components/Stepper/Stepper.ts","../src/surfaces/checkout/components/Tag/Tag.ts","../src/surfaces/checkout/components/Tooltip/Tooltip.ts","../src/surfaces/checkout/components.ts","../src/surfaces/checkout/shared.ts","../src/surfaces/checkout/extension-points.ts","../src/surfaces/checkout/api/standard/standard.ts","../src/surfaces/checkout/api/cart-line-details/render-after.ts","../src/surfaces/checkout/api.ts","../src/utilities/registration.ts","../src/surfaces/checkout/extension.ts","../src/surfaces/checkout/globals.ts","../src/surfaces/checkout.ts","../src/surfaces/checkout/style/isEqual.test.ts","../src/surfaces/checkout/style/style.test.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/faker/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/ts3.4/base.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/ci-info/index.d.ts","../../../node_modules/@types/is-ci/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-reconciler/index.d.ts","../../../node_modules/@types/react-test-renderer/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/signal-exit/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"d3f4771304b6b07e5a2bb992e75af76ac060de78803b1b21f0475ffc5654d817","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"63ac278b7f6b6d0b24831213ee3440928f3358205020fdc43a9b326aff43e8f8","7c4fe4650805a84da6af58eee9846c9b34f88944e742e88481c737f8218257d7",{"version":"b0a3a449f9e3871e6ba1a33b7943a838574c2720c6780ed5785387df65e94631","signature":"ad7e13c88f666189be36c0e4e776f4b3bf1829e636a0962aad310989b7ce55f3"},"0ee93fa65eb328866bb42aea6d43dc65de237e4adf11761d35f91b2a12d91312","569784db89e27e3ddf602da08f7ba794f4453ae8891e356504b173d66121d5da","86259bf1f3de2dfa14a6f612584ed13441044bd9f17b31ab52d9c7b21b803773","786076724ab5c1b300ec957334787cf3286f6f81a5ca3032c89a6df65571b902","42a497fcfff2665e4bdc4abed4258080eeae81b556beef9aa6759b2004b76912","b27d57bbfcbdbecf7de998710def8b7f0088ade759c0cef4b193ba443b7d196f","0eaef20b785b090f632ee2aa27c7d7025f6e76c19f742c9aaec2a1295370bfb7","0b24d71cb47597b658bb4d6cf40dcb98353f8ea01800f1baffef5f65b8feb7d2","566080b3c8e3d632e7767f9a89ea2e83055e114d687736114424905df2f8a8d0","a693d7521961527acad78c3ae22ada49beb1d7f98a1f8c34dc29640b494f3b48","8a9299e6ef7e85e11f7abc5f6f08be6e2bcd8f6438be66a3693c366128a94161","2b0f366693f607924db5a53aea65c12674beddcee851b1ccdceb9a10869d4443","0141123bedf253072e1b763712d4edb2e6627c8008f0ec4a0eb4592c03e288c7","315b51771c8fabcd512596cf4f49957cdca9e153b70be20588db86cbc7ca4dc9","ce4a883f6aa5b4add93bb2aadc440a7d9e37024cb0da05fc143045dd7ae8d27a","658a30b930ed6e9803935d7ed40d3238fa1e45a4790a832e9c7c0109756e1fb1","635a5a493dab1554de480a93d3c1124b73fac96da29ab1284c9ebf250c6f3f7c","c88b70720da5c603d27306daa1b31c932cc4ebbd85c024e11a4398b9d19500f9",{"version":"541b352443e9444558d7fdbc206eec4e921d846d5f197b73e88e544d9d21a736","signature":"0c79af5c1743768b3a97503d72a1da83aa2b9bb5e5bcd461a0e869912832f9dd"},"cddc57e8d9c39b74c17bcfdc497a4fe2307d212bb72622a6c045820a3e3bfbd0",{"version":"71e14e94736c6a4ca6ec88067d569da74dcec2501674d3e778334b0f49d5795f","signature":"fe6e305716c7cb6977ff39e357cbc5b479bd7a33547553e6ec21bbe8bea9c6ae"},"569784db89e27e3ddf602da08f7ba794f4453ae8891e356504b173d66121d5da","86259bf1f3de2dfa14a6f612584ed13441044bd9f17b31ab52d9c7b21b803773","786076724ab5c1b300ec957334787cf3286f6f81a5ca3032c89a6df65571b902","42a497fcfff2665e4bdc4abed4258080eeae81b556beef9aa6759b2004b76912","b27d57bbfcbdbecf7de998710def8b7f0088ade759c0cef4b193ba443b7d196f","0eaef20b785b090f632ee2aa27c7d7025f6e76c19f742c9aaec2a1295370bfb7","0b24d71cb47597b658bb4d6cf40dcb98353f8ea01800f1baffef5f65b8feb7d2","566080b3c8e3d632e7767f9a89ea2e83055e114d687736114424905df2f8a8d0","a693d7521961527acad78c3ae22ada49beb1d7f98a1f8c34dc29640b494f3b48","8a9299e6ef7e85e11f7abc5f6f08be6e2bcd8f6438be66a3693c366128a94161","2b0f366693f607924db5a53aea65c12674beddcee851b1ccdceb9a10869d4443","6de07f689f1f1e1640a4831a61b04e012beaf6e392f96142e9be2ac489323b52","168db0514bd8e9d6bce319ded21a9cddc2d076f5fe81847a10190791d6ddd0fe","2b1a891a0e5d30ad095fd1f8b2337ce91fc3ed584c0626c7fa706aaeac436f2f","f6aff7ff75ee5b2ffd51be908092b8a5f3c529fc86d73f435a618a79c3769743",{"version":"1e7fe61b498b84cf492a38c39336cec085c00eace7d6db919ed2d705b8e9306a","signature":"d4ed843711ce53d225644ba4c1957b5a6944a65bedf2357f8c8c65ed9abba94d"},{"version":"e1d123f3241e5a84ef47428099736a9b680899d36b019cc241f0eab6cda2f034","signature":"5e035e71ef4a16881fb4203be39c77098b97586ef723526eb48c39d0c64694c5"},{"version":"c568e63b83a74cc817e449a50ba5314574325f675410b66118a8737e8d3f67a4","signature":"823b5924e011b61ecbc28ee4db94cc5ab8c2aa1167a2e54db13e25041b13e50a"},{"version":"949edf9715181dd5f26b4a87e1be2b8fd12bbb34548290c5d3ce580b5ec74f36","signature":"afde3a45875c74085bc8a3677b98455330813c97912e29d33647dcb30928b7a9"},{"version":"b95b7e3aeddc020eaa562fd74d709173e234c858c0872e6bde2f81b59b207c18","signature":"4d5389c98e06d987cd1a1daa0a5c5793820009bb2f1fc3a55294f4cc261f7f0d"},{"version":"febee127fe1fd92bcb4c1ecde526c8d84c5af4d9fcd3db3543f0238f3867e66d","signature":"a4bf799ebbaf270c53e4da8062f61ede50b8d28ad9811862ef30fd4306645cbc"},{"version":"7d1639ecb974c24a9e9f4bb699ff388d1906048470db7fa2136d5690e0bfcdd0","signature":"5b31eee1059538ce0c56be40cfa023f58b84af03651deca33676dc15b94214ac"},{"version":"4265e85938523d0e8e74d811dbf190a72e6fcf97c60830acc98ed51b79f8c928","signature":"644dd2fcd6a06f9389e0b50fbb3f2597f26a080f3b2ccb2c7cb7b45c564146d5"},{"version":"678796045652b4c0aeb22dc99d31fc5479fde282057d47ec8081eeeb14e2aef7","signature":"ec0d1bac8cad9d353b8869abb9a9f0af8dc5cadf406c609b7557a526fa484110"},{"version":"5848c636651351dbf5cb825c1fc45866422c03443bba24ac56435603ef2be097","signature":"a71eea611f95d47b60a7df0326efbaff523f941bd2c6bfa8bf9d3ef80eed4521"},{"version":"20d420cd8cc36480b878b50bac6d01fbe49645de381eac2274d67d686835dca7","signature":"032684bee1a306eaf7bf72cf4b1a70cb056180e8183ec8813090f4486b4e21cf"},{"version":"7200cbd24a5cda18d3a2b08976e5f1a57a39da7805473a184f60d25d1142fc1c","signature":"0f153fefeae7ed8cbdba5894e02064d49cc572c00563685a57d64798e03913e7"},{"version":"4b62ff887af0fabb0c878c193829e710e5983438ea492871616fb9e6f281c6d4","signature":"18b737b441e11c9070deccbcc0b5f1bc4ca07cfb7ebba0590625748f196d626e"},{"version":"78d0fb530bac4fa1ef2876b5fd26866dda5ded08106f9f0b2ea9999dd867b010","signature":"f6f123cd0be6889541b4f78dcc70d8aaf1567cc72a451c15e14df1221b9250f1"},{"version":"7ad41e1eb44f0d56f601c863fbaaf192946eee54a6b34d730a99fa7e922d1730","signature":"d01d03c10e1fb8499a01c5119e94e334ecf5692272aab72ff882a43bd48dd820"},{"version":"bd64fc94fdc9908959253f4cdd42ddebb958625733fabf6567e280d26935e6ec","signature":"11e61de1b561a3c60b2db0c02a0ebca3ad643f5bcc31e8d348a18902fea34666"},{"version":"973a636990e635353e34c1a7b691d9c1cbb634a6f4fd0169d39eac17a1d4b50f","signature":"a9f8598598f7e226a53b2ee5510a4fc1308fb74123a96e5dc5b377593b103389"},{"version":"eb588dc349f57c524e9950f1ca92e0b269b4aabe49f74675352b91a2b961e9f9","signature":"098b662659f1b84e0e8c33112d5a412a37eeca6d93ee9636e023e3330cf40b43"},{"version":"d026cf0aa3e5ad130144cdf536d31e0111ccf7f07cb15cab1587cb4cd85231b8","signature":"b044949e407d3bb9af576d18e35c854f54fe29bdbcf1917ad0e2a01826217c84"},{"version":"ccaa50415621609660fbad97f970e1d7326ef6d60f28d1aab5388158533c38bd","signature":"87c28f9d0892eff6aab3116a27141d5dca41ad6dbf76407de27942dcd99496db"},{"version":"5a1a0a2726bd09572a641a6b06ea824b8d2991d90964f16cb29fd5c592258a63","signature":"da6d358442cbfbb05f620b145df3542c9fc8c9985d29e6478544ad21beaca30d"},{"version":"20957592eb75c320d6c15630b7172f8233ee0684a2a7ec9ecf37e2f29e789cdc","signature":"647420de84eb48fb8c5365d4fa1ec90e03c26183016f9b1e24404dca58eb8edc"},{"version":"103830b422bff5fd188cfd23088170dd9d23eb8a9d5b0524679c71c10a87ebf1","signature":"265766f847b6ccbca5b0fea749778ec399738c2123ac15c717857584544fdb89"},{"version":"4cc7e515b9d9914f48d43c5dc459744e2c43ccf58d088feeb3d7e819d7b953e9","signature":"ce42d5e134d48eb0d73546f485ea1658e333a074f1598d0c22e1d366cf8f8d25"},{"version":"081a10959cf86e5d756b21bb9505200e20f5d52704e995e8d8ad481a2765c75c","signature":"4b792e0bb48e1735fa55a93933ec5faa0912f52a2facdb613add298efa5e8068"},{"version":"b96f47357b2c61ac76ea45f41827ccd31790238b2111a3c69f909c2e88c74a33","signature":"97dfb4c645236945581222fb897b88f23afcbc70dd4aca92a3d57d51d7c78fb3"},{"version":"0c1b40bd3ff093d4dbbce5c61b3d5cc8944ce6f3c2e7f06e20d7bb529968bbe4","signature":"4805d442a11606176ec9e5ec9e870c426d1ca0a0d39aee8116eef84b4b7676c1"},{"version":"41c4bcdc0ad683d07a8047bf1e4f97310b89f5991e4386adf750a7e3981db549","signature":"54e359334221e6d99ea00dbf17e2d4ad7e247d8b477160e4175064fc40f8d31a"},{"version":"8a6b1ea1464b16807d6947c19521234bcdfccbe2e7964f6b5d5ac7292af43fcf","signature":"701142451e09d761146005b614fd7d056110db214c31c16e0a7c99aeda3a0490"},{"version":"e09ca1195c4132c664cd262ab691cbe12b608e069d58d619b4bf6ef1adf3252f","signature":"29d15beec10aea6a55347bb3c36bbd5e08cf8821038265cede48540baec6b906"},{"version":"5ff4ca50f1481d560b409609a1a7eeeb904821acb1bb43d03cb5cfaa2cc869ee","signature":"40ad1f05b30e0d0bac3ed760cbed2aacea17f5bfbd45709989f04273fa4525fa"},{"version":"117c9d5c6c6a7d3e412bde59e3ee763f057ccaf8dfb035c02bef0faf52eb134b","signature":"08025b7c762c77e31bd87c51f63b07f286f30418be88bd19f96996404d61d5a0"},{"version":"d4433c41b0853e638e4b8aee2f5b3212c701d7dbd9c926a5ab0a604154add87e","signature":"4d3cb4b8cddce9422a4112c2ca27a8ba430934058e5b98cf2c33dcbb141a32b1"},{"version":"5981a44093462a7c52b4cb63093344ef5c3841c408387fac1f34ea6f34523209","signature":"fa09fc61156a6fd5ad96b683cf5708dcb2ac140c74b06718fb172bfacaffb272"},{"version":"f680547292564335560041628c0367a7bace028ad80543827037de633e6b0f12","signature":"252d816baa7d8ae6af404c7f66c1927ecbb95e830c0d826e58848f6bace8a2a0"},{"version":"6a3a247106dd2611461d2d43e165b293ef8584355c47f2e98d0a2490a329c876","signature":"0d70428ab8bc761ff0fda20deafda8403fd90f927cad99a28b68343bced0d0e5"},{"version":"1cefabd213fb0df135e72be52f3c204ba6cb7ca2eb6f890ab3de03933fbab89e","signature":"c8128edf8f362bdd6416225cd638287937a00e8c7ca5b591e378571aa193fdad"},{"version":"bf34e469e36cdee413fb2ec72e7db1e121d256cd89dccf777ceaafd7a9fdfe69","signature":"de9ee8b239c5b0a51763407b6ff591fae3c0de8fe4e6e2d9529cb0e82ab254ed"},{"version":"2e315abb397e5258d1590b73009889a0c5a8cc515f50e98dac8a3a24b853bdd4","signature":"33cc43a416d589f25bd6d03b2d841a2ad812106bdd57c054ef0316946243463d"},{"version":"af9e5a01a54796604e43b07fdee18640ebd301d936274eb494eb04bbcc75de71","signature":"d87e732954c96a0d5e6ee7e3fc01ac7c49384acf9012b070debd9dfc42b43540"},{"version":"b0e2d9a1625b5416510cd816ab5e3b7f8939ab215688bfda2a7550e8aa910f80","signature":"e783fce5b834f8ff5f069f8f0cdaabf6497af53b653c68fb4d2b414db5a6aa7f"},{"version":"8b605ad5a246d776314f4f7acbe5fafdfe4f1b9f6fea6f7ea36895a5ccb33efb","signature":"c30fcad25cae85321d87851bc70aa3d0375b28b38bbd153035f2cf574757fca2"},{"version":"9524e0e733c7dd3236c1b67e1aed5d507957c5da3d61bce983dce97c7b51a8a6","signature":"c2e50ce44e66be68861f47337fc20dc9565a20c1bca5c808fdf1c51e8b00650d"},{"version":"99bc403179996c9ad578f4ea664960cb7ec4ec8be155bf7aff72fc7892c99d3e","signature":"e08e342ed08b7a1d5e50af4f21b838b7c386340cb1f0b976466003453a23611f"},{"version":"ef73ea857343e53ceb19121d7181f376243d4458b85971a5ea1b647f0ad27621","signature":"f03827b949446f6b203f1b929ebd01ad82ad49564ab42b150c6e49fcfaf58741"},{"version":"4f5ce66ad343b7274a2942efbd2bff1fb2fe78499652e456436e2f9af4de81da","signature":"12f28070b531f04abfe39ffcbacd27bc19d5c8f7575be17cea4f4fd9449e82af"},{"version":"54a621b729d3c5e795493bc0c0147d8d06b19a33c20e0dbea310e58b7ebb61c2","signature":"7d0765cdd6e27673bae736424fba367e036058312f83e9aa7159da1bcb95f14f"},{"version":"f2d27e8ad8393e41ff54b5e82ccabe39702b63c611b689e5ca3b0f84e7bbe52d","signature":"cae4d2200ccf16267442fc996ef20dd8d237febcb740a690d5d742c91e75199f"},{"version":"c6136ca40df2cd82d2f7e337299be4c51e94e8ccc8f455c0e29f6bab1749a4e6","signature":"1222e1bae900088d3cfcc780a0099da10de20534e495d1a162f7da90a64ffcaa"},{"version":"b40d66bf91b1e163e13c7868dead13d12c8f4ee06e4e246b59d901063d315f27","signature":"1d2272581fe88cd74ccc5d665ac27155186049d6c2be3cf8ae5334b4bec58aeb"},{"version":"0416c5be5ee822dfd243a457c0d8bce98429c98d9b8220d117abe8ae188667ba","signature":"75374bd4107f61be5ad9bc533764321bb83717682460322946c185caaa754440"},{"version":"3e7604c311ae81c9e8c283f7638c080df18d794c9c48e956bb031a2020654ffd","signature":"34c4c2e1ebbc874d99dd43d0dd8e7820260fd2333efd2cbd053523ed1b0a640a","affectsGlobalScope":true},"46cb2c4d32b0110113f2a8cf5a444dacd3e700aaf0dec88ad3345817232db6f7",{"version":"2653fe0a7a2781c897217484a38f9c0c122edce6d7cf18113911d9b7df81fb16","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2c414ad1819ff98b37d55afbc517259e38d6d5976c603f6f721bd65c187f2f05","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"7c6b4c3bbc2c3cebe5cc1364e84a4fd0cbda5fda186c0ba15c2f693f403479d2","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","8a278bfba7b081cd849434c1130655046639ae90617a682436ed6954e2b57403","6da9e714516d081abaa435946d77c8d74dba888530412dc71601e83d2c8a512e","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","a66e700ed470a0cb52d14f3376c1605c70fec8e9659e45f7e22ad07fcd06ae04","946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd",{"version":"35df3991a30c880f5d745f98db7174936ab7e7f527bf6de0d84d602cc6da8683","affectsGlobalScope":true},{"version":"215d8d9a2c480fd460127edc048d68d9931d3b27f95132253a6e71975f060bb1","affectsGlobalScope":true},"c438b413e94ff76dfa20ae005f33a1c84f2480d1d66e0fd687501020d0de9b50","bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152","a4b5411d87995b9fb847f491f4388b38f829d8ab39be3e2fd65a3e40709f29a8","123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",{"version":"eb5197aade83cb0e360ac407289c53a8009e8fdae7939892a0240d30444496b6","affectsGlobalScope":true},"90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720","3d9c3ccc05ebc6e288bef007bcc47a2fc0dce748ea634093ef0732b9be743805","7e050b767ed10c7ffbc01f314defbf420bf0b5d54ce666e1c87507c035dfc191","51f82a7e0819a91c170eb1ad39ad1917a0cbb8f9354fdaed66a5189745f63f71",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"153d835dc32985120790e10102834b0a5bd979bb5e42bfbb33c0ff6260cf03ce","affectsGlobalScope":true},"2e204fb437b8e98937c933cb7e739b24b871872161997d7dfe98841b861a14f0","1c0692002778565d9b3ee0edea6ca133caadd714597228525fec8e2fd9846755","f2f8a385694fd71a421616cbaca477a539f30f4098f11261b1d188d72dc3478a","f15f1f1104aaf47d25124de81949375416e3f8ee704e3d221bea339e35421edb","c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a","6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947","bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665","3c5edfced8c5cd35e3680789deabbe4f478b67a42b26d82d91eea9d3f07f4771","ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34","84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35","4982d94cb6427263c8839d8d6324a8bbe129e931deb61a7380f8fad17ba2cfc0",{"version":"ae4bc1dd4d9de7bbea6ce419db45af82a81358e6014c9e1235b5d252e06f8ab8","affectsGlobalScope":true},"3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c","884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0","6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9","acbed967a379b3e9f73237ba9473f8b337eeea14b7dc64d445430b5d695751da","e7b5a3f40f19d9eea71890c70dfb37ac5dd82cbffe5f95bc8f23c536455732d0","d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457","b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9","01c351e71743ff26450789ec4ca6a1421c647c9c459aa8007e9e1914073b5db2","a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638","3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748","4001971b90f18161f7bd46d68150d32a5da47e3f177956a267a2b29a2771896a","f28704c27e1bd58068052f5407541a3306f0ffc77f068e2891f46527a4569e25","289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953","baf0b82ffc5d2616f44a6fb1f81e8d798545bebf0c30f5d8b003a1dba1acfb3f","c6a5b34f1e725019445754f1e733585f113e0dced75f137bd3c4af5853d3f6ab","15fbe50526244954eb2f933546bca6cdcf0db16c9428d099b3b386c1db5799ab","d44028ae0127eb3e9fcfa5f55a8b81d64775ce15aca1020fe25c511bbb055834",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3","ad1ae5ae98eceb9af99061e83e867b9897d267aebc8f3b938c9424deabadf4bb","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","744e6430bafc6f39f66c4fc1e6a0d8c9551260ffd1782aa7e3f5166ac6aa1f86","8126afccdf4a55b90e010207e6fa74ea47dc0932b4d1347726b92502fe11a2e1","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","cb6cf0480ee1aa9f706db1f6f5add596a1aa10e8c4beb1817f2318384ba684dc","812ce645854c0a7dc3319d5c4f976d7bc76026231435e78e6d3e51407b38477a","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"2421504d4ad8486abdb522b7bcdd4caafbcf4a320cdf7b19e780df258c639d7f","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ca1f4045ec1a501a114d63e2f3f24e2dba00c0cb9030b3109f579d54c1e95d63","affectsGlobalScope":true},"96159492192735e3170a9fcc2bb19486f9366a7c442fc6a699b01d3c02844caf","60aaac5fb1858fbd4c4eb40e01706eb227eed9eca5c665564bd146971280dbd3","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","4d58ff0e00b4e99b967579adf60ac2d5e9315ae142204321b1b3c778e048aa5b","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./ts","rootDir":"../src","skipLibCheck":true,"strict":true,"target":7},"fileIdsList":[[150],[91],[91,92,93],[90],[80],[84,85,86,87],[82],[80,81,83,88,89],[59],[59,70,71,72,73,74,75],[72],[59,72],[60],[64,65,66,67],[62],[60,61,63,68,69],[150,151,152,153,154],[150,153],[170,204],[169,204,206],[209],[211],[212],[217,222],[201,202],[169,170,177,186],[161,169,177],[193],[165,170,178],[186],[167,169,177],[169],[169,171,186,192],[170],[177,186,192],[169,170,172,177,186,189,192],[169,172,189,192],[203],[192],[167,169,186],[159],[191],[169,186],[184,193,195],[165,167,177,186],[158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197],[198,199,200],[177],[183],[169,171,186,192,195],[233],[229,230,231,232],[204],[241],[215,218],[215,218,219,220],[217],[214,221],[216],[76],[58,77],[99,138,139,140,143,145,146],[79,141,142],[94,141],[58,79,94,140],[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137],[76,100],[76,99,100,102],[76,99,100],[76,123],[76,99,100,125],[76,99],[76,100,130],[76,132],[76,115,123],[76,115],[76,100,115],[77,139,143],[77,140,144],[140],[76,138],[96,98],[97],[98],[95,96,97],[100],[99,100,102],[99,100],[123],[99,100,125],[99],[100,130],[132],[115,123],[115],[96]],"referencedMap":[[153,1],[93,2],[94,3],[92,2],[91,4],[85,5],[84,5],[88,6],[86,5],[87,5],[82,5],[83,7],[81,5],[90,8],[89,5],[71,9],[76,10],[74,11],[73,12],[72,9],[75,12],[65,13],[64,13],[68,14],[66,13],[67,13],[62,13],[63,15],[61,13],[70,16],[69,13],[155,17],[151,1],[154,18],[152,1],[205,19],[207,20],[208,19],[210,21],[212,22],[213,23],[223,24],[203,25],[161,26],[162,27],[163,28],[164,29],[165,30],[166,31],[168,32],[169,32],[170,33],[171,34],[172,35],[173,36],[174,37],[204,38],[175,32],[176,39],[177,40],[180,41],[181,42],[184,43],[185,44],[186,32],[189,45],[198,46],[201,47],[191,48],[192,49],[194,30],[196,50],[197,30],[234,51],[235,51],[233,52],[236,53],[242,54],[219,55],[221,56],[220,55],[218,57],[222,58],[217,59],[77,60],[78,61],[147,62],[143,63],[142,64],[141,65],[138,66],[101,67],[103,68],[104,69],[105,69],[106,67],[107,60],[108,60],[109,60],[110,67],[111,60],[102,69],[112,69],[113,67],[114,60],[115,67],[116,69],[117,68],[119,69],[118,69],[120,67],[121,69],[122,60],[124,70],[126,71],[127,67],[128,67],[129,72],[131,73],[133,74],[134,67],[135,75],[136,76],[130,67],[132,67],[123,77],[137,60],[125,69],[100,72],[140,78],[145,79],[146,80],[139,81],[99,82],[148,83],[149,84],[98,85]],"exportedModulesMap":[[153,1],[93,2],[94,3],[92,2],[91,4],[85,5],[84,5],[88,6],[86,5],[87,5],[82,5],[83,7],[81,5],[90,8],[89,5],[71,9],[76,10],[74,11],[73,12],[72,9],[75,12],[65,13],[64,13],[68,14],[66,13],[67,13],[62,13],[63,15],[61,13],[70,16],[69,13],[155,17],[151,1],[154,18],[152,1],[205,19],[207,20],[208,19],[210,21],[212,22],[213,23],[223,24],[203,25],[161,26],[162,27],[163,28],[164,29],[165,30],[166,31],[168,32],[169,32],[170,33],[171,34],[172,35],[173,36],[174,37],[204,38],[175,32],[176,39],[177,40],[180,41],[181,42],[184,43],[185,44],[186,32],[189,45],[198,46],[201,47],[191,48],[192,49],[194,30],[196,50],[197,30],[234,51],[235,51],[233,52],[236,53],[242,54],[219,55],[221,56],[220,55],[218,57],[222,58],[217,59],[77,60],[78,61],[147,62],[143,63],[142,64],[141,65],[138,66],[101,86],[103,87],[104,88],[105,88],[106,86],[110,86],[102,88],[112,88],[113,86],[115,86],[116,88],[117,87],[119,88],[118,88],[120,86],[121,88],[124,89],[126,90],[127,86],[128,86],[129,91],[131,92],[133,93],[134,86],[135,94],[136,95],[130,86],[132,86],[123,77],[125,88],[100,72],[140,78],[145,79],[146,80],[139,81],[99,82],[98,96]],"semanticDiagnosticsPerFile":[153,150,93,94,92,91,85,84,88,86,87,82,83,81,90,89,80,71,76,74,73,72,75,65,64,68,66,67,62,63,61,70,69,60,59,56,57,155,151,154,152,156,157,205,207,208,210,211,212,213,223,224,225,206,226,202,159,203,160,161,162,163,164,165,166,167,168,169,170,171,158,199,172,173,174,204,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,198,201,191,192,193,194,195,200,196,197,227,228,229,234,235,230,233,236,237,232,238,239,240,241,242,214,209,231,215,219,221,220,218,222,217,216,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,11,58,77,78,147,143,142,79,141,138,101,103,104,105,106,107,108,109,110,111,102,112,113,114,115,116,117,119,118,120,121,122,124,126,127,128,129,131,133,134,135,136,130,132,123,137,125,100,140,145,146,139,99,148,97,95,149,98,96,144],"latestChangedDtsFile":"./ts/surfaces/checkout/style/style.test.d.ts"},"version":"4.9.3"}
|
package/checkout.esnext
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./build/esnext/surfaces/checkout.esnext";
|
package/checkout.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("./build/cjs/surfaces/checkout.js");
|
package/checkout.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./build/esm/surfaces/checkout.mjs";
|