@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,577 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "cssScope": ".dropin-design",
4
+ "overrideExample": ".dropin-design {\n --color-brand-500: #0066cc;\n --color-brand-600: #0052a3;\n --type-base-font-family: 'My Brand Font', sans-serif;\n}",
5
+ "categories": {
6
+ "colors": {
7
+ "description": "Brand, neutral, semantic, and interactive color tokens",
8
+ "tokens": [
9
+ {
10
+ "cssVariable": "--color-brand-500",
11
+ "defaultValue": "#454545",
12
+ "description": "Brand buttons default - AAA"
13
+ },
14
+ {
15
+ "cssVariable": "--color-brand-600",
16
+ "defaultValue": "#383838",
17
+ "description": "Brand buttons on hover - AAA"
18
+ },
19
+ {
20
+ "cssVariable": "--color-brand-700",
21
+ "defaultValue": "#2B2B2B",
22
+ "description": "Brand buttons selected"
23
+ },
24
+ {
25
+ "cssVariable": "--color-neutral-50",
26
+ "defaultValue": "#FFFFFF",
27
+ "description": "Lightest surface / Text & components On Dark surface - AAA"
28
+ },
29
+ {
30
+ "cssVariable": "--color-neutral-100",
31
+ "defaultValue": "#FAFAFA",
32
+ "description": "Light surface - AAA"
33
+ },
34
+ {
35
+ "cssVariable": "--color-neutral-200",
36
+ "defaultValue": "#F5F5F5",
37
+ "description": "Light surface - AAA"
38
+ },
39
+ {
40
+ "cssVariable": "--color-neutral-300",
41
+ "defaultValue": "#E8E8E8",
42
+ "description": "Disabled surfaces - AAA"
43
+ },
44
+ {
45
+ "cssVariable": "--color-neutral-400",
46
+ "defaultValue": "#D6D6D6",
47
+ "description": "Ornamental elements (ie. Divider)"
48
+ },
49
+ {
50
+ "cssVariable": "--color-neutral-500",
51
+ "defaultValue": "#B8B8B8",
52
+ "description": "Disabled text"
53
+ },
54
+ {
55
+ "cssVariable": "--color-neutral-600",
56
+ "defaultValue": "#8F8F8F",
57
+ "description": "Component borders (ie. Text field border) - AA Large text"
58
+ },
59
+ {
60
+ "cssVariable": "--color-neutral-700",
61
+ "defaultValue": "#666666",
62
+ "description": "Secondary text - AAA"
63
+ },
64
+ {
65
+ "cssVariable": "--color-neutral-800",
66
+ "defaultValue": "#3D3D3D",
67
+ "description": "Default text - AAA"
68
+ },
69
+ {
70
+ "cssVariable": "--color-neutral-900",
71
+ "defaultValue": "#292929",
72
+ "description": "Default text on hover - AAA"
73
+ },
74
+ {
75
+ "cssVariable": "--color-positive-200",
76
+ "defaultValue": "#EFF5EF",
77
+ "description": "Semantic positive surface - AA Large text"
78
+ },
79
+ {
80
+ "cssVariable": "--color-positive-500",
81
+ "defaultValue": "#7FB078",
82
+ "description": "Semantic positive surface"
83
+ },
84
+ {
85
+ "cssVariable": "--color-positive-800",
86
+ "defaultValue": "#53824C",
87
+ "description": "Semantic Positive text - On Light AA"
88
+ },
89
+ {
90
+ "cssVariable": "--color-informational-200",
91
+ "defaultValue": "#EEEFFB",
92
+ "description": "Semantic informational surface - AA Large text"
93
+ },
94
+ {
95
+ "cssVariable": "--color-informational-500",
96
+ "defaultValue": "#6978D9",
97
+ "description": "Semantic informational surface"
98
+ },
99
+ {
100
+ "cssVariable": "--color-informational-800",
101
+ "defaultValue": "#5D6DD6",
102
+ "description": "Semantic informational text, Highlights - On Light AA"
103
+ },
104
+ {
105
+ "cssVariable": "--color-warning-200",
106
+ "defaultValue": "#FDF3E9",
107
+ "description": "Semantic warning surface - AA Large text"
108
+ },
109
+ {
110
+ "cssVariable": "--color-warning-500",
111
+ "defaultValue": "#E79F5C",
112
+ "description": "Semantic warning surface"
113
+ },
114
+ {
115
+ "cssVariable": "--color-warning-800",
116
+ "defaultValue": "#AD5C00",
117
+ "description": "Semantic warning text - On Light AA"
118
+ },
119
+ {
120
+ "cssVariable": "--color-alert-200",
121
+ "defaultValue": "#FFEBEB",
122
+ "description": "Semantic alert surface - AA Large text"
123
+ },
124
+ {
125
+ "cssVariable": "--color-alert-500",
126
+ "defaultValue": "#DB7070",
127
+ "description": "Semantic alert surface"
128
+ },
129
+ {
130
+ "cssVariable": "--color-alert-800",
131
+ "defaultValue": "#BF4545",
132
+ "description": "Semantic alert text - On light AA"
133
+ },
134
+ {
135
+ "cssVariable": "--color-opacity-16",
136
+ "defaultValue": "rgba(255,255,255,0.16)",
137
+ "description": ""
138
+ },
139
+ {
140
+ "cssVariable": "--color-opacity-24",
141
+ "defaultValue": "rgba(255,255,255,0.24)",
142
+ "description": ""
143
+ },
144
+ {
145
+ "cssVariable": "--color-action-button-active",
146
+ "defaultValue": "#ffffff",
147
+ "description": "Defaults to var(--color-neutral-50)"
148
+ },
149
+ {
150
+ "cssVariable": "--color-action-button-hover",
151
+ "defaultValue": "#e8e8e8",
152
+ "description": "Defaults to var(--color-neutral-300)"
153
+ },
154
+ {
155
+ "cssVariable": "--color-button-active",
156
+ "defaultValue": "#2b2b2b",
157
+ "description": "Defaults to var(--color-brand-700)"
158
+ },
159
+ {
160
+ "cssVariable": "--color-button-focus",
161
+ "defaultValue": "#d6d6d6",
162
+ "description": "Defaults to var(--color-neutral-400)"
163
+ },
164
+ {
165
+ "cssVariable": "--color-button-hover",
166
+ "defaultValue": "#383838",
167
+ "description": "Defaults to var(--color-brand-600)"
168
+ }
169
+ ]
170
+ },
171
+ "typography": {
172
+ "description": "Font family, display, heading, body, and detail type scales",
173
+ "tokens": [
174
+ {
175
+ "cssVariable": "--type-base-font-family",
176
+ "defaultValue": "system-ui, sans-serif",
177
+ "description": ""
178
+ },
179
+ {
180
+ "cssVariable": "--type-display-1-font",
181
+ "defaultValue": "normal normal 300 60px/72px var(--type-base-font-family)",
182
+ "description": "Hero title"
183
+ },
184
+ {
185
+ "cssVariable": "--type-display-1-letter-spacing",
186
+ "defaultValue": "0.04em",
187
+ "description": ""
188
+ },
189
+ {
190
+ "cssVariable": "--type-display-2-font",
191
+ "defaultValue": "normal normal 300 48px/56px var(--type-base-font-family)",
192
+ "description": "Banner title"
193
+ },
194
+ {
195
+ "cssVariable": "--type-display-2-letter-spacing",
196
+ "defaultValue": "0.04em",
197
+ "description": ""
198
+ },
199
+ {
200
+ "cssVariable": "--type-display-3-font",
201
+ "defaultValue": "normal normal 300 34px/40px var(--type-base-font-family)",
202
+ "description": "Desktop & tablet section title"
203
+ },
204
+ {
205
+ "cssVariable": "--type-display-3-letter-spacing",
206
+ "defaultValue": "0.04em",
207
+ "description": ""
208
+ },
209
+ {
210
+ "cssVariable": "--type-headline-1-font",
211
+ "defaultValue": "normal normal 400 24px/32px var(--type-base-font-family)",
212
+ "description": "Desktop & tablet page title"
213
+ },
214
+ {
215
+ "cssVariable": "--type-headline-1-letter-spacing",
216
+ "defaultValue": "0.04em",
217
+ "description": ""
218
+ },
219
+ {
220
+ "cssVariable": "--type-headline-2-default-font",
221
+ "defaultValue": "normal normal 300 20px/24px var(--type-base-font-family)",
222
+ "description": "Rail title"
223
+ },
224
+ {
225
+ "cssVariable": "--type-headline-2-default-letter-spacing",
226
+ "defaultValue": "0.04em",
227
+ "description": ""
228
+ },
229
+ {
230
+ "cssVariable": "--type-headline-2-strong-font",
231
+ "defaultValue": "normal normal 400 20px/24px var(--type-base-font-family)",
232
+ "description": "Mobile page and section title"
233
+ },
234
+ {
235
+ "cssVariable": "--type-headline-2-strong-letter-spacing",
236
+ "defaultValue": "0.04em",
237
+ "description": ""
238
+ },
239
+ {
240
+ "cssVariable": "--type-body-1-default-font",
241
+ "defaultValue": "normal normal 300 16px/24px var(--type-base-font-family)",
242
+ "description": "Normal text paragraph"
243
+ },
244
+ {
245
+ "cssVariable": "--type-body-1-default-letter-spacing",
246
+ "defaultValue": "0.04em",
247
+ "description": ""
248
+ },
249
+ {
250
+ "cssVariable": "--type-body-1-strong-font",
251
+ "defaultValue": "normal normal 400 16px/24px var(--type-base-font-family)",
252
+ "description": ""
253
+ },
254
+ {
255
+ "cssVariable": "--type-body-1-strong-letter-spacing",
256
+ "defaultValue": "0.04em",
257
+ "description": ""
258
+ },
259
+ {
260
+ "cssVariable": "--type-body-1-emphasized-font",
261
+ "defaultValue": "normal normal 700 16px/24px var(--type-base-font-family)",
262
+ "description": ""
263
+ },
264
+ {
265
+ "cssVariable": "--type-body-1-emphasized-letter-spacing",
266
+ "defaultValue": "0.04em",
267
+ "description": ""
268
+ },
269
+ {
270
+ "cssVariable": "--type-body-2-default-font",
271
+ "defaultValue": "normal normal 300 14px/20px var(--type-base-font-family)",
272
+ "description": ""
273
+ },
274
+ {
275
+ "cssVariable": "--type-body-2-default-letter-spacing",
276
+ "defaultValue": "0.04em",
277
+ "description": ""
278
+ },
279
+ {
280
+ "cssVariable": "--type-body-2-strong-font",
281
+ "defaultValue": "normal normal 400 14px/20px var(--type-base-font-family)",
282
+ "description": ""
283
+ },
284
+ {
285
+ "cssVariable": "--type-body-2-strong-letter-spacing",
286
+ "defaultValue": "0.04em",
287
+ "description": ""
288
+ },
289
+ {
290
+ "cssVariable": "--type-body-2-emphasized-font",
291
+ "defaultValue": "normal normal 700 14px/20px var(--type-base-font-family)",
292
+ "description": ""
293
+ },
294
+ {
295
+ "cssVariable": "--type-body-2-emphasized-letter-spacing",
296
+ "defaultValue": "0.04em",
297
+ "description": ""
298
+ },
299
+ {
300
+ "cssVariable": "--type-button-1-font",
301
+ "defaultValue": "normal normal 400 20px/26px var(--type-base-font-family)",
302
+ "description": "Primary button text"
303
+ },
304
+ {
305
+ "cssVariable": "--type-button-1-letter-spacing",
306
+ "defaultValue": "0.08em",
307
+ "description": ""
308
+ },
309
+ {
310
+ "cssVariable": "--type-button-2-font",
311
+ "defaultValue": "normal normal 400 16px/24px var(--type-base-font-family)",
312
+ "description": "Small buttons"
313
+ },
314
+ {
315
+ "cssVariable": "--type-button-2-letter-spacing",
316
+ "defaultValue": "0.08em",
317
+ "description": ""
318
+ },
319
+ {
320
+ "cssVariable": "--type-details-caption-1-font",
321
+ "defaultValue": "normal normal 400 12px/16px var(--type-base-font-family)",
322
+ "description": ""
323
+ },
324
+ {
325
+ "cssVariable": "--type-details-caption-1-letter-spacing",
326
+ "defaultValue": "0.08em",
327
+ "description": ""
328
+ },
329
+ {
330
+ "cssVariable": "--type-details-caption-2-font",
331
+ "defaultValue": "normal normal 300 12px/16px var(--type-base-font-family)",
332
+ "description": ""
333
+ },
334
+ {
335
+ "cssVariable": "--type-details-caption-2-letter-spacing",
336
+ "defaultValue": "0.08em",
337
+ "description": ""
338
+ },
339
+ {
340
+ "cssVariable": "--type-details-overline-font",
341
+ "defaultValue": "normal normal 700 12px/20px var(--type-base-font-family)",
342
+ "description": ""
343
+ },
344
+ {
345
+ "cssVariable": "--type-details-overline-letter-spacing",
346
+ "defaultValue": "0.16em",
347
+ "description": ""
348
+ }
349
+ ]
350
+ },
351
+ "spacing": {
352
+ "description": "Consistent spacing scale from xxsmall (4px) to xxhuge (192px)",
353
+ "tokens": [
354
+ {
355
+ "cssVariable": "--spacing-xxsmall",
356
+ "defaultValue": "4px",
357
+ "description": ""
358
+ },
359
+ {
360
+ "cssVariable": "--spacing-xsmall",
361
+ "defaultValue": "8px",
362
+ "description": ""
363
+ },
364
+ {
365
+ "cssVariable": "--spacing-small",
366
+ "defaultValue": "16px",
367
+ "description": ""
368
+ },
369
+ {
370
+ "cssVariable": "--spacing-medium",
371
+ "defaultValue": "24px",
372
+ "description": ""
373
+ },
374
+ {
375
+ "cssVariable": "--spacing-big",
376
+ "defaultValue": "32px",
377
+ "description": ""
378
+ },
379
+ {
380
+ "cssVariable": "--spacing-xbig",
381
+ "defaultValue": "40px",
382
+ "description": ""
383
+ },
384
+ {
385
+ "cssVariable": "--spacing-xxbig",
386
+ "defaultValue": "48px",
387
+ "description": ""
388
+ },
389
+ {
390
+ "cssVariable": "--spacing-large",
391
+ "defaultValue": "64px",
392
+ "description": ""
393
+ },
394
+ {
395
+ "cssVariable": "--spacing-xlarge",
396
+ "defaultValue": "72px",
397
+ "description": ""
398
+ },
399
+ {
400
+ "cssVariable": "--spacing-xxlarge",
401
+ "defaultValue": "96px",
402
+ "description": ""
403
+ },
404
+ {
405
+ "cssVariable": "--spacing-huge",
406
+ "defaultValue": "120px",
407
+ "description": ""
408
+ },
409
+ {
410
+ "cssVariable": "--spacing-xhuge",
411
+ "defaultValue": "144px",
412
+ "description": ""
413
+ },
414
+ {
415
+ "cssVariable": "--spacing-xxhuge",
416
+ "defaultValue": "192px",
417
+ "description": ""
418
+ }
419
+ ]
420
+ },
421
+ "shapes": {
422
+ "description": "Border radii, border widths, shadows, and icon stroke widths",
423
+ "tokens": [
424
+ {
425
+ "cssVariable": "--shape-border-radius-1",
426
+ "defaultValue": "3px",
427
+ "description": ""
428
+ },
429
+ {
430
+ "cssVariable": "--shape-border-radius-2",
431
+ "defaultValue": "8px",
432
+ "description": ""
433
+ },
434
+ {
435
+ "cssVariable": "--shape-border-radius-3",
436
+ "defaultValue": "24px",
437
+ "description": ""
438
+ },
439
+ {
440
+ "cssVariable": "--shape-border-width-1",
441
+ "defaultValue": "1px",
442
+ "description": ""
443
+ },
444
+ {
445
+ "cssVariable": "--shape-border-width-2",
446
+ "defaultValue": "1.5px",
447
+ "description": ""
448
+ },
449
+ {
450
+ "cssVariable": "--shape-border-width-3",
451
+ "defaultValue": "2px",
452
+ "description": ""
453
+ },
454
+ {
455
+ "cssVariable": "--shape-border-width-4",
456
+ "defaultValue": "4px",
457
+ "description": ""
458
+ },
459
+ {
460
+ "cssVariable": "--shape-shadow-1",
461
+ "defaultValue": "0 0 16px 0 rgba(0,0,0,0.16)",
462
+ "description": "Elevated panels (ie. Page side panel, Mobile bottom bar)"
463
+ },
464
+ {
465
+ "cssVariable": "--shape-shadow-2",
466
+ "defaultValue": "0 2px 16px 0 rgba(0,0,0,0.16)",
467
+ "description": "Elevated dialogs (ie. Modal)"
468
+ },
469
+ {
470
+ "cssVariable": "--shape-shadow-3",
471
+ "defaultValue": "0 2px 3px 0 rgba(0,0,0,0.16)",
472
+ "description": "Elevated container (ie. Card)"
473
+ },
474
+ {
475
+ "cssVariable": "--shape-icon-stroke-1",
476
+ "defaultValue": "1px",
477
+ "description": ""
478
+ },
479
+ {
480
+ "cssVariable": "--shape-icon-stroke-2",
481
+ "defaultValue": "1.5px",
482
+ "description": ""
483
+ },
484
+ {
485
+ "cssVariable": "--shape-icon-stroke-3",
486
+ "defaultValue": "2px",
487
+ "description": ""
488
+ },
489
+ {
490
+ "cssVariable": "--shape-icon-stroke-4",
491
+ "defaultValue": "4px",
492
+ "description": ""
493
+ }
494
+ ]
495
+ },
496
+ "grid": {
497
+ "description": "Responsive grid columns, margins, and gutters",
498
+ "tokens": [
499
+ {
500
+ "cssVariable": "--grid-1-columns",
501
+ "defaultValue": "4",
502
+ "description": ""
503
+ },
504
+ {
505
+ "cssVariable": "--grid-1-margins",
506
+ "defaultValue": "0",
507
+ "description": ""
508
+ },
509
+ {
510
+ "cssVariable": "--grid-1-gutters",
511
+ "defaultValue": "16px",
512
+ "description": ""
513
+ },
514
+ {
515
+ "cssVariable": "--grid-2-columns",
516
+ "defaultValue": "12",
517
+ "description": ""
518
+ },
519
+ {
520
+ "cssVariable": "--grid-2-margins",
521
+ "defaultValue": "0",
522
+ "description": ""
523
+ },
524
+ {
525
+ "cssVariable": "--grid-2-gutters",
526
+ "defaultValue": "16px",
527
+ "description": ""
528
+ },
529
+ {
530
+ "cssVariable": "--grid-3-columns",
531
+ "defaultValue": "12",
532
+ "description": ""
533
+ },
534
+ {
535
+ "cssVariable": "--grid-3-margins",
536
+ "defaultValue": "0",
537
+ "description": ""
538
+ },
539
+ {
540
+ "cssVariable": "--grid-3-gutters",
541
+ "defaultValue": "24px",
542
+ "description": ""
543
+ },
544
+ {
545
+ "cssVariable": "--grid-4-columns",
546
+ "defaultValue": "12",
547
+ "description": ""
548
+ },
549
+ {
550
+ "cssVariable": "--grid-4-margins",
551
+ "defaultValue": "0",
552
+ "description": ""
553
+ },
554
+ {
555
+ "cssVariable": "--grid-4-gutters",
556
+ "defaultValue": "24px",
557
+ "description": ""
558
+ },
559
+ {
560
+ "cssVariable": "--grid-5-columns",
561
+ "defaultValue": "12",
562
+ "description": ""
563
+ },
564
+ {
565
+ "cssVariable": "--grid-5-margins",
566
+ "defaultValue": "0",
567
+ "description": ""
568
+ },
569
+ {
570
+ "cssVariable": "--grid-5-gutters",
571
+ "defaultValue": "24px",
572
+ "description": ""
573
+ }
574
+ ]
575
+ }
576
+ }
577
+ }