@shopify/ui-extensions 2026.4.1 → 2026.4.3

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 (799) hide show
  1. package/build/cjs/surfaces/checkout/preact/localized-fields.js +2 -0
  2. package/build/esm/surfaces/checkout/preact/localized-fields.mjs +2 -0
  3. package/build/esnext/surfaces/checkout/preact/localized-fields.esnext +2 -0
  4. package/build/ts/surfaces/admin/api/discount-function-settings/launch-options.d.ts +20 -0
  5. package/build/ts/surfaces/admin/api/discount-function-settings/launch-options.d.ts.map +1 -1
  6. package/build/ts/surfaces/admin/api/generated/generated.d.ts +1 -1
  7. package/build/ts/surfaces/admin/api/generated/generated.d.ts.map +1 -1
  8. package/build/ts/surfaces/checkout/api/address-autocomplete/standard.d.ts +1 -1
  9. package/build/ts/surfaces/checkout/api/address-autocomplete/suggest.d.ts +2 -2
  10. package/build/ts/surfaces/checkout/api/cart-line/cart-line-item.d.ts +4 -0
  11. package/build/ts/surfaces/checkout/api/cart-line/cart-line-item.d.ts.map +1 -1
  12. package/build/ts/surfaces/checkout/api/checkout/checkout.d.ts +30 -12
  13. package/build/ts/surfaces/checkout/api/checkout/checkout.d.ts.map +1 -1
  14. package/build/ts/surfaces/checkout/api/order-confirmation/order-confirmation.d.ts +2 -0
  15. package/build/ts/surfaces/checkout/api/order-confirmation/order-confirmation.d.ts.map +1 -1
  16. package/build/ts/surfaces/checkout/api/pickup/pickup-location-item.d.ts +8 -0
  17. package/build/ts/surfaces/checkout/api/pickup/pickup-location-item.d.ts.map +1 -1
  18. package/build/ts/surfaces/checkout/api/pickup/pickup-point-list.d.ts +3 -3
  19. package/build/ts/surfaces/checkout/api/shared.d.ts +3 -0
  20. package/build/ts/surfaces/checkout/api/shared.d.ts.map +1 -1
  21. package/build/ts/surfaces/checkout/api/shipping/shipping-option-item.d.ts +8 -0
  22. package/build/ts/surfaces/checkout/api/shipping/shipping-option-item.d.ts.map +1 -1
  23. package/build/ts/surfaces/checkout/api/standard/standard.d.ts +94 -29
  24. package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -1
  25. package/build/ts/surfaces/checkout/components/Announcement.d.ts +3 -3
  26. package/build/ts/surfaces/checkout/components/Button.d.ts +10 -0
  27. package/build/ts/surfaces/checkout/components/Checkbox.d.ts +32 -3
  28. package/build/ts/surfaces/checkout/components/Clickable.d.ts +10 -0
  29. package/build/ts/surfaces/checkout/components/Paragraph.d.ts +9 -10
  30. package/build/ts/surfaces/checkout/components/components-shared.d.ts +32 -3
  31. package/build/ts/surfaces/checkout/components/components.d.ts +9 -13
  32. package/build/ts/surfaces/checkout/preact/localized-fields.d.ts +2 -0
  33. package/build/ts/surfaces/checkout/preact/localized-fields.d.ts.map +1 -1
  34. package/build/ts/surfaces/customer-account/api/cart-line/cart-line-item.d.ts +1 -1
  35. package/build/ts/surfaces/customer-account/api/docs.d.ts +2 -3
  36. package/build/ts/surfaces/customer-account/api/docs.d.ts.map +1 -1
  37. package/build/ts/surfaces/customer-account/api/order-status/order-status.d.ts +27 -2
  38. package/build/ts/surfaces/customer-account/api/order-status/order-status.d.ts.map +1 -1
  39. package/build/ts/surfaces/customer-account/api/shared.d.ts +10 -8
  40. package/build/ts/surfaces/customer-account/api/shared.d.ts.map +1 -1
  41. package/build/ts/surfaces/customer-account/api/standard-api/standard-api.d.ts +2 -2
  42. package/build/ts/surfaces/customer-account/components/Announcement.d.ts +3 -3
  43. package/build/ts/surfaces/customer-account/components/Avatar.d.ts +2 -0
  44. package/build/ts/surfaces/customer-account/components/Button.d.ts +10 -0
  45. package/build/ts/surfaces/customer-account/components/Checkbox.d.ts +32 -3
  46. package/build/ts/surfaces/customer-account/components/Clickable.d.ts +10 -0
  47. package/build/ts/surfaces/customer-account/components/Paragraph.d.ts +9 -10
  48. package/build/ts/surfaces/customer-account/components/components-shared.d.ts +32 -3
  49. package/build/ts/surfaces/customer-account/components/components.d.ts +9 -13
  50. package/build/ts/surfaces/point-of-sale/components/components-shared.d.ts +8 -14
  51. package/build/tsconfig.tsbuildinfo +1 -1
  52. package/package.json +2 -4
  53. package/src/surfaces/admin/api/discount-function-settings/launch-options.ts +21 -0
  54. package/src/surfaces/admin/api/generated/generated.ts +1 -1
  55. package/src/surfaces/checkout/api/address-autocomplete/standard.ts +1 -1
  56. package/src/surfaces/checkout/api/address-autocomplete/suggest.ts +2 -2
  57. package/src/surfaces/checkout/api/cart-line/cart-line-item.ts +4 -0
  58. package/src/surfaces/checkout/api/checkout/checkout.ts +30 -12
  59. package/src/surfaces/checkout/api/order-confirmation/order-confirmation.ts +2 -0
  60. package/src/surfaces/checkout/api/pickup/pickup-location-item.ts +8 -0
  61. package/src/surfaces/checkout/api/pickup/pickup-point-list.ts +3 -3
  62. package/src/surfaces/checkout/api/shared.ts +3 -0
  63. package/src/surfaces/checkout/api/shipping/shipping-option-item.ts +8 -0
  64. package/src/surfaces/checkout/api/standard/standard.ts +94 -29
  65. package/src/surfaces/checkout/components/Announcement.d.ts +3 -3
  66. package/src/surfaces/checkout/components/Button.d.ts +10 -0
  67. package/src/surfaces/checkout/components/Checkbox.d.ts +32 -3
  68. package/src/surfaces/checkout/components/Clickable.d.ts +10 -0
  69. package/src/surfaces/checkout/components/Paragraph.d.ts +9 -10
  70. package/src/surfaces/checkout/components/components-shared.d.ts +32 -3
  71. package/src/surfaces/checkout/components/components.d.ts +9 -13
  72. package/src/surfaces/checkout/preact/localized-fields.ts +2 -0
  73. package/src/surfaces/customer-account/api/cart-line/cart-line-item.ts +1 -1
  74. package/src/surfaces/customer-account/api/docs.ts +2 -3
  75. package/src/surfaces/customer-account/api/order-status/order-status.ts +27 -2
  76. package/src/surfaces/customer-account/api/shared.ts +10 -8
  77. package/src/surfaces/customer-account/api/standard-api/standard-api.ts +2 -2
  78. package/src/surfaces/customer-account/components/Avatar.d.ts +2 -0
  79. package/src/surfaces/point-of-sale/components/components-shared.d.ts +8 -14
  80. package/src/surfaces/point-of-sale/components.d.ts +2 -2
  81. package/build/ts/docs/shared/component-definitions.d.ts +0 -31
  82. package/build/ts/docs/shared/component-definitions.d.ts.map +0 -1
  83. package/build/ts/docs/shared/components/Abbreviation.d.ts +0 -4
  84. package/build/ts/docs/shared/components/Abbreviation.d.ts.map +0 -1
  85. package/build/ts/docs/shared/components/Announcement.d.ts +0 -4
  86. package/build/ts/docs/shared/components/Announcement.d.ts.map +0 -1
  87. package/build/ts/docs/shared/components/Avatar.d.ts +0 -4
  88. package/build/ts/docs/shared/components/Avatar.d.ts.map +0 -1
  89. package/build/ts/docs/shared/components/Badge.d.ts +0 -4
  90. package/build/ts/docs/shared/components/Badge.d.ts.map +0 -1
  91. package/build/ts/docs/shared/components/Banner.d.ts +0 -4
  92. package/build/ts/docs/shared/components/Banner.d.ts.map +0 -1
  93. package/build/ts/docs/shared/components/Box.d.ts +0 -4
  94. package/build/ts/docs/shared/components/Box.d.ts.map +0 -1
  95. package/build/ts/docs/shared/components/Button.d.ts +0 -4
  96. package/build/ts/docs/shared/components/Button.d.ts.map +0 -1
  97. package/build/ts/docs/shared/components/ButtonGroup.d.ts +0 -4
  98. package/build/ts/docs/shared/components/ButtonGroup.d.ts.map +0 -1
  99. package/build/ts/docs/shared/components/Checkbox.d.ts +0 -4
  100. package/build/ts/docs/shared/components/Checkbox.d.ts.map +0 -1
  101. package/build/ts/docs/shared/components/Chip.d.ts +0 -4
  102. package/build/ts/docs/shared/components/Chip.d.ts.map +0 -1
  103. package/build/ts/docs/shared/components/Choice.d.ts +0 -4
  104. package/build/ts/docs/shared/components/Choice.d.ts.map +0 -1
  105. package/build/ts/docs/shared/components/ChoiceList.d.ts +0 -4
  106. package/build/ts/docs/shared/components/ChoiceList.d.ts.map +0 -1
  107. package/build/ts/docs/shared/components/Clickable.d.ts +0 -4
  108. package/build/ts/docs/shared/components/Clickable.d.ts.map +0 -1
  109. package/build/ts/docs/shared/components/ClickableChip.d.ts +0 -4
  110. package/build/ts/docs/shared/components/ClickableChip.d.ts.map +0 -1
  111. package/build/ts/docs/shared/components/ClipboardItem.d.ts +0 -4
  112. package/build/ts/docs/shared/components/ClipboardItem.d.ts.map +0 -1
  113. package/build/ts/docs/shared/components/ColorField.d.ts +0 -4
  114. package/build/ts/docs/shared/components/ColorField.d.ts.map +0 -1
  115. package/build/ts/docs/shared/components/ColorPicker.d.ts +0 -4
  116. package/build/ts/docs/shared/components/ColorPicker.d.ts.map +0 -1
  117. package/build/ts/docs/shared/components/ConsentCheckbox.d.ts +0 -4
  118. package/build/ts/docs/shared/components/ConsentCheckbox.d.ts.map +0 -1
  119. package/build/ts/docs/shared/components/ConsentPhoneField.d.ts +0 -4
  120. package/build/ts/docs/shared/components/ConsentPhoneField.d.ts.map +0 -1
  121. package/build/ts/docs/shared/components/DateField.d.ts +0 -4
  122. package/build/ts/docs/shared/components/DateField.d.ts.map +0 -1
  123. package/build/ts/docs/shared/components/DatePicker.d.ts +0 -4
  124. package/build/ts/docs/shared/components/DatePicker.d.ts.map +0 -1
  125. package/build/ts/docs/shared/components/Details.d.ts +0 -4
  126. package/build/ts/docs/shared/components/Details.d.ts.map +0 -1
  127. package/build/ts/docs/shared/components/Divider.d.ts +0 -4
  128. package/build/ts/docs/shared/components/Divider.d.ts.map +0 -1
  129. package/build/ts/docs/shared/components/DropZone.d.ts +0 -4
  130. package/build/ts/docs/shared/components/DropZone.d.ts.map +0 -1
  131. package/build/ts/docs/shared/components/EmailField.d.ts +0 -4
  132. package/build/ts/docs/shared/components/EmailField.d.ts.map +0 -1
  133. package/build/ts/docs/shared/components/Form.d.ts +0 -4
  134. package/build/ts/docs/shared/components/Form.d.ts.map +0 -1
  135. package/build/ts/docs/shared/components/FunctionSettings.d.ts +0 -4
  136. package/build/ts/docs/shared/components/FunctionSettings.d.ts.map +0 -1
  137. package/build/ts/docs/shared/components/Grid.d.ts +0 -4
  138. package/build/ts/docs/shared/components/Grid.d.ts.map +0 -1
  139. package/build/ts/docs/shared/components/GridItem.d.ts +0 -4
  140. package/build/ts/docs/shared/components/GridItem.d.ts.map +0 -1
  141. package/build/ts/docs/shared/components/Heading.d.ts +0 -4
  142. package/build/ts/docs/shared/components/Heading.d.ts.map +0 -1
  143. package/build/ts/docs/shared/components/Icon.d.ts +0 -4
  144. package/build/ts/docs/shared/components/Icon.d.ts.map +0 -1
  145. package/build/ts/docs/shared/components/Image.d.ts +0 -4
  146. package/build/ts/docs/shared/components/Image.d.ts.map +0 -1
  147. package/build/ts/docs/shared/components/Link.d.ts +0 -4
  148. package/build/ts/docs/shared/components/Link.d.ts.map +0 -1
  149. package/build/ts/docs/shared/components/ListItem.d.ts +0 -4
  150. package/build/ts/docs/shared/components/ListItem.d.ts.map +0 -1
  151. package/build/ts/docs/shared/components/Map.d.ts +0 -4
  152. package/build/ts/docs/shared/components/Map.d.ts.map +0 -1
  153. package/build/ts/docs/shared/components/MapMarker.d.ts +0 -4
  154. package/build/ts/docs/shared/components/MapMarker.d.ts.map +0 -1
  155. package/build/ts/docs/shared/components/Menu.d.ts +0 -4
  156. package/build/ts/docs/shared/components/Menu.d.ts.map +0 -1
  157. package/build/ts/docs/shared/components/Modal.d.ts +0 -4
  158. package/build/ts/docs/shared/components/Modal.d.ts.map +0 -1
  159. package/build/ts/docs/shared/components/MoneyField.d.ts +0 -4
  160. package/build/ts/docs/shared/components/MoneyField.d.ts.map +0 -1
  161. package/build/ts/docs/shared/components/NumberField.d.ts +0 -4
  162. package/build/ts/docs/shared/components/NumberField.d.ts.map +0 -1
  163. package/build/ts/docs/shared/components/Option.d.ts +0 -4
  164. package/build/ts/docs/shared/components/Option.d.ts.map +0 -1
  165. package/build/ts/docs/shared/components/OptionGroup.d.ts +0 -4
  166. package/build/ts/docs/shared/components/OptionGroup.d.ts.map +0 -1
  167. package/build/ts/docs/shared/components/OrderedList.d.ts +0 -4
  168. package/build/ts/docs/shared/components/OrderedList.d.ts.map +0 -1
  169. package/build/ts/docs/shared/components/Page.d.ts +0 -4
  170. package/build/ts/docs/shared/components/Page.d.ts.map +0 -1
  171. package/build/ts/docs/shared/components/Paragraph.d.ts +0 -4
  172. package/build/ts/docs/shared/components/Paragraph.d.ts.map +0 -1
  173. package/build/ts/docs/shared/components/PasswordField.d.ts +0 -4
  174. package/build/ts/docs/shared/components/PasswordField.d.ts.map +0 -1
  175. package/build/ts/docs/shared/components/PaymentIcon.d.ts +0 -4
  176. package/build/ts/docs/shared/components/PaymentIcon.d.ts.map +0 -1
  177. package/build/ts/docs/shared/components/PhoneField.d.ts +0 -4
  178. package/build/ts/docs/shared/components/PhoneField.d.ts.map +0 -1
  179. package/build/ts/docs/shared/components/Popover.d.ts +0 -4
  180. package/build/ts/docs/shared/components/Popover.d.ts.map +0 -1
  181. package/build/ts/docs/shared/components/PressButton.d.ts +0 -4
  182. package/build/ts/docs/shared/components/PressButton.d.ts.map +0 -1
  183. package/build/ts/docs/shared/components/ProductThumbnail.d.ts +0 -4
  184. package/build/ts/docs/shared/components/ProductThumbnail.d.ts.map +0 -1
  185. package/build/ts/docs/shared/components/Progress.d.ts +0 -4
  186. package/build/ts/docs/shared/components/Progress.d.ts.map +0 -1
  187. package/build/ts/docs/shared/components/QRCode.d.ts +0 -4
  188. package/build/ts/docs/shared/components/QRCode.d.ts.map +0 -1
  189. package/build/ts/docs/shared/components/QueryContainer.d.ts +0 -4
  190. package/build/ts/docs/shared/components/QueryContainer.d.ts.map +0 -1
  191. package/build/ts/docs/shared/components/ScrollBox.d.ts +0 -4
  192. package/build/ts/docs/shared/components/ScrollBox.d.ts.map +0 -1
  193. package/build/ts/docs/shared/components/SearchField.d.ts +0 -4
  194. package/build/ts/docs/shared/components/SearchField.d.ts.map +0 -1
  195. package/build/ts/docs/shared/components/Section.d.ts +0 -4
  196. package/build/ts/docs/shared/components/Section.d.ts.map +0 -1
  197. package/build/ts/docs/shared/components/Select.d.ts +0 -4
  198. package/build/ts/docs/shared/components/Select.d.ts.map +0 -1
  199. package/build/ts/docs/shared/components/Sheet.d.ts +0 -4
  200. package/build/ts/docs/shared/components/Sheet.d.ts.map +0 -1
  201. package/build/ts/docs/shared/components/SkeletonParagraph.d.ts +0 -4
  202. package/build/ts/docs/shared/components/SkeletonParagraph.d.ts.map +0 -1
  203. package/build/ts/docs/shared/components/Spinner.d.ts +0 -4
  204. package/build/ts/docs/shared/components/Spinner.d.ts.map +0 -1
  205. package/build/ts/docs/shared/components/Stack.d.ts +0 -4
  206. package/build/ts/docs/shared/components/Stack.d.ts.map +0 -1
  207. package/build/ts/docs/shared/components/Summary.d.ts +0 -4
  208. package/build/ts/docs/shared/components/Summary.d.ts.map +0 -1
  209. package/build/ts/docs/shared/components/Switch.d.ts +0 -4
  210. package/build/ts/docs/shared/components/Switch.d.ts.map +0 -1
  211. package/build/ts/docs/shared/components/Table.d.ts +0 -4
  212. package/build/ts/docs/shared/components/Table.d.ts.map +0 -1
  213. package/build/ts/docs/shared/components/TableBody.d.ts +0 -4
  214. package/build/ts/docs/shared/components/TableBody.d.ts.map +0 -1
  215. package/build/ts/docs/shared/components/TableCell.d.ts +0 -4
  216. package/build/ts/docs/shared/components/TableCell.d.ts.map +0 -1
  217. package/build/ts/docs/shared/components/TableHeader.d.ts +0 -4
  218. package/build/ts/docs/shared/components/TableHeader.d.ts.map +0 -1
  219. package/build/ts/docs/shared/components/TableHeaderRow.d.ts +0 -4
  220. package/build/ts/docs/shared/components/TableHeaderRow.d.ts.map +0 -1
  221. package/build/ts/docs/shared/components/TableRow.d.ts +0 -4
  222. package/build/ts/docs/shared/components/TableRow.d.ts.map +0 -1
  223. package/build/ts/docs/shared/components/Text.d.ts +0 -4
  224. package/build/ts/docs/shared/components/Text.d.ts.map +0 -1
  225. package/build/ts/docs/shared/components/TextArea.d.ts +0 -4
  226. package/build/ts/docs/shared/components/TextArea.d.ts.map +0 -1
  227. package/build/ts/docs/shared/components/TextField.d.ts +0 -4
  228. package/build/ts/docs/shared/components/TextField.d.ts.map +0 -1
  229. package/build/ts/docs/shared/components/Thumbnail.d.ts +0 -4
  230. package/build/ts/docs/shared/components/Thumbnail.d.ts.map +0 -1
  231. package/build/ts/docs/shared/components/Time.d.ts +0 -4
  232. package/build/ts/docs/shared/components/Time.d.ts.map +0 -1
  233. package/build/ts/docs/shared/components/Tooltip.d.ts +0 -4
  234. package/build/ts/docs/shared/components/Tooltip.d.ts.map +0 -1
  235. package/build/ts/docs/shared/components/URLField.d.ts +0 -4
  236. package/build/ts/docs/shared/components/URLField.d.ts.map +0 -1
  237. package/build/ts/docs/shared/components/UnorderedList.d.ts +0 -4
  238. package/build/ts/docs/shared/components/UnorderedList.d.ts.map +0 -1
  239. package/build/ts/docs/shared/components/index.d.ts +0 -53
  240. package/build/ts/docs/shared/components/index.d.ts.map +0 -1
  241. package/build/ts/docs/shared/docs-type.d.ts +0 -4
  242. package/build/ts/docs/shared/docs-type.d.ts.map +0 -1
  243. package/build/ts/surfaces/admin/api/action/action.doc.d.ts +0 -4
  244. package/build/ts/surfaces/admin/api/action/action.doc.d.ts.map +0 -1
  245. package/build/ts/surfaces/admin/api/block/block.doc.d.ts +0 -4
  246. package/build/ts/surfaces/admin/api/block/block.doc.d.ts.map +0 -1
  247. package/build/ts/surfaces/admin/api/checkout-rules/validation-settings.doc.d.ts +0 -4
  248. package/build/ts/surfaces/admin/api/checkout-rules/validation-settings.doc.d.ts.map +0 -1
  249. package/build/ts/surfaces/admin/api/customer-segment-template/customer-segment-template.doc.d.ts +0 -4
  250. package/build/ts/surfaces/admin/api/customer-segment-template/customer-segment-template.doc.d.ts.map +0 -1
  251. package/build/ts/surfaces/admin/api/discount-function-settings/discount-function-settings.doc.d.ts +0 -4
  252. package/build/ts/surfaces/admin/api/discount-function-settings/discount-function-settings.doc.d.ts.map +0 -1
  253. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts +0 -4
  254. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts.map +0 -1
  255. package/build/ts/surfaces/admin/api/order-routing-rule/order-routing-rule.doc.d.ts +0 -4
  256. package/build/ts/surfaces/admin/api/order-routing-rule/order-routing-rule.doc.d.ts.map +0 -1
  257. package/build/ts/surfaces/admin/api/picker/picker.doc.d.ts +0 -4
  258. package/build/ts/surfaces/admin/api/picker/picker.doc.d.ts.map +0 -1
  259. package/build/ts/surfaces/admin/api/print-action/print-action.doc.d.ts +0 -4
  260. package/build/ts/surfaces/admin/api/print-action/print-action.doc.d.ts.map +0 -1
  261. package/build/ts/surfaces/admin/api/product-configuration/product-details-configuration.doc.d.ts +0 -4
  262. package/build/ts/surfaces/admin/api/product-configuration/product-details-configuration.doc.d.ts.map +0 -1
  263. package/build/ts/surfaces/admin/api/product-configuration/product-variant-details-configuration.doc.d.ts +0 -4
  264. package/build/ts/surfaces/admin/api/product-configuration/product-variant-details-configuration.doc.d.ts.map +0 -1
  265. package/build/ts/surfaces/admin/api/purchase-options-card-action.doc.d.ts +0 -4
  266. package/build/ts/surfaces/admin/api/purchase-options-card-action.doc.d.ts.map +0 -1
  267. package/build/ts/surfaces/admin/api/resource-picker/resource-picker.doc.d.ts +0 -4
  268. package/build/ts/surfaces/admin/api/resource-picker/resource-picker.doc.d.ts.map +0 -1
  269. package/build/ts/surfaces/admin/api/should-render/should-render.doc.d.ts +0 -4
  270. package/build/ts/surfaces/admin/api/should-render/should-render.doc.d.ts.map +0 -1
  271. package/build/ts/surfaces/admin/api/standard/standard.doc.d.ts +0 -4
  272. package/build/ts/surfaces/admin/api/standard/standard.doc.d.ts.map +0 -1
  273. package/build/ts/surfaces/admin/components/AdminAction/AdminAction.ext.doc.d.ts +0 -4
  274. package/build/ts/surfaces/admin/components/AdminAction/AdminAction.ext.doc.d.ts.map +0 -1
  275. package/build/ts/surfaces/admin/components/AdminBlock/AdminBlock.ext.doc.d.ts +0 -4
  276. package/build/ts/surfaces/admin/components/AdminBlock/AdminBlock.ext.doc.d.ts.map +0 -1
  277. package/build/ts/surfaces/admin/components/AdminPrintAction/AdminPrintAction.ext.doc.d.ts +0 -4
  278. package/build/ts/surfaces/admin/components/AdminPrintAction/AdminPrintAction.ext.doc.d.ts.map +0 -1
  279. package/build/ts/surfaces/admin/components/Avatar/Avatar.doc.d.ts +0 -4
  280. package/build/ts/surfaces/admin/components/Avatar/Avatar.doc.d.ts.map +0 -1
  281. package/build/ts/surfaces/admin/components/Badge/Badge.doc.d.ts +0 -4
  282. package/build/ts/surfaces/admin/components/Badge/Badge.doc.d.ts.map +0 -1
  283. package/build/ts/surfaces/admin/components/Banner/Banner.doc.d.ts +0 -4
  284. package/build/ts/surfaces/admin/components/Banner/Banner.doc.d.ts.map +0 -1
  285. package/build/ts/surfaces/admin/components/Box/Box.doc.d.ts +0 -4
  286. package/build/ts/surfaces/admin/components/Box/Box.doc.d.ts.map +0 -1
  287. package/build/ts/surfaces/admin/components/Button/Button.doc.d.ts +0 -4
  288. package/build/ts/surfaces/admin/components/Button/Button.doc.d.ts.map +0 -1
  289. package/build/ts/surfaces/admin/components/ButtonGroup/ButtonGroup.doc.d.ts +0 -4
  290. package/build/ts/surfaces/admin/components/ButtonGroup/ButtonGroup.doc.d.ts.map +0 -1
  291. package/build/ts/surfaces/admin/components/Checkbox/Checkbox.doc.d.ts +0 -4
  292. package/build/ts/surfaces/admin/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  293. package/build/ts/surfaces/admin/components/Chip/Chip.doc.d.ts +0 -4
  294. package/build/ts/surfaces/admin/components/Chip/Chip.doc.d.ts.map +0 -1
  295. package/build/ts/surfaces/admin/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  296. package/build/ts/surfaces/admin/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  297. package/build/ts/surfaces/admin/components/Clickable/Clickable.doc.d.ts +0 -4
  298. package/build/ts/surfaces/admin/components/Clickable/Clickable.doc.d.ts.map +0 -1
  299. package/build/ts/surfaces/admin/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  300. package/build/ts/surfaces/admin/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  301. package/build/ts/surfaces/admin/components/ColorField/ColorField.doc.d.ts +0 -4
  302. package/build/ts/surfaces/admin/components/ColorField/ColorField.doc.d.ts.map +0 -1
  303. package/build/ts/surfaces/admin/components/ColorPicker/ColorPicker.doc.d.ts +0 -4
  304. package/build/ts/surfaces/admin/components/ColorPicker/ColorPicker.doc.d.ts.map +0 -1
  305. package/build/ts/surfaces/admin/components/DateField/DateField.doc.d.ts +0 -4
  306. package/build/ts/surfaces/admin/components/DateField/DateField.doc.d.ts.map +0 -1
  307. package/build/ts/surfaces/admin/components/DatePicker/DatePicker.doc.d.ts +0 -4
  308. package/build/ts/surfaces/admin/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  309. package/build/ts/surfaces/admin/components/Divider/Divider.doc.d.ts +0 -4
  310. package/build/ts/surfaces/admin/components/Divider/Divider.doc.d.ts.map +0 -1
  311. package/build/ts/surfaces/admin/components/DropZone/DropZone.doc.d.ts +0 -4
  312. package/build/ts/surfaces/admin/components/DropZone/DropZone.doc.d.ts.map +0 -1
  313. package/build/ts/surfaces/admin/components/EmailField/EmailField.doc.d.ts +0 -4
  314. package/build/ts/surfaces/admin/components/EmailField/EmailField.doc.d.ts.map +0 -1
  315. package/build/ts/surfaces/admin/components/Form/Form.ext.doc.d.ts +0 -4
  316. package/build/ts/surfaces/admin/components/Form/Form.ext.doc.d.ts.map +0 -1
  317. package/build/ts/surfaces/admin/components/FunctionSettings/FunctionSettings.ext.doc.d.ts +0 -4
  318. package/build/ts/surfaces/admin/components/FunctionSettings/FunctionSettings.ext.doc.d.ts.map +0 -1
  319. package/build/ts/surfaces/admin/components/Grid/Grid.doc.d.ts +0 -4
  320. package/build/ts/surfaces/admin/components/Grid/Grid.doc.d.ts.map +0 -1
  321. package/build/ts/surfaces/admin/components/Heading/Heading.doc.d.ts +0 -4
  322. package/build/ts/surfaces/admin/components/Heading/Heading.doc.d.ts.map +0 -1
  323. package/build/ts/surfaces/admin/components/Icon/Icon.doc.d.ts +0 -4
  324. package/build/ts/surfaces/admin/components/Icon/Icon.doc.d.ts.map +0 -1
  325. package/build/ts/surfaces/admin/components/Image/Image.doc.d.ts +0 -4
  326. package/build/ts/surfaces/admin/components/Image/Image.doc.d.ts.map +0 -1
  327. package/build/ts/surfaces/admin/components/Link/Link.doc.d.ts +0 -4
  328. package/build/ts/surfaces/admin/components/Link/Link.doc.d.ts.map +0 -1
  329. package/build/ts/surfaces/admin/components/Menu/Menu.doc.d.ts +0 -4
  330. package/build/ts/surfaces/admin/components/Menu/Menu.doc.d.ts.map +0 -1
  331. package/build/ts/surfaces/admin/components/Modal/Modal.ab.doc.d.ts +0 -4
  332. package/build/ts/surfaces/admin/components/Modal/Modal.ab.doc.d.ts.map +0 -1
  333. package/build/ts/surfaces/admin/components/MoneyField/MoneyField.doc.d.ts +0 -4
  334. package/build/ts/surfaces/admin/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  335. package/build/ts/surfaces/admin/components/NumberField/NumberField.doc.d.ts +0 -4
  336. package/build/ts/surfaces/admin/components/NumberField/NumberField.doc.d.ts.map +0 -1
  337. package/build/ts/surfaces/admin/components/OrderedList/OrderedList.doc.d.ts +0 -4
  338. package/build/ts/surfaces/admin/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  339. package/build/ts/surfaces/admin/components/Page/Page.ab.doc.d.ts +0 -4
  340. package/build/ts/surfaces/admin/components/Page/Page.ab.doc.d.ts.map +0 -1
  341. package/build/ts/surfaces/admin/components/Paragraph/Paragraph.doc.d.ts +0 -4
  342. package/build/ts/surfaces/admin/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  343. package/build/ts/surfaces/admin/components/PasswordField/PasswordField.doc.d.ts +0 -4
  344. package/build/ts/surfaces/admin/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  345. package/build/ts/surfaces/admin/components/Popover/Popover.ab.doc.d.ts +0 -4
  346. package/build/ts/surfaces/admin/components/Popover/Popover.ab.doc.d.ts.map +0 -1
  347. package/build/ts/surfaces/admin/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  348. package/build/ts/surfaces/admin/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  349. package/build/ts/surfaces/admin/components/SearchField/SearchField.doc.d.ts +0 -4
  350. package/build/ts/surfaces/admin/components/SearchField/SearchField.doc.d.ts.map +0 -1
  351. package/build/ts/surfaces/admin/components/Section/Section.doc.d.ts +0 -4
  352. package/build/ts/surfaces/admin/components/Section/Section.doc.d.ts.map +0 -1
  353. package/build/ts/surfaces/admin/components/Select/Select.doc.d.ts +0 -4
  354. package/build/ts/surfaces/admin/components/Select/Select.doc.d.ts.map +0 -1
  355. package/build/ts/surfaces/admin/components/Spinner/Spinner.doc.d.ts +0 -4
  356. package/build/ts/surfaces/admin/components/Spinner/Spinner.doc.d.ts.map +0 -1
  357. package/build/ts/surfaces/admin/components/Stack/Stack.doc.d.ts +0 -4
  358. package/build/ts/surfaces/admin/components/Stack/Stack.doc.d.ts.map +0 -1
  359. package/build/ts/surfaces/admin/components/Switch/Switch.doc.d.ts +0 -4
  360. package/build/ts/surfaces/admin/components/Switch/Switch.doc.d.ts.map +0 -1
  361. package/build/ts/surfaces/admin/components/Table/Table.doc.d.ts +0 -4
  362. package/build/ts/surfaces/admin/components/Table/Table.doc.d.ts.map +0 -1
  363. package/build/ts/surfaces/admin/components/Text/Text.doc.d.ts +0 -4
  364. package/build/ts/surfaces/admin/components/Text/Text.doc.d.ts.map +0 -1
  365. package/build/ts/surfaces/admin/components/TextArea/TextArea.doc.d.ts +0 -4
  366. package/build/ts/surfaces/admin/components/TextArea/TextArea.doc.d.ts.map +0 -1
  367. package/build/ts/surfaces/admin/components/TextField/TextField.doc.d.ts +0 -4
  368. package/build/ts/surfaces/admin/components/TextField/TextField.doc.d.ts.map +0 -1
  369. package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.doc.d.ts +0 -4
  370. package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.doc.d.ts.map +0 -1
  371. package/build/ts/surfaces/admin/components/Tooltip/Tooltip.doc.d.ts +0 -4
  372. package/build/ts/surfaces/admin/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  373. package/build/ts/surfaces/admin/components/URLField/URLField.doc.d.ts +0 -4
  374. package/build/ts/surfaces/admin/components/URLField/URLField.doc.d.ts.map +0 -1
  375. package/build/ts/surfaces/admin/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  376. package/build/ts/surfaces/admin/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  377. package/build/ts/surfaces/admin/components/patterns/accountConnection.ab.doc.d.ts +0 -4
  378. package/build/ts/surfaces/admin/components/patterns/accountConnection.ab.doc.d.ts.map +0 -1
  379. package/build/ts/surfaces/admin/components/patterns/appCard.ab.doc.d.ts +0 -4
  380. package/build/ts/surfaces/admin/components/patterns/appCard.ab.doc.d.ts.map +0 -1
  381. package/build/ts/surfaces/admin/components/patterns/calloutCard.ab.doc.d.ts +0 -4
  382. package/build/ts/surfaces/admin/components/patterns/calloutCard.ab.doc.d.ts.map +0 -1
  383. package/build/ts/surfaces/admin/components/patterns/details.ab.doc.d.ts +0 -4
  384. package/build/ts/surfaces/admin/components/patterns/details.ab.doc.d.ts.map +0 -1
  385. package/build/ts/surfaces/admin/components/patterns/emptyState.ab.doc.d.ts +0 -4
  386. package/build/ts/surfaces/admin/components/patterns/emptyState.ab.doc.d.ts.map +0 -1
  387. package/build/ts/surfaces/admin/components/patterns/footerHelp.ab.doc.d.ts +0 -4
  388. package/build/ts/surfaces/admin/components/patterns/footerHelp.ab.doc.d.ts.map +0 -1
  389. package/build/ts/surfaces/admin/components/patterns/homepage.ab.doc.d.ts +0 -4
  390. package/build/ts/surfaces/admin/components/patterns/homepage.ab.doc.d.ts.map +0 -1
  391. package/build/ts/surfaces/admin/components/patterns/index.ab.doc.d.ts +0 -4
  392. package/build/ts/surfaces/admin/components/patterns/index.ab.doc.d.ts.map +0 -1
  393. package/build/ts/surfaces/admin/components/patterns/indexTable.ab.doc.d.ts +0 -4
  394. package/build/ts/surfaces/admin/components/patterns/indexTable.ab.doc.d.ts.map +0 -1
  395. package/build/ts/surfaces/admin/components/patterns/interstitialNav.ab.doc.d.ts +0 -4
  396. package/build/ts/surfaces/admin/components/patterns/interstitialNav.ab.doc.d.ts.map +0 -1
  397. package/build/ts/surfaces/admin/components/patterns/mediaCard.ab.doc.d.ts +0 -4
  398. package/build/ts/surfaces/admin/components/patterns/mediaCard.ab.doc.d.ts.map +0 -1
  399. package/build/ts/surfaces/admin/components/patterns/metricsCard.ab.doc.d.ts +0 -4
  400. package/build/ts/surfaces/admin/components/patterns/metricsCard.ab.doc.d.ts.map +0 -1
  401. package/build/ts/surfaces/admin/components/patterns/resourceList.ab.doc.d.ts +0 -4
  402. package/build/ts/surfaces/admin/components/patterns/resourceList.ab.doc.d.ts.map +0 -1
  403. package/build/ts/surfaces/admin/components/patterns/settings.ab.doc.d.ts +0 -4
  404. package/build/ts/surfaces/admin/components/patterns/settings.ab.doc.d.ts.map +0 -1
  405. package/build/ts/surfaces/admin/components/patterns/setupGuide.ab.doc.d.ts +0 -4
  406. package/build/ts/surfaces/admin/components/patterns/setupGuide.ab.doc.d.ts.map +0 -1
  407. package/build/ts/surfaces/admin/docs-types.d.ts +0 -32
  408. package/build/ts/surfaces/admin/docs-types.d.ts.map +0 -1
  409. package/build/ts/surfaces/checkout/components/Abbreviation/Abbreviation.doc.d.ts +0 -4
  410. package/build/ts/surfaces/checkout/components/Abbreviation/Abbreviation.doc.d.ts.map +0 -1
  411. package/build/ts/surfaces/checkout/components/Announcement/Announcement.doc.d.ts +0 -4
  412. package/build/ts/surfaces/checkout/components/Announcement/Announcement.doc.d.ts.map +0 -1
  413. package/build/ts/surfaces/checkout/components/Badge/Badge.doc.d.ts +0 -4
  414. package/build/ts/surfaces/checkout/components/Badge/Badge.doc.d.ts.map +0 -1
  415. package/build/ts/surfaces/checkout/components/Banner/Banner.doc.d.ts +0 -4
  416. package/build/ts/surfaces/checkout/components/Banner/Banner.doc.d.ts.map +0 -1
  417. package/build/ts/surfaces/checkout/components/Box/Box.doc.d.ts +0 -4
  418. package/build/ts/surfaces/checkout/components/Box/Box.doc.d.ts.map +0 -1
  419. package/build/ts/surfaces/checkout/components/Button/Button.doc.d.ts +0 -4
  420. package/build/ts/surfaces/checkout/components/Button/Button.doc.d.ts.map +0 -1
  421. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.doc.d.ts +0 -4
  422. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  423. package/build/ts/surfaces/checkout/components/Chip/Chip.doc.d.ts +0 -4
  424. package/build/ts/surfaces/checkout/components/Chip/Chip.doc.d.ts.map +0 -1
  425. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  426. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  427. package/build/ts/surfaces/checkout/components/Clickable/Clickable.doc.d.ts +0 -4
  428. package/build/ts/surfaces/checkout/components/Clickable/Clickable.doc.d.ts.map +0 -1
  429. package/build/ts/surfaces/checkout/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  430. package/build/ts/surfaces/checkout/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  431. package/build/ts/surfaces/checkout/components/ClipboardItem/ClipboardItem.doc.d.ts +0 -4
  432. package/build/ts/surfaces/checkout/components/ClipboardItem/ClipboardItem.doc.d.ts.map +0 -1
  433. package/build/ts/surfaces/checkout/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts +0 -4
  434. package/build/ts/surfaces/checkout/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts.map +0 -1
  435. package/build/ts/surfaces/checkout/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts +0 -4
  436. package/build/ts/surfaces/checkout/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts.map +0 -1
  437. package/build/ts/surfaces/checkout/components/DateField/DateField.doc.d.ts +0 -4
  438. package/build/ts/surfaces/checkout/components/DateField/DateField.doc.d.ts.map +0 -1
  439. package/build/ts/surfaces/checkout/components/DatePicker/DatePicker.doc.d.ts +0 -4
  440. package/build/ts/surfaces/checkout/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  441. package/build/ts/surfaces/checkout/components/Details/Details.doc.d.ts +0 -4
  442. package/build/ts/surfaces/checkout/components/Details/Details.doc.d.ts.map +0 -1
  443. package/build/ts/surfaces/checkout/components/Divider/Divider.doc.d.ts +0 -4
  444. package/build/ts/surfaces/checkout/components/Divider/Divider.doc.d.ts.map +0 -1
  445. package/build/ts/surfaces/checkout/components/DropZone/DropZone.doc.d.ts +0 -4
  446. package/build/ts/surfaces/checkout/components/DropZone/DropZone.doc.d.ts.map +0 -1
  447. package/build/ts/surfaces/checkout/components/EmailField/EmailField.doc.d.ts +0 -4
  448. package/build/ts/surfaces/checkout/components/EmailField/EmailField.doc.d.ts.map +0 -1
  449. package/build/ts/surfaces/checkout/components/Form/Form.doc.d.ts +0 -4
  450. package/build/ts/surfaces/checkout/components/Form/Form.doc.d.ts.map +0 -1
  451. package/build/ts/surfaces/checkout/components/Grid/Grid.doc.d.ts +0 -4
  452. package/build/ts/surfaces/checkout/components/Grid/Grid.doc.d.ts.map +0 -1
  453. package/build/ts/surfaces/checkout/components/Heading/Heading.doc.d.ts +0 -4
  454. package/build/ts/surfaces/checkout/components/Heading/Heading.doc.d.ts.map +0 -1
  455. package/build/ts/surfaces/checkout/components/Icon/Icon.doc.d.ts +0 -4
  456. package/build/ts/surfaces/checkout/components/Icon/Icon.doc.d.ts.map +0 -1
  457. package/build/ts/surfaces/checkout/components/Image/Image.doc.d.ts +0 -4
  458. package/build/ts/surfaces/checkout/components/Image/Image.doc.d.ts.map +0 -1
  459. package/build/ts/surfaces/checkout/components/Link/Link.doc.d.ts +0 -4
  460. package/build/ts/surfaces/checkout/components/Link/Link.doc.d.ts.map +0 -1
  461. package/build/ts/surfaces/checkout/components/Map/Map.doc.d.ts +0 -4
  462. package/build/ts/surfaces/checkout/components/Map/Map.doc.d.ts.map +0 -1
  463. package/build/ts/surfaces/checkout/components/Modal/Modal.doc.d.ts +0 -4
  464. package/build/ts/surfaces/checkout/components/Modal/Modal.doc.d.ts.map +0 -1
  465. package/build/ts/surfaces/checkout/components/MoneyField/MoneyField.doc.d.ts +0 -4
  466. package/build/ts/surfaces/checkout/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  467. package/build/ts/surfaces/checkout/components/NumberField/NumberField.doc.d.ts +0 -4
  468. package/build/ts/surfaces/checkout/components/NumberField/NumberField.doc.d.ts.map +0 -1
  469. package/build/ts/surfaces/checkout/components/OrderedList/OrderedList.doc.d.ts +0 -4
  470. package/build/ts/surfaces/checkout/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  471. package/build/ts/surfaces/checkout/components/Paragraph/Paragraph.doc.d.ts +0 -4
  472. package/build/ts/surfaces/checkout/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  473. package/build/ts/surfaces/checkout/components/PasswordField/PasswordField.doc.d.ts +0 -4
  474. package/build/ts/surfaces/checkout/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  475. package/build/ts/surfaces/checkout/components/PaymentIcon/PaymentIcon.doc.d.ts +0 -4
  476. package/build/ts/surfaces/checkout/components/PaymentIcon/PaymentIcon.doc.d.ts.map +0 -1
  477. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.doc.d.ts +0 -4
  478. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.doc.d.ts.map +0 -1
  479. package/build/ts/surfaces/checkout/components/Popover/Popover.doc.d.ts +0 -4
  480. package/build/ts/surfaces/checkout/components/Popover/Popover.doc.d.ts.map +0 -1
  481. package/build/ts/surfaces/checkout/components/PressButton/PressButton.doc.d.ts +0 -4
  482. package/build/ts/surfaces/checkout/components/PressButton/PressButton.doc.d.ts.map +0 -1
  483. package/build/ts/surfaces/checkout/components/ProductThumbnail/ProductThumbnail.doc.d.ts +0 -4
  484. package/build/ts/surfaces/checkout/components/ProductThumbnail/ProductThumbnail.doc.d.ts.map +0 -1
  485. package/build/ts/surfaces/checkout/components/Progress/Progress.doc.d.ts +0 -4
  486. package/build/ts/surfaces/checkout/components/Progress/Progress.doc.d.ts.map +0 -1
  487. package/build/ts/surfaces/checkout/components/QRCode/QRCode.doc.d.ts +0 -4
  488. package/build/ts/surfaces/checkout/components/QRCode/QRCode.doc.d.ts.map +0 -1
  489. package/build/ts/surfaces/checkout/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  490. package/build/ts/surfaces/checkout/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  491. package/build/ts/surfaces/checkout/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  492. package/build/ts/surfaces/checkout/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  493. package/build/ts/surfaces/checkout/components/Section/Section.doc.d.ts +0 -4
  494. package/build/ts/surfaces/checkout/components/Section/Section.doc.d.ts.map +0 -1
  495. package/build/ts/surfaces/checkout/components/Select/Select.doc.d.ts +0 -4
  496. package/build/ts/surfaces/checkout/components/Select/Select.doc.d.ts.map +0 -1
  497. package/build/ts/surfaces/checkout/components/Sheet/Sheet.doc.d.ts +0 -4
  498. package/build/ts/surfaces/checkout/components/Sheet/Sheet.doc.d.ts.map +0 -1
  499. package/build/ts/surfaces/checkout/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts +0 -4
  500. package/build/ts/surfaces/checkout/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts.map +0 -1
  501. package/build/ts/surfaces/checkout/components/Spinner/Spinner.doc.d.ts +0 -4
  502. package/build/ts/surfaces/checkout/components/Spinner/Spinner.doc.d.ts.map +0 -1
  503. package/build/ts/surfaces/checkout/components/Stack/Stack.doc.d.ts +0 -4
  504. package/build/ts/surfaces/checkout/components/Stack/Stack.doc.d.ts.map +0 -1
  505. package/build/ts/surfaces/checkout/components/Switch/Switch.doc.d.ts +0 -4
  506. package/build/ts/surfaces/checkout/components/Switch/Switch.doc.d.ts.map +0 -1
  507. package/build/ts/surfaces/checkout/components/Text/Text.doc.d.ts +0 -4
  508. package/build/ts/surfaces/checkout/components/Text/Text.doc.d.ts.map +0 -1
  509. package/build/ts/surfaces/checkout/components/TextArea/TextArea.doc.d.ts +0 -4
  510. package/build/ts/surfaces/checkout/components/TextArea/TextArea.doc.d.ts.map +0 -1
  511. package/build/ts/surfaces/checkout/components/TextField/TextField.doc.d.ts +0 -4
  512. package/build/ts/surfaces/checkout/components/TextField/TextField.doc.d.ts.map +0 -1
  513. package/build/ts/surfaces/checkout/components/Time/Time.doc.d.ts +0 -4
  514. package/build/ts/surfaces/checkout/components/Time/Time.doc.d.ts.map +0 -1
  515. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.doc.d.ts +0 -4
  516. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  517. package/build/ts/surfaces/checkout/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  518. package/build/ts/surfaces/checkout/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  519. package/build/ts/surfaces/checkout/components/UrlField/UrlField.doc.d.ts +0 -4
  520. package/build/ts/surfaces/checkout/components/UrlField/UrlField.doc.d.ts.map +0 -1
  521. package/build/ts/surfaces/checkout/helper.docs.d.ts +0 -15
  522. package/build/ts/surfaces/checkout/helper.docs.d.ts.map +0 -1
  523. package/build/ts/surfaces/customer-account/components/Abbreviation/Abbreviation.doc.d.ts +0 -4
  524. package/build/ts/surfaces/customer-account/components/Abbreviation/Abbreviation.doc.d.ts.map +0 -1
  525. package/build/ts/surfaces/customer-account/components/Announcement/Announcement.doc.d.ts +0 -4
  526. package/build/ts/surfaces/customer-account/components/Announcement/Announcement.doc.d.ts.map +0 -1
  527. package/build/ts/surfaces/customer-account/components/Avatar/Avatar.doc.d.ts +0 -4
  528. package/build/ts/surfaces/customer-account/components/Avatar/Avatar.doc.d.ts.map +0 -1
  529. package/build/ts/surfaces/customer-account/components/Badge/Badge.doc.d.ts +0 -4
  530. package/build/ts/surfaces/customer-account/components/Badge/Badge.doc.d.ts.map +0 -1
  531. package/build/ts/surfaces/customer-account/components/Banner/Banner.doc.d.ts +0 -4
  532. package/build/ts/surfaces/customer-account/components/Banner/Banner.doc.d.ts.map +0 -1
  533. package/build/ts/surfaces/customer-account/components/Box/Box.doc.d.ts +0 -4
  534. package/build/ts/surfaces/customer-account/components/Box/Box.doc.d.ts.map +0 -1
  535. package/build/ts/surfaces/customer-account/components/Button/Button.doc.d.ts +0 -4
  536. package/build/ts/surfaces/customer-account/components/Button/Button.doc.d.ts.map +0 -1
  537. package/build/ts/surfaces/customer-account/components/ButtonGroup/ButtonGroup.doc.d.ts +0 -4
  538. package/build/ts/surfaces/customer-account/components/ButtonGroup/ButtonGroup.doc.d.ts.map +0 -1
  539. package/build/ts/surfaces/customer-account/components/Checkbox/Checkbox.doc.d.ts +0 -4
  540. package/build/ts/surfaces/customer-account/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  541. package/build/ts/surfaces/customer-account/components/Chip/Chip.doc.d.ts +0 -4
  542. package/build/ts/surfaces/customer-account/components/Chip/Chip.doc.d.ts.map +0 -1
  543. package/build/ts/surfaces/customer-account/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  544. package/build/ts/surfaces/customer-account/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  545. package/build/ts/surfaces/customer-account/components/Clickable/Clickable.doc.d.ts +0 -4
  546. package/build/ts/surfaces/customer-account/components/Clickable/Clickable.doc.d.ts.map +0 -1
  547. package/build/ts/surfaces/customer-account/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  548. package/build/ts/surfaces/customer-account/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  549. package/build/ts/surfaces/customer-account/components/ClipboardItem/ClipboardItem.doc.d.ts +0 -4
  550. package/build/ts/surfaces/customer-account/components/ClipboardItem/ClipboardItem.doc.d.ts.map +0 -1
  551. package/build/ts/surfaces/customer-account/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts +0 -4
  552. package/build/ts/surfaces/customer-account/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts.map +0 -1
  553. package/build/ts/surfaces/customer-account/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts +0 -4
  554. package/build/ts/surfaces/customer-account/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts.map +0 -1
  555. package/build/ts/surfaces/customer-account/components/CustomerAccountAction/CustomerAccountAction.doc.d.ts +0 -4
  556. package/build/ts/surfaces/customer-account/components/CustomerAccountAction/CustomerAccountAction.doc.d.ts.map +0 -1
  557. package/build/ts/surfaces/customer-account/components/DateField/DateField.doc.d.ts +0 -4
  558. package/build/ts/surfaces/customer-account/components/DateField/DateField.doc.d.ts.map +0 -1
  559. package/build/ts/surfaces/customer-account/components/DatePicker/DatePicker.doc.d.ts +0 -4
  560. package/build/ts/surfaces/customer-account/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  561. package/build/ts/surfaces/customer-account/components/Details/Details.doc.d.ts +0 -4
  562. package/build/ts/surfaces/customer-account/components/Details/Details.doc.d.ts.map +0 -1
  563. package/build/ts/surfaces/customer-account/components/Divider/Divider.doc.d.ts +0 -4
  564. package/build/ts/surfaces/customer-account/components/Divider/Divider.doc.d.ts.map +0 -1
  565. package/build/ts/surfaces/customer-account/components/DropZone/DropZone.doc.d.ts +0 -4
  566. package/build/ts/surfaces/customer-account/components/DropZone/DropZone.doc.d.ts.map +0 -1
  567. package/build/ts/surfaces/customer-account/components/EmailField/EmailField.doc.d.ts +0 -4
  568. package/build/ts/surfaces/customer-account/components/EmailField/EmailField.doc.d.ts.map +0 -1
  569. package/build/ts/surfaces/customer-account/components/Form/Form.doc.d.ts +0 -4
  570. package/build/ts/surfaces/customer-account/components/Form/Form.doc.d.ts.map +0 -1
  571. package/build/ts/surfaces/customer-account/components/Grid/Grid.doc.d.ts +0 -4
  572. package/build/ts/surfaces/customer-account/components/Grid/Grid.doc.d.ts.map +0 -1
  573. package/build/ts/surfaces/customer-account/components/Heading/Heading.doc.d.ts +0 -4
  574. package/build/ts/surfaces/customer-account/components/Heading/Heading.doc.d.ts.map +0 -1
  575. package/build/ts/surfaces/customer-account/components/Icon/Icon.doc.d.ts +0 -4
  576. package/build/ts/surfaces/customer-account/components/Icon/Icon.doc.d.ts.map +0 -1
  577. package/build/ts/surfaces/customer-account/components/Image/Image.doc.d.ts +0 -4
  578. package/build/ts/surfaces/customer-account/components/Image/Image.doc.d.ts.map +0 -1
  579. package/build/ts/surfaces/customer-account/components/ImageGroup/ImageGroup.doc.d.ts +0 -4
  580. package/build/ts/surfaces/customer-account/components/ImageGroup/ImageGroup.doc.d.ts.map +0 -1
  581. package/build/ts/surfaces/customer-account/components/Link/Link.doc.d.ts +0 -4
  582. package/build/ts/surfaces/customer-account/components/Link/Link.doc.d.ts.map +0 -1
  583. package/build/ts/surfaces/customer-account/components/Map/Map.doc.d.ts +0 -4
  584. package/build/ts/surfaces/customer-account/components/Map/Map.doc.d.ts.map +0 -1
  585. package/build/ts/surfaces/customer-account/components/Menu/Menu.doc.d.ts +0 -4
  586. package/build/ts/surfaces/customer-account/components/Menu/Menu.doc.d.ts.map +0 -1
  587. package/build/ts/surfaces/customer-account/components/Modal/Modal.doc.d.ts +0 -4
  588. package/build/ts/surfaces/customer-account/components/Modal/Modal.doc.d.ts.map +0 -1
  589. package/build/ts/surfaces/customer-account/components/MoneyField/MoneyField.doc.d.ts +0 -4
  590. package/build/ts/surfaces/customer-account/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  591. package/build/ts/surfaces/customer-account/components/NumberField/NumberField.doc.d.ts +0 -4
  592. package/build/ts/surfaces/customer-account/components/NumberField/NumberField.doc.d.ts.map +0 -1
  593. package/build/ts/surfaces/customer-account/components/OrderedList/OrderedList.doc.d.ts +0 -4
  594. package/build/ts/surfaces/customer-account/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  595. package/build/ts/surfaces/customer-account/components/Page/Page.doc.d.ts +0 -4
  596. package/build/ts/surfaces/customer-account/components/Page/Page.doc.d.ts.map +0 -1
  597. package/build/ts/surfaces/customer-account/components/Paragraph/Paragraph.doc.d.ts +0 -4
  598. package/build/ts/surfaces/customer-account/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  599. package/build/ts/surfaces/customer-account/components/PasswordField/PasswordField.doc.d.ts +0 -4
  600. package/build/ts/surfaces/customer-account/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  601. package/build/ts/surfaces/customer-account/components/PaymentIcon/PaymentIcon.doc.d.ts +0 -4
  602. package/build/ts/surfaces/customer-account/components/PaymentIcon/PaymentIcon.doc.d.ts.map +0 -1
  603. package/build/ts/surfaces/customer-account/components/PhoneField/PhoneField.doc.d.ts +0 -4
  604. package/build/ts/surfaces/customer-account/components/PhoneField/PhoneField.doc.d.ts.map +0 -1
  605. package/build/ts/surfaces/customer-account/components/Popover/Popover.doc.d.ts +0 -4
  606. package/build/ts/surfaces/customer-account/components/Popover/Popover.doc.d.ts.map +0 -1
  607. package/build/ts/surfaces/customer-account/components/PressButton/PressButton.doc.d.ts +0 -4
  608. package/build/ts/surfaces/customer-account/components/PressButton/PressButton.doc.d.ts.map +0 -1
  609. package/build/ts/surfaces/customer-account/components/ProductThumbnail/ProductThumbnail.doc.d.ts +0 -4
  610. package/build/ts/surfaces/customer-account/components/ProductThumbnail/ProductThumbnail.doc.d.ts.map +0 -1
  611. package/build/ts/surfaces/customer-account/components/Progress/Progress.doc.d.ts +0 -4
  612. package/build/ts/surfaces/customer-account/components/Progress/Progress.doc.d.ts.map +0 -1
  613. package/build/ts/surfaces/customer-account/components/QRCode/QRCode.doc.d.ts +0 -4
  614. package/build/ts/surfaces/customer-account/components/QRCode/QRCode.doc.d.ts.map +0 -1
  615. package/build/ts/surfaces/customer-account/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  616. package/build/ts/surfaces/customer-account/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  617. package/build/ts/surfaces/customer-account/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  618. package/build/ts/surfaces/customer-account/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  619. package/build/ts/surfaces/customer-account/components/Section/Section.doc.d.ts +0 -4
  620. package/build/ts/surfaces/customer-account/components/Section/Section.doc.d.ts.map +0 -1
  621. package/build/ts/surfaces/customer-account/components/Select/Select.doc.d.ts +0 -4
  622. package/build/ts/surfaces/customer-account/components/Select/Select.doc.d.ts.map +0 -1
  623. package/build/ts/surfaces/customer-account/components/Sheet/Sheet.doc.d.ts +0 -4
  624. package/build/ts/surfaces/customer-account/components/Sheet/Sheet.doc.d.ts.map +0 -1
  625. package/build/ts/surfaces/customer-account/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts +0 -4
  626. package/build/ts/surfaces/customer-account/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts.map +0 -1
  627. package/build/ts/surfaces/customer-account/components/Spinner/Spinner.doc.d.ts +0 -4
  628. package/build/ts/surfaces/customer-account/components/Spinner/Spinner.doc.d.ts.map +0 -1
  629. package/build/ts/surfaces/customer-account/components/Stack/Stack.doc.d.ts +0 -4
  630. package/build/ts/surfaces/customer-account/components/Stack/Stack.doc.d.ts.map +0 -1
  631. package/build/ts/surfaces/customer-account/components/Switch/Switch.doc.d.ts +0 -4
  632. package/build/ts/surfaces/customer-account/components/Switch/Switch.doc.d.ts.map +0 -1
  633. package/build/ts/surfaces/customer-account/components/Text/Text.doc.d.ts +0 -4
  634. package/build/ts/surfaces/customer-account/components/Text/Text.doc.d.ts.map +0 -1
  635. package/build/ts/surfaces/customer-account/components/TextArea/TextArea.doc.d.ts +0 -4
  636. package/build/ts/surfaces/customer-account/components/TextArea/TextArea.doc.d.ts.map +0 -1
  637. package/build/ts/surfaces/customer-account/components/TextField/TextField.doc.d.ts +0 -4
  638. package/build/ts/surfaces/customer-account/components/TextField/TextField.doc.d.ts.map +0 -1
  639. package/build/ts/surfaces/customer-account/components/Time/Time.doc.d.ts +0 -4
  640. package/build/ts/surfaces/customer-account/components/Time/Time.doc.d.ts.map +0 -1
  641. package/build/ts/surfaces/customer-account/components/Tooltip/Tooltip.doc.d.ts +0 -4
  642. package/build/ts/surfaces/customer-account/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  643. package/build/ts/surfaces/customer-account/components/URLField/URLField.doc.d.ts +0 -4
  644. package/build/ts/surfaces/customer-account/components/URLField/URLField.doc.d.ts.map +0 -1
  645. package/build/ts/surfaces/customer-account/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  646. package/build/ts/surfaces/customer-account/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  647. package/build/ts/surfaces/point-of-sale/components/Badge/Badge.doc.d.ts +0 -4
  648. package/build/ts/surfaces/point-of-sale/components/Badge/Badge.doc.d.ts.map +0 -1
  649. package/build/ts/surfaces/point-of-sale/components/Banner/Banner.doc.d.ts +0 -4
  650. package/build/ts/surfaces/point-of-sale/components/Banner/Banner.doc.d.ts.map +0 -1
  651. package/build/ts/surfaces/point-of-sale/components/Box/Box.doc.d.ts +0 -4
  652. package/build/ts/surfaces/point-of-sale/components/Box/Box.doc.d.ts.map +0 -1
  653. package/build/ts/surfaces/point-of-sale/components/Button/Button.doc.d.ts +0 -4
  654. package/build/ts/surfaces/point-of-sale/components/Button/Button.doc.d.ts.map +0 -1
  655. package/build/ts/surfaces/point-of-sale/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  656. package/build/ts/surfaces/point-of-sale/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  657. package/build/ts/surfaces/point-of-sale/components/Clickable/Clickable.doc.d.ts +0 -4
  658. package/build/ts/surfaces/point-of-sale/components/Clickable/Clickable.doc.d.ts.map +0 -1
  659. package/build/ts/surfaces/point-of-sale/components/DateField/DateField.doc.d.ts +0 -4
  660. package/build/ts/surfaces/point-of-sale/components/DateField/DateField.doc.d.ts.map +0 -1
  661. package/build/ts/surfaces/point-of-sale/components/DatePicker/DatePicker.doc.d.ts +0 -4
  662. package/build/ts/surfaces/point-of-sale/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  663. package/build/ts/surfaces/point-of-sale/components/DateSpinner/DateSpinner.doc.d.ts +0 -4
  664. package/build/ts/surfaces/point-of-sale/components/DateSpinner/DateSpinner.doc.d.ts.map +0 -1
  665. package/build/ts/surfaces/point-of-sale/components/Divider/Divider.doc.d.ts +0 -4
  666. package/build/ts/surfaces/point-of-sale/components/Divider/Divider.doc.d.ts.map +0 -1
  667. package/build/ts/surfaces/point-of-sale/components/EmailField/EmailField.doc.d.ts +0 -4
  668. package/build/ts/surfaces/point-of-sale/components/EmailField/EmailField.doc.d.ts.map +0 -1
  669. package/build/ts/surfaces/point-of-sale/components/Embed/Embed.doc.d.ts +0 -4
  670. package/build/ts/surfaces/point-of-sale/components/Embed/Embed.doc.d.ts.map +0 -1
  671. package/build/ts/surfaces/point-of-sale/components/EmptyState/EmptyState.doc.d.ts +0 -4
  672. package/build/ts/surfaces/point-of-sale/components/EmptyState/EmptyState.doc.d.ts.map +0 -1
  673. package/build/ts/surfaces/point-of-sale/components/Heading/Heading.doc.d.ts +0 -4
  674. package/build/ts/surfaces/point-of-sale/components/Heading/Heading.doc.d.ts.map +0 -1
  675. package/build/ts/surfaces/point-of-sale/components/Icon/Icon.doc.d.ts +0 -4
  676. package/build/ts/surfaces/point-of-sale/components/Icon/Icon.doc.d.ts.map +0 -1
  677. package/build/ts/surfaces/point-of-sale/components/Image/Image.doc.d.ts +0 -4
  678. package/build/ts/surfaces/point-of-sale/components/Image/Image.doc.d.ts.map +0 -1
  679. package/build/ts/surfaces/point-of-sale/components/Link/Link.doc.d.ts +0 -4
  680. package/build/ts/surfaces/point-of-sale/components/Link/Link.doc.d.ts.map +0 -1
  681. package/build/ts/surfaces/point-of-sale/components/Modal/Modal.doc.d.ts +0 -4
  682. package/build/ts/surfaces/point-of-sale/components/Modal/Modal.doc.d.ts.map +0 -1
  683. package/build/ts/surfaces/point-of-sale/components/NumberField/NumberField.doc.d.ts +0 -4
  684. package/build/ts/surfaces/point-of-sale/components/NumberField/NumberField.doc.d.ts.map +0 -1
  685. package/build/ts/surfaces/point-of-sale/components/Page/Page.doc.d.ts +0 -4
  686. package/build/ts/surfaces/point-of-sale/components/Page/Page.doc.d.ts.map +0 -1
  687. package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts +0 -4
  688. package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts.map +0 -1
  689. package/build/ts/surfaces/point-of-sale/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  690. package/build/ts/surfaces/point-of-sale/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  691. package/build/ts/surfaces/point-of-sale/components/SearchField/SearchField.doc.d.ts +0 -4
  692. package/build/ts/surfaces/point-of-sale/components/SearchField/SearchField.doc.d.ts.map +0 -1
  693. package/build/ts/surfaces/point-of-sale/components/Section/Section.doc.d.ts +0 -4
  694. package/build/ts/surfaces/point-of-sale/components/Section/Section.doc.d.ts.map +0 -1
  695. package/build/ts/surfaces/point-of-sale/components/Spinner/Spinner.doc.d.ts +0 -4
  696. package/build/ts/surfaces/point-of-sale/components/Spinner/Spinner.doc.d.ts.map +0 -1
  697. package/build/ts/surfaces/point-of-sale/components/Stack/Stack.doc.d.ts +0 -4
  698. package/build/ts/surfaces/point-of-sale/components/Stack/Stack.doc.d.ts.map +0 -1
  699. package/build/ts/surfaces/point-of-sale/components/Switch/Switch.doc.d.ts +0 -4
  700. package/build/ts/surfaces/point-of-sale/components/Switch/Switch.doc.d.ts.map +0 -1
  701. package/build/ts/surfaces/point-of-sale/components/Tabs/Tabs.doc.d.ts +0 -4
  702. package/build/ts/surfaces/point-of-sale/components/Tabs/Tabs.doc.d.ts.map +0 -1
  703. package/build/ts/surfaces/point-of-sale/components/Text/Text.doc.d.ts +0 -4
  704. package/build/ts/surfaces/point-of-sale/components/Text/Text.doc.d.ts.map +0 -1
  705. package/build/ts/surfaces/point-of-sale/components/TextArea/TextArea.doc.d.ts +0 -4
  706. package/build/ts/surfaces/point-of-sale/components/TextArea/TextArea.doc.d.ts.map +0 -1
  707. package/build/ts/surfaces/point-of-sale/components/TextField/TextField.doc.d.ts +0 -4
  708. package/build/ts/surfaces/point-of-sale/components/TextField/TextField.doc.d.ts.map +0 -1
  709. package/build/ts/surfaces/point-of-sale/components/Tile/Tile.doc.d.ts +0 -4
  710. package/build/ts/surfaces/point-of-sale/components/Tile/Tile.doc.d.ts.map +0 -1
  711. package/build/ts/surfaces/point-of-sale/components/TimeField/TimeField.doc.d.ts +0 -4
  712. package/build/ts/surfaces/point-of-sale/components/TimeField/TimeField.doc.d.ts.map +0 -1
  713. package/build/ts/surfaces/point-of-sale/components/TimePicker/TimePicker.doc.d.ts +0 -4
  714. package/build/ts/surfaces/point-of-sale/components/TimePicker/TimePicker.doc.d.ts.map +0 -1
  715. package/src/docs/shared/component-definitions.ts +0 -190
  716. package/src/docs/shared/components/Abbreviation.ts +0 -12
  717. package/src/docs/shared/components/Announcement.ts +0 -12
  718. package/src/docs/shared/components/Avatar.ts +0 -13
  719. package/src/docs/shared/components/Badge.ts +0 -13
  720. package/src/docs/shared/components/Banner.ts +0 -13
  721. package/src/docs/shared/components/Box.ts +0 -13
  722. package/src/docs/shared/components/Button.ts +0 -13
  723. package/src/docs/shared/components/ButtonGroup.ts +0 -13
  724. package/src/docs/shared/components/Checkbox.ts +0 -13
  725. package/src/docs/shared/components/Chip.ts +0 -13
  726. package/src/docs/shared/components/Choice.ts +0 -13
  727. package/src/docs/shared/components/ChoiceList.ts +0 -13
  728. package/src/docs/shared/components/Clickable.ts +0 -13
  729. package/src/docs/shared/components/ClickableChip.ts +0 -13
  730. package/src/docs/shared/components/ClipboardItem.ts +0 -12
  731. package/src/docs/shared/components/ColorField.ts +0 -13
  732. package/src/docs/shared/components/ColorPicker.ts +0 -13
  733. package/src/docs/shared/components/ConsentCheckbox.ts +0 -12
  734. package/src/docs/shared/components/ConsentPhoneField.ts +0 -12
  735. package/src/docs/shared/components/DateField.ts +0 -13
  736. package/src/docs/shared/components/DatePicker.ts +0 -13
  737. package/src/docs/shared/components/Details.ts +0 -12
  738. package/src/docs/shared/components/Divider.ts +0 -13
  739. package/src/docs/shared/components/DropZone.ts +0 -12
  740. package/src/docs/shared/components/EmailField.ts +0 -13
  741. package/src/docs/shared/components/Form.ts +0 -13
  742. package/src/docs/shared/components/FunctionSettings.ts +0 -13
  743. package/src/docs/shared/components/Grid.ts +0 -13
  744. package/src/docs/shared/components/GridItem.ts +0 -13
  745. package/src/docs/shared/components/Heading.ts +0 -13
  746. package/src/docs/shared/components/Icon.ts +0 -13
  747. package/src/docs/shared/components/Image.ts +0 -13
  748. package/src/docs/shared/components/Link.ts +0 -13
  749. package/src/docs/shared/components/ListItem.ts +0 -13
  750. package/src/docs/shared/components/Map.ts +0 -12
  751. package/src/docs/shared/components/MapMarker.ts +0 -12
  752. package/src/docs/shared/components/Menu.ts +0 -13
  753. package/src/docs/shared/components/Modal.ts +0 -12
  754. package/src/docs/shared/components/MoneyField.ts +0 -13
  755. package/src/docs/shared/components/NumberField.ts +0 -13
  756. package/src/docs/shared/components/Option.ts +0 -12
  757. package/src/docs/shared/components/OptionGroup.ts +0 -12
  758. package/src/docs/shared/components/OrderedList.ts +0 -13
  759. package/src/docs/shared/components/Page.ts +0 -12
  760. package/src/docs/shared/components/Paragraph.ts +0 -13
  761. package/src/docs/shared/components/PasswordField.ts +0 -13
  762. package/src/docs/shared/components/PaymentIcon.ts +0 -12
  763. package/src/docs/shared/components/PhoneField.ts +0 -11
  764. package/src/docs/shared/components/Popover.ts +0 -12
  765. package/src/docs/shared/components/PressButton.ts +0 -12
  766. package/src/docs/shared/components/ProductThumbnail.ts +0 -11
  767. package/src/docs/shared/components/Progress.ts +0 -12
  768. package/src/docs/shared/components/QRCode.ts +0 -12
  769. package/src/docs/shared/components/QueryContainer.ts +0 -13
  770. package/src/docs/shared/components/ScrollBox.ts +0 -12
  771. package/src/docs/shared/components/SearchField.ts +0 -12
  772. package/src/docs/shared/components/Section.ts +0 -13
  773. package/src/docs/shared/components/Select.ts +0 -13
  774. package/src/docs/shared/components/Sheet.ts +0 -14
  775. package/src/docs/shared/components/SkeletonParagraph.ts +0 -12
  776. package/src/docs/shared/components/Spinner.ts +0 -13
  777. package/src/docs/shared/components/Stack.ts +0 -13
  778. package/src/docs/shared/components/Summary.ts +0 -12
  779. package/src/docs/shared/components/Switch.ts +0 -13
  780. package/src/docs/shared/components/Table.ts +0 -13
  781. package/src/docs/shared/components/TableBody.ts +0 -13
  782. package/src/docs/shared/components/TableCell.ts +0 -13
  783. package/src/docs/shared/components/TableHeader.ts +0 -13
  784. package/src/docs/shared/components/TableHeaderRow.ts +0 -13
  785. package/src/docs/shared/components/TableRow.ts +0 -13
  786. package/src/docs/shared/components/Text.ts +0 -13
  787. package/src/docs/shared/components/TextArea.ts +0 -13
  788. package/src/docs/shared/components/TextField.ts +0 -13
  789. package/src/docs/shared/components/Thumbnail.ts +0 -13
  790. package/src/docs/shared/components/Time.ts +0 -12
  791. package/src/docs/shared/components/Tooltip.ts +0 -13
  792. package/src/docs/shared/components/URLField.ts +0 -13
  793. package/src/docs/shared/components/UnorderedList.ts +0 -13
  794. package/src/docs/shared/components/index.ts +0 -52
  795. package/src/docs/shared/docs-type.ts +0 -7
  796. package/src/surfaces/admin/components/Icon/icon-data.json +0 -9
  797. package/src/surfaces/admin/components/patterns/index.ab.doc.ts +0 -80
  798. package/src/surfaces/admin/docs-types.ts +0 -45
  799. package/src/surfaces/checkout/helper.docs.ts +0 -166
