@shopify/ui-extensions 2026.7.0-rc.5 → 2026.7.0-rc.6

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 (781) hide show
  1. package/build/ts/surfaces/admin/api/app-home/app-home.d.ts +61 -0
  2. package/build/ts/surfaces/admin/api/app-home/app-home.d.ts.map +1 -1
  3. package/build/ts/surfaces/admin/api/loading/loading.d.ts +11 -0
  4. package/build/ts/surfaces/admin/api/loading/loading.d.ts.map +1 -1
  5. package/build/ts/surfaces/admin/api/tools/tools.d.ts +53 -0
  6. package/build/ts/surfaces/admin/api/tools/tools.d.ts.map +1 -0
  7. package/build/ts/surfaces/admin/api.d.ts +3 -2
  8. package/build/ts/surfaces/admin/api.d.ts.map +1 -1
  9. package/build/ts/surfaces/admin/components/AppNav/AppNavTypes.d.ts +35 -0
  10. package/build/ts/surfaces/admin/components/AppNav/AppNavTypes.d.ts.map +1 -0
  11. package/build/ts/surfaces/admin/extension-targets.d.ts +8 -0
  12. package/build/ts/surfaces/admin/extension-targets.d.ts.map +1 -1
  13. package/build/ts/surfaces/admin/targets/admin.abandoned-checkout-index.action.render.d.ts +61 -0
  14. package/build/ts/surfaces/admin/targets/admin.abandoned-checkout-index.action.should-render.d.ts +6 -0
  15. package/build/ts/surfaces/checkout/components/Paragraph.d.ts +21 -10
  16. package/build/ts/surfaces/checkout/components/components-shared.d.ts +3 -1
  17. package/build/ts/surfaces/customer-account/components/Avatar.d.ts +2 -0
  18. package/build/ts/surfaces/customer-account/components/Page.d.ts +4 -3
  19. package/build/ts/surfaces/customer-account/components/Paragraph.d.ts +21 -10
  20. package/build/ts/surfaces/customer-account/components/components-shared.d.ts +3 -1
  21. package/build/ts/surfaces/point-of-sale/api/cart-api/cart-api.d.ts +24 -4
  22. package/build/ts/surfaces/point-of-sale/api/cart-api/cart-api.d.ts.map +1 -1
  23. package/build/ts/surfaces/point-of-sale/api/data-target-api/data-target-api.d.ts +2 -2
  24. package/build/ts/surfaces/point-of-sale/api/data-target-api/data-target-api.d.ts.map +1 -1
  25. package/build/ts/surfaces/point-of-sale/api/session-api/session-api.d.ts +6 -1
  26. package/build/ts/surfaces/point-of-sale/api/session-api/session-api.d.ts.map +1 -1
  27. package/build/ts/surfaces/point-of-sale/api.d.ts +2 -2
  28. package/build/ts/surfaces/point-of-sale/api.d.ts.map +1 -1
  29. package/build/ts/surfaces/point-of-sale/event/data/CartUpdateEventData.d.ts +3 -1
  30. package/build/ts/surfaces/point-of-sale/event/data/CartUpdateEventData.d.ts.map +1 -1
  31. package/build/ts/surfaces/point-of-sale/event/data/CashTrackingSessionData.d.ts +8 -2
  32. package/build/ts/surfaces/point-of-sale/event/data/CashTrackingSessionData.d.ts.map +1 -1
  33. package/build/ts/surfaces/point-of-sale/events/transaction-complete-event.d.ts +4 -0
  34. package/build/ts/surfaces/point-of-sale/events/transaction-complete-event.d.ts.map +1 -1
  35. package/build/ts/surfaces/point-of-sale/extension-targets.d.ts +31 -0
  36. package/build/ts/surfaces/point-of-sale/extension-targets.d.ts.map +1 -1
  37. package/build/ts/surfaces/point-of-sale/types/base-transaction-complete.d.ts +4 -0
  38. package/build/ts/surfaces/point-of-sale/types/base-transaction-complete.d.ts.map +1 -1
  39. package/build/ts/surfaces/point-of-sale/types/session.d.ts +13 -1
  40. package/build/ts/surfaces/point-of-sale/types/session.d.ts.map +1 -1
  41. package/build/tsconfig.tsbuildinfo +1 -1
  42. package/package.json +2 -4
  43. package/src/surfaces/admin/api/app-home/app-home.ts +71 -0
  44. package/src/surfaces/admin/api/loading/loading.ts +12 -0
  45. package/src/surfaces/admin/api/tools/tools.ts +57 -0
  46. package/src/surfaces/admin/api.ts +7 -2
  47. package/src/surfaces/admin/components/AppNav/AppNavTypes.ts +38 -0
  48. package/src/surfaces/admin/extension-targets.ts +16 -0
  49. package/src/surfaces/checkout/components/Paragraph.d.ts +21 -10
  50. package/src/surfaces/checkout/components/components-shared.d.ts +3 -1
  51. package/src/surfaces/customer-account/components/Avatar.d.ts +2 -0
  52. package/src/surfaces/customer-account/components/Page.d.ts +4 -3
  53. package/src/surfaces/point-of-sale/api/cart-api/cart-api.ts +27 -4
  54. package/src/surfaces/point-of-sale/api/data-target-api/data-target-api.ts +2 -2
  55. package/src/surfaces/point-of-sale/api/session-api/session-api.ts +6 -1
  56. package/src/surfaces/point-of-sale/api.ts +4 -1
  57. package/src/surfaces/point-of-sale/event/data/CartUpdateEventData.ts +3 -1
  58. package/src/surfaces/point-of-sale/event/data/CashTrackingSessionData.ts +8 -2
  59. package/src/surfaces/point-of-sale/events/transaction-complete-event.ts +4 -0
  60. package/src/surfaces/point-of-sale/extension-targets.ts +37 -0
  61. package/src/surfaces/point-of-sale/types/base-transaction-complete.ts +4 -0
  62. package/src/surfaces/point-of-sale/types/session.ts +14 -1
  63. package/build/ts/docs/shared/component-definitions.d.ts +0 -31
  64. package/build/ts/docs/shared/component-definitions.d.ts.map +0 -1
  65. package/build/ts/docs/shared/components/Abbreviation.d.ts +0 -4
  66. package/build/ts/docs/shared/components/Abbreviation.d.ts.map +0 -1
  67. package/build/ts/docs/shared/components/Announcement.d.ts +0 -4
  68. package/build/ts/docs/shared/components/Announcement.d.ts.map +0 -1
  69. package/build/ts/docs/shared/components/Avatar.d.ts +0 -4
  70. package/build/ts/docs/shared/components/Avatar.d.ts.map +0 -1
  71. package/build/ts/docs/shared/components/Badge.d.ts +0 -4
  72. package/build/ts/docs/shared/components/Badge.d.ts.map +0 -1
  73. package/build/ts/docs/shared/components/Banner.d.ts +0 -4
  74. package/build/ts/docs/shared/components/Banner.d.ts.map +0 -1
  75. package/build/ts/docs/shared/components/Box.d.ts +0 -4
  76. package/build/ts/docs/shared/components/Box.d.ts.map +0 -1
  77. package/build/ts/docs/shared/components/Button.d.ts +0 -4
  78. package/build/ts/docs/shared/components/Button.d.ts.map +0 -1
  79. package/build/ts/docs/shared/components/ButtonGroup.d.ts +0 -4
  80. package/build/ts/docs/shared/components/ButtonGroup.d.ts.map +0 -1
  81. package/build/ts/docs/shared/components/Checkbox.d.ts +0 -4
  82. package/build/ts/docs/shared/components/Checkbox.d.ts.map +0 -1
  83. package/build/ts/docs/shared/components/Chip.d.ts +0 -4
  84. package/build/ts/docs/shared/components/Chip.d.ts.map +0 -1
  85. package/build/ts/docs/shared/components/Choice.d.ts +0 -4
  86. package/build/ts/docs/shared/components/Choice.d.ts.map +0 -1
  87. package/build/ts/docs/shared/components/ChoiceList.d.ts +0 -4
  88. package/build/ts/docs/shared/components/ChoiceList.d.ts.map +0 -1
  89. package/build/ts/docs/shared/components/Clickable.d.ts +0 -4
  90. package/build/ts/docs/shared/components/Clickable.d.ts.map +0 -1
  91. package/build/ts/docs/shared/components/ClickableChip.d.ts +0 -4
  92. package/build/ts/docs/shared/components/ClickableChip.d.ts.map +0 -1
  93. package/build/ts/docs/shared/components/ClipboardItem.d.ts +0 -4
  94. package/build/ts/docs/shared/components/ClipboardItem.d.ts.map +0 -1
  95. package/build/ts/docs/shared/components/ColorField.d.ts +0 -4
  96. package/build/ts/docs/shared/components/ColorField.d.ts.map +0 -1
  97. package/build/ts/docs/shared/components/ColorPicker.d.ts +0 -4
  98. package/build/ts/docs/shared/components/ColorPicker.d.ts.map +0 -1
  99. package/build/ts/docs/shared/components/ConsentCheckbox.d.ts +0 -4
  100. package/build/ts/docs/shared/components/ConsentCheckbox.d.ts.map +0 -1
  101. package/build/ts/docs/shared/components/ConsentPhoneField.d.ts +0 -4
  102. package/build/ts/docs/shared/components/ConsentPhoneField.d.ts.map +0 -1
  103. package/build/ts/docs/shared/components/DateField.d.ts +0 -4
  104. package/build/ts/docs/shared/components/DateField.d.ts.map +0 -1
  105. package/build/ts/docs/shared/components/DatePicker.d.ts +0 -4
  106. package/build/ts/docs/shared/components/DatePicker.d.ts.map +0 -1
  107. package/build/ts/docs/shared/components/Details.d.ts +0 -4
  108. package/build/ts/docs/shared/components/Details.d.ts.map +0 -1
  109. package/build/ts/docs/shared/components/Divider.d.ts +0 -4
  110. package/build/ts/docs/shared/components/Divider.d.ts.map +0 -1
  111. package/build/ts/docs/shared/components/DropZone.d.ts +0 -4
  112. package/build/ts/docs/shared/components/DropZone.d.ts.map +0 -1
  113. package/build/ts/docs/shared/components/EmailField.d.ts +0 -4
  114. package/build/ts/docs/shared/components/EmailField.d.ts.map +0 -1
  115. package/build/ts/docs/shared/components/Form.d.ts +0 -4
  116. package/build/ts/docs/shared/components/Form.d.ts.map +0 -1
  117. package/build/ts/docs/shared/components/FunctionSettings.d.ts +0 -4
  118. package/build/ts/docs/shared/components/FunctionSettings.d.ts.map +0 -1
  119. package/build/ts/docs/shared/components/Grid.d.ts +0 -4
  120. package/build/ts/docs/shared/components/Grid.d.ts.map +0 -1
  121. package/build/ts/docs/shared/components/GridItem.d.ts +0 -4
  122. package/build/ts/docs/shared/components/GridItem.d.ts.map +0 -1
  123. package/build/ts/docs/shared/components/Heading.d.ts +0 -4
  124. package/build/ts/docs/shared/components/Heading.d.ts.map +0 -1
  125. package/build/ts/docs/shared/components/Icon.d.ts +0 -4
  126. package/build/ts/docs/shared/components/Icon.d.ts.map +0 -1
  127. package/build/ts/docs/shared/components/Image.d.ts +0 -4
  128. package/build/ts/docs/shared/components/Image.d.ts.map +0 -1
  129. package/build/ts/docs/shared/components/Link.d.ts +0 -4
  130. package/build/ts/docs/shared/components/Link.d.ts.map +0 -1
  131. package/build/ts/docs/shared/components/ListItem.d.ts +0 -4
  132. package/build/ts/docs/shared/components/ListItem.d.ts.map +0 -1
  133. package/build/ts/docs/shared/components/Map.d.ts +0 -4
  134. package/build/ts/docs/shared/components/Map.d.ts.map +0 -1
  135. package/build/ts/docs/shared/components/MapMarker.d.ts +0 -4
  136. package/build/ts/docs/shared/components/MapMarker.d.ts.map +0 -1
  137. package/build/ts/docs/shared/components/Menu.d.ts +0 -4
  138. package/build/ts/docs/shared/components/Menu.d.ts.map +0 -1
  139. package/build/ts/docs/shared/components/Modal.d.ts +0 -4
  140. package/build/ts/docs/shared/components/Modal.d.ts.map +0 -1
  141. package/build/ts/docs/shared/components/MoneyField.d.ts +0 -4
  142. package/build/ts/docs/shared/components/MoneyField.d.ts.map +0 -1
  143. package/build/ts/docs/shared/components/NumberField.d.ts +0 -4
  144. package/build/ts/docs/shared/components/NumberField.d.ts.map +0 -1
  145. package/build/ts/docs/shared/components/Option.d.ts +0 -4
  146. package/build/ts/docs/shared/components/Option.d.ts.map +0 -1
  147. package/build/ts/docs/shared/components/OptionGroup.d.ts +0 -4
  148. package/build/ts/docs/shared/components/OptionGroup.d.ts.map +0 -1
  149. package/build/ts/docs/shared/components/OrderedList.d.ts +0 -4
  150. package/build/ts/docs/shared/components/OrderedList.d.ts.map +0 -1
  151. package/build/ts/docs/shared/components/Page.d.ts +0 -4
  152. package/build/ts/docs/shared/components/Page.d.ts.map +0 -1
  153. package/build/ts/docs/shared/components/Paragraph.d.ts +0 -4
  154. package/build/ts/docs/shared/components/Paragraph.d.ts.map +0 -1
  155. package/build/ts/docs/shared/components/PasswordField.d.ts +0 -4
  156. package/build/ts/docs/shared/components/PasswordField.d.ts.map +0 -1
  157. package/build/ts/docs/shared/components/PaymentIcon.d.ts +0 -4
  158. package/build/ts/docs/shared/components/PaymentIcon.d.ts.map +0 -1
  159. package/build/ts/docs/shared/components/PhoneField.d.ts +0 -4
  160. package/build/ts/docs/shared/components/PhoneField.d.ts.map +0 -1
  161. package/build/ts/docs/shared/components/Popover.d.ts +0 -4
  162. package/build/ts/docs/shared/components/Popover.d.ts.map +0 -1
  163. package/build/ts/docs/shared/components/PressButton.d.ts +0 -4
  164. package/build/ts/docs/shared/components/PressButton.d.ts.map +0 -1
  165. package/build/ts/docs/shared/components/ProductThumbnail.d.ts +0 -4
  166. package/build/ts/docs/shared/components/ProductThumbnail.d.ts.map +0 -1
  167. package/build/ts/docs/shared/components/Progress.d.ts +0 -4
  168. package/build/ts/docs/shared/components/Progress.d.ts.map +0 -1
  169. package/build/ts/docs/shared/components/QRCode.d.ts +0 -4
  170. package/build/ts/docs/shared/components/QRCode.d.ts.map +0 -1
  171. package/build/ts/docs/shared/components/QueryContainer.d.ts +0 -4
  172. package/build/ts/docs/shared/components/QueryContainer.d.ts.map +0 -1
  173. package/build/ts/docs/shared/components/ScrollBox.d.ts +0 -4
  174. package/build/ts/docs/shared/components/ScrollBox.d.ts.map +0 -1
  175. package/build/ts/docs/shared/components/SearchField.d.ts +0 -4
  176. package/build/ts/docs/shared/components/SearchField.d.ts.map +0 -1
  177. package/build/ts/docs/shared/components/Section.d.ts +0 -4
  178. package/build/ts/docs/shared/components/Section.d.ts.map +0 -1
  179. package/build/ts/docs/shared/components/Select.d.ts +0 -4
  180. package/build/ts/docs/shared/components/Select.d.ts.map +0 -1
  181. package/build/ts/docs/shared/components/Sheet.d.ts +0 -4
  182. package/build/ts/docs/shared/components/Sheet.d.ts.map +0 -1
  183. package/build/ts/docs/shared/components/SkeletonParagraph.d.ts +0 -4
  184. package/build/ts/docs/shared/components/SkeletonParagraph.d.ts.map +0 -1
  185. package/build/ts/docs/shared/components/Spinner.d.ts +0 -4
  186. package/build/ts/docs/shared/components/Spinner.d.ts.map +0 -1
  187. package/build/ts/docs/shared/components/Stack.d.ts +0 -4
  188. package/build/ts/docs/shared/components/Stack.d.ts.map +0 -1
  189. package/build/ts/docs/shared/components/Summary.d.ts +0 -4
  190. package/build/ts/docs/shared/components/Summary.d.ts.map +0 -1
  191. package/build/ts/docs/shared/components/Switch.d.ts +0 -4
  192. package/build/ts/docs/shared/components/Switch.d.ts.map +0 -1
  193. package/build/ts/docs/shared/components/Table.d.ts +0 -4
  194. package/build/ts/docs/shared/components/Table.d.ts.map +0 -1
  195. package/build/ts/docs/shared/components/TableBody.d.ts +0 -4
  196. package/build/ts/docs/shared/components/TableBody.d.ts.map +0 -1
  197. package/build/ts/docs/shared/components/TableCell.d.ts +0 -4
  198. package/build/ts/docs/shared/components/TableCell.d.ts.map +0 -1
  199. package/build/ts/docs/shared/components/TableHeader.d.ts +0 -4
  200. package/build/ts/docs/shared/components/TableHeader.d.ts.map +0 -1
  201. package/build/ts/docs/shared/components/TableHeaderRow.d.ts +0 -4
  202. package/build/ts/docs/shared/components/TableHeaderRow.d.ts.map +0 -1
  203. package/build/ts/docs/shared/components/TableRow.d.ts +0 -4
  204. package/build/ts/docs/shared/components/TableRow.d.ts.map +0 -1
  205. package/build/ts/docs/shared/components/Text.d.ts +0 -4
  206. package/build/ts/docs/shared/components/Text.d.ts.map +0 -1
  207. package/build/ts/docs/shared/components/TextArea.d.ts +0 -4
  208. package/build/ts/docs/shared/components/TextArea.d.ts.map +0 -1
  209. package/build/ts/docs/shared/components/TextField.d.ts +0 -4
  210. package/build/ts/docs/shared/components/TextField.d.ts.map +0 -1
  211. package/build/ts/docs/shared/components/Thumbnail.d.ts +0 -4
  212. package/build/ts/docs/shared/components/Thumbnail.d.ts.map +0 -1
  213. package/build/ts/docs/shared/components/Time.d.ts +0 -4
  214. package/build/ts/docs/shared/components/Time.d.ts.map +0 -1
  215. package/build/ts/docs/shared/components/Tooltip.d.ts +0 -4
  216. package/build/ts/docs/shared/components/Tooltip.d.ts.map +0 -1
  217. package/build/ts/docs/shared/components/URLField.d.ts +0 -4
  218. package/build/ts/docs/shared/components/URLField.d.ts.map +0 -1
  219. package/build/ts/docs/shared/components/UnorderedList.d.ts +0 -4
  220. package/build/ts/docs/shared/components/UnorderedList.d.ts.map +0 -1
  221. package/build/ts/docs/shared/components/index.d.ts +0 -53
  222. package/build/ts/docs/shared/components/index.d.ts.map +0 -1
  223. package/build/ts/docs/shared/docs-type.d.ts +0 -4
  224. package/build/ts/docs/shared/docs-type.d.ts.map +0 -1
  225. package/build/ts/surfaces/admin/api/action/action.doc.d.ts +0 -4
  226. package/build/ts/surfaces/admin/api/action/action.doc.d.ts.map +0 -1
  227. package/build/ts/surfaces/admin/api/block/block.doc.d.ts +0 -4
  228. package/build/ts/surfaces/admin/api/block/block.doc.d.ts.map +0 -1
  229. package/build/ts/surfaces/admin/api/checkout-rules/validation-settings.doc.d.ts +0 -4
  230. package/build/ts/surfaces/admin/api/checkout-rules/validation-settings.doc.d.ts.map +0 -1
  231. package/build/ts/surfaces/admin/api/customer-segment-template/customer-segment-template.doc.d.ts +0 -4
  232. package/build/ts/surfaces/admin/api/customer-segment-template/customer-segment-template.doc.d.ts.map +0 -1
  233. package/build/ts/surfaces/admin/api/discount-function-settings/discount-function-settings.doc.d.ts +0 -4
  234. package/build/ts/surfaces/admin/api/discount-function-settings/discount-function-settings.doc.d.ts.map +0 -1
  235. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts +0 -4
  236. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts.map +0 -1
  237. package/build/ts/surfaces/admin/api/order-routing-rule/order-routing-rule.doc.d.ts +0 -4
  238. package/build/ts/surfaces/admin/api/order-routing-rule/order-routing-rule.doc.d.ts.map +0 -1
  239. package/build/ts/surfaces/admin/api/picker/picker.doc.d.ts +0 -4
  240. package/build/ts/surfaces/admin/api/picker/picker.doc.d.ts.map +0 -1
  241. package/build/ts/surfaces/admin/api/print-action/print-action.doc.d.ts +0 -4
  242. package/build/ts/surfaces/admin/api/print-action/print-action.doc.d.ts.map +0 -1
  243. package/build/ts/surfaces/admin/api/product-configuration/product-details-configuration.doc.d.ts +0 -4
  244. package/build/ts/surfaces/admin/api/product-configuration/product-details-configuration.doc.d.ts.map +0 -1
  245. package/build/ts/surfaces/admin/api/product-configuration/product-variant-details-configuration.doc.d.ts +0 -4
  246. package/build/ts/surfaces/admin/api/product-configuration/product-variant-details-configuration.doc.d.ts.map +0 -1
  247. package/build/ts/surfaces/admin/api/purchase-options-card-action.doc.d.ts +0 -4
  248. package/build/ts/surfaces/admin/api/purchase-options-card-action.doc.d.ts.map +0 -1
  249. package/build/ts/surfaces/admin/api/resource-picker/resource-picker.doc.d.ts +0 -4
  250. package/build/ts/surfaces/admin/api/resource-picker/resource-picker.doc.d.ts.map +0 -1
  251. package/build/ts/surfaces/admin/api/should-render/should-render.doc.d.ts +0 -4
  252. package/build/ts/surfaces/admin/api/should-render/should-render.doc.d.ts.map +0 -1
  253. package/build/ts/surfaces/admin/api/standard/standard.doc.d.ts +0 -4
  254. package/build/ts/surfaces/admin/api/standard/standard.doc.d.ts.map +0 -1
  255. package/build/ts/surfaces/admin/components/AdminAction/AdminAction.ext.doc.d.ts +0 -4
  256. package/build/ts/surfaces/admin/components/AdminAction/AdminAction.ext.doc.d.ts.map +0 -1
  257. package/build/ts/surfaces/admin/components/AdminBlock/AdminBlock.ext.doc.d.ts +0 -4
  258. package/build/ts/surfaces/admin/components/AdminBlock/AdminBlock.ext.doc.d.ts.map +0 -1
  259. package/build/ts/surfaces/admin/components/AdminPrintAction/AdminPrintAction.ext.doc.d.ts +0 -4
  260. package/build/ts/surfaces/admin/components/AdminPrintAction/AdminPrintAction.ext.doc.d.ts.map +0 -1
  261. package/build/ts/surfaces/admin/components/Avatar/Avatar.doc.d.ts +0 -4
  262. package/build/ts/surfaces/admin/components/Avatar/Avatar.doc.d.ts.map +0 -1
  263. package/build/ts/surfaces/admin/components/Badge/Badge.doc.d.ts +0 -4
  264. package/build/ts/surfaces/admin/components/Badge/Badge.doc.d.ts.map +0 -1
  265. package/build/ts/surfaces/admin/components/Banner/Banner.doc.d.ts +0 -4
  266. package/build/ts/surfaces/admin/components/Banner/Banner.doc.d.ts.map +0 -1
  267. package/build/ts/surfaces/admin/components/Box/Box.doc.d.ts +0 -4
  268. package/build/ts/surfaces/admin/components/Box/Box.doc.d.ts.map +0 -1
  269. package/build/ts/surfaces/admin/components/Button/Button.doc.d.ts +0 -4
  270. package/build/ts/surfaces/admin/components/Button/Button.doc.d.ts.map +0 -1
  271. package/build/ts/surfaces/admin/components/ButtonGroup/ButtonGroup.doc.d.ts +0 -4
  272. package/build/ts/surfaces/admin/components/ButtonGroup/ButtonGroup.doc.d.ts.map +0 -1
  273. package/build/ts/surfaces/admin/components/Checkbox/Checkbox.doc.d.ts +0 -4
  274. package/build/ts/surfaces/admin/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  275. package/build/ts/surfaces/admin/components/Chip/Chip.doc.d.ts +0 -4
  276. package/build/ts/surfaces/admin/components/Chip/Chip.doc.d.ts.map +0 -1
  277. package/build/ts/surfaces/admin/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  278. package/build/ts/surfaces/admin/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  279. package/build/ts/surfaces/admin/components/Clickable/Clickable.doc.d.ts +0 -4
  280. package/build/ts/surfaces/admin/components/Clickable/Clickable.doc.d.ts.map +0 -1
  281. package/build/ts/surfaces/admin/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  282. package/build/ts/surfaces/admin/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  283. package/build/ts/surfaces/admin/components/ColorField/ColorField.doc.d.ts +0 -4
  284. package/build/ts/surfaces/admin/components/ColorField/ColorField.doc.d.ts.map +0 -1
  285. package/build/ts/surfaces/admin/components/ColorPicker/ColorPicker.doc.d.ts +0 -4
  286. package/build/ts/surfaces/admin/components/ColorPicker/ColorPicker.doc.d.ts.map +0 -1
  287. package/build/ts/surfaces/admin/components/DateField/DateField.doc.d.ts +0 -4
  288. package/build/ts/surfaces/admin/components/DateField/DateField.doc.d.ts.map +0 -1
  289. package/build/ts/surfaces/admin/components/DatePicker/DatePicker.doc.d.ts +0 -4
  290. package/build/ts/surfaces/admin/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  291. package/build/ts/surfaces/admin/components/Divider/Divider.doc.d.ts +0 -4
  292. package/build/ts/surfaces/admin/components/Divider/Divider.doc.d.ts.map +0 -1
  293. package/build/ts/surfaces/admin/components/DropZone/DropZone.doc.d.ts +0 -4
  294. package/build/ts/surfaces/admin/components/DropZone/DropZone.doc.d.ts.map +0 -1
  295. package/build/ts/surfaces/admin/components/EmailField/EmailField.doc.d.ts +0 -4
  296. package/build/ts/surfaces/admin/components/EmailField/EmailField.doc.d.ts.map +0 -1
  297. package/build/ts/surfaces/admin/components/Form/Form.ext.doc.d.ts +0 -4
  298. package/build/ts/surfaces/admin/components/Form/Form.ext.doc.d.ts.map +0 -1
  299. package/build/ts/surfaces/admin/components/FunctionSettings/FunctionSettings.ext.doc.d.ts +0 -4
  300. package/build/ts/surfaces/admin/components/FunctionSettings/FunctionSettings.ext.doc.d.ts.map +0 -1
  301. package/build/ts/surfaces/admin/components/Grid/Grid.doc.d.ts +0 -4
  302. package/build/ts/surfaces/admin/components/Grid/Grid.doc.d.ts.map +0 -1
  303. package/build/ts/surfaces/admin/components/Heading/Heading.doc.d.ts +0 -4
  304. package/build/ts/surfaces/admin/components/Heading/Heading.doc.d.ts.map +0 -1
  305. package/build/ts/surfaces/admin/components/Icon/Icon.doc.d.ts +0 -4
  306. package/build/ts/surfaces/admin/components/Icon/Icon.doc.d.ts.map +0 -1
  307. package/build/ts/surfaces/admin/components/Image/Image.doc.d.ts +0 -4
  308. package/build/ts/surfaces/admin/components/Image/Image.doc.d.ts.map +0 -1
  309. package/build/ts/surfaces/admin/components/Link/Link.doc.d.ts +0 -4
  310. package/build/ts/surfaces/admin/components/Link/Link.doc.d.ts.map +0 -1
  311. package/build/ts/surfaces/admin/components/Menu/Menu.doc.d.ts +0 -4
  312. package/build/ts/surfaces/admin/components/Menu/Menu.doc.d.ts.map +0 -1
  313. package/build/ts/surfaces/admin/components/Modal/Modal.ab.doc.d.ts +0 -4
  314. package/build/ts/surfaces/admin/components/Modal/Modal.ab.doc.d.ts.map +0 -1
  315. package/build/ts/surfaces/admin/components/MoneyField/MoneyField.doc.d.ts +0 -4
  316. package/build/ts/surfaces/admin/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  317. package/build/ts/surfaces/admin/components/NumberField/NumberField.doc.d.ts +0 -4
  318. package/build/ts/surfaces/admin/components/NumberField/NumberField.doc.d.ts.map +0 -1
  319. package/build/ts/surfaces/admin/components/OrderedList/OrderedList.doc.d.ts +0 -4
  320. package/build/ts/surfaces/admin/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  321. package/build/ts/surfaces/admin/components/Page/Page.ab.doc.d.ts +0 -4
  322. package/build/ts/surfaces/admin/components/Page/Page.ab.doc.d.ts.map +0 -1
  323. package/build/ts/surfaces/admin/components/Paragraph/Paragraph.doc.d.ts +0 -4
  324. package/build/ts/surfaces/admin/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  325. package/build/ts/surfaces/admin/components/PasswordField/PasswordField.doc.d.ts +0 -4
  326. package/build/ts/surfaces/admin/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  327. package/build/ts/surfaces/admin/components/Popover/Popover.ab.doc.d.ts +0 -4
  328. package/build/ts/surfaces/admin/components/Popover/Popover.ab.doc.d.ts.map +0 -1
  329. package/build/ts/surfaces/admin/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  330. package/build/ts/surfaces/admin/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  331. package/build/ts/surfaces/admin/components/SearchField/SearchField.doc.d.ts +0 -4
  332. package/build/ts/surfaces/admin/components/SearchField/SearchField.doc.d.ts.map +0 -1
  333. package/build/ts/surfaces/admin/components/Section/Section.doc.d.ts +0 -4
  334. package/build/ts/surfaces/admin/components/Section/Section.doc.d.ts.map +0 -1
  335. package/build/ts/surfaces/admin/components/Select/Select.doc.d.ts +0 -4
  336. package/build/ts/surfaces/admin/components/Select/Select.doc.d.ts.map +0 -1
  337. package/build/ts/surfaces/admin/components/Spinner/Spinner.doc.d.ts +0 -4
  338. package/build/ts/surfaces/admin/components/Spinner/Spinner.doc.d.ts.map +0 -1
  339. package/build/ts/surfaces/admin/components/Stack/Stack.doc.d.ts +0 -4
  340. package/build/ts/surfaces/admin/components/Stack/Stack.doc.d.ts.map +0 -1
  341. package/build/ts/surfaces/admin/components/Switch/Switch.doc.d.ts +0 -4
  342. package/build/ts/surfaces/admin/components/Switch/Switch.doc.d.ts.map +0 -1
  343. package/build/ts/surfaces/admin/components/Table/Table.doc.d.ts +0 -4
  344. package/build/ts/surfaces/admin/components/Table/Table.doc.d.ts.map +0 -1
  345. package/build/ts/surfaces/admin/components/Text/Text.doc.d.ts +0 -4
  346. package/build/ts/surfaces/admin/components/Text/Text.doc.d.ts.map +0 -1
  347. package/build/ts/surfaces/admin/components/TextArea/TextArea.doc.d.ts +0 -4
  348. package/build/ts/surfaces/admin/components/TextArea/TextArea.doc.d.ts.map +0 -1
  349. package/build/ts/surfaces/admin/components/TextField/TextField.doc.d.ts +0 -4
  350. package/build/ts/surfaces/admin/components/TextField/TextField.doc.d.ts.map +0 -1
  351. package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.doc.d.ts +0 -4
  352. package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.doc.d.ts.map +0 -1
  353. package/build/ts/surfaces/admin/components/Tooltip/Tooltip.doc.d.ts +0 -4
  354. package/build/ts/surfaces/admin/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  355. package/build/ts/surfaces/admin/components/URLField/URLField.doc.d.ts +0 -4
  356. package/build/ts/surfaces/admin/components/URLField/URLField.doc.d.ts.map +0 -1
  357. package/build/ts/surfaces/admin/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  358. package/build/ts/surfaces/admin/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  359. package/build/ts/surfaces/admin/components/patterns/accountConnection.ab.doc.d.ts +0 -4
  360. package/build/ts/surfaces/admin/components/patterns/accountConnection.ab.doc.d.ts.map +0 -1
  361. package/build/ts/surfaces/admin/components/patterns/appCard.ab.doc.d.ts +0 -4
  362. package/build/ts/surfaces/admin/components/patterns/appCard.ab.doc.d.ts.map +0 -1
  363. package/build/ts/surfaces/admin/components/patterns/calloutCard.ab.doc.d.ts +0 -4
  364. package/build/ts/surfaces/admin/components/patterns/calloutCard.ab.doc.d.ts.map +0 -1
  365. package/build/ts/surfaces/admin/components/patterns/details.ab.doc.d.ts +0 -4
  366. package/build/ts/surfaces/admin/components/patterns/details.ab.doc.d.ts.map +0 -1
  367. package/build/ts/surfaces/admin/components/patterns/emptyState.ab.doc.d.ts +0 -4
  368. package/build/ts/surfaces/admin/components/patterns/emptyState.ab.doc.d.ts.map +0 -1
  369. package/build/ts/surfaces/admin/components/patterns/footerHelp.ab.doc.d.ts +0 -4
  370. package/build/ts/surfaces/admin/components/patterns/footerHelp.ab.doc.d.ts.map +0 -1
  371. package/build/ts/surfaces/admin/components/patterns/homepage.ab.doc.d.ts +0 -4
  372. package/build/ts/surfaces/admin/components/patterns/homepage.ab.doc.d.ts.map +0 -1
  373. package/build/ts/surfaces/admin/components/patterns/index.ab.doc.d.ts +0 -4
  374. package/build/ts/surfaces/admin/components/patterns/index.ab.doc.d.ts.map +0 -1
  375. package/build/ts/surfaces/admin/components/patterns/indexTable.ab.doc.d.ts +0 -4
  376. package/build/ts/surfaces/admin/components/patterns/indexTable.ab.doc.d.ts.map +0 -1
  377. package/build/ts/surfaces/admin/components/patterns/interstitialNav.ab.doc.d.ts +0 -4
  378. package/build/ts/surfaces/admin/components/patterns/interstitialNav.ab.doc.d.ts.map +0 -1
  379. package/build/ts/surfaces/admin/components/patterns/mediaCard.ab.doc.d.ts +0 -4
  380. package/build/ts/surfaces/admin/components/patterns/mediaCard.ab.doc.d.ts.map +0 -1
  381. package/build/ts/surfaces/admin/components/patterns/metricsCard.ab.doc.d.ts +0 -4
  382. package/build/ts/surfaces/admin/components/patterns/metricsCard.ab.doc.d.ts.map +0 -1
  383. package/build/ts/surfaces/admin/components/patterns/resourceList.ab.doc.d.ts +0 -4
  384. package/build/ts/surfaces/admin/components/patterns/resourceList.ab.doc.d.ts.map +0 -1
  385. package/build/ts/surfaces/admin/components/patterns/settings.ab.doc.d.ts +0 -4
  386. package/build/ts/surfaces/admin/components/patterns/settings.ab.doc.d.ts.map +0 -1
  387. package/build/ts/surfaces/admin/components/patterns/setupGuide.ab.doc.d.ts +0 -4
  388. package/build/ts/surfaces/admin/components/patterns/setupGuide.ab.doc.d.ts.map +0 -1
  389. package/build/ts/surfaces/admin/docs-types.d.ts +0 -32
  390. package/build/ts/surfaces/admin/docs-types.d.ts.map +0 -1
  391. package/build/ts/surfaces/checkout/components/Abbreviation/Abbreviation.doc.d.ts +0 -4
  392. package/build/ts/surfaces/checkout/components/Abbreviation/Abbreviation.doc.d.ts.map +0 -1
  393. package/build/ts/surfaces/checkout/components/Announcement/Announcement.doc.d.ts +0 -4
  394. package/build/ts/surfaces/checkout/components/Announcement/Announcement.doc.d.ts.map +0 -1
  395. package/build/ts/surfaces/checkout/components/Badge/Badge.doc.d.ts +0 -4
  396. package/build/ts/surfaces/checkout/components/Badge/Badge.doc.d.ts.map +0 -1
  397. package/build/ts/surfaces/checkout/components/Banner/Banner.doc.d.ts +0 -4
  398. package/build/ts/surfaces/checkout/components/Banner/Banner.doc.d.ts.map +0 -1
  399. package/build/ts/surfaces/checkout/components/Box/Box.doc.d.ts +0 -4
  400. package/build/ts/surfaces/checkout/components/Box/Box.doc.d.ts.map +0 -1
  401. package/build/ts/surfaces/checkout/components/Button/Button.doc.d.ts +0 -4
  402. package/build/ts/surfaces/checkout/components/Button/Button.doc.d.ts.map +0 -1
  403. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.doc.d.ts +0 -4
  404. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  405. package/build/ts/surfaces/checkout/components/Chip/Chip.doc.d.ts +0 -4
  406. package/build/ts/surfaces/checkout/components/Chip/Chip.doc.d.ts.map +0 -1
  407. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  408. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  409. package/build/ts/surfaces/checkout/components/Clickable/Clickable.doc.d.ts +0 -4
  410. package/build/ts/surfaces/checkout/components/Clickable/Clickable.doc.d.ts.map +0 -1
  411. package/build/ts/surfaces/checkout/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  412. package/build/ts/surfaces/checkout/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  413. package/build/ts/surfaces/checkout/components/ClipboardItem/ClipboardItem.doc.d.ts +0 -4
  414. package/build/ts/surfaces/checkout/components/ClipboardItem/ClipboardItem.doc.d.ts.map +0 -1
  415. package/build/ts/surfaces/checkout/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts +0 -4
  416. package/build/ts/surfaces/checkout/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts.map +0 -1
  417. package/build/ts/surfaces/checkout/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts +0 -4
  418. package/build/ts/surfaces/checkout/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts.map +0 -1
  419. package/build/ts/surfaces/checkout/components/DateField/DateField.doc.d.ts +0 -4
  420. package/build/ts/surfaces/checkout/components/DateField/DateField.doc.d.ts.map +0 -1
  421. package/build/ts/surfaces/checkout/components/DatePicker/DatePicker.doc.d.ts +0 -4
  422. package/build/ts/surfaces/checkout/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  423. package/build/ts/surfaces/checkout/components/Details/Details.doc.d.ts +0 -4
  424. package/build/ts/surfaces/checkout/components/Details/Details.doc.d.ts.map +0 -1
  425. package/build/ts/surfaces/checkout/components/Divider/Divider.doc.d.ts +0 -4
  426. package/build/ts/surfaces/checkout/components/Divider/Divider.doc.d.ts.map +0 -1
  427. package/build/ts/surfaces/checkout/components/DropZone/DropZone.doc.d.ts +0 -4
  428. package/build/ts/surfaces/checkout/components/DropZone/DropZone.doc.d.ts.map +0 -1
  429. package/build/ts/surfaces/checkout/components/EmailField/EmailField.doc.d.ts +0 -4
  430. package/build/ts/surfaces/checkout/components/EmailField/EmailField.doc.d.ts.map +0 -1
  431. package/build/ts/surfaces/checkout/components/Form/Form.doc.d.ts +0 -4
  432. package/build/ts/surfaces/checkout/components/Form/Form.doc.d.ts.map +0 -1
  433. package/build/ts/surfaces/checkout/components/Grid/Grid.doc.d.ts +0 -4
  434. package/build/ts/surfaces/checkout/components/Grid/Grid.doc.d.ts.map +0 -1
  435. package/build/ts/surfaces/checkout/components/Heading/Heading.doc.d.ts +0 -4
  436. package/build/ts/surfaces/checkout/components/Heading/Heading.doc.d.ts.map +0 -1
  437. package/build/ts/surfaces/checkout/components/Icon/Icon.doc.d.ts +0 -4
  438. package/build/ts/surfaces/checkout/components/Icon/Icon.doc.d.ts.map +0 -1
  439. package/build/ts/surfaces/checkout/components/Image/Image.doc.d.ts +0 -4
  440. package/build/ts/surfaces/checkout/components/Image/Image.doc.d.ts.map +0 -1
  441. package/build/ts/surfaces/checkout/components/Link/Link.doc.d.ts +0 -4
  442. package/build/ts/surfaces/checkout/components/Link/Link.doc.d.ts.map +0 -1
  443. package/build/ts/surfaces/checkout/components/Map/Map.doc.d.ts +0 -4
  444. package/build/ts/surfaces/checkout/components/Map/Map.doc.d.ts.map +0 -1
  445. package/build/ts/surfaces/checkout/components/Modal/Modal.doc.d.ts +0 -4
  446. package/build/ts/surfaces/checkout/components/Modal/Modal.doc.d.ts.map +0 -1
  447. package/build/ts/surfaces/checkout/components/MoneyField/MoneyField.doc.d.ts +0 -4
  448. package/build/ts/surfaces/checkout/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  449. package/build/ts/surfaces/checkout/components/NumberField/NumberField.doc.d.ts +0 -4
  450. package/build/ts/surfaces/checkout/components/NumberField/NumberField.doc.d.ts.map +0 -1
  451. package/build/ts/surfaces/checkout/components/OrderedList/OrderedList.doc.d.ts +0 -4
  452. package/build/ts/surfaces/checkout/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  453. package/build/ts/surfaces/checkout/components/Paragraph/Paragraph.doc.d.ts +0 -4
  454. package/build/ts/surfaces/checkout/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  455. package/build/ts/surfaces/checkout/components/PasswordField/PasswordField.doc.d.ts +0 -4
  456. package/build/ts/surfaces/checkout/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  457. package/build/ts/surfaces/checkout/components/PaymentIcon/PaymentIcon.doc.d.ts +0 -4
  458. package/build/ts/surfaces/checkout/components/PaymentIcon/PaymentIcon.doc.d.ts.map +0 -1
  459. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.doc.d.ts +0 -4
  460. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.doc.d.ts.map +0 -1
  461. package/build/ts/surfaces/checkout/components/Popover/Popover.doc.d.ts +0 -4
  462. package/build/ts/surfaces/checkout/components/Popover/Popover.doc.d.ts.map +0 -1
  463. package/build/ts/surfaces/checkout/components/PressButton/PressButton.doc.d.ts +0 -4
  464. package/build/ts/surfaces/checkout/components/PressButton/PressButton.doc.d.ts.map +0 -1
  465. package/build/ts/surfaces/checkout/components/ProductThumbnail/ProductThumbnail.doc.d.ts +0 -4
  466. package/build/ts/surfaces/checkout/components/ProductThumbnail/ProductThumbnail.doc.d.ts.map +0 -1
  467. package/build/ts/surfaces/checkout/components/Progress/Progress.doc.d.ts +0 -4
  468. package/build/ts/surfaces/checkout/components/Progress/Progress.doc.d.ts.map +0 -1
  469. package/build/ts/surfaces/checkout/components/QRCode/QRCode.doc.d.ts +0 -4
  470. package/build/ts/surfaces/checkout/components/QRCode/QRCode.doc.d.ts.map +0 -1
  471. package/build/ts/surfaces/checkout/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  472. package/build/ts/surfaces/checkout/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  473. package/build/ts/surfaces/checkout/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  474. package/build/ts/surfaces/checkout/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  475. package/build/ts/surfaces/checkout/components/Section/Section.doc.d.ts +0 -4
  476. package/build/ts/surfaces/checkout/components/Section/Section.doc.d.ts.map +0 -1
  477. package/build/ts/surfaces/checkout/components/Select/Select.doc.d.ts +0 -4
  478. package/build/ts/surfaces/checkout/components/Select/Select.doc.d.ts.map +0 -1
  479. package/build/ts/surfaces/checkout/components/Sheet/Sheet.doc.d.ts +0 -4
  480. package/build/ts/surfaces/checkout/components/Sheet/Sheet.doc.d.ts.map +0 -1
  481. package/build/ts/surfaces/checkout/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts +0 -4
  482. package/build/ts/surfaces/checkout/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts.map +0 -1
  483. package/build/ts/surfaces/checkout/components/Spinner/Spinner.doc.d.ts +0 -4
  484. package/build/ts/surfaces/checkout/components/Spinner/Spinner.doc.d.ts.map +0 -1
  485. package/build/ts/surfaces/checkout/components/Stack/Stack.doc.d.ts +0 -4
  486. package/build/ts/surfaces/checkout/components/Stack/Stack.doc.d.ts.map +0 -1
  487. package/build/ts/surfaces/checkout/components/Switch/Switch.doc.d.ts +0 -4
  488. package/build/ts/surfaces/checkout/components/Switch/Switch.doc.d.ts.map +0 -1
  489. package/build/ts/surfaces/checkout/components/Text/Text.doc.d.ts +0 -4
  490. package/build/ts/surfaces/checkout/components/Text/Text.doc.d.ts.map +0 -1
  491. package/build/ts/surfaces/checkout/components/TextArea/TextArea.doc.d.ts +0 -4
  492. package/build/ts/surfaces/checkout/components/TextArea/TextArea.doc.d.ts.map +0 -1
  493. package/build/ts/surfaces/checkout/components/TextField/TextField.doc.d.ts +0 -4
  494. package/build/ts/surfaces/checkout/components/TextField/TextField.doc.d.ts.map +0 -1
  495. package/build/ts/surfaces/checkout/components/Time/Time.doc.d.ts +0 -4
  496. package/build/ts/surfaces/checkout/components/Time/Time.doc.d.ts.map +0 -1
  497. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.doc.d.ts +0 -4
  498. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  499. package/build/ts/surfaces/checkout/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  500. package/build/ts/surfaces/checkout/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  501. package/build/ts/surfaces/checkout/components/UrlField/UrlField.doc.d.ts +0 -4
  502. package/build/ts/surfaces/checkout/components/UrlField/UrlField.doc.d.ts.map +0 -1
  503. package/build/ts/surfaces/checkout/helper.docs.d.ts +0 -15
  504. package/build/ts/surfaces/checkout/helper.docs.d.ts.map +0 -1
  505. package/build/ts/surfaces/customer-account/components/Abbreviation/Abbreviation.doc.d.ts +0 -4
  506. package/build/ts/surfaces/customer-account/components/Abbreviation/Abbreviation.doc.d.ts.map +0 -1
  507. package/build/ts/surfaces/customer-account/components/Announcement/Announcement.doc.d.ts +0 -4
  508. package/build/ts/surfaces/customer-account/components/Announcement/Announcement.doc.d.ts.map +0 -1
  509. package/build/ts/surfaces/customer-account/components/Avatar/Avatar.doc.d.ts +0 -4
  510. package/build/ts/surfaces/customer-account/components/Avatar/Avatar.doc.d.ts.map +0 -1
  511. package/build/ts/surfaces/customer-account/components/Badge/Badge.doc.d.ts +0 -4
  512. package/build/ts/surfaces/customer-account/components/Badge/Badge.doc.d.ts.map +0 -1
  513. package/build/ts/surfaces/customer-account/components/Banner/Banner.doc.d.ts +0 -4
  514. package/build/ts/surfaces/customer-account/components/Banner/Banner.doc.d.ts.map +0 -1
  515. package/build/ts/surfaces/customer-account/components/Box/Box.doc.d.ts +0 -4
  516. package/build/ts/surfaces/customer-account/components/Box/Box.doc.d.ts.map +0 -1
  517. package/build/ts/surfaces/customer-account/components/Button/Button.doc.d.ts +0 -4
  518. package/build/ts/surfaces/customer-account/components/Button/Button.doc.d.ts.map +0 -1
  519. package/build/ts/surfaces/customer-account/components/ButtonGroup/ButtonGroup.doc.d.ts +0 -4
  520. package/build/ts/surfaces/customer-account/components/ButtonGroup/ButtonGroup.doc.d.ts.map +0 -1
  521. package/build/ts/surfaces/customer-account/components/Checkbox/Checkbox.doc.d.ts +0 -4
  522. package/build/ts/surfaces/customer-account/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  523. package/build/ts/surfaces/customer-account/components/Chip/Chip.doc.d.ts +0 -4
  524. package/build/ts/surfaces/customer-account/components/Chip/Chip.doc.d.ts.map +0 -1
  525. package/build/ts/surfaces/customer-account/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  526. package/build/ts/surfaces/customer-account/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  527. package/build/ts/surfaces/customer-account/components/Clickable/Clickable.doc.d.ts +0 -4
  528. package/build/ts/surfaces/customer-account/components/Clickable/Clickable.doc.d.ts.map +0 -1
  529. package/build/ts/surfaces/customer-account/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  530. package/build/ts/surfaces/customer-account/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  531. package/build/ts/surfaces/customer-account/components/ClipboardItem/ClipboardItem.doc.d.ts +0 -4
  532. package/build/ts/surfaces/customer-account/components/ClipboardItem/ClipboardItem.doc.d.ts.map +0 -1
  533. package/build/ts/surfaces/customer-account/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts +0 -4
  534. package/build/ts/surfaces/customer-account/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts.map +0 -1
  535. package/build/ts/surfaces/customer-account/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts +0 -4
  536. package/build/ts/surfaces/customer-account/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts.map +0 -1
  537. package/build/ts/surfaces/customer-account/components/CustomerAccountAction/CustomerAccountAction.doc.d.ts +0 -4
  538. package/build/ts/surfaces/customer-account/components/CustomerAccountAction/CustomerAccountAction.doc.d.ts.map +0 -1
  539. package/build/ts/surfaces/customer-account/components/DateField/DateField.doc.d.ts +0 -4
  540. package/build/ts/surfaces/customer-account/components/DateField/DateField.doc.d.ts.map +0 -1
  541. package/build/ts/surfaces/customer-account/components/DatePicker/DatePicker.doc.d.ts +0 -4
  542. package/build/ts/surfaces/customer-account/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  543. package/build/ts/surfaces/customer-account/components/Details/Details.doc.d.ts +0 -4
  544. package/build/ts/surfaces/customer-account/components/Details/Details.doc.d.ts.map +0 -1
  545. package/build/ts/surfaces/customer-account/components/Divider/Divider.doc.d.ts +0 -4
  546. package/build/ts/surfaces/customer-account/components/Divider/Divider.doc.d.ts.map +0 -1
  547. package/build/ts/surfaces/customer-account/components/DropZone/DropZone.doc.d.ts +0 -4
  548. package/build/ts/surfaces/customer-account/components/DropZone/DropZone.doc.d.ts.map +0 -1
  549. package/build/ts/surfaces/customer-account/components/EmailField/EmailField.doc.d.ts +0 -4
  550. package/build/ts/surfaces/customer-account/components/EmailField/EmailField.doc.d.ts.map +0 -1
  551. package/build/ts/surfaces/customer-account/components/Form/Form.doc.d.ts +0 -4
  552. package/build/ts/surfaces/customer-account/components/Form/Form.doc.d.ts.map +0 -1
  553. package/build/ts/surfaces/customer-account/components/Grid/Grid.doc.d.ts +0 -4
  554. package/build/ts/surfaces/customer-account/components/Grid/Grid.doc.d.ts.map +0 -1
  555. package/build/ts/surfaces/customer-account/components/Heading/Heading.doc.d.ts +0 -4
  556. package/build/ts/surfaces/customer-account/components/Heading/Heading.doc.d.ts.map +0 -1
  557. package/build/ts/surfaces/customer-account/components/Icon/Icon.doc.d.ts +0 -4
  558. package/build/ts/surfaces/customer-account/components/Icon/Icon.doc.d.ts.map +0 -1
  559. package/build/ts/surfaces/customer-account/components/Image/Image.doc.d.ts +0 -4
  560. package/build/ts/surfaces/customer-account/components/Image/Image.doc.d.ts.map +0 -1
  561. package/build/ts/surfaces/customer-account/components/ImageGroup/ImageGroup.doc.d.ts +0 -4
  562. package/build/ts/surfaces/customer-account/components/ImageGroup/ImageGroup.doc.d.ts.map +0 -1
  563. package/build/ts/surfaces/customer-account/components/Link/Link.doc.d.ts +0 -4
  564. package/build/ts/surfaces/customer-account/components/Link/Link.doc.d.ts.map +0 -1
  565. package/build/ts/surfaces/customer-account/components/Map/Map.doc.d.ts +0 -4
  566. package/build/ts/surfaces/customer-account/components/Map/Map.doc.d.ts.map +0 -1
  567. package/build/ts/surfaces/customer-account/components/Menu/Menu.doc.d.ts +0 -4
  568. package/build/ts/surfaces/customer-account/components/Menu/Menu.doc.d.ts.map +0 -1
  569. package/build/ts/surfaces/customer-account/components/Modal/Modal.doc.d.ts +0 -4
  570. package/build/ts/surfaces/customer-account/components/Modal/Modal.doc.d.ts.map +0 -1
  571. package/build/ts/surfaces/customer-account/components/MoneyField/MoneyField.doc.d.ts +0 -4
  572. package/build/ts/surfaces/customer-account/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  573. package/build/ts/surfaces/customer-account/components/NumberField/NumberField.doc.d.ts +0 -4
  574. package/build/ts/surfaces/customer-account/components/NumberField/NumberField.doc.d.ts.map +0 -1
  575. package/build/ts/surfaces/customer-account/components/OrderedList/OrderedList.doc.d.ts +0 -4
  576. package/build/ts/surfaces/customer-account/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  577. package/build/ts/surfaces/customer-account/components/Page/Page.doc.d.ts +0 -4
  578. package/build/ts/surfaces/customer-account/components/Page/Page.doc.d.ts.map +0 -1
  579. package/build/ts/surfaces/customer-account/components/Paragraph/Paragraph.doc.d.ts +0 -4
  580. package/build/ts/surfaces/customer-account/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  581. package/build/ts/surfaces/customer-account/components/PasswordField/PasswordField.doc.d.ts +0 -4
  582. package/build/ts/surfaces/customer-account/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  583. package/build/ts/surfaces/customer-account/components/PaymentIcon/PaymentIcon.doc.d.ts +0 -4
  584. package/build/ts/surfaces/customer-account/components/PaymentIcon/PaymentIcon.doc.d.ts.map +0 -1
  585. package/build/ts/surfaces/customer-account/components/PhoneField/PhoneField.doc.d.ts +0 -4
  586. package/build/ts/surfaces/customer-account/components/PhoneField/PhoneField.doc.d.ts.map +0 -1
  587. package/build/ts/surfaces/customer-account/components/Popover/Popover.doc.d.ts +0 -4
  588. package/build/ts/surfaces/customer-account/components/Popover/Popover.doc.d.ts.map +0 -1
  589. package/build/ts/surfaces/customer-account/components/PressButton/PressButton.doc.d.ts +0 -4
  590. package/build/ts/surfaces/customer-account/components/PressButton/PressButton.doc.d.ts.map +0 -1
  591. package/build/ts/surfaces/customer-account/components/ProductThumbnail/ProductThumbnail.doc.d.ts +0 -4
  592. package/build/ts/surfaces/customer-account/components/ProductThumbnail/ProductThumbnail.doc.d.ts.map +0 -1
  593. package/build/ts/surfaces/customer-account/components/Progress/Progress.doc.d.ts +0 -4
  594. package/build/ts/surfaces/customer-account/components/Progress/Progress.doc.d.ts.map +0 -1
  595. package/build/ts/surfaces/customer-account/components/QRCode/QRCode.doc.d.ts +0 -4
  596. package/build/ts/surfaces/customer-account/components/QRCode/QRCode.doc.d.ts.map +0 -1
  597. package/build/ts/surfaces/customer-account/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  598. package/build/ts/surfaces/customer-account/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  599. package/build/ts/surfaces/customer-account/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  600. package/build/ts/surfaces/customer-account/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  601. package/build/ts/surfaces/customer-account/components/Section/Section.doc.d.ts +0 -4
  602. package/build/ts/surfaces/customer-account/components/Section/Section.doc.d.ts.map +0 -1
  603. package/build/ts/surfaces/customer-account/components/Select/Select.doc.d.ts +0 -4
  604. package/build/ts/surfaces/customer-account/components/Select/Select.doc.d.ts.map +0 -1
  605. package/build/ts/surfaces/customer-account/components/Sheet/Sheet.doc.d.ts +0 -4
  606. package/build/ts/surfaces/customer-account/components/Sheet/Sheet.doc.d.ts.map +0 -1
  607. package/build/ts/surfaces/customer-account/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts +0 -4
  608. package/build/ts/surfaces/customer-account/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts.map +0 -1
  609. package/build/ts/surfaces/customer-account/components/Spinner/Spinner.doc.d.ts +0 -4
  610. package/build/ts/surfaces/customer-account/components/Spinner/Spinner.doc.d.ts.map +0 -1
  611. package/build/ts/surfaces/customer-account/components/Stack/Stack.doc.d.ts +0 -4
  612. package/build/ts/surfaces/customer-account/components/Stack/Stack.doc.d.ts.map +0 -1
  613. package/build/ts/surfaces/customer-account/components/Switch/Switch.doc.d.ts +0 -4
  614. package/build/ts/surfaces/customer-account/components/Switch/Switch.doc.d.ts.map +0 -1
  615. package/build/ts/surfaces/customer-account/components/Text/Text.doc.d.ts +0 -4
  616. package/build/ts/surfaces/customer-account/components/Text/Text.doc.d.ts.map +0 -1
  617. package/build/ts/surfaces/customer-account/components/TextArea/TextArea.doc.d.ts +0 -4
  618. package/build/ts/surfaces/customer-account/components/TextArea/TextArea.doc.d.ts.map +0 -1
  619. package/build/ts/surfaces/customer-account/components/TextField/TextField.doc.d.ts +0 -4
  620. package/build/ts/surfaces/customer-account/components/TextField/TextField.doc.d.ts.map +0 -1
  621. package/build/ts/surfaces/customer-account/components/Time/Time.doc.d.ts +0 -4
  622. package/build/ts/surfaces/customer-account/components/Time/Time.doc.d.ts.map +0 -1
  623. package/build/ts/surfaces/customer-account/components/Tooltip/Tooltip.doc.d.ts +0 -4
  624. package/build/ts/surfaces/customer-account/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  625. package/build/ts/surfaces/customer-account/components/URLField/URLField.doc.d.ts +0 -4
  626. package/build/ts/surfaces/customer-account/components/URLField/URLField.doc.d.ts.map +0 -1
  627. package/build/ts/surfaces/customer-account/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  628. package/build/ts/surfaces/customer-account/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  629. package/build/ts/surfaces/point-of-sale/components/Badge/Badge.doc.d.ts +0 -4
  630. package/build/ts/surfaces/point-of-sale/components/Badge/Badge.doc.d.ts.map +0 -1
  631. package/build/ts/surfaces/point-of-sale/components/Banner/Banner.doc.d.ts +0 -4
  632. package/build/ts/surfaces/point-of-sale/components/Banner/Banner.doc.d.ts.map +0 -1
  633. package/build/ts/surfaces/point-of-sale/components/Box/Box.doc.d.ts +0 -4
  634. package/build/ts/surfaces/point-of-sale/components/Box/Box.doc.d.ts.map +0 -1
  635. package/build/ts/surfaces/point-of-sale/components/Button/Button.doc.d.ts +0 -4
  636. package/build/ts/surfaces/point-of-sale/components/Button/Button.doc.d.ts.map +0 -1
  637. package/build/ts/surfaces/point-of-sale/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  638. package/build/ts/surfaces/point-of-sale/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  639. package/build/ts/surfaces/point-of-sale/components/Clickable/Clickable.doc.d.ts +0 -4
  640. package/build/ts/surfaces/point-of-sale/components/Clickable/Clickable.doc.d.ts.map +0 -1
  641. package/build/ts/surfaces/point-of-sale/components/DateField/DateField.doc.d.ts +0 -4
  642. package/build/ts/surfaces/point-of-sale/components/DateField/DateField.doc.d.ts.map +0 -1
  643. package/build/ts/surfaces/point-of-sale/components/DatePicker/DatePicker.doc.d.ts +0 -4
  644. package/build/ts/surfaces/point-of-sale/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  645. package/build/ts/surfaces/point-of-sale/components/DateSpinner/DateSpinner.doc.d.ts +0 -4
  646. package/build/ts/surfaces/point-of-sale/components/DateSpinner/DateSpinner.doc.d.ts.map +0 -1
  647. package/build/ts/surfaces/point-of-sale/components/Divider/Divider.doc.d.ts +0 -4
  648. package/build/ts/surfaces/point-of-sale/components/Divider/Divider.doc.d.ts.map +0 -1
  649. package/build/ts/surfaces/point-of-sale/components/EmailField/EmailField.doc.d.ts +0 -4
  650. package/build/ts/surfaces/point-of-sale/components/EmailField/EmailField.doc.d.ts.map +0 -1
  651. package/build/ts/surfaces/point-of-sale/components/Embed/Embed.doc.d.ts +0 -4
  652. package/build/ts/surfaces/point-of-sale/components/Embed/Embed.doc.d.ts.map +0 -1
  653. package/build/ts/surfaces/point-of-sale/components/EmptyState/EmptyState.doc.d.ts +0 -4
  654. package/build/ts/surfaces/point-of-sale/components/EmptyState/EmptyState.doc.d.ts.map +0 -1
  655. package/build/ts/surfaces/point-of-sale/components/Heading/Heading.doc.d.ts +0 -4
  656. package/build/ts/surfaces/point-of-sale/components/Heading/Heading.doc.d.ts.map +0 -1
  657. package/build/ts/surfaces/point-of-sale/components/Icon/Icon.doc.d.ts +0 -4
  658. package/build/ts/surfaces/point-of-sale/components/Icon/Icon.doc.d.ts.map +0 -1
  659. package/build/ts/surfaces/point-of-sale/components/Image/Image.doc.d.ts +0 -4
  660. package/build/ts/surfaces/point-of-sale/components/Image/Image.doc.d.ts.map +0 -1
  661. package/build/ts/surfaces/point-of-sale/components/Link/Link.doc.d.ts +0 -4
  662. package/build/ts/surfaces/point-of-sale/components/Link/Link.doc.d.ts.map +0 -1
  663. package/build/ts/surfaces/point-of-sale/components/Modal/Modal.doc.d.ts +0 -4
  664. package/build/ts/surfaces/point-of-sale/components/Modal/Modal.doc.d.ts.map +0 -1
  665. package/build/ts/surfaces/point-of-sale/components/NumberField/NumberField.doc.d.ts +0 -4
  666. package/build/ts/surfaces/point-of-sale/components/NumberField/NumberField.doc.d.ts.map +0 -1
  667. package/build/ts/surfaces/point-of-sale/components/Page/Page.doc.d.ts +0 -4
  668. package/build/ts/surfaces/point-of-sale/components/Page/Page.doc.d.ts.map +0 -1
  669. package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts +0 -4
  670. package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts.map +0 -1
  671. package/build/ts/surfaces/point-of-sale/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  672. package/build/ts/surfaces/point-of-sale/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  673. package/build/ts/surfaces/point-of-sale/components/SearchField/SearchField.doc.d.ts +0 -4
  674. package/build/ts/surfaces/point-of-sale/components/SearchField/SearchField.doc.d.ts.map +0 -1
  675. package/build/ts/surfaces/point-of-sale/components/Section/Section.doc.d.ts +0 -4
  676. package/build/ts/surfaces/point-of-sale/components/Section/Section.doc.d.ts.map +0 -1
  677. package/build/ts/surfaces/point-of-sale/components/Spinner/Spinner.doc.d.ts +0 -4
  678. package/build/ts/surfaces/point-of-sale/components/Spinner/Spinner.doc.d.ts.map +0 -1
  679. package/build/ts/surfaces/point-of-sale/components/Stack/Stack.doc.d.ts +0 -4
  680. package/build/ts/surfaces/point-of-sale/components/Stack/Stack.doc.d.ts.map +0 -1
  681. package/build/ts/surfaces/point-of-sale/components/Switch/Switch.doc.d.ts +0 -4
  682. package/build/ts/surfaces/point-of-sale/components/Switch/Switch.doc.d.ts.map +0 -1
  683. package/build/ts/surfaces/point-of-sale/components/Tabs/Tabs.doc.d.ts +0 -4
  684. package/build/ts/surfaces/point-of-sale/components/Tabs/Tabs.doc.d.ts.map +0 -1
  685. package/build/ts/surfaces/point-of-sale/components/Text/Text.doc.d.ts +0 -4
  686. package/build/ts/surfaces/point-of-sale/components/Text/Text.doc.d.ts.map +0 -1
  687. package/build/ts/surfaces/point-of-sale/components/TextArea/TextArea.doc.d.ts +0 -4
  688. package/build/ts/surfaces/point-of-sale/components/TextArea/TextArea.doc.d.ts.map +0 -1
  689. package/build/ts/surfaces/point-of-sale/components/TextField/TextField.doc.d.ts +0 -4
  690. package/build/ts/surfaces/point-of-sale/components/TextField/TextField.doc.d.ts.map +0 -1
  691. package/build/ts/surfaces/point-of-sale/components/Tile/Tile.doc.d.ts +0 -4
  692. package/build/ts/surfaces/point-of-sale/components/Tile/Tile.doc.d.ts.map +0 -1
  693. package/build/ts/surfaces/point-of-sale/components/TimeField/TimeField.doc.d.ts +0 -4
  694. package/build/ts/surfaces/point-of-sale/components/TimeField/TimeField.doc.d.ts.map +0 -1
  695. package/build/ts/surfaces/point-of-sale/components/TimePicker/TimePicker.doc.d.ts +0 -4
  696. package/build/ts/surfaces/point-of-sale/components/TimePicker/TimePicker.doc.d.ts.map +0 -1
  697. package/src/docs/shared/component-definitions.ts +0 -190
  698. package/src/docs/shared/components/Abbreviation.ts +0 -12
  699. package/src/docs/shared/components/Announcement.ts +0 -12
  700. package/src/docs/shared/components/Avatar.ts +0 -13
  701. package/src/docs/shared/components/Badge.ts +0 -13
  702. package/src/docs/shared/components/Banner.ts +0 -13
  703. package/src/docs/shared/components/Box.ts +0 -13
  704. package/src/docs/shared/components/Button.ts +0 -13
  705. package/src/docs/shared/components/ButtonGroup.ts +0 -13
  706. package/src/docs/shared/components/Checkbox.ts +0 -13
  707. package/src/docs/shared/components/Chip.ts +0 -13
  708. package/src/docs/shared/components/Choice.ts +0 -13
  709. package/src/docs/shared/components/ChoiceList.ts +0 -13
  710. package/src/docs/shared/components/Clickable.ts +0 -13
  711. package/src/docs/shared/components/ClickableChip.ts +0 -13
  712. package/src/docs/shared/components/ClipboardItem.ts +0 -12
  713. package/src/docs/shared/components/ColorField.ts +0 -13
  714. package/src/docs/shared/components/ColorPicker.ts +0 -13
  715. package/src/docs/shared/components/ConsentCheckbox.ts +0 -12
  716. package/src/docs/shared/components/ConsentPhoneField.ts +0 -12
  717. package/src/docs/shared/components/DateField.ts +0 -13
  718. package/src/docs/shared/components/DatePicker.ts +0 -13
  719. package/src/docs/shared/components/Details.ts +0 -12
  720. package/src/docs/shared/components/Divider.ts +0 -13
  721. package/src/docs/shared/components/DropZone.ts +0 -12
  722. package/src/docs/shared/components/EmailField.ts +0 -13
  723. package/src/docs/shared/components/Form.ts +0 -13
  724. package/src/docs/shared/components/FunctionSettings.ts +0 -13
  725. package/src/docs/shared/components/Grid.ts +0 -13
  726. package/src/docs/shared/components/GridItem.ts +0 -13
  727. package/src/docs/shared/components/Heading.ts +0 -13
  728. package/src/docs/shared/components/Icon.ts +0 -13
  729. package/src/docs/shared/components/Image.ts +0 -13
  730. package/src/docs/shared/components/Link.ts +0 -13
  731. package/src/docs/shared/components/ListItem.ts +0 -13
  732. package/src/docs/shared/components/Map.ts +0 -12
  733. package/src/docs/shared/components/MapMarker.ts +0 -12
  734. package/src/docs/shared/components/Menu.ts +0 -13
  735. package/src/docs/shared/components/Modal.ts +0 -12
  736. package/src/docs/shared/components/MoneyField.ts +0 -13
  737. package/src/docs/shared/components/NumberField.ts +0 -13
  738. package/src/docs/shared/components/Option.ts +0 -12
  739. package/src/docs/shared/components/OptionGroup.ts +0 -12
  740. package/src/docs/shared/components/OrderedList.ts +0 -13
  741. package/src/docs/shared/components/Page.ts +0 -12
  742. package/src/docs/shared/components/Paragraph.ts +0 -13
  743. package/src/docs/shared/components/PasswordField.ts +0 -13
  744. package/src/docs/shared/components/PaymentIcon.ts +0 -12
  745. package/src/docs/shared/components/PhoneField.ts +0 -11
  746. package/src/docs/shared/components/Popover.ts +0 -12
  747. package/src/docs/shared/components/PressButton.ts +0 -12
  748. package/src/docs/shared/components/ProductThumbnail.ts +0 -11
  749. package/src/docs/shared/components/Progress.ts +0 -12
  750. package/src/docs/shared/components/QRCode.ts +0 -12
  751. package/src/docs/shared/components/QueryContainer.ts +0 -13
  752. package/src/docs/shared/components/ScrollBox.ts +0 -12
  753. package/src/docs/shared/components/SearchField.ts +0 -12
  754. package/src/docs/shared/components/Section.ts +0 -13
  755. package/src/docs/shared/components/Select.ts +0 -13
  756. package/src/docs/shared/components/Sheet.ts +0 -14
  757. package/src/docs/shared/components/SkeletonParagraph.ts +0 -12
  758. package/src/docs/shared/components/Spinner.ts +0 -13
  759. package/src/docs/shared/components/Stack.ts +0 -13
  760. package/src/docs/shared/components/Summary.ts +0 -12
  761. package/src/docs/shared/components/Switch.ts +0 -13
  762. package/src/docs/shared/components/Table.ts +0 -13
  763. package/src/docs/shared/components/TableBody.ts +0 -13
  764. package/src/docs/shared/components/TableCell.ts +0 -13
  765. package/src/docs/shared/components/TableHeader.ts +0 -13
  766. package/src/docs/shared/components/TableHeaderRow.ts +0 -13
  767. package/src/docs/shared/components/TableRow.ts +0 -13
  768. package/src/docs/shared/components/Text.ts +0 -13
  769. package/src/docs/shared/components/TextArea.ts +0 -13
  770. package/src/docs/shared/components/TextField.ts +0 -13
  771. package/src/docs/shared/components/Thumbnail.ts +0 -13
  772. package/src/docs/shared/components/Time.ts +0 -12
  773. package/src/docs/shared/components/Tooltip.ts +0 -13
  774. package/src/docs/shared/components/URLField.ts +0 -13
  775. package/src/docs/shared/components/UnorderedList.ts +0 -13
  776. package/src/docs/shared/components/index.ts +0 -52
  777. package/src/docs/shared/docs-type.ts +0 -7
  778. package/src/surfaces/admin/components/Icon/icon-data.json +0 -9
  779. package/src/surfaces/admin/components/patterns/index.ab.doc.ts +0 -80
  780. package/src/surfaces/admin/docs-types.ts +0 -45
  781. package/src/surfaces/checkout/helper.docs.ts +0 -166
