@gravitee/ui-components 3.24.5 → 3.25.0-fix-gvcode-15ce1d2

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 (114) hide show
  1. package/CHANGELOG.md +1270 -0
  2. package/LICENSE.txt +202 -0
  3. package/README.md +195 -0
  4. package/assets/i18n/en.json +3 -0
  5. package/assets/i18n/fr.json +3 -0
  6. package/assets/icons/design.svg +1 -1
  7. package/package.json +1 -1
  8. package/src/.eslintrc.js +19 -0
  9. package/src/atoms/gv-autocomplete.js +156 -132
  10. package/src/atoms/gv-button.js +248 -73
  11. package/src/atoms/gv-checkbox.js +103 -45
  12. package/src/atoms/gv-date-picker-calendar.js +393 -312
  13. package/src/atoms/gv-date-picker-cell.js +81 -57
  14. package/src/atoms/gv-date-picker.js +319 -180
  15. package/src/atoms/gv-file-upload.js +195 -85
  16. package/src/atoms/gv-icon.js +34 -13
  17. package/src/atoms/gv-image.js +66 -31
  18. package/src/atoms/gv-input-message.js +37 -12
  19. package/src/atoms/gv-input.js +148 -117
  20. package/src/atoms/gv-link.js +125 -47
  21. package/src/atoms/gv-message.js +69 -18
  22. package/src/atoms/gv-metric.js +68 -19
  23. package/src/atoms/gv-relative-time.js +38 -67
  24. package/src/atoms/gv-select-native.js +215 -96
  25. package/src/atoms/gv-select.js +230 -110
  26. package/src/atoms/gv-spinner.js +26 -5
  27. package/src/atoms/gv-state.js +66 -25
  28. package/src/atoms/gv-switch.js +160 -40
  29. package/src/atoms/gv-tag.js +78 -26
  30. package/src/atoms/gv-text.js +83 -22
  31. package/src/charts/gv-chart-bar.js +18 -22
  32. package/src/charts/gv-chart-gauge.js +31 -28
  33. package/src/charts/gv-chart-histogram.js +10 -18
  34. package/src/charts/gv-chart-line.js +59 -70
  35. package/src/charts/gv-chart-map.js +42 -44
  36. package/src/charts/gv-chart-pie.js +14 -18
  37. package/src/index.js +0 -1
  38. package/src/lib/cron-expression.js +35 -40
  39. package/src/lib/date.js +1 -10
  40. package/src/lib/events.js +1 -3
  41. package/src/lib/http-client-schema-form.js +12 -13
  42. package/src/lib/http.js +56 -57
  43. package/src/lib/i18n.js +22 -30
  44. package/src/lib/item.js +12 -13
  45. package/src/lib/properties.js +42 -77
  46. package/src/lib/schema-form.js +5 -4
  47. package/src/lib/studio.js +60 -13
  48. package/src/lib/style.js +8 -8
  49. package/src/lib/text-format.js +7 -14
  50. package/src/lib/theme.js +5 -8
  51. package/src/lib/utils.js +18 -17
  52. package/src/mixins/chart-element.js +54 -31
  53. package/src/mixins/input-element.js +47 -60
  54. package/src/mixins/item-resource.js +32 -34
  55. package/src/mixins/keyboard-element.js +5 -6
  56. package/src/mixins/update-after-browser.js +1 -4
  57. package/src/mixins/with-resize-observer.js +13 -23
  58. package/src/mixins/with-skeleton-attribute.js +48 -54
  59. package/src/molecules/gv-card-full.js +147 -26
  60. package/src/molecules/gv-card-list.js +42 -13
  61. package/src/molecules/gv-card.js +91 -17
  62. package/src/molecules/gv-category-list.js +17 -6
  63. package/src/molecules/gv-category.js +103 -23
  64. package/src/molecules/gv-code.js +143 -81
  65. package/src/molecules/gv-confirm.js +71 -41
  66. package/src/molecules/gv-cron-editor.js +389 -143
  67. package/src/molecules/gv-dropdown-menu.js +46 -14
  68. package/src/molecules/gv-expandable.js +59 -31
  69. package/src/molecules/gv-expression-language.js +138 -176
  70. package/src/molecules/gv-identity-picture.js +65 -42
  71. package/src/molecules/gv-list.js +134 -42
  72. package/src/molecules/gv-metrics.js +49 -37
  73. package/src/molecules/gv-modal.js +95 -28
  74. package/src/molecules/gv-nav.js +75 -49
  75. package/src/molecules/gv-option.js +130 -57
  76. package/src/molecules/gv-plans.js +209 -86
  77. package/src/molecules/gv-popover.js +177 -57
  78. package/src/molecules/gv-promote.js +146 -28
  79. package/src/molecules/gv-rating-list.js +195 -69
  80. package/src/molecules/gv-rating.js +105 -52
  81. package/src/molecules/gv-row-expandable.js +11 -5
  82. package/src/molecules/gv-row.js +147 -21
  83. package/src/molecules/gv-stats.js +48 -23
  84. package/src/molecules/gv-stepper.js +187 -43
  85. package/src/molecules/gv-table.js +309 -199
  86. package/src/molecules/gv-tree.js +156 -33
  87. package/src/organisms/gv-documentation.js +128 -45
  88. package/src/organisms/gv-header.js +195 -37
  89. package/src/organisms/gv-http-client.js +168 -32
  90. package/src/organisms/gv-menu.js +158 -37
  91. package/src/organisms/gv-newsletter-subscription.js +189 -48
  92. package/src/organisms/gv-pagination.js +77 -49
  93. package/src/organisms/gv-properties.js +492 -271
  94. package/src/organisms/gv-resizable-views.js +259 -41
  95. package/src/organisms/gv-resources.js +275 -168
  96. package/src/organisms/gv-schema-form-array.js +159 -49
  97. package/src/organisms/gv-schema-form-control-object.js +73 -59
  98. package/src/organisms/gv-schema-form-control.js +134 -107
  99. package/src/organisms/gv-schema-form.js +324 -195
  100. package/src/organisms/gv-tabs.js +98 -66
  101. package/src/organisms/gv-user-menu.js +201 -36
  102. package/src/organisms/gv-vertical-menu.js +61 -20
  103. package/src/policy-studio/gv-flow-step.js +266 -105
  104. package/src/policy-studio/gv-flow.js +304 -125
  105. package/src/policy-studio/gv-policy-studio-menu.js +471 -157
  106. package/src/policy-studio/gv-policy-studio.js +777 -686
  107. package/src/styles/empty.js +20 -3
  108. package/src/styles/input.js +247 -3
  109. package/src/styles/link.js +16 -3
  110. package/src/styles/shapes.js +0 -1
  111. package/src/styles/skeleton.js +37 -3
  112. package/src/styles/zoom.js +24 -3
  113. package/src/theme/definition.json +1762 -0
  114. package/src/theme/gv-theme.js +60 -21