@@ -11,21 +11,32 @@
11
11
  import type {CheckboxProps$1} from './components-shared.d.ts';
12
12
 
13
13
  /**
14
- * Used when an element does not have children.
14
+ * The base properties for elements that don't have children, providing essential attributes like keys and refs for component management.
15
15
  */
16
16
  export interface BaseElementProps<TClass = HTMLElement> {
17
+ /**
18
+ * A unique identifier for this element within its parent. This is used by the rendering engine for efficient reconciliation when lists change.
19
+ */
17
20
  key?: preact.Key;
21
+ /**
22
+ * A reference to the underlying DOM element, typically created using `useRef()`. This allows you to access and manipulate the DOM element directly in your component logic.
23
+ */
18
24
  ref?: preact.Ref<TClass>;
25
+ /**
26
+ * Assigns the element to a named slot in a parent component that uses slot-based composition patterns.
27
+ */
19
28
  slot?: Lowercase<string>;
20
29
  }
21
30
  /**
22
31
  * An event type that narrows the `currentTarget` to the specific HTML element associated with the custom element tag. This provides type-safe event handling in callback listeners.
32
+ * @publicDocs
23
33
  */
24
34
  export type CallbackEvent<TTagName extends keyof HTMLElementTagNameMap, TEvent extends Event = Event> = TEvent & {
25
35
  currentTarget: HTMLElementTagNameMap[TTagName];
26
36
  };
