@soyio/soyio-widget 2.17.0 → 2.19.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.
@@ -0,0 +1,2473 @@
1
+ {
2
+ "$ref": "#/definitions/SoyioWidgetConfig",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "definitions": {
5
+ "CSSProperties": {
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "WebkitAppearance": {
9
+ "type": "string"
10
+ },
11
+ "accentColor": {
12
+ "type": "string"
13
+ },
14
+ "alignItems": {
15
+ "enum": [
16
+ "flex-start",
17
+ "flex-end",
18
+ "center",
19
+ "baseline",
20
+ "stretch"
21
+ ],
22
+ "type": "string"
23
+ },
24
+ "appearance": {
25
+ "type": "string"
26
+ },
27
+ "backgroundColor": {
28
+ "type": "string"
29
+ },
30
+ "border": {
31
+ "type": "string"
32
+ },
33
+ "borderBottom": {
34
+ "type": "string"
35
+ },
36
+ "borderBottomColor": {
37
+ "type": "string"
38
+ },
39
+ "borderBottomLeftRadius": {
40
+ "type": "string"
41
+ },
42
+ "borderBottomRightRadius": {
43
+ "type": "string"
44
+ },
45
+ "borderBottomStyle": {
46
+ "type": "string"
47
+ },
48
+ "borderBottomWidth": {
49
+ "type": "string"
50
+ },
51
+ "borderColor": {
52
+ "type": "string"
53
+ },
54
+ "borderLeft": {
55
+ "type": "string"
56
+ },
57
+ "borderLeftColor": {
58
+ "type": "string"
59
+ },
60
+ "borderLeftStyle": {
61
+ "type": "string"
62
+ },
63
+ "borderLeftWidth": {
64
+ "type": "string"
65
+ },
66
+ "borderRadius": {
67
+ "type": "string"
68
+ },
69
+ "borderRight": {
70
+ "type": "string"
71
+ },
72
+ "borderRightColor": {
73
+ "type": "string"
74
+ },
75
+ "borderRightStyle": {
76
+ "type": "string"
77
+ },
78
+ "borderRightWidth": {
79
+ "type": "string"
80
+ },
81
+ "borderStyle": {
82
+ "type": "string"
83
+ },
84
+ "borderTop": {
85
+ "type": "string"
86
+ },
87
+ "borderTopColor": {
88
+ "type": "string"
89
+ },
90
+ "borderTopLeftRadius": {
91
+ "type": "string"
92
+ },
93
+ "borderTopRightRadius": {
94
+ "type": "string"
95
+ },
96
+ "borderTopStyle": {
97
+ "type": "string"
98
+ },
99
+ "borderTopWidth": {
100
+ "type": "string"
101
+ },
102
+ "borderWidth": {
103
+ "type": "string"
104
+ },
105
+ "bottom": {
106
+ "type": "string"
107
+ },
108
+ "boxShadow": {
109
+ "type": "string"
110
+ },
111
+ "color": {
112
+ "type": "string"
113
+ },
114
+ "cursor": {
115
+ "type": "string"
116
+ },
117
+ "display": {
118
+ "enum": [
119
+ "block",
120
+ "inline",
121
+ "inline-block",
122
+ "flex",
123
+ "inline-flex",
124
+ "grid",
125
+ "inline-grid",
126
+ "none"
127
+ ],
128
+ "type": "string"
129
+ },
130
+ "fill": {
131
+ "type": "string"
132
+ },
133
+ "fillOpacity": {
134
+ "type": "number"
135
+ },
136
+ "flex": {
137
+ "type": "string"
138
+ },
139
+ "flexDirection": {
140
+ "enum": [
141
+ "row",
142
+ "row-reverse",
143
+ "column",
144
+ "column-reverse"
145
+ ],
146
+ "type": "string"
147
+ },
148
+ "flexWrap": {
149
+ "enum": [
150
+ "nowrap",
151
+ "wrap",
152
+ "wrap-reverse"
153
+ ],
154
+ "type": "string"
155
+ },
156
+ "fontFamily": {
157
+ "type": "string"
158
+ },
159
+ "fontSize": {
160
+ "type": "string"
161
+ },
162
+ "fontVariant": {
163
+ "type": "string"
164
+ },
165
+ "fontWeight": {
166
+ "type": [
167
+ "string",
168
+ "number"
169
+ ]
170
+ },
171
+ "gap": {
172
+ "type": "string"
173
+ },
174
+ "height": {
175
+ "type": "string"
176
+ },
177
+ "justifyContent": {
178
+ "enum": [
179
+ "flex-start",
180
+ "flex-end",
181
+ "center",
182
+ "space-between",
183
+ "space-around",
184
+ "space-evenly"
185
+ ],
186
+ "type": "string"
187
+ },
188
+ "left": {
189
+ "type": "string"
190
+ },
191
+ "letterSpacing": {
192
+ "type": "string"
193
+ },
194
+ "lineHeight": {
195
+ "type": [
196
+ "string",
197
+ "number"
198
+ ]
199
+ },
200
+ "margin": {
201
+ "type": "string"
202
+ },
203
+ "marginBottom": {
204
+ "type": "string"
205
+ },
206
+ "marginLeft": {
207
+ "type": "string"
208
+ },
209
+ "marginRight": {
210
+ "type": "string"
211
+ },
212
+ "marginTop": {
213
+ "type": "string"
214
+ },
215
+ "mozOsxFontSmoothing": {
216
+ "enum": [
217
+ "auto",
218
+ "grayscale",
219
+ "unset"
220
+ ],
221
+ "type": "string"
222
+ },
223
+ "opacity": {
224
+ "type": "number"
225
+ },
226
+ "outline": {
227
+ "type": "string"
228
+ },
229
+ "outlineOffset": {
230
+ "type": "string"
231
+ },
232
+ "overflow": {
233
+ "enum": [
234
+ "visible",
235
+ "hidden",
236
+ "scroll",
237
+ "auto"
238
+ ],
239
+ "type": "string"
240
+ },
241
+ "overflowX": {
242
+ "enum": [
243
+ "visible",
244
+ "hidden",
245
+ "scroll",
246
+ "auto"
247
+ ],
248
+ "type": "string"
249
+ },
250
+ "overflowY": {
251
+ "enum": [
252
+ "visible",
253
+ "hidden",
254
+ "scroll",
255
+ "auto"
256
+ ],
257
+ "type": "string"
258
+ },
259
+ "padding": {
260
+ "type": "string"
261
+ },
262
+ "paddingBottom": {
263
+ "type": "string"
264
+ },
265
+ "paddingLeft": {
266
+ "type": "string"
267
+ },
268
+ "paddingRight": {
269
+ "type": "string"
270
+ },
271
+ "paddingTop": {
272
+ "type": "string"
273
+ },
274
+ "position": {
275
+ "enum": [
276
+ "static",
277
+ "relative",
278
+ "absolute",
279
+ "fixed",
280
+ "sticky"
281
+ ],
282
+ "type": "string"
283
+ },
284
+ "right": {
285
+ "type": "string"
286
+ },
287
+ "textAlign": {
288
+ "enum": [
289
+ "left",
290
+ "right",
291
+ "center",
292
+ "justify"
293
+ ],
294
+ "type": "string"
295
+ },
296
+ "textDecoration": {
297
+ "type": "string"
298
+ },
299
+ "textTransform": {
300
+ "enum": [
301
+ "none",
302
+ "capitalize",
303
+ "uppercase",
304
+ "lowercase"
305
+ ],
306
+ "type": "string"
307
+ },
308
+ "top": {
309
+ "type": "string"
310
+ },
311
+ "transform": {
312
+ "type": "string"
313
+ },
314
+ "transformOrigin": {
315
+ "type": "string"
316
+ },
317
+ "transition": {
318
+ "type": "string"
319
+ },
320
+ "transitionDelay": {
321
+ "type": "string"
322
+ },
323
+ "transitionDuration": {
324
+ "type": "string"
325
+ },
326
+ "transitionProperty": {
327
+ "type": "string"
328
+ },
329
+ "transitionTimingFunction": {
330
+ "type": "string"
331
+ },
332
+ "visibility": {
333
+ "enum": [
334
+ "visible",
335
+ "hidden",
336
+ "collapse"
337
+ ],
338
+ "type": "string"
339
+ },
340
+ "webkitFontSmoothing": {
341
+ "enum": [
342
+ "auto",
343
+ "antialiased",
344
+ "subpixel-antialiased"
345
+ ],
346
+ "type": "string"
347
+ },
348
+ "webkitTextFillColor": {
349
+ "type": "string"
350
+ },
351
+ "whiteSpace": {
352
+ "enum": [
353
+ "normal",
354
+ "nowrap",
355
+ "pre",
356
+ "pre-wrap",
357
+ "pre-line"
358
+ ],
359
+ "type": "string"
360
+ },
361
+ "width": {
362
+ "type": "string"
363
+ },
364
+ "wordBreak": {
365
+ "enum": [
366
+ "normal",
367
+ "break-all",
368
+ "keep-all",
369
+ "break-word"
370
+ ],
371
+ "type": "string"
372
+ },
373
+ "zIndex": {
374
+ "type": [
375
+ "number",
376
+ "string"
377
+ ]
378
+ }
379
+ },
380
+ "type": "object"
381
+ },
382
+ "ConsentConfig": {
383
+ "additionalProperties": false,
384
+ "properties": {
385
+ "actionToken": {
386
+ "type": "string"
387
+ },
388
+ "appearance": {
389
+ "$ref": "#/definitions/SoyioAppearance"
390
+ },
391
+ "consentTemplateId": {
392
+ "type": "string"
393
+ },
394
+ "context": {
395
+ "type": "string"
396
+ },
397
+ "developmentUrl": {
398
+ "type": "string"
399
+ },
400
+ "entityId": {
401
+ "type": "string"
402
+ },
403
+ "isSandbox": {
404
+ "type": "boolean"
405
+ },
406
+ "mandatoryReconsentBehavior": {
407
+ "enum": [
408
+ "notice",
409
+ "askAgain"
410
+ ],
411
+ "type": "string"
412
+ },
413
+ "onEvent": {
414
+ "$comment": "(event: Record<string, unknown>) => void",
415
+ "properties": {
416
+ "namedArgs": {
417
+ "additionalProperties": false,
418
+ "properties": {
419
+ "event": {
420
+ "additionalProperties": {},
421
+ "type": "object"
422
+ }
423
+ },
424
+ "required": [
425
+ "event"
426
+ ],
427
+ "type": "object"
428
+ }
429
+ },
430
+ "type": "object"
431
+ },
432
+ "onReady": {
433
+ "$comment": "() => void"
434
+ },
435
+ "optionalReconsentBehavior": {
436
+ "enum": [
437
+ "notice",
438
+ "askAgain",
439
+ "hide"
440
+ ],
441
+ "type": "string"
442
+ }
443
+ },
444
+ "required": [
445
+ "consentTemplateId",
446
+ "onEvent"
447
+ ],
448
+ "type": "object"
449
+ },
450
+ "DataSubject": {
451
+ "enum": [
452
+ "anonymous_user",
453
+ "citizen_voter",
454
+ "commuter",
455
+ "consultant",
456
+ "customer",
457
+ "employee",
458
+ "job_applicant",
459
+ "next_of_kin",
460
+ "passenger",
461
+ "patient",
462
+ "prospect",
463
+ "shareholder",
464
+ "supplier_vendor",
465
+ "trainee",
466
+ "visitor"
467
+ ],
468
+ "type": "string"
469
+ },
470
+ "IconWeight": {
471
+ "enum": [
472
+ "thin",
473
+ "light",
474
+ "regular",
475
+ "bold",
476
+ "fill",
477
+ "duotone"
478
+ ],
479
+ "type": "string"
480
+ },
481
+ "PrivacyCenterConfig": {
482
+ "anyOf": [
483
+ {
484
+ "additionalProperties": false,
485
+ "properties": {
486
+ "appearance": {
487
+ "$ref": "#/definitions/SoyioAppearance"
488
+ },
489
+ "companyId": {
490
+ "type": "string"
491
+ },
492
+ "dataSubjects": {
493
+ "items": {
494
+ "$ref": "#/definitions/DataSubject"
495
+ },
496
+ "type": "array"
497
+ },
498
+ "demo": {
499
+ "type": "boolean"
500
+ },
501
+ "developmentUrl": {
502
+ "type": "string"
503
+ },
504
+ "enabledFeatures": {
505
+ "items": {
506
+ "$ref": "#/definitions/PrivacyManagerFeature"
507
+ },
508
+ "type": "array"
509
+ },
510
+ "enabledRights": {
511
+ "items": {
512
+ "$ref": "#/definitions/PrivacyCenterRight"
513
+ },
514
+ "type": "array"
515
+ },
516
+ "fileRequisites": {
517
+ "additionalProperties": false,
518
+ "properties": {
519
+ "allowedExtensions": {
520
+ "items": {
521
+ "type": "string"
522
+ },
523
+ "type": "array"
524
+ },
525
+ "maxFileSize": {
526
+ "type": "number"
527
+ }
528
+ },
529
+ "type": "object"
530
+ },
531
+ "isSandbox": {
532
+ "type": "boolean"
533
+ },
534
+ "onEvent": {
535
+ "$comment": "(event: Record<string, unknown>) => void",
536
+ "properties": {
537
+ "namedArgs": {
538
+ "additionalProperties": false,
539
+ "properties": {
540
+ "event": {
541
+ "additionalProperties": {},
542
+ "type": "object"
543
+ }
544
+ },
545
+ "required": [
546
+ "event"
547
+ ],
548
+ "type": "object"
549
+ }
550
+ },
551
+ "type": "object"
552
+ },
553
+ "onReady": {
554
+ "$comment": "() => void"
555
+ },
556
+ "requestReference": {
557
+ "type": "string"
558
+ }
559
+ },
560
+ "required": [
561
+ "companyId",
562
+ "onEvent"
563
+ ],
564
+ "type": "object"
565
+ },
566
+ {
567
+ "additionalProperties": false,
568
+ "properties": {
569
+ "appearance": {
570
+ "$ref": "#/definitions/SoyioAppearance"
571
+ },
572
+ "dataSubjects": {
573
+ "items": {
574
+ "$ref": "#/definitions/DataSubject"
575
+ },
576
+ "type": "array"
577
+ },
578
+ "demo": {
579
+ "type": "boolean"
580
+ },
581
+ "developmentUrl": {
582
+ "type": "string"
583
+ },
584
+ "enabledFeatures": {
585
+ "items": {
586
+ "$ref": "#/definitions/PrivacyManagerFeature"
587
+ },
588
+ "type": "array"
589
+ },
590
+ "enabledRights": {
591
+ "items": {
592
+ "$ref": "#/definitions/PrivacyCenterRight"
593
+ },
594
+ "type": "array"
595
+ },
596
+ "fileRequisites": {
597
+ "additionalProperties": false,
598
+ "properties": {
599
+ "allowedExtensions": {
600
+ "items": {
601
+ "type": "string"
602
+ },
603
+ "type": "array"
604
+ },
605
+ "maxFileSize": {
606
+ "type": "number"
607
+ }
608
+ },
609
+ "type": "object"
610
+ },
611
+ "isSandbox": {
612
+ "type": "boolean"
613
+ },
614
+ "onEvent": {
615
+ "$comment": "(event: Record<string, unknown>) => void",
616
+ "properties": {
617
+ "namedArgs": {
618
+ "additionalProperties": false,
619
+ "properties": {
620
+ "event": {
621
+ "additionalProperties": {},
622
+ "type": "object"
623
+ }
624
+ },
625
+ "required": [
626
+ "event"
627
+ ],
628
+ "type": "object"
629
+ }
630
+ },
631
+ "type": "object"
632
+ },
633
+ "onReady": {
634
+ "$comment": "() => void"
635
+ },
636
+ "requestReference": {
637
+ "type": "string"
638
+ },
639
+ "sessionToken": {
640
+ "type": "string"
641
+ }
642
+ },
643
+ "required": [
644
+ "onEvent",
645
+ "sessionToken"
646
+ ],
647
+ "type": "object"
648
+ }
649
+ ]
650
+ },
651
+ "PrivacyCenterRight": {
652
+ "enum": [
653
+ "arsop",
654
+ "redec"
655
+ ],
656
+ "type": "string"
657
+ },
658
+ "PrivacyManagerFeature": {
659
+ "enum": [
660
+ "DataSubjectRequest",
661
+ "ConsentManagement",
662
+ "RequestTracking"
663
+ ],
664
+ "type": "string"
665
+ },
666
+ "SoyioAppearance": {
667
+ "additionalProperties": false,
668
+ "properties": {
669
+ "config": {
670
+ "$ref": "#/definitions/SoyioAppearanceConfig"
671
+ },
672
+ "rules": {
673
+ "$ref": "#/definitions/SoyioRule"
674
+ },
675
+ "theme": {
676
+ "$ref": "#/definitions/SoyioTheme"
677
+ },
678
+ "variables": {
679
+ "$ref": "#/definitions/SoyioAppearanceVariables"
680
+ }
681
+ },
682
+ "type": "object"
683
+ },
684
+ "SoyioAppearanceConfig": {
685
+ "additionalProperties": false,
686
+ "properties": {
687
+ "brandTheme": {
688
+ "default": "default",
689
+ "description": "Theme variant for branded elements like the footer.\n- 'default': Standard Soyio brand colors (purple/indigo)\n- 'dark': Dark mode with gray tones\n- 'light': Mono color light version",
690
+ "enum": [
691
+ "default",
692
+ "dark",
693
+ "light"
694
+ ],
695
+ "type": "string"
696
+ },
697
+ "helperTextPosition": {
698
+ "enum": [
699
+ "top",
700
+ "bottom"
701
+ ],
702
+ "type": "string"
703
+ },
704
+ "hintIcon": {
705
+ "default": "Question",
706
+ "description": "Icon name to use for hint/help tooltips on input labels. Available icons: 'Question' (default), 'Info', 'QuestionMark', etc.",
707
+ "type": "string"
708
+ },
709
+ "icon": {
710
+ "$ref": "#/definitions/SoyioIconConfig",
711
+ "description": "Global icon appearance configuration. Controls default weight and size for all icons."
712
+ },
713
+ "iconRules": {
714
+ "additionalProperties": {
715
+ "$ref": "#/definitions/SoyioIconConfig"
716
+ },
717
+ "description": "Per-component icon overrides. Allows customizing icon styles for specific components.",
718
+ "type": "object"
719
+ },
720
+ "mainPageColumns": {
721
+ "default": 2,
722
+ "description": "Number of columns in the main page feature cards grid.",
723
+ "enum": [
724
+ 1,
725
+ 2,
726
+ 3,
727
+ 4
728
+ ],
729
+ "type": "number"
730
+ }
731
+ },
732
+ "type": "object"
733
+ },
734
+ "SoyioAppearanceVariables": {
735
+ "additionalProperties": false,
736
+ "properties": {
737
+ "borderRadius": {
738
+ "type": "string"
739
+ },
740
+ "borderStyle": {
741
+ "type": "string"
742
+ },
743
+ "borderWidth": {
744
+ "type": "string"
745
+ },
746
+ "colorBackground": {
747
+ "type": "string"
748
+ },
749
+ "colorBorder": {
750
+ "type": "string"
751
+ },
752
+ "colorBorderMuted": {
753
+ "type": "string"
754
+ },
755
+ "colorDanger": {
756
+ "type": "string"
757
+ },
758
+ "colorDangerBg": {
759
+ "type": "string"
760
+ },
761
+ "colorInfo": {
762
+ "type": "string"
763
+ },
764
+ "colorInfoBg": {
765
+ "type": "string"
766
+ },
767
+ "colorInputErrorFocus": {
768
+ "type": "string"
769
+ },
770
+ "colorInputFocus": {
771
+ "type": "string"
772
+ },
773
+ "colorLink": {
774
+ "type": "string"
775
+ },
776
+ "colorOverlay": {
777
+ "type": "string"
778
+ },
779
+ "colorPrimary": {
780
+ "type": "string"
781
+ },
782
+ "colorPrimarySurface": {
783
+ "type": "string"
784
+ },
785
+ "colorSecondary": {
786
+ "type": "string"
787
+ },
788
+ "colorSelectArrow": {
789
+ "type": "string"
790
+ },
791
+ "colorSuccess": {
792
+ "type": "string"
793
+ },
794
+ "colorSuccessBg": {
795
+ "type": "string"
796
+ },
797
+ "colorSurface": {
798
+ "type": "string"
799
+ },
800
+ "colorSurfaceMuted": {
801
+ "type": "string"
802
+ },
803
+ "colorSurfaceStrong": {
804
+ "type": "string"
805
+ },
806
+ "colorSwitchBorder": {
807
+ "type": "string"
808
+ },
809
+ "colorText": {
810
+ "type": "string"
811
+ },
812
+ "colorTextInverted": {
813
+ "type": "string"
814
+ },
815
+ "colorTextSecondary": {
816
+ "type": "string"
817
+ },
818
+ "colorTextSubtle": {
819
+ "type": "string"
820
+ },
821
+ "colorTextTitle": {
822
+ "type": "string"
823
+ },
824
+ "colorWarning": {
825
+ "type": "string"
826
+ },
827
+ "colorWarningBg": {
828
+ "type": "string"
829
+ },
830
+ "dataUseIconColor": {
831
+ "type": "string"
832
+ },
833
+ "fontFamily": {
834
+ "type": "string"
835
+ },
836
+ "fontFamilyBody": {
837
+ "type": "string"
838
+ },
839
+ "fontFamilyTitle": {
840
+ "type": "string"
841
+ },
842
+ "fontSizeBase": {
843
+ "type": "string"
844
+ }
845
+ },
846
+ "type": "object"
847
+ },
848
+ "SoyioIconConfig": {
849
+ "additionalProperties": false,
850
+ "properties": {
851
+ "dataUseVariant": {
852
+ "description": "Override variant for data use icons in consent management. If not set, uses the company's configured iconVariant.",
853
+ "enum": [
854
+ "duotone",
855
+ "outline",
856
+ "solid"
857
+ ],
858
+ "type": "string"
859
+ },
860
+ "size": {
861
+ "default": 24,
862
+ "description": "Default icon size in pixels.",
863
+ "type": "number"
864
+ },
865
+ "weight": {
866
+ "$ref": "#/definitions/IconWeight",
867
+ "default": "regular",
868
+ "description": "Icon weight/style variant.\n- thin: Thinnest stroke\n- light: Light stroke\n- regular: Default stroke (default)\n- bold: Bold stroke\n- fill: Filled/solid icons\n- duotone: Two-tone icons with opacity"
869
+ }
870
+ },
871
+ "type": "object"
872
+ },
873
+ "SoyioRule": {
874
+ "additionalProperties": {
875
+ "$ref": "#/definitions/CSSProperties"
876
+ },
877
+ "properties": {
878
+ ".Alert": {
879
+ "$ref": "#/definitions/CSSProperties"
880
+ },
881
+ ".Alert--checked": {
882
+ "$ref": "#/definitions/CSSProperties"
883
+ },
884
+ ".Alert--error": {
885
+ "$ref": "#/definitions/CSSProperties"
886
+ },
887
+ ".Alert--info": {
888
+ "$ref": "#/definitions/CSSProperties"
889
+ },
890
+ ".Alert--success": {
891
+ "$ref": "#/definitions/CSSProperties"
892
+ },
893
+ ".Alert--warning": {
894
+ "$ref": "#/definitions/CSSProperties"
895
+ },
896
+ ".Alert::placeholder": {
897
+ "$ref": "#/definitions/CSSProperties"
898
+ },
899
+ ".Alert::selection": {
900
+ "$ref": "#/definitions/CSSProperties"
901
+ },
902
+ ".Alert:active": {
903
+ "$ref": "#/definitions/CSSProperties"
904
+ },
905
+ ".Alert:autofill": {
906
+ "$ref": "#/definitions/CSSProperties"
907
+ },
908
+ ".Alert:disabled": {
909
+ "$ref": "#/definitions/CSSProperties"
910
+ },
911
+ ".Alert:focus": {
912
+ "$ref": "#/definitions/CSSProperties"
913
+ },
914
+ ".Alert:focus-visible": {
915
+ "$ref": "#/definitions/CSSProperties"
916
+ },
917
+ ".Alert:hover": {
918
+ "$ref": "#/definitions/CSSProperties"
919
+ },
920
+ ".AlertContent": {
921
+ "$ref": "#/definitions/CSSProperties"
922
+ },
923
+ ".AlertContent--checked": {
924
+ "$ref": "#/definitions/CSSProperties"
925
+ },
926
+ ".AlertContent::placeholder": {
927
+ "$ref": "#/definitions/CSSProperties"
928
+ },
929
+ ".AlertContent::selection": {
930
+ "$ref": "#/definitions/CSSProperties"
931
+ },
932
+ ".AlertContent:active": {
933
+ "$ref": "#/definitions/CSSProperties"
934
+ },
935
+ ".AlertContent:autofill": {
936
+ "$ref": "#/definitions/CSSProperties"
937
+ },
938
+ ".AlertContent:disabled": {
939
+ "$ref": "#/definitions/CSSProperties"
940
+ },
941
+ ".AlertContent:focus": {
942
+ "$ref": "#/definitions/CSSProperties"
943
+ },
944
+ ".AlertContent:focus-visible": {
945
+ "$ref": "#/definitions/CSSProperties"
946
+ },
947
+ ".AlertContent:hover": {
948
+ "$ref": "#/definitions/CSSProperties"
949
+ },
950
+ ".AlertIcon": {
951
+ "$ref": "#/definitions/CSSProperties"
952
+ },
953
+ ".AlertIcon--checked": {
954
+ "$ref": "#/definitions/CSSProperties"
955
+ },
956
+ ".AlertIcon::placeholder": {
957
+ "$ref": "#/definitions/CSSProperties"
958
+ },
959
+ ".AlertIcon::selection": {
960
+ "$ref": "#/definitions/CSSProperties"
961
+ },
962
+ ".AlertIcon:active": {
963
+ "$ref": "#/definitions/CSSProperties"
964
+ },
965
+ ".AlertIcon:autofill": {
966
+ "$ref": "#/definitions/CSSProperties"
967
+ },
968
+ ".AlertIcon:disabled": {
969
+ "$ref": "#/definitions/CSSProperties"
970
+ },
971
+ ".AlertIcon:focus": {
972
+ "$ref": "#/definitions/CSSProperties"
973
+ },
974
+ ".AlertIcon:focus-visible": {
975
+ "$ref": "#/definitions/CSSProperties"
976
+ },
977
+ ".AlertIcon:hover": {
978
+ "$ref": "#/definitions/CSSProperties"
979
+ },
980
+ ".Button": {
981
+ "$ref": "#/definitions/CSSProperties"
982
+ },
983
+ ".Button--checked": {
984
+ "$ref": "#/definitions/CSSProperties"
985
+ },
986
+ ".Button::placeholder": {
987
+ "$ref": "#/definitions/CSSProperties"
988
+ },
989
+ ".Button::selection": {
990
+ "$ref": "#/definitions/CSSProperties"
991
+ },
992
+ ".Button:active": {
993
+ "$ref": "#/definitions/CSSProperties"
994
+ },
995
+ ".Button:autofill": {
996
+ "$ref": "#/definitions/CSSProperties"
997
+ },
998
+ ".Button:disabled": {
999
+ "$ref": "#/definitions/CSSProperties"
1000
+ },
1001
+ ".Button:focus": {
1002
+ "$ref": "#/definitions/CSSProperties"
1003
+ },
1004
+ ".Button:focus-visible": {
1005
+ "$ref": "#/definitions/CSSProperties"
1006
+ },
1007
+ ".Button:hover": {
1008
+ "$ref": "#/definitions/CSSProperties"
1009
+ },
1010
+ ".Card": {
1011
+ "$ref": "#/definitions/CSSProperties"
1012
+ },
1013
+ ".Card--checked": {
1014
+ "$ref": "#/definitions/CSSProperties"
1015
+ },
1016
+ ".Card::placeholder": {
1017
+ "$ref": "#/definitions/CSSProperties"
1018
+ },
1019
+ ".Card::selection": {
1020
+ "$ref": "#/definitions/CSSProperties"
1021
+ },
1022
+ ".Card:active": {
1023
+ "$ref": "#/definitions/CSSProperties"
1024
+ },
1025
+ ".Card:autofill": {
1026
+ "$ref": "#/definitions/CSSProperties"
1027
+ },
1028
+ ".Card:disabled": {
1029
+ "$ref": "#/definitions/CSSProperties"
1030
+ },
1031
+ ".Card:focus": {
1032
+ "$ref": "#/definitions/CSSProperties"
1033
+ },
1034
+ ".Card:focus-visible": {
1035
+ "$ref": "#/definitions/CSSProperties"
1036
+ },
1037
+ ".Card:hover": {
1038
+ "$ref": "#/definitions/CSSProperties"
1039
+ },
1040
+ ".CardTitle": {
1041
+ "$ref": "#/definitions/CSSProperties"
1042
+ },
1043
+ ".CardTitle--checked": {
1044
+ "$ref": "#/definitions/CSSProperties"
1045
+ },
1046
+ ".CardTitle::placeholder": {
1047
+ "$ref": "#/definitions/CSSProperties"
1048
+ },
1049
+ ".CardTitle::selection": {
1050
+ "$ref": "#/definitions/CSSProperties"
1051
+ },
1052
+ ".CardTitle:active": {
1053
+ "$ref": "#/definitions/CSSProperties"
1054
+ },
1055
+ ".CardTitle:autofill": {
1056
+ "$ref": "#/definitions/CSSProperties"
1057
+ },
1058
+ ".CardTitle:disabled": {
1059
+ "$ref": "#/definitions/CSSProperties"
1060
+ },
1061
+ ".CardTitle:focus": {
1062
+ "$ref": "#/definitions/CSSProperties"
1063
+ },
1064
+ ".CardTitle:focus-visible": {
1065
+ "$ref": "#/definitions/CSSProperties"
1066
+ },
1067
+ ".CardTitle:hover": {
1068
+ "$ref": "#/definitions/CSSProperties"
1069
+ },
1070
+ ".Checkbox": {
1071
+ "$ref": "#/definitions/CSSProperties"
1072
+ },
1073
+ ".Checkbox--checked": {
1074
+ "$ref": "#/definitions/CSSProperties"
1075
+ },
1076
+ ".Checkbox::placeholder": {
1077
+ "$ref": "#/definitions/CSSProperties"
1078
+ },
1079
+ ".Checkbox::selection": {
1080
+ "$ref": "#/definitions/CSSProperties"
1081
+ },
1082
+ ".Checkbox:active": {
1083
+ "$ref": "#/definitions/CSSProperties"
1084
+ },
1085
+ ".Checkbox:autofill": {
1086
+ "$ref": "#/definitions/CSSProperties"
1087
+ },
1088
+ ".Checkbox:disabled": {
1089
+ "$ref": "#/definitions/CSSProperties"
1090
+ },
1091
+ ".Checkbox:focus": {
1092
+ "$ref": "#/definitions/CSSProperties"
1093
+ },
1094
+ ".Checkbox:focus-visible": {
1095
+ "$ref": "#/definitions/CSSProperties"
1096
+ },
1097
+ ".Checkbox:hover": {
1098
+ "$ref": "#/definitions/CSSProperties"
1099
+ },
1100
+ ".CheckboxInput": {
1101
+ "$ref": "#/definitions/CSSProperties"
1102
+ },
1103
+ ".CheckboxInput--checked": {
1104
+ "$ref": "#/definitions/CSSProperties"
1105
+ },
1106
+ ".CheckboxInput::placeholder": {
1107
+ "$ref": "#/definitions/CSSProperties"
1108
+ },
1109
+ ".CheckboxInput::selection": {
1110
+ "$ref": "#/definitions/CSSProperties"
1111
+ },
1112
+ ".CheckboxInput:active": {
1113
+ "$ref": "#/definitions/CSSProperties"
1114
+ },
1115
+ ".CheckboxInput:autofill": {
1116
+ "$ref": "#/definitions/CSSProperties"
1117
+ },
1118
+ ".CheckboxInput:disabled": {
1119
+ "$ref": "#/definitions/CSSProperties"
1120
+ },
1121
+ ".CheckboxInput:focus": {
1122
+ "$ref": "#/definitions/CSSProperties"
1123
+ },
1124
+ ".CheckboxInput:focus-visible": {
1125
+ "$ref": "#/definitions/CSSProperties"
1126
+ },
1127
+ ".CheckboxInput:hover": {
1128
+ "$ref": "#/definitions/CSSProperties"
1129
+ },
1130
+ ".CheckboxLabel": {
1131
+ "$ref": "#/definitions/CSSProperties"
1132
+ },
1133
+ ".CheckboxLabel--checked": {
1134
+ "$ref": "#/definitions/CSSProperties"
1135
+ },
1136
+ ".CheckboxLabel::placeholder": {
1137
+ "$ref": "#/definitions/CSSProperties"
1138
+ },
1139
+ ".CheckboxLabel::selection": {
1140
+ "$ref": "#/definitions/CSSProperties"
1141
+ },
1142
+ ".CheckboxLabel:active": {
1143
+ "$ref": "#/definitions/CSSProperties"
1144
+ },
1145
+ ".CheckboxLabel:autofill": {
1146
+ "$ref": "#/definitions/CSSProperties"
1147
+ },
1148
+ ".CheckboxLabel:disabled": {
1149
+ "$ref": "#/definitions/CSSProperties"
1150
+ },
1151
+ ".CheckboxLabel:focus": {
1152
+ "$ref": "#/definitions/CSSProperties"
1153
+ },
1154
+ ".CheckboxLabel:focus-visible": {
1155
+ "$ref": "#/definitions/CSSProperties"
1156
+ },
1157
+ ".CheckboxLabel:hover": {
1158
+ "$ref": "#/definitions/CSSProperties"
1159
+ },
1160
+ ".Chip": {
1161
+ "$ref": "#/definitions/CSSProperties"
1162
+ },
1163
+ ".Chip--amber": {
1164
+ "$ref": "#/definitions/CSSProperties"
1165
+ },
1166
+ ".Chip--checked": {
1167
+ "$ref": "#/definitions/CSSProperties"
1168
+ },
1169
+ ".Chip--green": {
1170
+ "$ref": "#/definitions/CSSProperties"
1171
+ },
1172
+ ".Chip--info": {
1173
+ "$ref": "#/definitions/CSSProperties"
1174
+ },
1175
+ ".Chip--red": {
1176
+ "$ref": "#/definitions/CSSProperties"
1177
+ },
1178
+ ".Chip::placeholder": {
1179
+ "$ref": "#/definitions/CSSProperties"
1180
+ },
1181
+ ".Chip::selection": {
1182
+ "$ref": "#/definitions/CSSProperties"
1183
+ },
1184
+ ".Chip:active": {
1185
+ "$ref": "#/definitions/CSSProperties"
1186
+ },
1187
+ ".Chip:autofill": {
1188
+ "$ref": "#/definitions/CSSProperties"
1189
+ },
1190
+ ".Chip:disabled": {
1191
+ "$ref": "#/definitions/CSSProperties"
1192
+ },
1193
+ ".Chip:focus": {
1194
+ "$ref": "#/definitions/CSSProperties"
1195
+ },
1196
+ ".Chip:focus-visible": {
1197
+ "$ref": "#/definitions/CSSProperties"
1198
+ },
1199
+ ".Chip:hover": {
1200
+ "$ref": "#/definitions/CSSProperties"
1201
+ },
1202
+ ".Combobox": {
1203
+ "$ref": "#/definitions/CSSProperties"
1204
+ },
1205
+ ".Combobox--checked": {
1206
+ "$ref": "#/definitions/CSSProperties"
1207
+ },
1208
+ ".Combobox::placeholder": {
1209
+ "$ref": "#/definitions/CSSProperties"
1210
+ },
1211
+ ".Combobox::selection": {
1212
+ "$ref": "#/definitions/CSSProperties"
1213
+ },
1214
+ ".Combobox:active": {
1215
+ "$ref": "#/definitions/CSSProperties"
1216
+ },
1217
+ ".Combobox:autofill": {
1218
+ "$ref": "#/definitions/CSSProperties"
1219
+ },
1220
+ ".Combobox:disabled": {
1221
+ "$ref": "#/definitions/CSSProperties"
1222
+ },
1223
+ ".Combobox:focus": {
1224
+ "$ref": "#/definitions/CSSProperties"
1225
+ },
1226
+ ".Combobox:focus-visible": {
1227
+ "$ref": "#/definitions/CSSProperties"
1228
+ },
1229
+ ".Combobox:hover": {
1230
+ "$ref": "#/definitions/CSSProperties"
1231
+ },
1232
+ ".Description": {
1233
+ "$ref": "#/definitions/CSSProperties"
1234
+ },
1235
+ ".Description--checked": {
1236
+ "$ref": "#/definitions/CSSProperties"
1237
+ },
1238
+ ".Description::placeholder": {
1239
+ "$ref": "#/definitions/CSSProperties"
1240
+ },
1241
+ ".Description::selection": {
1242
+ "$ref": "#/definitions/CSSProperties"
1243
+ },
1244
+ ".Description:active": {
1245
+ "$ref": "#/definitions/CSSProperties"
1246
+ },
1247
+ ".Description:autofill": {
1248
+ "$ref": "#/definitions/CSSProperties"
1249
+ },
1250
+ ".Description:disabled": {
1251
+ "$ref": "#/definitions/CSSProperties"
1252
+ },
1253
+ ".Description:focus": {
1254
+ "$ref": "#/definitions/CSSProperties"
1255
+ },
1256
+ ".Description:focus-visible": {
1257
+ "$ref": "#/definitions/CSSProperties"
1258
+ },
1259
+ ".Description:hover": {
1260
+ "$ref": "#/definitions/CSSProperties"
1261
+ },
1262
+ ".Dialog": {
1263
+ "$ref": "#/definitions/CSSProperties"
1264
+ },
1265
+ ".Dialog--checked": {
1266
+ "$ref": "#/definitions/CSSProperties"
1267
+ },
1268
+ ".Dialog::placeholder": {
1269
+ "$ref": "#/definitions/CSSProperties"
1270
+ },
1271
+ ".Dialog::selection": {
1272
+ "$ref": "#/definitions/CSSProperties"
1273
+ },
1274
+ ".Dialog:active": {
1275
+ "$ref": "#/definitions/CSSProperties"
1276
+ },
1277
+ ".Dialog:autofill": {
1278
+ "$ref": "#/definitions/CSSProperties"
1279
+ },
1280
+ ".Dialog:disabled": {
1281
+ "$ref": "#/definitions/CSSProperties"
1282
+ },
1283
+ ".Dialog:focus": {
1284
+ "$ref": "#/definitions/CSSProperties"
1285
+ },
1286
+ ".Dialog:focus-visible": {
1287
+ "$ref": "#/definitions/CSSProperties"
1288
+ },
1289
+ ".Dialog:hover": {
1290
+ "$ref": "#/definitions/CSSProperties"
1291
+ },
1292
+ ".DialogContent": {
1293
+ "$ref": "#/definitions/CSSProperties"
1294
+ },
1295
+ ".DialogContent--checked": {
1296
+ "$ref": "#/definitions/CSSProperties"
1297
+ },
1298
+ ".DialogContent::placeholder": {
1299
+ "$ref": "#/definitions/CSSProperties"
1300
+ },
1301
+ ".DialogContent::selection": {
1302
+ "$ref": "#/definitions/CSSProperties"
1303
+ },
1304
+ ".DialogContent:active": {
1305
+ "$ref": "#/definitions/CSSProperties"
1306
+ },
1307
+ ".DialogContent:autofill": {
1308
+ "$ref": "#/definitions/CSSProperties"
1309
+ },
1310
+ ".DialogContent:disabled": {
1311
+ "$ref": "#/definitions/CSSProperties"
1312
+ },
1313
+ ".DialogContent:focus": {
1314
+ "$ref": "#/definitions/CSSProperties"
1315
+ },
1316
+ ".DialogContent:focus-visible": {
1317
+ "$ref": "#/definitions/CSSProperties"
1318
+ },
1319
+ ".DialogContent:hover": {
1320
+ "$ref": "#/definitions/CSSProperties"
1321
+ },
1322
+ ".DialogDescription": {
1323
+ "$ref": "#/definitions/CSSProperties"
1324
+ },
1325
+ ".DialogDescription--checked": {
1326
+ "$ref": "#/definitions/CSSProperties"
1327
+ },
1328
+ ".DialogDescription::placeholder": {
1329
+ "$ref": "#/definitions/CSSProperties"
1330
+ },
1331
+ ".DialogDescription::selection": {
1332
+ "$ref": "#/definitions/CSSProperties"
1333
+ },
1334
+ ".DialogDescription:active": {
1335
+ "$ref": "#/definitions/CSSProperties"
1336
+ },
1337
+ ".DialogDescription:autofill": {
1338
+ "$ref": "#/definitions/CSSProperties"
1339
+ },
1340
+ ".DialogDescription:disabled": {
1341
+ "$ref": "#/definitions/CSSProperties"
1342
+ },
1343
+ ".DialogDescription:focus": {
1344
+ "$ref": "#/definitions/CSSProperties"
1345
+ },
1346
+ ".DialogDescription:focus-visible": {
1347
+ "$ref": "#/definitions/CSSProperties"
1348
+ },
1349
+ ".DialogDescription:hover": {
1350
+ "$ref": "#/definitions/CSSProperties"
1351
+ },
1352
+ ".DialogOverlay": {
1353
+ "$ref": "#/definitions/CSSProperties"
1354
+ },
1355
+ ".DialogOverlay--checked": {
1356
+ "$ref": "#/definitions/CSSProperties"
1357
+ },
1358
+ ".DialogOverlay::placeholder": {
1359
+ "$ref": "#/definitions/CSSProperties"
1360
+ },
1361
+ ".DialogOverlay::selection": {
1362
+ "$ref": "#/definitions/CSSProperties"
1363
+ },
1364
+ ".DialogOverlay:active": {
1365
+ "$ref": "#/definitions/CSSProperties"
1366
+ },
1367
+ ".DialogOverlay:autofill": {
1368
+ "$ref": "#/definitions/CSSProperties"
1369
+ },
1370
+ ".DialogOverlay:disabled": {
1371
+ "$ref": "#/definitions/CSSProperties"
1372
+ },
1373
+ ".DialogOverlay:focus": {
1374
+ "$ref": "#/definitions/CSSProperties"
1375
+ },
1376
+ ".DialogOverlay:focus-visible": {
1377
+ "$ref": "#/definitions/CSSProperties"
1378
+ },
1379
+ ".DialogOverlay:hover": {
1380
+ "$ref": "#/definitions/CSSProperties"
1381
+ },
1382
+ ".DialogTitle": {
1383
+ "$ref": "#/definitions/CSSProperties"
1384
+ },
1385
+ ".DialogTitle--checked": {
1386
+ "$ref": "#/definitions/CSSProperties"
1387
+ },
1388
+ ".DialogTitle::placeholder": {
1389
+ "$ref": "#/definitions/CSSProperties"
1390
+ },
1391
+ ".DialogTitle::selection": {
1392
+ "$ref": "#/definitions/CSSProperties"
1393
+ },
1394
+ ".DialogTitle:active": {
1395
+ "$ref": "#/definitions/CSSProperties"
1396
+ },
1397
+ ".DialogTitle:autofill": {
1398
+ "$ref": "#/definitions/CSSProperties"
1399
+ },
1400
+ ".DialogTitle:disabled": {
1401
+ "$ref": "#/definitions/CSSProperties"
1402
+ },
1403
+ ".DialogTitle:focus": {
1404
+ "$ref": "#/definitions/CSSProperties"
1405
+ },
1406
+ ".DialogTitle:focus-visible": {
1407
+ "$ref": "#/definitions/CSSProperties"
1408
+ },
1409
+ ".DialogTitle:hover": {
1410
+ "$ref": "#/definitions/CSSProperties"
1411
+ },
1412
+ ".ErrorMessage": {
1413
+ "$ref": "#/definitions/CSSProperties"
1414
+ },
1415
+ ".ErrorMessage--checked": {
1416
+ "$ref": "#/definitions/CSSProperties"
1417
+ },
1418
+ ".ErrorMessage::placeholder": {
1419
+ "$ref": "#/definitions/CSSProperties"
1420
+ },
1421
+ ".ErrorMessage::selection": {
1422
+ "$ref": "#/definitions/CSSProperties"
1423
+ },
1424
+ ".ErrorMessage:active": {
1425
+ "$ref": "#/definitions/CSSProperties"
1426
+ },
1427
+ ".ErrorMessage:autofill": {
1428
+ "$ref": "#/definitions/CSSProperties"
1429
+ },
1430
+ ".ErrorMessage:disabled": {
1431
+ "$ref": "#/definitions/CSSProperties"
1432
+ },
1433
+ ".ErrorMessage:focus": {
1434
+ "$ref": "#/definitions/CSSProperties"
1435
+ },
1436
+ ".ErrorMessage:focus-visible": {
1437
+ "$ref": "#/definitions/CSSProperties"
1438
+ },
1439
+ ".ErrorMessage:hover": {
1440
+ "$ref": "#/definitions/CSSProperties"
1441
+ },
1442
+ ".HintIcon": {
1443
+ "$ref": "#/definitions/CSSProperties"
1444
+ },
1445
+ ".HintIcon--checked": {
1446
+ "$ref": "#/definitions/CSSProperties"
1447
+ },
1448
+ ".HintIcon::placeholder": {
1449
+ "$ref": "#/definitions/CSSProperties"
1450
+ },
1451
+ ".HintIcon::selection": {
1452
+ "$ref": "#/definitions/CSSProperties"
1453
+ },
1454
+ ".HintIcon:active": {
1455
+ "$ref": "#/definitions/CSSProperties"
1456
+ },
1457
+ ".HintIcon:autofill": {
1458
+ "$ref": "#/definitions/CSSProperties"
1459
+ },
1460
+ ".HintIcon:disabled": {
1461
+ "$ref": "#/definitions/CSSProperties"
1462
+ },
1463
+ ".HintIcon:focus": {
1464
+ "$ref": "#/definitions/CSSProperties"
1465
+ },
1466
+ ".HintIcon:focus-visible": {
1467
+ "$ref": "#/definitions/CSSProperties"
1468
+ },
1469
+ ".HintIcon:hover": {
1470
+ "$ref": "#/definitions/CSSProperties"
1471
+ },
1472
+ ".Input": {
1473
+ "$ref": "#/definitions/CSSProperties"
1474
+ },
1475
+ ".Input--checked": {
1476
+ "$ref": "#/definitions/CSSProperties"
1477
+ },
1478
+ ".Input--error": {
1479
+ "$ref": "#/definitions/CSSProperties"
1480
+ },
1481
+ ".Input::placeholder": {
1482
+ "$ref": "#/definitions/CSSProperties"
1483
+ },
1484
+ ".Input::selection": {
1485
+ "$ref": "#/definitions/CSSProperties"
1486
+ },
1487
+ ".Input:active": {
1488
+ "$ref": "#/definitions/CSSProperties"
1489
+ },
1490
+ ".Input:autofill": {
1491
+ "$ref": "#/definitions/CSSProperties"
1492
+ },
1493
+ ".Input:disabled": {
1494
+ "$ref": "#/definitions/CSSProperties"
1495
+ },
1496
+ ".Input:focus": {
1497
+ "$ref": "#/definitions/CSSProperties"
1498
+ },
1499
+ ".Input:focus-visible": {
1500
+ "$ref": "#/definitions/CSSProperties"
1501
+ },
1502
+ ".Input:hover": {
1503
+ "$ref": "#/definitions/CSSProperties"
1504
+ },
1505
+ ".Label": {
1506
+ "$ref": "#/definitions/CSSProperties"
1507
+ },
1508
+ ".Label--checked": {
1509
+ "$ref": "#/definitions/CSSProperties"
1510
+ },
1511
+ ".Label::placeholder": {
1512
+ "$ref": "#/definitions/CSSProperties"
1513
+ },
1514
+ ".Label::selection": {
1515
+ "$ref": "#/definitions/CSSProperties"
1516
+ },
1517
+ ".Label:active": {
1518
+ "$ref": "#/definitions/CSSProperties"
1519
+ },
1520
+ ".Label:autofill": {
1521
+ "$ref": "#/definitions/CSSProperties"
1522
+ },
1523
+ ".Label:disabled": {
1524
+ "$ref": "#/definitions/CSSProperties"
1525
+ },
1526
+ ".Label:focus": {
1527
+ "$ref": "#/definitions/CSSProperties"
1528
+ },
1529
+ ".Label:focus-visible": {
1530
+ "$ref": "#/definitions/CSSProperties"
1531
+ },
1532
+ ".Label:hover": {
1533
+ "$ref": "#/definitions/CSSProperties"
1534
+ },
1535
+ ".Link": {
1536
+ "$ref": "#/definitions/CSSProperties"
1537
+ },
1538
+ ".Link--checked": {
1539
+ "$ref": "#/definitions/CSSProperties"
1540
+ },
1541
+ ".Link::placeholder": {
1542
+ "$ref": "#/definitions/CSSProperties"
1543
+ },
1544
+ ".Link::selection": {
1545
+ "$ref": "#/definitions/CSSProperties"
1546
+ },
1547
+ ".Link:active": {
1548
+ "$ref": "#/definitions/CSSProperties"
1549
+ },
1550
+ ".Link:autofill": {
1551
+ "$ref": "#/definitions/CSSProperties"
1552
+ },
1553
+ ".Link:disabled": {
1554
+ "$ref": "#/definitions/CSSProperties"
1555
+ },
1556
+ ".Link:focus": {
1557
+ "$ref": "#/definitions/CSSProperties"
1558
+ },
1559
+ ".Link:focus-visible": {
1560
+ "$ref": "#/definitions/CSSProperties"
1561
+ },
1562
+ ".Link:hover": {
1563
+ "$ref": "#/definitions/CSSProperties"
1564
+ },
1565
+ ".Loader": {
1566
+ "$ref": "#/definitions/CSSProperties"
1567
+ },
1568
+ ".Loader--checked": {
1569
+ "$ref": "#/definitions/CSSProperties"
1570
+ },
1571
+ ".Loader::placeholder": {
1572
+ "$ref": "#/definitions/CSSProperties"
1573
+ },
1574
+ ".Loader::selection": {
1575
+ "$ref": "#/definitions/CSSProperties"
1576
+ },
1577
+ ".Loader:active": {
1578
+ "$ref": "#/definitions/CSSProperties"
1579
+ },
1580
+ ".Loader:autofill": {
1581
+ "$ref": "#/definitions/CSSProperties"
1582
+ },
1583
+ ".Loader:disabled": {
1584
+ "$ref": "#/definitions/CSSProperties"
1585
+ },
1586
+ ".Loader:focus": {
1587
+ "$ref": "#/definitions/CSSProperties"
1588
+ },
1589
+ ".Loader:focus-visible": {
1590
+ "$ref": "#/definitions/CSSProperties"
1591
+ },
1592
+ ".Loader:hover": {
1593
+ "$ref": "#/definitions/CSSProperties"
1594
+ },
1595
+ ".MainContainer": {
1596
+ "$ref": "#/definitions/CSSProperties"
1597
+ },
1598
+ ".MainContainer--checked": {
1599
+ "$ref": "#/definitions/CSSProperties"
1600
+ },
1601
+ ".MainContainer::placeholder": {
1602
+ "$ref": "#/definitions/CSSProperties"
1603
+ },
1604
+ ".MainContainer::selection": {
1605
+ "$ref": "#/definitions/CSSProperties"
1606
+ },
1607
+ ".MainContainer:active": {
1608
+ "$ref": "#/definitions/CSSProperties"
1609
+ },
1610
+ ".MainContainer:autofill": {
1611
+ "$ref": "#/definitions/CSSProperties"
1612
+ },
1613
+ ".MainContainer:disabled": {
1614
+ "$ref": "#/definitions/CSSProperties"
1615
+ },
1616
+ ".MainContainer:focus": {
1617
+ "$ref": "#/definitions/CSSProperties"
1618
+ },
1619
+ ".MainContainer:focus-visible": {
1620
+ "$ref": "#/definitions/CSSProperties"
1621
+ },
1622
+ ".MainContainer:hover": {
1623
+ "$ref": "#/definitions/CSSProperties"
1624
+ },
1625
+ ".NinInput": {
1626
+ "$ref": "#/definitions/CSSProperties"
1627
+ },
1628
+ ".NinInput--checked": {
1629
+ "$ref": "#/definitions/CSSProperties"
1630
+ },
1631
+ ".NinInput::placeholder": {
1632
+ "$ref": "#/definitions/CSSProperties"
1633
+ },
1634
+ ".NinInput::selection": {
1635
+ "$ref": "#/definitions/CSSProperties"
1636
+ },
1637
+ ".NinInput:active": {
1638
+ "$ref": "#/definitions/CSSProperties"
1639
+ },
1640
+ ".NinInput:autofill": {
1641
+ "$ref": "#/definitions/CSSProperties"
1642
+ },
1643
+ ".NinInput:disabled": {
1644
+ "$ref": "#/definitions/CSSProperties"
1645
+ },
1646
+ ".NinInput:focus": {
1647
+ "$ref": "#/definitions/CSSProperties"
1648
+ },
1649
+ ".NinInput:focus-visible": {
1650
+ "$ref": "#/definitions/CSSProperties"
1651
+ },
1652
+ ".NinInput:hover": {
1653
+ "$ref": "#/definitions/CSSProperties"
1654
+ },
1655
+ ".Radio": {
1656
+ "$ref": "#/definitions/CSSProperties"
1657
+ },
1658
+ ".Radio--checked": {
1659
+ "$ref": "#/definitions/CSSProperties"
1660
+ },
1661
+ ".Radio::placeholder": {
1662
+ "$ref": "#/definitions/CSSProperties"
1663
+ },
1664
+ ".Radio::selection": {
1665
+ "$ref": "#/definitions/CSSProperties"
1666
+ },
1667
+ ".Radio:active": {
1668
+ "$ref": "#/definitions/CSSProperties"
1669
+ },
1670
+ ".Radio:autofill": {
1671
+ "$ref": "#/definitions/CSSProperties"
1672
+ },
1673
+ ".Radio:disabled": {
1674
+ "$ref": "#/definitions/CSSProperties"
1675
+ },
1676
+ ".Radio:focus": {
1677
+ "$ref": "#/definitions/CSSProperties"
1678
+ },
1679
+ ".Radio:focus-visible": {
1680
+ "$ref": "#/definitions/CSSProperties"
1681
+ },
1682
+ ".Radio:hover": {
1683
+ "$ref": "#/definitions/CSSProperties"
1684
+ },
1685
+ ".RadioButton": {
1686
+ "$ref": "#/definitions/CSSProperties"
1687
+ },
1688
+ ".RadioButton--checked": {
1689
+ "$ref": "#/definitions/CSSProperties"
1690
+ },
1691
+ ".RadioButton::placeholder": {
1692
+ "$ref": "#/definitions/CSSProperties"
1693
+ },
1694
+ ".RadioButton::selection": {
1695
+ "$ref": "#/definitions/CSSProperties"
1696
+ },
1697
+ ".RadioButton:active": {
1698
+ "$ref": "#/definitions/CSSProperties"
1699
+ },
1700
+ ".RadioButton:autofill": {
1701
+ "$ref": "#/definitions/CSSProperties"
1702
+ },
1703
+ ".RadioButton:disabled": {
1704
+ "$ref": "#/definitions/CSSProperties"
1705
+ },
1706
+ ".RadioButton:focus": {
1707
+ "$ref": "#/definitions/CSSProperties"
1708
+ },
1709
+ ".RadioButton:focus-visible": {
1710
+ "$ref": "#/definitions/CSSProperties"
1711
+ },
1712
+ ".RadioButton:hover": {
1713
+ "$ref": "#/definitions/CSSProperties"
1714
+ },
1715
+ ".RadioCard": {
1716
+ "$ref": "#/definitions/CSSProperties"
1717
+ },
1718
+ ".RadioCard--checked": {
1719
+ "$ref": "#/definitions/CSSProperties"
1720
+ },
1721
+ ".RadioCard::placeholder": {
1722
+ "$ref": "#/definitions/CSSProperties"
1723
+ },
1724
+ ".RadioCard::selection": {
1725
+ "$ref": "#/definitions/CSSProperties"
1726
+ },
1727
+ ".RadioCard:active": {
1728
+ "$ref": "#/definitions/CSSProperties"
1729
+ },
1730
+ ".RadioCard:autofill": {
1731
+ "$ref": "#/definitions/CSSProperties"
1732
+ },
1733
+ ".RadioCard:disabled": {
1734
+ "$ref": "#/definitions/CSSProperties"
1735
+ },
1736
+ ".RadioCard:focus": {
1737
+ "$ref": "#/definitions/CSSProperties"
1738
+ },
1739
+ ".RadioCard:focus-visible": {
1740
+ "$ref": "#/definitions/CSSProperties"
1741
+ },
1742
+ ".RadioCard:hover": {
1743
+ "$ref": "#/definitions/CSSProperties"
1744
+ },
1745
+ ".RadioCardButton": {
1746
+ "$ref": "#/definitions/CSSProperties"
1747
+ },
1748
+ ".RadioCardButton--checked": {
1749
+ "$ref": "#/definitions/CSSProperties"
1750
+ },
1751
+ ".RadioCardButton::placeholder": {
1752
+ "$ref": "#/definitions/CSSProperties"
1753
+ },
1754
+ ".RadioCardButton::selection": {
1755
+ "$ref": "#/definitions/CSSProperties"
1756
+ },
1757
+ ".RadioCardButton:active": {
1758
+ "$ref": "#/definitions/CSSProperties"
1759
+ },
1760
+ ".RadioCardButton:autofill": {
1761
+ "$ref": "#/definitions/CSSProperties"
1762
+ },
1763
+ ".RadioCardButton:disabled": {
1764
+ "$ref": "#/definitions/CSSProperties"
1765
+ },
1766
+ ".RadioCardButton:focus": {
1767
+ "$ref": "#/definitions/CSSProperties"
1768
+ },
1769
+ ".RadioCardButton:focus-visible": {
1770
+ "$ref": "#/definitions/CSSProperties"
1771
+ },
1772
+ ".RadioCardButton:hover": {
1773
+ "$ref": "#/definitions/CSSProperties"
1774
+ },
1775
+ ".RadioCardIndicator": {
1776
+ "$ref": "#/definitions/CSSProperties"
1777
+ },
1778
+ ".RadioCardIndicator--checked": {
1779
+ "$ref": "#/definitions/CSSProperties"
1780
+ },
1781
+ ".RadioCardIndicator::placeholder": {
1782
+ "$ref": "#/definitions/CSSProperties"
1783
+ },
1784
+ ".RadioCardIndicator::selection": {
1785
+ "$ref": "#/definitions/CSSProperties"
1786
+ },
1787
+ ".RadioCardIndicator:active": {
1788
+ "$ref": "#/definitions/CSSProperties"
1789
+ },
1790
+ ".RadioCardIndicator:autofill": {
1791
+ "$ref": "#/definitions/CSSProperties"
1792
+ },
1793
+ ".RadioCardIndicator:disabled": {
1794
+ "$ref": "#/definitions/CSSProperties"
1795
+ },
1796
+ ".RadioCardIndicator:focus": {
1797
+ "$ref": "#/definitions/CSSProperties"
1798
+ },
1799
+ ".RadioCardIndicator:focus-visible": {
1800
+ "$ref": "#/definitions/CSSProperties"
1801
+ },
1802
+ ".RadioCardIndicator:hover": {
1803
+ "$ref": "#/definitions/CSSProperties"
1804
+ },
1805
+ ".RadioCardTitle": {
1806
+ "$ref": "#/definitions/CSSProperties"
1807
+ },
1808
+ ".RadioCardTitle--checked": {
1809
+ "$ref": "#/definitions/CSSProperties"
1810
+ },
1811
+ ".RadioCardTitle::placeholder": {
1812
+ "$ref": "#/definitions/CSSProperties"
1813
+ },
1814
+ ".RadioCardTitle::selection": {
1815
+ "$ref": "#/definitions/CSSProperties"
1816
+ },
1817
+ ".RadioCardTitle:active": {
1818
+ "$ref": "#/definitions/CSSProperties"
1819
+ },
1820
+ ".RadioCardTitle:autofill": {
1821
+ "$ref": "#/definitions/CSSProperties"
1822
+ },
1823
+ ".RadioCardTitle:disabled": {
1824
+ "$ref": "#/definitions/CSSProperties"
1825
+ },
1826
+ ".RadioCardTitle:focus": {
1827
+ "$ref": "#/definitions/CSSProperties"
1828
+ },
1829
+ ".RadioCardTitle:focus-visible": {
1830
+ "$ref": "#/definitions/CSSProperties"
1831
+ },
1832
+ ".RadioCardTitle:hover": {
1833
+ "$ref": "#/definitions/CSSProperties"
1834
+ },
1835
+ ".RadioIndicator": {
1836
+ "$ref": "#/definitions/CSSProperties"
1837
+ },
1838
+ ".RadioIndicator--checked": {
1839
+ "$ref": "#/definitions/CSSProperties"
1840
+ },
1841
+ ".RadioIndicator::placeholder": {
1842
+ "$ref": "#/definitions/CSSProperties"
1843
+ },
1844
+ ".RadioIndicator::selection": {
1845
+ "$ref": "#/definitions/CSSProperties"
1846
+ },
1847
+ ".RadioIndicator:active": {
1848
+ "$ref": "#/definitions/CSSProperties"
1849
+ },
1850
+ ".RadioIndicator:autofill": {
1851
+ "$ref": "#/definitions/CSSProperties"
1852
+ },
1853
+ ".RadioIndicator:disabled": {
1854
+ "$ref": "#/definitions/CSSProperties"
1855
+ },
1856
+ ".RadioIndicator:focus": {
1857
+ "$ref": "#/definitions/CSSProperties"
1858
+ },
1859
+ ".RadioIndicator:focus-visible": {
1860
+ "$ref": "#/definitions/CSSProperties"
1861
+ },
1862
+ ".RadioIndicator:hover": {
1863
+ "$ref": "#/definitions/CSSProperties"
1864
+ },
1865
+ ".RadioLabel": {
1866
+ "$ref": "#/definitions/CSSProperties"
1867
+ },
1868
+ ".RadioLabel--checked": {
1869
+ "$ref": "#/definitions/CSSProperties"
1870
+ },
1871
+ ".RadioLabel::placeholder": {
1872
+ "$ref": "#/definitions/CSSProperties"
1873
+ },
1874
+ ".RadioLabel::selection": {
1875
+ "$ref": "#/definitions/CSSProperties"
1876
+ },
1877
+ ".RadioLabel:active": {
1878
+ "$ref": "#/definitions/CSSProperties"
1879
+ },
1880
+ ".RadioLabel:autofill": {
1881
+ "$ref": "#/definitions/CSSProperties"
1882
+ },
1883
+ ".RadioLabel:disabled": {
1884
+ "$ref": "#/definitions/CSSProperties"
1885
+ },
1886
+ ".RadioLabel:focus": {
1887
+ "$ref": "#/definitions/CSSProperties"
1888
+ },
1889
+ ".RadioLabel:focus-visible": {
1890
+ "$ref": "#/definitions/CSSProperties"
1891
+ },
1892
+ ".RadioLabel:hover": {
1893
+ "$ref": "#/definitions/CSSProperties"
1894
+ },
1895
+ ".Select": {
1896
+ "$ref": "#/definitions/CSSProperties"
1897
+ },
1898
+ ".Select--checked": {
1899
+ "$ref": "#/definitions/CSSProperties"
1900
+ },
1901
+ ".Select::placeholder": {
1902
+ "$ref": "#/definitions/CSSProperties"
1903
+ },
1904
+ ".Select::selection": {
1905
+ "$ref": "#/definitions/CSSProperties"
1906
+ },
1907
+ ".Select:active": {
1908
+ "$ref": "#/definitions/CSSProperties"
1909
+ },
1910
+ ".Select:autofill": {
1911
+ "$ref": "#/definitions/CSSProperties"
1912
+ },
1913
+ ".Select:disabled": {
1914
+ "$ref": "#/definitions/CSSProperties"
1915
+ },
1916
+ ".Select:focus": {
1917
+ "$ref": "#/definitions/CSSProperties"
1918
+ },
1919
+ ".Select:focus-visible": {
1920
+ "$ref": "#/definitions/CSSProperties"
1921
+ },
1922
+ ".Select:hover": {
1923
+ "$ref": "#/definitions/CSSProperties"
1924
+ },
1925
+ ".StepIndicator": {
1926
+ "$ref": "#/definitions/CSSProperties"
1927
+ },
1928
+ ".StepIndicator--active": {
1929
+ "$ref": "#/definitions/CSSProperties"
1930
+ },
1931
+ ".StepIndicator--checked": {
1932
+ "$ref": "#/definitions/CSSProperties"
1933
+ },
1934
+ ".StepIndicator--completed": {
1935
+ "$ref": "#/definitions/CSSProperties"
1936
+ },
1937
+ ".StepIndicator--pending": {
1938
+ "$ref": "#/definitions/CSSProperties"
1939
+ },
1940
+ ".StepIndicator::placeholder": {
1941
+ "$ref": "#/definitions/CSSProperties"
1942
+ },
1943
+ ".StepIndicator::selection": {
1944
+ "$ref": "#/definitions/CSSProperties"
1945
+ },
1946
+ ".StepIndicator:active": {
1947
+ "$ref": "#/definitions/CSSProperties"
1948
+ },
1949
+ ".StepIndicator:autofill": {
1950
+ "$ref": "#/definitions/CSSProperties"
1951
+ },
1952
+ ".StepIndicator:disabled": {
1953
+ "$ref": "#/definitions/CSSProperties"
1954
+ },
1955
+ ".StepIndicator:focus": {
1956
+ "$ref": "#/definitions/CSSProperties"
1957
+ },
1958
+ ".StepIndicator:focus-visible": {
1959
+ "$ref": "#/definitions/CSSProperties"
1960
+ },
1961
+ ".StepIndicator:hover": {
1962
+ "$ref": "#/definitions/CSSProperties"
1963
+ },
1964
+ ".StepIndicatorContainer": {
1965
+ "$ref": "#/definitions/CSSProperties"
1966
+ },
1967
+ ".StepIndicatorContainer--checked": {
1968
+ "$ref": "#/definitions/CSSProperties"
1969
+ },
1970
+ ".StepIndicatorContainer::placeholder": {
1971
+ "$ref": "#/definitions/CSSProperties"
1972
+ },
1973
+ ".StepIndicatorContainer::selection": {
1974
+ "$ref": "#/definitions/CSSProperties"
1975
+ },
1976
+ ".StepIndicatorContainer:active": {
1977
+ "$ref": "#/definitions/CSSProperties"
1978
+ },
1979
+ ".StepIndicatorContainer:autofill": {
1980
+ "$ref": "#/definitions/CSSProperties"
1981
+ },
1982
+ ".StepIndicatorContainer:disabled": {
1983
+ "$ref": "#/definitions/CSSProperties"
1984
+ },
1985
+ ".StepIndicatorContainer:focus": {
1986
+ "$ref": "#/definitions/CSSProperties"
1987
+ },
1988
+ ".StepIndicatorContainer:focus-visible": {
1989
+ "$ref": "#/definitions/CSSProperties"
1990
+ },
1991
+ ".StepIndicatorContainer:hover": {
1992
+ "$ref": "#/definitions/CSSProperties"
1993
+ },
1994
+ ".StepIndicatorDot": {
1995
+ "$ref": "#/definitions/CSSProperties"
1996
+ },
1997
+ ".StepIndicatorDot--checked": {
1998
+ "$ref": "#/definitions/CSSProperties"
1999
+ },
2000
+ ".StepIndicatorDot::placeholder": {
2001
+ "$ref": "#/definitions/CSSProperties"
2002
+ },
2003
+ ".StepIndicatorDot::selection": {
2004
+ "$ref": "#/definitions/CSSProperties"
2005
+ },
2006
+ ".StepIndicatorDot:active": {
2007
+ "$ref": "#/definitions/CSSProperties"
2008
+ },
2009
+ ".StepIndicatorDot:autofill": {
2010
+ "$ref": "#/definitions/CSSProperties"
2011
+ },
2012
+ ".StepIndicatorDot:disabled": {
2013
+ "$ref": "#/definitions/CSSProperties"
2014
+ },
2015
+ ".StepIndicatorDot:focus": {
2016
+ "$ref": "#/definitions/CSSProperties"
2017
+ },
2018
+ ".StepIndicatorDot:focus-visible": {
2019
+ "$ref": "#/definitions/CSSProperties"
2020
+ },
2021
+ ".StepIndicatorDot:hover": {
2022
+ "$ref": "#/definitions/CSSProperties"
2023
+ },
2024
+ ".StepIndicatorIcon": {
2025
+ "$ref": "#/definitions/CSSProperties"
2026
+ },
2027
+ ".StepIndicatorIcon--checked": {
2028
+ "$ref": "#/definitions/CSSProperties"
2029
+ },
2030
+ ".StepIndicatorIcon::placeholder": {
2031
+ "$ref": "#/definitions/CSSProperties"
2032
+ },
2033
+ ".StepIndicatorIcon::selection": {
2034
+ "$ref": "#/definitions/CSSProperties"
2035
+ },
2036
+ ".StepIndicatorIcon:active": {
2037
+ "$ref": "#/definitions/CSSProperties"
2038
+ },
2039
+ ".StepIndicatorIcon:autofill": {
2040
+ "$ref": "#/definitions/CSSProperties"
2041
+ },
2042
+ ".StepIndicatorIcon:disabled": {
2043
+ "$ref": "#/definitions/CSSProperties"
2044
+ },
2045
+ ".StepIndicatorIcon:focus": {
2046
+ "$ref": "#/definitions/CSSProperties"
2047
+ },
2048
+ ".StepIndicatorIcon:focus-visible": {
2049
+ "$ref": "#/definitions/CSSProperties"
2050
+ },
2051
+ ".StepIndicatorIcon:hover": {
2052
+ "$ref": "#/definitions/CSSProperties"
2053
+ },
2054
+ ".StepIndicatorLine": {
2055
+ "$ref": "#/definitions/CSSProperties"
2056
+ },
2057
+ ".StepIndicatorLine--bottom": {
2058
+ "$ref": "#/definitions/CSSProperties"
2059
+ },
2060
+ ".StepIndicatorLine--checked": {
2061
+ "$ref": "#/definitions/CSSProperties"
2062
+ },
2063
+ ".StepIndicatorLine--top": {
2064
+ "$ref": "#/definitions/CSSProperties"
2065
+ },
2066
+ ".StepIndicatorLine::placeholder": {
2067
+ "$ref": "#/definitions/CSSProperties"
2068
+ },
2069
+ ".StepIndicatorLine::selection": {
2070
+ "$ref": "#/definitions/CSSProperties"
2071
+ },
2072
+ ".StepIndicatorLine:active": {
2073
+ "$ref": "#/definitions/CSSProperties"
2074
+ },
2075
+ ".StepIndicatorLine:autofill": {
2076
+ "$ref": "#/definitions/CSSProperties"
2077
+ },
2078
+ ".StepIndicatorLine:disabled": {
2079
+ "$ref": "#/definitions/CSSProperties"
2080
+ },
2081
+ ".StepIndicatorLine:focus": {
2082
+ "$ref": "#/definitions/CSSProperties"
2083
+ },
2084
+ ".StepIndicatorLine:focus-visible": {
2085
+ "$ref": "#/definitions/CSSProperties"
2086
+ },
2087
+ ".StepIndicatorLine:hover": {
2088
+ "$ref": "#/definitions/CSSProperties"
2089
+ },
2090
+ ".StepIndicatorNumber": {
2091
+ "$ref": "#/definitions/CSSProperties"
2092
+ },
2093
+ ".StepIndicatorNumber--checked": {
2094
+ "$ref": "#/definitions/CSSProperties"
2095
+ },
2096
+ ".StepIndicatorNumber::placeholder": {
2097
+ "$ref": "#/definitions/CSSProperties"
2098
+ },
2099
+ ".StepIndicatorNumber::selection": {
2100
+ "$ref": "#/definitions/CSSProperties"
2101
+ },
2102
+ ".StepIndicatorNumber:active": {
2103
+ "$ref": "#/definitions/CSSProperties"
2104
+ },
2105
+ ".StepIndicatorNumber:autofill": {
2106
+ "$ref": "#/definitions/CSSProperties"
2107
+ },
2108
+ ".StepIndicatorNumber:disabled": {
2109
+ "$ref": "#/definitions/CSSProperties"
2110
+ },
2111
+ ".StepIndicatorNumber:focus": {
2112
+ "$ref": "#/definitions/CSSProperties"
2113
+ },
2114
+ ".StepIndicatorNumber:focus-visible": {
2115
+ "$ref": "#/definitions/CSSProperties"
2116
+ },
2117
+ ".StepIndicatorNumber:hover": {
2118
+ "$ref": "#/definitions/CSSProperties"
2119
+ },
2120
+ ".StepTitle": {
2121
+ "$ref": "#/definitions/CSSProperties"
2122
+ },
2123
+ ".StepTitle--checked": {
2124
+ "$ref": "#/definitions/CSSProperties"
2125
+ },
2126
+ ".StepTitle::placeholder": {
2127
+ "$ref": "#/definitions/CSSProperties"
2128
+ },
2129
+ ".StepTitle::selection": {
2130
+ "$ref": "#/definitions/CSSProperties"
2131
+ },
2132
+ ".StepTitle:active": {
2133
+ "$ref": "#/definitions/CSSProperties"
2134
+ },
2135
+ ".StepTitle:autofill": {
2136
+ "$ref": "#/definitions/CSSProperties"
2137
+ },
2138
+ ".StepTitle:disabled": {
2139
+ "$ref": "#/definitions/CSSProperties"
2140
+ },
2141
+ ".StepTitle:focus": {
2142
+ "$ref": "#/definitions/CSSProperties"
2143
+ },
2144
+ ".StepTitle:focus-visible": {
2145
+ "$ref": "#/definitions/CSSProperties"
2146
+ },
2147
+ ".StepTitle:hover": {
2148
+ "$ref": "#/definitions/CSSProperties"
2149
+ },
2150
+ ".Switch": {
2151
+ "$ref": "#/definitions/CSSProperties"
2152
+ },
2153
+ ".Switch--checked": {
2154
+ "$ref": "#/definitions/CSSProperties"
2155
+ },
2156
+ ".Switch::placeholder": {
2157
+ "$ref": "#/definitions/CSSProperties"
2158
+ },
2159
+ ".Switch::selection": {
2160
+ "$ref": "#/definitions/CSSProperties"
2161
+ },
2162
+ ".Switch:active": {
2163
+ "$ref": "#/definitions/CSSProperties"
2164
+ },
2165
+ ".Switch:autofill": {
2166
+ "$ref": "#/definitions/CSSProperties"
2167
+ },
2168
+ ".Switch:disabled": {
2169
+ "$ref": "#/definitions/CSSProperties"
2170
+ },
2171
+ ".Switch:focus": {
2172
+ "$ref": "#/definitions/CSSProperties"
2173
+ },
2174
+ ".Switch:focus-visible": {
2175
+ "$ref": "#/definitions/CSSProperties"
2176
+ },
2177
+ ".Switch:hover": {
2178
+ "$ref": "#/definitions/CSSProperties"
2179
+ },
2180
+ ".SwitchIcon": {
2181
+ "$ref": "#/definitions/CSSProperties"
2182
+ },
2183
+ ".SwitchIcon--checked": {
2184
+ "$ref": "#/definitions/CSSProperties"
2185
+ },
2186
+ ".SwitchIcon::placeholder": {
2187
+ "$ref": "#/definitions/CSSProperties"
2188
+ },
2189
+ ".SwitchIcon::selection": {
2190
+ "$ref": "#/definitions/CSSProperties"
2191
+ },
2192
+ ".SwitchIcon:active": {
2193
+ "$ref": "#/definitions/CSSProperties"
2194
+ },
2195
+ ".SwitchIcon:autofill": {
2196
+ "$ref": "#/definitions/CSSProperties"
2197
+ },
2198
+ ".SwitchIcon:disabled": {
2199
+ "$ref": "#/definitions/CSSProperties"
2200
+ },
2201
+ ".SwitchIcon:focus": {
2202
+ "$ref": "#/definitions/CSSProperties"
2203
+ },
2204
+ ".SwitchIcon:focus-visible": {
2205
+ "$ref": "#/definitions/CSSProperties"
2206
+ },
2207
+ ".SwitchIcon:hover": {
2208
+ "$ref": "#/definitions/CSSProperties"
2209
+ },
2210
+ ".SwitchRoot": {
2211
+ "$ref": "#/definitions/CSSProperties"
2212
+ },
2213
+ ".SwitchRoot--checked": {
2214
+ "$ref": "#/definitions/CSSProperties"
2215
+ },
2216
+ ".SwitchRoot::placeholder": {
2217
+ "$ref": "#/definitions/CSSProperties"
2218
+ },
2219
+ ".SwitchRoot::selection": {
2220
+ "$ref": "#/definitions/CSSProperties"
2221
+ },
2222
+ ".SwitchRoot:active": {
2223
+ "$ref": "#/definitions/CSSProperties"
2224
+ },
2225
+ ".SwitchRoot:autofill": {
2226
+ "$ref": "#/definitions/CSSProperties"
2227
+ },
2228
+ ".SwitchRoot:disabled": {
2229
+ "$ref": "#/definitions/CSSProperties"
2230
+ },
2231
+ ".SwitchRoot:focus": {
2232
+ "$ref": "#/definitions/CSSProperties"
2233
+ },
2234
+ ".SwitchRoot:focus-visible": {
2235
+ "$ref": "#/definitions/CSSProperties"
2236
+ },
2237
+ ".SwitchRoot:hover": {
2238
+ "$ref": "#/definitions/CSSProperties"
2239
+ },
2240
+ ".SwitchThumb": {
2241
+ "$ref": "#/definitions/CSSProperties"
2242
+ },
2243
+ ".SwitchThumb--checked": {
2244
+ "$ref": "#/definitions/CSSProperties"
2245
+ },
2246
+ ".SwitchThumb::placeholder": {
2247
+ "$ref": "#/definitions/CSSProperties"
2248
+ },
2249
+ ".SwitchThumb::selection": {
2250
+ "$ref": "#/definitions/CSSProperties"
2251
+ },
2252
+ ".SwitchThumb:active": {
2253
+ "$ref": "#/definitions/CSSProperties"
2254
+ },
2255
+ ".SwitchThumb:autofill": {
2256
+ "$ref": "#/definitions/CSSProperties"
2257
+ },
2258
+ ".SwitchThumb:disabled": {
2259
+ "$ref": "#/definitions/CSSProperties"
2260
+ },
2261
+ ".SwitchThumb:focus": {
2262
+ "$ref": "#/definitions/CSSProperties"
2263
+ },
2264
+ ".SwitchThumb:focus-visible": {
2265
+ "$ref": "#/definitions/CSSProperties"
2266
+ },
2267
+ ".SwitchThumb:hover": {
2268
+ "$ref": "#/definitions/CSSProperties"
2269
+ },
2270
+ ".TextArea": {
2271
+ "$ref": "#/definitions/CSSProperties"
2272
+ },
2273
+ ".TextArea--checked": {
2274
+ "$ref": "#/definitions/CSSProperties"
2275
+ },
2276
+ ".TextArea::placeholder": {
2277
+ "$ref": "#/definitions/CSSProperties"
2278
+ },
2279
+ ".TextArea::selection": {
2280
+ "$ref": "#/definitions/CSSProperties"
2281
+ },
2282
+ ".TextArea:active": {
2283
+ "$ref": "#/definitions/CSSProperties"
2284
+ },
2285
+ ".TextArea:autofill": {
2286
+ "$ref": "#/definitions/CSSProperties"
2287
+ },
2288
+ ".TextArea:disabled": {
2289
+ "$ref": "#/definitions/CSSProperties"
2290
+ },
2291
+ ".TextArea:focus": {
2292
+ "$ref": "#/definitions/CSSProperties"
2293
+ },
2294
+ ".TextArea:focus-visible": {
2295
+ "$ref": "#/definitions/CSSProperties"
2296
+ },
2297
+ ".TextArea:hover": {
2298
+ "$ref": "#/definitions/CSSProperties"
2299
+ },
2300
+ ".Title": {
2301
+ "$ref": "#/definitions/CSSProperties"
2302
+ },
2303
+ ".Title--checked": {
2304
+ "$ref": "#/definitions/CSSProperties"
2305
+ },
2306
+ ".Title::placeholder": {
2307
+ "$ref": "#/definitions/CSSProperties"
2308
+ },
2309
+ ".Title::selection": {
2310
+ "$ref": "#/definitions/CSSProperties"
2311
+ },
2312
+ ".Title:active": {
2313
+ "$ref": "#/definitions/CSSProperties"
2314
+ },
2315
+ ".Title:autofill": {
2316
+ "$ref": "#/definitions/CSSProperties"
2317
+ },
2318
+ ".Title:disabled": {
2319
+ "$ref": "#/definitions/CSSProperties"
2320
+ },
2321
+ ".Title:focus": {
2322
+ "$ref": "#/definitions/CSSProperties"
2323
+ },
2324
+ ".Title:focus-visible": {
2325
+ "$ref": "#/definitions/CSSProperties"
2326
+ },
2327
+ ".Title:hover": {
2328
+ "$ref": "#/definitions/CSSProperties"
2329
+ },
2330
+ ".TooltipContent": {
2331
+ "$ref": "#/definitions/CSSProperties"
2332
+ },
2333
+ ".TooltipContent--checked": {
2334
+ "$ref": "#/definitions/CSSProperties"
2335
+ },
2336
+ ".TooltipContent::placeholder": {
2337
+ "$ref": "#/definitions/CSSProperties"
2338
+ },
2339
+ ".TooltipContent::selection": {
2340
+ "$ref": "#/definitions/CSSProperties"
2341
+ },
2342
+ ".TooltipContent:active": {
2343
+ "$ref": "#/definitions/CSSProperties"
2344
+ },
2345
+ ".TooltipContent:autofill": {
2346
+ "$ref": "#/definitions/CSSProperties"
2347
+ },
2348
+ ".TooltipContent:disabled": {
2349
+ "$ref": "#/definitions/CSSProperties"
2350
+ },
2351
+ ".TooltipContent:focus": {
2352
+ "$ref": "#/definitions/CSSProperties"
2353
+ },
2354
+ ".TooltipContent:focus-visible": {
2355
+ "$ref": "#/definitions/CSSProperties"
2356
+ },
2357
+ ".TooltipContent:hover": {
2358
+ "$ref": "#/definitions/CSSProperties"
2359
+ },
2360
+ ".TrackingCodeInput": {
2361
+ "$ref": "#/definitions/CSSProperties"
2362
+ },
2363
+ ".TrackingCodeInput--checked": {
2364
+ "$ref": "#/definitions/CSSProperties"
2365
+ },
2366
+ ".TrackingCodeInput::placeholder": {
2367
+ "$ref": "#/definitions/CSSProperties"
2368
+ },
2369
+ ".TrackingCodeInput::selection": {
2370
+ "$ref": "#/definitions/CSSProperties"
2371
+ },
2372
+ ".TrackingCodeInput:active": {
2373
+ "$ref": "#/definitions/CSSProperties"
2374
+ },
2375
+ ".TrackingCodeInput:autofill": {
2376
+ "$ref": "#/definitions/CSSProperties"
2377
+ },
2378
+ ".TrackingCodeInput:disabled": {
2379
+ "$ref": "#/definitions/CSSProperties"
2380
+ },
2381
+ ".TrackingCodeInput:focus": {
2382
+ "$ref": "#/definitions/CSSProperties"
2383
+ },
2384
+ ".TrackingCodeInput:focus-visible": {
2385
+ "$ref": "#/definitions/CSSProperties"
2386
+ },
2387
+ ".TrackingCodeInput:hover": {
2388
+ "$ref": "#/definitions/CSSProperties"
2389
+ },
2390
+ ".TrackingCodeInputCell": {
2391
+ "$ref": "#/definitions/CSSProperties"
2392
+ },
2393
+ ".TrackingCodeInputCell--checked": {
2394
+ "$ref": "#/definitions/CSSProperties"
2395
+ },
2396
+ ".TrackingCodeInputCell::placeholder": {
2397
+ "$ref": "#/definitions/CSSProperties"
2398
+ },
2399
+ ".TrackingCodeInputCell::selection": {
2400
+ "$ref": "#/definitions/CSSProperties"
2401
+ },
2402
+ ".TrackingCodeInputCell:active": {
2403
+ "$ref": "#/definitions/CSSProperties"
2404
+ },
2405
+ ".TrackingCodeInputCell:autofill": {
2406
+ "$ref": "#/definitions/CSSProperties"
2407
+ },
2408
+ ".TrackingCodeInputCell:disabled": {
2409
+ "$ref": "#/definitions/CSSProperties"
2410
+ },
2411
+ ".TrackingCodeInputCell:focus": {
2412
+ "$ref": "#/definitions/CSSProperties"
2413
+ },
2414
+ ".TrackingCodeInputCell:focus-visible": {
2415
+ "$ref": "#/definitions/CSSProperties"
2416
+ },
2417
+ ".TrackingCodeInputCell:hover": {
2418
+ "$ref": "#/definitions/CSSProperties"
2419
+ },
2420
+ ".TrackingCodeInputSeparator": {
2421
+ "$ref": "#/definitions/CSSProperties"
2422
+ },
2423
+ ".TrackingCodeInputSeparator--checked": {
2424
+ "$ref": "#/definitions/CSSProperties"
2425
+ },
2426
+ ".TrackingCodeInputSeparator::placeholder": {
2427
+ "$ref": "#/definitions/CSSProperties"
2428
+ },
2429
+ ".TrackingCodeInputSeparator::selection": {
2430
+ "$ref": "#/definitions/CSSProperties"
2431
+ },
2432
+ ".TrackingCodeInputSeparator:active": {
2433
+ "$ref": "#/definitions/CSSProperties"
2434
+ },
2435
+ ".TrackingCodeInputSeparator:autofill": {
2436
+ "$ref": "#/definitions/CSSProperties"
2437
+ },
2438
+ ".TrackingCodeInputSeparator:disabled": {
2439
+ "$ref": "#/definitions/CSSProperties"
2440
+ },
2441
+ ".TrackingCodeInputSeparator:focus": {
2442
+ "$ref": "#/definitions/CSSProperties"
2443
+ },
2444
+ ".TrackingCodeInputSeparator:focus-visible": {
2445
+ "$ref": "#/definitions/CSSProperties"
2446
+ },
2447
+ ".TrackingCodeInputSeparator:hover": {
2448
+ "$ref": "#/definitions/CSSProperties"
2449
+ }
2450
+ },
2451
+ "type": "object"
2452
+ },
2453
+ "SoyioTheme": {
2454
+ "enum": [
2455
+ "soyio",
2456
+ "night",
2457
+ "flat"
2458
+ ],
2459
+ "type": "string"
2460
+ },
2461
+ "SoyioWidgetConfig": {
2462
+ "anyOf": [
2463
+ {
2464
+ "$ref": "#/definitions/PrivacyCenterConfig"
2465
+ },
2466
+ {
2467
+ "$ref": "#/definitions/ConsentConfig"
2468
+ }
2469
+ ],
2470
+ "description": "Combined configuration type for generating the JSON schema. This includes all possible configuration options for both PrivacyCenterBox and ConsentBox."
2471
+ }
2472
+ }
2473
+ }