@@ -0,0 +1,1762 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "gv-theme",
5
+ "css": [
6
+ {
7
+ "name": "--gv-theme-color-darker",
8
+ "description": "Primary darker color",
9
+ "type": "color",
10
+ "default": "#383E3F",
11
+ "value": "#383E3F"
12
+ },
13
+ {
14
+ "name": "--gv-theme-color-dark",
15
+ "description": "Primary dark color",
16
+ "type": "color",
17
+ "default": "#28444F",
18
+ "value": "#28444F"
19
+ },
20
+ {
21
+ "name": "--gv-theme-color",
22
+ "description": "Primary color",
23
+ "type": "color",
24
+ "default": "#5A7684",
25
+ "value": "#5A7684"
26
+ },
27
+ {
28
+ "name": "--gv-theme-color-light",
29
+ "description": "Primary light color",
30
+ "type": "color",
31
+ "default": "#86c3d0",
32
+ "value": "#86c3d0"
33
+ },
34
+ {
35
+ "name": "--gv-theme-color-danger",
36
+ "description": "Primary danger color",
37
+ "type": "color",
38
+ "default": "#FF5722",
39
+ "value": "#FF5722"
40
+ },
41
+ {
42
+ "name": "--gv-theme-color-error-dark",
43
+ "description": "Error dark color",
44
+ "type": "color",
45
+ "default": "#d32f2f",
46
+ "value": "#d32f2f"
47
+ },
48
+ {
49
+ "name": "--gv-theme-color-error",
50
+ "description": "Error color",
51
+ "type": "color",
52
+ "default": "#f44336",
53
+ "value": "#f44336"
54
+ },
55
+ {
56
+ "name": "--gv-theme-color-error-light",
57
+ "description": "Error light color",
58
+ "type": "color",
59
+ "default": "#e57373",
60
+ "value": "#e57373"
61
+ },
62
+ {
63
+ "name": "--gv-theme-color-info-dark",
64
+ "description": "Info dark color",
65
+ "type": "color",
66
+ "default": "#1976d2",
67
+ "value": "#1976d2"
68
+ },
69
+ {
70
+ "name": "--gv-theme-color-info",
71
+ "description": "Info color",
72
+ "type": "color",
73
+ "default": "#2196f3",
74
+ "value": "#2196f3"
75
+ },
76
+ {
77
+ "name": "--gv-theme-color-info-light",
78
+ "description": "Info light color",
79
+ "type": "color",
80
+ "default": "#64b5f6",
81
+ "value": "#64b5f6"
82
+ },
83
+ {
84
+ "name": "--gv-theme-color-success-dark",
85
+ "description": "Success dark color",
86
+ "type": "color",
87
+ "default": "#388e3c",
88
+ "value": "#388e3c"
89
+ },
90
+ {
91
+ "name": "--gv-theme-color-success",
92
+ "description": "Success color",
93
+ "type": "color",
94
+ "default": "#4caf50",
95
+ "value": "#4caf50"
96
+ },
97
+ {
98
+ "name": "--gv-theme-color-success-light",
99
+ "description": "Success light color",
100
+ "type": "color",
101
+ "default": "#81c784",
102
+ "value": "#81c784"
103
+ },
104
+ {
105
+ "name": "--gv-theme-color-warning-dark",
106
+ "description": "Warning dark color",
107
+ "type": "color",
108
+ "default": "#f57c00",
109
+ "value": "#f57c00"
110
+ },
111
+ {
112
+ "name": "--gv-theme-color-warning",
113
+ "description": "Warning color",
114
+ "type": "color",
115
+ "default": "#ff9800",
116
+ "value": "#ff9800"
117
+ },
118
+ {
119
+ "name": "--gv-theme-color-warning-light",
120
+ "description": "Warning light color",
121
+ "type": "color",
122
+ "default": "#ffb74d",
123
+ "value": "#ffb74d"
124
+ },
125
+ {
126
+ "name": "--gv-theme-neutral-color-darkest",
127
+ "description": "Neutral darkest color",
128
+ "type": "color",
129
+ "default": "#000000",
130
+ "value": "#000000"
131
+ },
132
+ {
133
+ "name": "--gv-theme-neutral-color-darker",
134
+ "description": "Neutral darker color",
135
+ "type": "color",
136
+ "default": "#BFBFBF",
137
+ "value": "#BFBFBF"
138
+ },
139
+ {
140
+ "name": "--gv-theme-neutral-color-dark",
141
+ "description": "Neutral dark color",
142
+ "type": "color",
143
+ "default": "#D9D9D9",
144
+ "value": "#D9D9D9"
145
+ },
146
+ {
147
+ "name": "--gv-theme-neutral-color",
148
+ "description": "Neutral color",
149
+ "type": "color",
150
+ "default": "#F5F5F5",
151
+ "value": "#F5F5F5"
152
+ },
153
+ {
154
+ "name": "--gv-theme-neutral-color-light",
155
+ "description": "Neutral light color",
156
+ "type": "color",
157
+ "default": "#EFEFEF",
158
+ "value": "#EFEFEF"
159
+ },
160
+ {
161
+ "name": "--gv-theme-neutral-color-lighter",
162
+ "description": "Neutral light color",
163
+ "type": "color",
164
+ "default": "#FAFAFA",
165
+ "value": "#FAFAFA"
166
+ },
167
+ {
168
+ "name": "--gv-theme-neutral-color-lightest",
169
+ "description": "Neutral lightest color",
170
+ "type": "color",
171
+ "default": "#FFFFFF",
172
+ "value": "#FFFFFF"
173
+ },
174
+ {
175
+ "name": "--gv-theme-font-color-dark",
176
+ "description": "Dark font color",
177
+ "type": "color",
178
+ "default": "#262626",
179
+ "value": "#262626"
180
+ },
181
+ {
182
+ "name": "--gv-theme-font-color-light",
183
+ "description": "Light Font color",
184
+ "type": "color",
185
+ "default": "#FFFFFF",
186
+ "value": "#FFFFFF"
187
+ },
188
+ {
189
+ "name": "--gv-theme-font-family",
190
+ "description": "Family",
191
+ "type": "string",
192
+ "default": "'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif",
193
+ "value": "'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif"
194
+ },
195
+ {
196
+ "name": "--gv-theme-font-size-xs",
197
+ "description": "Extra small",
198
+ "type": "length",
199
+ "default": "10px",
200
+ "value": "10px"
201
+ },
202
+ {
203
+ "name": "--gv-theme-font-size-s",
204
+ "description": "Small",
205
+ "type": "length",
206
+ "default": "12px",
207
+ "value": "12px"
208
+ },
209
+ {
210
+ "name": "--gv-theme-font-size-m",
211
+ "description": "Medium (Default)",
212
+ "type": "length",
213
+ "default": "14px",
214
+ "value": "14px"
215
+ },
216
+ {
217
+ "name": "--gv-theme-font-size-l",
218
+ "description": "Large",
219
+ "type": "length",
220
+ "default": "16px",
221
+ "value": "16px"
222
+ },
223
+ {
224
+ "name": "--gv-theme-font-size-xl",
225
+ "description": "Extra large",
226
+ "type": "length",
227
+ "default": "26px",
228
+ "value": "26px"
229
+ },
230
+ {
231
+ "name": "--gv-theme-font-size-xxl",
232
+ "description": "Extra extra large",
233
+ "type": "length",
234
+ "default": "30px",
235
+ "value": "30px"
236
+ },
237
+ {
238
+ "name": "--gv-theme-homepage-background-height",
239
+ "description": "Homepage background height",
240
+ "type": "length",
241
+ "default": "400px",
242
+ "value": "400px"
243
+ },
244
+ {
245
+ "name": "--gv-theme-skeleton-color",
246
+ "description": "Primary skeleton color",
247
+ "type": "color",
248
+ "default": "#BFBFBF",
249
+ "value": "#BFBFBF"
250
+ },
251
+ {
252
+ "name": "--gv-theme-homepage-background-color",
253
+ "description": "Homepage background color",
254
+ "type": "color",
255
+ "default": "#5A7684",
256
+ "value": "#5A7684"
257
+ }
258
+ ]
259
+ },
260
+ {
261
+ "name": "gv-user-menu",
262
+ "css": [
263
+ {
264
+ "name": "--gv-user-menu--c",
265
+ "description": "Color",
266
+ "type": "color",
267
+ "default": "var(--gv-theme-font-color-dark, #262626)",
268
+ "value": ""
269
+ },
270
+ {
271
+ "name": "--gv-user-menu-hover--c",
272
+ "description": "Hover color",
273
+ "type": "color",
274
+ "default": "var(--gv-theme-color-dark, #28444f)",
275
+ "value": ""
276
+ },
277
+ {
278
+ "name": "--gv-user-menu--bgc",
279
+ "description": "Background color",
280
+ "type": "color",
281
+ "default": "transparent",
282
+ "value": "transparent"
283
+ },
284
+ {
285
+ "name": "--gv-user-menu-list--bgc",
286
+ "description": "List background color",
287
+ "type": "color",
288
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
289
+ "value": ""
290
+ },
291
+ {
292
+ "name": "--gv-user-menu-hover--bgc",
293
+ "description": "Hover background color",
294
+ "type": "color",
295
+ "default": "var(--gv-theme-color-light, #86c3d0)",
296
+ "value": ""
297
+ },
298
+ {
299
+ "name": "--gv-user-menu--bdc",
300
+ "description": "Border color",
301
+ "type": "color",
302
+ "default": "lightgrey",
303
+ "value": "lightgrey"
304
+ },
305
+ {
306
+ "name": "--gv-user-menu--tsh",
307
+ "description": "Text shadow",
308
+ "type": "string",
309
+ "default": "none",
310
+ "value": "none"
311
+ },
312
+ {
313
+ "name": "--gv-user-menu-icon--c",
314
+ "description": "Icon color",
315
+ "type": "color",
316
+ "default": "var(--gv-theme-neutral-color-darkest, #000000)",
317
+ "value": ""
318
+ },
319
+ {
320
+ "name": "--gv-user-menu-icon--s",
321
+ "description": "Height and icon width",
322
+ "type": "length",
323
+ "default": "16px",
324
+ "value": "16px"
325
+ },
326
+ {
327
+ "name": "--gv-user-menu-link-a--ph",
328
+ "description": "Link horizontal padding",
329
+ "type": "length",
330
+ "default": "0px",
331
+ "value": "0px"
332
+ },
333
+ {
334
+ "name": "--gv-user-menu-link--ta",
335
+ "description": "Text align",
336
+ "type": "string",
337
+ "default": "right",
338
+ "value": "right"
339
+ }
340
+ ]
341
+ },
342
+ {
343
+ "name": "gv-pagination",
344
+ "css": [
345
+ {
346
+ "name": "--gv-pagination--fz",
347
+ "description": "Font size",
348
+ "type": "length",
349
+ "default": "var(--gv-theme-font-size-s, 12px)",
350
+ "value": ""
351
+ },
352
+ {
353
+ "name": "--gv-pagination-icon--s",
354
+ "description": "Height and icon width",
355
+ "type": "length",
356
+ "default": "18px",
357
+ "value": "18px"
358
+ }
359
+ ]
360
+ },
361
+ {
362
+ "name": "gv-menu",
363
+ "css": [
364
+ {
365
+ "name": "--gv-menu--c",
366
+ "description": "Color",
367
+ "type": "color",
368
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
369
+ "value": ""
370
+ },
371
+ {
372
+ "name": "--gv-menu--bgc",
373
+ "description": "Background color.",
374
+ "type": "color",
375
+ "default": "var(--gv-theme-color-dark, #28444f)",
376
+ "value": ""
377
+ },
378
+ {
379
+ "name": "--gv-menu-link-active--bdc",
380
+ "description": "Border bottom color of active link.",
381
+ "type": "color",
382
+ "default": "var(--gv-theme-color-light, #86c3d0)",
383
+ "value": ""
384
+ },
385
+ {
386
+ "name": "--gv-menu-link-active--bds",
387
+ "description": "Border bottom style of active link.",
388
+ "type": "string",
389
+ "default": "solid",
390
+ "value": "solid"
391
+ },
392
+ {
393
+ "name": "--gv-menu-link-active--bdw",
394
+ "description": "Border bottom width of active link.",
395
+ "type": "length",
396
+ "default": "0 0 3px 0",
397
+ "value": "0 0 3px 0"
398
+ },
399
+ {
400
+ "name": "--gv-menu-link-active--bgc",
401
+ "description": "Active background color",
402
+ "type": "color",
403
+ "default": "transparent",
404
+ "value": "transparent"
405
+ },
406
+ {
407
+ "name": "--gv-menu-link--bgc",
408
+ "description": "Background color",
409
+ "type": "color",
410
+ "default": "transparent",
411
+ "value": "transparent"
412
+ },
413
+ {
414
+ "name": "--gv-menu-link-a--pv",
415
+ "description": "Link vertical padding",
416
+ "type": "length",
417
+ "default": "0px",
418
+ "value": "0px"
419
+ }
420
+ ]
421
+ },
422
+ {
423
+ "name": "gv-header",
424
+ "css": [
425
+ {
426
+ "name": "--gv-header--bgc",
427
+ "description": "Background color.",
428
+ "type": "color",
429
+ "default": "var(--gv-theme-color-light, #86c3d0)",
430
+ "value": ""
431
+ },
432
+ {
433
+ "name": "--gv-header--c",
434
+ "description": "Color",
435
+ "type": "color",
436
+ "default": "var(--gv-theme-font-color-dark, #262626)",
437
+ "value": ""
438
+ },
439
+ {
440
+ "name": "--gv-header-button--p",
441
+ "description": "Button adding",
442
+ "type": "length",
443
+ "default": "10px 24px",
444
+ "value": "10px 24px"
445
+ },
446
+ {
447
+ "name": "--gv-header-button--fz",
448
+ "description": "Button font size",
449
+ "type": "length",
450
+ "default": "var(--gv-theme-font-size-l, 16px)",
451
+ "value": ""
452
+ }
453
+ ]
454
+ },
455
+ {
456
+ "name": "gv-tree",
457
+ "css": [
458
+ {
459
+ "name": "--gv-tree--bgc",
460
+ "description": "Background color",
461
+ "type": "color",
462
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
463
+ "value": ""
464
+ },
465
+ {
466
+ "name": "--gv-tree--c",
467
+ "description": "Color",
468
+ "type": "color",
469
+ "default": "var(--gv-theme-font-color-dark, #262626)",
470
+ "value": ""
471
+ },
472
+ {
473
+ "name": "--gv-tree-active--bdc",
474
+ "description": "Active border",
475
+ "type": "color",
476
+ "default": "var(--gv-theme-color, #5a7684)",
477
+ "value": ""
478
+ },
479
+ {
480
+ "name": "--gv-tree-active--bgc",
481
+ "description": "Active background color",
482
+ "type": "color",
483
+ "default": "var(--gv-theme-neutral-color-dark, #d9d9d9)",
484
+ "value": ""
485
+ },
486
+ {
487
+ "name": "--gv-tree-icon--s",
488
+ "description": "Height and icon width",
489
+ "type": "length",
490
+ "default": "20px",
491
+ "value": "20px"
492
+ }
493
+ ]
494
+ },
495
+ {
496
+ "name": "gv-table",
497
+ "css": [
498
+ {
499
+ "name": "--gv-table-selected--bgc",
500
+ "description": "Selected background color",
501
+ "type": "color",
502
+ "default": "var(--gv-theme-color, #5a7684)",
503
+ "value": ""
504
+ },
505
+ {
506
+ "name": "--gv-table-hover--bgc",
507
+ "description": "Row background color on hover",
508
+ "type": "color",
509
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
510
+ "value": ""
511
+ },
512
+ {
513
+ "name": "--gv-table--bgc",
514
+ "description": "Background color",
515
+ "type": "color",
516
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
517
+ "value": ""
518
+ },
519
+ {
520
+ "name": "--gv-table--bdc",
521
+ "description": "Border color",
522
+ "type": "color",
523
+ "default": "var(--gv-theme-neutral-color-dark, #d9d9d9)",
524
+ "value": ""
525
+ },
526
+ {
527
+ "name": "--gv-table-header--fz",
528
+ "description": "Title font size",
529
+ "type": "string",
530
+ "default": "var(--gv-theme-font-size-l, 20px)",
531
+ "value": ""
532
+ },
533
+ {
534
+ "name": "--gv-table-header--p",
535
+ "description": "Title padding",
536
+ "type": "length",
537
+ "default": "2rem 4rem",
538
+ "value": "2rem 4rem"
539
+ },
540
+ {
541
+ "name": "--gv-table-rows--ov",
542
+ "description": "Overflow on table",
543
+ "type": "string",
544
+ "default": "auto",
545
+ "value": "auto"
546
+ },
547
+ {
548
+ "name": "--gv-table--colmg",
549
+ "description": "Column gap",
550
+ "type": "length",
551
+ "default": "0.2rem",
552
+ "value": "0.2rem"
553
+ },
554
+ {
555
+ "name": "--gv-table-row--ai",
556
+ "description": "Row align-items",
557
+ "type": "string",
558
+ "default": "center",
559
+ "value": "center"
560
+ },
561
+ {
562
+ "name": "--gv-table-row--ac",
563
+ "description": "Row align-content",
564
+ "type": "string",
565
+ "default": "center",
566
+ "value": "center"
567
+ },
568
+ {
569
+ "name": "--gv-table-cell--d",
570
+ "description": "Cell display",
571
+ "type": "string",
572
+ "default": "flex",
573
+ "value": "flex"
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "name": "gv-stepper",
579
+ "css": [
580
+ {
581
+ "name": "--gv-stepper-valid--bgc",
582
+ "description": "Valid background color",
583
+ "type": "color",
584
+ "default": "var(--gv-theme-color, #5a7684)",
585
+ "value": ""
586
+ },
587
+ {
588
+ "name": "--gv-stepper-passed--bdc",
589
+ "description": "Passed border color",
590
+ "type": "color",
591
+ "default": "var(--gv-theme-color-light, #86c3d0)",
592
+ "value": ""
593
+ },
594
+ {
595
+ "name": "--gv-stepper--bgc",
596
+ "description": "Background color",
597
+ "type": "color",
598
+ "default": "var(--gv-theme-neutral-color-dark, #bfbfbf)",
599
+ "value": ""
600
+ },
601
+ {
602
+ "name": "--gv-stepper--bdc",
603
+ "description": "Border color",
604
+ "type": "color",
605
+ "default": "var(--gv-theme-neutral-color-dark, #bfbfbf)",
606
+ "value": ""
607
+ },
608
+ {
609
+ "name": "--gv-stepper--c",
610
+ "description": "Color",
611
+ "type": "color",
612
+ "default": "var(--gv-theme-neutral-color-dark, #bfbfbf)",
613
+ "value": ""
614
+ },
615
+ {
616
+ "name": "--gv-stepper-passed--c",
617
+ "description": "Passed color",
618
+ "type": "color",
619
+ "default": "#595959",
620
+ "value": "#595959"
621
+ },
622
+ {
623
+ "name": "--gv-stepper-icon--s",
624
+ "description": "Height and icon width",
625
+ "type": "length",
626
+ "default": "32px",
627
+ "value": "32px"
628
+ }
629
+ ]
630
+ },
631
+ {
632
+ "name": "gv-row",
633
+ "css": [
634
+ {
635
+ "name": "--gv-row-hover--bgc",
636
+ "description": "Hoover background color",
637
+ "type": "color",
638
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
639
+ "value": ""
640
+ },
641
+ {
642
+ "name": "--gv-row-hover--trf-ty",
643
+ "description": "Hoover transform translateY",
644
+ "type": "length",
645
+ "default": "0px",
646
+ "value": "0px"
647
+ },
648
+ {
649
+ "name": "--gv-row-image--h",
650
+ "description": "Image height",
651
+ "type": "length",
652
+ "default": "35px",
653
+ "value": "35px"
654
+ },
655
+ {
656
+ "name": "--gv-row-image--w",
657
+ "description": "Image width",
658
+ "type": "length",
659
+ "default": "35px",
660
+ "value": "35px"
661
+ }
662
+ ]
663
+ },
664
+ {
665
+ "name": "gv-rating",
666
+ "css": [
667
+ {
668
+ "name": "--gv-rating--c",
669
+ "description": "Color",
670
+ "type": "color",
671
+ "default": "var(--gv-theme-color, #5a7684)",
672
+ "value": ""
673
+ },
674
+ {
675
+ "name": "--gv-rating--s",
676
+ "description": "Size",
677
+ "type": "length",
678
+ "default": "13px",
679
+ "value": "13px"
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "name": "gv-rating-list",
685
+ "css": [
686
+ {
687
+ "name": "--gv-rating-list--bgc",
688
+ "description": "Background color",
689
+ "type": "color",
690
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
691
+ "value": ""
692
+ },
693
+ {
694
+ "name": "--gv-rating-list-answer--bgc",
695
+ "description": "Answer background color",
696
+ "type": "color",
697
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
698
+ "value": ""
699
+ },
700
+ {
701
+ "name": "--gv-rating-list--bdc",
702
+ "description": "Border color",
703
+ "type": "color",
704
+ "default": "var(--gv-theme-neutral-color, #f5f5f5)",
705
+ "value": ""
706
+ },
707
+ {
708
+ "name": "--gv-rating-list--s",
709
+ "description": "Height and star width",
710
+ "type": "length",
711
+ "default": "18px",
712
+ "value": "18px"
713
+ }
714
+ ]
715
+ },
716
+ {
717
+ "name": "gv-promote",
718
+ "css": [
719
+ {
720
+ "name": "--gv-promote-image--bgc",
721
+ "description": "Image background color",
722
+ "type": "color",
723
+ "default": "var(--gv-theme-color-light, #86c3d0)",
724
+ "value": ""
725
+ },
726
+ {
727
+ "name": "--gv-promote--bgc",
728
+ "description": "Background color",
729
+ "type": "color",
730
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
731
+ "value": ""
732
+ },
733
+ {
734
+ "name": "--gv-promote-image--h",
735
+ "description": "Image height",
736
+ "type": "length",
737
+ "default": "300px",
738
+ "value": "300px"
739
+ },
740
+ {
741
+ "name": "--gv-promote-image--w",
742
+ "description": "Image width",
743
+ "type": "length",
744
+ "default": "300px",
745
+ "value": "300px"
746
+ },
747
+ {
748
+ "name": "--gv-promote-button--p",
749
+ "description": "Button padding",
750
+ "type": "length",
751
+ "default": "19px 80px",
752
+ "value": "19px 80px"
753
+ },
754
+ {
755
+ "name": "--gv-promote-button--fz",
756
+ "description": "Button font size",
757
+ "type": "length",
758
+ "default": "var(--gv-theme-font-size-l, 16px)",
759
+ "value": ""
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "name": "gv-popover",
765
+ "css": [
766
+ {
767
+ "name": "--gv-popover--bgc",
768
+ "description": "Background color",
769
+ "type": "color",
770
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
771
+ "value": ""
772
+ },
773
+ {
774
+ "name": "--gv-popover--c",
775
+ "description": "Color",
776
+ "type": "color",
777
+ "default": "var(--gv-theme-font-color-dark, #262626)",
778
+ "value": ""
779
+ },
780
+ {
781
+ "name": "--gv-popover--bdc",
782
+ "description": "Border color",
783
+ "type": "color",
784
+ "default": "var(--gv-theme-neutral-color, #f5f5f5)",
785
+ "value": ""
786
+ },
787
+ {
788
+ "name": "--gv-popover--p",
789
+ "description": "Padding",
790
+ "type": "length",
791
+ "default": "0.5rem",
792
+ "value": "0.5rem"
793
+ }
794
+ ]
795
+ },
796
+ {
797
+ "name": "gv-plans",
798
+ "css": [
799
+ {
800
+ "name": "--gv-plans--bgc",
801
+ "description": "Background color",
802
+ "type": "color",
803
+ "default": "var(--gv-theme-color, #5a7684)",
804
+ "value": ""
805
+ },
806
+ {
807
+ "name": "--gv-plans-font--c",
808
+ "description": "Font color",
809
+ "type": "color",
810
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
811
+ "value": ""
812
+ },
813
+ {
814
+ "name": "--gv-plans-characteristic--bgc",
815
+ "description": "Characteristic background color",
816
+ "type": "color",
817
+ "default": "var(--gv-theme-color-light, #86c3d0)",
818
+ "value": ""
819
+ },
820
+ {
821
+ "name": "--gv-plans-characteristics--bdc",
822
+ "description": "Characteristics border color",
823
+ "type": "color",
824
+ "default": "var(--gv-theme-neutral-color, #f5f5f5)",
825
+ "value": ""
826
+ },
827
+ {
828
+ "name": "--gv-plans-icon--s",
829
+ "description": "Height and icon width",
830
+ "type": "length",
831
+ "default": "24px",
832
+ "value": "24px"
833
+ }
834
+ ]
835
+ },
836
+ {
837
+ "name": "gv-option",
838
+ "css": [
839
+ {
840
+ "name": "--gv-option--bgc",
841
+ "description": "Background color",
842
+ "type": "color",
843
+ "default": "var(--gv-theme-neutral-color-dark, #bfbfbf)",
844
+ "value": ""
845
+ },
846
+ {
847
+ "name": "--gv-option--bdrs",
848
+ "description": "Border radius",
849
+ "type": "length",
850
+ "default": "0.15rem",
851
+ "value": "0.15rem"
852
+ },
853
+ {
854
+ "name": "--gv-option-button--maw",
855
+ "description": "Button max width",
856
+ "type": "length",
857
+ "default": "200px",
858
+ "value": "200px"
859
+ },
860
+ {
861
+ "name": "--gv-option-icon--s",
862
+ "description": "Icon size",
863
+ "type": "length",
864
+ "default": "64px",
865
+ "value": "64px"
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "name": "gv-list",
871
+ "css": [
872
+ {
873
+ "name": "--gv-list--bgc",
874
+ "description": "Background color",
875
+ "type": "color",
876
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
877
+ "value": ""
878
+ },
879
+ {
880
+ "name": "--gv-list-icon--s",
881
+ "description": "Height and icon width",
882
+ "type": "length",
883
+ "default": "20px",
884
+ "value": "20px"
885
+ },
886
+ {
887
+ "name": "--gv-list-image--h",
888
+ "description": "Image height",
889
+ "type": "length",
890
+ "default": "40px",
891
+ "value": "40px"
892
+ },
893
+ {
894
+ "name": "--gv-list-image--w",
895
+ "description": "Image width",
896
+ "type": "length",
897
+ "default": "40px",
898
+ "value": "40px"
899
+ }
900
+ ]
901
+ },
902
+ {
903
+ "name": "gv-identity-picture",
904
+ "css": [
905
+ {
906
+ "name": "--gv-identity-picture-notification--bgc",
907
+ "description": "Notification background color",
908
+ "type": "color",
909
+ "default": "var(--gv-theme-color-light, #86c3d0)",
910
+ "value": ""
911
+ }
912
+ ]
913
+ },
914
+ {
915
+ "name": "gv-confirm",
916
+ "css": [
917
+ {
918
+ "name": "--gv-confirm--bgc",
919
+ "description": "Background color",
920
+ "type": "color",
921
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
922
+ "value": ""
923
+ },
924
+ {
925
+ "name": "--gv-confirm--maw",
926
+ "description": "Max width",
927
+ "type": "length",
928
+ "default": "350px",
929
+ "value": "350px"
930
+ }
931
+ ]
932
+ },
933
+ {
934
+ "name": "gv-category",
935
+ "css": [
936
+ {
937
+ "name": "--gv-category--bgc",
938
+ "description": "Background color",
939
+ "type": "color",
940
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
941
+ "value": ""
942
+ },
943
+ {
944
+ "name": "--gv-category--c",
945
+ "description": "Color",
946
+ "type": "color",
947
+ "default": "var(--gv-theme-font-color-dark, #262626)",
948
+ "value": ""
949
+ },
950
+ {
951
+ "name": "--gv-category--h",
952
+ "description": "Height",
953
+ "type": "length",
954
+ "default": "200px",
955
+ "value": "200px"
956
+ }
957
+ ]
958
+ },
959
+ {
960
+ "name": "gv-category-list",
961
+ "css": [
962
+ {
963
+ "name": "--gv-category-list--bgc-1",
964
+ "description": "Category background color 1",
965
+ "type": "color",
966
+ "default": "#cce6eb",
967
+ "value": "#cce6eb"
968
+ },
969
+ {
970
+ "name": "--gv-category-list--bgc-2",
971
+ "description": "Category background color 2",
972
+ "type": "color",
973
+ "default": "#fcf1a8",
974
+ "value": "#fcf1a8"
975
+ },
976
+ {
977
+ "name": "--gv-category-list--bgc-3",
978
+ "description": "Category background color 3",
979
+ "type": "color",
980
+ "default": "#d9d4f1",
981
+ "value": "#d9d4f1"
982
+ },
983
+ {
984
+ "name": "--gv-category-list--bgc-4",
985
+ "description": "Category background color 4",
986
+ "type": "color",
987
+ "default": "#f9c15e",
988
+ "value": "#f9c15e"
989
+ },
990
+ {
991
+ "name": "--gv-category-list--bgc-5",
992
+ "description": "Category background color 5",
993
+ "type": "color",
994
+ "default": "#d4fccd",
995
+ "value": "#d4fccd"
996
+ },
997
+ {
998
+ "name": "--gv-category-list--bgc-6",
999
+ "description": "Category background color 6",
1000
+ "type": "color",
1001
+ "default": "#e0c8b2",
1002
+ "value": "#e0c8b2"
1003
+ }
1004
+ ]
1005
+ },
1006
+ {
1007
+ "name": "gv-card",
1008
+ "css": [
1009
+ {
1010
+ "name": "--gv-card--bgc",
1011
+ "description": "Background color",
1012
+ "type": "color",
1013
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
1014
+ "value": ""
1015
+ }
1016
+ ]
1017
+ },
1018
+ {
1019
+ "name": "gv-card-full",
1020
+ "css": [
1021
+ {
1022
+ "name": "--gv-card-full--bgc",
1023
+ "description": "Background color",
1024
+ "type": "color",
1025
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
1026
+ "value": ""
1027
+ },
1028
+ {
1029
+ "name": "--gv-card-full-image--h",
1030
+ "description": "Image height",
1031
+ "type": "length",
1032
+ "default": "65px",
1033
+ "value": "65px"
1034
+ },
1035
+ {
1036
+ "name": "--gv-card-full-image--w",
1037
+ "description": "Image width",
1038
+ "type": "length",
1039
+ "default": "110px",
1040
+ "value": "110px"
1041
+ }
1042
+ ]
1043
+ },
1044
+ {
1045
+ "name": "gv-text",
1046
+ "css": [
1047
+ {
1048
+ "name": "--gv-input--bdc",
1049
+ "description": "Border color",
1050
+ "type": "color",
1051
+ "default": "var(--gv-theme-neutral-color-dark, #d9d9d9)",
1052
+ "value": ""
1053
+ },
1054
+ {
1055
+ "name": "--gv-text--fz",
1056
+ "description": "Font size",
1057
+ "type": "length",
1058
+ "default": "var(--gv-theme-font-size-m, 14px)",
1059
+ "value": ""
1060
+ },
1061
+ {
1062
+ "name": "--gv-text--lh",
1063
+ "description": "Line height",
1064
+ "type": "length",
1065
+ "default": "var(--gv-theme-font-size-m, 14px)",
1066
+ "value": ""
1067
+ }
1068
+ ]
1069
+ },
1070
+ {
1071
+ "name": "gv-tag",
1072
+ "css": [
1073
+ {
1074
+ "name": "--gv-tag--fz",
1075
+ "description": "Font size",
1076
+ "type": "length",
1077
+ "default": "var(--gv-theme-font-size-s, 12px)",
1078
+ "value": ""
1079
+ },
1080
+ {
1081
+ "name": "--gv-tag--p",
1082
+ "description": "Padding",
1083
+ "type": "length",
1084
+ "default": "4px 8px",
1085
+ "value": "4px 8px"
1086
+ },
1087
+ {
1088
+ "name": "--gv-tag--bdr",
1089
+ "description": "Border radius",
1090
+ "type": "length",
1091
+ "default": "4px",
1092
+ "value": "4px"
1093
+ },
1094
+ {
1095
+ "name": "--gv-tag--bsw",
1096
+ "description": "Box shadow",
1097
+ "type": "string",
1098
+ "default": "none",
1099
+ "value": "none"
1100
+ },
1101
+ {
1102
+ "name": "--gv-tag--bgc",
1103
+ "description": "Background color",
1104
+ "type": "color",
1105
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
1106
+ "value": ""
1107
+ },
1108
+ {
1109
+ "name": "--gv-tag-major--bgc",
1110
+ "description": "Major background color",
1111
+ "type": "color",
1112
+ "default": "var(--gv-theme-color, #5a7684)",
1113
+ "value": ""
1114
+ },
1115
+ {
1116
+ "name": "--gv-tag-minor--bgc",
1117
+ "description": "Minor background color",
1118
+ "type": "color",
1119
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
1120
+ "value": ""
1121
+ },
1122
+ {
1123
+ "name": "--gv-tag--bdc",
1124
+ "description": "Border color",
1125
+ "type": "color",
1126
+ "default": "var(--gv-theme-neutral-color-dark, #d9d9d9)",
1127
+ "value": ""
1128
+ },
1129
+ {
1130
+ "name": "--gv-tag-major--bdc",
1131
+ "description": "Major border color",
1132
+ "type": "color",
1133
+ "default": "var(--gv-theme-color, #5a7684)",
1134
+ "value": ""
1135
+ },
1136
+ {
1137
+ "name": "--gv-tag-minor--bdc",
1138
+ "description": "Minor border color",
1139
+ "type": "color",
1140
+ "default": "var(--gv-theme-neutral-color-dark, #d9d9d9)",
1141
+ "value": ""
1142
+ },
1143
+ {
1144
+ "name": "--gv-tag--bds",
1145
+ "description": "Border style",
1146
+ "type": "string",
1147
+ "default": "solid",
1148
+ "value": "solid"
1149
+ },
1150
+ {
1151
+ "name": "--gv-tag-major--bds",
1152
+ "description": "Major border style",
1153
+ "type": "string",
1154
+ "default": "solid",
1155
+ "value": "solid"
1156
+ },
1157
+ {
1158
+ "name": "--gv-tag-minor--bds",
1159
+ "description": "Minor border style",
1160
+ "type": "string",
1161
+ "default": "dashed",
1162
+ "value": "dashed"
1163
+ },
1164
+ {
1165
+ "name": "--gv-tag--bdw",
1166
+ "description": "Border width",
1167
+ "type": "length",
1168
+ "default": "1px",
1169
+ "value": "1px"
1170
+ },
1171
+ {
1172
+ "name": "--gv-tag-major--bdw",
1173
+ "description": "Major border width",
1174
+ "type": "length",
1175
+ "default": "1px",
1176
+ "value": "1px"
1177
+ },
1178
+ {
1179
+ "name": "--gv-tag-minor--bdw",
1180
+ "description": "Minor border width",
1181
+ "type": "length",
1182
+ "default": "1px",
1183
+ "value": "1px"
1184
+ },
1185
+ {
1186
+ "name": "--gv-tag--c",
1187
+ "description": "Color",
1188
+ "type": "color",
1189
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1190
+ "value": ""
1191
+ },
1192
+ {
1193
+ "name": "--gv-tag-major--c",
1194
+ "description": "Major color",
1195
+ "type": "color",
1196
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1197
+ "value": ""
1198
+ },
1199
+ {
1200
+ "name": "--gv-tag-minor--c",
1201
+ "description": "Minor color",
1202
+ "type": "color",
1203
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1204
+ "value": ""
1205
+ },
1206
+ {
1207
+ "name": "--gv-tag-icon--s",
1208
+ "description": "Height and icon width",
1209
+ "type": "length",
1210
+ "default": "18px",
1211
+ "value": "18px"
1212
+ }
1213
+ ]
1214
+ },
1215
+ {
1216
+ "name": "gv-switch",
1217
+ "css": [
1218
+ {
1219
+ "name": "--gv-switch-on--bgc",
1220
+ "description": "On background color",
1221
+ "type": "color",
1222
+ "default": "var(--gv-theme-color, #5a7684)",
1223
+ "value": ""
1224
+ },
1225
+ {
1226
+ "name": "--gv-switch-off--bgc",
1227
+ "description": "Off background color",
1228
+ "type": "color",
1229
+ "default": "var(--gv-theme-neutral-color-dark, #bfbfbf)",
1230
+ "value": ""
1231
+ },
1232
+ {
1233
+ "name": "--gv-switch--bgc",
1234
+ "description": "Switch background color",
1235
+ "type": "color",
1236
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
1237
+ "value": ""
1238
+ },
1239
+ {
1240
+ "name": "--gv-switch--ta",
1241
+ "description": "Switch label text alignment",
1242
+ "type": "string",
1243
+ "default": "left",
1244
+ "value": "left"
1245
+ }
1246
+ ]
1247
+ },
1248
+ {
1249
+ "name": "gv-state",
1250
+ "css": [
1251
+ {
1252
+ "name": "--gv-state--bdr",
1253
+ "description": "Border radius",
1254
+ "type": "length",
1255
+ "default": "17px",
1256
+ "value": "17px"
1257
+ },
1258
+ {
1259
+ "name": "--gv-state--fz",
1260
+ "description": "Font size",
1261
+ "type": "length",
1262
+ "default": "var(--gv-theme-font-size-s, 12px)",
1263
+ "value": ""
1264
+ },
1265
+ {
1266
+ "name": "--gv-state--fw",
1267
+ "description": "Font weight",
1268
+ "type": "string",
1269
+ "default": "bold",
1270
+ "value": "bold"
1271
+ },
1272
+ {
1273
+ "name": "--gv-state--tt",
1274
+ "description": "Text transform",
1275
+ "type": "string",
1276
+ "default": "uppercase",
1277
+ "value": "uppercase"
1278
+ },
1279
+ {
1280
+ "name": "--gv-state--p",
1281
+ "description": "Padding",
1282
+ "type": "length",
1283
+ "default": "4px 8px",
1284
+ "value": "4px 8px"
1285
+ },
1286
+ {
1287
+ "name": "--gv-state--bgc",
1288
+ "description": "Background color",
1289
+ "type": "color",
1290
+ "default": "#f0f5ff",
1291
+ "value": "#f0f5ff"
1292
+ },
1293
+ {
1294
+ "name": "--gv-state--c",
1295
+ "description": "Color",
1296
+ "type": "color",
1297
+ "default": "#597ef7",
1298
+ "value": "#597ef7"
1299
+ },
1300
+ {
1301
+ "name": "--gv-state-major--bgc",
1302
+ "description": "Major background color",
1303
+ "type": "color",
1304
+ "default": "var(--gv-theme-color-light, #d5fdcb)",
1305
+ "value": ""
1306
+ },
1307
+ {
1308
+ "name": "--gv-state-major--c",
1309
+ "description": "Major color",
1310
+ "type": "color",
1311
+ "default": "var(--gv-theme-color, #009b5b)",
1312
+ "value": ""
1313
+ }
1314
+ ]
1315
+ },
1316
+ {
1317
+ "name": "gv-select",
1318
+ "css": [
1319
+ {
1320
+ "name": "--gv-select--bgc",
1321
+ "description": "Background color",
1322
+ "type": "color",
1323
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
1324
+ "value": ""
1325
+ },
1326
+ {
1327
+ "name": "--gv-select--list-bgc",
1328
+ "description": "List items background color",
1329
+ "type": "color",
1330
+ "default": "var(--gv-select--bgc, var(--gv-theme-neutral-color-lightest, #ffffff))",
1331
+ "value": ""
1332
+ },
1333
+ {
1334
+ "name": "--gv-select--bdc",
1335
+ "description": "Border color",
1336
+ "type": "color",
1337
+ "default": "var(--gv-theme-neutral-color-dark, #d9d9d9)",
1338
+ "value": ""
1339
+ },
1340
+ {
1341
+ "name": "--gv-select--c",
1342
+ "description": "Color",
1343
+ "type": "color",
1344
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1345
+ "value": ""
1346
+ },
1347
+ {
1348
+ "name": "--gv-select-hover--bgc",
1349
+ "description": "Hover background color",
1350
+ "type": "color",
1351
+ "default": "var(--gv-theme-color-light, #86c3d0)",
1352
+ "value": ""
1353
+ },
1354
+ {
1355
+ "name": "--gv-select-selected--bgc",
1356
+ "description": "Selected background color",
1357
+ "type": "color",
1358
+ "default": "var(--gv-theme-neutral-color-light, #efefef)",
1359
+ "value": ""
1360
+ }
1361
+ ]
1362
+ },
1363
+ {
1364
+ "name": "gv-metric",
1365
+ "css": [
1366
+ {
1367
+ "name": "--gv-metric--c",
1368
+ "description": "Color",
1369
+ "type": "color",
1370
+ "default": "var(--gv-theme-color, #5a7684)",
1371
+ "value": ""
1372
+ },
1373
+ {
1374
+ "name": "--gv-metric-icon--s",
1375
+ "description": "Height and icon width",
1376
+ "type": "length",
1377
+ "default": "24px",
1378
+ "value": "24px"
1379
+ }
1380
+ ]
1381
+ },
1382
+ {
1383
+ "name": "gv-link",
1384
+ "css": [
1385
+ {
1386
+ "name": "--gv-link-a--pv",
1387
+ "description": "Vertical padding for the inner <a> tag",
1388
+ "type": "length",
1389
+ "default": "15px",
1390
+ "value": "15px"
1391
+ },
1392
+ {
1393
+ "name": "--gv-link-a--ph",
1394
+ "description": "Horizontal padding for the inner <a> tag",
1395
+ "type": "length",
1396
+ "default": "15px",
1397
+ "value": "15px"
1398
+ },
1399
+ {
1400
+ "name": "--gv-link--c",
1401
+ "description": "Color",
1402
+ "type": "color",
1403
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1404
+ "value": ""
1405
+ },
1406
+ {
1407
+ "name": "--gv-link-active--c",
1408
+ "description": "Active color",
1409
+ "type": "color",
1410
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1411
+ "value": ""
1412
+ },
1413
+ {
1414
+ "name": "--gv-link--bgc",
1415
+ "description": "Background color",
1416
+ "type": "color",
1417
+ "default": "transparent",
1418
+ "value": "transparent"
1419
+ },
1420
+ {
1421
+ "name": "--gv-link-active--bgc",
1422
+ "description": "Active background color",
1423
+ "type": "color",
1424
+ "default": "var(--gv-theme-color-dark, #28444f)",
1425
+ "value": ""
1426
+ },
1427
+ {
1428
+ "name": "--gv-link-active--bdc",
1429
+ "description": "Active border color",
1430
+ "type": "color",
1431
+ "default": "none",
1432
+ "value": "none"
1433
+ },
1434
+ {
1435
+ "name": "--gv-link-active--bds",
1436
+ "description": "Active border style",
1437
+ "type": "string",
1438
+ "default": "none",
1439
+ "value": "none"
1440
+ },
1441
+ {
1442
+ "name": "--gv-link-active--bdw",
1443
+ "description": "Active border width",
1444
+ "type": "length",
1445
+ "default": "none",
1446
+ "value": "none"
1447
+ },
1448
+ {
1449
+ "name": "--gv-link--ta",
1450
+ "description": "Text align",
1451
+ "type": "string",
1452
+ "default": "center",
1453
+ "value": "center"
1454
+ },
1455
+ {
1456
+ "name": "--gv-link--td",
1457
+ "description": "Text decoration",
1458
+ "type": "string",
1459
+ "default": "none",
1460
+ "value": "none"
1461
+ },
1462
+ {
1463
+ "name": "--gv-link--tsh",
1464
+ "description": "Text shadow",
1465
+ "type": "string",
1466
+ "default": "none",
1467
+ "value": "none"
1468
+ },
1469
+ {
1470
+ "name": "--gv-link-icon--s",
1471
+ "description": "Height and icon width",
1472
+ "type": "length",
1473
+ "default": "24px",
1474
+ "value": "24px"
1475
+ }
1476
+ ]
1477
+ },
1478
+ {
1479
+ "name": "gv-input",
1480
+ "css": [
1481
+ {
1482
+ "name": "--gv-input--bdc",
1483
+ "description": "Border color",
1484
+ "type": "string",
1485
+ "default": "var(--gv-theme-neutral-color, #F5F5F5)",
1486
+ "value": ""
1487
+ },
1488
+ {
1489
+ "name": "--gv-input--bds",
1490
+ "description": "Border style",
1491
+ "type": "color",
1492
+ "default": "solid",
1493
+ "value": "solid"
1494
+ },
1495
+ {
1496
+ "name": "--gv-input-icon--bgc",
1497
+ "description": "Icon background color",
1498
+ "type": "color",
1499
+ "default": "var(--gv-theme-neutral-color, #F5F5F5)",
1500
+ "value": ""
1501
+ }
1502
+ ]
1503
+ },
1504
+ {
1505
+ "name": "gv-image",
1506
+ "css": [
1507
+ {
1508
+ "name": "--gv-image--of",
1509
+ "description": "set the object-fit of image",
1510
+ "type": "string",
1511
+ "default": "cover",
1512
+ "value": "cover"
1513
+ }
1514
+ ]
1515
+ },
1516
+ {
1517
+ "name": "gv-icon",
1518
+ "css": [
1519
+ {
1520
+ "name": "--gv-icon--c",
1521
+ "description": "Color",
1522
+ "type": "color",
1523
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1524
+ "value": ""
1525
+ },
1526
+ {
1527
+ "name": "--gv-icon-opacity--c",
1528
+ "description": "Opacity color",
1529
+ "type": "color",
1530
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1531
+ "value": ""
1532
+ },
1533
+ {
1534
+ "name": "--gv-icon--s",
1535
+ "description": "Height and width",
1536
+ "type": "length",
1537
+ "default": "32px",
1538
+ "value": "32px"
1539
+ }
1540
+ ]
1541
+ },
1542
+ {
1543
+ "name": "gv-date-picker",
1544
+ "css": [
1545
+ {
1546
+ "name": "--gv-date-picker-hover--bgc",
1547
+ "description": "Hover background color",
1548
+ "type": "color",
1549
+ "default": "var(--gv-theme-color-light, #86c3d0)",
1550
+ "value": ""
1551
+ },
1552
+ {
1553
+ "name": "--gv-date-picker-hover--c",
1554
+ "description": "Hover color",
1555
+ "type": "color",
1556
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1557
+ "value": ""
1558
+ },
1559
+ {
1560
+ "name": "--gv-date-picker-selected--bgc",
1561
+ "description": "Selected background color",
1562
+ "type": "color",
1563
+ "default": "var(--gv-theme-color, #5a7684)",
1564
+ "value": ""
1565
+ },
1566
+ {
1567
+ "name": "--gv-date-picker-selected--c",
1568
+ "description": "Selected color",
1569
+ "type": "color",
1570
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1571
+ "value": ""
1572
+ }
1573
+ ]
1574
+ },
1575
+ {
1576
+ "name": "gv-date-picker-cell",
1577
+ "css": [
1578
+ {
1579
+ "name": "--gv-date-picker-hover--bgc",
1580
+ "description": "Hover background color",
1581
+ "type": "color",
1582
+ "default": "var(--gv-theme-color-light, #86c3d0)",
1583
+ "value": ""
1584
+ },
1585
+ {
1586
+ "name": "--gv-date-picker-hover--c",
1587
+ "description": "Hover color",
1588
+ "type": "color",
1589
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1590
+ "value": ""
1591
+ },
1592
+ {
1593
+ "name": "--gv-date-picker-selected--bgc",
1594
+ "description": "Selected background color",
1595
+ "type": "color",
1596
+ "default": "var(--gv-theme-color, #5a7684)",
1597
+ "value": ""
1598
+ },
1599
+ {
1600
+ "name": "--gv-date-picker-selected--c",
1601
+ "description": "Selected color",
1602
+ "type": "color",
1603
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1604
+ "value": ""
1605
+ }
1606
+ ]
1607
+ },
1608
+ {
1609
+ "name": "gv-date-picker-calendar",
1610
+ "css": [
1611
+ {
1612
+ "name": "--gv-date-picker-hover--bgc",
1613
+ "description": "Hover background color",
1614
+ "type": "color",
1615
+ "default": "var(--gv-theme-color-light, #86c3d0)",
1616
+ "value": ""
1617
+ },
1618
+ {
1619
+ "name": "--gv-date-picker-hover--c",
1620
+ "description": "Hover color",
1621
+ "type": "color",
1622
+ "default": "var(--gv-theme-font-color-dark, #262626)",
1623
+ "value": ""
1624
+ },
1625
+ {
1626
+ "name": "--gv-date-picker-selected--bgc",
1627
+ "description": "Selected background color",
1628
+ "type": "color",
1629
+ "default": "var(--gv-theme-color, #5a7684)",
1630
+ "value": ""
1631
+ },
1632
+ {
1633
+ "name": "--gv-date-picker-selected--c",
1634
+ "description": "Selected color",
1635
+ "type": "color",
1636
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1637
+ "value": ""
1638
+ }
1639
+ ]
1640
+ },
1641
+ {
1642
+ "name": "gv-checkbox",
1643
+ "css": [
1644
+ {
1645
+ "name": "--gv-checkbox--bgc",
1646
+ "description": "Checked background color",
1647
+ "type": "color",
1648
+ "default": "var(--gv-theme-color, #5a7684)",
1649
+ "value": ""
1650
+ }
1651
+ ]
1652
+ },
1653
+ {
1654
+ "name": "gv-button",
1655
+ "css": [
1656
+ {
1657
+ "name": "--gv-button--bgc",
1658
+ "description": "Background color",
1659
+ "type": "color",
1660
+ "default": "var(--gv-theme-color-dark, #28444f)",
1661
+ "value": ""
1662
+ },
1663
+ {
1664
+ "name": "--gv-button--c",
1665
+ "description": "Color",
1666
+ "type": "color",
1667
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1668
+ "value": ""
1669
+ },
1670
+ {
1671
+ "name": "--gv-button-primary--c",
1672
+ "description": "Primary color",
1673
+ "type": "color",
1674
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1675
+ "value": ""
1676
+ },
1677
+ {
1678
+ "name": "--gv-button-primary--bgc",
1679
+ "description": "Primary background color",
1680
+ "type": "color",
1681
+ "default": "var(--gv-theme-color, #5a7684)",
1682
+ "value": ""
1683
+ },
1684
+ {
1685
+ "name": "--gv-button-danger--c",
1686
+ "description": "Danger color",
1687
+ "type": "color",
1688
+ "default": "var(--gv-theme-font-color-light, #ffffff)",
1689
+ "value": ""
1690
+ },
1691
+ {
1692
+ "name": "--gv-button-danger--bgc",
1693
+ "description": "Danger background color",
1694
+ "type": "color",
1695
+ "default": "var(--gv-theme-color-danger, #ff5722)",
1696
+ "value": ""
1697
+ },
1698
+ {
1699
+ "name": "--gv-button-oidc--bgc",
1700
+ "description": "OIDC Social Provider button background color",
1701
+ "type": "color",
1702
+ "default": "#000000",
1703
+ "value": "#000000"
1704
+ },
1705
+ {
1706
+ "name": "--gv-button-graviteeio_am--bgc",
1707
+ "description": "Gravitee.io AM Social Provider button background color",
1708
+ "type": "color",
1709
+ "default": "#86c3d0",
1710
+ "value": "#86c3d0"
1711
+ },
1712
+ {
1713
+ "name": "--gv-button--p",
1714
+ "description": "Padding",
1715
+ "type": "length",
1716
+ "default": "7px 14px",
1717
+ "value": "7px 14px"
1718
+ },
1719
+ {
1720
+ "name": "--gv-button--fz",
1721
+ "description": "Font size",
1722
+ "type": "length",
1723
+ "default": "var(--gv-theme-font-size-m, 14px)",
1724
+ "value": ""
1725
+ },
1726
+ {
1727
+ "name": "--gv-button--bdrs",
1728
+ "description": "Border radius",
1729
+ "type": "length",
1730
+ "default": "0.15rem",
1731
+ "value": "0.15rem"
1732
+ }
1733
+ ]
1734
+ },
1735
+ {
1736
+ "name": "gv-autocomplete",
1737
+ "css": [
1738
+ {
1739
+ "name": "--gv-autocomplete-hover--bgc",
1740
+ "description": "Hover background color",
1741
+ "type": "color",
1742
+ "default": "var(--gv-theme-neutral-color-lighter, #fafafa)",
1743
+ "value": ""
1744
+ },
1745
+ {
1746
+ "name": "--gv-autocomplete--bgc",
1747
+ "description": "Background color",
1748
+ "type": "color",
1749
+ "default": "var(--gv-theme-neutral-color-lightest, #ffffff)",
1750
+ "value": ""
1751
+ },
1752
+ {
1753
+ "name": "--gv-autocomplete--c",
1754
+ "description": "Color",
1755
+ "type": "color",
1756
+ "default": "var(--gv-theme-font-color, #262626)",
1757
+ "value": ""
1758
+ }
1759
+ ]
1760
+ }
1761
+ ]
1762
+ }