@dropins/mcp 0.1.0

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 (103) hide show
  1. package/LICENSE.md +127 -0
  2. package/README.md +314 -0
  3. package/dist/common/project-reader.d.ts +55 -0
  4. package/dist/common/project-reader.js +173 -0
  5. package/dist/common/registry-loader.d.ts +101 -0
  6. package/dist/common/registry-loader.js +386 -0
  7. package/dist/common/response-handling.d.ts +12 -0
  8. package/dist/common/response-handling.js +21 -0
  9. package/dist/common/sanitize.d.ts +8 -0
  10. package/dist/common/sanitize.js +45 -0
  11. package/dist/common/synonyms.d.ts +9 -0
  12. package/dist/common/synonyms.js +127 -0
  13. package/dist/common/telemetry.d.ts +14 -0
  14. package/dist/common/telemetry.js +54 -0
  15. package/dist/common/types.d.ts +308 -0
  16. package/dist/common/types.js +1 -0
  17. package/dist/common/version.d.ts +2 -0
  18. package/dist/common/version.js +14 -0
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +136 -0
  21. package/dist/operations/analyze-project.d.ts +13 -0
  22. package/dist/operations/analyze-project.js +125 -0
  23. package/dist/operations/check-block-health.d.ts +19 -0
  24. package/dist/operations/check-block-health.js +1149 -0
  25. package/dist/operations/check-config.d.ts +13 -0
  26. package/dist/operations/check-config.js +228 -0
  27. package/dist/operations/explain-event-flow.d.ts +16 -0
  28. package/dist/operations/explain-event-flow.js +218 -0
  29. package/dist/operations/get-upgrade-diff.d.ts +13 -0
  30. package/dist/operations/get-upgrade-diff.js +144 -0
  31. package/dist/operations/list-api-functions.d.ts +13 -0
  32. package/dist/operations/list-api-functions.js +53 -0
  33. package/dist/operations/list-containers.d.ts +13 -0
  34. package/dist/operations/list-containers.js +44 -0
  35. package/dist/operations/list-design-tokens.d.ts +13 -0
  36. package/dist/operations/list-design-tokens.js +47 -0
  37. package/dist/operations/list-events.d.ts +16 -0
  38. package/dist/operations/list-events.js +39 -0
  39. package/dist/operations/list-graphql-queries.d.ts +19 -0
  40. package/dist/operations/list-graphql-queries.js +84 -0
  41. package/dist/operations/list-i18n-keys.d.ts +19 -0
  42. package/dist/operations/list-i18n-keys.js +105 -0
  43. package/dist/operations/list-models.d.ts +16 -0
  44. package/dist/operations/list-models.js +80 -0
  45. package/dist/operations/list-slots.d.ts +16 -0
  46. package/dist/operations/list-slots.js +81 -0
  47. package/dist/operations/scaffold-block.d.ts +31 -0
  48. package/dist/operations/scaffold-block.js +331 -0
  49. package/dist/operations/scaffold-extension.d.ts +28 -0
  50. package/dist/operations/scaffold-extension.js +346 -0
  51. package/dist/operations/scaffold-slot.d.ts +22 -0
  52. package/dist/operations/scaffold-slot.js +189 -0
  53. package/dist/operations/search-commerce-docs.d.ts +16 -0
  54. package/dist/operations/search-commerce-docs.js +101 -0
  55. package/dist/operations/search-docs.d.ts +23 -0
  56. package/dist/operations/search-docs.js +298 -0
  57. package/dist/operations/suggest-event-handler.d.ts +16 -0
  58. package/dist/operations/suggest-event-handler.js +175 -0
  59. package/dist/operations/suggest-slot-implementation.d.ts +19 -0
  60. package/dist/operations/suggest-slot-implementation.js +183 -0
  61. package/dist/registry/api-functions.json +3045 -0
  62. package/dist/registry/block-patterns.json +78 -0
  63. package/dist/registry/containers.json +2003 -0
  64. package/dist/registry/design-tokens.json +577 -0
  65. package/dist/registry/docs/boilerplate.json +55 -0
  66. package/dist/registry/docs/dropins-all.json +97 -0
  67. package/dist/registry/docs/dropins-b2b.json +607 -0
  68. package/dist/registry/docs/dropins-cart.json +163 -0
  69. package/dist/registry/docs/dropins-checkout.json +193 -0
  70. package/dist/registry/docs/dropins-order.json +139 -0
  71. package/dist/registry/docs/dropins-payment-services.json +73 -0
  72. package/dist/registry/docs/dropins-personalization.json +67 -0
  73. package/dist/registry/docs/dropins-product-details.json +139 -0
  74. package/dist/registry/docs/dropins-product-discovery.json +85 -0
  75. package/dist/registry/docs/dropins-recommendations.json +67 -0
  76. package/dist/registry/docs/dropins-user-account.json +121 -0
  77. package/dist/registry/docs/dropins-user-auth.json +103 -0
  78. package/dist/registry/docs/dropins-wishlist.json +85 -0
  79. package/dist/registry/docs/get-started.json +85 -0
  80. package/dist/registry/docs/how-tos.json +19 -0
  81. package/dist/registry/docs/index.json +139 -0
  82. package/dist/registry/docs/licensing.json +19 -0
  83. package/dist/registry/docs/merchants.json +523 -0
  84. package/dist/registry/docs/resources.json +13 -0
  85. package/dist/registry/docs/sdk.json +139 -0
  86. package/dist/registry/docs/setup.json +145 -0
  87. package/dist/registry/docs/troubleshooting.json +19 -0
  88. package/dist/registry/events.json +2200 -0
  89. package/dist/registry/examples/index.json +19 -0
  90. package/dist/registry/examples/storefront-checkout.json +377 -0
  91. package/dist/registry/examples/storefront-quote-management.json +49 -0
  92. package/dist/registry/extensions.json +272 -0
  93. package/dist/registry/graphql.json +3469 -0
  94. package/dist/registry/i18n.json +1873 -0
  95. package/dist/registry/models.json +1001 -0
  96. package/dist/registry/sdk.json +2357 -0
  97. package/dist/registry/slots.json +2270 -0
  98. package/dist/registry/tools-components.json +595 -0
  99. package/dist/resources/guides.d.ts +7 -0
  100. package/dist/resources/guides.js +625 -0
  101. package/dist/resources/handlers.d.ts +31 -0
  102. package/dist/resources/handlers.js +322 -0
  103. package/package.json +47 -0