@@ -3,6 +3,55 @@ import type { ExtensionTarget as AnyExtensionTarget } from '../../extension-targ
3
3
  import type { ToastApi } from '../toast/toast';
4
4
  import type { AppApi } from '../app/app';
5
5
  import type { LoadingApi } from '../loading/loading';
6
+ import type { Tools } from '../tools/tools';
7
+ import type { IntentInvokeApi, IntentQueryOptions, IntentResponseApi } from '../intents/intents';
8
+ /**
9
+ * The current link intent delivered to an app home extension. The admin
10
+ * pushes a new value into `request` whenever a link intent is dispatched to
11
+ * your app, and resets it to `null` when no intent is active.
12
+ *
13
+ * The shape is signal-like (`value` + `subscribe`) so the running extension
14
+ * can observe a stream of intents over its lifetime, mirroring the behaviour
15
+ * the CLI's generated typings already expect via `WithGeneratedIntents`.
16
+ *
17
+ * @publicDocs
18
+ */
19
+ export interface AppHomeIntentRequest {
20
+ /**
21
+ * The intent that's currently being delivered to the extension, or `null`
22
+ * when no intent is active.
23
+ */
24
+ readonly value: IntentQueryOptions | null;
25
+ /**
26
+ * Subscribes to changes in the active intent. The callback is invoked with
27
+ * the new value whenever the admin dispatches a new intent or clears it.
28
+ * Returns a function that unsubscribes the callback.
29
+ */
30
+ subscribe: (callback: (value: IntentQueryOptions | null) => void) => () => void;
31
+ }
32
+ /**
33
+ * The intents API available to app home extensions. It exposes a signal-like
34
+ * `request` that streams link intents into the long-running extension. Inspect
35
+ * `request.value` for information about the active intent.
36
+ *
37
+ * @publicDocs
38
+ */
39
+ export interface AppHomeIntents {
40
+ /**
41
+ * The current link intent delivered to the extension. Subscribe to receive
42
+ * new intents over the lifetime of the extension.
43
+ */
44
+ request: AppHomeIntentRequest;
45
+ /**
46
+ * Resolves the current intent. Available only while `request.value` is
47
+ * non-null; the runtime swaps in a fresh handle for each new intent.
48
+ */
49
+ response?: IntentResponseApi;
50
+ /**
51
+ * Launches an intent workflow for creating or editing Shopify resources.
52
+ */
53
+ invoke?: IntentInvokeApi;
54
+ }
6
55
  /**
7
56
  * The `AppHomeApi` object provides methods for app home extensions. Access the following properties on the `AppHomeApi` object to authenticate users, query the [GraphQL Admin API](/docs/api/admin-graphql), translate content, handle intents, persist data, display toast notifications, control the Admin page-level loading indicator, and access app-level data.
8
57
  * @publicDocs
@@ -20,5 +69,17 @@ export interface AppHomeApi<ExtensionTarget extends AnyExtensionTarget> extends
20
69
  * Sets the Admin page-level loading indicator. Call `loading(true)` to show the loading indicator while your app home extension performs an asynchronous task. Call `loading(false)`, or call `loading()` without an argument, to hide it when the task completes.
21
70
  */
