@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.
Files changed (412) hide show
  1. package/README.md +42 -0
  2. package/build/cjs/index.js +2 -0
  3. package/build/cjs/surfaces/checkout/components/Banner/Banner.js +12 -0
  4. package/build/cjs/surfaces/checkout/components/BlockLayout/BlockLayout.js +14 -0
  5. package/build/cjs/surfaces/checkout/components/BlockSpacer/BlockSpacer.js +15 -0
  6. package/build/cjs/surfaces/checkout/components/BlockStack/BlockStack.js +12 -0
  7. package/build/cjs/surfaces/checkout/components/Button/Button.js +12 -0
  8. package/build/cjs/surfaces/checkout/components/Checkbox/Checkbox.js +12 -0
  9. package/build/cjs/surfaces/checkout/components/Choice/Choice.js +13 -0
  10. package/build/cjs/surfaces/checkout/components/ChoiceList/ChoiceList.js +13 -0
  11. package/build/cjs/surfaces/checkout/components/Divider/Divider.js +12 -0
  12. package/build/cjs/surfaces/checkout/components/Form/Form.js +20 -0
  13. package/build/cjs/surfaces/checkout/components/Grid/Grid.js +12 -0
  14. package/build/cjs/surfaces/checkout/components/GridItem/GridItem.js +14 -0
  15. package/build/cjs/surfaces/checkout/components/Heading/Heading.js +17 -0
  16. package/build/cjs/surfaces/checkout/components/HeadingGroup/HeadingGroup.js +16 -0
  17. package/build/cjs/surfaces/checkout/components/Icon/Icon.js +13 -0
  18. package/build/cjs/surfaces/checkout/components/Image/Image.js +12 -0
  19. package/build/cjs/surfaces/checkout/components/InlineLayout/InlineLayout.js +16 -0
  20. package/build/cjs/surfaces/checkout/components/InlineSpacer/InlineSpacer.js +15 -0
  21. package/build/cjs/surfaces/checkout/components/InlineStack/InlineStack.js +12 -0
  22. package/build/cjs/surfaces/checkout/components/Link/Link.js +12 -0
  23. package/build/cjs/surfaces/checkout/components/List/List.js +12 -0
  24. package/build/cjs/surfaces/checkout/components/ListItem/ListItem.js +14 -0
  25. package/build/cjs/surfaces/checkout/components/PhoneField/PhoneField.js +17 -0
  26. package/build/cjs/surfaces/checkout/components/Pressable/Pressable.js +14 -0
  27. package/build/cjs/surfaces/checkout/components/ScrollView/ScrollView.js +13 -0
  28. package/build/cjs/surfaces/checkout/components/Select/Select.js +13 -0
  29. package/build/cjs/surfaces/checkout/components/SkeletonImage/SkeletonImage.js +12 -0
  30. package/build/cjs/surfaces/checkout/components/SkeletonText/SkeletonText.js +12 -0
  31. package/build/cjs/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.js +12 -0
  32. package/build/cjs/surfaces/checkout/components/Spinner/Spinner.js +13 -0
  33. package/build/cjs/surfaces/checkout/components/Stepper/Stepper.js +12 -0
  34. package/build/cjs/surfaces/checkout/components/Tag/Tag.js +12 -0
  35. package/build/cjs/surfaces/checkout/components/Text/Text.js +13 -0
  36. package/build/cjs/surfaces/checkout/components/TextBlock/TextBlock.js +12 -0
  37. package/build/cjs/surfaces/checkout/components/TextField/TextField.js +12 -0
  38. package/build/cjs/surfaces/checkout/components/Tooltip/Tooltip.js +17 -0
  39. package/build/cjs/surfaces/checkout/components/View/View.js +17 -0
  40. package/build/cjs/surfaces/checkout/extension.js +11 -0
  41. package/build/cjs/surfaces/checkout/style/isEqual.js +29 -0
  42. package/build/cjs/surfaces/checkout/style/memoize.js +139 -0
  43. package/build/cjs/surfaces/checkout/style/style.js +74 -0
  44. package/build/cjs/surfaces/checkout.js +88 -0
  45. package/build/cjs/utilities/registration.js +21 -0
  46. package/build/esm/index.mjs +1 -0
  47. package/build/esm/surfaces/checkout/components/Banner/Banner.mjs +8 -0
  48. package/build/esm/surfaces/checkout/components/BlockLayout/BlockLayout.mjs +10 -0
  49. package/build/esm/surfaces/checkout/components/BlockSpacer/BlockSpacer.mjs +11 -0
  50. package/build/esm/surfaces/checkout/components/BlockStack/BlockStack.mjs +8 -0
  51. package/build/esm/surfaces/checkout/components/Button/Button.mjs +8 -0
  52. package/build/esm/surfaces/checkout/components/Checkbox/Checkbox.mjs +8 -0
  53. package/build/esm/surfaces/checkout/components/Choice/Choice.mjs +9 -0
  54. package/build/esm/surfaces/checkout/components/ChoiceList/ChoiceList.mjs +9 -0
  55. package/build/esm/surfaces/checkout/components/Divider/Divider.mjs +8 -0
  56. package/build/esm/surfaces/checkout/components/Form/Form.mjs +16 -0
  57. package/build/esm/surfaces/checkout/components/Grid/Grid.mjs +8 -0
  58. package/build/esm/surfaces/checkout/components/GridItem/GridItem.mjs +10 -0
  59. package/build/esm/surfaces/checkout/components/Heading/Heading.mjs +13 -0
  60. package/build/esm/surfaces/checkout/components/HeadingGroup/HeadingGroup.mjs +12 -0
  61. package/build/esm/surfaces/checkout/components/Icon/Icon.mjs +9 -0
  62. package/build/esm/surfaces/checkout/components/Image/Image.mjs +8 -0
  63. package/build/esm/surfaces/checkout/components/InlineLayout/InlineLayout.mjs +12 -0
  64. package/build/esm/surfaces/checkout/components/InlineSpacer/InlineSpacer.mjs +11 -0
  65. package/build/esm/surfaces/checkout/components/InlineStack/InlineStack.mjs +8 -0
  66. package/build/esm/surfaces/checkout/components/Link/Link.mjs +8 -0
  67. package/build/esm/surfaces/checkout/components/List/List.mjs +8 -0
  68. package/build/esm/surfaces/checkout/components/ListItem/ListItem.mjs +10 -0
  69. package/build/esm/surfaces/checkout/components/PhoneField/PhoneField.mjs +13 -0
  70. package/build/esm/surfaces/checkout/components/Pressable/Pressable.mjs +10 -0
  71. package/build/esm/surfaces/checkout/components/ScrollView/ScrollView.mjs +9 -0
  72. package/build/esm/surfaces/checkout/components/Select/Select.mjs +9 -0
  73. package/build/esm/surfaces/checkout/components/SkeletonImage/SkeletonImage.mjs +8 -0
  74. package/build/esm/surfaces/checkout/components/SkeletonText/SkeletonText.mjs +8 -0
  75. package/build/esm/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.mjs +8 -0
  76. package/build/esm/surfaces/checkout/components/Spinner/Spinner.mjs +9 -0
  77. package/build/esm/surfaces/checkout/components/Stepper/Stepper.mjs +8 -0
  78. package/build/esm/surfaces/checkout/components/Tag/Tag.mjs +8 -0
  79. package/build/esm/surfaces/checkout/components/Text/Text.mjs +9 -0
  80. package/build/esm/surfaces/checkout/components/TextBlock/TextBlock.mjs +8 -0
  81. package/build/esm/surfaces/checkout/components/TextField/TextField.mjs +8 -0
  82. package/build/esm/surfaces/checkout/components/Tooltip/Tooltip.mjs +13 -0
  83. package/build/esm/surfaces/checkout/components/View/View.mjs +13 -0
  84. package/build/esm/surfaces/checkout/extension.mjs +6 -0
  85. package/build/esm/surfaces/checkout/style/isEqual.mjs +25 -0
  86. package/build/esm/surfaces/checkout/style/memoize.mjs +133 -0
  87. package/build/esm/surfaces/checkout/style/style.mjs +68 -0
  88. package/build/esm/surfaces/checkout.mjs +39 -0
  89. package/build/esm/utilities/registration.mjs +17 -0
  90. package/build/esnext/index.esnext +1 -0
  91. package/build/esnext/surfaces/checkout/components/Banner/Banner.esnext +8 -0
  92. package/build/esnext/surfaces/checkout/components/BlockLayout/BlockLayout.esnext +10 -0
  93. package/build/esnext/surfaces/checkout/components/BlockSpacer/BlockSpacer.esnext +11 -0
  94. package/build/esnext/surfaces/checkout/components/BlockStack/BlockStack.esnext +8 -0
  95. package/build/esnext/surfaces/checkout/components/Button/Button.esnext +8 -0
  96. package/build/esnext/surfaces/checkout/components/Checkbox/Checkbox.esnext +8 -0
  97. package/build/esnext/surfaces/checkout/components/Choice/Choice.esnext +9 -0
  98. package/build/esnext/surfaces/checkout/components/ChoiceList/ChoiceList.esnext +9 -0
  99. package/build/esnext/surfaces/checkout/components/Divider/Divider.esnext +8 -0
  100. package/build/esnext/surfaces/checkout/components/Form/Form.esnext +16 -0
  101. package/build/esnext/surfaces/checkout/components/Grid/Grid.esnext +8 -0
  102. package/build/esnext/surfaces/checkout/components/GridItem/GridItem.esnext +10 -0
  103. package/build/esnext/surfaces/checkout/components/Heading/Heading.esnext +13 -0
  104. package/build/esnext/surfaces/checkout/components/HeadingGroup/HeadingGroup.esnext +12 -0
  105. package/build/esnext/surfaces/checkout/components/Icon/Icon.esnext +9 -0
  106. package/build/esnext/surfaces/checkout/components/Image/Image.esnext +8 -0
  107. package/build/esnext/surfaces/checkout/components/InlineLayout/InlineLayout.esnext +12 -0
  108. package/build/esnext/surfaces/checkout/components/InlineSpacer/InlineSpacer.esnext +11 -0
  109. package/build/esnext/surfaces/checkout/components/InlineStack/InlineStack.esnext +8 -0
  110. package/build/esnext/surfaces/checkout/components/Link/Link.esnext +8 -0
  111. package/build/esnext/surfaces/checkout/components/List/List.esnext +8 -0
  112. package/build/esnext/surfaces/checkout/components/ListItem/ListItem.esnext +10 -0
  113. package/build/esnext/surfaces/checkout/components/PhoneField/PhoneField.esnext +13 -0
  114. package/build/esnext/surfaces/checkout/components/Pressable/Pressable.esnext +10 -0
  115. package/build/esnext/surfaces/checkout/components/ScrollView/ScrollView.esnext +9 -0
  116. package/build/esnext/surfaces/checkout/components/Select/Select.esnext +9 -0
  117. package/build/esnext/surfaces/checkout/components/SkeletonImage/SkeletonImage.esnext +8 -0
  118. package/build/esnext/surfaces/checkout/components/SkeletonText/SkeletonText.esnext +8 -0
  119. package/build/esnext/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.esnext +8 -0
  120. package/build/esnext/surfaces/checkout/components/Spinner/Spinner.esnext +9 -0
  121. package/build/esnext/surfaces/checkout/components/Stepper/Stepper.esnext +8 -0
  122. package/build/esnext/surfaces/checkout/components/Tag/Tag.esnext +8 -0
  123. package/build/esnext/surfaces/checkout/components/Text/Text.esnext +9 -0
  124. package/build/esnext/surfaces/checkout/components/TextBlock/TextBlock.esnext +8 -0
  125. package/build/esnext/surfaces/checkout/components/TextField/TextField.esnext +8 -0
  126. package/build/esnext/surfaces/checkout/components/Tooltip/Tooltip.esnext +13 -0
  127. package/build/esnext/surfaces/checkout/components/View/View.esnext +13 -0
  128. package/build/esnext/surfaces/checkout/extension.esnext +6 -0
  129. package/build/esnext/surfaces/checkout/style/isEqual.esnext +25 -0
  130. package/build/esnext/surfaces/checkout/style/memoize.esnext +133 -0
  131. package/build/esnext/surfaces/checkout/style/style.esnext +68 -0
  132. package/build/esnext/surfaces/checkout.esnext +39 -0
  133. package/build/esnext/utilities/registration.esnext +17 -0
  134. package/build/ts/api.d.ts +4 -0
  135. package/build/ts/api.d.ts.map +1 -0
  136. package/build/ts/extension.d.ts +8 -0
  137. package/build/ts/extension.d.ts.map +1 -0
  138. package/build/ts/index.d.ts +4 -0
  139. package/build/ts/index.d.ts.map +1 -0
  140. package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts +9 -0
  141. package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts.map +1 -0
  142. package/build/ts/surfaces/checkout/api/shared.d.ts +5 -0
  143. package/build/ts/surfaces/checkout/api/shared.d.ts.map +1 -0
  144. package/build/ts/surfaces/checkout/api/standard/standard.d.ts +1122 -0
  145. package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -0
  146. package/build/ts/surfaces/checkout/api.d.ts +4 -0
  147. package/build/ts/surfaces/checkout/api.d.ts.map +1 -0
  148. package/build/ts/surfaces/checkout/components/Banner/Banner.d.ts +38 -0
  149. package/build/ts/surfaces/checkout/components/Banner/Banner.d.ts.map +1 -0
  150. package/build/ts/surfaces/checkout/components/BlockLayout/BlockLayout.d.ts +41 -0
  151. package/build/ts/surfaces/checkout/components/BlockLayout/BlockLayout.d.ts.map +1 -0
  152. package/build/ts/surfaces/checkout/components/BlockSpacer/BlockSpacer.d.ts +22 -0
  153. package/build/ts/surfaces/checkout/components/BlockSpacer/BlockSpacer.d.ts.map +1 -0
  154. package/build/ts/surfaces/checkout/components/BlockStack/BlockStack.d.ts +42 -0
  155. package/build/ts/surfaces/checkout/components/BlockStack/BlockStack.d.ts.map +1 -0
  156. package/build/ts/surfaces/checkout/components/Button/Button.d.ts +83 -0
  157. package/build/ts/surfaces/checkout/components/Button/Button.d.ts.map +1 -0
  158. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.d.ts +59 -0
  159. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.d.ts.map +1 -0
  160. package/build/ts/surfaces/checkout/components/Choice/Choice.d.ts +27 -0
  161. package/build/ts/surfaces/checkout/components/Choice/Choice.d.ts.map +1 -0
  162. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.d.ts +32 -0
  163. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.d.ts.map +1 -0
  164. package/build/ts/surfaces/checkout/components/Divider/Divider.d.ts +30 -0
  165. package/build/ts/surfaces/checkout/components/Divider/Divider.d.ts.map +1 -0
  166. package/build/ts/surfaces/checkout/components/Form/Form.d.ts +32 -0
  167. package/build/ts/surfaces/checkout/components/Form/Form.d.ts.map +1 -0
  168. package/build/ts/surfaces/checkout/components/Grid/Grid.d.ts +95 -0
  169. package/build/ts/surfaces/checkout/components/Grid/Grid.d.ts.map +1 -0
  170. package/build/ts/surfaces/checkout/components/GridItem/GridItem.d.ts +36 -0
  171. package/build/ts/surfaces/checkout/components/GridItem/GridItem.d.ts.map +1 -0
  172. package/build/ts/surfaces/checkout/components/Heading/Heading.d.ts +43 -0
  173. package/build/ts/surfaces/checkout/components/Heading/Heading.d.ts.map +1 -0
  174. package/build/ts/surfaces/checkout/components/HeadingGroup/HeadingGroup.d.ts +15 -0
  175. package/build/ts/surfaces/checkout/components/HeadingGroup/HeadingGroup.d.ts.map +1 -0
  176. package/build/ts/surfaces/checkout/components/Icon/Icon.d.ts +38 -0
  177. package/build/ts/surfaces/checkout/components/Icon/Icon.d.ts.map +1 -0
  178. package/build/ts/surfaces/checkout/components/Image/Image.d.ts +73 -0
  179. package/build/ts/surfaces/checkout/components/Image/Image.d.ts.map +1 -0
  180. package/build/ts/surfaces/checkout/components/InlineLayout/InlineLayout.d.ts +43 -0
  181. package/build/ts/surfaces/checkout/components/InlineLayout/InlineLayout.d.ts.map +1 -0
  182. package/build/ts/surfaces/checkout/components/InlineSpacer/InlineSpacer.d.ts +22 -0
  183. package/build/ts/surfaces/checkout/components/InlineSpacer/InlineSpacer.d.ts.map +1 -0
  184. package/build/ts/surfaces/checkout/components/InlineStack/InlineStack.d.ts +50 -0
  185. package/build/ts/surfaces/checkout/components/InlineStack/InlineStack.d.ts.map +1 -0
  186. package/build/ts/surfaces/checkout/components/Link/Link.d.ts +50 -0
  187. package/build/ts/surfaces/checkout/components/Link/Link.d.ts.map +1 -0
  188. package/build/ts/surfaces/checkout/components/List/List.d.ts +32 -0
  189. package/build/ts/surfaces/checkout/components/List/List.d.ts.map +1 -0
  190. package/build/ts/surfaces/checkout/components/ListItem/ListItem.d.ts +13 -0
  191. package/build/ts/surfaces/checkout/components/ListItem/ListItem.d.ts.map +1 -0
  192. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.d.ts +58 -0
  193. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.d.ts.map +1 -0
  194. package/build/ts/surfaces/checkout/components/Pressable/Pressable.d.ts +96 -0
  195. package/build/ts/surfaces/checkout/components/Pressable/Pressable.d.ts.map +1 -0
  196. package/build/ts/surfaces/checkout/components/ScrollView/ScrollView.d.ts +75 -0
  197. package/build/ts/surfaces/checkout/components/ScrollView/ScrollView.d.ts.map +1 -0
  198. package/build/ts/surfaces/checkout/components/Select/Select.d.ts +98 -0
  199. package/build/ts/surfaces/checkout/components/Select/Select.d.ts.map +1 -0
  200. package/build/ts/surfaces/checkout/components/SkeletonImage/SkeletonImage.d.ts +25 -0
  201. package/build/ts/surfaces/checkout/components/SkeletonImage/SkeletonImage.d.ts.map +1 -0
  202. package/build/ts/surfaces/checkout/components/SkeletonText/SkeletonText.d.ts +21 -0
  203. package/build/ts/surfaces/checkout/components/SkeletonText/SkeletonText.d.ts.map +1 -0
  204. package/build/ts/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.d.ts +22 -0
  205. package/build/ts/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.d.ts.map +1 -0
  206. package/build/ts/surfaces/checkout/components/Spinner/Spinner.d.ts +32 -0
  207. package/build/ts/surfaces/checkout/components/Spinner/Spinner.d.ts.map +1 -0
  208. package/build/ts/surfaces/checkout/components/Stepper/Stepper.d.ts +42 -0
  209. package/build/ts/surfaces/checkout/components/Stepper/Stepper.d.ts.map +1 -0
  210. package/build/ts/surfaces/checkout/components/Tag/Tag.d.ts +31 -0
  211. package/build/ts/surfaces/checkout/components/Tag/Tag.d.ts.map +1 -0
  212. package/build/ts/surfaces/checkout/components/Text/Text.d.ts +34 -0
  213. package/build/ts/surfaces/checkout/components/Text/Text.d.ts.map +1 -0
  214. package/build/ts/surfaces/checkout/components/TextBlock/TextBlock.d.ts +32 -0
  215. package/build/ts/surfaces/checkout/components/TextBlock/TextBlock.d.ts.map +1 -0
  216. package/build/ts/surfaces/checkout/components/TextField/TextField.d.ts +175 -0
  217. package/build/ts/surfaces/checkout/components/TextField/TextField.d.ts.map +1 -0
  218. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.d.ts +16 -0
  219. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.d.ts.map +1 -0
  220. package/build/ts/surfaces/checkout/components/View/View.d.ts +169 -0
  221. package/build/ts/surfaces/checkout/components/View/View.d.ts.map +1 -0
  222. package/build/ts/surfaces/checkout/components/shared.d.ts +407 -0
  223. package/build/ts/surfaces/checkout/components/shared.d.ts.map +1 -0
  224. package/build/ts/surfaces/checkout/components.d.ts +76 -0
  225. package/build/ts/surfaces/checkout/components.d.ts.map +1 -0
  226. package/build/ts/surfaces/checkout/extension-points.d.ts +98 -0
  227. package/build/ts/surfaces/checkout/extension-points.d.ts.map +1 -0
  228. package/build/ts/surfaces/checkout/extension.d.ts +5 -0
  229. package/build/ts/surfaces/checkout/extension.d.ts.map +1 -0
  230. package/build/ts/surfaces/checkout/globals.d.ts +11 -0
  231. package/build/ts/surfaces/checkout/globals.d.ts.map +1 -0
  232. package/build/ts/surfaces/checkout/shared.d.ts +8 -0
  233. package/build/ts/surfaces/checkout/shared.d.ts.map +1 -0
  234. package/build/ts/surfaces/checkout/style/isEqual.d.ts +8 -0
  235. package/build/ts/surfaces/checkout/style/isEqual.d.ts.map +1 -0
  236. package/build/ts/surfaces/checkout/style/isEqual.test.d.ts +2 -0
  237. package/build/ts/surfaces/checkout/style/isEqual.test.d.ts.map +1 -0
  238. package/build/ts/surfaces/checkout/style/memoize.d.ts +13 -0
  239. package/build/ts/surfaces/checkout/style/memoize.d.ts.map +1 -0
  240. package/build/ts/surfaces/checkout/style/style.d.ts +70 -0
  241. package/build/ts/surfaces/checkout/style/style.d.ts.map +1 -0
  242. package/build/ts/surfaces/checkout/style/style.test.d.ts +2 -0
  243. package/build/ts/surfaces/checkout/style/style.test.d.ts.map +1 -0
  244. package/build/ts/surfaces/checkout/style/types.d.ts +46 -0
  245. package/build/ts/surfaces/checkout/style/types.d.ts.map +1 -0
  246. package/build/ts/surfaces/checkout/style.d.ts +3 -0
  247. package/build/ts/surfaces/checkout/style.d.ts.map +1 -0
  248. package/build/ts/surfaces/checkout.d.ts +8 -0
  249. package/build/ts/surfaces/checkout.d.ts.map +1 -0
  250. package/build/ts/utilities/registration.d.ts +12 -0
  251. package/build/ts/utilities/registration.d.ts.map +1 -0
  252. package/build/tsconfig.tsbuildinfo +1 -0
  253. package/checkout.esnext +1 -0
  254. package/checkout.js +1 -0
  255. package/checkout.mjs +1 -0
  256. package/index.esnext +1 -0
  257. package/index.js +1 -0
  258. package/index.mjs +1 -0
  259. package/package.json +51 -0
  260. package/src/api.ts +3 -0
  261. package/src/extension.ts +19 -0
  262. package/src/index.ts +3 -0
  263. package/src/surfaces/checkout/api/cart-line-details/README.md +1 -0
  264. package/src/surfaces/checkout/api/cart-line-details/render-after.ts +11 -0
  265. package/src/surfaces/checkout/api/shared.ts +810 -0
  266. package/src/surfaces/checkout/api/standard/README.md +1 -0
  267. package/src/surfaces/checkout/api/standard/standard.ts +1340 -0
  268. package/src/surfaces/checkout/api.ts +67 -0
  269. package/src/surfaces/checkout/components/Banner/Banner.ts +37 -0
  270. package/src/surfaces/checkout/components/Banner/README.md +14 -0
  271. package/src/surfaces/checkout/components/Banner/content/guidelines.md +9 -0
  272. package/src/surfaces/checkout/components/Banner/examples/basic-banner.example.ts +11 -0
  273. package/src/surfaces/checkout/components/BlockLayout/BlockLayout.ts +43 -0
  274. package/src/surfaces/checkout/components/BlockLayout/README.md +101 -0
  275. package/src/surfaces/checkout/components/BlockLayout/examples/basic-blockLayout.example.ts +16 -0
  276. package/src/surfaces/checkout/components/BlockSpacer/BlockSpacer.ts +25 -0
  277. package/src/surfaces/checkout/components/BlockSpacer/README.md +14 -0
  278. package/src/surfaces/checkout/components/BlockSpacer/examples/basic-blockspacer.example.ts +11 -0
  279. package/src/surfaces/checkout/components/BlockStack/BlockStack.ts +53 -0
  280. package/src/surfaces/checkout/components/BlockStack/README.md +77 -0
  281. package/src/surfaces/checkout/components/BlockStack/examples/basic-blockstack.example.ts +11 -0
  282. package/src/surfaces/checkout/components/Button/Button.ts +87 -0
  283. package/src/surfaces/checkout/components/Button/README.md +22 -0
  284. package/src/surfaces/checkout/components/Button/content/guidelines.md +10 -0
  285. package/src/surfaces/checkout/components/Button/examples/basic-button.example.ts +11 -0
  286. package/src/surfaces/checkout/components/Checkbox/Checkbox.ts +63 -0
  287. package/src/surfaces/checkout/components/Checkbox/README.md +18 -0
  288. package/src/surfaces/checkout/components/Checkbox/content/guidelines.md +9 -0
  289. package/src/surfaces/checkout/components/Checkbox/examples/basic-checkbox.example.ts +11 -0
  290. package/src/surfaces/checkout/components/Choice/Choice.ts +25 -0
  291. package/src/surfaces/checkout/components/Choice/README.md +14 -0
  292. package/src/surfaces/checkout/components/Choice/content/guidelines.md +9 -0
  293. package/src/surfaces/checkout/components/Choice/examples/basic-choice.example.ts +50 -0
  294. package/src/surfaces/checkout/components/ChoiceList/ChoiceList.ts +33 -0
  295. package/src/surfaces/checkout/components/ChoiceList/README.md +14 -0
  296. package/src/surfaces/checkout/components/ChoiceList/content/guidelines.md +10 -0
  297. package/src/surfaces/checkout/components/ChoiceList/examples/basic-choicelist.example.ts +50 -0
  298. package/src/surfaces/checkout/components/Divider/Divider.ts +33 -0
  299. package/src/surfaces/checkout/components/Divider/README.md +13 -0
  300. package/src/surfaces/checkout/components/Divider/examples/basic-divider.example.ts +7 -0
  301. package/src/surfaces/checkout/components/Form/Form.ts +30 -0
  302. package/src/surfaces/checkout/components/Form/README.md +21 -0
  303. package/src/surfaces/checkout/components/Form/content/guidelines.md +4 -0
  304. package/src/surfaces/checkout/components/Form/examples/basic-form.example.ts +48 -0
  305. package/src/surfaces/checkout/components/Grid/Grid.ts +104 -0
  306. package/src/surfaces/checkout/components/Grid/README.md +105 -0
  307. package/src/surfaces/checkout/components/Grid/content/guidelines.md +3 -0
  308. package/src/surfaces/checkout/components/Grid/examples/basic-grid.example.ts +45 -0
  309. package/src/surfaces/checkout/components/GridItem/GridItem.ts +42 -0
  310. package/src/surfaces/checkout/components/GridItem/README.md +72 -0
  311. package/src/surfaces/checkout/components/GridItem/content/guidelines.md +3 -0
  312. package/src/surfaces/checkout/components/GridItem/examples/basic-griditem.example.ts +42 -0
  313. package/src/surfaces/checkout/components/Heading/Heading.ts +44 -0
  314. package/src/surfaces/checkout/components/Heading/README.md +19 -0
  315. package/src/surfaces/checkout/components/Heading/content/guidelines.md +10 -0
  316. package/src/surfaces/checkout/components/Heading/examples/basic-heading.example.ts +7 -0
  317. package/src/surfaces/checkout/components/HeadingGroup/HeadingGroup.ts +15 -0
  318. package/src/surfaces/checkout/components/HeadingGroup/README.md +7 -0
  319. package/src/surfaces/checkout/components/HeadingGroup/content/guidelines.md +9 -0
  320. package/src/surfaces/checkout/components/HeadingGroup/examples/basic-headinggroup.example.ts +20 -0
  321. package/src/surfaces/checkout/components/Icon/Icon.ts +91 -0
  322. package/src/surfaces/checkout/components/Icon/README.md +15 -0
  323. package/src/surfaces/checkout/components/Icon/examples/basic-icon.example.ts +7 -0
  324. package/src/surfaces/checkout/components/Image/Image.ts +83 -0
  325. package/src/surfaces/checkout/components/Image/README.md +53 -0
  326. package/src/surfaces/checkout/components/Image/examples/basic-image.example.ts +10 -0
  327. package/src/surfaces/checkout/components/InlineLayout/InlineLayout.ts +49 -0
  328. package/src/surfaces/checkout/components/InlineLayout/README.md +103 -0
  329. package/src/surfaces/checkout/components/InlineLayout/examples/basic-inlineLayout.example.ts +16 -0
  330. package/src/surfaces/checkout/components/InlineSpacer/InlineSpacer.ts +24 -0
  331. package/src/surfaces/checkout/components/InlineSpacer/README.md +14 -0
  332. package/src/surfaces/checkout/components/InlineSpacer/examples/basic-inlinespacer.example.ts +20 -0
  333. package/src/surfaces/checkout/components/InlineStack/InlineStack.ts +63 -0
  334. package/src/surfaces/checkout/components/InlineStack/README.md +87 -0
  335. package/src/surfaces/checkout/components/InlineStack/examples/basic-inlinestack.example.ts +18 -0
  336. package/src/surfaces/checkout/components/Link/Link.ts +49 -0
  337. package/src/surfaces/checkout/components/Link/README.md +18 -0
  338. package/src/surfaces/checkout/components/Link/content/guidelines.md +9 -0
  339. package/src/surfaces/checkout/components/Link/examples/basic-link.example.ts +11 -0
  340. package/src/surfaces/checkout/components/List/List.ts +32 -0
  341. package/src/surfaces/checkout/components/List/README.md +19 -0
  342. package/src/surfaces/checkout/components/List/content/guidelines.md +11 -0
  343. package/src/surfaces/checkout/components/List/examples/basic-list.example.ts +11 -0
  344. package/src/surfaces/checkout/components/ListItem/ListItem.ts +12 -0
  345. package/src/surfaces/checkout/components/ListItem/README.md +5 -0
  346. package/src/surfaces/checkout/components/ListItem/content/guidelines.md +3 -0
  347. package/src/surfaces/checkout/components/ListItem/examples/basic-listitem.example.ts +9 -0
  348. package/src/surfaces/checkout/components/PhoneField/PhoneField.ts +77 -0
  349. package/src/surfaces/checkout/components/PhoneField/README.md +49 -0
  350. package/src/surfaces/checkout/components/PhoneField/examples/basic-phonefield.example.ts +10 -0
  351. package/src/surfaces/checkout/components/Pressable/Pressable.ts +128 -0
  352. package/src/surfaces/checkout/components/Pressable/README.md +74 -0
  353. package/src/surfaces/checkout/components/Pressable/examples/basic-pressable.example.ts +27 -0
  354. package/src/surfaces/checkout/components/ScrollView/README.md +62 -0
  355. package/src/surfaces/checkout/components/ScrollView/ScrollView.ts +76 -0
  356. package/src/surfaces/checkout/components/ScrollView/examples/basic-scrollview.example.ts +38 -0
  357. package/src/surfaces/checkout/components/Select/README.md +41 -0
  358. package/src/surfaces/checkout/components/Select/Select.ts +97 -0
  359. package/src/surfaces/checkout/components/Select/content/guidelines.md +4 -0
  360. package/src/surfaces/checkout/components/Select/examples/basic-select.example.ts +36 -0
  361. package/src/surfaces/checkout/components/SkeletonImage/README.md +13 -0
  362. package/src/surfaces/checkout/components/SkeletonImage/SkeletonImage.ts +28 -0
  363. package/src/surfaces/checkout/components/SkeletonImage/examples/basic-skeletonimage.example.ts +10 -0
  364. package/src/surfaces/checkout/components/SkeletonText/README.md +13 -0
  365. package/src/surfaces/checkout/components/SkeletonText/SkeletonText.ts +23 -0
  366. package/src/surfaces/checkout/components/SkeletonText/examples/basic-skeletontext.example.ts +7 -0
  367. package/src/surfaces/checkout/components/SkeletonTextBlock/README.md +13 -0
  368. package/src/surfaces/checkout/components/SkeletonTextBlock/SkeletonTextBlock.ts +24 -0
  369. package/src/surfaces/checkout/components/SkeletonTextBlock/examples/basic-skeletontextblock.example.ts +7 -0
  370. package/src/surfaces/checkout/components/Spinner/README.md +14 -0
  371. package/src/surfaces/checkout/components/Spinner/Spinner.ts +35 -0
  372. package/src/surfaces/checkout/components/Spinner/examples/basic-spinner.example.ts +7 -0
  373. package/src/surfaces/checkout/components/Stepper/README.md +28 -0
  374. package/src/surfaces/checkout/components/Stepper/Stepper.ts +63 -0
  375. package/src/surfaces/checkout/components/Stepper/content/guidelines.md +4 -0
  376. package/src/surfaces/checkout/components/Stepper/examples/basic-stepper.example.ts +10 -0
  377. package/src/surfaces/checkout/components/Tag/README.md +14 -0
  378. package/src/surfaces/checkout/components/Tag/Tag.ts +26 -0
  379. package/src/surfaces/checkout/components/Tag/examples/basic-tag.example.ts +7 -0
  380. package/src/surfaces/checkout/components/Text/README.md +17 -0
  381. package/src/surfaces/checkout/components/Text/Text.ts +44 -0
  382. package/src/surfaces/checkout/components/Text/content/guidelines.md +10 -0
  383. package/src/surfaces/checkout/components/Text/examples/basic-text.example.ts +14 -0
  384. package/src/surfaces/checkout/components/TextBlock/README.md +15 -0
  385. package/src/surfaces/checkout/components/TextBlock/TextBlock.ts +38 -0
  386. package/src/surfaces/checkout/components/TextBlock/content/guidelines.md +9 -0
  387. package/src/surfaces/checkout/components/TextBlock/examples/basic-textblock.example.ts +18 -0
  388. package/src/surfaces/checkout/components/TextField/README.md +49 -0
  389. package/src/surfaces/checkout/components/TextField/TextField.ts +173 -0
  390. package/src/surfaces/checkout/components/TextField/content/guidelines.md +5 -0
  391. package/src/surfaces/checkout/components/TextField/examples/basic-textfield.example.ts +9 -0
  392. package/src/surfaces/checkout/components/Tooltip/README.md +8 -0
  393. package/src/surfaces/checkout/components/Tooltip/Tooltip.ts +15 -0
  394. package/src/surfaces/checkout/components/Tooltip/examples/basic-tooltip.example.ts +23 -0
  395. package/src/surfaces/checkout/components/View/README.md +97 -0
  396. package/src/surfaces/checkout/components/View/View.ts +196 -0
  397. package/src/surfaces/checkout/components/View/examples/basic-view.example.ts +11 -0
  398. package/src/surfaces/checkout/components/shared.ts +581 -0
  399. package/src/surfaces/checkout/components.ts +157 -0
  400. package/src/surfaces/checkout/extension-points.ts +164 -0
  401. package/src/surfaces/checkout/extension.ts +8 -0
  402. package/src/surfaces/checkout/globals.ts +15 -0
  403. package/src/surfaces/checkout/shared.ts +14 -0
  404. package/src/surfaces/checkout/style/isEqual.test.ts +67 -0
  405. package/src/surfaces/checkout/style/isEqual.ts +41 -0
  406. package/src/surfaces/checkout/style/memoize.ts +177 -0
  407. package/src/surfaces/checkout/style/style.test.ts +131 -0
  408. package/src/surfaces/checkout/style/style.ts +161 -0
  409. package/src/surfaces/checkout/style/types.ts +67 -0
  410. package/src/surfaces/checkout/style.ts +16 -0
  411. package/src/surfaces/checkout.ts +7 -0
  412. package/src/utilities/registration.ts +27 -0
