@tylertech/forge 3.14.0-dev.5 → 3.14.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.
- package/custom-elements.json +8638 -8085
- package/dist/secret/forge-secret.css +6 -0
- package/esm/button-area/button-area.js +17 -6
- package/esm/index.d.ts +4 -3
- package/esm/index.js +7 -4
- package/esm/secret/index.d.ts +3 -0
- package/esm/secret/index.js +16 -0
- package/esm/secret/secret.d.ts +138 -0
- package/esm/secret/secret.js +331 -0
- package/esm/secret/secret.scss.js +9 -0
- package/esm/split-view/split-view-panel/split-view-panel.scss.js +1 -1
- package/package.json +5 -5
- package/sass/core/styles/tokens/secret/_tokens.scss +27 -0
- package/sass/secret/_core.scss +169 -0
- package/sass/secret/_token-utils.scss +25 -0
- package/sass/secret/forge-secret.scss +111 -0
- package/sass/secret/index.scss +1 -0
- package/sass/secret/secret.scss +104 -0
- package/vscode.css-custom-data.json +484 -412
- package/vscode.html-custom-data.json +558 -506
|
@@ -32,6 +32,86 @@
|
|
|
32
32
|
"description": "The transition timing function for animations.",
|
|
33
33
|
"values": [{ "name": "string" }]
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"name": "--forge-backdrop-background",
|
|
37
|
+
"description": "The backdrop background color.",
|
|
38
|
+
"values": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "--forge-backdrop-opacity",
|
|
42
|
+
"description": "The backdrop opacity.",
|
|
43
|
+
"values": []
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "--forge-backdrop-z-index",
|
|
47
|
+
"description": "The backdrop z-index.",
|
|
48
|
+
"values": []
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "--forge-backdrop-enter-animation-duration",
|
|
52
|
+
"description": "The animation duration for the enter animation.",
|
|
53
|
+
"values": []
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "--forge-backdrop-enter-animation-easing",
|
|
57
|
+
"description": "The animation easing for the enter animation.",
|
|
58
|
+
"values": []
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "--forge-backdrop-exit-animation-duration",
|
|
62
|
+
"description": "The animation duration for the exit animation.",
|
|
63
|
+
"values": []
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "--forge-backdrop-exit-animation-easing",
|
|
67
|
+
"description": "The animation easing for the exit animation.",
|
|
68
|
+
"values": []
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "--forge-badge-background",
|
|
72
|
+
"description": "The background color.",
|
|
73
|
+
"values": []
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "--forge-badge-color",
|
|
77
|
+
"description": "The text color.",
|
|
78
|
+
"values": []
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "--forge-badge-shape",
|
|
82
|
+
"description": "The shape radius.",
|
|
83
|
+
"values": []
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "--forge-badge-padding-inline",
|
|
87
|
+
"description": "The inline padding.",
|
|
88
|
+
"values": []
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "--forge-badge-padding-block",
|
|
92
|
+
"description": "The block padding.",
|
|
93
|
+
"values": []
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "--forge-badge-border-width",
|
|
97
|
+
"description": "The border width.",
|
|
98
|
+
"values": []
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "--forge-badge-border-color",
|
|
102
|
+
"description": "The border color.",
|
|
103
|
+
"values": []
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "--forge-badge-border-style",
|
|
107
|
+
"description": "The border style.",
|
|
108
|
+
"values": []
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "--forge-badge-gap",
|
|
112
|
+
"description": "The spacing between the content within the badge.",
|
|
113
|
+
"values": []
|
|
114
|
+
},
|
|
35
115
|
{
|
|
36
116
|
"name": "--forge-banner-background",
|
|
37
117
|
"description": "The background color of the banner.",
|
|
@@ -72,6 +152,26 @@
|
|
|
72
152
|
"description": "The transition easing function.",
|
|
73
153
|
"values": []
|
|
74
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"name": "--forge-bottom-sheet-desktop-max-width",
|
|
157
|
+
"description": "The maximum width of the bottom sheet on desktop.",
|
|
158
|
+
"values": []
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "--forge-bottom-sheet-desktop-min-width",
|
|
162
|
+
"description": "The minimum width of the bottom sheet on desktop.",
|
|
163
|
+
"values": []
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "--forge-bottom-sheet-animation-duration",
|
|
167
|
+
"description": "The duration of the bottom sheet animation to fullscreen.",
|
|
168
|
+
"values": []
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "--forge-bottom-sheet-animation-timing",
|
|
172
|
+
"description": "The timing function of the bottom sheet animation to fullscreen.",
|
|
173
|
+
"values": []
|
|
174
|
+
},
|
|
75
175
|
{
|
|
76
176
|
"name": "--forge-button-primary-color",
|
|
77
177
|
"description": "The primary color of the button.",
|
|
@@ -442,106 +542,6 @@
|
|
|
442
542
|
"description": "The cursor when in the disabled state.",
|
|
443
543
|
"values": []
|
|
444
544
|
},
|
|
445
|
-
{
|
|
446
|
-
"name": "--forge-backdrop-background",
|
|
447
|
-
"description": "The backdrop background color.",
|
|
448
|
-
"values": []
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"name": "--forge-backdrop-opacity",
|
|
452
|
-
"description": "The backdrop opacity.",
|
|
453
|
-
"values": []
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"name": "--forge-backdrop-z-index",
|
|
457
|
-
"description": "The backdrop z-index.",
|
|
458
|
-
"values": []
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
"name": "--forge-backdrop-enter-animation-duration",
|
|
462
|
-
"description": "The animation duration for the enter animation.",
|
|
463
|
-
"values": []
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"name": "--forge-backdrop-enter-animation-easing",
|
|
467
|
-
"description": "The animation easing for the enter animation.",
|
|
468
|
-
"values": []
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"name": "--forge-backdrop-exit-animation-duration",
|
|
472
|
-
"description": "The animation duration for the exit animation.",
|
|
473
|
-
"values": []
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"name": "--forge-backdrop-exit-animation-easing",
|
|
477
|
-
"description": "The animation easing for the exit animation.",
|
|
478
|
-
"values": []
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"name": "--forge-badge-background",
|
|
482
|
-
"description": "The background color.",
|
|
483
|
-
"values": []
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"name": "--forge-badge-color",
|
|
487
|
-
"description": "The text color.",
|
|
488
|
-
"values": []
|
|
489
|
-
},
|
|
490
|
-
{
|
|
491
|
-
"name": "--forge-badge-shape",
|
|
492
|
-
"description": "The shape radius.",
|
|
493
|
-
"values": []
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"name": "--forge-badge-padding-inline",
|
|
497
|
-
"description": "The inline padding.",
|
|
498
|
-
"values": []
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
"name": "--forge-badge-padding-block",
|
|
502
|
-
"description": "The block padding.",
|
|
503
|
-
"values": []
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"name": "--forge-badge-border-width",
|
|
507
|
-
"description": "The border width.",
|
|
508
|
-
"values": []
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"name": "--forge-badge-border-color",
|
|
512
|
-
"description": "The border color.",
|
|
513
|
-
"values": []
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"name": "--forge-badge-border-style",
|
|
517
|
-
"description": "The border style.",
|
|
518
|
-
"values": []
|
|
519
|
-
},
|
|
520
|
-
{
|
|
521
|
-
"name": "--forge-badge-gap",
|
|
522
|
-
"description": "The spacing between the content within the badge.",
|
|
523
|
-
"values": []
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"name": "--forge-bottom-sheet-desktop-max-width",
|
|
527
|
-
"description": "The maximum width of the bottom sheet on desktop.",
|
|
528
|
-
"values": []
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"name": "--forge-bottom-sheet-desktop-min-width",
|
|
532
|
-
"description": "The minimum width of the bottom sheet on desktop.",
|
|
533
|
-
"values": []
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"name": "--forge-bottom-sheet-animation-duration",
|
|
537
|
-
"description": "The duration of the bottom sheet animation to fullscreen.",
|
|
538
|
-
"values": []
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"name": "--forge-bottom-sheet-animation-timing",
|
|
542
|
-
"description": "The timing function of the bottom sheet animation to fullscreen.",
|
|
543
|
-
"values": []
|
|
544
|
-
},
|
|
545
545
|
{
|
|
546
546
|
"name": "--forge-card-background",
|
|
547
547
|
"description": "The background color of the card.",
|
|
@@ -1712,6 +1712,31 @@
|
|
|
1712
1712
|
"description": "The inline offset.",
|
|
1713
1713
|
"values": []
|
|
1714
1714
|
},
|
|
1715
|
+
{
|
|
1716
|
+
"name": "--forge-icon-color",
|
|
1717
|
+
"description": "The color of the icon.",
|
|
1718
|
+
"values": []
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"name": "--forge-icon-size",
|
|
1722
|
+
"description": "The size of the icon. Defaults to the font-size of the context it is placed in.",
|
|
1723
|
+
"values": []
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"name": "--forge-icon-width",
|
|
1727
|
+
"description": "The width of the icon.",
|
|
1728
|
+
"values": []
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"name": "--forge-icon-height",
|
|
1732
|
+
"description": "The height of the icon.",
|
|
1733
|
+
"values": []
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"name": "--forge-icon-font-size",
|
|
1737
|
+
"description": "The font size of the icon.",
|
|
1738
|
+
"values": []
|
|
1739
|
+
},
|
|
1715
1740
|
{
|
|
1716
1741
|
"name": "--forge-icon-button-display",
|
|
1717
1742
|
"description": "The display property of the button.",
|
|
@@ -1962,31 +1987,6 @@
|
|
|
1962
1987
|
"description": "The color of the focus indicator.",
|
|
1963
1988
|
"values": []
|
|
1964
1989
|
},
|
|
1965
|
-
{
|
|
1966
|
-
"name": "--forge-icon-color",
|
|
1967
|
-
"description": "The color of the icon.",
|
|
1968
|
-
"values": []
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
"name": "--forge-icon-size",
|
|
1972
|
-
"description": "The size of the icon. Defaults to the font-size of the context it is placed in.",
|
|
1973
|
-
"values": []
|
|
1974
|
-
},
|
|
1975
|
-
{
|
|
1976
|
-
"name": "--forge-icon-width",
|
|
1977
|
-
"description": "The width of the icon.",
|
|
1978
|
-
"values": []
|
|
1979
|
-
},
|
|
1980
|
-
{
|
|
1981
|
-
"name": "--forge-icon-height",
|
|
1982
|
-
"description": "The height of the icon.",
|
|
1983
|
-
"values": []
|
|
1984
|
-
},
|
|
1985
|
-
{
|
|
1986
|
-
"name": "--forge-icon-font-size",
|
|
1987
|
-
"description": "The font size of the icon.",
|
|
1988
|
-
"values": []
|
|
1989
|
-
},
|
|
1990
1990
|
{
|
|
1991
1991
|
"name": "--forge-inline-message-background",
|
|
1992
1992
|
"description": "The background color.",
|
|
@@ -2493,17 +2493,82 @@
|
|
|
2493
2493
|
"values": []
|
|
2494
2494
|
},
|
|
2495
2495
|
{
|
|
2496
|
-
"name": "--forge-
|
|
2497
|
-
"description": "The
|
|
2496
|
+
"name": "--forge-secret-blur",
|
|
2497
|
+
"description": "The radius of the blur effect.",
|
|
2498
2498
|
"values": []
|
|
2499
2499
|
},
|
|
2500
2500
|
{
|
|
2501
|
-
"name": "--forge-
|
|
2502
|
-
"description": "The
|
|
2501
|
+
"name": "--forge-secret-button-background",
|
|
2502
|
+
"description": "The background color of the button.",
|
|
2503
2503
|
"values": []
|
|
2504
2504
|
},
|
|
2505
2505
|
{
|
|
2506
|
-
"name": "--forge-
|
|
2506
|
+
"name": "--forge-secret-button-color",
|
|
2507
|
+
"description": "The text and icon color of the button.",
|
|
2508
|
+
"values": []
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
"name": "--forge-secret-button-shape",
|
|
2512
|
+
"description": "The button's border radius.",
|
|
2513
|
+
"values": []
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
"name": "--forge-secret-button-padding",
|
|
2517
|
+
"description": "The inline padding around the button or inline and block padding around the text button.",
|
|
2518
|
+
"values": []
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"name": "--forge-secret-icon-size",
|
|
2522
|
+
"description": "The icon's size.",
|
|
2523
|
+
"values": []
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"name": "--forge-secret-text-button-shape",
|
|
2527
|
+
"description": "The text button's border radius.",
|
|
2528
|
+
"values": []
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"name": "--forge-secret-text-decoration-line",
|
|
2532
|
+
"description": "The decoration line applied to open inline content.",
|
|
2533
|
+
"values": []
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"name": "--forge-secret-text-decoration-style",
|
|
2537
|
+
"description": "The style of the text decoration line.",
|
|
2538
|
+
"values": []
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"name": "--forge-secret-text-decoration-color",
|
|
2542
|
+
"description": "The color of the text decoration line.",
|
|
2543
|
+
"values": []
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
"name": "--forge-secret-text-underline-offset",
|
|
2547
|
+
"description": "The spacing between the inline content and the text decoration line.",
|
|
2548
|
+
"values": []
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"name": "--forge-secret-transition-duration",
|
|
2552
|
+
"description": "The duration of transitions.",
|
|
2553
|
+
"values": []
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
"name": "--forge-secret-transition-easing",
|
|
2557
|
+
"description": "The timing function of transitions.",
|
|
2558
|
+
"values": []
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
"name": "--forge-skeleton-animation-duration",
|
|
2562
|
+
"description": "The duration of the skeleton animation.",
|
|
2563
|
+
"values": []
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"name": "--forge-skeleton-width",
|
|
2567
|
+
"description": "The width of the skeleton.",
|
|
2568
|
+
"values": []
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
"name": "--forge-skeleton-height",
|
|
2507
2572
|
"description": "The height of the skeleton.",
|
|
2508
2573
|
"values": []
|
|
2509
2574
|
},
|
|
@@ -3828,218 +3893,218 @@
|
|
|
3828
3893
|
"values": []
|
|
3829
3894
|
},
|
|
3830
3895
|
{
|
|
3831
|
-
"name": "--forge-button-toggle-
|
|
3832
|
-
"description": "The `display`
|
|
3896
|
+
"name": "--forge-button-toggle-display",
|
|
3897
|
+
"description": "The `display` style for the button toggle container element.",
|
|
3833
3898
|
"values": []
|
|
3834
3899
|
},
|
|
3835
3900
|
{
|
|
3836
|
-
"name": "--forge-button-toggle-
|
|
3837
|
-
"description": "The
|
|
3901
|
+
"name": "--forge-button-toggle-min-width",
|
|
3902
|
+
"description": "The minimum width.",
|
|
3838
3903
|
"values": []
|
|
3839
3904
|
},
|
|
3840
3905
|
{
|
|
3841
|
-
"name": "--forge-button-toggle-
|
|
3842
|
-
"description": "The
|
|
3906
|
+
"name": "--forge-button-toggle-spacing",
|
|
3907
|
+
"description": "The spacing between the button toggle and its content.",
|
|
3843
3908
|
"values": []
|
|
3844
3909
|
},
|
|
3845
3910
|
{
|
|
3846
|
-
"name": "--forge-button-toggle-
|
|
3847
|
-
"description": "The
|
|
3911
|
+
"name": "--forge-button-toggle-padding-block",
|
|
3912
|
+
"description": "The padding on the block axis.",
|
|
3848
3913
|
"values": []
|
|
3849
3914
|
},
|
|
3850
3915
|
{
|
|
3851
|
-
"name": "--forge-button-toggle-
|
|
3852
|
-
"description": "The
|
|
3916
|
+
"name": "--forge-button-toggle-padding-inline",
|
|
3917
|
+
"description": "The padding on the inline axis.",
|
|
3853
3918
|
"values": []
|
|
3854
3919
|
},
|
|
3855
3920
|
{
|
|
3856
|
-
"name": "--forge-button-toggle-
|
|
3857
|
-
"description": "The
|
|
3921
|
+
"name": "--forge-button-toggle-color",
|
|
3922
|
+
"description": "The color of the button toggle content.",
|
|
3858
3923
|
"values": []
|
|
3859
3924
|
},
|
|
3860
3925
|
{
|
|
3861
|
-
"name": "--forge-button-toggle-
|
|
3862
|
-
"description": "The
|
|
3926
|
+
"name": "--forge-button-toggle-background",
|
|
3927
|
+
"description": "The background of the button toggle.",
|
|
3863
3928
|
"values": []
|
|
3864
3929
|
},
|
|
3865
3930
|
{
|
|
3866
|
-
"name": "--forge-button-toggle-
|
|
3867
|
-
"description": "The
|
|
3931
|
+
"name": "--forge-button-toggle-cursor",
|
|
3932
|
+
"description": "The cursor of the button toggle.",
|
|
3868
3933
|
"values": []
|
|
3869
3934
|
},
|
|
3870
3935
|
{
|
|
3871
|
-
"name": "--forge-button-toggle-
|
|
3872
|
-
"description": "The
|
|
3936
|
+
"name": "--forge-button-toggle-border-width",
|
|
3937
|
+
"description": "The border-width of the button toggle.",
|
|
3873
3938
|
"values": []
|
|
3874
3939
|
},
|
|
3875
3940
|
{
|
|
3876
|
-
"name": "--forge-button-toggle-
|
|
3877
|
-
"description": "The
|
|
3941
|
+
"name": "--forge-button-toggle-border-style",
|
|
3942
|
+
"description": "The border-style of the button toggle.",
|
|
3878
3943
|
"values": []
|
|
3879
3944
|
},
|
|
3880
3945
|
{
|
|
3881
|
-
"name": "--forge-button-toggle-
|
|
3882
|
-
"description": "The color of the
|
|
3946
|
+
"name": "--forge-button-toggle-border-color",
|
|
3947
|
+
"description": "The border-color of the button toggle.",
|
|
3883
3948
|
"values": []
|
|
3884
3949
|
},
|
|
3885
3950
|
{
|
|
3886
|
-
"name": "--forge-button-toggle-
|
|
3887
|
-
"description": "The shape radius of the
|
|
3951
|
+
"name": "--forge-button-toggle-shape",
|
|
3952
|
+
"description": "The shape radius of the button toggle.",
|
|
3888
3953
|
"values": []
|
|
3889
3954
|
},
|
|
3890
3955
|
{
|
|
3891
|
-
"name": "--forge-button-toggle-
|
|
3892
|
-
"description": "The start-start shape radius.",
|
|
3956
|
+
"name": "--forge-button-toggle-shape-start-start",
|
|
3957
|
+
"description": "The start-start shape radius of the button toggle.",
|
|
3893
3958
|
"values": []
|
|
3894
3959
|
},
|
|
3895
3960
|
{
|
|
3896
|
-
"name": "--forge-button-toggle-
|
|
3897
|
-
"description": "The start-end shape radius.",
|
|
3961
|
+
"name": "--forge-button-toggle-shape-start-end",
|
|
3962
|
+
"description": "The start-end shape radius of the button toggle.",
|
|
3898
3963
|
"values": []
|
|
3899
3964
|
},
|
|
3900
3965
|
{
|
|
3901
|
-
"name": "--forge-button-toggle-
|
|
3902
|
-
"description": "The end-start shape radius.",
|
|
3966
|
+
"name": "--forge-button-toggle-shape-end-start",
|
|
3967
|
+
"description": "The end-start shape radius of the button toggle.",
|
|
3903
3968
|
"values": []
|
|
3904
3969
|
},
|
|
3905
3970
|
{
|
|
3906
|
-
"name": "--forge-button-toggle-
|
|
3907
|
-
"description": "The end-end shape radius.",
|
|
3971
|
+
"name": "--forge-button-toggle-shape-end-end",
|
|
3972
|
+
"description": "The end-end shape radius of the button toggle.",
|
|
3908
3973
|
"values": []
|
|
3909
3974
|
},
|
|
3910
3975
|
{
|
|
3911
|
-
"name": "--forge-button-toggle-
|
|
3912
|
-
"description": "The
|
|
3976
|
+
"name": "--forge-button-toggle-selected-background",
|
|
3977
|
+
"description": "The background of the button toggle when selected.",
|
|
3913
3978
|
"values": []
|
|
3914
3979
|
},
|
|
3915
3980
|
{
|
|
3916
|
-
"name": "--forge-button-toggle-
|
|
3917
|
-
"description": "The
|
|
3981
|
+
"name": "--forge-button-toggle-selected-color",
|
|
3982
|
+
"description": "The color of the button toggle content when selected.",
|
|
3918
3983
|
"values": []
|
|
3919
3984
|
},
|
|
3920
3985
|
{
|
|
3921
|
-
"name": "--forge-button-toggle-
|
|
3922
|
-
"description": "The
|
|
3986
|
+
"name": "--forge-button-toggle-selected-disabled-background",
|
|
3987
|
+
"description": "The background of the button toggle when selected and disabled.",
|
|
3923
3988
|
"values": []
|
|
3924
3989
|
},
|
|
3925
3990
|
{
|
|
3926
|
-
"name": "--forge-button-toggle-
|
|
3927
|
-
"description": "The
|
|
3991
|
+
"name": "--forge-button-toggle-disabled-opacity",
|
|
3992
|
+
"description": "The opacity of the button toggle when disabled.",
|
|
3928
3993
|
"values": []
|
|
3929
3994
|
},
|
|
3930
3995
|
{
|
|
3931
|
-
"name": "--forge-button-toggle-
|
|
3932
|
-
"description": "The
|
|
3996
|
+
"name": "--forge-button-toggle-disabled-cursor",
|
|
3997
|
+
"description": "The cursor of the button toggle when disabled.",
|
|
3933
3998
|
"values": []
|
|
3934
3999
|
},
|
|
3935
4000
|
{
|
|
3936
|
-
"name": "--forge-button-toggle-
|
|
3937
|
-
"description": "The
|
|
4001
|
+
"name": "--forge-button-toggle-disabled-color",
|
|
4002
|
+
"description": "The color of the button toggle content when disabled.",
|
|
3938
4003
|
"values": []
|
|
3939
4004
|
},
|
|
3940
4005
|
{
|
|
3941
|
-
"name": "--forge-button-toggle-
|
|
3942
|
-
"description": "The
|
|
4006
|
+
"name": "--forge-button-toggle-disabled-background",
|
|
4007
|
+
"description": "The background of the button toggle when disabled.",
|
|
3943
4008
|
"values": []
|
|
3944
4009
|
},
|
|
3945
4010
|
{
|
|
3946
|
-
"name": "--forge-button-toggle-
|
|
3947
|
-
"description": "The
|
|
4011
|
+
"name": "--forge-button-toggle-transition-duration",
|
|
4012
|
+
"description": "The transition-duration of various properties.",
|
|
3948
4013
|
"values": []
|
|
3949
4014
|
},
|
|
3950
4015
|
{
|
|
3951
|
-
"name": "--forge-button-toggle-
|
|
3952
|
-
"description": "The
|
|
4016
|
+
"name": "--forge-button-toggle-transition-timing",
|
|
4017
|
+
"description": "The transition-timing of various properties.",
|
|
3953
4018
|
"values": []
|
|
3954
4019
|
},
|
|
3955
4020
|
{
|
|
3956
|
-
"name": "--forge-button-toggle-
|
|
3957
|
-
"description": "The
|
|
4021
|
+
"name": "--forge-button-toggle-group-display",
|
|
4022
|
+
"description": "The `display` of the group container elements.",
|
|
3958
4023
|
"values": []
|
|
3959
4024
|
},
|
|
3960
4025
|
{
|
|
3961
|
-
"name": "--forge-button-toggle-
|
|
3962
|
-
"description": "The
|
|
4026
|
+
"name": "--forge-button-toggle-group-gap",
|
|
4027
|
+
"description": "The space between button toggle elements.",
|
|
3963
4028
|
"values": []
|
|
3964
4029
|
},
|
|
3965
4030
|
{
|
|
3966
|
-
"name": "--forge-button-toggle-
|
|
3967
|
-
"description": "The
|
|
4031
|
+
"name": "--forge-button-toggle-group-padding",
|
|
4032
|
+
"description": "The padding around the button toggle elements when outlined.",
|
|
3968
4033
|
"values": []
|
|
3969
4034
|
},
|
|
3970
4035
|
{
|
|
3971
|
-
"name": "--forge-button-toggle-
|
|
3972
|
-
"description": "The
|
|
4036
|
+
"name": "--forge-button-toggle-group-padding-block",
|
|
4037
|
+
"description": "The block padding around the button toggle elements when outlined.",
|
|
3973
4038
|
"values": []
|
|
3974
4039
|
},
|
|
3975
4040
|
{
|
|
3976
|
-
"name": "--forge-button-toggle-
|
|
3977
|
-
"description": "The
|
|
4041
|
+
"name": "--forge-button-toggle-group-padding-inline",
|
|
4042
|
+
"description": "The inline padding around the button toggle elements when outlined.",
|
|
3978
4043
|
"values": []
|
|
3979
4044
|
},
|
|
3980
4045
|
{
|
|
3981
|
-
"name": "--forge-button-toggle-
|
|
3982
|
-
"description": "The
|
|
4046
|
+
"name": "--forge-button-toggle-group-height",
|
|
4047
|
+
"description": "The height of the group element.",
|
|
3983
4048
|
"values": []
|
|
3984
4049
|
},
|
|
3985
4050
|
{
|
|
3986
|
-
"name": "--forge-button-toggle-
|
|
3987
|
-
"description": "The
|
|
4051
|
+
"name": "--forge-button-toggle-group-dense-height",
|
|
4052
|
+
"description": "The height of the group element when dense.",
|
|
3988
4053
|
"values": []
|
|
3989
4054
|
},
|
|
3990
4055
|
{
|
|
3991
|
-
"name": "--forge-button-toggle-
|
|
3992
|
-
"description": "The
|
|
4056
|
+
"name": "--forge-button-toggle-group-outline-width",
|
|
4057
|
+
"description": "The width of the outline around the group element.",
|
|
3993
4058
|
"values": []
|
|
3994
4059
|
},
|
|
3995
4060
|
{
|
|
3996
|
-
"name": "--forge-button-toggle-
|
|
3997
|
-
"description": "The
|
|
4061
|
+
"name": "--forge-button-toggle-group-outline-style",
|
|
4062
|
+
"description": "The style of the outline around the group element.",
|
|
3998
4063
|
"values": []
|
|
3999
4064
|
},
|
|
4000
4065
|
{
|
|
4001
|
-
"name": "--forge-button-toggle-
|
|
4002
|
-
"description": "The
|
|
4066
|
+
"name": "--forge-button-toggle-group-outline-color",
|
|
4067
|
+
"description": "The color of the outline around the group element.",
|
|
4003
4068
|
"values": []
|
|
4004
4069
|
},
|
|
4005
4070
|
{
|
|
4006
|
-
"name": "--forge-button-toggle-
|
|
4007
|
-
"description": "The color of the
|
|
4071
|
+
"name": "--forge-button-toggle-group-outline-color-active",
|
|
4072
|
+
"description": "The color of the outline around the group element when hovered or focused.",
|
|
4008
4073
|
"values": []
|
|
4009
4074
|
},
|
|
4010
4075
|
{
|
|
4011
|
-
"name": "--forge-button-toggle-
|
|
4012
|
-
"description": "The
|
|
4076
|
+
"name": "--forge-button-toggle-group-shape",
|
|
4077
|
+
"description": "The shape radius of the group container element.",
|
|
4013
4078
|
"values": []
|
|
4014
4079
|
},
|
|
4015
4080
|
{
|
|
4016
|
-
"name": "--forge-button-toggle-
|
|
4017
|
-
"description": "The
|
|
4081
|
+
"name": "--forge-button-toggle-group-shape-start-start",
|
|
4082
|
+
"description": "The start-start shape radius.",
|
|
4018
4083
|
"values": []
|
|
4019
4084
|
},
|
|
4020
4085
|
{
|
|
4021
|
-
"name": "--forge-button-toggle-
|
|
4022
|
-
"description": "The
|
|
4086
|
+
"name": "--forge-button-toggle-group-shape-start-end",
|
|
4087
|
+
"description": "The start-end shape radius.",
|
|
4023
4088
|
"values": []
|
|
4024
4089
|
},
|
|
4025
4090
|
{
|
|
4026
|
-
"name": "--forge-button-toggle-
|
|
4027
|
-
"description": "The
|
|
4091
|
+
"name": "--forge-button-toggle-group-shape-end-start",
|
|
4092
|
+
"description": "The end-start shape radius.",
|
|
4028
4093
|
"values": []
|
|
4029
4094
|
},
|
|
4030
4095
|
{
|
|
4031
|
-
"name": "--forge-button-toggle-
|
|
4032
|
-
"description": "The
|
|
4096
|
+
"name": "--forge-button-toggle-group-shape-end-end",
|
|
4097
|
+
"description": "The end-end shape radius.",
|
|
4033
4098
|
"values": []
|
|
4034
4099
|
},
|
|
4035
4100
|
{
|
|
4036
|
-
"name": "--forge-button-toggle-transition-duration",
|
|
4037
|
-
"description": "The transition
|
|
4101
|
+
"name": "--forge-button-toggle-group-transition-duration",
|
|
4102
|
+
"description": "The transition duration for all animations on the group.",
|
|
4038
4103
|
"values": []
|
|
4039
4104
|
},
|
|
4040
4105
|
{
|
|
4041
|
-
"name": "--forge-button-toggle-transition-timing",
|
|
4042
|
-
"description": "The transition
|
|
4106
|
+
"name": "--forge-button-toggle-group-transition-timing",
|
|
4107
|
+
"description": "The transition timing for all animations on the group.",
|
|
4043
4108
|
"values": []
|
|
4044
4109
|
},
|
|
4045
4110
|
{
|
|
@@ -4493,413 +4558,413 @@
|
|
|
4493
4558
|
"values": []
|
|
4494
4559
|
},
|
|
4495
4560
|
{
|
|
4496
|
-
"name": "--forge-
|
|
4497
|
-
"description": "The background color
|
|
4561
|
+
"name": "--forge-list-item-background",
|
|
4562
|
+
"description": "The background color.",
|
|
4498
4563
|
"values": []
|
|
4499
4564
|
},
|
|
4500
4565
|
{
|
|
4501
|
-
"name": "--forge-
|
|
4502
|
-
"description": "The
|
|
4566
|
+
"name": "--forge-list-item-shape",
|
|
4567
|
+
"description": "The shape of the list item.",
|
|
4503
4568
|
"values": []
|
|
4504
4569
|
},
|
|
4505
4570
|
{
|
|
4506
|
-
"name": "--forge-
|
|
4507
|
-
"description": "The
|
|
4571
|
+
"name": "--forge-list-item-padding",
|
|
4572
|
+
"description": "The padding inside of the container element.",
|
|
4508
4573
|
"values": []
|
|
4509
4574
|
},
|
|
4510
4575
|
{
|
|
4511
|
-
"name": "--forge-
|
|
4512
|
-
"description": "The
|
|
4576
|
+
"name": "--forge-list-item-wrap-padding",
|
|
4577
|
+
"description": "The padding inside of the container element when `wrap` is enabled.",
|
|
4513
4578
|
"values": []
|
|
4514
4579
|
},
|
|
4515
4580
|
{
|
|
4516
|
-
"name": "--forge-
|
|
4517
|
-
"description": "The
|
|
4581
|
+
"name": "--forge-list-item-margin",
|
|
4582
|
+
"description": "The margin around the host element.",
|
|
4518
4583
|
"values": []
|
|
4519
4584
|
},
|
|
4520
4585
|
{
|
|
4521
|
-
"name": "--forge-
|
|
4522
|
-
"description": "The
|
|
4586
|
+
"name": "--forge-list-item-height",
|
|
4587
|
+
"description": "The height of the container.",
|
|
4523
4588
|
"values": []
|
|
4524
4589
|
},
|
|
4525
4590
|
{
|
|
4526
|
-
"name": "--forge-
|
|
4527
|
-
"description": "The
|
|
4591
|
+
"name": "--forge-list-item-indent",
|
|
4592
|
+
"description": "The margin inline state when in the indented state.",
|
|
4528
4593
|
"values": []
|
|
4529
4594
|
},
|
|
4530
4595
|
{
|
|
4531
|
-
"name": "--forge-
|
|
4532
|
-
"description": "The
|
|
4596
|
+
"name": "--forge-list-item-cursor",
|
|
4597
|
+
"description": "The cursor when interactive.",
|
|
4533
4598
|
"values": []
|
|
4534
4599
|
},
|
|
4535
4600
|
{
|
|
4536
|
-
"name": "--forge-
|
|
4537
|
-
"description": "The
|
|
4601
|
+
"name": "--forge-list-item-gap",
|
|
4602
|
+
"description": "The gap between the slotted content.",
|
|
4538
4603
|
"values": []
|
|
4539
4604
|
},
|
|
4540
4605
|
{
|
|
4541
|
-
"name": "--forge-
|
|
4542
|
-
"description": "The color of the
|
|
4606
|
+
"name": "--forge-list-item-text-color",
|
|
4607
|
+
"description": "The text color of the text.",
|
|
4543
4608
|
"values": []
|
|
4544
4609
|
},
|
|
4545
4610
|
{
|
|
4546
|
-
"name": "--forge-
|
|
4547
|
-
"description": "The
|
|
4611
|
+
"name": "--forge-list-item-text-font-size",
|
|
4612
|
+
"description": "The font size of the text.",
|
|
4548
4613
|
"values": []
|
|
4549
4614
|
},
|
|
4550
4615
|
{
|
|
4551
|
-
"name": "--forge-
|
|
4552
|
-
"description": "The
|
|
4616
|
+
"name": "--forge-list-item-text-font-weight",
|
|
4617
|
+
"description": "The font weight of the text.",
|
|
4553
4618
|
"values": []
|
|
4554
4619
|
},
|
|
4555
4620
|
{
|
|
4556
|
-
"name": "--forge-
|
|
4557
|
-
"description": "The
|
|
4621
|
+
"name": "--forge-list-item-text-line-height",
|
|
4622
|
+
"description": "The line height of the text.",
|
|
4558
4623
|
"values": []
|
|
4559
4624
|
},
|
|
4560
4625
|
{
|
|
4561
|
-
"name": "--forge-
|
|
4562
|
-
"description": "The color
|
|
4626
|
+
"name": "--forge-list-item-selected-color",
|
|
4627
|
+
"description": "The foreground color when in the selected state.",
|
|
4563
4628
|
"values": []
|
|
4564
4629
|
},
|
|
4565
4630
|
{
|
|
4566
|
-
"name": "--forge-
|
|
4567
|
-
"description": "The color
|
|
4631
|
+
"name": "--forge-list-item-selected-background",
|
|
4632
|
+
"description": "The background color when in the selected state.",
|
|
4568
4633
|
"values": []
|
|
4569
4634
|
},
|
|
4570
4635
|
{
|
|
4571
|
-
"name": "--forge-
|
|
4572
|
-
"description": "The background color
|
|
4636
|
+
"name": "--forge-list-item-selected-opacity",
|
|
4637
|
+
"description": "The opacity of the background color when in the selected state.",
|
|
4573
4638
|
"values": []
|
|
4574
4639
|
},
|
|
4575
4640
|
{
|
|
4576
|
-
"name": "--forge-
|
|
4577
|
-
"description": "The
|
|
4641
|
+
"name": "--forge-list-item-start-selected-color",
|
|
4642
|
+
"description": "The color of the start content when in the selected state.",
|
|
4578
4643
|
"values": []
|
|
4579
4644
|
},
|
|
4580
4645
|
{
|
|
4581
|
-
"name": "--forge-
|
|
4582
|
-
"description": "The
|
|
4646
|
+
"name": "--forge-list-item-end-selected-color",
|
|
4647
|
+
"description": "The color of the end content when in the selected state.",
|
|
4583
4648
|
"values": []
|
|
4584
4649
|
},
|
|
4585
4650
|
{
|
|
4586
|
-
"name": "--forge-
|
|
4587
|
-
"description": "The
|
|
4651
|
+
"name": "--forge-list-item-selected-text-color",
|
|
4652
|
+
"description": "The color of the text when in the selected state.",
|
|
4588
4653
|
"values": []
|
|
4589
4654
|
},
|
|
4590
4655
|
{
|
|
4591
|
-
"name": "--forge-
|
|
4592
|
-
"description": "The
|
|
4656
|
+
"name": "--forge-list-item-disabled-opacity",
|
|
4657
|
+
"description": "The opacity of the element when in the disabled state.",
|
|
4593
4658
|
"values": []
|
|
4594
4659
|
},
|
|
4595
4660
|
{
|
|
4596
|
-
"name": "--forge-
|
|
4597
|
-
"description": "The
|
|
4661
|
+
"name": "--forge-list-item-disabled-cursor",
|
|
4662
|
+
"description": "The cursor when in the disabled state.",
|
|
4598
4663
|
"values": []
|
|
4599
4664
|
},
|
|
4600
4665
|
{
|
|
4601
|
-
"name": "--forge-
|
|
4602
|
-
"description": "The
|
|
4666
|
+
"name": "--forge-list-item-one-line-height",
|
|
4667
|
+
"description": "The line height when in the one/single line state.",
|
|
4603
4668
|
"values": []
|
|
4604
4669
|
},
|
|
4605
4670
|
{
|
|
4606
|
-
"name": "--forge-
|
|
4607
|
-
"description": "The
|
|
4671
|
+
"name": "--forge-list-item-two-line-height",
|
|
4672
|
+
"description": "The line height when in the two line state.",
|
|
4608
4673
|
"values": []
|
|
4609
4674
|
},
|
|
4610
4675
|
{
|
|
4611
|
-
"name": "--forge-
|
|
4612
|
-
"description": "The
|
|
4676
|
+
"name": "--forge-list-item-three-line-height",
|
|
4677
|
+
"description": "The line height when in the three line state.",
|
|
4613
4678
|
"values": []
|
|
4614
4679
|
},
|
|
4615
4680
|
{
|
|
4616
|
-
"name": "--forge-
|
|
4617
|
-
"description": "The
|
|
4681
|
+
"name": "--forge-list-item-dense-one-line-height",
|
|
4682
|
+
"description": "The line height when in the dense one/single line state.",
|
|
4618
4683
|
"values": []
|
|
4619
4684
|
},
|
|
4620
4685
|
{
|
|
4621
|
-
"name": "--forge-
|
|
4622
|
-
"description": "The height
|
|
4686
|
+
"name": "--forge-list-item-dense-two-line-height",
|
|
4687
|
+
"description": "The line height when in the dense two line state.",
|
|
4623
4688
|
"values": []
|
|
4624
4689
|
},
|
|
4625
4690
|
{
|
|
4626
|
-
"name": "--forge-
|
|
4627
|
-
"description": "The
|
|
4691
|
+
"name": "--forge-list-item-dense-three-line-height",
|
|
4692
|
+
"description": "The line height when in the dense three line state.",
|
|
4628
4693
|
"values": []
|
|
4629
4694
|
},
|
|
4630
4695
|
{
|
|
4631
|
-
"name": "--forge-
|
|
4632
|
-
"description": "The
|
|
4696
|
+
"name": "--forge-list-item-dense-font-size",
|
|
4697
|
+
"description": "The font size when in the dense state.",
|
|
4633
4698
|
"values": []
|
|
4634
4699
|
},
|
|
4635
4700
|
{
|
|
4636
|
-
"name": "--forge-
|
|
4637
|
-
"description": "The
|
|
4701
|
+
"name": "--forge-list-item-dense-indent",
|
|
4702
|
+
"description": "The margin inline state when in the dense indented state.",
|
|
4638
4703
|
"values": []
|
|
4639
4704
|
},
|
|
4640
4705
|
{
|
|
4641
|
-
"name": "--forge-
|
|
4642
|
-
"description": "The
|
|
4706
|
+
"name": "--forge-list-item-dense-gap",
|
|
4707
|
+
"description": "The gap between the slotted content when in the dense state.",
|
|
4643
4708
|
"values": []
|
|
4644
4709
|
},
|
|
4645
4710
|
{
|
|
4646
|
-
"name": "--forge-
|
|
4647
|
-
"description": "The
|
|
4711
|
+
"name": "--forge-meter-background",
|
|
4712
|
+
"description": "The background color of the meter.",
|
|
4648
4713
|
"values": []
|
|
4649
4714
|
},
|
|
4650
4715
|
{
|
|
4651
|
-
"name": "--forge-
|
|
4652
|
-
"description": "The
|
|
4716
|
+
"name": "--forge-meter-color",
|
|
4717
|
+
"description": "The color of the meter's bar.",
|
|
4653
4718
|
"values": []
|
|
4654
4719
|
},
|
|
4655
4720
|
{
|
|
4656
|
-
"name": "--forge-
|
|
4657
|
-
"description": "The
|
|
4721
|
+
"name": "--forge-meter-height",
|
|
4722
|
+
"description": "The block size of the meter.",
|
|
4658
4723
|
"values": []
|
|
4659
4724
|
},
|
|
4660
4725
|
{
|
|
4661
|
-
"name": "--forge-
|
|
4662
|
-
"description": "The
|
|
4726
|
+
"name": "--forge-meter-shape",
|
|
4727
|
+
"description": "The border radius of the meter.",
|
|
4663
4728
|
"values": []
|
|
4664
4729
|
},
|
|
4665
4730
|
{
|
|
4666
|
-
"name": "--forge-
|
|
4667
|
-
"description": "The
|
|
4731
|
+
"name": "--forge-meter-bar-inner-shape",
|
|
4732
|
+
"description": "The border radius of the meter's bar.",
|
|
4668
4733
|
"values": []
|
|
4669
4734
|
},
|
|
4670
4735
|
{
|
|
4671
|
-
"name": "--forge-
|
|
4672
|
-
"description": "The
|
|
4736
|
+
"name": "--forge-meter-tickmarks",
|
|
4737
|
+
"description": "The number of tickmarks to display.",
|
|
4673
4738
|
"values": []
|
|
4674
4739
|
},
|
|
4675
4740
|
{
|
|
4676
|
-
"name": "--forge-
|
|
4677
|
-
"description": "The
|
|
4741
|
+
"name": "--forge-meter-tickmark-opacity",
|
|
4742
|
+
"description": "The opacity of the tickmarks.",
|
|
4678
4743
|
"values": []
|
|
4679
4744
|
},
|
|
4680
4745
|
{
|
|
4681
|
-
"name": "--forge-
|
|
4682
|
-
"description": "The
|
|
4746
|
+
"name": "--forge-meter-transition-duration",
|
|
4747
|
+
"description": "The duration of transitions.",
|
|
4683
4748
|
"values": []
|
|
4684
4749
|
},
|
|
4685
4750
|
{
|
|
4686
|
-
"name": "--forge-
|
|
4687
|
-
"description": "The
|
|
4751
|
+
"name": "--forge-meter-transition-timing",
|
|
4752
|
+
"description": "The timing function of transitions.",
|
|
4688
4753
|
"values": []
|
|
4689
4754
|
},
|
|
4690
4755
|
{
|
|
4691
|
-
"name": "--forge-
|
|
4692
|
-
"description": "The
|
|
4756
|
+
"name": "--forge-theme-success",
|
|
4757
|
+
"description": "The color of the bar when the value is optimal.",
|
|
4693
4758
|
"values": []
|
|
4694
4759
|
},
|
|
4695
4760
|
{
|
|
4696
|
-
"name": "--forge-
|
|
4697
|
-
"description": "The
|
|
4761
|
+
"name": "--forge-theme-success-container-low",
|
|
4762
|
+
"description": "The color of the track when the value is optimal.",
|
|
4698
4763
|
"values": []
|
|
4699
4764
|
},
|
|
4700
4765
|
{
|
|
4701
|
-
"name": "--forge-
|
|
4702
|
-
"description": "The
|
|
4766
|
+
"name": "--forge-theme-warning",
|
|
4767
|
+
"description": "The color of the bar when the value is suboptimal.",
|
|
4703
4768
|
"values": []
|
|
4704
4769
|
},
|
|
4705
4770
|
{
|
|
4706
|
-
"name": "--forge-
|
|
4707
|
-
"description": "
|
|
4771
|
+
"name": "--forge-theme-warning-container-low",
|
|
4772
|
+
"description": "The color of the track when the value is suboptimal.",
|
|
4708
4773
|
"values": []
|
|
4709
4774
|
},
|
|
4710
4775
|
{
|
|
4711
|
-
"name": "--forge-
|
|
4712
|
-
"description": "The color of the
|
|
4776
|
+
"name": "--forge-theme-error",
|
|
4777
|
+
"description": "The color of the bar when the value is least optimal.",
|
|
4713
4778
|
"values": []
|
|
4714
4779
|
},
|
|
4715
4780
|
{
|
|
4716
|
-
"name": "--forge-
|
|
4717
|
-
"description": "The
|
|
4781
|
+
"name": "--forge-theme-error-container-low",
|
|
4782
|
+
"description": "The color of the track when the value is least optimal.",
|
|
4718
4783
|
"values": []
|
|
4719
4784
|
},
|
|
4720
4785
|
{
|
|
4721
|
-
"name": "--forge-
|
|
4722
|
-
"description": "The
|
|
4786
|
+
"name": "--forge-meter-group-background",
|
|
4787
|
+
"description": "The background color of the meter group.",
|
|
4723
4788
|
"values": []
|
|
4724
4789
|
},
|
|
4725
4790
|
{
|
|
4726
|
-
"name": "--forge-
|
|
4727
|
-
"description": "The
|
|
4791
|
+
"name": "--forge-meter-group-height",
|
|
4792
|
+
"description": "The block size of the meter group.",
|
|
4728
4793
|
"values": []
|
|
4729
4794
|
},
|
|
4730
4795
|
{
|
|
4731
|
-
"name": "--forge-
|
|
4732
|
-
"description": "The
|
|
4796
|
+
"name": "--forge-meter-group-shape",
|
|
4797
|
+
"description": "The border radius of the meter group.",
|
|
4733
4798
|
"values": []
|
|
4734
4799
|
},
|
|
4735
4800
|
{
|
|
4736
|
-
"name": "--forge-
|
|
4737
|
-
"description": "The
|
|
4801
|
+
"name": "--forge-meter-group-tickmarks",
|
|
4802
|
+
"description": "The number of tickmarks to display.",
|
|
4738
4803
|
"values": []
|
|
4739
4804
|
},
|
|
4740
4805
|
{
|
|
4741
|
-
"name": "--forge-
|
|
4742
|
-
"description": "The
|
|
4806
|
+
"name": "--forge-meter-group-tickmark-color",
|
|
4807
|
+
"description": "The color of the tickmarks.",
|
|
4743
4808
|
"values": []
|
|
4744
4809
|
},
|
|
4745
4810
|
{
|
|
4746
|
-
"name": "--forge-
|
|
4747
|
-
"description": "The
|
|
4811
|
+
"name": "--forge-meter-group-tickmark-opacity",
|
|
4812
|
+
"description": "The opacity of the tickmarks.",
|
|
4748
4813
|
"values": []
|
|
4749
4814
|
},
|
|
4750
4815
|
{
|
|
4751
|
-
"name": "--forge-radio-
|
|
4752
|
-
"description": "The
|
|
4816
|
+
"name": "--forge-radio-primary-color",
|
|
4817
|
+
"description": "The primary color of the radio button when checked.",
|
|
4753
4818
|
"values": []
|
|
4754
4819
|
},
|
|
4755
4820
|
{
|
|
4756
|
-
"name": "--forge-
|
|
4757
|
-
"description": "The
|
|
4821
|
+
"name": "--forge-radio-inactive-color",
|
|
4822
|
+
"description": "The color of the radio button when unchecked.",
|
|
4758
4823
|
"values": []
|
|
4759
4824
|
},
|
|
4760
4825
|
{
|
|
4761
|
-
"name": "--forge-
|
|
4762
|
-
"description": "The
|
|
4826
|
+
"name": "--forge-radio-size",
|
|
4827
|
+
"description": "The size of the radio button in the inline and block directions.",
|
|
4763
4828
|
"values": []
|
|
4764
4829
|
},
|
|
4765
4830
|
{
|
|
4766
|
-
"name": "--forge-
|
|
4767
|
-
"description": "The
|
|
4831
|
+
"name": "--forge-radio-width",
|
|
4832
|
+
"description": "The width of the radio button.",
|
|
4768
4833
|
"values": []
|
|
4769
4834
|
},
|
|
4770
4835
|
{
|
|
4771
|
-
"name": "--forge-
|
|
4772
|
-
"description": "The
|
|
4836
|
+
"name": "--forge-radio-height",
|
|
4837
|
+
"description": "The height of the radio button.",
|
|
4773
4838
|
"values": []
|
|
4774
4839
|
},
|
|
4775
4840
|
{
|
|
4776
|
-
"name": "--forge-
|
|
4777
|
-
"description": "The
|
|
4841
|
+
"name": "--forge-radio-border-width",
|
|
4842
|
+
"description": "The width of the radio button's border.",
|
|
4778
4843
|
"values": []
|
|
4779
4844
|
},
|
|
4780
4845
|
{
|
|
4781
|
-
"name": "--forge-
|
|
4782
|
-
"description": "The
|
|
4846
|
+
"name": "--forge-radio-unchecked-border-color",
|
|
4847
|
+
"description": "The color of the radio button's border when unchecked.",
|
|
4783
4848
|
"values": []
|
|
4784
4849
|
},
|
|
4785
4850
|
{
|
|
4786
|
-
"name": "--forge-
|
|
4787
|
-
"description": "The
|
|
4851
|
+
"name": "--forge-radio-checked-border-color",
|
|
4852
|
+
"description": "The color of the radio button's border when checked.",
|
|
4788
4853
|
"values": []
|
|
4789
4854
|
},
|
|
4790
4855
|
{
|
|
4791
|
-
"name": "--forge-
|
|
4792
|
-
"description": "The
|
|
4856
|
+
"name": "--forge-radio-background",
|
|
4857
|
+
"description": "The background of the radio button.",
|
|
4793
4858
|
"values": []
|
|
4794
4859
|
},
|
|
4795
4860
|
{
|
|
4796
|
-
"name": "--forge-
|
|
4797
|
-
"description": "The
|
|
4861
|
+
"name": "--forge-radio-shape",
|
|
4862
|
+
"description": "The shape of the radio button.",
|
|
4798
4863
|
"values": []
|
|
4799
4864
|
},
|
|
4800
4865
|
{
|
|
4801
|
-
"name": "--forge-
|
|
4802
|
-
"description": "The
|
|
4866
|
+
"name": "--forge-radio-mark-size",
|
|
4867
|
+
"description": "The size of the radio button's mark in the inline and block directions.",
|
|
4803
4868
|
"values": []
|
|
4804
4869
|
},
|
|
4805
4870
|
{
|
|
4806
|
-
"name": "--forge-
|
|
4807
|
-
"description": "The
|
|
4871
|
+
"name": "--forge-radio-mark-width",
|
|
4872
|
+
"description": "The width of the radio button's mark.",
|
|
4808
4873
|
"values": []
|
|
4809
4874
|
},
|
|
4810
4875
|
{
|
|
4811
|
-
"name": "--forge-
|
|
4812
|
-
"description": "The
|
|
4876
|
+
"name": "--forge-radio-mark-height",
|
|
4877
|
+
"description": "The height of the radio button's mark.",
|
|
4813
4878
|
"values": []
|
|
4814
4879
|
},
|
|
4815
4880
|
{
|
|
4816
|
-
"name": "--forge-
|
|
4817
|
-
"description": "The
|
|
4881
|
+
"name": "--forge-radio-mark-color",
|
|
4882
|
+
"description": "The color of the radio button's mark.",
|
|
4818
4883
|
"values": []
|
|
4819
4884
|
},
|
|
4820
4885
|
{
|
|
4821
|
-
"name": "--forge-
|
|
4822
|
-
"description": "The
|
|
4886
|
+
"name": "--forge-radio-gap",
|
|
4887
|
+
"description": "The gap between the radio button and its label.",
|
|
4823
4888
|
"values": []
|
|
4824
4889
|
},
|
|
4825
4890
|
{
|
|
4826
|
-
"name": "--forge-
|
|
4827
|
-
"description": "The
|
|
4891
|
+
"name": "--forge-radio-justify",
|
|
4892
|
+
"description": "The alignment of the radio button and its label in the inline direction.",
|
|
4828
4893
|
"values": []
|
|
4829
4894
|
},
|
|
4830
4895
|
{
|
|
4831
|
-
"name": "--forge-
|
|
4832
|
-
"description": "The
|
|
4896
|
+
"name": "--forge-radio-align",
|
|
4897
|
+
"description": "The alignment of the radio button and its label in the block direction.",
|
|
4833
4898
|
"values": []
|
|
4834
4899
|
},
|
|
4835
4900
|
{
|
|
4836
|
-
"name": "--forge-
|
|
4837
|
-
"description": "The
|
|
4901
|
+
"name": "--forge-radio-direction",
|
|
4902
|
+
"description": "The direction of the radio button and its label.",
|
|
4838
4903
|
"values": []
|
|
4839
4904
|
},
|
|
4840
4905
|
{
|
|
4841
|
-
"name": "--forge-
|
|
4842
|
-
"description": "The
|
|
4906
|
+
"name": "--forge-radio-state-layer-size",
|
|
4907
|
+
"description": "The size of the radio button's state layer in the inline and block directions.",
|
|
4843
4908
|
"values": []
|
|
4844
4909
|
},
|
|
4845
4910
|
{
|
|
4846
|
-
"name": "--forge-
|
|
4847
|
-
"description": "The
|
|
4911
|
+
"name": "--forge-radio-state-layer-width",
|
|
4912
|
+
"description": "The width of the radio button's state layer.",
|
|
4848
4913
|
"values": []
|
|
4849
4914
|
},
|
|
4850
4915
|
{
|
|
4851
|
-
"name": "--forge-
|
|
4852
|
-
"description": "The
|
|
4916
|
+
"name": "--forge-radio-state-layer-height",
|
|
4917
|
+
"description": "The height of the radio button's state layer.",
|
|
4853
4918
|
"values": []
|
|
4854
4919
|
},
|
|
4855
4920
|
{
|
|
4856
|
-
"name": "--forge-
|
|
4857
|
-
"description": "The
|
|
4921
|
+
"name": "--forge-radio-state-layer-unchecked",
|
|
4922
|
+
"description": "color - The color of the radio button's state layer when unchecked.",
|
|
4858
4923
|
"values": []
|
|
4859
4924
|
},
|
|
4860
4925
|
{
|
|
4861
|
-
"name": "--forge-
|
|
4862
|
-
"description": "The
|
|
4926
|
+
"name": "--forge-radio-state-layer-checked-color",
|
|
4927
|
+
"description": "The color of the radio button's state layer when checked.",
|
|
4863
4928
|
"values": []
|
|
4864
4929
|
},
|
|
4865
4930
|
{
|
|
4866
|
-
"name": "--forge-
|
|
4867
|
-
"description": "The
|
|
4931
|
+
"name": "--forge-radio-state-layer-shape",
|
|
4932
|
+
"description": "The shape of the radio button's state layer.",
|
|
4868
4933
|
"values": []
|
|
4869
4934
|
},
|
|
4870
4935
|
{
|
|
4871
|
-
"name": "--forge-
|
|
4872
|
-
"description": "The
|
|
4936
|
+
"name": "--forge-radio-state-layer-dense-size",
|
|
4937
|
+
"description": "The size of the radio button's state layer when dense.",
|
|
4873
4938
|
"values": []
|
|
4874
4939
|
},
|
|
4875
4940
|
{
|
|
4876
|
-
"name": "--forge-
|
|
4877
|
-
"description": "The
|
|
4941
|
+
"name": "--forge-radio-state-layer-dense-width",
|
|
4942
|
+
"description": "The width of the radio button's state layer when dense.",
|
|
4878
4943
|
"values": []
|
|
4879
4944
|
},
|
|
4880
4945
|
{
|
|
4881
|
-
"name": "--forge-
|
|
4882
|
-
"description": "The
|
|
4946
|
+
"name": "--forge-radio-state-layer-dense-height",
|
|
4947
|
+
"description": "The height of the radio button's state layer when dense.",
|
|
4883
4948
|
"values": []
|
|
4884
4949
|
},
|
|
4885
4950
|
{
|
|
4886
|
-
"name": "--forge-
|
|
4887
|
-
"description": "The
|
|
4951
|
+
"name": "--forge-radio-disabled-opacity",
|
|
4952
|
+
"description": "The opacity of the radio button when disabled.",
|
|
4888
4953
|
"values": []
|
|
4889
4954
|
},
|
|
4890
4955
|
{
|
|
4891
|
-
"name": "--forge-
|
|
4892
|
-
"description": "The
|
|
4956
|
+
"name": "--forge-radio-animation-duration",
|
|
4957
|
+
"description": "The duration of the radio button's animations.",
|
|
4893
4958
|
"values": []
|
|
4894
4959
|
},
|
|
4895
4960
|
{
|
|
4896
|
-
"name": "--forge-
|
|
4897
|
-
"description": "The
|
|
4961
|
+
"name": "--forge-radio-animation-timing-function",
|
|
4962
|
+
"description": "The timing function of the radio button's animations.",
|
|
4898
4963
|
"values": []
|
|
4899
4964
|
},
|
|
4900
4965
|
{
|
|
4901
|
-
"name": "--forge-
|
|
4902
|
-
"description": "The
|
|
4966
|
+
"name": "--forge-radio-animation-delay",
|
|
4967
|
+
"description": "The delay of the radio button's animations.",
|
|
4903
4968
|
"values": []
|
|
4904
4969
|
},
|
|
4905
4970
|
{
|
|
@@ -5455,6 +5520,18 @@
|
|
|
5455
5520
|
],
|
|
5456
5521
|
"pseudoElements": [
|
|
5457
5522
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5523
|
+
{
|
|
5524
|
+
"name": "::part(root)",
|
|
5525
|
+
"description": "The root element of the backdrop."
|
|
5526
|
+
},
|
|
5527
|
+
{
|
|
5528
|
+
"name": "::part(root)",
|
|
5529
|
+
"description": "The root element of the bottom sheet."
|
|
5530
|
+
},
|
|
5531
|
+
{
|
|
5532
|
+
"name": "::part(surface)",
|
|
5533
|
+
"description": "The surface element of the bottom sheet within th dialog."
|
|
5534
|
+
},
|
|
5458
5535
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5459
5536
|
{
|
|
5460
5537
|
"name": "::part(focus-indicator)",
|
|
@@ -5477,18 +5554,6 @@
|
|
|
5477
5554
|
"name": "::part(state-layer)",
|
|
5478
5555
|
"description": "The state layer surface element."
|
|
5479
5556
|
},
|
|
5480
|
-
{
|
|
5481
|
-
"name": "::part(root)",
|
|
5482
|
-
"description": "The root element of the backdrop."
|
|
5483
|
-
},
|
|
5484
|
-
{
|
|
5485
|
-
"name": "::part(root)",
|
|
5486
|
-
"description": "The root element of the bottom sheet."
|
|
5487
|
-
},
|
|
5488
|
-
{
|
|
5489
|
-
"name": "::part(surface)",
|
|
5490
|
-
"description": "The surface element of the bottom sheet within th dialog."
|
|
5491
|
-
},
|
|
5492
5557
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5493
5558
|
{ "name": "::part(root)", "description": "Styles the root element." },
|
|
5494
5559
|
{
|
|
@@ -5644,6 +5709,7 @@
|
|
|
5644
5709
|
"name": "::part(indicator)",
|
|
5645
5710
|
"description": "The focus indicator element."
|
|
5646
5711
|
},
|
|
5712
|
+
{ "name": "::part(svg)", "description": "The internal SVG element." },
|
|
5647
5713
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5648
5714
|
{
|
|
5649
5715
|
"name": "::part(focus-indicator)",
|
|
@@ -5653,7 +5719,6 @@
|
|
|
5653
5719
|
"name": "::part(state-layer)",
|
|
5654
5720
|
"description": "The state-layer surface element."
|
|
5655
5721
|
},
|
|
5656
|
-
{ "name": "::part(svg)", "description": "The internal SVG element." },
|
|
5657
5722
|
{ "name": "::part(root)", "description": "The root layout element." },
|
|
5658
5723
|
{
|
|
5659
5724
|
"name": "::part(container)",
|
|
@@ -5698,6 +5763,13 @@
|
|
|
5698
5763
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5699
5764
|
{ "name": "::part(header)", "description": "The header of the scaffold." },
|
|
5700
5765
|
{ "name": "::part(body)", "description": "The body of the scaffold." },
|
|
5766
|
+
{ "name": "::part(root)", "description": "The root container." },
|
|
5767
|
+
{ "name": "::part(content)", "description": "The content container." },
|
|
5768
|
+
{ "name": "::part(button)", "description": "The toggle button element." },
|
|
5769
|
+
{
|
|
5770
|
+
"name": "::part(text-button)",
|
|
5771
|
+
"description": "The toggle button element when the secret is set to block."
|
|
5772
|
+
},
|
|
5701
5773
|
{
|
|
5702
5774
|
"name": "::part(root)",
|
|
5703
5775
|
"description": "The root element of the skeleton."
|
|
@@ -5899,10 +5971,6 @@
|
|
|
5899
5971
|
"name": "::part(actions-container)",
|
|
5900
5972
|
"description": "The action container element around the slot."
|
|
5901
5973
|
},
|
|
5902
|
-
{
|
|
5903
|
-
"name": "::part(root)",
|
|
5904
|
-
"description": "The root container element for the group."
|
|
5905
|
-
},
|
|
5906
5974
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5907
5975
|
{
|
|
5908
5976
|
"name": "::part(focus-indicator)",
|
|
@@ -5912,6 +5980,10 @@
|
|
|
5912
5980
|
"name": "::part(state-layer)",
|
|
5913
5981
|
"description": "The state layer surface element."
|
|
5914
5982
|
},
|
|
5983
|
+
{
|
|
5984
|
+
"name": "::part(root)",
|
|
5985
|
+
"description": "The root container element for the group."
|
|
5986
|
+
},
|
|
5915
5987
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5916
5988
|
{
|
|
5917
5989
|
"name": "::part(trigger)",
|
|
@@ -5956,6 +6028,19 @@
|
|
|
5956
6028
|
"description": "The component's root container element."
|
|
5957
6029
|
},
|
|
5958
6030
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
6031
|
+
{
|
|
6032
|
+
"name": "::part(text-container)",
|
|
6033
|
+
"description": "The container for the text content."
|
|
6034
|
+
},
|
|
6035
|
+
{
|
|
6036
|
+
"name": "::part(focus-indicator)",
|
|
6037
|
+
"description": "The forwarded focus indicator's internal indicator element."
|
|
6038
|
+
},
|
|
6039
|
+
{
|
|
6040
|
+
"name": "::part(state-layer)",
|
|
6041
|
+
"description": "The forwarded state layer's internal surface element."
|
|
6042
|
+
},
|
|
6043
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5959
6044
|
{
|
|
5960
6045
|
"name": "::part(track)",
|
|
5961
6046
|
"description": "The element comprising the meter's background."
|
|
@@ -5983,19 +6068,6 @@
|
|
|
5983
6068
|
"description": "Styles the state layer of the radio."
|
|
5984
6069
|
},
|
|
5985
6070
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5986
|
-
{
|
|
5987
|
-
"name": "::part(text-container)",
|
|
5988
|
-
"description": "The container for the text content."
|
|
5989
|
-
},
|
|
5990
|
-
{
|
|
5991
|
-
"name": "::part(focus-indicator)",
|
|
5992
|
-
"description": "The forwarded focus indicator's internal indicator element."
|
|
5993
|
-
},
|
|
5994
|
-
{
|
|
5995
|
-
"name": "::part(state-layer)",
|
|
5996
|
-
"description": "The forwarded state layer's internal surface element."
|
|
5997
|
-
},
|
|
5998
|
-
{ "name": "::part(root)", "description": "The root container element." },
|
|
5999
6071
|
{ "name": "::part(label)", "description": "The label element." },
|
|
6000
6072
|
{
|
|
6001
6073
|
"name": "::part(text-container)",
|
|
@@ -6083,7 +6155,6 @@
|
|
|
6083
6155
|
"name": "::part(focus-indicator)",
|
|
6084
6156
|
"description": "The focus indicator element."
|
|
6085
6157
|
},
|
|
6086
|
-
{ "name": "::part(root)", "description": "The root tree element." },
|
|
6087
6158
|
{ "name": "::part(container)", "description": "The tab container." },
|
|
6088
6159
|
{ "name": "::part(content)", "description": "The tab content container." },
|
|
6089
6160
|
{ "name": "::part(label)", "description": "The tab label container." },
|
|
@@ -6092,6 +6163,7 @@
|
|
|
6092
6163
|
{
|
|
6093
6164
|
"name": "::part(scroll-container)",
|
|
6094
6165
|
"description": "The scroll container element."
|
|
6095
|
-
}
|
|
6166
|
+
},
|
|
6167
|
+
{ "name": "::part(root)", "description": "The root tree element." }
|
|
6096
6168
|
]
|
|
6097
6169
|
}
|