22
71
  loading: LoadingApi;
72
+ /**
73
+ * Receives [link intents](/docs/apps/build/sidekick/build-app-data) dispatched to the app home target and resolves them when complete. Subscribe to `intents.request` to be notified each time the admin navigates the merchant to your app via a link intent, and call `intents.response.ok()` / `error()` / `closed()` to resolve the active intent.
74
+ *
75
+ * When you run `dev`, the CLI generates typed variants for every intent declared in `shopify.extension.toml`. Use the `WithGeneratedIntents` helper type to narrow `request.value` and `response.ok` to the generated payloads in your app code.
76
+ */
77
+ intents: AppHomeIntents;
78
+ /**
79
+ * Registers runtime handlers for app tools declared in your extension configuration. Use this to expose app data lookups and app actions to [Sidekick](/docs/apps/build/sidekick/build-app-data), including link intents that drive the navigate modality from the app home target.
80
+ *
81
+ * When you run `dev`, the CLI generates typed `register` overloads for every tool declared in `shopify.extension.toml`. Use the `WithGeneratedTools` helper type to narrow this property to the generated overloads in your app code.
82
+ */
83
+ tools: Tools;
23
84
  }
24
85
  //# sourceMappingURL=app-home.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app-home.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/admin/api/app-home/app-home.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAC,eAAe,IAAI,kBAAkB,EAAC,MAAM,yBAAyB,CAAC;AACnF,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,oBAAoB,CAAC;AAEnD;;;GAGG;AACH,MAAM,WAAW,UAAU,CAAC,eAAe,SAAS,kBAAkB,CACpE,SAAQ,WAAW,CAAC,eAAe,CAAC;IACpC;;OAEG;IACH,KAAK,EAAE,QAAQ,CAAC;IAEhB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,OAAO,EAAE,UAAU,CAAC;CACrB"}