@@ -0,0 +1,10 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Pressable is a generic interactive component. It shares the same styling properties as View but also adds
5
+ * pressable behavior, meaning that you can execute some logic in response to user interaction.
6
+ * Use this component for creating interactive elements without the default styling that comes with `Button` and `Link`.
7
+ */
8
+ const Pressable = createRemoteComponent('Pressable');
9
+
10
+ export { Pressable };
@@ -0,0 +1,9 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * ScrollView is a container for long form content, such as order summary line items,
5
+ * that allows for scrolling so customers can expose more content as they view.
6
+ */
7
+ const ScrollView = createRemoteComponent('ScrollView');
8
+
9
+ export { ScrollView };
@@ -0,0 +1,9 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Selects let buyers choose one option from an options menu. Consider select
5
+ * when you have 4 or more options, to avoid cluttering the interface.
6
+ */
7
+ const Select = createRemoteComponent('Select');
8
+
9
+ export { Select };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * SkeletonImage is used to provide a low fidelity representation of an image before it appears on the page.
5
+ */
6
+ const SkeletonImage = createRemoteComponent('SkeletonImage');
7
+
8
+ export { SkeletonImage };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * SkeletonText is used to provide a low fidelity representation of text content before it appears on the page.
5
+ */
6
+ const SkeletonText = createRemoteComponent('SkeletonText');
7
+
8
+ export { SkeletonText };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * SkeletonTextBlock is used to provide a low fidelity representation of a block of text before it appears on the page.
5
+ */
6
+ const SkeletonTextBlock = createRemoteComponent('SkeletonTextBlock');
7
+
8
+ export { SkeletonTextBlock };
@@ -0,0 +1,9 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Spinner is used to notify buyers that their action is being processed.
5
+ * The Spinner is usually used when sending or receiving data from a server.
6
+ */
7
+ const Spinner = createRemoteComponent('Spinner');
8
+
9
+ export { Spinner };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Use a stepper to increase or decrease a value, like changing the quantity from 1 to 2.
5
+ */
6
+ const Stepper = createRemoteComponent('Stepper');
7
+
8
+ export { Stepper };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * A Tag is used to help label, organize or categorize objects. It is commonly used in Checkout to display the discounts applied to a cart.
5
+ */
6
+ const Tag = createRemoteComponent('Tag');
7
+
8
+ export { Tag };
@@ -0,0 +1,9 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Text is used to visually style and provide semantic value for a small piece of text
5
+ * content.
6
+ */
7
+ const Text = createRemoteComponent('Text');
8
+
9
+ export { Text };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Text block is used to render a block of text that occupies the full width available, like a paragraph.
5
+ */
6
+ const TextBlock = createRemoteComponent('TextBlock');
7
+
8
+ export { TextBlock };
@@ -0,0 +1,8 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Use a text field to get text input from a customer.
5
+ */
6
+ const TextField = createRemoteComponent('TextField');
7
+
8
+ export { TextField };
@@ -0,0 +1,13 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * Tooltips are floating labels that briefly explain the function of a user interface element.
5
+ * They must be specified inside the `overlay` prop of an activator component.
6
+ * Currently, activator components are `Button`, `Link`, and `Pressable`.
7
+ *
8
+ * The library takes care of applying the WAI-ARIA Tooltip Widget pattern automatically for the activator
9
+ * and the tooltip content. Expect screen readers to read the tooltip content when the user focuses the activator.
10
+ */
11
+ const Tooltip = createRemoteComponent('Tooltip');
12
+
13
+ export { Tooltip };
@@ -0,0 +1,13 @@
1
+ import { createRemoteComponent } from '@remote-ui/core';
2
+
3
+ /**
4
+ * View is a generic container component. Its contents will always be their
5
+ * “natural” size, so this component can be useful in layout components (like `Grid`,
6
+ * `BlockStack`, `InlineStack`) that would otherwise stretch their children to fit.
7
+ *
8
+ * Note: View’s box model related properties like `padding`, `border`, `borderRadius`, and `borderColor` are implemented as
9
+ * [CSS Logical Properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties/Basic_concepts).
10
+ */
11
+ const View = createRemoteComponent('View');
12
+
13
+ export { View };
@@ -0,0 +1,6 @@
1
+ import { createExtensionRegistrationFunction } from '../../utilities/registration.esnext';
2
+
3
+ const extension = createExtensionRegistrationFunction();
4
+ const extend = extension;
5
+
6
+ export { extend, extension };
@@ -0,0 +1,25 @@
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
+ function isEqual(first, second) {
6
+ if (Object.is(first, second)) {
7
+ return true;
8
+ }
9
+ if (typeof first === 'object' && typeof second === 'object') {
10
+ if (Array.isArray(first) && Array.isArray(second)) {
11
+ if (first.length === second.length) {
12
+ return first.every((value, index) => isEqual(value, second[index]));
13
+ }
14
+ } else {
15
+ const firstEntries = Object.entries(first);
16
+ const secondEntries = Object.entries(second);
17
+ if (firstEntries.length === secondEntries.length) {
18
+ return firstEntries.every(([key]) => isEqual(first[key], second[key]));
19
+ }
20
+ }
21
+ }
22
+ return false;
23
+ }
24
+
25
+ export { isEqual };
@@ -0,0 +1,133 @@
1
+ /* eslint-disable prefer-rest-params */
2
+ /* eslint-disable prefer-spread */
3
+
4
+ // This memoize function is heavily inspired by reselect's defaultMemoize
5
+ // https://github.com/reduxjs/reselect
6
+
7
+ // Cache implementation based on Erik Rasmussen's `lru-memoize`:
8
+ // https://github.com/erikras/lru-memoize
9
+
10
+ const NOT_FOUND = 'NOT_FOUND';
11
+ function createSingletonCache(equals) {
12
+ let entry;
13
+ return {
14
+ get(key) {
15
+ if (entry && equals(entry.key, key)) {
16
+ return entry.value;
17
+ }
18
+ return NOT_FOUND;
19
+ },
20
+ put(key, value) {
21
+ entry = {
22
+ key,
23
+ value
24
+ };
25
+ },
26
+ getEntries() {
27
+ return entry ? [entry] : [];
28
+ },
29
+ clear() {
30
+ entry = undefined;
31
+ }
32
+ };
33
+ }
34
+ function createLruCache(maxSize, equals) {
35
+ let entries = [];
36
+ function get(key) {
37
+ const cacheIndex = entries.findIndex(entry => equals(key, entry.key));
38
+
39
+ // We found a cached entry
40
+ if (cacheIndex > -1) {
41
+ const entry = entries[cacheIndex];
42
+
43
+ // Cached entry not at top of cache, move it to the top
44
+ if (cacheIndex > 0) {
45
+ entries.splice(cacheIndex, 1);
46
+ entries.unshift(entry);
47
+ }
48
+ return entry.value;
49
+ }
50
+
51
+ // No entry found in cache, return sentinel
52
+ return NOT_FOUND;
53
+ }
54
+ function put(key, value) {
55
+ if (get(key) === NOT_FOUND) {
56
+ entries.unshift({
57
+ key,
58
+ value
59
+ });
60
+ if (entries.length > maxSize) {
61
+ entries.pop();
62
+ }
63
+ }
64
+ }
65
+ function getEntries() {
66
+ return entries;
67
+ }
68
+ function clear() {
69
+ entries = [];
70
+ }
71
+ return {
72
+ get,
73
+ put,
74
+ getEntries,
75
+ clear
76
+ };
77
+ }
78
+ const defaultEqualityCheck = (first, second) => {
79
+ return first === second;
80
+ };
81
+ function createCacheKeyComparator(equalityCheck) {
82
+ return function areArgumentsShallowlyEqual(prev, next) {
83
+ if (prev === null || next === null || prev.length !== next.length) {
84
+ return false;
85
+ }
86
+
87
+ // Do this in a for loop (and not a `forEach` or an `every`) so we can determine equality as fast as possible.
88
+ const length = prev.length;
89
+ for (let i = 0; i < length; i++) {
90
+ if (!equalityCheck(prev[i], next[i])) {
91
+ return false;
92
+ }
93
+ }
94
+ return true;
95
+ };
96
+ }
97
+ // defaultMemoize now supports a configurable cache size with LRU behavior,
98
+ // and optional comparison of the result value with existing values
99
+ function memoize(func, equalityCheckOrOptions) {
100
+ const providedOptions = typeof equalityCheckOrOptions === 'object' ? equalityCheckOrOptions : {
101
+ equalityCheck: equalityCheckOrOptions
102
+ };
103
+ const {
104
+ equalityCheck = defaultEqualityCheck,
105
+ maxSize = 1,
106
+ resultEqualityCheck
107
+ } = providedOptions;
108
+ const comparator = createCacheKeyComparator(equalityCheck);
109
+ const cache = maxSize === 1 ? createSingletonCache(comparator) : createLruCache(maxSize, comparator);
110
+
111
+ // we reference arguments instead of spreading them for performance reasons
112
+ function memoized() {
113
+ let value = cache.get(arguments);
114
+ if (value === NOT_FOUND) {
115
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
116
+ // @ts-ignore
117
+ value = func.apply(null, arguments);
118
+ if (resultEqualityCheck) {
119
+ const entries = cache.getEntries();
120
+ const matchingEntry = entries.find(entry => resultEqualityCheck(entry.value, value));
121
+ if (matchingEntry) {
122
+ value = matchingEntry.value;
123
+ }
124
+ }
125
+ cache.put(arguments, value);
126
+ }
127
+ return value;
128
+ }
129
+ memoized.clearCache = () => cache.clear();
130
+ return memoized;
131
+ }
132
+
133
+ export { createCacheKeyComparator, defaultEqualityCheck, memoize };
@@ -0,0 +1,68 @@
1
+ import { memoize } from './memoize.esnext';
2
+ import { isEqual } from './isEqual.esnext';
3
+
4
+ const MAX_CACHE_SIZE = 50;
5
+ const MEMOIZE_OPTIONS = {
6
+ equalityCheck: isEqual,
7
+ maxSize: MAX_CACHE_SIZE
8
+ };
9
+ // eslint-disable-next-line func-style
10
+ const when = function when(conditions, value) {
11
+ const config = isConditionalStyle(this) ? {
12
+ default: this.default,
13
+ conditionals: [...this.conditionals, {
14
+ conditions,
15
+ value
16
+ }]
17
+ } : {
18
+ conditionals: [{
19
+ conditions,
20
+ value
21
+ }]
22
+ };
23
+ return createChainableConditionalStyle(config);
24
+ };
25
+
26
+ /**
27
+ * Style is a helper for authoring conditional values for prop styles.
28
+ * Write complex conditional styles based on one or more conditions (viewport
29
+ * sizes and interactive states) in a concise and expressive way.
30
+ */
31
+ const Style = {
32
+ /**
33
+ * Sets an optional default value to use when no other condition is met.
34
+ *
35
+ * @param defaultValue The default value
36
+ * @returns The chainable condition style
37
+ */
38
+ default: memoize(defaultValue => createChainableConditionalStyle({
39
+ default: defaultValue,
40
+ conditionals: []
41
+ }), MEMOIZE_OPTIONS),
42
+ /**
43
+ * Adjusts the style based on different conditions. All conditions, expressed
44
+ * as a literal object, must be met for the associated value to be applied.
45
+ *
46
+ * The `when` method can be chained together to build more complex styles.
47
+ *
48
+ * @param conditions The condition(s)
49
+ * @param value The conditional value that can be applied if the conditions are met
50
+ * @returns The chainable condition style
51
+ */
52
+ when: memoize(when, MEMOIZE_OPTIONS)
53
+ };
54
+ function createChainableConditionalStyle(conditionalStyle) {
55
+ const proto = {};
56
+ const returnConditionalStyle = Object.create(proto);
57
+ Object.assign(returnConditionalStyle, conditionalStyle);
58
+ proto.when = memoize(when.bind(returnConditionalStyle), MEMOIZE_OPTIONS);
59
+ return returnConditionalStyle;
60
+ }
61
+ function isConditionalStyle(value) {
62
+ return value !== null && typeof value === 'object' && 'conditionals' in value;
63
+ }
64
+ function isConditionalStyleWithDefault(value) {
65
+ return isConditionalStyle(value) && 'default' in value && value.default !== undefined;
66
+ }
67
+
68
+ export { Style, isConditionalStyle, isConditionalStyleWithDefault };
@@ -0,0 +1,39 @@
1
+ export { extend, extension } from './checkout/extension.esnext';
2
+ export { Banner } from './checkout/components/Banner/Banner.esnext';
3
+ export { BlockLayout } from './checkout/components/BlockLayout/BlockLayout.esnext';
4
+ export { BlockSpacer } from './checkout/components/BlockSpacer/BlockSpacer.esnext';
5
+ export { BlockStack } from './checkout/components/BlockStack/BlockStack.esnext';
6
+ export { Button } from './checkout/components/Button/Button.esnext';
7
+ export { Checkbox } from './checkout/components/Checkbox/Checkbox.esnext';
8
+ export { Choice } from './checkout/components/Choice/Choice.esnext';
9
+ export { ChoiceList } from './checkout/components/ChoiceList/ChoiceList.esnext';
10
+ export { Divider } from './checkout/components/Divider/Divider.esnext';
11
+ export { Form } from './checkout/components/Form/Form.esnext';
12
+ export { Grid } from './checkout/components/Grid/Grid.esnext';
13
+ export { GridItem } from './checkout/components/GridItem/GridItem.esnext';
14
+ export { Heading } from './checkout/components/Heading/Heading.esnext';
15
+ export { HeadingGroup } from './checkout/components/HeadingGroup/HeadingGroup.esnext';
16
+ export { Icon } from './checkout/components/Icon/Icon.esnext';
17
+ export { Image } from './checkout/components/Image/Image.esnext';
18
+ export { InlineLayout } from './checkout/components/InlineLayout/InlineLayout.esnext';
19
+ export { InlineStack } from './checkout/components/InlineStack/InlineStack.esnext';
20
+ export { InlineSpacer } from './checkout/components/InlineSpacer/InlineSpacer.esnext';
21
+ export { Link } from './checkout/components/Link/Link.esnext';
22
+ export { List } from './checkout/components/List/List.esnext';
23
+ export { ListItem } from './checkout/components/ListItem/ListItem.esnext';
24
+ export { PhoneField } from './checkout/components/PhoneField/PhoneField.esnext';
25
+ export { Pressable } from './checkout/components/Pressable/Pressable.esnext';
26
+ export { ScrollView } from './checkout/components/ScrollView/ScrollView.esnext';
27
+ export { Select } from './checkout/components/Select/Select.esnext';
28
+ export { SkeletonImage } from './checkout/components/SkeletonImage/SkeletonImage.esnext';
29
+ export { SkeletonText } from './checkout/components/SkeletonText/SkeletonText.esnext';
30
+ export { SkeletonTextBlock } from './checkout/components/SkeletonTextBlock/SkeletonTextBlock.esnext';
31
+ export { Spinner } from './checkout/components/Spinner/Spinner.esnext';
32
+ export { Stepper } from './checkout/components/Stepper/Stepper.esnext';
33
+ export { Tag } from './checkout/components/Tag/Tag.esnext';
34
+ export { Text } from './checkout/components/Text/Text.esnext';
35
+ export { TextBlock } from './checkout/components/TextBlock/TextBlock.esnext';
36
+ export { TextField } from './checkout/components/TextField/TextField.esnext';
37
+ export { Tooltip } from './checkout/components/Tooltip/Tooltip.esnext';
38
+ export { View } from './checkout/components/View/View.esnext';
39
+ export { Style, isConditionalStyle, isConditionalStyleWithDefault } from './checkout/style/style.esnext';
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This function takes an extension function that is expecting a `RemoteRoot` as its
3
+ * first argument, and returns a new function that accepts a `RemoteChannel` instead.
4
+ * This is a convenience that allows the raw UI extension API to only expose the simpler
5
+ * `RemoteChannel` type, while allowing the extension to use the more powerful `RemoteRoot`,
6
+ * provided by a version of `@remote-ui/core` that the extension controls.
7
+ */
8
+ function createExtensionRegistrationFunction() {
9
+ const extensionWrapper = (target, implementation) => {
10
+ var _shopify;
11
+ (_shopify = globalThis.shopify) === null || _shopify === void 0 ? void 0 : _shopify.extend(target, implementation);
12
+ return implementation;
13
+ };
14
+ return extensionWrapper;
15
+ }
16
+
17
+ export { createExtensionRegistrationFunction };
@@ -0,0 +1,4 @@
1
+ export interface StandardApi {
2
+ readonly extensionPoint: string;
3
+ }
4
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;CACjC"}
@@ -0,0 +1,8 @@
1
+ import type { RemoteRoot, RemoteComponentType } from '@remote-ui/core';
2
+ export interface Extension<Api, Result> {
3
+ (api: Api): Result;
4
+ }
5
+ export interface RenderExtension<Api, AllowedComponents extends RemoteComponentType<string, any, any> = RemoteComponentType<any, any, any>> {
6
+ (root: RemoteRoot<AllowedComponents, AllowedComponents>, api: Api): void | Promise<void>;
7
+ }
8
+ //# sourceMappingURL=extension.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../src/extension.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,UAAU,EAAE,mBAAmB,EAAC,MAAM,iBAAiB,CAAC;AAErE,MAAM,WAAW,SAAS,CAAC,GAAG,EAAE,MAAM;IACpC,CAAC,GAAG,EAAE,GAAG,GAAG,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,eAAe,CAC9B,GAAG,EACH,iBAAiB,SAAS,mBAAmB,CAC3C,MAAM,EACN,GAAG,EACH,GAAG,CACJ,GAAG,mBAAmB,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;IAEtC,CACE,IAAI,EAAE,UAAU,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,EACtD,GAAG,EAAE,GAAG,GACP,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACzB"}
@@ -0,0 +1,4 @@
1
+ export * from './api';
2
+ export * from './extension';
3
+ export * from './extension';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { StatefulRemoteSubscribable } from '@remote-ui/async-subscription';
2
+ import type { PresentmentCartLine, StandardApi } from '../standard/standard';
3
+ export interface CartLineDetailsRenderAfterApi extends StandardApi<'Checkout::CartLineDetails::RenderAfter'> {
4
+ /**
5
+ * The cart line the extension is attached to.
6
+ */
7
+ target: StatefulRemoteSubscribable<PresentmentCartLine>;
8
+ }
9
+ //# sourceMappingURL=render-after.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"render-after.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/api/cart-line-details/render-after.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,0BAA0B,EAAC,MAAM,+BAA+B,CAAC;AAE9E,OAAO,KAAK,EAAC,mBAAmB,EAAE,WAAW,EAAC,MAAM,sBAAsB,CAAC;AAE3E,MAAM,WAAW,6BACf,SAAQ,WAAW,CAAC,wCAAwC,CAAC;IAC7D;;OAEG;IACH,MAAM,EAAE,0BAA0B,CAAC,mBAAmB,CAAC,CAAC;CACzD"}
@@ -0,0 +1,5 @@
1
+ export type ValueOrPromise<T> = T extends PromiseLike<any> ? T : T | Promise<T>;
2
+ export type CurrencyCode = 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BOV' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CHW' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'COU' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MXV' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STN' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'USN' | 'UYI' | 'UYU' | 'UYW' | 'UZS' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XAG' | 'XAU' | 'XBA' | 'XBB' | 'XBC' | 'XBD' | 'XCD' | 'XDR' | 'XOF' | 'XPD' | 'XPF' | 'XPT' | 'XSU' | 'XTS' | 'XUA' | 'XXX' | 'YER' | 'ZAR' | 'ZMW' | 'ZWL';
3
+ export type Timezone = 'Africa/Abidjan' | 'Africa/Algiers' | 'Africa/Bissau' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/El_Aaiun' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Khartoum' | 'Africa/Lagos' | 'Africa/Maputo' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Araguaina' | 'America/Argentina/Buenos_Aires' | 'America/Argentina/Catamarca' | 'America/Argentina/Cordoba' | 'America/Argentina/Jujuy' | 'America/Argentina/La_Rioja' | 'America/Argentina/Mendoza' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Cayenne' | 'America/Chicago' | 'America/Chihuahua' | 'America/Costa_Rica' | 'America/Cuiaba' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Indianapolis' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Juneau' | 'America/Kentucky/Louisville' | 'America/Kentucky/Monticello' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Nuuk' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Johns' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Ho_Chi_Minh' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Kathmandu' | 'Asia/Khandyga' | 'Asia/Kolkata' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Riyadh' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yangon' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'CET' | 'CST6CDT' | 'EET' | 'EST' | 'EST5EDT' | 'Etc/GMT' | 'Etc/GMT-1' | 'Etc/GMT-10' | 'Etc/GMT-11' | 'Etc/GMT-12' | 'Etc/GMT-13' | 'Etc/GMT-14' | 'Etc/GMT-2' | 'Etc/GMT-3' | 'Etc/GMT-4' | 'Etc/GMT-5' | 'Etc/GMT-6' | 'Etc/GMT-7' | 'Etc/GMT-8' | 'Etc/GMT-9' | 'Etc/GMT+1' | 'Etc/GMT+10' | 'Etc/GMT+11' | 'Etc/GMT+12' | 'Etc/GMT+2' | 'Etc/GMT+3' | 'Etc/GMT+4' | 'Etc/GMT+5' | 'Etc/GMT+6' | 'Etc/GMT+7' | 'Etc/GMT+8' | 'Etc/GMT+9' | 'Etc/UTC' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Helsinki' | 'Europe/Istanbul' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'HST' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Reunion' | 'MET' | 'MST' | 'MST7MDT' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Chuuk' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Kanton' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Pohnpei' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Wake' | 'Pacific/Wallis' | 'PST8PDT' | 'WET';
4
+ export type CountryCode = 'AC' | 'AD' | 'AE' | 'AF' | 'AG' | 'AI' | 'AL' | 'AM' | 'AN' | 'AO' | 'AR' | 'AT' | 'AU' | 'AW' | 'AX' | 'AZ' | 'BA' | 'BB' | 'BD' | 'BE' | 'BF' | 'BG' | 'BH' | 'BI' | 'BJ' | 'BL' | 'BM' | 'BN' | 'BO' | 'BQ' | 'BR' | 'BS' | 'BT' | 'BV' | 'BW' | 'BY' | 'BZ' | 'CA' | 'CC' | 'CD' | 'CF' | 'CG' | 'CH' | 'CI' | 'CK' | 'CL' | 'CM' | 'CN' | 'CO' | 'CR' | 'CU' | 'CV' | 'CW' | 'CX' | 'CY' | 'CZ' | 'DE' | 'DJ' | 'DK' | 'DM' | 'DO' | 'DZ' | 'EC' | 'EE' | 'EG' | 'EH' | 'ER' | 'ES' | 'ET' | 'FI' | 'FJ' | 'FK' | 'FO' | 'FR' | 'GA' | 'GB' | 'GD' | 'GE' | 'GF' | 'GG' | 'GH' | 'GI' | 'GL' | 'GM' | 'GN' | 'GP' | 'GQ' | 'GR' | 'GS' | 'GT' | 'GW' | 'GY' | 'HK' | 'HM' | 'HN' | 'HR' | 'HT' | 'HU' | 'ID' | 'IE' | 'IL' | 'IM' | 'IN' | 'IO' | 'IQ' | 'IR' | 'IS' | 'IT' | 'JE' | 'JM' | 'JO' | 'JP' | 'KE' | 'KG' | 'KH' | 'KI' | 'KM' | 'KN' | 'KP' | 'KR' | 'KW' | 'KY' | 'KZ' | 'LA' | 'LB' | 'LC' | 'LI' | 'LK' | 'LR' | 'LS' | 'LT' | 'LU' | 'LV' | 'LY' | 'MA' | 'MC' | 'MD' | 'ME' | 'MF' | 'MG' | 'MK' | 'ML' | 'MM' | 'MN' | 'MO' | 'MQ' | 'MR' | 'MS' | 'MT' | 'MU' | 'MV' | 'MW' | 'MX' | 'MY' | 'MZ' | 'NA' | 'NC' | 'NE' | 'NF' | 'NG' | 'NI' | 'NL' | 'NO' | 'NP' | 'NR' | 'NU' | 'NZ' | 'OM' | 'PA' | 'PE' | 'PF' | 'PG' | 'PH' | 'PK' | 'PL' | 'PM' | 'PN' | 'PS' | 'PT' | 'PY' | 'QA' | 'RE' | 'RO' | 'RS' | 'RU' | 'RW' | 'SA' | 'SB' | 'SC' | 'SD' | 'SE' | 'SG' | 'SH' | 'SI' | 'SJ' | 'SK' | 'SL' | 'SM' | 'SN' | 'SO' | 'SR' | 'SS' | 'ST' | 'SV' | 'SX' | 'SY' | 'SZ' | 'TA' | 'TC' | 'TD' | 'TF' | 'TG' | 'TH' | 'TJ' | 'TK' | 'TL' | 'TM' | 'TN' | 'TO' | 'TR' | 'TT' | 'TV' | 'TW' | 'TZ' | 'UA' | 'UG' | 'UM' | 'US' | 'UY' | 'UZ' | 'VA' | 'VC' | 'VE' | 'VG' | 'VN' | 'VU' | 'WF' | 'WS' | 'XK' | 'YE' | 'YT' | 'ZA' | 'ZM' | 'ZW' | 'ZZ';
5
+ //# sourceMappingURL=shared.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../../../src/surfaces/checkout/api/shared.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI,CAAC,SAAS,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;AAGhF,MAAM,MAAM,YAAY,GACpB,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,GACL,KAAK,CAAC;AAGV,MAAM,MAAM,QAAQ,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,cAAc,GACd,iBAAiB,GACjB,qBAAqB,GACrB,aAAa,GACb,iBAAiB,GACjB,cAAc,GACd,eAAe,GACf,iBAAiB,GACjB,gBAAgB,GAChB,iBAAiB,GACjB,iBAAiB,GACjB,gBAAgB,GAChB,cAAc,GACd,iBAAiB,GACjB,cAAc,GACd,mBAAmB,GACnB,mBAAmB,GACnB,gCAAgC,GAChC,6BAA6B,GAC7B,2BAA2B,GAC3B,yBAAyB,GACzB,4BAA4B,GAC5B,2BAA2B,GAC3B,gCAAgC,GAChC,yBAAyB,GACzB,4BAA4B,GAC5B,4BAA4B,GAC5B,2BAA2B,GAC3B,2BAA2B,GAC3B,kBAAkB,GAClB,eAAe,GACf,wBAAwB,GACxB,kBAAkB,GAClB,eAAe,GACf,gBAAgB,GAChB,mBAAmB,GACnB,gBAAgB,GAChB,eAAe,GACf,uBAAuB,GACvB,sBAAsB,GACtB,gBAAgB,GAChB,iBAAiB,GACjB,iBAAiB,GACjB,iBAAiB,GACjB,mBAAmB,GACnB,oBAAoB,GACpB,gBAAgB,GAChB,sBAAsB,GACtB,gBAAgB,GAChB,sBAAsB,GACtB,gBAAgB,GAChB,iBAAiB,GACjB,kBAAkB,GAClB,kBAAkB,GAClB,qBAAqB,GACrB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,oBAAoB,GACpB,mBAAmB,GACnB,mBAAmB,GACnB,gBAAgB,GAChB,iBAAiB,GACjB,gBAAgB,GAChB,oBAAoB,GACpB,8BAA8B,GAC9B,sBAAsB,GACtB,yBAAyB,GACzB,4BAA4B,GAC5B,2BAA2B,GAC3B,uBAAuB,GACvB,2BAA2B,GAC3B,yBAAyB,GACzB,gBAAgB,GAChB,iBAAiB,GACjB,iBAAiB,GACjB,gBAAgB,GAChB,6BAA6B,GAC7B,6BAA6B,GAC7B,gBAAgB,GAChB,cAAc,GACd,qBAAqB,GACrB,gBAAgB,GAChB,iBAAiB,GACjB,gBAAgB,GAChB,oBAAoB,GACpB,mBAAmB,GACnB,kBAAkB,GAClB,mBAAmB,GACnB,gBAAgB,GAChB,oBAAoB,GACpB,qBAAqB,GACrB,kBAAkB,GAClB,iBAAiB,GACjB,mBAAmB,GACnB,oBAAoB,GACpB,kBAAkB,GAClB,iBAAiB,GACjB,cAAc,GACd,iBAAiB,GACjB,6BAA6B,GAC7B,6BAA6B,GAC7B,gCAAgC,GAChC,cAAc,GACd,iBAAiB,GACjB,gBAAgB,GAChB,qBAAqB,GACrB,oBAAoB,GACpB,iBAAiB,GACjB,wBAAwB,GACxB,qBAAqB,GACrB,qBAAqB,GACrB,sBAAsB,GACtB,qBAAqB,GACrB,sBAAsB,GACtB,gBAAgB,GAChB,gBAAgB,GAChB,kBAAkB,GAClB,oBAAoB,GACpB,kBAAkB,GAClB,kBAAkB,GAClB,uBAAuB,GACvB,mBAAmB,GACnB,sBAAsB,GACtB,eAAe,GACf,kBAAkB,GAClB,uBAAuB,GACvB,qBAAqB,GACrB,eAAe,GACf,qBAAqB,GACrB,iBAAiB,GACjB,iBAAiB,GACjB,mBAAmB,GACnB,oBAAoB,GACpB,kBAAkB,GAClB,iBAAiB,GACjB,qBAAqB,GACrB,kBAAkB,GAClB,kBAAkB,GAClB,sBAAsB,GACtB,mBAAmB,GACnB,mBAAmB,GACnB,oBAAoB,GACpB,kBAAkB,GAClB,mBAAmB,GACnB,aAAa,GACb,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,eAAe,GACf,aAAa,GACb,cAAc,GACd,WAAW,GACX,cAAc,GACd,cAAc,GACd,aAAa,GACb,cAAc,GACd,aAAa,GACb,YAAY,GACZ,iBAAiB,GACjB,cAAc,GACd,eAAe,GACf,YAAY,GACZ,WAAW,GACX,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,WAAW,GACX,aAAa,GACb,kBAAkB,GAClB,gBAAgB,GAChB,WAAW,GACX,cAAc,GACd,cAAc,GACd,eAAe,GACf,gBAAgB,GAChB,YAAY,GACZ,gBAAgB,GAChB,cAAc,GACd,gBAAgB,GAChB,eAAe,GACf,cAAc,GACd,kBAAkB,GAClB,mBAAmB,GACnB,cAAc,GACd,YAAY,GACZ,cAAc,GACd,eAAe,GACf,aAAa,GACb,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,WAAW,GACX,WAAW,GACX,gBAAgB,GAChB,gBAAgB,GAChB,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,oBAAoB,GACpB,aAAa,GACb,eAAe,GACf,cAAc,GACd,aAAa,GACb,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,kBAAkB,GAClB,aAAa,GACb,eAAe,GACf,kBAAkB,GAClB,cAAc,GACd,aAAa,GACb,oBAAoB,GACpB,cAAc,GACd,iBAAiB,GACjB,kBAAkB,GAClB,iBAAiB,GACjB,qBAAqB,GACrB,gBAAgB,GAChB,kBAAkB,GAClB,oBAAoB,GACpB,wBAAwB,GACxB,kBAAkB,GAClB,oBAAoB,GACpB,oBAAoB,GACpB,uBAAuB,GACvB,kBAAkB,GAClB,iBAAiB,GACjB,kBAAkB,GAClB,oBAAoB,GACpB,qBAAqB,GACrB,qBAAqB,GACrB,iBAAiB,GACjB,kBAAkB,GAClB,KAAK,GACL,SAAS,GACT,KAAK,GACL,KAAK,GACL,SAAS,GACT,SAAS,GACT,WAAW,GACX,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,SAAS,GACT,kBAAkB,GAClB,gBAAgB,GAChB,kBAAkB,GAClB,eAAe,GACf,iBAAiB,GACjB,eAAe,GACf,iBAAiB,GACjB,kBAAkB,GAClB,iBAAiB,GACjB,iBAAiB,GACjB,mBAAmB,GACnB,eAAe,GACf,kBAAkB,GAClB,iBAAiB,GACjB,iBAAiB,GACjB,oBAAoB,GACpB,aAAa,GACb,cAAc,GACd,eAAe,GACf,eAAe,GACf,mBAAmB,GACnB,eAAe,GACf,cAAc,GACd,cAAc,GACd,eAAe,GACf,eAAe,GACf,aAAa,GACb,cAAc,GACd,eAAe,GACf,aAAa,GACb,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,mBAAmB,GACnB,cAAc,GACd,kBAAkB,GAClB,gBAAgB,GAChB,eAAe,GACf,kBAAkB,GAClB,iBAAiB,GACjB,eAAe,GACf,gBAAgB,GAChB,kBAAkB,GAClB,eAAe,GACf,mBAAmB,GACnB,eAAe,GACf,KAAK,GACL,eAAe,GACf,kBAAkB,GAClB,cAAc,GACd,kBAAkB,GAClB,aAAa,GACb,iBAAiB,GACjB,kBAAkB,GAClB,gBAAgB,GAChB,KAAK,GACL,KAAK,GACL,SAAS,GACT,cAAc,GACd,kBAAkB,GAClB,sBAAsB,GACtB,iBAAiB,GACjB,eAAe,GACf,gBAAgB,GAChB,eAAe,GACf,iBAAiB,GACjB,cAAc,GACd,kBAAkB,GAClB,mBAAmB,GACnB,iBAAiB,GACjB,qBAAqB,GACrB,cAAc,GACd,kBAAkB,GAClB,gBAAgB,GAChB,oBAAoB,GACpB,gBAAgB,GAChB,mBAAmB,GACnB,gBAAgB,GAChB,mBAAmB,GACnB,eAAe,GACf,cAAc,GACd,iBAAiB,GACjB,gBAAgB,GAChB,mBAAmB,GACnB,eAAe,GACf,kBAAkB,GAClB,iBAAiB,GACjB,sBAAsB,GACtB,mBAAmB,GACnB,gBAAgB,GAChB,gBAAgB,GAChB,mBAAmB,GACnB,cAAc,GACd,gBAAgB,GAChB,SAAS,GACT,KAAK,CAAC;AAEV,MAAM,MAAM,WAAW,GACnB,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,CAAC"}