27
37
  /**
28
38
  * A typed event listener for custom element events. The listener receives a `CallbackEvent` with the correct `currentTarget` type for the associated custom element tag.
39
+ * @publicDocs
29
40
  */
30
41
  export type CallbackEventListener<TTagName extends keyof HTMLElementTagNameMap, TData = object> = (EventListener & {
31
42
  (event: CallbackEvent<TTagName, Event> & TData): void;
@@ -33,9 +44,16 @@ export type CallbackEventListener<TTagName extends keyof HTMLElementTagNameMap,
33
44
 
34
45
  declare const tagName = "s-checkbox";
35
46
  /** @publicDocs */
36
- export interface CheckboxElementProps extends Pick<CheckboxProps$1, 'accessibilityLabel' | 'checked' | 'command' | 'commandFor' | 'defaultChecked' | 'disabled' | 'error' | 'id' | 'label' | 'name' | 'required' | 'value'> {
47
+ export interface CheckboxElementProps extends Pick<CheckboxProps$1, 'accessibilityLabel' | 'checked' | 'command' | 'commandFor' | 'defaultChecked' | 'disabled' | 'error' | 'id' | 'name' | 'required' | 'value'> {
37
48
  command?: Extract<CheckboxProps$1['command'], '--auto' | '--show' | '--hide' | '--toggle'>;
49
+ /**
50
+ * The visual content to use as the control label. Use a string to provide a simple text label displayed to the user.
51
+ *
52
+ * If a `label` slot is also provided, the slot content takes precedence. [Learn more about slots](/docs/api/{API_NAME}/{API_VERSION}/web-components/forms/checkbox#slots-propertydetail-label).
53
+ */
54
+ label?: string;
38
55
  }
56
+ /** @publicDocs */
39
57
  export interface CheckboxEvents extends Pick<CheckboxProps$1, 'onChange'> {
40
58
  }
41
59
  /** @publicDocs */
@@ -47,9 +65,20 @@ export interface CheckboxElementEvents {
47
65
  */
48
66
  change?: CallbackEventListener<typeof tagName>;
49
67
  }
68
+ /** @publicDocs */
50
69
  export interface CheckboxElement extends CheckboxElementProps, Omit<HTMLElement, 'id' | 'onchange'> {
51
70
  onchange: CheckboxEvents['onChange'];
52
71
  }
72
+ /** @publicDocs */
73
+ export interface CheckboxElementSlots {
74
+ /**
75
+ * The visual content to use as the control label.
76
+ *
77
+ * Use an `HTMLElement` as a rich control label composed of elements. Only an `s-text` element is supported with plain text and `s-link` as its only allowed children. Any other elements are stripped while preserving their text content.
78
+ */
79
+ label?: HTMLElement;
80
+ }
81
+ /** @publicDocs */
53
82
  export interface CheckboxProps extends CheckboxElementProps, CheckboxEvents {
54
83
  }
55
84
  declare global {
@@ -65,4 +94,4 @@ declare module 'preact' {
65
94
  }
66
95
  }
67
96
 
68
- export type { CheckboxElement, CheckboxElementEvents, CheckboxElementProps, CheckboxEvents, CheckboxProps };
97
+ export type { CheckboxElement, CheckboxElementEvents, CheckboxElementProps, CheckboxElementSlots, CheckboxEvents, CheckboxProps };
@@ -65,6 +65,16 @@ export interface ClickableElementProps extends Pick<ClickableProps$1, 'accessibi
65
65
  borderWidth?: MaybeAllValuesShorthandProperty<ReducedBorderSizeKeyword> | '';
66
66
  borderRadius?: MaybeAllValuesShorthandProperty<Extract<ClickableProps$1['borderRadius'], 'none' | 'small-100' | 'small' | 'base' | 'large' | 'large-100' | 'max'>>;
67
67
  target?: Extract<ClickableProps$1['target'], 'auto' | '_blank'>;
68
+ /**
69
+ * The behavioral type of the clickable component, which determines what action it performs when activated.
70
+ *
71
+ * - `submit`: Submits the nearest containing form.
72
+ * - `button`: Performs no default action, relying on the `click` event handler for behavior.
73
+ *
74
+ * This property is ignored if `href` or `commandFor`/`command` is set.
75
+ *
76
+ * @default 'button'
77
+ */
68
78
  type?: Extract<ClickableProps$1['type'], 'submit' | 'button'>;
69
79
  }
70
80
  export interface ClickableEvents extends Pick<ClickableProps$1, 'onBlur' | 'onClick' | 'onFocus'> {
@@ -11,7 +11,7 @@
11
11
  import type {ParagraphProps$1} from './components-shared.d.ts';
12
12
 
13
13
  /**
14
- * Used when an element does not have children.
14
+ * The base properties for elements that don't have children, providing essential attributes like keys and refs for component management.
15
15
  */
16
16
  export interface BaseElementProps<TClass = HTMLElement> {
17
17
  key?: preact.Key;
@@ -19,7 +19,8 @@ export interface BaseElementProps<TClass = HTMLElement> {
19
19
  slot?: Lowercase<string>;
20
20
  }
21
21
  /**
22
- * Used when an element has children.
22
+ * The base properties for elements that have children, extending `BaseElementProps` with children support.
23
+ * @publicDocs
23
24
  */
24
25
  export interface BaseElementPropsWithChildren<TClass = HTMLElement> extends BaseElementProps<TClass> {
25
26
  children?: preact.ComponentChildren;
@@ -31,19 +32,17 @@ export interface ParagraphElementProps extends Pick<ParagraphProps$1, 'accessibi
31
32
  color?: Extract<ParagraphProps$1['color'], 'subdued' | 'base'>;
32
33
  tone?: Extract<ParagraphProps$1['tone'], 'auto' | 'info' | 'success' | 'warning' | 'critical' | 'neutral' | 'custom'>;
33
34
  /**
34
- * The semantic type and styling treatment for the paragraph content.
35
+ * Sets the alignment of the text.
36
+ * @see https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
35
37
  *
36
- * Other presentation properties on `s-paragraph` override the default styling.
37
- *
38
- * - `paragraph`: A semantic type that indicates the text is a structural grouping of related content.
39
- * - `small`: A semantic type that indicates the text is considered less important than the main content, but is still necessary for the reader to understand.
40
- *
41
- * @default 'paragraph'
38
+ * @default 'auto'
42
39
  */
43
- type?: Extract<ParagraphProps$1['type'], 'paragraph' | 'small'>;
40
+ textAlign?: 'start' | 'end' | 'center' | 'auto';
44
41
  }
42
+ /** @publicDocs */
45
43
  export interface ParagraphElement extends ParagraphElementProps, Omit<HTMLElement, 'id' | 'dir' | 'lang'> {
46
44
  }
45
+ /** @publicDocs */
47
46
  export interface ParagraphProps extends ParagraphElementProps {
48
47
  }
49
48
  declare global {
@@ -822,6 +822,8 @@ interface BadgeProps$1 extends GlobalProps {
822
822
  /**
823
823
  * An icon displayed inside the badge to provide additional visual context or reinforce the badge's meaning. Set to an empty string to display no icon.
824
824
  *
825
+ * Always positioned relative to the text content. Independent positioning isn't supported.
826
+ *
825
827
  * @default ''
826
828
  */
827
829
  icon?: IconType | AnyString;
@@ -1410,10 +1412,12 @@ export interface LinkBehaviorProps extends InteractionProps, FocusEventProps {
1410
1412
  export interface InteractionProps {
1411
1413
  /**
1412
1414
  * The ID of the component to control when this component is activated. Pair with the `command` property to specify what action to perform on the target component. Learn more about the [`commandFor` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#commandfor).
1415
+ *
1416
+ * When both `commandFor` and `href` are set, `commandFor` takes precedence. The command runs and the link doesn't navigate.
1413
1417
  */
1414
1418
  commandFor?: string;
1415
1419
  /**
1416
- * Sets the action the [`command`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#command) should take when this component is activated. Available options:
1420
+ * Sets the action the `commandFor` target should take when this component is activated. Available options:
1417
1421
  *
1418
1422
  * - `'--auto'`: Performs the default action appropriate for the target component.
1419
1423
  * - `'--show'`: Displays the target component if it's currently hidden.
@@ -1421,7 +1425,7 @@ export interface InteractionProps {
1421
1425
  * - `'--toggle'`: Alternates the target component between visible and hidden states.
1422
1426
  * - `'--copy'`: Copies the target clipboard item.
1423
1427
  *
1424
- * The supported actions vary by target component type.
1428
+ * The supported actions vary by target component type. Learn more about the [`command` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#command).
1425
1429
  *
1426
1430
  * @default '--auto'
1427
1431
  */
@@ -1537,6 +1541,8 @@ export interface MultipleInputProps extends BaseInputProps {
1537
1541
  * An array of `value` attributes for the currently selected options.
1538
1542
  *
1539
1543
  * This is a convenience prop for setting the `selected` prop on child options.
1544
+ *
1545
+ * Form data captures the selected value strings only. Complex nested content inside choices is for display purposes and isn't included in form submissions.
1540
1546
  */
1541
1547
  values?: string[];
1542
1548
  }
@@ -1805,6 +1811,8 @@ interface CheckboxProps$1 extends GlobalProps, BaseCheckableProps, FieldErrorPro
1805
1811
  * If you want to present an error when this field is empty, you can do
1806
1812
  * so with the `error` property.
1807
1813
  *
1814
+ * Adds semantic meaning for accessibility. Doesn't trigger automatic validation or display an error. Implement validation logic yourself and use the `error` prop to show results.
1815
+ *
1808
1816
  * @default false
1809
1817
  */
1810
1818
  required?: boolean;
@@ -1906,6 +1914,8 @@ interface ChoiceListProps$1 extends GlobalProps, Pick<BasicFieldProps, "label" |
1906
1914
  * - `block`: The choices are displayed on the block axis.
1907
1915
  * - `grid`: The choices are displayed in a grid.
1908
1916
  *
1917
+ * The selected content slot is supported only in the default (stacked) variant. `inline` and `grid` ignore it.
1918
+ *
1909
1919
  * @implementation The `block`, `inline` and `grid` variants are more suitable for button looking choices, but it's at the
1910
1920
  * discretion of each surface.
1911
1921
  *
@@ -1969,6 +1979,8 @@ interface ClickableChipProps$1 extends ChipProps$1, GlobalProps {
1969
1979
  *
1970
1980
  * If the chip is not `removable`, it can still be hidden by setting this property.
1971
1981
  *
1982
+ * When using the `removable` variant, keep `hidden` synced with your app state. If `hidden` isn't updated after the chip is removed, the chip can become permanently hidden.
1983
+ *
1972
1984
  * @default false
1973
1985
  */
1974
1986
  hidden?: boolean;
@@ -1993,6 +2005,8 @@ interface ClipboardItemProps$1 extends GlobalProps {
1993
2005
  /**
1994
2006
  * Plain text to be written to the clipboard.
1995
2007
  *
2008
+ * Rich text, HTML, and binary content aren't supported.
2009
+ *
1996
2010
  * @default ''
1997
2011
  */
1998
2012
  text?: string;
@@ -2051,6 +2065,8 @@ export type ConsentPolicy = "sms-marketing";
2051
2065
  interface ConsentCheckboxProps$1 extends GlobalProps, CheckboxProps$1 {
2052
2066
  /**
2053
2067
  * The policy for which user consent is being collected.
2068
+ *
2069
+ * Only `sms-marketing` is supported. Other consent policy types aren't available through this component.
2054
2070
  */
2055
2071
  policy?: ConsentPolicy;
2056
2072
  }
@@ -2059,6 +2075,8 @@ interface PhoneFieldProps$1 extends GlobalProps, BaseTextFieldProps, Pick<FieldD
2059
2075
  /**
2060
2076
  * The type of phone number to collect. Specific styling may be applied to each type to provide extra guidance to users. No additional validation is performed based on the type.
2061
2077
  *
2078
+ * Styling hint for the input keyboard. Doesn't validate the phone number format. Implement validation in your extension and use the `error` prop to show results.
2079
+ *
2062
2080
  * @default ''
2063
2081
  */
2064
2082
  type?: "mobile" | "";
@@ -2066,6 +2084,8 @@ interface PhoneFieldProps$1 extends GlobalProps, BaseTextFieldProps, Pick<FieldD
2066
2084
  interface ConsentPhoneFieldProps$1 extends GlobalProps, PhoneFieldProps$1 {
2067
2085
  /**
2068
2086
  * The policy for which user consent is being collected.
2087
+ *
2088
+ * Only `sms-marketing` is supported.
2069
2089
  */
2070
2090
  policy?: ConsentPolicy;
2071
2091
  }
@@ -2119,6 +2139,8 @@ interface DatePickerProps$1 extends GlobalProps, InputProps, FocusEventProps {
2119
2139
  * So `--2024` is equivalent to `--2024-12-31`.
2120
2140
  * - Whitespace is allowed either side of `--`.
2121
2141
  *
2142
+ * Comma-separated list of allowed dates in `YYYY-MM-DD` format.
2143
+ *
2122
2144
  * @default ""
2123
2145
  *
2124
2146
  * @example
@@ -2146,6 +2168,8 @@ interface DatePickerProps$1 extends GlobalProps, InputProps, FocusEventProps {
2146
2168
  * So `--2024` is equivalent to `--2024-12-31`.
2147
2169
  * - Whitespace is allowed either side of `--`.
2148
2170
  *
2171
+ * Comma-separated list of disallowed dates in `YYYY-MM-DD` format.
2172
+ *
2149
2173
  * @default ""
2150
2174
  *
2151
2175
  * @example
@@ -2210,6 +2234,8 @@ interface DatePickerProps$1 extends GlobalProps, InputProps, FocusEventProps {
2210
2234
  * - If `type="multiple"`, this is a comma-separated list of dates in `YYYY-MM-DD` format.
2211
2235
  * - If `type="range"`, this is a range in `YYYY-MM-DD--YYYY-MM-DD` format. The range is inclusive.
2212
2236
  *
2237
+ * Single dates use ISO 8601 format (`YYYY-MM-DD`); ranges use `YYYY-MM-DD--YYYY-MM-DD`. Locale-specific formats aren't supported.
2238
+ *
2213
2239
  * @default ""
2214
2240
  */
2215
2241
  value?: string;
@@ -2280,7 +2306,7 @@ interface DividerProps$1 extends GlobalProps {
2280
2306
  * The orientation of the divider, using [logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
2281
2307
  *
2282
2308
  * - `inline`: A horizontal divider that separates content stacked vertically.
2283
- * - `block`: A vertical divider that separates content arranged horizontally.
2309
+ * - `block`: A vertical divider that separates content arranged horizontally. Requires a parent with a defined height to render visibly.
2284
2310
  *
2285
2311
  * @default 'inline'
2286
2312
  */
@@ -2327,6 +2353,9 @@ interface DropZoneProps$1 extends GlobalProps, FileInputProps, BasicFieldProps {
2327
2353
  */
2328
2354
  onDropRejected?: (event: Event) => void;
2329
2355
  }
2356
+ /**
2357
+ * Doesn't perform automatic format validation. Implement validation logic yourself and use the `error` prop to display results.
2358
+ */
2330
2359
  interface EmailFieldProps$1 extends GlobalProps, BaseTextFieldProps, MinMaxLengthProps, AutocompleteProps<EmailAutocompleteField> {
2331
2360
  }
2332
2361
  export type EmailAutocompleteField = ExtractStrict<AnyAutocompleteField, "email" | `${AutocompleteAddressGroup} email`>;
@@ -115,7 +115,7 @@ export interface ToggleEventProps {
115
115
  * - If the element transitioned from showing to hidden, the `oldState` property will be set to `open` and the
116
116
  * `newState` will be `closed`.
117
117
  *
118
- * Learn more about [ToggleEvent.newState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState) and [ToggleEvent.oldState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
118
+ * Learn more about [`newState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState) and [`oldState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
119
119
  */
120
120
  onAfterToggle?: (event: ToggleEvent$1) => void;
121
121
  /**
@@ -126,7 +126,7 @@ export interface ToggleEventProps {
126
126
  * - If the element is transitioning from showing to hidden, then `oldState` property will be set to `open` and the
127
127
  * `newState` will be `closed`.
128
128
  *
129
- * Learn more about the [toggle event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/toggle_event), [ToggleEvent.newState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState), and [ToggleEvent.oldState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
129
+ * Learn more about the [`toggle` event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/toggle_event), [`newState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState), and [`oldState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
130
130
  */
131
131
  onToggle?: (event: ToggleEvent$1) => void;
132
132
  }
@@ -1390,15 +1390,11 @@ export interface LinkBehaviorProps extends InteractionProps, FocusEventProps {
1390
1390
  }
1391
1391
  export interface InteractionProps {
1392
1392
  /**
1393
- * ID of a component that should respond to activations (e.g. clicks) on this component.
1394
- *
1395
- * Pair with the `command` property to specify what action to perform on the target component.
1396
- *
1397
- * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#commandfor
1393
+ * The ID of the component to control when this component is activated. Pair with the `command` property to specify what action to perform on the target component. Learn more about the [`commandFor` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#commandfor).
1398
1394
  */
1399
1395
  commandFor?: string;
1400
1396
  /**
1401
- * Sets the action the `commandFor` should take when this clickable is activated.
1397
+ * Sets the action the `commandFor` target should take when this component is activated.
1402
1398
  *
1403
1399
  * See the documentation of particular components for the actions they support.
1404
1400
  *
@@ -1410,11 +1406,11 @@ export interface InteractionProps {
1410
1406
  *
1411
1407
  * @default '--auto'
1412
1408
  *
1413
- * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#command
1409
+ * Learn more about the [`command` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#command).
1414
1410
  */
1415
1411
  command?: "--auto" | "--show" | "--hide" | "--toggle" | "--copy";
1416
1412
  /**
1417
- * ID of a component that should respond to interest (e.g. hover and focus) on this component.
1413
+ * The ID of the component to show when users hover over or focus on this component. Use this to connect interactive components to popovers or tooltips that provide additional context or information.
1418
1414
  */
1419
1415
  interestFor?: string;
1420
1416
  }
@@ -1481,7 +1477,7 @@ export interface BaseInputProps {
1481
1477
  }
1482
1478
  export interface InputProps extends BaseInputProps {
1483
1479
  /**
1484
- * Callback when the user has **finished editing** a field, e.g. once they have blurred the field.
1480
+ * Callback when the user has **finished editing** a field, such as once they have blurred the field.
1485
1481
  *
1486
1482
  * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event
1487
1483
  */
@@ -2521,8 +2517,8 @@ export interface BaseTypographyProps {
2521
2517
  /**
2522
2518
  * Indicates the directionality of the element’s text.
2523
2519
  *
2524
- * - `ltr`: languages written from left to right (e.g. English)
2525
- * - `rtl`: languages written from right to left (e.g. Arabic)
2520
+ * - `ltr`: languages written from left to right (such as English)
2521
+ * - `rtl`: languages written from right to left (such as Arabic)
2526
2522
  * - `auto`: the user agent determines the direction based on the content
2527
2523
  * - `''`: direction is inherited from parent elements (equivalent to not setting the attribute)
2528
2524
  *
@@ -38,6 +38,8 @@ export function useLocalizedFields<
38
38
  /**
39
39
  * Returns the current localized field or undefined for the specified
40
40
  * localized field key and re-renders your component if the value changes.
41
+ *
42
+ * Returns `undefined` when no field is configured for the buyer's country.
41
43
  * @publicDocs
42
44
  */
43
45
  export function useLocalizedField<
@@ -6,7 +6,7 @@ import {SubscribableSignalLike} from '../shared';
6
6
  */
7
7
  export interface CartLineItemApi {
8
8
  /**
9
- * The cart line the extension is attached to.
9
+ * The cart line that this extension is attached to. Use this to read the line item's merchandise, quantity, cost, and attributes.
10
10
  */
11
11
  target: SubscribableSignalLike<CartLine>;
12
12
  }
@@ -97,9 +97,8 @@ interface ButtonProps {
97
97
  /**
98
98
  * The behavior of the button.
99
99
  *
100
- * - `'submit'` - Used to indicate the component acts as a submit button, meaning it submits the closest form.
101
- * - `'button'` - Used to indicate the component acts as a button, meaning it has no default action.
102
- * - `'reset'` - Used to indicate the component acts as a reset button, meaning it resets the closest form (returning fields to their default values).
100
+ * - `'submit'`: Submits the nearest containing form.
101
+ * - `'button'`: Performs no default action, relying on the `click` event handler for behavior.
103
102
  *
104
103
  * This property is ignored if the component supports `href` or `commandFor`/`command` and one of them is set.
105
104
  *
@@ -157,6 +157,8 @@ export interface Market {
157
157
  }
158
158
 
159
159
  /**
160
+ * Provides raw localization data only. The `i18n` translation and formatting
161
+ * helpers from the Localization API aren't available on order status targets.
160
162
  * @publicDocs
161
163
  */
162
164
  export interface OrderStatusLocalization {
@@ -245,12 +247,18 @@ export interface OrderStatusApi<Target extends ExtensionTarget> {
245
247
 
246
248
  /**
247
249
  * The buyer who placed the order, including their customer account, email, phone number, and B2B purchasing company. Use this to personalize the **Order status** page or identify B2B orders.
250
+ *
251
+ * Reflects the customer account at the time the order was placed. Doesn't
252
+ * update if account details change afterward.
248
253
  */
249
254
  buyerIdentity?: OrderStatusBuyerIdentity;
250
255
 
251
256
  /**
252
257
  * The checkout settings that were active when the buyer placed the order, such as
253
258
  * whether order notes and login are enabled.
259
+ *
260
+ * Returns the merchant's checkout configuration at the time of checkout.
261
+ * Doesn't reflect updates made after the order was placed.
254
262
  */
255
263
  checkoutSettings: SubscribableSignalLike<CheckoutSettings>;
256
264
 
@@ -272,6 +280,9 @@ export interface OrderStatusApi<Target extends ExtensionTarget> {
272
280
  * - `CartCodeDiscountAllocation`: A discount the buyer applied by entering a code at checkout.
273
281
  * - `CartAutomaticDiscountAllocation`: A discount the merchant configured in Shopify admin to apply automatically.
274
282
  * - `CartCustomDiscountAllocation`: A discount created programmatically by a [Shopify Function](/docs/apps/build/functions).
283
+ *
284
+ * Returns order-level discounts only. For per-line discount allocations,
285
+ * read from individual cart lines via the Cart Lines API.
275
286
  */
276
287
  discountAllocations: SubscribableSignalLike<CartDiscountAllocation[]>;
277
288
 
@@ -286,7 +297,7 @@ export interface OrderStatusApi<Target extends ExtensionTarget> {
286
297
  * @example 'customer-account.order-status.block.render'
287
298
  * Learn more about [targets](/docs/api/customer-account-ui-extensions/{API_VERSION}/targets) and [target configuration](/docs/api/customer-account-ui-extensions/{API_VERSION}#configuration).
288
299
  *
289
- * @deprecated Deprecated as of version `2023-07`, use `extension.target` instead.
300
+ * @deprecated Use `extension.target` instead.
290
301
  */
291
302
  extensionPoint: Target;
292
303
 
@@ -329,12 +340,18 @@ export interface OrderStatusApi<Target extends ExtensionTarget> {
329
340
  * The shipping address that the buyer provided for the order. This is where physical goods
330
341
  * are delivered. The value is `undefined` if the order contains only digital products or
331
342
  * if a shipping address wasn't required.
343
+ *
344
+ * Reflects the state at the time the order was placed. Doesn't update if the
345
+ * customer changes their account address afterward.
332
346
  */
333
347
  shippingAddress?: SubscribableSignalLike<MailingAddress | undefined>;
334
348
 
335
349
  /**
336
350
  * The billing address associated with the buyer's payment method for the order. The value
337
351
  * is `undefined` if the order doesn't have a billing address on file.
352
+ *
353
+ * Reflects the state at the time the order was placed. Doesn't update if the
354
+ * customer changes their account address afterward.
338
355
  */
339
356
  billingAddress?: SubscribableSignalLike<MailingAddress | undefined>;
340
357
 
@@ -354,11 +371,16 @@ export interface OrderStatusApi<Target extends ExtensionTarget> {
354
371
  /**
355
372
  * Triggers a login prompt if the customer is viewing a pre-authenticated **Order status** page.
356
373
  * Use this to require full authentication before displaying sensitive information in your extension.
374
+ *
375
+ * Triggers a login prompt for pre-authenticated buyers. Doesn't guarantee
376
+ * the buyer completes the login. Handle the dismissal case in your code.
357
377
  */
358
378
  requireLogin: () => Promise<void>;
359
379
 
360
380
  /**
361
381
  * The buyer's current authentication level on the **Order status** page. Use this to determine whether to display sensitive information or prompt the buyer to log in.
382
+ *
383
+ * Read-only. The authentication level can't be changed programmatically.
362
384
  */
363
385
  authenticationState: SubscribableSignalLike<AuthenticationState>;
364
386
  }
@@ -470,6 +492,9 @@ export interface AppliedGiftCard {
470
492
 
471
493
  /**
472
494
  * The remaining balance of the applied gift card after the order was placed.
495
+ *
496
+ * Reflects the remaining amount at the time the order was placed. Doesn't
497
+ * update if the gift card is used for subsequent purchases.
473
498
  */
474
499
  balance: Money;
475
500
  }
@@ -1002,7 +1027,7 @@ export interface PaymentTermsTemplate {
1002
1027
  */
1003
1028
  id: string;
1004
1029
  /**
1005
- * The name of the payment terms translated to the buyer's current language, such as "Net 30" or "Due on receipt". See [localization.language](/docs/api/customer-account-ui-extensions/{API_VERSION}/apis/localization#standardapi-propertydetail-localization).
1030
+ * The name of the payment terms translated to the buyer's current language, such as "Net 30" or "Due on receipt". See [localization.language](/docs/api/customer-account-ui-extensions/{API_VERSION}/apis/localization#properties-propertydetail-localization).
1006
1031
  */
1007
1032
  name: string;
1008
1033
  /**
@@ -154,12 +154,8 @@ export interface Extension<Target extends ExtensionTarget = ExtensionTarget> {
154
154
  apiVersion: ApiVersion;
155
155
 
156
156
  /**
157
- * The allowed capabilities of the extension, defined
158
- * in your [`shopify.extension.toml`](/docs/api/customer-account-ui-extensions/{API_VERSION}/configuration) file.
159
- *
160
- * * [`api_access`](/docs/api/customer-account-ui-extensions/{API_VERSION}/configuration#api-access): the extension can access the Storefront API.
161
- *
162
- * * [`network_access`](/docs/api/customer-account-ui-extensions/{API_VERSION}/configuration#network-access): the extension can make external network calls.
157
+ * The allowed capabilities of the extension, defined in your
158
+ * [`shopify.extension.toml`](/docs/api/customer-account-ui-extensions/{API_VERSION}/configuration) file.
163
159
  */
164
160
  capabilities: SubscribableSignalLike<Capability[]>;
165
161
 
@@ -246,6 +242,9 @@ export interface Attribute {
246
242
  /**
247
243
  * The value associated with the attribute key. This contains the buyer-provided or app-set data for the custom attribute.
248
244
  *
245
+ * Attribute values are always strings. If structured data was stored during
246
+ * checkout, parse it on read with `JSON.parse()`.
247
+ *
249
248
  * @example 'Happy Birthday!'
250
249
  */
251
250
  value: string;
@@ -618,6 +617,9 @@ export interface CustomerPrivacy {
618
617
  *
619
618
  * @example `{countryCode: 'CA', provinceCode: 'ON'}` for a visitor in Ontario, Canada; `{countryCode: 'US', provinceCode: undefined}` for a visitor in the United States if geolocation fails to detect the state; or `undefined` if neither country nor province is detected or geolocation fails.
620
619
  *
620
+ * Requires level 1 access to protected customer data. `undefined` without
621
+ * that access. Regional compliance logic can't run without it.
622
+ *
621
623
  * {% include /apps/checkout/privacy-icon.md %} Requires level 1 access to [protected customer data](/docs/apps/store/data-protection/protected-customer-data).
622
624
  */
623
625
  region?: CustomerPrivacyRegion;
@@ -690,7 +692,7 @@ export interface ToastApi {
690
692
  */
691
693
  export interface IntentQueryOptions {
692
694
  /**
693
- * The resource identifier for edit actions (e.g. `gid://shopify/SubscriptionContract/123`).
695
+ * The resource identifier for edit actions (such as `gid://shopify/SubscriptionContract/123`).
694
696
  */
695
697
  value?: string;
696
698
  /**
@@ -725,7 +727,7 @@ export interface IntentQuery extends IntentQueryOptions {
725
727
  */
726
728
  action: IntentAction;
727
729
  /**
728
- * The resource type (e.g. `shopify/SubscriptionContract`).
730
+ * The resource type (such as `shopify/SubscriptionContract`).
729
731
  */
730
732
  type: string;
731
733
  }
@@ -37,7 +37,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
37
37
  *
38
38
  * @example 'customer-account.order-status.block.render'
39
39
  *
40
- * @deprecated Deprecated as of version `2023-07`, use `extension.target` instead.
40
+ * @deprecated Use `extension.target` instead.
41
41
  */
42
42
  extensionPoint: Target;
43
43
 
@@ -118,7 +118,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
118
118
  /**
119
119
  * Applies updated tracking consent preferences for the buyer, including their decisions for analytics, marketing, and data sale, along with any custom tracking consent [metafields](/docs/apps/build/custom-data/metafields). Returns a promise that resolves with the result of the consent update.
120
120
  *
121
- * {% include /apps/checkout/privacy-icon.md %} Requires the [`customer_privacy` capability](/docs/api/customer-account-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent) and access to [protected customer data](/docs/apps/store/data-protection/protected-customer-data).
121
+ * {% include /apps/checkout/privacy-icon.md %} Requires the [`collect_buyer_consent` capability](/docs/apps/build/customer-accounts/capabilities#collect-buyer-consent) and access to [protected customer data](/docs/apps/store/data-protection/protected-customer-data).
122
122
  */
123
123
  applyTrackingConsentChange: ApplyTrackingConsentChangeType;
124
124
  }
@@ -18,6 +18,8 @@ export type CallbackEventListener<
18
18
  export interface AvatarElementProps extends IdProps {
19
19
  /**
20
20
  * The initials to display in the avatar when no image is provided or fails to load. Typically one or two characters representing a person's first and last name initials, such as "JD" for John Doe.
21
+ *
22
+ * Characters beyond the first two might be truncated. Special characters, emojis, and non-Latin scripts might not render as expected.
21
23
  */
22
24
  initials?: string;
23
25
 
@@ -1380,27 +1380,21 @@ export interface LinkBehaviorProps extends InteractionProps, FocusEventProps {
1380
1380
  /** @publicDocs */
1381
1381
  export interface InteractionProps {
1382
1382
  /**
1383
- * ID of a component that should respond to activations (e.g. clicks) on this component.
1384
- *
1385
- * See `command` for how to control the behavior of the target.
1386
- *
1387
- * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#commandfor
1383
+ * The ID of the component to control when this component is activated. Pair with the `command` property to specify what action to perform on the target component. Learn more about the [`commandFor` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#commandfor).
1388
1384
  */
1389
1385
  commandFor?: string;
1390
1386
  /**
1391
- * Sets the action the `commandFor` should take when this clickable is activated.
1387
+ * Sets the action the `commandFor` target should take when this component is activated. Available options:
1392
1388
  *
1393
- * See the documentation of particular components for the actions they support.
1389
+ * - `'--auto'`: Performs the default action appropriate for the target component.
1390
+ * - `'--show'`: Displays the target component if it's currently hidden.
1391
+ * - `'--hide'`: Conceals the target component from view.
1392
+ * - `'--toggle'`: Alternates the target component between visible and hidden states.
1393
+ * - `'--copy'`: Copies the target clipboard item.
1394
1394
  *
1395
- * - `--auto`: a default action for the target component.
1396
- * - `--show`: shows the target component.
1397
- * - `--hide`: hides the target component.
1398
- * - `--toggle`: toggles the target component.
1399
- * - `--copy`: copies the target ClipboardItem.
1395
+ * The supported actions vary by target component type. Learn more about the [`command` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#command).
1400
1396
  *
1401
1397
  * @default '--auto'
1402
- *
1403
- * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#command
1404
1398
  */
1405
1399
  command?: '--auto' | '--show' | '--hide' | '--toggle' | '--copy';
1406
1400
  /**
@@ -5469,7 +5469,7 @@ interface LinkEvents {
5469
5469
  /**
5470
5470
  * The link component makes text interactive, allowing users to trigger actions through tappable text. Use it for lightweight interactions, navigation triggers, or actions embedded within text content.
5471
5471
  *
5472
- * Links support the command system for controlling other components declaratively. Use `command` and `commandFor` to show, hide, or toggle modals and other targetable elements. For primary actions like submitting forms or triggering operations, use [button](/docs/api/pos-ui-extensions/{API_VERSION}/polaris-web-components/actions/button) instead.
5472
+ * Links support the command system for controlling other components declaratively. Use `command` and `commandFor` to show, hide, or toggle modals and other targetable elements. For primary actions like submitting forms or triggering operations, use [button](/docs/api/pos-ui-extensions/{API_VERSION}/web-components/actions/button) instead.
5473
5473
  * @publicDocs
5474
5474
  */
5475
5475
  interface Link {
@@ -6589,7 +6589,7 @@ interface ModalSlots {
6589
6589
  *
6590
6590
  * Modals block interaction with the underlying interface until the merchant resolves the modal content.
6591
6591
  *
6592
- * Modals don't automatically handle state management or persistence, so manage visibility and lifecycle programmatically through [events](/docs/api/pos-ui-extensions/{API_VERSION}/polaris-web-components/feedback-and-status-indicators/modal#events).
6592
+ * Modals don't automatically handle state management or persistence, so manage visibility and lifecycle programmatically through [events](/docs/api/pos-ui-extensions/{API_VERSION}/web-components/feedback-and-status-indicators/modal#events).
6593
6593
  * @publicDocs
6594
6594
  */
6595
6595
  interface Modal {