1
+ {"version":3,"file":"app-home.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/admin/api/app-home/app-home.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAC,eAAe,IAAI,kBAAkB,EAAC,MAAM,yBAAyB,CAAC;AACnF,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,gBAAgB,CAAC;AAC1C,OAAO,KAAK,EACV,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,oBAAoB,CAAC;AAE5B;;;;;;;;;;GAUG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,QAAQ,CAAC,KAAK,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC1C;;;;OAIG;IACH,SAAS,EAAE,CACT,QAAQ,EAAE,CAAC,KAAK,EAAE,kBAAkB,GAAG,IAAI,KAAK,IAAI,KACjD,MAAM,IAAI,CAAC;CACjB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,cAAc;IAC7B;;;OAGG;IACH,OAAO,EAAE,oBAAoB,CAAC;IAC9B;;;OAGG;IACH,QAAQ,CAAC,EAAE,iBAAiB,CAAC;IAC7B;;OAEG;IACH,MAAM,CAAC,EAAE,eAAe,CAAC;CAC1B;AAED;;;GAGG;AACH,MAAM,WAAW,UAAU,CAAC,eAAe,SAAS,kBAAkB,CACpE,SAAQ,WAAW,CAAC,eAAe,CAAC;IACpC;;OAEG;IACH,KAAK,EAAE,QAAQ,CAAC;IAEhB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,OAAO,EAAE,UAAU,CAAC;IAEpB;;;;OAIG;IACH,OAAO,EAAE,cAAc,CAAC;IAExB;;;;OAIG;IACH,KAAK,EAAE,KAAK,CAAC;CACd"}
@@ -1,3 +1,14 @@
1
+ /**
2
+ * Options to configure the Admin page-level loading indicator.
3
+ *
4
+ * @publicDocs
5
+ */
6
+ export interface LoadingOptions {
7
+ /**
8
+ * Pass `true` to show the loading indicator, `false` to hide it.
9
+ */
10
+ isLoading?: boolean;
11
+ }
1
12
  /**
2
13
  * Sets the Admin page-level loading indicator for hosted app home extensions.
3
14
  *
@@ -1 +1 @@
1
- {"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/admin/api/loading/loading.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,SAAS,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC"}
1
+ {"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/admin/api/loading/loading.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,SAAS,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC"}
@@ -0,0 +1,53 @@
1
+ /**
2
+ * A handler function invoked by the platform when a registered tool is called.
3
+ * The handler receives an `input` object that matches the tool's declared input
4
+ * JSON schema and must return (synchronously or asynchronously) an object that
5
+ * matches the declared output JSON schema.
6
+ *
7
+ * Generated tool typings narrow the `input` and return value of this handler
8
+ * for each registered tool name. This base signature is the generic fallback
9
+ * used before code generation has run, or for tools that aren't yet declared
10
+ * in your extension configuration.
11
+ *
12
+ * @publicDocs
13
+ */
14
+ export type ToolHandler = (input: Record<string, any>) => Record<string, any> | Promise<Record<string, any>>;
15
+ /**
16
+ * The `Tools` object provides methods for registering and removing runtime
17
+ * handlers for app tools declared in your extension configuration. Use this
18
+ * API to expose app data lookups and app actions that
19
+ * [Sidekick](/docs/apps/build/sidekick/build-app-data) can invoke on behalf of
20
+ * merchants.
21
+ *
22
+ * The base `register` signature accepts any tool name and a generic handler.
23
+ * When you run `dev`, the CLI generates a typed `register` overload for every
24
+ * tool declared in `shopify.extension.toml`, narrowing both the accepted name
25
+ * and the handler's `input`/return types. Use the `WithGeneratedTools` helper
26
+ * to merge the generated typings into your target's API.
27
+ *
28
+ * @publicDocs
29
+ */
30
+ export interface Tools {
31
+ /**
32
+ * Registers a tool handler for your app. If a handler with the same name is
33
+ * already registered, it is replaced. Returns a cleanup function that
34
+ * unregisters the handler.
35
+ *
36
+ * @param name - The tool name as declared in your extension configuration.
37
+ * @param handler - The function invoked when the tool is called.
38
+ * @returns A function that unregisters the handler when invoked.
39
+ */
40
+ register: (name: string, handler: ToolHandler) => () => void;
41
+ /**
42
+ * Unregisters a previously registered tool handler. Calling this for a tool
43
+ * that isn't registered is a no-op.
44
+ *
45
+ * @param name - The tool name to unregister.
46
+ */
47
+ unregister: (name: string) => void;
48
+ /**
49
+ * Unregisters every tool handler currently registered by your extension.
50
+ */
51
+ clear: () => void;
52
+ }
53
+ //# sourceMappingURL=tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/admin/api/tools/tools.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,MAAM,MAAM,WAAW,GAAG,CACxB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KACvB,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;AAExD;;;;;;;;;;;;;;GAcG;AACH,MAAM,WAAW,KAAK;IACpB;;;;;;;;OAQG;IACH,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,KAAK,MAAM,IAAI,CAAC;IAE7D;;;;;OAKG;IACH,UAAU,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAEnC;;OAEG;IACH,KAAK,EAAE,MAAM,IAAI,CAAC;CACnB"}
@@ -1,9 +1,10 @@
1
1
  export type { I18n, I18nTranslate } from '../../api';
