@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
@@ -17,7 +17,8 @@ export interface Storage {
17
17
  * The stored data is deserialized from JSON and returned as
18
18
  * its original type.
19
19
  *
20
- * Returns `null` if no stored data exists.
20
+ * Returns the stored value for the given key, or `null` when no value
21
+ * exists. Doesn't throw on a missing key.
21
22
  */
22
23
  read<T = unknown>(key: string): Promise<T | null>;
23
24
  /**
@@ -44,20 +45,8 @@ export interface Extension<Target extends ExtensionTarget = ExtensionTarget> {
44
45
  */
45
46
  apiVersion: ApiVersion;
46
47
  /**
47
- * The allowed capabilities of the extension, defined
48
- * in your [shopify.extension.toml](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration) file.
49
- *
50
- * * [`api_access`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#api-access): the extension can access the Storefront API.
51
- *
52
- * * [`network_access`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#network-access): the extension can make external network calls.
53
- *
54
- * * [`block_progress`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#block-progress): the extension can block a customer's progress and the merchant has allowed this blocking behavior.
55
- *
56
- * * [`collect_buyer_consent.sms_marketing`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent): the extension can collect customer consent for SMS marketing.
57
- *
58
- * * [`collect_buyer_consent.customer_privacy`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent): the extension can register customer consent decisions that are honored on Shopify-managed services.
59
- *
60
- * * [`iframe.sources`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#iframe): the extension can embed an external URL in an iframe.
48
+ * The allowed capabilities of the extension, defined in your
49
+ * [`shopify.extension.toml`](/docs/api/checkout-ui-extensions/{API_VERSION}/configuration) file.
61
50
  */
62
51
  capabilities: SubscribableSignalLike<Capability[]>;
63
52
  /**
@@ -97,6 +86,9 @@ export interface Extension<Target extends ExtensionTarget = ExtensionTarget> {
97
86
  *
98
87
  * For unpublished extensions, the value is `undefined`.
99
88
  *
89
+ * Don't use this property as a stable identifier in development environments.
90
+ * It becomes available only after the extension is published.
91
+ *
100
92
  * @example 3.0.10
101
93
  */
102
94
  version?: string;
@@ -359,14 +351,20 @@ export interface Localization {
359
351
  extensionLanguage: SubscribableSignalLike<Language>;
360
352
  /**
361
353
  * The country context of the checkout, carried over from the cart. It updates when the buyer changes their shipping address country. Use this value to display region-specific content such as local support information or regional policies. The value is `undefined` if the buyer's country is unknown.
354
+ *
355
+ * Derived from the buyer's shipping address. Returns `undefined` until the
356
+ * buyer enters a shipping address.
362
357
  */
363
358
  country: SubscribableSignalLike<Country | undefined>;
364
359
  /**
365
- * The [market](https://shopify.dev/docs/apps/build/markets) context of the checkout, carried over from the cart context. Markets group countries and regions with shared pricing, languages, and domains. It updates when the buyer changes the country of their shipping address. The value is `undefined` if the market is unknown.
366
- *
367
- * > Caution: Deprecated as of version `2025-04`. Merchants now manage which extensions load for each market, so extensions no longer need to check this value.
360
+ * The [market](/docs/apps/build/markets) context of the checkout,
361
+ * carried over from the cart context. Markets group countries and
362
+ * regions with shared pricing, languages, and domains. The market
363
+ * context updates when the buyer changes the country of their
364
+ * shipping address. The value is `undefined` if the market is unknown.
368
365
  *
369
- * @deprecated Deprecated as of version `2025-04`
366
+ * @deprecated Merchants now manage which extensions load for each
367
+ * market, so extensions no longer need to check this value.
370
368
  */
371
369
  market: SubscribableSignalLike<Market | undefined>;
372
370
  }
@@ -491,8 +489,10 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
491
489
  * For example, if you intend to add a discount code via the `applyDiscountCodeChange` method,
492
490
  * check `discounts.canUpdateDiscountCodes` to ensure it's supported in this checkout.
493
491
  *
494
- * > Caution: As of version `2024-07`, UI extension code must check for instructions before calling select APIs in case those APIs aren't available.
495
- * See the [update guide](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#examples) for more information.
492
+ * > Caution: Check cart instructions before calling select APIs, as
493
+ * > some may not be available. See the
494
+ * > [Cart Instructions API](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#examples)
495
+ * > for more information.
496
496
  *
497
497
  */
498
498
  instructions: SubscribableSignalLike<CartInstructions>;
@@ -512,7 +512,14 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
512
512
  */
513
513
  attributes: SubscribableSignalLike<Attribute[]>;
514
514
  /**
515
- * All payment options available to the buyer for this checkout, such as credit cards, wallets, and local payment methods. The list depends on the shop's payment configuration and the buyer's region.
515
+ * All payment options available to the buyer for this checkout, such as
516
+ * credit cards, wallets, and local payment methods. The list depends on
517
+ * the shop's payment configuration and the buyer's region.
518
+ *
519
+ * The set of payment options can change when the buyer updates their
520
+ * address or cart, so subscribe to changes rather than reading once
521
+ * during initialization. Each option exposes `handle` and `type` only.
522
+ * Provider names, logos, fees, and installment terms aren't available.
516
523
  */
517
524
  availablePaymentOptions: SubscribableSignalLike<PaymentOption[]>;
518
525
  /**
@@ -541,6 +548,8 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
541
548
  *
542
549
  * This matches the `data.checkout.token` field in a [checkout-related WebPixel event](https://shopify.dev/docs/api/web-pixels-api/standard-events/checkout_started#properties-propertydetail-data)
543
550
  * and the `checkout_token` field in the [REST Admin API `Order` resource](https://shopify.dev/docs/api/admin-rest/unstable/resources/order#resource-object).
551
+ *
552
+ * Can be `undefined`. Handle the `undefined` state before using the value.
544
553
  */
545
554
  checkoutToken: SubscribableSignalLike<CheckoutToken | undefined>;
546
555
  /**
@@ -549,6 +558,9 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
549
558
  cost: CartCost;
550
559
  /**
551
560
  * The delivery groups for this checkout. Each group contains one or more cart lines and the available delivery options (shipping, pickup point, or pickup location) for those items.
561
+ *
562
+ * Empty until the buyer enters enough address information for Shopify to
563
+ * calculate shipping rates.
552
564
  */
553
565
  deliveryGroups: SubscribableSignalLike<DeliveryGroup[]>;
554
566
  /**
@@ -574,7 +586,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
574
586
  * @see https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/extension-targets-overview
575
587
  * @see https://shopify.dev/docs/apps/app-extensions/configuration#targets
576
588
  *
577
- * @deprecated Deprecated as of version `2023-07`, use `extension.target` instead.
589
+ * @deprecated Use `extension.target` instead.
578
590
  */
579
591
  extensionPoint: Target;
580
592
  /**
@@ -591,7 +603,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
591
603
  /**
592
604
  * The buyer's language, country, currency, and timezone context. For
593
605
  * formatting and translation helpers, use the
594
- * [`i18n`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/localization#standardapi-propertydetail-i18n)
606
+ * [`i18n`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/localization#properties-propertydetail-i18n)
595
607
  * object instead.
596
608
  */
597
609
  localization: Localization;
@@ -604,7 +616,6 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
604
616
  /**
605
617
  * The method used to query the Storefront GraphQL API with a prefetched token.
606
618
  *
607
- * Refer to [Storefront API access examples](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/storefront-api) for more information.
608
619
  */
609
620
  query: <Data = unknown, Variables = Record<string, unknown>>(query: string, options?: {
610
621
  variables?: Variables;
@@ -614,7 +625,13 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
614
625
  errors?: GraphQLError[];
615
626
  }>;
616
627
  /**
617
- * The payment options the buyer has currently selected. This updates as the buyer changes their payment method. The array can contain multiple entries when the buyer splits payment across methods (for example, a gift card and a credit card).
628
+ * The payment options the buyer has currently selected. This updates as
629
+ * the buyer changes their payment method. The array can contain multiple
630
+ * entries when the buyer splits payment across methods (for example, a
631
+ * gift card and a credit card).
632
+ *
633
+ * Each option exposes `handle` and `type` only. Provider names, logos,
634
+ * fees, and installment terms aren't available.
618
635
  */
619
636
  selectedPaymentOptions: SubscribableSignalLike<SelectedPaymentOption[]>;
620
637
  /**
@@ -662,8 +679,8 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
662
679
  shop: Shop;
663
680
  /**
664
681
  * Key-value storage that persists across page loads within the current checkout
665
- * session. Data is shared across all activated extension targets of this
666
- * extension.
682
+ * session. Data is shared across all activated targets associated with
683
+ * this extension.
667
684
  *
668
685
  * > Caution: Data persistence isn't guaranteed and storage is cleared when the
669
686
  * buyer starts a new checkout.
@@ -682,7 +699,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
682
699
  /**
683
700
  * Enables setting and updating customer privacy consent settings and tracking consent metafields.
684
701
  *
685
- * > Note: Requires the [`customer_privacy` capability](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent) to be set to `true`.
702
+ * > Note: Requires the [`collect_buyer_consent` capability](/docs/apps/build/customer-accounts/capabilities#collect-buyer-consent) to be set to `true`.
686
703
  *
687
704
  * {% include /apps/checkout/privacy-icon.md %} Requires access to [protected customer data](https://shopify.dev/docs/apps/store/data-protection/protected-customer-data).
688
705
  */
@@ -697,6 +714,10 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
697
714
  * Use session tokens to verify the identity of the buyer and the shop
698
715
  * context when making server-side API calls. The token is a signed JWT
699
716
  * that contains claims such as the customer ID, shop domain, and expiration.
717
+ *
718
+ * The `sub` claim in the decoded token is present only when the buyer is
719
+ * logged in and the app has permission to read customer accounts. Absent for
720
+ * anonymous buyers.
700
721
  */
701
722
  export interface SessionToken {
702
723
  /**
@@ -851,10 +872,16 @@ export interface CartCost {
851
872
  subtotalAmount: SubscribableSignalLike<Money>;
852
873
  /**
853
874
  * The total shipping cost after shipping discounts have been applied. The value is `undefined` if shipping hasn't been calculated yet, such as when the buyer is still on the information step.
875
+ *
876
+ * `undefined` until the buyer selects a shipping method (typically after the
877
+ * information step).
854
878
  */
855
879
  totalShippingAmount: SubscribableSignalLike<Money | undefined>;
856
880
  /**
857
881
  * The total tax the buyer can expect to pay, or the total tax already included in product and shipping prices (for tax-inclusive regions). The value is `undefined` if taxes haven't been calculated yet.
882
+ *
883
+ * `undefined` when taxes haven't been calculated or aren't available for the
884
+ * buyer's region.
858
885
  */
859
886
  totalTaxAmount: SubscribableSignalLike<Money | undefined>;
860
887
  /**
@@ -1187,6 +1214,11 @@ interface InterceptorRequestAllow {
1187
1214
  * This callback is called when all interceptors finish. We recommend
1188
1215
  * setting errors or reasons for blocking at this stage, so that all the errors in
1189
1216
  * the UI show up at once.
1217
+ *
1218
+ * Runs after all intercept results are collected. Use it for local state
1219
+ * updates such as setting an error flag. By the time it runs, the navigation
1220
+ * decision is final, so blocking logic belongs in the intercept handler
1221
+ * itself, not here.
1190
1222
  * @param result InterceptorResult with behavior as either 'allow' or 'block'
1191
1223
  */
1192
1224
  perform?(result: InterceptorResult): void | Promise<void>;
@@ -1210,6 +1242,11 @@ interface InterceptorRequestBlock {
1210
1242
  * This callback is called when all interceptors finish. We recommend
1211
1243
  * setting errors or reasons for blocking at this stage, so that all the errors in
1212
1244
  * the UI show up at once.
1245
+ *
1246
+ * Runs after all intercept results are collected. Use it for local state
1247
+ * updates such as setting an error flag. By the time it runs, the navigation
1248
+ * decision is final, so blocking logic belongs in the intercept handler
1249
+ * itself, not here.
1213
1250
  * @param result InterceptorResult with behavior as either 'allow' or 'block'
1214
1251
  */
1215
1252
  perform?(result: InterceptorResult): void | Promise<void>;
@@ -1403,6 +1440,10 @@ export interface Analytics {
1403
1440
  /**
1404
1441
  * Publishes a custom event to [Web Pixels](https://shopify.dev/docs/apps/marketing).
1405
1442
  * Returns `true` when the event is successfully dispatched.
1443
+ *
1444
+ * The Promise resolves to `true` when the event was dispatched. The boolean
1445
+ * indicates dispatch confirmation only. It doesn't indicate whether any
1446
+ * specific web pixel processed the event.
1406
1447
  */
1407
1448
  publish(name: string, data: Record<string, unknown>): Promise<boolean>;
1408
1449
  /**
@@ -1688,24 +1729,45 @@ export interface AllowedProcessing {
1688
1729
  * Whether analytics data can be collected based on the visitor's consent,
1689
1730
  * the merchant's privacy configuration, and the visitor's region. Analytics
1690
1731
  * data includes how the shop was used and what interactions occurred.
1732
+ *
1733
+ * Whether analytics data can be collected right now. Combines the buyer's
1734
+ * consent, the merchant's privacy configuration, and the buyer's region into
1735
+ * a single boolean. Check this flag, not `visitorConsent.analytics`, before
1736
+ * calling `shopify.analytics.publish()`.
1691
1737
  */
1692
1738
  analytics: boolean;
1693
1739
  /**
1694
1740
  * Whether marketing data can be collected based on the visitor's consent,
1695
1741
  * the merchant's privacy configuration, and the visitor's region. Marketing
1696
1742
  * data includes attribution and targeted advertising preferences.
1743
+ *
1744
+ * Whether marketing data can be collected right now. Combines the buyer's
1745
+ * consent, the merchant's privacy configuration, and the buyer's region into
1746
+ * a single boolean. Check this flag, not `visitorConsent.marketing`, before
1747
+ * performing marketing-related data collection.
1697
1748
  */
1698
1749
  marketing: boolean;
1699
1750
  /**
1700
1751
  * Whether preference data can be collected based on the visitor's consent,
1701
1752
  * the merchant's privacy configuration, and the visitor's region. Preference
1702
1753
  * data includes language, currency, and sizing choices.
1754
+ *
1755
+ * Whether preference data can be collected right now. Combines the buyer's
1756
+ * consent, the merchant's privacy configuration, and the buyer's region into
1757
+ * a single boolean. Check this flag, not `visitorConsent.preferences`,
1758
+ * before storing or reading buyer preference data.
1703
1759
  */
1704
1760
  preferences: boolean;
1705
1761
  /**
1706
1762
  * Whether data can be shared with third parties based on the visitor's
1707
1763
  * consent, the merchant's privacy configuration, and the visitor's region.
1708
1764
  * This typically applies to behavioral advertising data.
1765
+ *
1766
+ * Whether buyer data can be shared with or sold to third parties right now.
1767
+ * Combines the buyer's consent, the merchant's privacy configuration, and
1768
+ * the buyer's region into a single boolean. Check this flag, not
1769
+ * `visitorConsent.saleOfData`, before sharing or selling buyer data with
1770
+ * third parties.
1709
1771
  */
1710
1772
  saleOfData: boolean;
1711
1773
  }
@@ -1755,6 +1817,9 @@ export interface TrackingConsentMetafieldChange {
1755
1817
  key: string;
1756
1818
  /**
1757
1819
  * The new value to store in the metafield. Set to `null` to delete the metafield.
1820
+ *
1821
+ * Consent metafield values are strings, not booleans. Pass `null` to delete
1822
+ * a tracking consent metafield.
1758
1823
  */
1759
1824
  value: string | null;
1760
1825
  }
@@ -1 +1 @@
1
- {"version":3,"file":"standard.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/api/standard/standard.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"standard.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/checkout/api/standard/standard.ts"],"names":[],"mappings":"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"}
@@ -70,7 +70,7 @@ export interface AnnouncementElementEvents {
70
70
  * - If the element transitioned from showing to hidden, the `oldState` property will be set to `open` and the
71
71
  * `newState` will be `closed`.
72
72
  *
73
- * 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).
73
+ * 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).
74
74
  */
75
75
  aftertoggle?: CallbackEventListener<typeof tagName, ToggleArgumentsEvent>;
76
76
  /**
@@ -82,10 +82,10 @@ export interface AnnouncementElementEvents {
82
82
  *
83
83
  * - If the element is transitioning from hidden to showing, the `oldState` property will be set to `closed` and the
84
84
  * `newState` property will be set to `open`.
85
- * - If the element is transitioning from showing to hidden, then `oldState` property will be set to `open` and the
85
+ * - If the element is transitioning from showing to hidden, then the `oldState` property will be set to `open` and the
86
86
  * `newState` will be `closed`.
87
87
  *
88
- * 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).
88
+ * 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).
89
89
  */
90
90
  toggle?: CallbackEventListener<typeof tagName, ToggleArgumentsEvent>;
91
91
  }
@@ -42,6 +42,16 @@ declare const tagName = "s-button";
42
42
  export interface ButtonElementProps extends Pick<ButtonProps$1, 'accessibilityLabel' | 'command' | 'commandFor' | 'disabled' | 'href' | 'id' | 'inlineSize' | 'interestFor' | 'loading' | 'target' | 'tone' | 'type' | 'variant'> {
43
43
  target?: Extract<ButtonProps$1['target'], 'auto' | '_blank'>;
44
44
  tone?: Extract<ButtonProps$1['tone'], 'auto' | 'neutral' | 'critical'>;
45
+ /**
46
+ * The behavioral type of the button component, which determines what action it performs when activated.
47
+ *
48
+ * - `submit`: Submits the nearest containing form.
49
+ * - `button`: Performs no default action, relying on the `click` event handler for behavior.
50
+ *
51
+ * This property is ignored if `href` or `commandFor`/`command` is set.
52
+ *
53
+ * @default 'button'
54
+ */
45
55
  type?: Extract<ButtonProps$1['type'], 'submit' | 'button'>;
46
56
  variant?: Extract<ButtonProps$1['variant'], 'auto' | 'primary' | 'secondary'>;
47
57
  }
@@ -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 {