@@ -0,0 +1,2270 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "Auto-generated slot registry",
4
+ "defaultSlotContext": {
5
+ "description": "Properties available on every slot context (ctx parameter). Slots with contextType 'DefaultSlotContext' have ONLY these properties; other slots extend them with additional domain-specific fields.",
6
+ "properties": {
7
+ "dictionary": {
8
+ "type": "Lang",
9
+ "description": "i18n dictionary for translations — call dictionary.get('key') for localized strings"
10
+ },
11
+ "replaceWith": {
12
+ "type": "(element: HTMLElement | VNode) => void",
13
+ "description": "Replace the entire slot content with a custom element"
14
+ },
15
+ "appendChild": {
16
+ "type": "(element: HTMLElement | VNode) => void",
17
+ "description": "Append a child element after existing slot content"
18
+ },
19
+ "prependChild": {
20
+ "type": "(element: HTMLElement | VNode) => void",
21
+ "description": "Prepend a child element before existing slot content"
22
+ },
23
+ "appendSibling": {
24
+ "type": "(element: HTMLElement | VNode) => void",
25
+ "description": "Insert an element as a sibling after the slot container"
26
+ },
27
+ "prependSibling": {
28
+ "type": "(element: HTMLElement | VNode) => void",
29
+ "description": "Insert an element as a sibling before the slot container"
30
+ },
31
+ "remove": {
32
+ "type": "() => void",
33
+ "description": "Remove the slot from the DOM entirely"
34
+ },
35
+ "onRender": {
36
+ "type": "(cb: (next: ctx) => void) => void",
37
+ "description": "Register a callback invoked each time the slot re-renders with fresh context"
38
+ },
39
+ "onChange": {
40
+ "type": "(cb: (next: ctx) => void) => void",
41
+ "description": "Register a callback invoked when slot context values change"
42
+ },
43
+ "getSlotElement": {
44
+ "type": "(key: string) => SlotElement",
45
+ "description": "Retrieve a named child element from the slot for programmatic manipulation"
46
+ }
47
+ }
48
+ },
49
+ "defaultSlotMethods": {
50
+ "appendChild": "Add a child element to the slot",
51
+ "prependChild": "Add a child before existing content",
52
+ "replaceWith": "Replace the slot content entirely",
53
+ "removeChild": "Remove a child element",
54
+ "replaceHTML": "Replace inner HTML with a DOM element"
55
+ },
56
+ "dropins": {
57
+ "storefront-cart": {
58
+ "containers": {
59
+ "MiniCart": {
60
+ "slots": [
61
+ {
62
+ "name": "ProductList",
63
+ "description": "",
64
+ "contextType": "DefaultSlotContext",
65
+ "customMethods": [],
66
+ "dynamic": false,
67
+ "example": ""
68
+ },
69
+ {
70
+ "name": "ProductListFooter",
71
+ "description": "",
72
+ "contextType": "DefaultSlotContext",
73
+ "customMethods": [],
74
+ "dynamic": false,
75
+ "example": ""
76
+ },
77
+ {
78
+ "name": "PreCheckoutSection",
79
+ "description": "",
80
+ "contextType": "DefaultSlotContext",
81
+ "customMethods": [],
82
+ "dynamic": false,
83
+ "example": ""
84
+ },
85
+ {
86
+ "name": "Thumbnail",
87
+ "description": "",
88
+ "contextType": "{\n item: CartModel['items'][number];\n defaultImageProps: ImageProps;\n }",
89
+ "customMethods": [],
90
+ "dynamic": false,
91
+ "example": ""
92
+ },
93
+ {
94
+ "name": "Heading",
95
+ "description": "",
96
+ "contextType": "DefaultSlotContext",
97
+ "customMethods": [],
98
+ "dynamic": false,
99
+ "example": ""
100
+ },
101
+ {
102
+ "name": "EmptyCart",
103
+ "description": "",
104
+ "contextType": "DefaultSlotContext",
105
+ "customMethods": [],
106
+ "dynamic": false,
107
+ "example": ""
108
+ },
109
+ {
110
+ "name": "Footer",
111
+ "description": "",
112
+ "contextType": "DefaultSlotContext",
113
+ "customMethods": [],
114
+ "dynamic": false,
115
+ "example": ""
116
+ },
117
+ {
118
+ "name": "RowTotalFooter",
119
+ "description": "",
120
+ "contextType": "{ item: CartModel['items'][number] }",
121
+ "customMethods": [],
122
+ "dynamic": false,
123
+ "example": ""
124
+ },
125
+ {
126
+ "name": "ProductAttributes",
127
+ "description": "",
128
+ "contextType": "DefaultSlotContext",
129
+ "customMethods": [],
130
+ "dynamic": false,
131
+ "example": ""
132
+ },
133
+ {
134
+ "name": "CartSummaryFooter",
135
+ "description": "",
136
+ "contextType": "DefaultSlotContext",
137
+ "customMethods": [],
138
+ "dynamic": false,
139
+ "example": ""
140
+ },
141
+ {
142
+ "name": "CartItem",
143
+ "description": "",
144
+ "contextType": "DefaultSlotContext",
145
+ "customMethods": [],
146
+ "dynamic": false,
147
+ "example": ""
148
+ },
149
+ {
150
+ "name": "UndoBanner",
151
+ "description": "",
152
+ "contextType": "{\n item: CartModel['items'][0];\n loading: boolean;\n error?: string;\n onUndo: () => void;\n onDismiss: () => void;\n }",
153
+ "customMethods": [],
154
+ "dynamic": false,
155
+ "example": ""
156
+ },
157
+ {
158
+ "name": "ItemTitle",
159
+ "description": "",
160
+ "contextType": "{ item: CartModel['items'][number] }",
161
+ "customMethods": [],
162
+ "dynamic": false,
163
+ "example": ""
164
+ },
165
+ {
166
+ "name": "ItemPrice",
167
+ "description": "",
168
+ "contextType": "{ item: CartModel['items'][number] }",
169
+ "customMethods": [],
170
+ "dynamic": false,
171
+ "example": ""
172
+ },
173
+ {
174
+ "name": "ItemQuantity",
175
+ "description": "",
176
+ "contextType": "{\n item: CartModel['items'][number];\n enableUpdateItemQuantity: boolean;\n handleItemQuantityUpdate: (\n item: CartModel['items'][number],\n quantity: number\n ) => void;\n itemsLoading: Set<string>;\n handleItemsError: (uid: string, message?: string) => void;\n handleItemsLoading: (uid: string, state: boolean) => void;\n onItemUpdate?: ({ item }: { item: CartModel['items'][number] }) => void;\n }",
177
+ "customMethods": [],
178
+ "dynamic": false,
179
+ "example": ""
180
+ },
181
+ {
182
+ "name": "ItemTotal",
183
+ "description": "",
184
+ "contextType": "{ item: CartModel['items'][number] }",
185
+ "customMethods": [],
186
+ "dynamic": false,
187
+ "example": ""
188
+ },
189
+ {
190
+ "name": "ItemSku",
191
+ "description": "",
192
+ "contextType": "{ item: CartModel['items'][number] }",
193
+ "customMethods": [],
194
+ "dynamic": false,
195
+ "example": ""
196
+ },
197
+ {
198
+ "name": "ItemRemoveAction",
199
+ "description": "",
200
+ "contextType": "{\n item: CartModel['items'][number];\n enableRemoveItem: boolean;\n handleItemQuantityUpdate: (\n item: CartModel['items'][number],\n quantity: number\n ) => void;\n handleItemsError: (uid: string, message?: string) => void;\n handleItemsLoading: (uid: string, state: boolean) => void;\n onItemUpdate?: ({ item }: { item: CartModel['items'][number] }) => void;\n itemsLoading: Set<string>;\n }",
201
+ "customMethods": [],
202
+ "dynamic": false,
203
+ "example": ""
204
+ }
205
+ ]
206
+ },
207
+ "CartSummaryGrid": {
208
+ "slots": [
209
+ {
210
+ "name": "Thumbnail",
211
+ "description": "",
212
+ "contextType": "{ \n item: CartModel['items'][number], \n defaultImageProps: ImageProps \n }",
213
+ "customMethods": [],
214
+ "dynamic": false,
215
+ "example": ""
216
+ }
217
+ ]
218
+ },
219
+ "CartSummaryList": {
220
+ "slots": [
221
+ {
222
+ "name": "Heading",
223
+ "description": "",
224
+ "contextType": "DefaultSlotContext",
225
+ "customMethods": [],
226
+ "dynamic": false,
227
+ "example": ""
228
+ },
229
+ {
230
+ "name": "EmptyCart",
231
+ "description": "",
232
+ "contextType": "DefaultSlotContext",
233
+ "customMethods": [],
234
+ "dynamic": false,
235
+ "example": ""
236
+ },
237
+ {
238
+ "name": "Footer",
239
+ "description": "",
240
+ "contextType": "DefaultSlotContext",
241
+ "customMethods": [],
242
+ "dynamic": false,
243
+ "example": ""
244
+ },
245
+ {
246
+ "name": "RowTotalFooter",
247
+ "description": "",
248
+ "contextType": "{ item: CartModel['items'][number] }",
249
+ "customMethods": [],
250
+ "dynamic": false,
251
+ "example": ""
252
+ },
253
+ {
254
+ "name": "Thumbnail",
255
+ "description": "",
256
+ "contextType": "{\n item: CartModel['items'][number];\n defaultImageProps: ImageProps;\n }",
257
+ "customMethods": [],
258
+ "dynamic": false,
259
+ "example": ""
260
+ },
261
+ {
262
+ "name": "ProductAttributes",
263
+ "description": "",
264
+ "contextType": "DefaultSlotContext",
265
+ "customMethods": [],
266
+ "dynamic": false,
267
+ "example": ""
268
+ },
269
+ {
270
+ "name": "CartSummaryFooter",
271
+ "description": "",
272
+ "contextType": "DefaultSlotContext",
273
+ "customMethods": [],
274
+ "dynamic": false,
275
+ "example": ""
276
+ },
277
+ {
278
+ "name": "CartItem",
279
+ "description": "",
280
+ "contextType": "DefaultSlotContext",
281
+ "customMethods": [],
282
+ "dynamic": false,
283
+ "example": ""
284
+ },
285
+ {
286
+ "name": "UndoBanner",
287
+ "description": "",
288
+ "contextType": "{\n item: CartModel['items'][0];\n loading: boolean;\n error?: string;\n onUndo: () => void;\n onDismiss: () => void;\n }",
289
+ "customMethods": [],
290
+ "dynamic": false,
291
+ "example": ""
292
+ },
293
+ {
294
+ "name": "ItemTitle",
295
+ "description": "",
296
+ "contextType": "{ item: CartModel['items'][number] }",
297
+ "customMethods": [],
298
+ "dynamic": false,
299
+ "example": ""
300
+ },
301
+ {
302
+ "name": "ItemPrice",
303
+ "description": "",
304
+ "contextType": "{ item: CartModel['items'][number] }",
305
+ "customMethods": [],
306
+ "dynamic": false,
307
+ "example": ""
308
+ },
309
+ {
310
+ "name": "ItemQuantity",
311
+ "description": "",
312
+ "contextType": "{\n item: CartModel['items'][number];\n enableUpdateItemQuantity: boolean;\n handleItemQuantityUpdate: (\n item: CartModel['items'][number],\n quantity: number\n ) => void;\n itemsLoading: Set<string>;\n handleItemsError: (uid: string, message?: string) => void;\n handleItemsLoading: (uid: string, state: boolean) => void;\n onItemUpdate?: ({ item }: { item: CartModel['items'][number] }) => void;\n }",
313
+ "customMethods": [],
314
+ "dynamic": false,
315
+ "example": ""
316
+ },
317
+ {
318
+ "name": "ItemTotal",
319
+ "description": "",
320
+ "contextType": "{ item: CartModel['items'][number] }",
321
+ "customMethods": [],
322
+ "dynamic": false,
323
+ "example": ""
324
+ },
325
+ {
326
+ "name": "ItemSku",
327
+ "description": "",
328
+ "contextType": "{ item: CartModel['items'][number] }",
329
+ "customMethods": [],
330
+ "dynamic": false,
331
+ "example": ""
332
+ },
333
+ {
334
+ "name": "ItemRemoveAction",
335
+ "description": "",
336
+ "contextType": "{\n item: CartModel['items'][number];\n enableRemoveItem: boolean;\n handleItemQuantityUpdate: (\n item: CartModel['items'][number],\n quantity: number\n ) => void;\n handleItemsError: (uid: string, message?: string) => void;\n handleItemsLoading: (uid: string, state: boolean) => void;\n onItemUpdate?: ({ item }: { item: CartModel['items'][number] }) => void;\n itemsLoading: Set<string>;\n }",
337
+ "customMethods": [],
338
+ "dynamic": false,
339
+ "example": ""
340
+ }
341
+ ]
342
+ },
343
+ "OrderSummary": {
344
+ "slots": [
345
+ {
346
+ "name": "EstimateShipping",
347
+ "description": "",
348
+ "contextType": "DefaultSlotContext",
349
+ "customMethods": [],
350
+ "dynamic": false,
351
+ "example": ""
352
+ },
353
+ {
354
+ "name": "Coupons",
355
+ "description": "",
356
+ "contextType": "DefaultSlotContext",
357
+ "customMethods": [],
358
+ "dynamic": false,
359
+ "example": ""
360
+ },
361
+ {
362
+ "name": "GiftCards",
363
+ "description": "",
364
+ "contextType": "DefaultSlotContext",
365
+ "customMethods": [],
366
+ "dynamic": false,
367
+ "example": ""
368
+ }
369
+ ]
370
+ },
371
+ "GiftOptions": {
372
+ "slots": [
373
+ {
374
+ "name": "SwatchImage",
375
+ "description": "",
376
+ "contextType": "{ \n item: Item | ProductGiftOptionsConfig\n imageSwatchContext: ImageNodeRenderProps['imageSwatchContext']\n defaultImageProps: ImageProps\n }",
377
+ "customMethods": [],
378
+ "dynamic": false,
379
+ "example": ""
380
+ }
381
+ ]
382
+ },
383
+ "CartSummaryTable": {
384
+ "slots": [
385
+ {
386
+ "name": "Item",
387
+ "description": "",
388
+ "contextType": "{ item: CartModel['items'][number] }",
389
+ "customMethods": [],
390
+ "dynamic": false,
391
+ "example": ""
392
+ },
393
+ {
394
+ "name": "Price",
395
+ "description": "",
396
+ "contextType": "{ item: CartModel['items'][number] }",
397
+ "customMethods": [],
398
+ "dynamic": false,
399
+ "example": ""
400
+ },
401
+ {
402
+ "name": "Quantity",
403
+ "description": "",
404
+ "contextType": "{\n item: CartModel['items'][number];\n isUpdating: boolean;\n quantityInputValue: number;\n handleInputChange: (e: Event) => void;\n itemUpdateErrors: Map<string, string>;\n }",
405
+ "customMethods": [],
406
+ "dynamic": false,
407
+ "example": ""
408
+ },
409
+ {
410
+ "name": "Subtotal",
411
+ "description": "",
412
+ "contextType": "{ item: CartModel['items'][number] }",
413
+ "customMethods": [],
414
+ "dynamic": false,
415
+ "example": ""
416
+ },
417
+ {
418
+ "name": "Thumbnail",
419
+ "description": "",
420
+ "contextType": "{\n item: CartModel['items'][number];\n defaultImageProps: ImageProps;\n index: number;\n }",
421
+ "customMethods": [],
422
+ "dynamic": false,
423
+ "example": ""
424
+ },
425
+ {
426
+ "name": "ProductTitle",
427
+ "description": "",
428
+ "contextType": "{ item: CartModel['items'][number] }",
429
+ "customMethods": [],
430
+ "dynamic": false,
431
+ "example": ""
432
+ },
433
+ {
434
+ "name": "Sku",
435
+ "description": "",
436
+ "contextType": "{ item: CartModel['items'][number] }",
437
+ "customMethods": [],
438
+ "dynamic": false,
439
+ "example": ""
440
+ },
441
+ {
442
+ "name": "Configurations",
443
+ "description": "",
444
+ "contextType": "{ item: CartModel['items'][number] }",
445
+ "customMethods": [],
446
+ "dynamic": false,
447
+ "example": ""
448
+ },
449
+ {
450
+ "name": "ItemAlert",
451
+ "description": "",
452
+ "contextType": "{ item: CartModel['items'][number] }",
453
+ "customMethods": [],
454
+ "dynamic": false,
455
+ "example": ""
456
+ },
457
+ {
458
+ "name": "ItemWarning",
459
+ "description": "",
460
+ "contextType": "{ item: CartModel['items'][number] }",
461
+ "customMethods": [],
462
+ "dynamic": false,
463
+ "example": ""
464
+ },
465
+ {
466
+ "name": "Actions",
467
+ "description": "",
468
+ "contextType": "{\n item: CartModel['items'][number];\n itemsUpdating: Map<string, { isUpdating: boolean; updatedValue: number }>;\n setItemUpdating: (uid: string, state: boolean) => void;\n setItemUpdateError: (uid: string, error: string) => void;\n }",
469
+ "customMethods": [],
470
+ "dynamic": false,
471
+ "example": ""
472
+ },
473
+ {
474
+ "name": "UndoBanner",
475
+ "description": "",
476
+ "contextType": "{\n item: CartModel['items'][number];\n loading: boolean;\n error?: string;\n onUndo: () => void;\n onDismiss: () => void;\n }",
477
+ "customMethods": [],
478
+ "dynamic": false,
479
+ "example": ""
480
+ },
481
+ {
482
+ "name": "EmptyCart",
483
+ "description": "",
484
+ "contextType": "DefaultSlotContext",
485
+ "customMethods": [],
486
+ "dynamic": false,
487
+ "example": ""
488
+ }
489
+ ]
490
+ }
491
+ }
492
+ },
493
+ "storefront-checkout": {
494
+ "containers": {
495
+ "LoginForm": {
496
+ "slots": [
497
+ {
498
+ "name": "Heading",
499
+ "description": "",
500
+ "contextType": "{\n authenticated: boolean;\n }",
501
+ "customMethods": [],
502
+ "dynamic": false,
503
+ "example": ""
504
+ },
505
+ {
506
+ "name": "Preferences",
507
+ "description": "",
508
+ "contextType": "{\n email: string;\n isEmailValid: boolean;\n isAuthenticated: boolean;\n }",
509
+ "customMethods": [],
510
+ "dynamic": false,
511
+ "example": ""
512
+ },
513
+ {
514
+ "name": "Title",
515
+ "description": "",
516
+ "contextType": "DefaultSlotContext",
517
+ "customMethods": [],
518
+ "dynamic": false,
519
+ "example": ""
520
+ }
521
+ ]
522
+ },
523
+ "PaymentMethods": {
524
+ "slots": [
525
+ {
526
+ "name": "Methods",
527
+ "description": "",
528
+ "contextType": "PaymentMethodHandlers",
529
+ "customMethods": [],
530
+ "dynamic": false,
531
+ "example": ""
532
+ },
533
+ {
534
+ "name": "Title",
535
+ "description": "",
536
+ "contextType": "DefaultSlotContext",
537
+ "customMethods": [],
538
+ "dynamic": false,
539
+ "example": ""
540
+ }
541
+ ]
542
+ },
543
+ "PlaceOrder": {
544
+ "slots": [
545
+ {
546
+ "name": "Content",
547
+ "description": "",
548
+ "contextType": "ContentSlotContext",
549
+ "customMethods": [],
550
+ "dynamic": false,
551
+ "example": ""
552
+ }
553
+ ]
554
+ },
555
+ "ShippingMethods": {
556
+ "slots": [
557
+ {
558
+ "name": "ShippingMethodItem",
559
+ "description": "",
560
+ "contextType": "ShippingMethodItemContext",
561
+ "customMethods": [],
562
+ "dynamic": false,
563
+ "example": ""
564
+ },
565
+ {
566
+ "name": "Title",
567
+ "description": "",
568
+ "contextType": "DefaultSlotContext",
569
+ "customMethods": [],
570
+ "dynamic": false,
571
+ "example": ""
572
+ }
573
+ ]
574
+ },
575
+ "TermsAndConditions": {
576
+ "slots": [
577
+ {
578
+ "name": "Agreements",
579
+ "description": "",
580
+ "contextType": "{\n appendAgreement: SlotMethod<{\n name: string;\n mode: AgreementMode;\n translationId?: string;\n text?: string;\n }>;\n }",
581
+ "customMethods": [],
582
+ "dynamic": false,
583
+ "example": ""
584
+ }
585
+ ]
586
+ }
587
+ }
588
+ },
589
+ "storefront-pdp": {
590
+ "containers": {
591
+ "ProductDetails": {
592
+ "slots": [
593
+ {
594
+ "name": "Title",
595
+ "description": "",
596
+ "contextType": "DefaultSlotContext",
597
+ "customMethods": [],
598
+ "dynamic": false,
599
+ "example": ""
600
+ },
601
+ {
602
+ "name": "SKU",
603
+ "description": "",
604
+ "contextType": "DefaultSlotContext",
605
+ "customMethods": [],
606
+ "dynamic": false,
607
+ "example": ""
608
+ },
609
+ {
610
+ "name": "RegularPrice",
611
+ "description": "",
612
+ "contextType": "DefaultSlotContext",
613
+ "customMethods": [],
614
+ "dynamic": false,
615
+ "example": ""
616
+ },
617
+ {
618
+ "name": "SpecialPrice",
619
+ "description": "",
620
+ "contextType": "DefaultSlotContext",
621
+ "customMethods": [],
622
+ "dynamic": false,
623
+ "example": ""
624
+ },
625
+ {
626
+ "name": "Options",
627
+ "description": "",
628
+ "contextType": "DefaultSlotContext",
629
+ "customMethods": [],
630
+ "dynamic": false,
631
+ "example": ""
632
+ },
633
+ {
634
+ "name": "Quantity",
635
+ "description": "",
636
+ "contextType": "DefaultSlotContext",
637
+ "customMethods": [],
638
+ "dynamic": false,
639
+ "example": ""
640
+ },
641
+ {
642
+ "name": "Actions",
643
+ "description": "",
644
+ "contextType": "\n DefaultSlotContext & {\n appendButton: SlotMethod<\n Omit<ButtonProps, 'icon'> & {\n text?: string;\n icon?: IconType;\n }\n >;\n }\n ",
645
+ "customMethods": [],
646
+ "dynamic": false,
647
+ "example": ""
648
+ },
649
+ {
650
+ "name": "ShortDescription",
651
+ "description": "",
652
+ "contextType": "DefaultSlotContext",
653
+ "customMethods": [],
654
+ "dynamic": false,
655
+ "example": ""
656
+ },
657
+ {
658
+ "name": "Description",
659
+ "description": "",
660
+ "contextType": "DefaultSlotContext",
661
+ "customMethods": [],
662
+ "dynamic": false,
663
+ "example": ""
664
+ },
665
+ {
666
+ "name": "Attributes",
667
+ "description": "",
668
+ "contextType": "DefaultSlotContext",
669
+ "customMethods": [],
670
+ "dynamic": false,
671
+ "example": ""
672
+ },
673
+ {
674
+ "name": "Breadcrumbs",
675
+ "description": "",
676
+ "contextType": "\n DefaultSlotContext & {\n setSeparator: SlotMethod<IconType>;\n\n appendLink: SlotMethod<\n HTMLAttributes<HTMLAnchorElement> & { text?: string }\n >;\n\n appendHTMLElement: SlotMethod<HTMLElement>;\n }\n ",
677
+ "customMethods": [],
678
+ "dynamic": false,
679
+ "example": ""
680
+ },
681
+ {
682
+ "name": "GalleryContent",
683
+ "description": "",
684
+ "contextType": "DefaultSlotContext",
685
+ "customMethods": [],
686
+ "dynamic": false,
687
+ "example": ""
688
+ },
689
+ {
690
+ "name": "InfoContent",
691
+ "description": "",
692
+ "contextType": "DefaultSlotContext",
693
+ "customMethods": [],
694
+ "dynamic": false,
695
+ "example": ""
696
+ },
697
+ {
698
+ "name": "Content",
699
+ "description": "",
700
+ "contextType": "DefaultSlotContext",
701
+ "customMethods": [],
702
+ "dynamic": false,
703
+ "example": ""
704
+ }
705
+ ]
706
+ },
707
+ "ProductOptions": {
708
+ "slots": [
709
+ {
710
+ "name": "Swatches",
711
+ "description": "",
712
+ "contextType": "{ data: ProductModel | null; optionsUIDs: string[] }",
713
+ "customMethods": [],
714
+ "dynamic": false,
715
+ "example": ""
716
+ },
717
+ {
718
+ "name": "SwatchImage",
719
+ "description": "",
720
+ "contextType": "{\n data: ProductModel | null;\n optionsUIDs: string[];\n imageSwatchContext: ImageNodeRenderProps['imageSwatchContext'];\n defaultImageProps: ImageProps;\n }",
721
+ "customMethods": [],
722
+ "dynamic": false,
723
+ "example": ""
724
+ }
725
+ ]
726
+ },
727
+ "ProductAttributes": {
728
+ "slots": [
729
+ {
730
+ "name": "Attributes",
731
+ "description": "",
732
+ "contextType": "DefaultSlotContext",
733
+ "customMethods": [],
734
+ "dynamic": false,
735
+ "example": ""
736
+ }
737
+ ]
738
+ },
739
+ "ProductGallery": {
740
+ "slots": [
741
+ {
742
+ "name": "CarouselThumbnail",
743
+ "description": "",
744
+ "contextType": "\n DefaultSlotContext & {\n defaultImageProps: ImageProps;\n mediaType?: 'image' | 'video';\n previewUrl?: string;\n }\n ",
745
+ "customMethods": [],
746
+ "dynamic": false,
747
+ "example": ""
748
+ },
749
+ {
750
+ "name": "CarouselMainImage",
751
+ "description": "",
752
+ "contextType": "\n DefaultSlotContext & {\n defaultImageProps: ImageProps;\n mediaType?: 'image' | 'video';\n previewUrl?: string;\n }\n ",
753
+ "customMethods": [],
754
+ "dynamic": false,
755
+ "example": ""
756
+ }
757
+ ]
758
+ }
759
+ }
760
+ },
761
+ "storefront-quote-management": {
762
+ "containers": {
763
+ "RequestNegotiableQuoteForm": {
764
+ "slots": [
765
+ {
766
+ "name": "ErrorBanner",
767
+ "description": "",
768
+ "contextType": "{\n message: string,\n }",
769
+ "customMethods": [],
770
+ "dynamic": false,
771
+ "example": ""
772
+ },
773
+ {
774
+ "name": "SuccessBanner",
775
+ "description": "",
776
+ "contextType": "{\n message: string,\n }",
777
+ "customMethods": [],
778
+ "dynamic": false,
779
+ "example": ""
780
+ },
781
+ {
782
+ "name": "Title",
783
+ "description": "",
784
+ "contextType": "{\n text: string,\n }",
785
+ "customMethods": [],
786
+ "dynamic": false,
787
+ "example": ""
788
+ },
789
+ {
790
+ "name": "CommentField",
791
+ "description": "",
792
+ "contextType": "{\n formErrors: Record<string, string>;\n isFormDisabled: boolean;\n setFormErrors: (errors: Record<string, string>) => void;\n }",
793
+ "customMethods": [],
794
+ "dynamic": false,
795
+ "example": ""
796
+ },
797
+ {
798
+ "name": "QuoteNameField",
799
+ "description": "",
800
+ "contextType": "{\n formErrors: Record<string, string>;\n isFormDisabled: boolean;\n setFormErrors: (errors: Record<string, string>) => void;\n }",
801
+ "customMethods": [],
802
+ "dynamic": false,
803
+ "example": ""
804
+ },
805
+ {
806
+ "name": "AttachFileField",
807
+ "description": "",
808
+ "contextType": "{\n onChange: (files: File[]) => void, formErrors: Record<string, string>,\n isFormDisabled: boolean,\n attachedFiles: AttachedFile[]\n }",
809
+ "customMethods": [],
810
+ "dynamic": false,
811
+ "example": ""
812
+ },
813
+ {
814
+ "name": "AttachedFilesList",
815
+ "description": "",
816
+ "contextType": "{\n files: AttachedFile[];\n onRemove: (key: string) => void;\n disabled?: boolean;\n }",
817
+ "customMethods": [],
818
+ "dynamic": false,
819
+ "example": ""
820
+ },
821
+ {
822
+ "name": "RequestButton",
823
+ "description": "",
824
+ "contextType": "{\n requestNegotiableQuote: typeof requestNegotiableQuote;\n formErrors: Record<string, string>;\n isFormDisabled: boolean;\n setIsFormDisabled: (isFormDisabled: boolean) => void;\n }",
825
+ "customMethods": [],
826
+ "dynamic": false,
827
+ "example": ""
828
+ },
829
+ {
830
+ "name": "SaveDraftButton",
831
+ "description": "",
832
+ "contextType": "{\n requestNegotiableQuote: typeof requestNegotiableQuote;\n formErrors: Record<string, string>;\n isFormDisabled: boolean;\n setIsFormDisabled: (isFormDisabled: boolean) => void;\n }",
833
+ "customMethods": [],
834
+ "dynamic": false,
835
+ "example": ""
836
+ }
837
+ ]
838
+ },
839
+ "ManageNegotiableQuote": {
840
+ "slots": [
841
+ {
842
+ "name": "QuoteName",
843
+ "description": "",
844
+ "contextType": "{\n quoteName?: string;\n quoteData?: NegotiableQuoteModel;\n }",
845
+ "customMethods": [],
846
+ "dynamic": false,
847
+ "example": ""
848
+ },
849
+ {
850
+ "name": "QuoteStatus",
851
+ "description": "",
852
+ "contextType": "{\n quoteStatus?: string;\n quoteData?: NegotiableQuoteModel;\n }",
853
+ "customMethods": [],
854
+ "dynamic": false,
855
+ "example": ""
856
+ },
857
+ {
858
+ "name": "Banner",
859
+ "description": "",
860
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
861
+ "customMethods": [],
862
+ "dynamic": false,
863
+ "example": ""
864
+ },
865
+ {
866
+ "name": "DuplicateQuoteWarningBanner",
867
+ "description": "",
868
+ "contextType": "{\n outOfStockWarning?: boolean;\n }",
869
+ "customMethods": [],
870
+ "dynamic": false,
871
+ "example": ""
872
+ },
873
+ {
874
+ "name": "Details",
875
+ "description": "",
876
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
877
+ "customMethods": [],
878
+ "dynamic": false,
879
+ "example": ""
880
+ },
881
+ {
882
+ "name": "ActionBar",
883
+ "description": "",
884
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n actionsBarDropdownValue?: string;\n }",
885
+ "customMethods": [],
886
+ "dynamic": false,
887
+ "example": ""
888
+ },
889
+ {
890
+ "name": "QuoteContent",
891
+ "description": "",
892
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
893
+ "customMethods": [],
894
+ "dynamic": false,
895
+ "example": ""
896
+ },
897
+ {
898
+ "name": "ItemsQuotedTab",
899
+ "description": "",
900
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
901
+ "customMethods": [],
902
+ "dynamic": false,
903
+ "example": ""
904
+ },
905
+ {
906
+ "name": "CommentsTab",
907
+ "description": "",
908
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
909
+ "customMethods": [],
910
+ "dynamic": false,
911
+ "example": ""
912
+ },
913
+ {
914
+ "name": "HistoryLogTab",
915
+ "description": "",
916
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
917
+ "customMethods": [],
918
+ "dynamic": false,
919
+ "example": ""
920
+ },
921
+ {
922
+ "name": "ShippingInformationTitle",
923
+ "description": "",
924
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
925
+ "customMethods": [],
926
+ "dynamic": false,
927
+ "example": ""
928
+ },
929
+ {
930
+ "name": "ShippingInformation",
931
+ "description": "",
932
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n loading?: boolean;\n setLoading?: (loading: boolean) => void;\n }",
933
+ "customMethods": [],
934
+ "dynamic": false,
935
+ "example": ""
936
+ },
937
+ {
938
+ "name": "QuoteCommentsTitle",
939
+ "description": "",
940
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
941
+ "customMethods": [],
942
+ "dynamic": false,
943
+ "example": ""
944
+ },
945
+ {
946
+ "name": "QuoteComments",
947
+ "description": "",
948
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n }",
949
+ "customMethods": [],
950
+ "dynamic": false,
951
+ "example": ""
952
+ },
953
+ {
954
+ "name": "AttachFilesField",
955
+ "description": "",
956
+ "contextType": "{\n onFileChange: (files: File[]) => void;\n attachedFiles: AttachedFile[];\n fileUploadError: string | undefined;\n disabled?: boolean;\n }",
957
+ "customMethods": [],
958
+ "dynamic": false,
959
+ "example": ""
960
+ },
961
+ {
962
+ "name": "AttachedFilesList",
963
+ "description": "",
964
+ "contextType": "{\n files: AttachedFile[];\n onRemove: (key: string) => void;\n disabled?: boolean;\n }",
965
+ "customMethods": [],
966
+ "dynamic": false,
967
+ "example": ""
968
+ },
969
+ {
970
+ "name": "Footer",
971
+ "description": "",
972
+ "contextType": "{\n quoteData?: NegotiableQuoteModel;\n comment?: string;\n isSubmitting?: boolean;\n attachments?: AttachedFile[];\n handleSendForReview: () => void;\n }",
973
+ "customMethods": [],
974
+ "dynamic": false,
975
+ "example": ""
976
+ }
977
+ ]
978
+ },
979
+ "ItemsQuoted": {
980
+ "slots": [
981
+ {
982
+ "name": "ProductListTable",
983
+ "description": "",
984
+ "contextType": "{\n items: NegotiableQuoteModel['items'];\n canEdit: boolean;\n readOnly?: boolean;\n onItemCheckboxChange?: (\n item: CartItemModel,\n isSelected: boolean\n ) => void;\n onItemDropdownChange?: (\n item: CartItemModel,\n action: string\n ) => void;\n onQuantityChange?: (\n item: CartItemModel,\n newQuantity: number\n ) => void;\n onUpdate?: (e: SubmitEvent) => void;\n dropdownSelections?: Record<string, string | undefined>;\n }",
985
+ "customMethods": [],
986
+ "dynamic": false,
987
+ "example": ""
988
+ },
989
+ {
990
+ "name": "QuotePricesSummary",
991
+ "description": "",
992
+ "contextType": "{\n items: NegotiableQuoteModel['items'];\n prices: NegotiableQuoteModel['prices'];\n }",
993
+ "customMethods": [],
994
+ "dynamic": false,
995
+ "example": ""
996
+ }
997
+ ]
998
+ },
999
+ "QuoteSummaryList": {
1000
+ "slots": [
1001
+ {
1002
+ "name": "Heading",
1003
+ "description": "",
1004
+ "contextType": "{ count: number; quoteId: string }",
1005
+ "customMethods": [],
1006
+ "dynamic": false,
1007
+ "example": ""
1008
+ },
1009
+ {
1010
+ "name": "Footer",
1011
+ "description": "",
1012
+ "contextType": "{ item: NegotiableQuoteItemModel }",
1013
+ "customMethods": [],
1014
+ "dynamic": false,
1015
+ "example": ""
1016
+ },
1017
+ {
1018
+ "name": "Thumbnail",
1019
+ "description": "",
1020
+ "contextType": "{\n item: NegotiableQuoteItemModel;\n defaultImageProps: ImageProps;\n }",
1021
+ "customMethods": [],
1022
+ "dynamic": false,
1023
+ "example": ""
1024
+ },
1025
+ {
1026
+ "name": "ProductAttributes",
1027
+ "description": "",
1028
+ "contextType": "{ item: NegotiableQuoteItemModel }",
1029
+ "customMethods": [],
1030
+ "dynamic": false,
1031
+ "example": ""
1032
+ },
1033
+ {
1034
+ "name": "QuoteSummaryFooter",
1035
+ "description": "",
1036
+ "contextType": "{\n displayMaxItems: boolean;\n }",
1037
+ "customMethods": [],
1038
+ "dynamic": false,
1039
+ "example": ""
1040
+ },
1041
+ {
1042
+ "name": "QuoteItem",
1043
+ "description": "",
1044
+ "contextType": "DefaultSlotContext",
1045
+ "customMethods": [],
1046
+ "dynamic": false,
1047
+ "example": ""
1048
+ },
1049
+ {
1050
+ "name": "ItemTitle",
1051
+ "description": "",
1052
+ "contextType": "{ item: NegotiableQuoteItemModel }",
1053
+ "customMethods": [],
1054
+ "dynamic": false,
1055
+ "example": ""
1056
+ },
1057
+ {
1058
+ "name": "ItemPrice",
1059
+ "description": "",
1060
+ "contextType": "{ item: NegotiableQuoteItemModel }",
1061
+ "customMethods": [],
1062
+ "dynamic": false,
1063
+ "example": ""
1064
+ },
1065
+ {
1066
+ "name": "ItemTotal",
1067
+ "description": "",
1068
+ "contextType": "{ item: NegotiableQuoteItemModel }",
1069
+ "customMethods": [],
1070
+ "dynamic": false,
1071
+ "example": ""
1072
+ },
1073
+ {
1074
+ "name": "ItemSku",
1075
+ "description": "",
1076
+ "contextType": "{ item: NegotiableQuoteItemModel }",
1077
+ "customMethods": [],
1078
+ "dynamic": false,
1079
+ "example": ""
1080
+ }
1081
+ ]
1082
+ },
1083
+ "QuotesListTable": {
1084
+ "slots": [
1085
+ {
1086
+ "name": "QuoteName",
1087
+ "description": "",
1088
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1089
+ "customMethods": [],
1090
+ "dynamic": false,
1091
+ "example": ""
1092
+ },
1093
+ {
1094
+ "name": "Created",
1095
+ "description": "",
1096
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1097
+ "customMethods": [],
1098
+ "dynamic": false,
1099
+ "example": ""
1100
+ },
1101
+ {
1102
+ "name": "CreatedBy",
1103
+ "description": "",
1104
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1105
+ "customMethods": [],
1106
+ "dynamic": false,
1107
+ "example": ""
1108
+ },
1109
+ {
1110
+ "name": "Status",
1111
+ "description": "",
1112
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1113
+ "customMethods": [],
1114
+ "dynamic": false,
1115
+ "example": ""
1116
+ },
1117
+ {
1118
+ "name": "LastUpdated",
1119
+ "description": "",
1120
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1121
+ "customMethods": [],
1122
+ "dynamic": false,
1123
+ "example": ""
1124
+ },
1125
+ {
1126
+ "name": "QuoteTemplate",
1127
+ "description": "",
1128
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1129
+ "customMethods": [],
1130
+ "dynamic": false,
1131
+ "example": ""
1132
+ },
1133
+ {
1134
+ "name": "QuoteTotal",
1135
+ "description": "",
1136
+ "contextType": "{ quote: NegotiableQuoteListEntry }",
1137
+ "customMethods": [],
1138
+ "dynamic": false,
1139
+ "example": ""
1140
+ },
1141
+ {
1142
+ "name": "Actions",
1143
+ "description": "",
1144
+ "contextType": "{\n quote: NegotiableQuoteListEntry;\n onViewQuote?: (id: string, name: string, status: string) => void;\n }",
1145
+ "customMethods": [],
1146
+ "dynamic": false,
1147
+ "example": ""
1148
+ },
1149
+ {
1150
+ "name": "EmptyQuotes",
1151
+ "description": "",
1152
+ "contextType": "DefaultSlotContext",
1153
+ "customMethods": [],
1154
+ "dynamic": false,
1155
+ "example": ""
1156
+ },
1157
+ {
1158
+ "name": "ItemRange",
1159
+ "description": "",
1160
+ "contextType": "{\n startItem: number;\n endItem: number;\n totalCount: number;\n currentPage: number;\n pageSize: number;\n }",
1161
+ "customMethods": [],
1162
+ "dynamic": false,
1163
+ "example": ""
1164
+ },
1165
+ {
1166
+ "name": "PageSizePicker",
1167
+ "description": "",
1168
+ "contextType": "{\n pageSize: number;\n pageSizeOptions: number[];\n onPageSizeChange?: (pageSize: number) => void;\n }",
1169
+ "customMethods": [],
1170
+ "dynamic": false,
1171
+ "example": ""
1172
+ },
1173
+ {
1174
+ "name": "Pagination",
1175
+ "description": "",
1176
+ "contextType": "{\n currentPage: number;\n totalPages: number;\n onChange?: (page: number) => void;\n }",
1177
+ "customMethods": [],
1178
+ "dynamic": false,
1179
+ "example": ""
1180
+ }
1181
+ ]
1182
+ },
1183
+ "ManageNegotiableQuoteTemplate": {
1184
+ "slots": [
1185
+ {
1186
+ "name": "TemplateName",
1187
+ "description": "",
1188
+ "contextType": "{\n templateName?: string;\n templateData?: NegotiableQuoteTemplateModel;\n templateDisplayName?: string;\n isRenameDisabled?: boolean;\n }",
1189
+ "customMethods": [],
1190
+ "dynamic": false,
1191
+ "example": ""
1192
+ },
1193
+ {
1194
+ "name": "TemplateStatus",
1195
+ "description": "",
1196
+ "contextType": "{\n templateStatus?: string;\n templateData?: NegotiableQuoteTemplateModel;\n }",
1197
+ "customMethods": [],
1198
+ "dynamic": false,
1199
+ "example": ""
1200
+ },
1201
+ {
1202
+ "name": "Banner",
1203
+ "description": "",
1204
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1205
+ "customMethods": [],
1206
+ "dynamic": false,
1207
+ "example": ""
1208
+ },
1209
+ {
1210
+ "name": "Details",
1211
+ "description": "",
1212
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1213
+ "customMethods": [],
1214
+ "dynamic": false,
1215
+ "example": ""
1216
+ },
1217
+ {
1218
+ "name": "ActionBar",
1219
+ "description": "",
1220
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1221
+ "customMethods": [],
1222
+ "dynamic": false,
1223
+ "example": ""
1224
+ },
1225
+ {
1226
+ "name": "ReferenceDocuments",
1227
+ "description": "",
1228
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n referenceDocuments?: ReferenceDocument[];\n isEditable?: boolean;\n onAddDocument?: () => void;\n onEditDocument?: (document: ReferenceDocument) => void;\n onRemoveDocument?: (document: ReferenceDocument) => void;\n referenceDocumentsTitle?: string;\n }",
1229
+ "customMethods": [],
1230
+ "dynamic": false,
1231
+ "example": ""
1232
+ },
1233
+ {
1234
+ "name": "ItemsTable",
1235
+ "description": "",
1236
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1237
+ "customMethods": [],
1238
+ "dynamic": false,
1239
+ "example": ""
1240
+ },
1241
+ {
1242
+ "name": "ItemsQuotedTab",
1243
+ "description": "",
1244
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1245
+ "customMethods": [],
1246
+ "dynamic": false,
1247
+ "example": ""
1248
+ },
1249
+ {
1250
+ "name": "CommentsTab",
1251
+ "description": "",
1252
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1253
+ "customMethods": [],
1254
+ "dynamic": false,
1255
+ "example": ""
1256
+ },
1257
+ {
1258
+ "name": "HistoryLogTab",
1259
+ "description": "",
1260
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1261
+ "customMethods": [],
1262
+ "dynamic": false,
1263
+ "example": ""
1264
+ },
1265
+ {
1266
+ "name": "CommentsTitle",
1267
+ "description": "",
1268
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1269
+ "customMethods": [],
1270
+ "dynamic": false,
1271
+ "example": ""
1272
+ },
1273
+ {
1274
+ "name": "Comments",
1275
+ "description": "",
1276
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1277
+ "customMethods": [],
1278
+ "dynamic": false,
1279
+ "example": ""
1280
+ },
1281
+ {
1282
+ "name": "AttachFilesField",
1283
+ "description": "",
1284
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n onFileChange: (files: File[]) => void;\n attachedFiles: AttachedFile[];\n fileUploadError: string | undefined;\n disabled: boolean;\n }",
1285
+ "customMethods": [],
1286
+ "dynamic": false,
1287
+ "example": ""
1288
+ },
1289
+ {
1290
+ "name": "AttachedFilesList",
1291
+ "description": "",
1292
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n files: AttachedFile[];\n onRemove: (key: string) => void;\n disabled: boolean;\n }",
1293
+ "customMethods": [],
1294
+ "dynamic": false,
1295
+ "example": ""
1296
+ },
1297
+ {
1298
+ "name": "HistoryLogTitle",
1299
+ "description": "",
1300
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1301
+ "customMethods": [],
1302
+ "dynamic": false,
1303
+ "example": ""
1304
+ },
1305
+ {
1306
+ "name": "HistoryLog",
1307
+ "description": "",
1308
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1309
+ "customMethods": [],
1310
+ "dynamic": false,
1311
+ "example": ""
1312
+ },
1313
+ {
1314
+ "name": "Footer",
1315
+ "description": "",
1316
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n comment?: string;\n isSubmitting?: boolean;\n attachedFiles?: AttachedFile[];\n referenceDocuments?: ReferenceDocument[];\n hasUnsavedChanges?: boolean;\n handleSendForReview: () => void;\n showAcceptButton?: boolean;\n renameTemplateName?: string;\n renameReason?: string;\n }",
1317
+ "customMethods": [],
1318
+ "dynamic": false,
1319
+ "example": ""
1320
+ },
1321
+ {
1322
+ "name": "ShippingInformationTitle",
1323
+ "description": "",
1324
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n }",
1325
+ "customMethods": [],
1326
+ "dynamic": false,
1327
+ "example": ""
1328
+ },
1329
+ {
1330
+ "name": "ShippingInformation",
1331
+ "description": "",
1332
+ "contextType": "{\n templateData?: NegotiableQuoteTemplateModel;\n loading?: boolean;\n setLoading?: (loading: boolean) => void;\n }",
1333
+ "customMethods": [],
1334
+ "dynamic": false,
1335
+ "example": ""
1336
+ }
1337
+ ]
1338
+ },
1339
+ "ItemsQuotedTemplate": {
1340
+ "slots": [
1341
+ {
1342
+ "name": "ProductListTable",
1343
+ "description": "",
1344
+ "contextType": "{\n items: NegotiableQuoteTemplateModel['items'];\n canEdit: boolean;\n dropdownSelections: Record<string, string | undefined>;\n handleItemDropdownChange: (item: CartItemModel, action: string) => void;\n handleQuantityChange: (item: CartItemModel, newQuantity: number) => void;\n handleUpdate: (e: SubmitEvent) => void;\n onItemDropdownChange?: (item: any, action: string) => void;\n }",
1345
+ "customMethods": [],
1346
+ "dynamic": false,
1347
+ "example": ""
1348
+ },
1349
+ {
1350
+ "name": "QuotePricesSummary",
1351
+ "description": "",
1352
+ "contextType": "{\n items: NegotiableQuoteTemplateModel['items'];\n prices: NegotiableQuoteTemplateModel['prices'];\n }",
1353
+ "customMethods": [],
1354
+ "dynamic": false,
1355
+ "example": ""
1356
+ }
1357
+ ]
1358
+ },
1359
+ "QuoteTemplatesListTable": {
1360
+ "slots": [
1361
+ {
1362
+ "name": "Name",
1363
+ "description": "",
1364
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1365
+ "customMethods": [],
1366
+ "dynamic": false,
1367
+ "example": ""
1368
+ },
1369
+ {
1370
+ "name": "State",
1371
+ "description": "",
1372
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1373
+ "customMethods": [],
1374
+ "dynamic": false,
1375
+ "example": ""
1376
+ },
1377
+ {
1378
+ "name": "Status",
1379
+ "description": "",
1380
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1381
+ "customMethods": [],
1382
+ "dynamic": false,
1383
+ "example": ""
1384
+ },
1385
+ {
1386
+ "name": "ValidUntil",
1387
+ "description": "",
1388
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1389
+ "customMethods": [],
1390
+ "dynamic": false,
1391
+ "example": ""
1392
+ },
1393
+ {
1394
+ "name": "MinQuoteTotal",
1395
+ "description": "",
1396
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1397
+ "customMethods": [],
1398
+ "dynamic": false,
1399
+ "example": ""
1400
+ },
1401
+ {
1402
+ "name": "OrdersPlaced",
1403
+ "description": "",
1404
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1405
+ "customMethods": [],
1406
+ "dynamic": false,
1407
+ "example": ""
1408
+ },
1409
+ {
1410
+ "name": "LastOrdered",
1411
+ "description": "",
1412
+ "contextType": "{ template: NegotiableQuoteTemplateListEntry }",
1413
+ "customMethods": [],
1414
+ "dynamic": false,
1415
+ "example": ""
1416
+ },
1417
+ {
1418
+ "name": "Actions",
1419
+ "description": "",
1420
+ "contextType": "{\n template: NegotiableQuoteTemplateListEntry;\n onViewQuoteTemplate?: (id: string, name: string, status: string) => void;\n onGenerateQuoteFromTemplate?: (id: string, name: string) => void;\n }",
1421
+ "customMethods": [],
1422
+ "dynamic": false,
1423
+ "example": ""
1424
+ },
1425
+ {
1426
+ "name": "EmptyTemplates",
1427
+ "description": "",
1428
+ "contextType": "DefaultSlotContext",
1429
+ "customMethods": [],
1430
+ "dynamic": false,
1431
+ "example": ""
1432
+ },
1433
+ {
1434
+ "name": "ItemRange",
1435
+ "description": "",
1436
+ "contextType": "{\n startItem: number;\n endItem: number;\n totalCount: number;\n currentPage: number;\n pageSize: number;\n }",
1437
+ "customMethods": [],
1438
+ "dynamic": false,
1439
+ "example": ""
1440
+ },
1441
+ {
1442
+ "name": "PageSizePicker",
1443
+ "description": "",
1444
+ "contextType": "{\n pageSize: number;\n pageSizeOptions: number[];\n onPageSizeChange?: (pageSize: number) => void;\n }",
1445
+ "customMethods": [],
1446
+ "dynamic": false,
1447
+ "example": ""
1448
+ },
1449
+ {
1450
+ "name": "Pagination",
1451
+ "description": "",
1452
+ "contextType": "{\n currentPage: number;\n totalPages: number;\n onChange?: (page: number) => void;\n }",
1453
+ "customMethods": [],
1454
+ "dynamic": false,
1455
+ "example": ""
1456
+ }
1457
+ ]
1458
+ }
1459
+ }
1460
+ },
1461
+ "storefront-requisition-list": {
1462
+ "containers": {
1463
+ "RequisitionListGrid": {
1464
+ "slots": [
1465
+ {
1466
+ "name": "Header",
1467
+ "description": "",
1468
+ "contextType": "DefaultSlotContext",
1469
+ "customMethods": [],
1470
+ "dynamic": false,
1471
+ "example": ""
1472
+ }
1473
+ ]
1474
+ }
1475
+ }
1476
+ },
1477
+ "storefront-wishlist": {
1478
+ "containers": {
1479
+ "Wishlist": {
1480
+ "slots": [
1481
+ {
1482
+ "name": "image",
1483
+ "description": "",
1484
+ "contextType": "{\n defaultImageProps: ImageProps;\n item: Item;\n }",
1485
+ "customMethods": [],
1486
+ "dynamic": false,
1487
+ "example": ""
1488
+ }
1489
+ ]
1490
+ }
1491
+ }
1492
+ },
1493
+ "storefront-recommendations": {
1494
+ "containers": {
1495
+ "ProductList": {
1496
+ "slots": [
1497
+ {
1498
+ "name": "Heading",
1499
+ "description": "",
1500
+ "contextType": "DefaultSlotContext",
1501
+ "customMethods": [],
1502
+ "dynamic": false,
1503
+ "example": ""
1504
+ },
1505
+ {
1506
+ "name": "Footer",
1507
+ "description": "",
1508
+ "contextType": "DefaultSlotContext",
1509
+ "customMethods": [],
1510
+ "dynamic": false,
1511
+ "example": ""
1512
+ },
1513
+ {
1514
+ "name": "Title",
1515
+ "description": "",
1516
+ "contextType": "{\n item: Item;\n productUrl: string;\n }",
1517
+ "customMethods": [],
1518
+ "dynamic": false,
1519
+ "example": ""
1520
+ },
1521
+ {
1522
+ "name": "Sku",
1523
+ "description": "",
1524
+ "contextType": "{\n item: Item;\n }",
1525
+ "customMethods": [],
1526
+ "dynamic": false,
1527
+ "example": ""
1528
+ },
1529
+ {
1530
+ "name": "Price",
1531
+ "description": "",
1532
+ "contextType": "{\n item: Item;\n }",
1533
+ "customMethods": [],
1534
+ "dynamic": false,
1535
+ "example": ""
1536
+ },
1537
+ {
1538
+ "name": "Thumbnail",
1539
+ "description": "",
1540
+ "contextType": "{\n item: any;\n defaultImageProps: ImageProps;\n }",
1541
+ "customMethods": [],
1542
+ "dynamic": false,
1543
+ "example": ""
1544
+ }
1545
+ ]
1546
+ }
1547
+ }
1548
+ },
1549
+ "storefront-product-discovery": {
1550
+ "containers": {
1551
+ "Facets": {
1552
+ "slots": [
1553
+ {
1554
+ "name": "Facet",
1555
+ "description": "",
1556
+ "contextType": "{ data: SearchFacet }",
1557
+ "customMethods": [],
1558
+ "dynamic": false,
1559
+ "example": ""
1560
+ },
1561
+ {
1562
+ "name": "SelectedFacets",
1563
+ "description": "",
1564
+ "contextType": "{ data: SearchFacet[] }",
1565
+ "customMethods": [],
1566
+ "dynamic": false,
1567
+ "example": ""
1568
+ },
1569
+ {
1570
+ "name": "Facets",
1571
+ "description": "",
1572
+ "contextType": "{ data: SearchFacet[] }",
1573
+ "customMethods": [],
1574
+ "dynamic": false,
1575
+ "example": ""
1576
+ },
1577
+ {
1578
+ "name": "FacetBucket",
1579
+ "description": "",
1580
+ "contextType": "{ data: FacetBucket }",
1581
+ "customMethods": [],
1582
+ "dynamic": false,
1583
+ "example": ""
1584
+ },
1585
+ {
1586
+ "name": "FacetBucketLabel",
1587
+ "description": "",
1588
+ "contextType": "{ data: FacetBucket }",
1589
+ "customMethods": [],
1590
+ "dynamic": false,
1591
+ "example": ""
1592
+ }
1593
+ ]
1594
+ },
1595
+ "SearchResults": {
1596
+ "slots": [
1597
+ {
1598
+ "name": "ProductActions",
1599
+ "description": "",
1600
+ "contextType": "SlotDefaultContext",
1601
+ "customMethods": [],
1602
+ "dynamic": false,
1603
+ "example": ""
1604
+ },
1605
+ {
1606
+ "name": "ProductPrice",
1607
+ "description": "",
1608
+ "contextType": "SlotDefaultContext",
1609
+ "customMethods": [],
1610
+ "dynamic": false,
1611
+ "example": ""
1612
+ },
1613
+ {
1614
+ "name": "ProductName",
1615
+ "description": "",
1616
+ "contextType": "SlotDefaultContext",
1617
+ "customMethods": [],
1618
+ "dynamic": false,
1619
+ "example": ""
1620
+ },
1621
+ {
1622
+ "name": "ProductImage",
1623
+ "description": "",
1624
+ "contextType": "SlotDefaultContext & { defaultImageProps: ImageProps }",
1625
+ "customMethods": [],
1626
+ "dynamic": false,
1627
+ "example": ""
1628
+ },
1629
+ {
1630
+ "name": "NoResults",
1631
+ "description": "",
1632
+ "contextType": "{ error: string | null; variables: SearchVariables | null }",
1633
+ "customMethods": [],
1634
+ "dynamic": false,
1635
+ "example": ""
1636
+ },
1637
+ {
1638
+ "name": "Header",
1639
+ "description": "",
1640
+ "contextType": "{ products: Product[]; variables: SearchVariables | null }",
1641
+ "customMethods": [],
1642
+ "dynamic": false,
1643
+ "example": ""
1644
+ },
1645
+ {
1646
+ "name": "Footer",
1647
+ "description": "",
1648
+ "contextType": "{ products: Product[]; variables: SearchVariables | null }",
1649
+ "customMethods": [],
1650
+ "dynamic": false,
1651
+ "example": ""
1652
+ }
1653
+ ]
1654
+ }
1655
+ }
1656
+ },
1657
+ "storefront-company-management": {
1658
+ "containers": {
1659
+ "CompanyProfile": {
1660
+ "slots": [
1661
+ {
1662
+ "name": "CompanyData",
1663
+ "description": "",
1664
+ "contextType": "CompanyDataContext & { Default?: any }",
1665
+ "customMethods": [],
1666
+ "dynamic": false,
1667
+ "example": ""
1668
+ }
1669
+ ]
1670
+ },
1671
+ "CompanyStructure": {
1672
+ "slots": [
1673
+ {
1674
+ "name": "StructureData",
1675
+ "description": "",
1676
+ "contextType": "CompanyStructureDataContext & { Default?: any }",
1677
+ "customMethods": [],
1678
+ "dynamic": false,
1679
+ "example": ""
1680
+ }
1681
+ ]
1682
+ }
1683
+ }
1684
+ },
1685
+ "storefront-order": {
1686
+ "containers": {
1687
+ "CreateReturn": {
1688
+ "slots": [
1689
+ {
1690
+ "name": "Footer",
1691
+ "description": "",
1692
+ "contextType": "DefaultSlotContext",
1693
+ "customMethods": [],
1694
+ "dynamic": false,
1695
+ "example": ""
1696
+ },
1697
+ {
1698
+ "name": "ReturnOrderItem",
1699
+ "description": "",
1700
+ "contextType": "DefaultSlotContext",
1701
+ "customMethods": [],
1702
+ "dynamic": false,
1703
+ "example": ""
1704
+ },
1705
+ {
1706
+ "name": "ReturnFormActions",
1707
+ "description": "",
1708
+ "contextType": "{\n handleChangeStep: (value: StepsTypes) => void;\n }",
1709
+ "customMethods": [],
1710
+ "dynamic": false,
1711
+ "example": ""
1712
+ },
1713
+ {
1714
+ "name": "ReturnReasonFormImage",
1715
+ "description": "",
1716
+ "contextType": "{\n data: OrderItemModel;\n defaultImageProps: ImageProps;\n }",
1717
+ "customMethods": [],
1718
+ "dynamic": false,
1719
+ "example": ""
1720
+ },
1721
+ {
1722
+ "name": "CartSummaryItemImage",
1723
+ "description": "",
1724
+ "contextType": "{\n data: OrderItemModel;\n defaultImageProps: ImageProps;\n }",
1725
+ "customMethods": [],
1726
+ "dynamic": false,
1727
+ "example": ""
1728
+ }
1729
+ ]
1730
+ },
1731
+ "CustomerDetails": {
1732
+ "slots": [
1733
+ {
1734
+ "name": "OrderReturnInformation",
1735
+ "description": "",
1736
+ "contextType": "OrdersReturnPropsModel | undefined",
1737
+ "customMethods": [],
1738
+ "dynamic": false,
1739
+ "example": ""
1740
+ },
1741
+ {
1742
+ "name": "PaymentMethodIcon",
1743
+ "description": "",
1744
+ "contextType": "Record<string, string>",
1745
+ "customMethods": [],
1746
+ "dynamic": false,
1747
+ "example": ""
1748
+ }
1749
+ ]
1750
+ },
1751
+ "OrderProductList": {
1752
+ "slots": [
1753
+ {
1754
+ "name": "Footer",
1755
+ "description": "",
1756
+ "contextType": "DefaultSlotContext",
1757
+ "customMethods": [],
1758
+ "dynamic": false,
1759
+ "example": ""
1760
+ },
1761
+ {
1762
+ "name": "CartSummaryItemImage",
1763
+ "description": "",
1764
+ "contextType": "{\n data: OrderItemModel;\n defaultImageProps: ImageProps;\n }",
1765
+ "customMethods": [],
1766
+ "dynamic": false,
1767
+ "example": ""
1768
+ }
1769
+ ]
1770
+ },
1771
+ "OrderReturns": {
1772
+ "slots": [
1773
+ {
1774
+ "name": "ReturnItemsDetails",
1775
+ "description": "",
1776
+ "contextType": "{\n items: OrdersReturnItemsPropsModel[];\n }",
1777
+ "customMethods": [],
1778
+ "dynamic": false,
1779
+ "example": ""
1780
+ },
1781
+ {
1782
+ "name": "DetailsActionParams",
1783
+ "description": "",
1784
+ "contextType": "{\n returnOrderItem: OrdersReturnPropsModel;\n }",
1785
+ "customMethods": [],
1786
+ "dynamic": false,
1787
+ "example": ""
1788
+ },
1789
+ {
1790
+ "name": "ReturnListImage",
1791
+ "description": "",
1792
+ "contextType": "{\n data: OrdersReturnItemsPropsModel;\n defaultImageProps: ImageProps;\n }",
1793
+ "customMethods": [],
1794
+ "dynamic": false,
1795
+ "example": ""
1796
+ }
1797
+ ]
1798
+ },
1799
+ "OrderStatus": {
1800
+ "slots": [
1801
+ {
1802
+ "name": "OrderActions",
1803
+ "description": "",
1804
+ "contextType": "DefaultSlotContext",
1805
+ "customMethods": [],
1806
+ "dynamic": false,
1807
+ "example": ""
1808
+ }
1809
+ ]
1810
+ },
1811
+ "ReturnsList": {
1812
+ "slots": [
1813
+ {
1814
+ "name": "ReturnItemsDetails",
1815
+ "description": "",
1816
+ "contextType": "{\n items: OrdersReturnItemsPropsModel[];\n }",
1817
+ "customMethods": [],
1818
+ "dynamic": false,
1819
+ "example": ""
1820
+ },
1821
+ {
1822
+ "name": "DetailsActionParams",
1823
+ "description": "",
1824
+ "contextType": "{\n returnOrderItem: OrdersReturnPropsModel;\n }",
1825
+ "customMethods": [],
1826
+ "dynamic": false,
1827
+ "example": ""
1828
+ },
1829
+ {
1830
+ "name": "ReturnListImage",
1831
+ "description": "",
1832
+ "contextType": "{\n data: OrdersReturnItemsPropsModel;\n defaultImageProps: ImageProps;\n }",
1833
+ "customMethods": [],
1834
+ "dynamic": false,
1835
+ "example": ""
1836
+ }
1837
+ ]
1838
+ },
1839
+ "ShippingStatus": {
1840
+ "slots": [
1841
+ {
1842
+ "name": "DeliveryTimeLine",
1843
+ "description": "",
1844
+ "contextType": "DefaultSlotContext",
1845
+ "customMethods": [],
1846
+ "dynamic": false,
1847
+ "example": ""
1848
+ },
1849
+ {
1850
+ "name": "DeliveryTrackActions",
1851
+ "description": "",
1852
+ "contextType": "DefaultSlotContext",
1853
+ "customMethods": [],
1854
+ "dynamic": false,
1855
+ "example": ""
1856
+ },
1857
+ {
1858
+ "name": "ReturnItemsDetails",
1859
+ "description": "",
1860
+ "contextType": "DefaultSlotContext",
1861
+ "customMethods": [],
1862
+ "dynamic": false,
1863
+ "example": ""
1864
+ },
1865
+ {
1866
+ "name": "ShippingStatusCardImage",
1867
+ "description": "",
1868
+ "contextType": "{\n data: ShipmentItemsModel;\n defaultImageProps: ImageProps;\n }",
1869
+ "customMethods": [],
1870
+ "dynamic": false,
1871
+ "example": ""
1872
+ },
1873
+ {
1874
+ "name": "NotYetShippedProductImage",
1875
+ "description": "",
1876
+ "contextType": "{\n data: OrderItemModel;\n defaultImageProps: ImageProps;\n }",
1877
+ "customMethods": [],
1878
+ "dynamic": false,
1879
+ "example": ""
1880
+ },
1881
+ {
1882
+ "name": "ShippingStatusReturnCardImage",
1883
+ "description": "",
1884
+ "contextType": "{\n data: OrdersReturnItemsPropsModel;\n defaultImageProps: ImageProps;\n }",
1885
+ "customMethods": [],
1886
+ "dynamic": false,
1887
+ "example": ""
1888
+ }
1889
+ ]
1890
+ }
1891
+ }
1892
+ },
1893
+ "storefront-quick-order": {
1894
+ "containers": {
1895
+ "QuickOrderMultipleSku": {
1896
+ "slots": [
1897
+ {
1898
+ "name": "AddToListButton",
1899
+ "description": "",
1900
+ "contextType": "DefaultSlotContext",
1901
+ "customMethods": [],
1902
+ "dynamic": false,
1903
+ "example": ""
1904
+ }
1905
+ ]
1906
+ },
1907
+ "QuickOrderItems": {
1908
+ "slots": [
1909
+ {
1910
+ "name": "AddAllToCartButton",
1911
+ "description": "",
1912
+ "contextType": "AddAllToCartContext",
1913
+ "customMethods": [],
1914
+ "dynamic": false,
1915
+ "example": ""
1916
+ },
1917
+ {
1918
+ "name": "ProductPrice",
1919
+ "description": "",
1920
+ "contextType": "ProductPriceContext",
1921
+ "customMethods": [],
1922
+ "dynamic": false,
1923
+ "example": ""
1924
+ },
1925
+ {
1926
+ "name": "ProductOptions",
1927
+ "description": "",
1928
+ "contextType": "ProductOptionsContext",
1929
+ "customMethods": [],
1930
+ "dynamic": false,
1931
+ "example": ""
1932
+ },
1933
+ {
1934
+ "name": "QuickOrderItemSearch",
1935
+ "description": "",
1936
+ "contextType": "QuickOrderItemSearchContext",
1937
+ "customMethods": [],
1938
+ "dynamic": false,
1939
+ "example": ""
1940
+ },
1941
+ {
1942
+ "name": "QuickOrderSearchAutocompleteItem",
1943
+ "description": "",
1944
+ "contextType": "\n QuickOrderSearchAutocompleteItemContext<OrderItem>\n ",
1945
+ "customMethods": [],
1946
+ "dynamic": false,
1947
+ "example": ""
1948
+ }
1949
+ ]
1950
+ },
1951
+ "QuickOrderVariantsGrid": {
1952
+ "slots": [
1953
+ {
1954
+ "name": "Actions",
1955
+ "description": "",
1956
+ "contextType": "VariantActionsContext",
1957
+ "customMethods": [],
1958
+ "dynamic": false,
1959
+ "example": ""
1960
+ },
1961
+ {
1962
+ "name": "ImageCell",
1963
+ "description": "",
1964
+ "contextType": "VariantCellContext",
1965
+ "customMethods": [],
1966
+ "dynamic": false,
1967
+ "example": ""
1968
+ },
1969
+ {
1970
+ "name": "SKUCell",
1971
+ "description": "",
1972
+ "contextType": "VariantCellContext",
1973
+ "customMethods": [],
1974
+ "dynamic": false,
1975
+ "example": ""
1976
+ },
1977
+ {
1978
+ "name": "AvailabilityCell",
1979
+ "description": "",
1980
+ "contextType": "VariantCellContext",
1981
+ "customMethods": [],
1982
+ "dynamic": false,
1983
+ "example": ""
1984
+ },
1985
+ {
1986
+ "name": "PriceCell",
1987
+ "description": "",
1988
+ "contextType": "VariantCellContext",
1989
+ "customMethods": [],
1990
+ "dynamic": false,
1991
+ "example": ""
1992
+ },
1993
+ {
1994
+ "name": "QuantityCell",
1995
+ "description": "",
1996
+ "contextType": "VariantCellContext",
1997
+ "customMethods": [],
1998
+ "dynamic": false,
1999
+ "example": ""
2000
+ },
2001
+ {
2002
+ "name": "SubtotalCell",
2003
+ "description": "",
2004
+ "contextType": "VariantCellContext",
2005
+ "customMethods": [],
2006
+ "dynamic": false,
2007
+ "example": ""
2008
+ }
2009
+ ]
2010
+ }
2011
+ }
2012
+ },
2013
+ "storefront-account": {
2014
+ "containers": {
2015
+ "AddressForm": {
2016
+ "slots": [
2017
+ {
2018
+ "name": "AddressFormActions",
2019
+ "description": "",
2020
+ "contextType": "AddressFormActionsContext",
2021
+ "customMethods": [],
2022
+ "dynamic": false,
2023
+ "example": ""
2024
+ },
2025
+ {
2026
+ "name": "AddressFormInputs",
2027
+ "description": "",
2028
+ "contextType": "AddressFormInputsContext",
2029
+ "customMethods": [],
2030
+ "dynamic": false,
2031
+ "example": ""
2032
+ }
2033
+ ]
2034
+ },
2035
+ "OrdersList": {
2036
+ "slots": [
2037
+ {
2038
+ "name": "OrdersListAction",
2039
+ "description": "",
2040
+ "contextType": "OrdersListActionContext",
2041
+ "customMethods": [],
2042
+ "dynamic": false,
2043
+ "example": ""
2044
+ },
2045
+ {
2046
+ "name": "OrdersListCard",
2047
+ "description": "",
2048
+ "contextType": "OrdersListCardContext",
2049
+ "customMethods": [],
2050
+ "dynamic": false,
2051
+ "example": ""
2052
+ },
2053
+ {
2054
+ "name": "OrderItemImage",
2055
+ "description": "",
2056
+ "contextType": "{\n data: OrderItem;\n defaultImageProps: ImageProps;\n }",
2057
+ "customMethods": [],
2058
+ "dynamic": false,
2059
+ "example": ""
2060
+ }
2061
+ ]
2062
+ },
2063
+ "CustomerInformation": {
2064
+ "slots": [
2065
+ {
2066
+ "name": "CustomerData",
2067
+ "description": "",
2068
+ "contextType": "CustomerDataContext",
2069
+ "customMethods": [],
2070
+ "dynamic": false,
2071
+ "example": ""
2072
+ }
2073
+ ]
2074
+ }
2075
+ }
2076
+ },
2077
+ "storefront-auth": {
2078
+ "containers": {
2079
+ "UpdatePassword": {
2080
+ "slots": [
2081
+ {
2082
+ "name": "Title",
2083
+ "description": "",
2084
+ "contextType": "DefaultSlotContext",
2085
+ "customMethods": [],
2086
+ "dynamic": false,
2087
+ "example": ""
2088
+ },
2089
+ {
2090
+ "name": "Form",
2091
+ "description": "",
2092
+ "contextType": "DefaultSlotContext",
2093
+ "customMethods": [],
2094
+ "dynamic": false,
2095
+ "example": ""
2096
+ },
2097
+ {
2098
+ "name": "Buttons",
2099
+ "description": "",
2100
+ "contextType": "DefaultSlotContext",
2101
+ "customMethods": [],
2102
+ "dynamic": false,
2103
+ "example": ""
2104
+ },
2105
+ {
2106
+ "name": "SuccessNotification",
2107
+ "description": "",
2108
+ "contextType": "DefaultSlotContext",
2109
+ "customMethods": [],
2110
+ "dynamic": false,
2111
+ "example": ""
2112
+ }
2113
+ ]
2114
+ },
2115
+ "SuccessNotification": {
2116
+ "slots": [
2117
+ {
2118
+ "name": "SuccessNotificationActions",
2119
+ "description": "",
2120
+ "contextType": "DefaultSlotContext",
2121
+ "customMethods": [],
2122
+ "dynamic": false,
2123
+ "example": ""
2124
+ }
2125
+ ]
2126
+ },
2127
+ "SignUp": {
2128
+ "slots": [
2129
+ {
2130
+ "name": "Title",
2131
+ "description": "",
2132
+ "contextType": "DefaultSlotContext",
2133
+ "customMethods": [],
2134
+ "dynamic": false,
2135
+ "example": ""
2136
+ },
2137
+ {
2138
+ "name": "Form",
2139
+ "description": "",
2140
+ "contextType": "DefaultSlotContext",
2141
+ "customMethods": [],
2142
+ "dynamic": false,
2143
+ "example": ""
2144
+ },
2145
+ {
2146
+ "name": "Buttons",
2147
+ "description": "",
2148
+ "contextType": "DefaultSlotContext",
2149
+ "customMethods": [],
2150
+ "dynamic": false,
2151
+ "example": ""
2152
+ },
2153
+ {
2154
+ "name": "SuccessNotification",
2155
+ "description": "",
2156
+ "contextType": "DefaultSlotContext",
2157
+ "customMethods": [],
2158
+ "dynamic": false,
2159
+ "example": ""
2160
+ },
2161
+ {
2162
+ "name": "PrivacyPolicyConsent",
2163
+ "description": "",
2164
+ "contextType": "DefaultSlotContext",
2165
+ "customMethods": [],
2166
+ "dynamic": false,
2167
+ "example": ""
2168
+ }
2169
+ ]
2170
+ },
2171
+ "SignIn": {
2172
+ "slots": [
2173
+ {
2174
+ "name": "Form",
2175
+ "description": "",
2176
+ "contextType": "DefaultSlotContext",
2177
+ "customMethods": [],
2178
+ "dynamic": false,
2179
+ "example": ""
2180
+ },
2181
+ {
2182
+ "name": "Title",
2183
+ "description": "",
2184
+ "contextType": "DefaultSlotContext",
2185
+ "customMethods": [],
2186
+ "dynamic": false,
2187
+ "example": ""
2188
+ },
2189
+ {
2190
+ "name": "SuccessNotification",
2191
+ "description": "",
2192
+ "contextType": "DefaultSlotContext",
2193
+ "customMethods": [],
2194
+ "dynamic": false,
2195
+ "example": ""
2196
+ },
2197
+ {
2198
+ "name": "Buttons",
2199
+ "description": "",
2200
+ "contextType": "DefaultSlotContext",
2201
+ "customMethods": [],
2202
+ "dynamic": false,
2203
+ "example": ""
2204
+ }
2205
+ ]
2206
+ },
2207
+ "ResetPassword": {
2208
+ "slots": [
2209
+ {
2210
+ "name": "Title",
2211
+ "description": "",
2212
+ "contextType": "ResetPasswordSlotContext",
2213
+ "customMethods": [],
2214
+ "dynamic": false,
2215
+ "example": ""
2216
+ },
2217
+ {
2218
+ "name": "Form",
2219
+ "description": "",
2220
+ "contextType": "ResetPasswordSlotContext",
2221
+ "customMethods": [],
2222
+ "dynamic": false,
2223
+ "example": ""
2224
+ },
2225
+ {
2226
+ "name": "Buttons",
2227
+ "description": "",
2228
+ "contextType": "ResetPasswordSlotContext",
2229
+ "customMethods": [],
2230
+ "dynamic": false,
2231
+ "example": ""
2232
+ }
2233
+ ]
2234
+ }
2235
+ }
2236
+ },
2237
+ "storefront-purchase-order": {
2238
+ "containers": {
2239
+ "PurchaseOrderStatus": {
2240
+ "slots": [
2241
+ {
2242
+ "name": "PurchaseOrderActions",
2243
+ "description": "",
2244
+ "contextType": "PurchaseOrderStatusSlotContext",
2245
+ "customMethods": [],
2246
+ "dynamic": false,
2247
+ "example": ""
2248
+ }
2249
+ ]
2250
+ }
2251
+ }
2252
+ },
2253
+ "storefront-personalization": {
2254
+ "containers": {
2255
+ "TargetedBlock": {
2256
+ "slots": [
2257
+ {
2258
+ "name": "Content",
2259
+ "description": "",
2260
+ "contextType": "DefaultSlotContext",
2261
+ "customMethods": [],
2262
+ "dynamic": false,
2263
+ "example": ""
2264
+ }
2265
+ ]
2266
+ }
2267
+ }
2268
+ }
2269
+ }
2270
+ }