2
2
  export type { StandardApi, Intents } from './api/standard/standard';
3
3
  export type { ToastApi, ToastOptions } from './api/toast/toast';
4
- export type { LoadingApi } from './api/loading/loading';
4
+ export type { LoadingApi, LoadingOptions } from './api/loading/loading';
5
+ export type { Tools, ToolHandler } from './api/tools/tools';
5
6
  export type { AppApi, ExtensionInfo, ExtensionType, ExtensionStatus, UiExtensionActivation, ThemeBlockActivation, ThemeExtensionBlockActivation, ThemeAppBlockTarget, ThemeAppEmbedTarget, } from './api/app/app';
6
- export type { AppHomeApi } from './api/app-home/app-home';
7
+ export type { AppHomeApi, AppHomeIntents, AppHomeIntentRequest, } from './api/app-home/app-home';
7
8
  export type { StandardRenderingExtensionApi } from './api/standard/standard-rendering';
8
9
  export type { Navigation } from './api/block/block';
9
10
  export type { CustomerSegmentTemplateApi, CustomerSegmentTemplate, } from './api/customer-segment-template/customer-segment-template';
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/admin/api.ts"],"names":[],"mappings":"AAAA,YAAY,EAAC,IAAI,EAAE,aAAa,EAAC,MAAM,WAAW,CAAC;AACnD,YAAY,EAAC,WAAW,EAAE,OAAO,EAAC,MAAM,yBAAyB,CAAC;AAClE,YAAY,EAAC,QAAQ,EAAE,YAAY,EAAC,MAAM,mBAAmB,CAAC;AAC9D,YAAY,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAC;AACtD,YAAY,EACV,MAAM,EACN,aAAa,EACb,aAAa,EACb,eAAe,EACf,qBAAqB,EACrB,oBAAoB,EACpB,6BAA6B,EAC7B,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,eAAe,CAAC;AACvB,YAAY,EAAC,UAAU,EAAC,MAAM,yBAAyB,CAAC;AACxD,YAAY,EAAC,6BAA6B,EAAC,MAAM,mCAAmC,CAAC;AACrF,YAAY,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAClD,YAAY,EACV,0BAA0B,EAC1B,uBAAuB,GACxB,MAAM,2DAA2D,CAAC;AACnE,YAAY,EAAC,kBAAkB,EAAC,MAAM,qBAAqB,CAAC;AAC5D,YAAY,EAAC,iBAAiB,EAAC,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAC,uBAAuB,EAAC,MAAM,iCAAiC,CAAC;AAC7E,YAAY,EAAC,8BAA8B,EAAC,MAAM,2DAA2D,CAAC;AAC9G,YAAY,EAAC,qCAAqC,EAAC,MAAM,mEAAmE,CAAC;AAC7H,YAAY,EAAC,mBAAmB,EAAC,MAAM,6CAA6C,CAAC;AACrF,YAAY,EAAC,qBAAqB,EAAC,MAAM,0CAA0C,CAAC;AACpF,YAAY,EAAC,mCAAmC,EAAC,MAAM,oCAAoC,CAAC;AAC5F,YAAY,EAAC,2BAA2B,EAAC,MAAM,6DAA6D,CAAC;AAC7G,YAAY,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAC;AACjE,YAAY,EACV,8BAA8B,EAC9B,6BAA6B,EAC7B,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,2BAA2B,CAAC"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/admin/api.ts"],"names":[],"mappings":"AAAA,YAAY,EAAC,IAAI,EAAE,aAAa,EAAC,MAAM,WAAW,CAAC;AACnD,YAAY,EAAC,WAAW,EAAE,OAAO,EAAC,MAAM,yBAAyB,CAAC;AAClE,YAAY,EAAC,QAAQ,EAAE,YAAY,EAAC,MAAM,mBAAmB,CAAC;AAC9D,YAAY,EAAC,UAAU,EAAE,cAAc,EAAC,MAAM,uBAAuB,CAAC;AACtE,YAAY,EAAC,KAAK,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAC1D,YAAY,EACV,MAAM,EACN,aAAa,EACb,aAAa,EACb,eAAe,EACf,qBAAqB,EACrB,oBAAoB,EACpB,6BAA6B,EAC7B,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,eAAe,CAAC;AACvB,YAAY,EACV,UAAU,EACV,cAAc,EACd,oBAAoB,GACrB,MAAM,yBAAyB,CAAC;AACjC,YAAY,EAAC,6BAA6B,EAAC,MAAM,mCAAmC,CAAC;AACrF,YAAY,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAClD,YAAY,EACV,0BAA0B,EAC1B,uBAAuB,GACxB,MAAM,2DAA2D,CAAC;AACnE,YAAY,EAAC,kBAAkB,EAAC,MAAM,qBAAqB,CAAC;AAC5D,YAAY,EAAC,iBAAiB,EAAC,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAC,uBAAuB,EAAC,MAAM,iCAAiC,CAAC;AAC7E,YAAY,EAAC,8BAA8B,EAAC,MAAM,2DAA2D,CAAC;AAC9G,YAAY,EAAC,qCAAqC,EAAC,MAAM,mEAAmE,CAAC;AAC7H,YAAY,EAAC,mBAAmB,EAAC,MAAM,6CAA6C,CAAC;AACrF,YAAY,EAAC,qBAAqB,EAAC,MAAM,0CAA0C,CAAC;AACpF,YAAY,EAAC,mCAAmC,EAAC,MAAM,oCAAoC,CAAC;AAC5F,YAAY,EAAC,2BAA2B,EAAC,MAAM,6DAA6D,CAAC;AAC7G,YAAY,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAC;AACjE,YAAY,EACV,8BAA8B,EAC9B,6BAA6B,EAC7B,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,2BAA2B,CAAC"}
@@ -0,0 +1,35 @@
1
+ type ComponentChildren = any;
2
+ /**
3
+ * Configure the following properties on the app nav component.
4
+ *
5
+ * @publicDocs
6
+ */
7
+ export interface AppNavAttributes {
8
+ /**
9
+ * A unique identifier for the element.
10
+ */
11
+ id?: string;
12
+ /**
13
+ * The navigation items to inject into the Shopify admin sidebar.
14
+ * Provide `<s-link>` children where each link represents a navigation item.
15
+ * This component does not render any visible UI itself.
16
+ */
17
+ children?: ComponentChildren;
18
+ }
19
+ /**
20
+ * Attributes for link elements used as children of app nav. Each link defines a navigation destination in your app's menu.
21
+ *
22
+ * @publicDocs
23
+ */
24
+ export interface AppNavLinkAttributes {
25
+ /**
26
+ * The URL path for the navigation item. Must be a relative path within your app, such as `/products` or `/settings`. When clicked, it navigates the app to this route without a full page reload. The path should match a route defined in your app's routing configuration.
27
+ */
28
+ href: string;
29
+ /**
30
+ * The visible label text for the navigation item. Keep labels short (1-2 words) and use nouns that describe the destination (such as "Products", "Settings", or "Reports"). Avoid verbs like "Manage" or "View" to maintain consistency with Shopify admin navigation patterns.
31
+ */
32
+ children?: string;
33
+ }
34
+ export {};
35
+ //# sourceMappingURL=AppNavTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AppNavTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/admin/components/AppNav/AppNavTypes.ts"],"names":[],"mappings":"AAGA,KAAK,iBAAiB,GAAG,GAAG,CAAC;AAE7B;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;;;OAIG;IACH,QAAQ,CAAC,EAAE,iBAAiB,CAAC;CAC9B;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
@@ -126,6 +126,10 @@ export interface ExtensionTargets {
126
126
  * An action target that appears in the **More actions** menu on the abandoned checkout details page. Use this to create workflows for cart recovery, customer engagement, or checkout analysis.
127
127
  */
128
128
  'admin.abandoned-checkout-details.action.render': RenderExtension<ActionExtensionApi<'admin.abandoned-checkout-details.action.render'>, ActionExtensionComponents>;
129
+ /**
130
+ * An action target that appears in the **More actions** menu on the abandoned checkout index page. Use this to create workflows for cart recovery, bulk customer engagement, or checkout analysis across multiple abandoned carts.
131
+ */
132
+ 'admin.abandoned-checkout-index.action.render': RenderExtension<ActionExtensionApi<'admin.abandoned-checkout-index.action.render'>, ActionExtensionComponents>;
129
133
  /**
130
134
  * An action target that appears in the **More actions** menu on the product variant details page. Use this to create workflows for variant management, inventory operations, or data synchronization.
131
135
  */
@@ -267,6 +271,10 @@ export interface ExtensionTargets {
267
271
  * A non-rendering target that controls whether the abandoned checkout details action appears in the **More actions** menu. Use this to conditionally show or hide your action based on checkout properties, user permissions, or external data.
268
272
  */
269
273
  'admin.abandoned-checkout-details.action.should-render': RunnableExtension<ShouldRenderApi<'admin.abandoned-checkout-details.action.should-render'>, ShouldRenderOutput>;
274
+ /**
275
+ * A non-rendering target that controls whether the abandoned checkout index action appears in the **More actions** menu. Use this to conditionally show or hide your action based on user permissions, store configuration, or external data.
276
+ */
277
+ 'admin.abandoned-checkout-index.action.should-render': RunnableExtension<ShouldRenderApi<'admin.abandoned-checkout-index.action.should-render'>, ShouldRenderOutput>;
270
278
  /**
271
279
  * A non-rendering target that controls whether the product variant details action appears in the **More actions** menu. Use this to conditionally show or hide your action based on variant properties, user permissions, or external data.
272
280
  */
@@ -1 +1 @@
1
- {"version":3,"file":"extension-targets.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/admin/extension-targets.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"extension-targets.d.ts","sourceRoot":"","sources":["../../../../src/surfaces/admin/extension-targets.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,61 @@
1
+ import "../components/AdminAction.d.ts";
2
+ import "../components/Avatar.d.ts";
3
+ import "../components/Badge.d.ts";
4
+ import "../components/Banner.d.ts";
5
+ import "../components/Box.d.ts";
6
+ import "../components/Button.d.ts";
7
+ import "../components/ButtonGroup.d.ts";
8
+ import "../components/Checkbox.d.ts";
9
+ import "../components/Chip.d.ts";
10
+ import "../components/Choice.d.ts";
11
+ import "../components/ChoiceList.d.ts";
12
+ import "../components/Clickable.d.ts";
13
+ import "../components/ClickableChip.d.ts";
14
+ import "../components/ColorField.d.ts";
15
+ import "../components/ColorPicker.d.ts";
16
+ import "../components/DateField.d.ts";
17
+ import "../components/DatePicker.d.ts";
18
+ import "../components/Divider.d.ts";
19
+ import "../components/DropZone.d.ts";
20
+ import "../components/EmailField.d.ts";
21
+ import "../components/Grid.d.ts";
22
+ import "../components/GridItem.d.ts";
23
+ import "../components/Heading.d.ts";
24
+ import "../components/Icon.d.ts";
25
+ import "../components/Image.d.ts";
26
+ import "../components/Link.d.ts";
27
+ import "../components/ListItem.d.ts";
28
+ import "../components/Menu.d.ts";
29
+ import "../components/MoneyField.d.ts";
30
+ import "../components/NumberField.d.ts";
31
+ import "../components/Option.d.ts";
32
+ import "../components/OptionGroup.d.ts";
33
+ import "../components/OrderedList.d.ts";
34
+ import "../components/Paragraph.d.ts";
35
+ import "../components/PasswordField.d.ts";
36
+ import "../components/QueryContainer.d.ts";
37
+ import "../components/SearchField.d.ts";
38
+ import "../components/Section.d.ts";
39
+ import "../components/Select.d.ts";
40
+ import "../components/Spinner.d.ts";
41
+ import "../components/Stack.d.ts";
42
+ import "../components/Switch.d.ts";
43
+ import "../components/Table.d.ts";
44
+ import "../components/TableBody.d.ts";
45
+ import "../components/TableCell.d.ts";
46
+ import "../components/TableHeader.d.ts";
47
+ import "../components/TableHeaderRow.d.ts";
48
+ import "../components/TableRow.d.ts";
49
+ import "../components/Text.d.ts";
50
+ import "../components/TextArea.d.ts";
51
+ import "../components/TextField.d.ts";
52
+ import "../components/Thumbnail.d.ts";
53
+ import "../components/Tooltip.d.ts";
54
+ import "../components/UnorderedList.d.ts";
55
+ import "../components/URLField.d.ts";
56
+ import type { ExtensionTargets } from '../extension-targets';
57
+
58
+ type Target = ExtensionTargets['admin.abandoned-checkout-index.action.render'];
59
+ export type Api = Target['api'];
60
+ export type Output = Target['output'];
61
+
@@ -0,0 +1,6 @@
1
+ import type { ExtensionTargets } from '../extension-targets';
2
+
3
+ type Target = ExtensionTargets['admin.abandoned-checkout-index.action.should-render'];
4
+ export type Api = Target['api'];
5
+ export type Output = Target['output'];
6
+
@@ -11,17 +11,30 @@
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
+ /**
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
- * Used when an element has children.
31
+ * The base properties for elements that have children, extending `BaseElementProps` with children support.
32
+ * @publicDocs
23
33
  */
24
34
  export interface BaseElementPropsWithChildren<TClass = HTMLElement> extends BaseElementProps<TClass> {
35
+ /**
36
+ * The child elements to render within this component.
37
+ */
25
38
  children?: preact.ComponentChildren;
26
39
  }
27
40
 
@@ -31,19 +44,17 @@ export interface ParagraphElementProps extends Pick<ParagraphProps$1, 'accessibi
31
44
  color?: Extract<ParagraphProps$1['color'], 'subdued' | 'base'>;
32
45
  tone?: Extract<ParagraphProps$1['tone'], 'auto' | 'info' | 'success' | 'warning' | 'critical' | 'neutral' | 'custom'>;
33
46
  /**
34
- * The semantic type and styling treatment for the paragraph content.
35
- *
36
- * Other presentation properties on `s-paragraph` override the default styling.
47
+ * Sets the alignment of the text.
48
+ * @see https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
37
49
  *
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'
50
+ * @default 'auto'
42
51
  */
43
- type?: Extract<ParagraphProps$1['type'], 'paragraph' | 'small'>;
52
+ textAlign?: 'start' | 'end' | 'center' | 'auto';
44
53
  }
54
+ /** @publicDocs */
45
55
  export interface ParagraphElement extends ParagraphElementProps, Omit<HTMLElement, 'id' | 'dir' | 'lang'> {
46
56
  }
57
+ /** @publicDocs */
47
58
  export interface ParagraphProps extends ParagraphElementProps {
48
59
  }
49
60
  declare global {
@@ -2005,6 +2005,8 @@ interface ClipboardItemProps$1 extends GlobalProps {
2005
2005
  /**
2006
2006
  * Plain text to be written to the clipboard.
2007
2007
  *
2008
+ * Rich text, HTML, and binary content aren't supported.
2009
+ *
2008
2010
  * @default ''
2009
2011
  */
2010
2012
  text?: string;
@@ -2304,7 +2306,7 @@ interface DividerProps$1 extends GlobalProps {
2304
2306
  * The orientation of the divider, using [logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
2305
2307
  *
2306
2308
  * - `inline`: A horizontal divider that separates content stacked vertically.
2307
- * - `block`: A vertical divider that separates content arranged horizontally.
2309
+ * - `block`: A vertical divider that separates content arranged horizontally. Requires a parent with a defined height to render visibly.
2308
2310
  *
2309
2311
  * @default 'inline'
2310
2312
  */
@@ -18,6 +18,8 @@ export type CallbackEventListener<
18
18
  export interface AvatarElementProps extends IdProps {
19
19
  /**
20
20
  * The initials to display in the avatar when no image is provided or fails to load. Typically one or two characters representing a person's first and last name initials, such as "JD" for John Doe.
21
+ *
22
+ * Characters beyond the first two might be truncated. Special characters, emojis, and non-Latin scripts might not render as expected.
21
23
  */
22
24
  initials?: string;
23
25
 
@@ -12,9 +12,10 @@ export interface PageProps extends IdProps {
12
12
  subheading?: string;
13
13
 
14
14
  /**
15
- * The inline size of the page
16
- * - `base` corresponds to a set default inline size
17
- * - `large` full width with whitespace
15
+ * The inline size of the page.
16
+ *
17
+ * - `base`: Matches the narrow width used by native pages for simple workflows.
18
+ * - `large`: Uses the full width available to the main content area in customer accounts. Recommended for content-heavy pages or desktop-first experiences.
18
19
  *
19
20
  * @default 'base'
20
21
  */
@@ -11,17 +11,30 @@
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
+ /**
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
- * Used when an element has children.
31
+ * The base properties for elements that have children, extending `BaseElementProps` with children support.
32
+ * @publicDocs
23
33
  */
24
34
  export interface BaseElementPropsWithChildren<TClass = HTMLElement> extends BaseElementProps<TClass> {
35
+ /**
36
+ * The child elements to render within this component.
37
+ */
25
38
  children?: preact.ComponentChildren;
26
39
  }
27
40
 
@@ -31,19 +44,17 @@ export interface ParagraphElementProps extends Pick<ParagraphProps$1, 'accessibi
31
44
  color?: Extract<ParagraphProps$1['color'], 'subdued' | 'base'>;
32
45
  tone?: Extract<ParagraphProps$1['tone'], 'auto' | 'info' | 'success' | 'warning' | 'critical' | 'neutral' | 'custom'>;
33
46
  /**
34
- * The semantic type and styling treatment for the paragraph content.
35
- *
36
- * Other presentation properties on `s-paragraph` override the default styling.
47
+ * Sets the alignment of the text.
48
+ * @see https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
37
49
  *
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'
50
+ * @default 'auto'
42
51
  */
43
- type?: Extract<ParagraphProps$1['type'], 'paragraph' | 'small'>;
52
+ textAlign?: 'start' | 'end' | 'center' | 'auto';
44
53
  }
54
+ /** @publicDocs */
45
55
  export interface ParagraphElement extends ParagraphElementProps, Omit<HTMLElement, 'id' | 'dir' | 'lang'> {
46
56
  }
57
+ /** @publicDocs */
47
58
  export interface ParagraphProps extends ParagraphElementProps {
48
59
  }
49
60
  declare global {
@@ -2005,6 +2005,8 @@ interface ClipboardItemProps$1 extends GlobalProps {
2005
2005
  /**
2006
2006
  * Plain text to be written to the clipboard.
2007
2007
  *
2008
+ * Rich text, HTML, and binary content aren't supported.
2009
+ *
2008
2010
  * @default ''
2009
2011
  */
2010
2012
  text?: string;
@@ -2304,7 +2306,7 @@ interface DividerProps$1 extends GlobalProps {
2304
2306
  * The orientation of the divider, using [logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
2305
2307
  *
2306
2308
  * - `inline`: A horizontal divider that separates content stacked vertically.
2307
- * - `block`: A vertical divider that separates content arranged horizontally.
2309
+ * - `block`: A vertical divider that separates content arranged horizontally. Requires a parent with a defined height to render visibly.
2308
2310
  *
2309
2311
  * @default 'inline'
2310
2312
  */
@@ -7,6 +7,14 @@ import type { Address, Cart, CartUpdateInput, Customer, CustomSale, SetLineItemD
7
7
  export interface CartApi {
8
8
  cart: CartApiContent;
9
9
  }
10
+ /**
11
+ * Read-only view of the cart for background extension targets
12
+ * (e.g. `pos.app.ready.data`).
13
+ * @publicDocs
14
+ */
15
+ export interface ReadonlyCartApi {
16
+ cart: ReadonlyCartApiContent;
17
+ }
10
18
  /**
11
19
  * Defines the type of discount applied at the cart level. Specifies whether the discount is percentage-based, fixed amount, or discount code redemption.
12
20
  * @publicDocs
@@ -18,14 +26,20 @@ export type CartDiscountType = 'Percentage' | 'FixedAmount' | 'Code';
18
26
  */
19
27
  export type LineItemDiscountType = 'Percentage' | 'FixedAmount';
20
28
  /**
21
- * The `CartApi` object provides access to cart management functionality and real-time cart state monitoring. Access these properties through `shopify.cart` to interact with the current POS cart.
29
+ * Subscribable cart state without mutation methods.
22
30
  * @publicDocs
23
31
  */
24
- export interface CartApiContent {
32
+ export interface ReadonlyCartApiContent {
25
33
  /**
26
34
  * Provides read-only access to the current cart state and allows subscribing to cart changes. The `value` property provides the current cart state, and `subscribe` allows listening to changes with improved performance and memory management.
27
35
  */
28
36
  current: ReadonlySignalLike<Cart>;
37
+ }
38
+ /**
39
+ * Cart and line item write operations.
40
+ * @publicDocs
41
+ */
42
+ export interface MutableCartApiContent {
29
43
  /**
30
44
  * Perform a bulk update of the entire cart state including note, discounts, customer, line items, and properties. Returns the updated cart object after the operation completes with enhanced validation and error handling.
31
45
  *
@@ -126,7 +140,7 @@ export interface CartApiContent {
126
140
  */
127
141
  removeLineItemProperties(uuid: string, keys: string[]): Promise<void>;
128
142
  /**
129
- * Apply a discount to a specific line item using its `UUID`. Specify the discount type (`'Percentage'` or `'FixedAmount'`), title, and amount value with improved discount allocation tracking.
143
+ * Apply a discount to a specific line item using its `UUID`. Specify the discount type (`'Percentage'` or `'FixedAmount'`), title, and amount value with improved discount allocation tracking. `FixedAmount` discounts use per-unit amounts. For example, passing `'5.00'` on a line item with quantity 2 results in a $10.00 total discount.
130
144
  *
131
145
  * @param uuid the uuid of the line item that should receive a discount
132
146
  * @param type the type of discount applied (example: 'Percentage')
@@ -135,7 +149,7 @@ export interface CartApiContent {
135
149
  */
136
150
  setLineItemDiscount(uuid: string, type: LineItemDiscountType, title: string, amount: string): Promise<void>;
137
151
  /**
138
- * Apply discounts to multiple line items simultaneously. Each input specifies the line item `UUID` and discount details for efficient bulk discount operations with enhanced validation and allocation tracking.
152
+ * Apply discounts to multiple line items simultaneously. Each input specifies the line item `UUID` and discount details for efficient bulk discount operations with enhanced validation and allocation tracking. `FixedAmount` discounts use per-unit amounts. For example, passing `'5.00'` on a line item with quantity 2 results in a $10.00 total discount.
139
153
  *
140
154
  * @param lineItemDiscounts a map of discounts to add. They key is the uuid of the line item you want to add the discount to. The value is the discount input.
141
155
  */
@@ -191,4 +205,10 @@ export interface CartApiContent {
191
205
  */
192
206
  removeLineItemSellingPlan(uuid: string): Promise<void>;
193
207
  }
208
+ /**
209
+ * The `CartApi` object provides access to cart management functionality and real-time cart state monitoring. Access these properties through `shopify.cart` to interact with the current POS cart.
210
+ * @publicDocs
211
+ */
212
+ export interface CartApiContent extends ReadonlyCartApiContent, MutableCartApiContent {
213
+ }
194
214
  //# sourceMappingURL=cart-api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"cart-api.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/point-of-sale/api/cart-api/cart-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cart-api.d.ts","sourceRoot":"","sources":["../../../../../../src/surfaces/point-of-sale/api/cart-api/cart-api.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EACV,OAAO,EACP,IAAI,EACJ,eAAe,EACf,QAAQ,EACR,UAAU,EACV,wBAAwB,EACxB,0BAA0B,EAC1B,2BAA2B,EAC5B,MAAM,kBAAkB,CAAC;AAE1B;;;GAGG;AACH,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,cAAc,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,sBAAsB,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG,aAAa,GAAG,MAAM,CAAC;AAErE;;;GAGG;AACH,MAAM,MAAM,oBAAoB,GAAG,YAAY,GAAG,aAAa,CAAC;AAEhE;;;GAGG;AACH,MAAM,WAAW,sBAAsB;IACrC;;OAEG;IACH,OAAO,EAAE,kBAAkB,CAAC,IAAI,CAAC,CAAC;CACnC;AAED;;;GAGG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;;;OAKG;IACH,cAAc,CAAC,SAAS,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1D;;;;;;OAMG;IACH,iBAAiB,CACf,IAAI,EAAE,gBAAgB,EACtB,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;OAIG;IACH,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjD;;OAEG;IACH,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpC;;;;OAIG;IACH,kBAAkB,CAAC,yBAAyB,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEtE;;OAEG;IACH,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAE3B;;;;OAIG;IACH,WAAW,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/C;;OAEG;IACH,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAEhC;;;;;OAKG;IACH,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAEvD;;;;;;;OAOG;IACH,WAAW,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAElE;;;;OAIG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE5C;;;;OAIG;IACH,iBAAiB,CAAC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAErE;;;;OAIG;IACH,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpD;;;;;OAKG;IACH,qBAAqB,CACnB,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GACjC,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;OAIG;IACH,yBAAyB,CACvB,kBAAkB,EAAE,0BAA0B,EAAE,GAC/C,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;OAKG;IACH,wBAAwB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEtE;;;;;;;OAOG;IACH,mBAAmB,CACjB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,oBAAoB,EAC1B,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;OAIG;IACH,wBAAwB,CACtB,iBAAiB,EAAE,wBAAwB,EAAE,GAC5C,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;OAIG;IACH,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/D;;;;;OAKG;IACH,4BAA4B,CAC1B,OAAO,EAAE,MAAM,GAAG,SAAS,EAC3B,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;OAIG;IACH,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpD;;;;OAIG;IACH,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE5C;;;;OAIG;IACH,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEhD;;;;OAIG;IACH,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEvD;;;;;OAKG;IACH,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1E;;;;OAIG;IACH,yBAAyB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACxD;AAED;;;GAGG;AACH,MAAM,WAAW,cACf,SAAQ,sBAAsB,EAC5B,qBAAqB;CAAG"}