@tylertech/forge 3.8.2-dev.0 → 3.9.0-dev.1
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 +9827 -9331
- package/dist/lib.js +27 -105
- package/dist/lib.js.map +4 -4
- package/dist/toolbar/forge-toolbar.css +1 -0
- package/dist/vscode.css-custom-data.json +950 -943
- package/dist/vscode.html-custom-data.json +819 -772
- package/esm/app-bar/help-button/app-bar-help-button.js +1 -1
- package/esm/app-bar/menu-button/app-bar-menu-button.js +1 -1
- package/esm/app-bar/notification-button/app-bar-notification-button.js +1 -1
- package/esm/app-bar/search/app-bar-search.js +1 -1
- package/esm/autocomplete/autocomplete.js +1 -1
- package/esm/banner/banner.js +1 -1
- package/esm/button/base/base-button-adapter.js +1 -1
- package/esm/button/base/base-button.js +1 -1
- package/esm/calendar/calendar.js +1 -1
- package/esm/chips/chip/chip.js +1 -1
- package/esm/color-picker/color-picker.js +1 -1
- package/esm/core/utils/dismissible-stack.d.ts +5 -1
- package/esm/core/utils/dismissible-stack.js +6 -0
- package/esm/data-table/body/body.d.ts +33 -0
- package/esm/data-table/body/body.js +42 -0
- package/esm/data-table/body/index.d.ts +6 -0
- package/esm/data-table/body/index.js +6 -0
- package/esm/data-table/cell/cell.d.ts +33 -0
- package/esm/data-table/cell/cell.js +42 -0
- package/esm/data-table/cell/index.d.ts +6 -0
- package/esm/data-table/cell/index.js +6 -0
- package/esm/data-table/column/column.d.ts +33 -0
- package/esm/data-table/column/column.js +42 -0
- package/esm/data-table/column/index.d.ts +6 -0
- package/esm/data-table/column/index.js +6 -0
- package/esm/data-table/footer/footer.d.ts +33 -0
- package/esm/data-table/footer/footer.js +42 -0
- package/esm/data-table/footer/index.d.ts +6 -0
- package/esm/data-table/footer/index.js +6 -0
- package/esm/data-table/head/head.d.ts +33 -0
- package/esm/data-table/head/head.js +42 -0
- package/esm/data-table/head/index.d.ts +6 -0
- package/esm/data-table/head/index.js +6 -0
- package/esm/data-table/index.d.ts +12 -0
- package/esm/data-table/index.js +12 -0
- package/esm/data-table/row/index.d.ts +6 -0
- package/esm/data-table/row/index.js +6 -0
- package/esm/data-table/row/row.d.ts +33 -0
- package/esm/data-table/row/row.js +42 -0
- package/esm/data-table/table/index.d.ts +6 -0
- package/esm/data-table/table/index.js +6 -0
- package/esm/data-table/table/table.d.ts +36 -0
- package/esm/data-table/table/table.js +40 -0
- package/esm/date-picker/date-picker.js +1 -1
- package/esm/date-range-picker/date-range-picker.js +1 -1
- package/esm/icon/icon-constants.d.ts +2 -1
- package/esm/icon/icon-constants.js +2 -1
- package/esm/icon/icon-core.js +6 -2
- package/esm/icon/icon-utils.d.ts +2 -1
- package/esm/icon/icon-utils.js +2 -2
- package/esm/icon/icon.d.ts +3 -1
- package/esm/icon/icon.js +1 -1
- package/esm/icon-button/icon-button-core.js +11 -2
- package/esm/list-dropdown/list-dropdown-utils.js +1 -1
- package/esm/list-dropdown/list-dropdown.js +1 -1
- package/esm/menu/menu.js +1 -1
- package/esm/open-icon/open-icon.js +1 -1
- package/esm/paginator/paginator.js +1 -1
- package/esm/popover/popover-constants.d.ts +3 -0
- package/esm/popover/popover-constants.js +4 -2
- package/esm/popover/popover-core.d.ts +4 -0
- package/esm/popover/popover-core.js +20 -0
- package/esm/popover/popover.d.ts +4 -0
- package/esm/popover/popover.js +8 -0
- package/esm/select/select/select.js +1 -1
- package/esm/split-view/split-view-panel/split-view-panel.js +3 -4
- package/esm/stepper/step/step.js +1 -1
- package/esm/table/table-core.js +1 -0
- package/esm/table/table.js +1 -1
- package/esm/tabs/tab-bar/tab-bar-adapter.js +1 -1
- package/esm/tabs/tab-bar/tab-bar-core.d.ts +1 -0
- package/esm/tabs/tab-bar/tab-bar-core.js +27 -30
- package/esm/tabs/tab-bar/tab-bar.js +1 -1
- package/esm/text-field/text-field.js +1 -1
- package/esm/time-picker/time-picker.js +1 -2
- package/esm/toast/toast.js +1 -1
- package/esm/toolbar/toolbar.js +1 -1
- package/package.json +2 -2
- package/sass/data-table/_core.scss +52 -0
- package/sass/data-table/_token-utils.scss +15 -0
- package/sass/data-table/body/body.scss +27 -0
- package/sass/data-table/cell/cell.scss +27 -0
- package/sass/data-table/column/column.scss +27 -0
- package/sass/data-table/footer/footer.scss +27 -0
- package/sass/data-table/head/head.scss +27 -0
- package/sass/data-table/index.scss +12 -0
- package/sass/data-table/row/row.scss +27 -0
- package/sass/data-table/table/table.scss +16 -0
- package/sass/toolbar/_core.scss +5 -0
- package/sass/toolbar/toolbar.scss +4 -0
|
@@ -2,36 +2,6 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/microsoft/vscode-css-languageservice/main/docs/customData.schema.json",
|
|
3
3
|
"version": 1.1,
|
|
4
4
|
"properties": [
|
|
5
|
-
{
|
|
6
|
-
"name": "--forge-avatar-background",
|
|
7
|
-
"description": "The background color of the avatar.",
|
|
8
|
-
"values": [{ "name": "string" }]
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"name": "--forge-avatar-shape",
|
|
12
|
-
"description": "The border radius of the avatar, defaults to 50%.",
|
|
13
|
-
"values": [{ "name": "number" }]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"name": "--forge-avatar-color",
|
|
17
|
-
"description": "The text color of the avatar.",
|
|
18
|
-
"values": [{ "name": "color" }]
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"name": "--forge-avatar-size",
|
|
22
|
-
"description": "The height and width of the avatar.",
|
|
23
|
-
"values": [{ "name": "number" }]
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"name": "--forge-avatar-transition-duration",
|
|
27
|
-
"description": "The transition duration for animations.",
|
|
28
|
-
"values": [{ "name": "number" }]
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"name": "--forge-avatar-transition-timing",
|
|
32
|
-
"description": "The transition timing function for animations.",
|
|
33
|
-
"values": [{ "name": "string" }]
|
|
34
|
-
},
|
|
35
5
|
{
|
|
36
6
|
"name": "--forge-backdrop-background",
|
|
37
7
|
"description": "The backdrop background color.",
|
|
@@ -68,48 +38,43 @@
|
|
|
68
38
|
"values": []
|
|
69
39
|
},
|
|
70
40
|
{
|
|
71
|
-
"name": "--forge-
|
|
72
|
-
"description": "The background color.",
|
|
73
|
-
"values": []
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"name": "--forge-badge-color",
|
|
77
|
-
"description": "The text color.",
|
|
41
|
+
"name": "--forge-banner-background",
|
|
42
|
+
"description": "The background color of the banner.",
|
|
78
43
|
"values": []
|
|
79
44
|
},
|
|
80
45
|
{
|
|
81
|
-
"name": "--forge-
|
|
82
|
-
"description": "The
|
|
46
|
+
"name": "--forge-banner-color",
|
|
47
|
+
"description": "The text color of the banner.",
|
|
83
48
|
"values": []
|
|
84
49
|
},
|
|
85
50
|
{
|
|
86
|
-
"name": "--forge-
|
|
87
|
-
"description": "The
|
|
51
|
+
"name": "--forge-banner-icon-color",
|
|
52
|
+
"description": "The color of the icon.",
|
|
88
53
|
"values": []
|
|
89
54
|
},
|
|
90
55
|
{
|
|
91
|
-
"name": "--forge-
|
|
92
|
-
"description": "The
|
|
56
|
+
"name": "--forge-banner-gap",
|
|
57
|
+
"description": "The gap between the contents.",
|
|
93
58
|
"values": []
|
|
94
59
|
},
|
|
95
60
|
{
|
|
96
|
-
"name": "--forge-
|
|
97
|
-
"description": "The
|
|
61
|
+
"name": "--forge-banner-padding-inline",
|
|
62
|
+
"description": "The inline padding.",
|
|
98
63
|
"values": []
|
|
99
64
|
},
|
|
100
65
|
{
|
|
101
|
-
"name": "--forge-
|
|
102
|
-
"description": "The
|
|
66
|
+
"name": "--forge-banner-padding-block",
|
|
67
|
+
"description": "The block padding.",
|
|
103
68
|
"values": []
|
|
104
69
|
},
|
|
105
70
|
{
|
|
106
|
-
"name": "--forge-
|
|
107
|
-
"description": "The
|
|
71
|
+
"name": "--forge-banner-transition-duration",
|
|
72
|
+
"description": "The transition duration.",
|
|
108
73
|
"values": []
|
|
109
74
|
},
|
|
110
75
|
{
|
|
111
|
-
"name": "--forge-
|
|
112
|
-
"description": "The
|
|
76
|
+
"name": "--forge-banner-transition-easing",
|
|
77
|
+
"description": "The transition easing function.",
|
|
113
78
|
"values": []
|
|
114
79
|
},
|
|
115
80
|
{
|
|
@@ -133,43 +98,78 @@
|
|
|
133
98
|
"values": []
|
|
134
99
|
},
|
|
135
100
|
{
|
|
136
|
-
"name": "--forge-
|
|
137
|
-
"description": "The background color of the
|
|
138
|
-
"values": []
|
|
101
|
+
"name": "--forge-avatar-background",
|
|
102
|
+
"description": "The background color of the avatar.",
|
|
103
|
+
"values": [{ "name": "string" }]
|
|
139
104
|
},
|
|
140
105
|
{
|
|
141
|
-
"name": "--forge-
|
|
142
|
-
"description": "The
|
|
106
|
+
"name": "--forge-avatar-shape",
|
|
107
|
+
"description": "The border radius of the avatar, defaults to 50%.",
|
|
108
|
+
"values": [{ "name": "number" }]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "--forge-avatar-color",
|
|
112
|
+
"description": "The text color of the avatar.",
|
|
113
|
+
"values": [{ "name": "color" }]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "--forge-avatar-size",
|
|
117
|
+
"description": "The height and width of the avatar.",
|
|
118
|
+
"values": [{ "name": "number" }]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "--forge-avatar-transition-duration",
|
|
122
|
+
"description": "The transition duration for animations.",
|
|
123
|
+
"values": [{ "name": "number" }]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "--forge-avatar-transition-timing",
|
|
127
|
+
"description": "The transition timing function for animations.",
|
|
128
|
+
"values": [{ "name": "string" }]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "--forge-badge-background",
|
|
132
|
+
"description": "The background color.",
|
|
143
133
|
"values": []
|
|
144
134
|
},
|
|
145
135
|
{
|
|
146
|
-
"name": "--forge-
|
|
147
|
-
"description": "The color
|
|
136
|
+
"name": "--forge-badge-color",
|
|
137
|
+
"description": "The text color.",
|
|
148
138
|
"values": []
|
|
149
139
|
},
|
|
150
140
|
{
|
|
151
|
-
"name": "--forge-
|
|
152
|
-
"description": "The
|
|
141
|
+
"name": "--forge-badge-shape",
|
|
142
|
+
"description": "The shape radius.",
|
|
153
143
|
"values": []
|
|
154
144
|
},
|
|
155
145
|
{
|
|
156
|
-
"name": "--forge-
|
|
146
|
+
"name": "--forge-badge-padding-inline",
|
|
157
147
|
"description": "The inline padding.",
|
|
158
148
|
"values": []
|
|
159
149
|
},
|
|
160
150
|
{
|
|
161
|
-
"name": "--forge-
|
|
151
|
+
"name": "--forge-badge-padding-block",
|
|
162
152
|
"description": "The block padding.",
|
|
163
153
|
"values": []
|
|
164
154
|
},
|
|
165
155
|
{
|
|
166
|
-
"name": "--forge-
|
|
167
|
-
"description": "The
|
|
156
|
+
"name": "--forge-badge-border-width",
|
|
157
|
+
"description": "The border width.",
|
|
168
158
|
"values": []
|
|
169
159
|
},
|
|
170
160
|
{
|
|
171
|
-
"name": "--forge-
|
|
172
|
-
"description": "The
|
|
161
|
+
"name": "--forge-badge-border-color",
|
|
162
|
+
"description": "The border color.",
|
|
163
|
+
"values": []
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "--forge-badge-border-style",
|
|
167
|
+
"description": "The border style.",
|
|
168
|
+
"values": []
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "--forge-badge-gap",
|
|
172
|
+
"description": "The spacing between the content within the badge.",
|
|
173
173
|
"values": []
|
|
174
174
|
},
|
|
175
175
|
{
|
|
@@ -977,26 +977,6 @@
|
|
|
977
977
|
"description": "The easing function to use for the theme transition.",
|
|
978
978
|
"values": []
|
|
979
979
|
},
|
|
980
|
-
{
|
|
981
|
-
"name": "--forge-divider-color",
|
|
982
|
-
"description": "The color of the divider.",
|
|
983
|
-
"values": []
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
"name": "--forge-divider-width",
|
|
987
|
-
"description": "The width of the divider.",
|
|
988
|
-
"values": []
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
"name": "--forge-divider-border-style",
|
|
992
|
-
"description": "The border-style (dashed, solid) of the divider.",
|
|
993
|
-
"values": []
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
"name": "--forge-divider-margin",
|
|
997
|
-
"description": "The margin of divider.",
|
|
998
|
-
"values": []
|
|
999
|
-
},
|
|
1000
980
|
{
|
|
1001
981
|
"name": "--forge-dialog-background",
|
|
1002
982
|
"description": "The background color of the dialog.",
|
|
@@ -1203,13 +1183,23 @@
|
|
|
1203
1183
|
"values": []
|
|
1204
1184
|
},
|
|
1205
1185
|
{
|
|
1206
|
-
"name": "--forge-
|
|
1207
|
-
"description": "The
|
|
1186
|
+
"name": "--forge-divider-color",
|
|
1187
|
+
"description": "The color of the divider.",
|
|
1208
1188
|
"values": []
|
|
1209
1189
|
},
|
|
1210
1190
|
{
|
|
1211
|
-
"name": "--forge-
|
|
1212
|
-
"description": "The
|
|
1191
|
+
"name": "--forge-divider-width",
|
|
1192
|
+
"description": "The width of the divider.",
|
|
1193
|
+
"values": []
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"name": "--forge-divider-border-style",
|
|
1197
|
+
"description": "The border-style (dashed, solid) of the divider.",
|
|
1198
|
+
"values": []
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"name": "--forge-divider-margin",
|
|
1202
|
+
"description": "The margin of divider.",
|
|
1213
1203
|
"values": []
|
|
1214
1204
|
},
|
|
1215
1205
|
{
|
|
@@ -1407,6 +1397,16 @@
|
|
|
1407
1397
|
"description": "The background of the field when disabled.",
|
|
1408
1398
|
"values": []
|
|
1409
1399
|
},
|
|
1400
|
+
{
|
|
1401
|
+
"name": "--forge-expansion-panel-animation-duration",
|
|
1402
|
+
"description": "The duration of the open/close animation.",
|
|
1403
|
+
"values": []
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"name": "--forge-expansion-panel-animation-easing",
|
|
1407
|
+
"description": "The easing function of the open/close animation.",
|
|
1408
|
+
"values": []
|
|
1409
|
+
},
|
|
1410
1410
|
{
|
|
1411
1411
|
"name": "--forge-file-picker-background",
|
|
1412
1412
|
"description": "Controls the background color.",
|
|
@@ -1478,403 +1478,308 @@
|
|
|
1478
1478
|
"values": []
|
|
1479
1479
|
},
|
|
1480
1480
|
{
|
|
1481
|
-
"name": "--forge-
|
|
1482
|
-
"description": "The
|
|
1481
|
+
"name": "--forge-fab-background-display",
|
|
1482
|
+
"description": "The display property.",
|
|
1483
1483
|
"values": []
|
|
1484
1484
|
},
|
|
1485
1485
|
{
|
|
1486
|
-
"name": "--forge-
|
|
1487
|
-
"description": "The
|
|
1486
|
+
"name": "--forge-fab-gap",
|
|
1487
|
+
"description": "The gap between the icon and the label.",
|
|
1488
1488
|
"values": []
|
|
1489
1489
|
},
|
|
1490
1490
|
{
|
|
1491
|
-
"name": "--forge-
|
|
1492
|
-
"description": "The
|
|
1491
|
+
"name": "--forge-fab-background",
|
|
1492
|
+
"description": "The background color.",
|
|
1493
1493
|
"values": []
|
|
1494
1494
|
},
|
|
1495
1495
|
{
|
|
1496
|
-
"name": "--forge-
|
|
1497
|
-
"description": "The color
|
|
1496
|
+
"name": "--forge-fab-color",
|
|
1497
|
+
"description": "The text color.",
|
|
1498
1498
|
"values": []
|
|
1499
1499
|
},
|
|
1500
1500
|
{
|
|
1501
|
-
"name": "--forge-
|
|
1502
|
-
"description": "The
|
|
1501
|
+
"name": "--forge-fab-size",
|
|
1502
|
+
"description": "The height and min-width of the button.",
|
|
1503
1503
|
"values": []
|
|
1504
1504
|
},
|
|
1505
1505
|
{
|
|
1506
|
-
"name": "--forge-
|
|
1507
|
-
"description": "The
|
|
1506
|
+
"name": "--forge-fab-padding",
|
|
1507
|
+
"description": "The inline padding of the button.",
|
|
1508
1508
|
"values": []
|
|
1509
1509
|
},
|
|
1510
1510
|
{
|
|
1511
|
-
"name": "--forge-
|
|
1512
|
-
"description": "The
|
|
1511
|
+
"name": "--forge-fab-shadow",
|
|
1512
|
+
"description": "The box shadow of the button.",
|
|
1513
1513
|
"values": []
|
|
1514
1514
|
},
|
|
1515
1515
|
{
|
|
1516
|
-
"name": "--forge-
|
|
1517
|
-
"description": "The
|
|
1516
|
+
"name": "--forge-fab-hover-shadow",
|
|
1517
|
+
"description": "The box shadow of the button when hovered.",
|
|
1518
1518
|
"values": []
|
|
1519
1519
|
},
|
|
1520
1520
|
{
|
|
1521
|
-
"name": "--forge-
|
|
1522
|
-
"description": "The
|
|
1521
|
+
"name": "--forge-fab-active-shadow",
|
|
1522
|
+
"description": "The box shadow of the button when active.",
|
|
1523
1523
|
"values": []
|
|
1524
1524
|
},
|
|
1525
1525
|
{
|
|
1526
|
-
"name": "--forge-
|
|
1527
|
-
"description": "The
|
|
1526
|
+
"name": "--forge-fab-lowered-shadow",
|
|
1527
|
+
"description": "The box shadow of the button when lowered.",
|
|
1528
1528
|
"values": []
|
|
1529
1529
|
},
|
|
1530
1530
|
{
|
|
1531
|
-
"name": "--forge-
|
|
1532
|
-
"description": "The
|
|
1531
|
+
"name": "--forge-fab-lowered-hover-shadow",
|
|
1532
|
+
"description": "The box shadow of the button when lowered and hovered.",
|
|
1533
1533
|
"values": []
|
|
1534
1534
|
},
|
|
1535
1535
|
{
|
|
1536
|
-
"name": "--forge-
|
|
1537
|
-
"description": "The
|
|
1536
|
+
"name": "--forge-fab-lowered-active-shadow",
|
|
1537
|
+
"description": "The box shadow of the button when lowered and active.",
|
|
1538
1538
|
"values": []
|
|
1539
1539
|
},
|
|
1540
1540
|
{
|
|
1541
|
-
"name": "--forge-
|
|
1542
|
-
"description": "The
|
|
1541
|
+
"name": "--forge-fab-transition-duration",
|
|
1542
|
+
"description": "The transition duration.",
|
|
1543
1543
|
"values": []
|
|
1544
1544
|
},
|
|
1545
1545
|
{
|
|
1546
|
-
"name": "--forge-
|
|
1547
|
-
"description": "The
|
|
1546
|
+
"name": "--forge-fab-transition-timing",
|
|
1547
|
+
"description": "The transition timing function.",
|
|
1548
1548
|
"values": []
|
|
1549
1549
|
},
|
|
1550
1550
|
{
|
|
1551
|
-
"name": "--forge-
|
|
1552
|
-
"description": "The
|
|
1551
|
+
"name": "--forge-fab-shape",
|
|
1552
|
+
"description": "The border radius of the button.",
|
|
1553
1553
|
"values": []
|
|
1554
1554
|
},
|
|
1555
1555
|
{
|
|
1556
|
-
"name": "--forge-
|
|
1557
|
-
"description": "The
|
|
1556
|
+
"name": "--forge-fab-shape-start-start",
|
|
1557
|
+
"description": "The start-start border radius.",
|
|
1558
1558
|
"values": []
|
|
1559
1559
|
},
|
|
1560
1560
|
{
|
|
1561
|
-
"name": "--forge-
|
|
1562
|
-
"description": "The
|
|
1561
|
+
"name": "--forge-fab-shape-start-end",
|
|
1562
|
+
"description": "The start-end border radius.",
|
|
1563
1563
|
"values": []
|
|
1564
1564
|
},
|
|
1565
1565
|
{
|
|
1566
|
-
"name": "--forge-
|
|
1567
|
-
"description": "The
|
|
1566
|
+
"name": "--forge-fab-shape-end-start",
|
|
1567
|
+
"description": "The end-start border radius.",
|
|
1568
1568
|
"values": []
|
|
1569
1569
|
},
|
|
1570
1570
|
{
|
|
1571
|
-
"name": "--forge-
|
|
1572
|
-
"description": "The
|
|
1571
|
+
"name": "--forge-fab-shape-end-end",
|
|
1572
|
+
"description": "The end-end border radius.",
|
|
1573
1573
|
"values": []
|
|
1574
1574
|
},
|
|
1575
1575
|
{
|
|
1576
|
-
"name": "--forge-
|
|
1577
|
-
"description": "The inline padding
|
|
1578
|
-
"values": []
|
|
1579
|
-
},
|
|
1580
|
-
{
|
|
1581
|
-
"name": "--forge-inline-message-padding-block",
|
|
1582
|
-
"description": "The block padding around the content.",
|
|
1583
|
-
"values": []
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
"name": "--forge-inline-message-border-width",
|
|
1587
|
-
"description": "The border width.",
|
|
1588
|
-
"values": []
|
|
1589
|
-
},
|
|
1590
|
-
{
|
|
1591
|
-
"name": "--forge-inline-message-border-style",
|
|
1592
|
-
"description": "The border style. Defaults to `none`.",
|
|
1593
|
-
"values": []
|
|
1594
|
-
},
|
|
1595
|
-
{
|
|
1596
|
-
"name": "--forge-inline-message-border-color",
|
|
1597
|
-
"description": "The border color.",
|
|
1598
|
-
"values": []
|
|
1599
|
-
},
|
|
1600
|
-
{
|
|
1601
|
-
"name": "--forge-inline-message-gap",
|
|
1602
|
-
"description": "The gap/space between the content elements.",
|
|
1603
|
-
"values": []
|
|
1604
|
-
},
|
|
1605
|
-
{
|
|
1606
|
-
"name": "--forge-inline-message-icon-gap",
|
|
1607
|
-
"description": "The gap/space between the icon and the content.",
|
|
1608
|
-
"values": []
|
|
1609
|
-
},
|
|
1610
|
-
{
|
|
1611
|
-
"name": "--forge-inline-message-content-gap",
|
|
1612
|
-
"description": "The gap/space between the title and the message.",
|
|
1613
|
-
"values": []
|
|
1614
|
-
},
|
|
1615
|
-
{
|
|
1616
|
-
"name": "--forge-inline-message-icon-color",
|
|
1617
|
-
"description": "The icon color.",
|
|
1618
|
-
"values": []
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
"name": "--forge-fab-background-display",
|
|
1622
|
-
"description": "The display property.",
|
|
1623
|
-
"values": []
|
|
1624
|
-
},
|
|
1625
|
-
{
|
|
1626
|
-
"name": "--forge-fab-gap",
|
|
1627
|
-
"description": "The gap between the icon and the label.",
|
|
1628
|
-
"values": []
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"name": "--forge-fab-background",
|
|
1632
|
-
"description": "The background color.",
|
|
1633
|
-
"values": []
|
|
1634
|
-
},
|
|
1635
|
-
{
|
|
1636
|
-
"name": "--forge-fab-color",
|
|
1637
|
-
"description": "The text color.",
|
|
1638
|
-
"values": []
|
|
1639
|
-
},
|
|
1640
|
-
{
|
|
1641
|
-
"name": "--forge-fab-size",
|
|
1642
|
-
"description": "The height and min-width of the button.",
|
|
1643
|
-
"values": []
|
|
1644
|
-
},
|
|
1645
|
-
{
|
|
1646
|
-
"name": "--forge-fab-padding",
|
|
1647
|
-
"description": "The inline padding of the button.",
|
|
1648
|
-
"values": []
|
|
1649
|
-
},
|
|
1650
|
-
{
|
|
1651
|
-
"name": "--forge-fab-shadow",
|
|
1652
|
-
"description": "The box shadow of the button.",
|
|
1653
|
-
"values": []
|
|
1654
|
-
},
|
|
1655
|
-
{
|
|
1656
|
-
"name": "--forge-fab-hover-shadow",
|
|
1657
|
-
"description": "The box shadow of the button when hovered.",
|
|
1658
|
-
"values": []
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"name": "--forge-fab-active-shadow",
|
|
1662
|
-
"description": "The box shadow of the button when active.",
|
|
1663
|
-
"values": []
|
|
1664
|
-
},
|
|
1665
|
-
{
|
|
1666
|
-
"name": "--forge-fab-lowered-shadow",
|
|
1667
|
-
"description": "The box shadow of the button when lowered.",
|
|
1668
|
-
"values": []
|
|
1669
|
-
},
|
|
1670
|
-
{
|
|
1671
|
-
"name": "--forge-fab-lowered-hover-shadow",
|
|
1672
|
-
"description": "The box shadow of the button when lowered and hovered.",
|
|
1576
|
+
"name": "--forge-fab-extended-padding",
|
|
1577
|
+
"description": "The inline padding of the extended button.",
|
|
1673
1578
|
"values": []
|
|
1674
1579
|
},
|
|
1675
1580
|
{
|
|
1676
|
-
"name": "--forge-fab-
|
|
1677
|
-
"description": "The
|
|
1581
|
+
"name": "--forge-fab-extended-min-width",
|
|
1582
|
+
"description": "The min-width of the extended button.",
|
|
1678
1583
|
"values": []
|
|
1679
1584
|
},
|
|
1680
1585
|
{
|
|
1681
|
-
"name": "--forge-fab-
|
|
1682
|
-
"description": "The
|
|
1586
|
+
"name": "--forge-fab-density-small-size",
|
|
1587
|
+
"description": "The height and min-width of the small density button.",
|
|
1683
1588
|
"values": []
|
|
1684
1589
|
},
|
|
1685
1590
|
{
|
|
1686
|
-
"name": "--forge-fab-
|
|
1687
|
-
"description": "The
|
|
1591
|
+
"name": "--forge-fab-density-medium-size",
|
|
1592
|
+
"description": "The height and min-width of the medium density (default) button.",
|
|
1688
1593
|
"values": []
|
|
1689
1594
|
},
|
|
1690
1595
|
{
|
|
1691
|
-
"name": "--forge-fab-
|
|
1692
|
-
"description": "The
|
|
1596
|
+
"name": "--forge-fab-density-large-size",
|
|
1597
|
+
"description": "The height and min-width of the large density button.",
|
|
1693
1598
|
"values": []
|
|
1694
1599
|
},
|
|
1695
1600
|
{
|
|
1696
|
-
"name": "--forge-fab-
|
|
1697
|
-
"description": "The
|
|
1601
|
+
"name": "--forge-fab-disabled-cursor",
|
|
1602
|
+
"description": "The cursor when disabled.",
|
|
1698
1603
|
"values": []
|
|
1699
1604
|
},
|
|
1700
1605
|
{
|
|
1701
|
-
"name": "--forge-fab-
|
|
1702
|
-
"description": "The
|
|
1606
|
+
"name": "--forge-fab-disabled-background",
|
|
1607
|
+
"description": "The background color when disabled.",
|
|
1703
1608
|
"values": []
|
|
1704
1609
|
},
|
|
1705
1610
|
{
|
|
1706
|
-
"name": "--forge-fab-
|
|
1707
|
-
"description": "The
|
|
1611
|
+
"name": "--forge-fab-disabled-color",
|
|
1612
|
+
"description": "The text color when disabled.",
|
|
1708
1613
|
"values": []
|
|
1709
1614
|
},
|
|
1710
1615
|
{
|
|
1711
|
-
"name": "--forge-fab-
|
|
1712
|
-
"description": "The
|
|
1616
|
+
"name": "--forge-fab-disabled-opacity",
|
|
1617
|
+
"description": "The opacity when disabled.",
|
|
1713
1618
|
"values": []
|
|
1714
1619
|
},
|
|
1715
1620
|
{
|
|
1716
|
-
"name": "--forge-
|
|
1717
|
-
"description": "The
|
|
1621
|
+
"name": "--forge-focus-indicator-display",
|
|
1622
|
+
"description": "The `display` style. Defaults to `flex`.",
|
|
1718
1623
|
"values": []
|
|
1719
1624
|
},
|
|
1720
1625
|
{
|
|
1721
|
-
"name": "--forge-
|
|
1722
|
-
"description": "The
|
|
1626
|
+
"name": "--forge-focus-indicator-width",
|
|
1627
|
+
"description": "The width of the focus indicator when resting.",
|
|
1723
1628
|
"values": []
|
|
1724
1629
|
},
|
|
1725
1630
|
{
|
|
1726
|
-
"name": "--forge-
|
|
1727
|
-
"description": "The
|
|
1631
|
+
"name": "--forge-focus-indicator-active-width",
|
|
1632
|
+
"description": "The width of the focus indicator when active. When animating this is the max extent.",
|
|
1728
1633
|
"values": []
|
|
1729
1634
|
},
|
|
1730
1635
|
{
|
|
1731
|
-
"name": "--forge-
|
|
1732
|
-
"description": "The
|
|
1636
|
+
"name": "--forge-focus-indicator-color",
|
|
1637
|
+
"description": "The color of the focus indicator.",
|
|
1733
1638
|
"values": []
|
|
1734
1639
|
},
|
|
1735
1640
|
{
|
|
1736
|
-
"name": "--forge-
|
|
1737
|
-
"description": "The
|
|
1641
|
+
"name": "--forge-focus-indicator-shape",
|
|
1642
|
+
"description": "The shape of the focus indicator.",
|
|
1738
1643
|
"values": []
|
|
1739
1644
|
},
|
|
1740
1645
|
{
|
|
1741
|
-
"name": "--forge-
|
|
1742
|
-
"description": "The
|
|
1646
|
+
"name": "--forge-focus-indicator-duration",
|
|
1647
|
+
"description": "The animation duration.",
|
|
1743
1648
|
"values": []
|
|
1744
1649
|
},
|
|
1745
1650
|
{
|
|
1746
|
-
"name": "--forge-
|
|
1747
|
-
"description": "The
|
|
1651
|
+
"name": "--forge-focus-indicator-easing",
|
|
1652
|
+
"description": "The animation easing function.",
|
|
1748
1653
|
"values": []
|
|
1749
1654
|
},
|
|
1750
1655
|
{
|
|
1751
|
-
"name": "--forge-
|
|
1752
|
-
"description": "The
|
|
1656
|
+
"name": "--forge-focus-indicator-shape-start-start",
|
|
1657
|
+
"description": "The start start shape.",
|
|
1753
1658
|
"values": []
|
|
1754
1659
|
},
|
|
1755
1660
|
{
|
|
1756
|
-
"name": "--forge-
|
|
1757
|
-
"description": "The
|
|
1661
|
+
"name": "--forge-focus-indicator-shape-start-end",
|
|
1662
|
+
"description": "The start end shape.",
|
|
1758
1663
|
"values": []
|
|
1759
1664
|
},
|
|
1760
1665
|
{
|
|
1761
|
-
"name": "--forge-
|
|
1762
|
-
"description": "
|
|
1666
|
+
"name": "--forge-focus-indicator-shape-end-start",
|
|
1667
|
+
"description": "The end start shape.",
|
|
1763
1668
|
"values": []
|
|
1764
1669
|
},
|
|
1765
1670
|
{
|
|
1766
|
-
"name": "--forge-
|
|
1767
|
-
"description": "The
|
|
1671
|
+
"name": "--forge-focus-indicator-shape-end-end",
|
|
1672
|
+
"description": "The end end shape.",
|
|
1768
1673
|
"values": []
|
|
1769
1674
|
},
|
|
1770
1675
|
{
|
|
1771
|
-
"name": "--forge-
|
|
1772
|
-
"description": "The
|
|
1676
|
+
"name": "--forge-focus-indicator-outward-offset",
|
|
1677
|
+
"description": "The offset of the focus indicator when outward.",
|
|
1773
1678
|
"values": []
|
|
1774
1679
|
},
|
|
1775
1680
|
{
|
|
1776
|
-
"name": "--forge-
|
|
1777
|
-
"description": "The
|
|
1681
|
+
"name": "--forge-focus-indicator-inward-offset",
|
|
1682
|
+
"description": "The offset of the focus indicator when inward.",
|
|
1778
1683
|
"values": []
|
|
1779
1684
|
},
|
|
1780
1685
|
{
|
|
1781
|
-
"name": "--forge-
|
|
1782
|
-
"description": "The
|
|
1686
|
+
"name": "--forge-focus-indicator-offset-block",
|
|
1687
|
+
"description": "The block offset.",
|
|
1783
1688
|
"values": []
|
|
1784
1689
|
},
|
|
1785
1690
|
{
|
|
1786
|
-
"name": "--forge-
|
|
1787
|
-
"description": "The
|
|
1691
|
+
"name": "--forge-focus-indicator-offset-inline",
|
|
1692
|
+
"description": "The inline offset.",
|
|
1788
1693
|
"values": []
|
|
1789
1694
|
},
|
|
1790
1695
|
{
|
|
1791
|
-
"name": "--forge-
|
|
1792
|
-
"description": "The
|
|
1696
|
+
"name": "--forge-icon-color",
|
|
1697
|
+
"description": "The color of the icon.",
|
|
1793
1698
|
"values": []
|
|
1794
1699
|
},
|
|
1795
1700
|
{
|
|
1796
|
-
"name": "--forge-
|
|
1797
|
-
"description": "The
|
|
1701
|
+
"name": "--forge-icon-size",
|
|
1702
|
+
"description": "The size of the icon. Defaults to the font-size of the context it is placed in.",
|
|
1798
1703
|
"values": []
|
|
1799
1704
|
},
|
|
1800
1705
|
{
|
|
1801
|
-
"name": "--forge-
|
|
1802
|
-
"description": "The
|
|
1706
|
+
"name": "--forge-icon-width",
|
|
1707
|
+
"description": "The width of the icon.",
|
|
1803
1708
|
"values": []
|
|
1804
1709
|
},
|
|
1805
1710
|
{
|
|
1806
|
-
"name": "--forge-
|
|
1807
|
-
"description": "The height of the
|
|
1711
|
+
"name": "--forge-icon-height",
|
|
1712
|
+
"description": "The height of the icon.",
|
|
1808
1713
|
"values": []
|
|
1809
1714
|
},
|
|
1810
1715
|
{
|
|
1811
|
-
"name": "--forge-
|
|
1812
|
-
"description": "The
|
|
1716
|
+
"name": "--forge-icon-font-size",
|
|
1717
|
+
"description": "The font size of the icon.",
|
|
1813
1718
|
"values": []
|
|
1814
1719
|
},
|
|
1815
1720
|
{
|
|
1816
|
-
"name": "--forge-
|
|
1817
|
-
"description": "The
|
|
1721
|
+
"name": "--forge-inline-message-background",
|
|
1722
|
+
"description": "The background color.",
|
|
1818
1723
|
"values": []
|
|
1819
1724
|
},
|
|
1820
1725
|
{
|
|
1821
|
-
"name": "--forge-
|
|
1822
|
-
"description": "The color
|
|
1726
|
+
"name": "--forge-inline-message-color",
|
|
1727
|
+
"description": "The text color.",
|
|
1823
1728
|
"values": []
|
|
1824
1729
|
},
|
|
1825
1730
|
{
|
|
1826
|
-
"name": "--forge-
|
|
1827
|
-
"description": "The
|
|
1731
|
+
"name": "--forge-inline-message-shape",
|
|
1732
|
+
"description": "The shape (border) radius.",
|
|
1828
1733
|
"values": []
|
|
1829
1734
|
},
|
|
1830
1735
|
{
|
|
1831
|
-
"name": "--forge-
|
|
1832
|
-
"description": "The
|
|
1736
|
+
"name": "--forge-inline-message-padding",
|
|
1737
|
+
"description": "The padding around the content.",
|
|
1833
1738
|
"values": []
|
|
1834
1739
|
},
|
|
1835
1740
|
{
|
|
1836
|
-
"name": "--forge-
|
|
1837
|
-
"description": "The
|
|
1741
|
+
"name": "--forge-inline-message-padding-inline",
|
|
1742
|
+
"description": "The inline padding around the content.",
|
|
1838
1743
|
"values": []
|
|
1839
1744
|
},
|
|
1840
1745
|
{
|
|
1841
|
-
"name": "--forge-
|
|
1842
|
-
"description": "The
|
|
1746
|
+
"name": "--forge-inline-message-padding-block",
|
|
1747
|
+
"description": "The block padding around the content.",
|
|
1843
1748
|
"values": []
|
|
1844
1749
|
},
|
|
1845
1750
|
{
|
|
1846
|
-
"name": "--forge-
|
|
1847
|
-
"description": "The
|
|
1751
|
+
"name": "--forge-inline-message-border-width",
|
|
1752
|
+
"description": "The border width.",
|
|
1848
1753
|
"values": []
|
|
1849
1754
|
},
|
|
1850
1755
|
{
|
|
1851
|
-
"name": "--forge-
|
|
1852
|
-
"description": "The
|
|
1756
|
+
"name": "--forge-inline-message-border-style",
|
|
1757
|
+
"description": "The border style. Defaults to `none`.",
|
|
1853
1758
|
"values": []
|
|
1854
1759
|
},
|
|
1855
1760
|
{
|
|
1856
|
-
"name": "--forge-
|
|
1857
|
-
"description": "The color
|
|
1761
|
+
"name": "--forge-inline-message-border-color",
|
|
1762
|
+
"description": "The border color.",
|
|
1858
1763
|
"values": []
|
|
1859
1764
|
},
|
|
1860
1765
|
{
|
|
1861
|
-
"name": "--forge-
|
|
1862
|
-
"description": "The
|
|
1766
|
+
"name": "--forge-inline-message-gap",
|
|
1767
|
+
"description": "The gap/space between the content elements.",
|
|
1863
1768
|
"values": []
|
|
1864
1769
|
},
|
|
1865
1770
|
{
|
|
1866
|
-
"name": "--forge-icon-
|
|
1867
|
-
"description": "The
|
|
1771
|
+
"name": "--forge-inline-message-icon-gap",
|
|
1772
|
+
"description": "The gap/space between the icon and the content.",
|
|
1868
1773
|
"values": []
|
|
1869
1774
|
},
|
|
1870
1775
|
{
|
|
1871
|
-
"name": "--forge-
|
|
1872
|
-
"description": "The
|
|
1776
|
+
"name": "--forge-inline-message-content-gap",
|
|
1777
|
+
"description": "The gap/space between the title and the message.",
|
|
1873
1778
|
"values": []
|
|
1874
1779
|
},
|
|
1875
1780
|
{
|
|
1876
|
-
"name": "--forge-icon-
|
|
1877
|
-
"description": "The
|
|
1781
|
+
"name": "--forge-inline-message-icon-color",
|
|
1782
|
+
"description": "The icon color.",
|
|
1878
1783
|
"values": []
|
|
1879
1784
|
},
|
|
1880
1785
|
{
|
|
@@ -2093,38 +1998,133 @@
|
|
|
2093
1998
|
"values": []
|
|
2094
1999
|
},
|
|
2095
2000
|
{
|
|
2096
|
-
"name": "--forge-icon-button-filled-toggle-icon-color",
|
|
2097
|
-
"description": "The icon color when in the filled variant and toggled.",
|
|
2001
|
+
"name": "--forge-icon-button-filled-toggle-icon-color",
|
|
2002
|
+
"description": "The icon color when in the filled variant and toggled.",
|
|
2003
|
+
"values": []
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
"name": "--forge-icon-button-filled-toggle-on-background-color",
|
|
2007
|
+
"description": "The background color when in the filled variant and toggled on.",
|
|
2008
|
+
"values": []
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"name": "--forge-icon-button-filled-toggle-on-icon-color",
|
|
2012
|
+
"description": "The icon color when in the filled variant and toggled on.",
|
|
2013
|
+
"values": []
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"name": "--forge-icon-button-disabled-cursor",
|
|
2017
|
+
"description": "The cursor when the button is disabled.",
|
|
2018
|
+
"values": []
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"name": "--forge-icon-button-disabled-opacity",
|
|
2022
|
+
"description": "The opacity when the button is disabled.",
|
|
2023
|
+
"values": []
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"name": "--forge-icon-button-popover-icon-padding",
|
|
2027
|
+
"description": "The padding of the popover icon.",
|
|
2028
|
+
"values": []
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"name": "--forge-icon-button-focus-indicator-color",
|
|
2032
|
+
"description": "The color of the focus indicator.",
|
|
2033
|
+
"values": []
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"name": "--forge-label-value-align",
|
|
2037
|
+
"description": "Aligns the label and value. Possible values: `start` (default), `center`, `end`.",
|
|
2038
|
+
"values": []
|
|
2039
|
+
},
|
|
2040
|
+
{
|
|
2041
|
+
"name": "--forge-label-value-label-spacing",
|
|
2042
|
+
"description": "The spacing between the label and value.",
|
|
2043
|
+
"values": []
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
"name": "--forge-label-value-label-block-start-spacing",
|
|
2047
|
+
"description": "The block start spacing for the label.",
|
|
2048
|
+
"values": []
|
|
2049
|
+
},
|
|
2050
|
+
{
|
|
2051
|
+
"name": "--forge-label-value-label-block-end-spacing",
|
|
2052
|
+
"description": "The block end spacing for the label.",
|
|
2053
|
+
"values": []
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"name": "--forge-label-value-label-color",
|
|
2057
|
+
"description": "The color to apply to the label.",
|
|
2058
|
+
"values": []
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"name": "--forge-label-value-icon-spacing",
|
|
2062
|
+
"description": "The spacing between the icon and the label.",
|
|
2063
|
+
"values": []
|
|
2064
|
+
},
|
|
2065
|
+
{
|
|
2066
|
+
"name": "--forge-label-value-inline-label-spacing",
|
|
2067
|
+
"description": "The spacing between the label and value when displayed inline.",
|
|
2068
|
+
"values": []
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
"name": "--forge-label-value-empty-color",
|
|
2072
|
+
"description": "The color to apply to the value when empty.",
|
|
2073
|
+
"values": []
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"name": "--forge-label-value-empty-style",
|
|
2077
|
+
"description": "The font-style to apply to the value when empty.",
|
|
2078
|
+
"values": []
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"name": "--forge-linear-progress-height",
|
|
2082
|
+
"description": "The height of the element.",
|
|
2083
|
+
"values": []
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"name": "--forge-linear-progress-track-color",
|
|
2087
|
+
"description": "The background color of the indicator.",
|
|
2088
|
+
"values": []
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"name": "--forge-linear-progress-track-shape",
|
|
2092
|
+
"description": "The shape of the indicator.",
|
|
2093
|
+
"values": []
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"name": "--forge-linear-progress-indicator-color",
|
|
2097
|
+
"description": "The color of the indicator.",
|
|
2098
2098
|
"values": []
|
|
2099
2099
|
},
|
|
2100
2100
|
{
|
|
2101
|
-
"name": "--forge-
|
|
2102
|
-
"description": "The
|
|
2101
|
+
"name": "--forge-linear-progress-indicator-height",
|
|
2102
|
+
"description": "The height of the indicator only.",
|
|
2103
2103
|
"values": []
|
|
2104
2104
|
},
|
|
2105
2105
|
{
|
|
2106
|
-
"name": "--forge-
|
|
2107
|
-
"description": "The
|
|
2106
|
+
"name": "--forge-linear-progress-determinate-duration",
|
|
2107
|
+
"description": "The duration of the determinate animation.",
|
|
2108
2108
|
"values": []
|
|
2109
2109
|
},
|
|
2110
2110
|
{
|
|
2111
|
-
"name": "--forge-
|
|
2112
|
-
"description": "The
|
|
2111
|
+
"name": "--forge-linear-progress-indeterminate-duration",
|
|
2112
|
+
"description": "The duration of the indeterminate animation.",
|
|
2113
2113
|
"values": []
|
|
2114
2114
|
},
|
|
2115
2115
|
{
|
|
2116
|
-
"name": "--forge-
|
|
2117
|
-
"description": "The
|
|
2116
|
+
"name": "--forge-linear-progress-determinate-easing",
|
|
2117
|
+
"description": "The easing function to use for the determinate animation.",
|
|
2118
2118
|
"values": []
|
|
2119
2119
|
},
|
|
2120
2120
|
{
|
|
2121
|
-
"name": "--forge-
|
|
2122
|
-
"description": "The
|
|
2121
|
+
"name": "--forge-linear-progress-theme-transition-duration",
|
|
2122
|
+
"description": "The duration of the theme transition.",
|
|
2123
2123
|
"values": []
|
|
2124
2124
|
},
|
|
2125
2125
|
{
|
|
2126
|
-
"name": "--forge-
|
|
2127
|
-
"description": "The
|
|
2126
|
+
"name": "--forge-linear-progress-theme-transition-timing",
|
|
2127
|
+
"description": "The easing function to use for the theme transition.",
|
|
2128
2128
|
"values": []
|
|
2129
2129
|
},
|
|
2130
2130
|
{
|
|
@@ -2173,103 +2173,103 @@
|
|
|
2173
2173
|
"values": []
|
|
2174
2174
|
},
|
|
2175
2175
|
{
|
|
2176
|
-
"name": "--forge-
|
|
2177
|
-
"description": "The
|
|
2176
|
+
"name": "--forge-overlay-position",
|
|
2177
|
+
"description": "The `position` of the overlay.",
|
|
2178
2178
|
"values": []
|
|
2179
2179
|
},
|
|
2180
2180
|
{
|
|
2181
|
-
"name": "--forge-
|
|
2182
|
-
"description": "The
|
|
2181
|
+
"name": "--forge-overlay-z-index",
|
|
2182
|
+
"description": "The `z-index` of the overlay. Defaults to the `popup` range.",
|
|
2183
2183
|
"values": []
|
|
2184
2184
|
},
|
|
2185
2185
|
{
|
|
2186
|
-
"name": "--forge-
|
|
2187
|
-
"description": "The
|
|
2186
|
+
"name": "--forge-overlay-height",
|
|
2187
|
+
"description": "The `height` of the overlay. Defaults to `min-content`.",
|
|
2188
2188
|
"values": []
|
|
2189
2189
|
},
|
|
2190
2190
|
{
|
|
2191
|
-
"name": "--forge-
|
|
2192
|
-
"description": "The
|
|
2191
|
+
"name": "--forge-overlay-width",
|
|
2192
|
+
"description": "The `width` of the overlay. Defaults to `min-content`.",
|
|
2193
2193
|
"values": []
|
|
2194
2194
|
},
|
|
2195
2195
|
{
|
|
2196
|
-
"name": "--forge-
|
|
2197
|
-
"description": "The
|
|
2196
|
+
"name": "--forge-overlay-position-block-start",
|
|
2197
|
+
"description": "The `block-start` position of the overlay.",
|
|
2198
2198
|
"values": []
|
|
2199
2199
|
},
|
|
2200
2200
|
{
|
|
2201
|
-
"name": "--forge-
|
|
2202
|
-
"description": "The
|
|
2201
|
+
"name": "--forge-overlay-position-block-end",
|
|
2202
|
+
"description": "The `block-end` position of the overlay.",
|
|
2203
2203
|
"values": []
|
|
2204
2204
|
},
|
|
2205
2205
|
{
|
|
2206
|
-
"name": "--forge-
|
|
2207
|
-
"description": "The
|
|
2206
|
+
"name": "--forge-overlay-position-inline-start",
|
|
2207
|
+
"description": "The `inline-start` position of the overlay.",
|
|
2208
2208
|
"values": []
|
|
2209
2209
|
},
|
|
2210
2210
|
{
|
|
2211
|
-
"name": "--forge-
|
|
2212
|
-
"description": "The
|
|
2211
|
+
"name": "--forge-overlay-position-inline-end",
|
|
2212
|
+
"description": "The `inline-end` position of the overlay.",
|
|
2213
2213
|
"values": []
|
|
2214
2214
|
},
|
|
2215
2215
|
{
|
|
2216
|
-
"name": "--forge-page-state-
|
|
2217
|
-
"description": "The
|
|
2216
|
+
"name": "--forge-page-state-width",
|
|
2217
|
+
"description": "The width of the page state.",
|
|
2218
2218
|
"values": []
|
|
2219
2219
|
},
|
|
2220
2220
|
{
|
|
2221
|
-
"name": "--forge-page-state-
|
|
2222
|
-
"description": "The
|
|
2221
|
+
"name": "--forge-page-state-height",
|
|
2222
|
+
"description": "The height of the page state.",
|
|
2223
2223
|
"values": []
|
|
2224
2224
|
},
|
|
2225
2225
|
{
|
|
2226
|
-
"name": "--forge-page-state-
|
|
2227
|
-
"description": "The
|
|
2226
|
+
"name": "--forge-page-state-spacing",
|
|
2227
|
+
"description": "The spacing of the page state.",
|
|
2228
2228
|
"values": []
|
|
2229
2229
|
},
|
|
2230
2230
|
{
|
|
2231
|
-
"name": "--forge-page-state-
|
|
2232
|
-
"description": "The
|
|
2231
|
+
"name": "--forge-page-state-mobile-width",
|
|
2232
|
+
"description": "The mobile width of the page state.",
|
|
2233
2233
|
"values": []
|
|
2234
2234
|
},
|
|
2235
2235
|
{
|
|
2236
|
-
"name": "--forge-
|
|
2237
|
-
"description": "The
|
|
2236
|
+
"name": "--forge-page-state-graphic-height",
|
|
2237
|
+
"description": "The graphic height of the page state.",
|
|
2238
2238
|
"values": []
|
|
2239
2239
|
},
|
|
2240
2240
|
{
|
|
2241
|
-
"name": "--forge-
|
|
2242
|
-
"description": "The
|
|
2241
|
+
"name": "--forge-page-state-graphic-spacing",
|
|
2242
|
+
"description": "The graphic spacing of the page state.",
|
|
2243
2243
|
"values": []
|
|
2244
2244
|
},
|
|
2245
2245
|
{
|
|
2246
|
-
"name": "--forge-
|
|
2247
|
-
"description": "The
|
|
2246
|
+
"name": "--forge-page-state-mobile-graphic-height",
|
|
2247
|
+
"description": "The mobile graphic height of the page state.",
|
|
2248
2248
|
"values": []
|
|
2249
2249
|
},
|
|
2250
2250
|
{
|
|
2251
|
-
"name": "--forge-
|
|
2252
|
-
"description": "The
|
|
2251
|
+
"name": "--forge-page-state-title-color",
|
|
2252
|
+
"description": "The title color of the page state.",
|
|
2253
2253
|
"values": []
|
|
2254
2254
|
},
|
|
2255
2255
|
{
|
|
2256
|
-
"name": "--forge-
|
|
2257
|
-
"description": "The
|
|
2256
|
+
"name": "--forge-page-state-title-spacing",
|
|
2257
|
+
"description": "The title spacing of the page state.",
|
|
2258
2258
|
"values": []
|
|
2259
2259
|
},
|
|
2260
2260
|
{
|
|
2261
|
-
"name": "--forge-
|
|
2262
|
-
"description": "The
|
|
2261
|
+
"name": "--forge-page-state-message-color",
|
|
2262
|
+
"description": "The message color of the page state.",
|
|
2263
2263
|
"values": []
|
|
2264
2264
|
},
|
|
2265
2265
|
{
|
|
2266
|
-
"name": "--forge-
|
|
2267
|
-
"description": "The
|
|
2266
|
+
"name": "--forge-page-state-message-spacing",
|
|
2267
|
+
"description": "The message spacing of the page state.",
|
|
2268
2268
|
"values": []
|
|
2269
2269
|
},
|
|
2270
2270
|
{
|
|
2271
|
-
"name": "--forge-
|
|
2272
|
-
"description": "The
|
|
2271
|
+
"name": "--forge-page-state-actions-spacing",
|
|
2272
|
+
"description": "The actions spacing of the page state.",
|
|
2273
2273
|
"values": []
|
|
2274
2274
|
},
|
|
2275
2275
|
{
|
|
@@ -2472,61 +2472,6 @@
|
|
|
2472
2472
|
"description": "The `position` of the scaffold body.",
|
|
2473
2473
|
"values": []
|
|
2474
2474
|
},
|
|
2475
|
-
{
|
|
2476
|
-
"name": "--forge-skip-link-background",
|
|
2477
|
-
"description": "The background color of the skip link.",
|
|
2478
|
-
"values": []
|
|
2479
|
-
},
|
|
2480
|
-
{
|
|
2481
|
-
"name": "--forge-skip-link-color",
|
|
2482
|
-
"description": "The text color of the skip link.",
|
|
2483
|
-
"values": []
|
|
2484
|
-
},
|
|
2485
|
-
{
|
|
2486
|
-
"name": "--forge-skip-link-shape",
|
|
2487
|
-
"description": "The border radius of the skip link.",
|
|
2488
|
-
"values": []
|
|
2489
|
-
},
|
|
2490
|
-
{
|
|
2491
|
-
"name": "--forge-skip-link-inset",
|
|
2492
|
-
"description": "The skip link's inset from the edge of the viewport.",
|
|
2493
|
-
"values": []
|
|
2494
|
-
},
|
|
2495
|
-
{
|
|
2496
|
-
"name": "--forge-skip-link-z-index",
|
|
2497
|
-
"description": "The z-index of the skip link.",
|
|
2498
|
-
"values": []
|
|
2499
|
-
},
|
|
2500
|
-
{
|
|
2501
|
-
"name": "--forge-skip-link-elevation",
|
|
2502
|
-
"description": "The box shadow of the skip link.",
|
|
2503
|
-
"values": []
|
|
2504
|
-
},
|
|
2505
|
-
{
|
|
2506
|
-
"name": "--forge-skip-link-padding-block",
|
|
2507
|
-
"description": "The interior padding of the skip link along the block axis.",
|
|
2508
|
-
"values": []
|
|
2509
|
-
},
|
|
2510
|
-
{
|
|
2511
|
-
"name": "--forge-skip-link-padding-inline",
|
|
2512
|
-
"description": "The interior padding of the skip link along the inline axis.",
|
|
2513
|
-
"values": []
|
|
2514
|
-
},
|
|
2515
|
-
{
|
|
2516
|
-
"name": "--forge-skip-link-focus-indicator-color",
|
|
2517
|
-
"description": "The color of the focus indicator.",
|
|
2518
|
-
"values": []
|
|
2519
|
-
},
|
|
2520
|
-
{
|
|
2521
|
-
"name": "--forge-skip-link-transition-duration",
|
|
2522
|
-
"description": "The duration of the skip link's animations.",
|
|
2523
|
-
"values": []
|
|
2524
|
-
},
|
|
2525
|
-
{
|
|
2526
|
-
"name": "--forge-skip-link-transition-timing-function",
|
|
2527
|
-
"description": "The timing function of the skip link's animations.",
|
|
2528
|
-
"values": []
|
|
2529
|
-
},
|
|
2530
2475
|
{
|
|
2531
2476
|
"name": "--forge-skeleton-animation-duration",
|
|
2532
2477
|
"description": "The duration of the skeleton animation.",
|
|
@@ -2622,6 +2567,61 @@
|
|
|
2622
2567
|
"description": "The shape of the avatar skeleton.",
|
|
2623
2568
|
"values": []
|
|
2624
2569
|
},
|
|
2570
|
+
{
|
|
2571
|
+
"name": "--forge-skip-link-background",
|
|
2572
|
+
"description": "The background color of the skip link.",
|
|
2573
|
+
"values": []
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
"name": "--forge-skip-link-color",
|
|
2577
|
+
"description": "The text color of the skip link.",
|
|
2578
|
+
"values": []
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"name": "--forge-skip-link-shape",
|
|
2582
|
+
"description": "The border radius of the skip link.",
|
|
2583
|
+
"values": []
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"name": "--forge-skip-link-inset",
|
|
2587
|
+
"description": "The skip link's inset from the edge of the viewport.",
|
|
2588
|
+
"values": []
|
|
2589
|
+
},
|
|
2590
|
+
{
|
|
2591
|
+
"name": "--forge-skip-link-z-index",
|
|
2592
|
+
"description": "The z-index of the skip link.",
|
|
2593
|
+
"values": []
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
"name": "--forge-skip-link-elevation",
|
|
2597
|
+
"description": "The box shadow of the skip link.",
|
|
2598
|
+
"values": []
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"name": "--forge-skip-link-padding-block",
|
|
2602
|
+
"description": "The interior padding of the skip link along the block axis.",
|
|
2603
|
+
"values": []
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
"name": "--forge-skip-link-padding-inline",
|
|
2607
|
+
"description": "The interior padding of the skip link along the inline axis.",
|
|
2608
|
+
"values": []
|
|
2609
|
+
},
|
|
2610
|
+
{
|
|
2611
|
+
"name": "--forge-skip-link-focus-indicator-color",
|
|
2612
|
+
"description": "The color of the focus indicator.",
|
|
2613
|
+
"values": []
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"name": "--forge-skip-link-transition-duration",
|
|
2617
|
+
"description": "The duration of the skip link's animations.",
|
|
2618
|
+
"values": []
|
|
2619
|
+
},
|
|
2620
|
+
{
|
|
2621
|
+
"name": "--forge-skip-link-transition-timing-function",
|
|
2622
|
+
"description": "The timing function of the skip link's animations.",
|
|
2623
|
+
"values": []
|
|
2624
|
+
},
|
|
2625
2625
|
{
|
|
2626
2626
|
"name": "--forge-theme-primary",
|
|
2627
2627
|
"description": "The primary color of the slider.",
|
|
@@ -2832,6 +2832,46 @@
|
|
|
2832
2832
|
"description": "Controls the flex shorthand property of a child element within the stack.",
|
|
2833
2833
|
"values": []
|
|
2834
2834
|
},
|
|
2835
|
+
{
|
|
2836
|
+
"name": "--forge-state-layer-color",
|
|
2837
|
+
"description": "The color of the state layer. Defaults to the on-surface theme.",
|
|
2838
|
+
"values": []
|
|
2839
|
+
},
|
|
2840
|
+
{
|
|
2841
|
+
"name": "--forge-state-layer-hover-color",
|
|
2842
|
+
"description": "The color of the state layer when hovered.",
|
|
2843
|
+
"values": []
|
|
2844
|
+
},
|
|
2845
|
+
{
|
|
2846
|
+
"name": "--forge-state-layer-hover-opacity",
|
|
2847
|
+
"description": "The opacity of the state layer when hovered.",
|
|
2848
|
+
"values": []
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"name": "--forge-state-layer-pressed-color",
|
|
2852
|
+
"description": "The color of the state layer when pressed.",
|
|
2853
|
+
"values": []
|
|
2854
|
+
},
|
|
2855
|
+
{
|
|
2856
|
+
"name": "--forge-state-layer-pressed-opacity",
|
|
2857
|
+
"description": "The opacity of the state layer when pressed.",
|
|
2858
|
+
"values": []
|
|
2859
|
+
},
|
|
2860
|
+
{
|
|
2861
|
+
"name": "--forge-state-layer-hover-duration",
|
|
2862
|
+
"description": "The duration of the hover animation.",
|
|
2863
|
+
"values": []
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"name": "--forge-state-layer-animation-duration",
|
|
2867
|
+
"description": "The duration of the animation.",
|
|
2868
|
+
"values": []
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
"name": "--forge-state-layer-pressed-duration",
|
|
2872
|
+
"description": "The duration of the pressed animation.",
|
|
2873
|
+
"values": []
|
|
2874
|
+
},
|
|
2835
2875
|
{
|
|
2836
2876
|
"name": "--forge-theme-primary",
|
|
2837
2877
|
"description": "The primary color of the switch.",
|
|
@@ -3367,46 +3407,6 @@
|
|
|
3367
3407
|
"description": "The background of the field when disabled.",
|
|
3368
3408
|
"values": []
|
|
3369
3409
|
},
|
|
3370
|
-
{
|
|
3371
|
-
"name": "--forge-state-layer-color",
|
|
3372
|
-
"description": "The color of the state layer. Defaults to the on-surface theme.",
|
|
3373
|
-
"values": []
|
|
3374
|
-
},
|
|
3375
|
-
{
|
|
3376
|
-
"name": "--forge-state-layer-hover-color",
|
|
3377
|
-
"description": "The color of the state layer when hovered.",
|
|
3378
|
-
"values": []
|
|
3379
|
-
},
|
|
3380
|
-
{
|
|
3381
|
-
"name": "--forge-state-layer-hover-opacity",
|
|
3382
|
-
"description": "The opacity of the state layer when hovered.",
|
|
3383
|
-
"values": []
|
|
3384
|
-
},
|
|
3385
|
-
{
|
|
3386
|
-
"name": "--forge-state-layer-pressed-color",
|
|
3387
|
-
"description": "The color of the state layer when pressed.",
|
|
3388
|
-
"values": []
|
|
3389
|
-
},
|
|
3390
|
-
{
|
|
3391
|
-
"name": "--forge-state-layer-pressed-opacity",
|
|
3392
|
-
"description": "The opacity of the state layer when pressed.",
|
|
3393
|
-
"values": []
|
|
3394
|
-
},
|
|
3395
|
-
{
|
|
3396
|
-
"name": "--forge-state-layer-hover-duration",
|
|
3397
|
-
"description": "The duration of the hover animation.",
|
|
3398
|
-
"values": []
|
|
3399
|
-
},
|
|
3400
|
-
{
|
|
3401
|
-
"name": "--forge-state-layer-animation-duration",
|
|
3402
|
-
"description": "The duration of the animation.",
|
|
3403
|
-
"values": []
|
|
3404
|
-
},
|
|
3405
|
-
{
|
|
3406
|
-
"name": "--forge-state-layer-pressed-duration",
|
|
3407
|
-
"description": "The duration of the pressed animation.",
|
|
3408
|
-
"values": []
|
|
3409
|
-
},
|
|
3410
3410
|
{
|
|
3411
3411
|
"name": "--forge-toast-background",
|
|
3412
3412
|
"description": "The background color of the toast.",
|
|
@@ -3583,208 +3583,423 @@
|
|
|
3583
3583
|
"values": []
|
|
3584
3584
|
},
|
|
3585
3585
|
{
|
|
3586
|
-
"name": "--forge-tooltip-padding",
|
|
3587
|
-
"description": "The padding of the tooltip surface.",
|
|
3586
|
+
"name": "--forge-tooltip-padding",
|
|
3587
|
+
"description": "The padding of the tooltip surface.",
|
|
3588
|
+
"values": []
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"name": "--forge-tooltip-padding-block",
|
|
3592
|
+
"description": "The block padding of the tooltip surface.",
|
|
3593
|
+
"values": []
|
|
3594
|
+
},
|
|
3595
|
+
{
|
|
3596
|
+
"name": "--forge-tooltip-padding-inline",
|
|
3597
|
+
"description": "The inline padding of the tooltip surface.",
|
|
3598
|
+
"values": []
|
|
3599
|
+
},
|
|
3600
|
+
{
|
|
3601
|
+
"name": "--forge-tooltip-max-width",
|
|
3602
|
+
"description": "The maximum width of the tooltip surface.",
|
|
3603
|
+
"values": []
|
|
3604
|
+
},
|
|
3605
|
+
{
|
|
3606
|
+
"name": "--forge-tooltip-elevation",
|
|
3607
|
+
"description": "The elevation of the tooltip surface.",
|
|
3608
|
+
"values": []
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
"name": "--forge-tooltip-border-width",
|
|
3612
|
+
"description": "The border width of the tooltip surface.",
|
|
3613
|
+
"values": []
|
|
3614
|
+
},
|
|
3615
|
+
{
|
|
3616
|
+
"name": "--forge-tooltip-border-style",
|
|
3617
|
+
"description": "The border style of the tooltip surface.",
|
|
3618
|
+
"values": []
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
"name": "--forge-tooltip-border-color",
|
|
3622
|
+
"description": "The border color of the tooltip surface.",
|
|
3623
|
+
"values": []
|
|
3624
|
+
},
|
|
3625
|
+
{
|
|
3626
|
+
"name": "--forge-tooltip-animation-timing",
|
|
3627
|
+
"description": "The animation timing function of the tooltip surface.",
|
|
3628
|
+
"values": []
|
|
3629
|
+
},
|
|
3630
|
+
{
|
|
3631
|
+
"name": "--forge-tooltip-animation-duration",
|
|
3632
|
+
"description": "The animation duration of the tooltip surface.",
|
|
3633
|
+
"values": []
|
|
3634
|
+
},
|
|
3635
|
+
{
|
|
3636
|
+
"name": "--forge-tooltip-animation-offset",
|
|
3637
|
+
"description": "The animation offset of the tooltip surface.",
|
|
3638
|
+
"values": []
|
|
3639
|
+
},
|
|
3640
|
+
{
|
|
3641
|
+
"name": "--forge-tooltip-arrow-size",
|
|
3642
|
+
"description": "The size of the tooltip arrow.",
|
|
3643
|
+
"values": []
|
|
3644
|
+
},
|
|
3645
|
+
{
|
|
3646
|
+
"name": "--forge-tooltip-arrow-height",
|
|
3647
|
+
"description": "The height of the tooltip arrow.",
|
|
3648
|
+
"values": []
|
|
3649
|
+
},
|
|
3650
|
+
{
|
|
3651
|
+
"name": "--forge-tooltip-arrow-width",
|
|
3652
|
+
"description": "The width of the tooltip arrow.",
|
|
3653
|
+
"values": []
|
|
3654
|
+
},
|
|
3655
|
+
{
|
|
3656
|
+
"name": "--forge-tooltip-arrow-shape",
|
|
3657
|
+
"description": "The shape of the tooltip arrow.",
|
|
3658
|
+
"values": []
|
|
3659
|
+
},
|
|
3660
|
+
{
|
|
3661
|
+
"name": "--forge-tooltip-arrow-clip-path",
|
|
3662
|
+
"description": "The clip path of the tooltip arrow.",
|
|
3663
|
+
"values": []
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"name": "--forge-tooltip-arrow-rotation",
|
|
3667
|
+
"description": "The rotation of the tooltip arrow.",
|
|
3668
|
+
"values": []
|
|
3669
|
+
},
|
|
3670
|
+
{
|
|
3671
|
+
"name": "--forge-tooltip-arrow-top-rotation",
|
|
3672
|
+
"description": "The rotation of the tooltip arrow when the tooltip is placed on top.",
|
|
3673
|
+
"values": []
|
|
3674
|
+
},
|
|
3675
|
+
{
|
|
3676
|
+
"name": "--forge-tooltip-arrow-right-rotation",
|
|
3677
|
+
"description": "The rotation of the tooltip arrow when the tooltip is placed on the right.",
|
|
3678
|
+
"values": []
|
|
3679
|
+
},
|
|
3680
|
+
{
|
|
3681
|
+
"name": "--forge-tooltip-arrow-bottom-rotation",
|
|
3682
|
+
"description": "The rotation of the tooltip arrow when the tooltip is placed on the bottom.",
|
|
3683
|
+
"values": []
|
|
3684
|
+
},
|
|
3685
|
+
{
|
|
3686
|
+
"name": "--forge-tooltip-arrow-left-rotation",
|
|
3687
|
+
"description": "The rotation of the tooltip arrow when the tooltip is placed on the left.",
|
|
3688
|
+
"values": []
|
|
3689
|
+
},
|
|
3690
|
+
{
|
|
3691
|
+
"name": "--forge-app-bar-background",
|
|
3692
|
+
"description": "The background color of the app bar.",
|
|
3693
|
+
"values": []
|
|
3694
|
+
},
|
|
3695
|
+
{
|
|
3696
|
+
"name": "--forge-app-bar-foreground",
|
|
3697
|
+
"description": "The text color of the app bar.",
|
|
3698
|
+
"values": []
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
"name": "--forge-app-bar-theme-foreground",
|
|
3702
|
+
"description": "The text color of the app bar when using the **scoped theme mode**.",
|
|
3703
|
+
"values": []
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"name": "--forge-app-bar-theme-foreground-muted",
|
|
3707
|
+
"description": "The muted text color of the app bar when using the **scoped theme mode**.",
|
|
3708
|
+
"values": []
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
3711
|
+
"name": "--forge-app-bar-z-index",
|
|
3712
|
+
"description": "The `z-index` of the app bar.",
|
|
3713
|
+
"values": []
|
|
3714
|
+
},
|
|
3715
|
+
{
|
|
3716
|
+
"name": "--forge-app-bar-elevation",
|
|
3717
|
+
"description": "The elevation of the app bar.",
|
|
3718
|
+
"values": []
|
|
3719
|
+
},
|
|
3720
|
+
{
|
|
3721
|
+
"name": "--forge-app-bar-height",
|
|
3722
|
+
"description": "The height of the app bar.",
|
|
3723
|
+
"values": []
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
"name": "--forge-app-bar-row-padding",
|
|
3727
|
+
"description": "The inline padding of the app bar.",
|
|
3728
|
+
"values": []
|
|
3729
|
+
},
|
|
3730
|
+
{
|
|
3731
|
+
"name": "--forge-app-bar-logo-gap",
|
|
3732
|
+
"description": "The space between the logo and title.",
|
|
3733
|
+
"values": []
|
|
3734
|
+
},
|
|
3735
|
+
{
|
|
3736
|
+
"name": "--forge-app-bar-title-padding",
|
|
3737
|
+
"description": "The padding around the title element.",
|
|
3738
|
+
"values": []
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
"name": "--forge-app-bar-columns",
|
|
3742
|
+
"description": "The grid column track sizes.",
|
|
3743
|
+
"values": []
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"name": "--forge-app-bar-transition-duration",
|
|
3747
|
+
"description": "The transition duration for animations.",
|
|
3748
|
+
"values": []
|
|
3749
|
+
},
|
|
3750
|
+
{
|
|
3751
|
+
"name": "--forge-app-bar-transition-timing",
|
|
3752
|
+
"description": "The transition timing function for animations.",
|
|
3753
|
+
"values": []
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
"name": "--forge-theme-on-primary",
|
|
3757
|
+
"description": "Controls the border-color of the container outline, the font-color, and icon color.",
|
|
3758
|
+
"values": []
|
|
3759
|
+
},
|
|
3760
|
+
{
|
|
3761
|
+
"name": "--forge-theme-on-surface",
|
|
3762
|
+
"description": "Controls the font color of the buttons.",
|
|
3763
|
+
"values": []
|
|
3764
|
+
},
|
|
3765
|
+
{
|
|
3766
|
+
"name": "--forge-theme-text-medium",
|
|
3767
|
+
"description": "Controls the placeholder font color.",
|
|
3768
|
+
"values": []
|
|
3769
|
+
},
|
|
3770
|
+
{
|
|
3771
|
+
"name": "--forge-app-bar-search-theme-background",
|
|
3772
|
+
"description": "Controls the background-color of the container.",
|
|
3773
|
+
"values": []
|
|
3774
|
+
},
|
|
3775
|
+
{
|
|
3776
|
+
"name": "--forge-app-bar-search-theme-background-focused",
|
|
3777
|
+
"description": "Controls the focused background-color of the container.",
|
|
3778
|
+
"values": []
|
|
3779
|
+
},
|
|
3780
|
+
{
|
|
3781
|
+
"name": "--forge-app-bar-search-theme-hover-opacity",
|
|
3782
|
+
"description": "Controls the hover opacity of the outline.",
|
|
3783
|
+
"values": []
|
|
3784
|
+
},
|
|
3785
|
+
{
|
|
3786
|
+
"name": "--forge-app-bar-search-theme-disabled-opacity",
|
|
3787
|
+
"description": "Controls the disabled opacity of the component.",
|
|
3788
|
+
"values": []
|
|
3789
|
+
},
|
|
3790
|
+
{
|
|
3791
|
+
"name": "--forge-button-toggle-display",
|
|
3792
|
+
"description": "The `display` style for the button toggle container element.",
|
|
3793
|
+
"values": []
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
"name": "--forge-button-toggle-min-width",
|
|
3797
|
+
"description": "The minimum width.",
|
|
3798
|
+
"values": []
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
"name": "--forge-button-toggle-spacing",
|
|
3802
|
+
"description": "The spacing between the button toggle and its content.",
|
|
3588
3803
|
"values": []
|
|
3589
3804
|
},
|
|
3590
3805
|
{
|
|
3591
|
-
"name": "--forge-
|
|
3592
|
-
"description": "The
|
|
3806
|
+
"name": "--forge-button-toggle-padding-block",
|
|
3807
|
+
"description": "The padding on the block axis.",
|
|
3593
3808
|
"values": []
|
|
3594
3809
|
},
|
|
3595
3810
|
{
|
|
3596
|
-
"name": "--forge-
|
|
3597
|
-
"description": "The
|
|
3811
|
+
"name": "--forge-button-toggle-padding-inline",
|
|
3812
|
+
"description": "The padding on the inline axis.",
|
|
3598
3813
|
"values": []
|
|
3599
3814
|
},
|
|
3600
3815
|
{
|
|
3601
|
-
"name": "--forge-
|
|
3602
|
-
"description": "The
|
|
3816
|
+
"name": "--forge-button-toggle-color",
|
|
3817
|
+
"description": "The color of the button toggle content.",
|
|
3603
3818
|
"values": []
|
|
3604
3819
|
},
|
|
3605
3820
|
{
|
|
3606
|
-
"name": "--forge-
|
|
3607
|
-
"description": "The
|
|
3821
|
+
"name": "--forge-button-toggle-background",
|
|
3822
|
+
"description": "The background of the button toggle.",
|
|
3608
3823
|
"values": []
|
|
3609
3824
|
},
|
|
3610
3825
|
{
|
|
3611
|
-
"name": "--forge-
|
|
3612
|
-
"description": "The
|
|
3826
|
+
"name": "--forge-button-toggle-cursor",
|
|
3827
|
+
"description": "The cursor of the button toggle.",
|
|
3613
3828
|
"values": []
|
|
3614
3829
|
},
|
|
3615
3830
|
{
|
|
3616
|
-
"name": "--forge-
|
|
3617
|
-
"description": "The border
|
|
3831
|
+
"name": "--forge-button-toggle-border-width",
|
|
3832
|
+
"description": "The border-width of the button toggle.",
|
|
3618
3833
|
"values": []
|
|
3619
3834
|
},
|
|
3620
3835
|
{
|
|
3621
|
-
"name": "--forge-
|
|
3622
|
-
"description": "The border
|
|
3836
|
+
"name": "--forge-button-toggle-border-style",
|
|
3837
|
+
"description": "The border-style of the button toggle.",
|
|
3623
3838
|
"values": []
|
|
3624
3839
|
},
|
|
3625
3840
|
{
|
|
3626
|
-
"name": "--forge-
|
|
3627
|
-
"description": "The
|
|
3841
|
+
"name": "--forge-button-toggle-border-color",
|
|
3842
|
+
"description": "The border-color of the button toggle.",
|
|
3628
3843
|
"values": []
|
|
3629
3844
|
},
|
|
3630
3845
|
{
|
|
3631
|
-
"name": "--forge-
|
|
3632
|
-
"description": "The
|
|
3846
|
+
"name": "--forge-button-toggle-shape",
|
|
3847
|
+
"description": "The shape radius of the button toggle.",
|
|
3633
3848
|
"values": []
|
|
3634
3849
|
},
|
|
3635
3850
|
{
|
|
3636
|
-
"name": "--forge-
|
|
3637
|
-
"description": "The
|
|
3851
|
+
"name": "--forge-button-toggle-shape-start-start",
|
|
3852
|
+
"description": "The start-start shape radius of the button toggle.",
|
|
3638
3853
|
"values": []
|
|
3639
3854
|
},
|
|
3640
3855
|
{
|
|
3641
|
-
"name": "--forge-
|
|
3642
|
-
"description": "The
|
|
3856
|
+
"name": "--forge-button-toggle-shape-start-end",
|
|
3857
|
+
"description": "The start-end shape radius of the button toggle.",
|
|
3643
3858
|
"values": []
|
|
3644
3859
|
},
|
|
3645
3860
|
{
|
|
3646
|
-
"name": "--forge-
|
|
3647
|
-
"description": "The
|
|
3861
|
+
"name": "--forge-button-toggle-shape-end-start",
|
|
3862
|
+
"description": "The end-start shape radius of the button toggle.",
|
|
3648
3863
|
"values": []
|
|
3649
3864
|
},
|
|
3650
3865
|
{
|
|
3651
|
-
"name": "--forge-
|
|
3652
|
-
"description": "The
|
|
3866
|
+
"name": "--forge-button-toggle-shape-end-end",
|
|
3867
|
+
"description": "The end-end shape radius of the button toggle.",
|
|
3653
3868
|
"values": []
|
|
3654
3869
|
},
|
|
3655
3870
|
{
|
|
3656
|
-
"name": "--forge-
|
|
3657
|
-
"description": "The
|
|
3871
|
+
"name": "--forge-button-toggle-selected-background",
|
|
3872
|
+
"description": "The background of the button toggle when selected.",
|
|
3658
3873
|
"values": []
|
|
3659
3874
|
},
|
|
3660
3875
|
{
|
|
3661
|
-
"name": "--forge-
|
|
3662
|
-
"description": "The
|
|
3876
|
+
"name": "--forge-button-toggle-selected-color",
|
|
3877
|
+
"description": "The color of the button toggle content when selected.",
|
|
3663
3878
|
"values": []
|
|
3664
3879
|
},
|
|
3665
3880
|
{
|
|
3666
|
-
"name": "--forge-
|
|
3667
|
-
"description": "The
|
|
3881
|
+
"name": "--forge-button-toggle-selected-disabled-background",
|
|
3882
|
+
"description": "The background of the button toggle when selected and disabled.",
|
|
3668
3883
|
"values": []
|
|
3669
3884
|
},
|
|
3670
3885
|
{
|
|
3671
|
-
"name": "--forge-
|
|
3672
|
-
"description": "The
|
|
3886
|
+
"name": "--forge-button-toggle-disabled-opacity",
|
|
3887
|
+
"description": "The opacity of the button toggle when disabled.",
|
|
3673
3888
|
"values": []
|
|
3674
3889
|
},
|
|
3675
3890
|
{
|
|
3676
|
-
"name": "--forge-
|
|
3677
|
-
"description": "The
|
|
3891
|
+
"name": "--forge-button-toggle-disabled-cursor",
|
|
3892
|
+
"description": "The cursor of the button toggle when disabled.",
|
|
3678
3893
|
"values": []
|
|
3679
3894
|
},
|
|
3680
3895
|
{
|
|
3681
|
-
"name": "--forge-
|
|
3682
|
-
"description": "The
|
|
3896
|
+
"name": "--forge-button-toggle-disabled-color",
|
|
3897
|
+
"description": "The color of the button toggle content when disabled.",
|
|
3683
3898
|
"values": []
|
|
3684
3899
|
},
|
|
3685
3900
|
{
|
|
3686
|
-
"name": "--forge-
|
|
3687
|
-
"description": "The
|
|
3901
|
+
"name": "--forge-button-toggle-disabled-background",
|
|
3902
|
+
"description": "The background of the button toggle when disabled.",
|
|
3688
3903
|
"values": []
|
|
3689
3904
|
},
|
|
3690
3905
|
{
|
|
3691
|
-
"name": "--forge-
|
|
3692
|
-
"description": "The
|
|
3906
|
+
"name": "--forge-button-toggle-transition-duration",
|
|
3907
|
+
"description": "The transition-duration of various properties.",
|
|
3693
3908
|
"values": []
|
|
3694
3909
|
},
|
|
3695
3910
|
{
|
|
3696
|
-
"name": "--forge-
|
|
3697
|
-
"description": "The
|
|
3911
|
+
"name": "--forge-button-toggle-transition-timing",
|
|
3912
|
+
"description": "The transition-timing of various properties.",
|
|
3698
3913
|
"values": []
|
|
3699
3914
|
},
|
|
3700
3915
|
{
|
|
3701
|
-
"name": "--forge-
|
|
3702
|
-
"description": "The
|
|
3916
|
+
"name": "--forge-button-toggle-group-display",
|
|
3917
|
+
"description": "The `display` of the group container elements.",
|
|
3703
3918
|
"values": []
|
|
3704
3919
|
},
|
|
3705
3920
|
{
|
|
3706
|
-
"name": "--forge-
|
|
3707
|
-
"description": "The
|
|
3921
|
+
"name": "--forge-button-toggle-group-gap",
|
|
3922
|
+
"description": "The space between button toggle elements.",
|
|
3708
3923
|
"values": []
|
|
3709
3924
|
},
|
|
3710
3925
|
{
|
|
3711
|
-
"name": "--forge-
|
|
3712
|
-
"description": "The
|
|
3926
|
+
"name": "--forge-button-toggle-group-padding",
|
|
3927
|
+
"description": "The padding around the button toggle elements when outlined.",
|
|
3713
3928
|
"values": []
|
|
3714
3929
|
},
|
|
3715
3930
|
{
|
|
3716
|
-
"name": "--forge-
|
|
3717
|
-
"description": "The
|
|
3931
|
+
"name": "--forge-button-toggle-group-padding-block",
|
|
3932
|
+
"description": "The block padding around the button toggle elements when outlined.",
|
|
3718
3933
|
"values": []
|
|
3719
3934
|
},
|
|
3720
3935
|
{
|
|
3721
|
-
"name": "--forge-
|
|
3722
|
-
"description": "The
|
|
3936
|
+
"name": "--forge-button-toggle-group-padding-inline",
|
|
3937
|
+
"description": "The inline padding around the button toggle elements when outlined.",
|
|
3723
3938
|
"values": []
|
|
3724
3939
|
},
|
|
3725
3940
|
{
|
|
3726
|
-
"name": "--forge-
|
|
3727
|
-
"description": "The
|
|
3941
|
+
"name": "--forge-button-toggle-group-height",
|
|
3942
|
+
"description": "The height of the group element.",
|
|
3728
3943
|
"values": []
|
|
3729
3944
|
},
|
|
3730
3945
|
{
|
|
3731
|
-
"name": "--forge-
|
|
3732
|
-
"description": "The
|
|
3946
|
+
"name": "--forge-button-toggle-group-dense-height",
|
|
3947
|
+
"description": "The height of the group element when dense.",
|
|
3733
3948
|
"values": []
|
|
3734
3949
|
},
|
|
3735
3950
|
{
|
|
3736
|
-
"name": "--forge-
|
|
3737
|
-
"description": "The
|
|
3951
|
+
"name": "--forge-button-toggle-group-outline-width",
|
|
3952
|
+
"description": "The width of the outline around the group element.",
|
|
3738
3953
|
"values": []
|
|
3739
3954
|
},
|
|
3740
3955
|
{
|
|
3741
|
-
"name": "--forge-
|
|
3742
|
-
"description": "The
|
|
3956
|
+
"name": "--forge-button-toggle-group-outline-style",
|
|
3957
|
+
"description": "The style of the outline around the group element.",
|
|
3743
3958
|
"values": []
|
|
3744
3959
|
},
|
|
3745
3960
|
{
|
|
3746
|
-
"name": "--forge-
|
|
3747
|
-
"description": "The
|
|
3961
|
+
"name": "--forge-button-toggle-group-outline-color",
|
|
3962
|
+
"description": "The color of the outline around the group element.",
|
|
3748
3963
|
"values": []
|
|
3749
3964
|
},
|
|
3750
3965
|
{
|
|
3751
|
-
"name": "--forge-
|
|
3752
|
-
"description": "The
|
|
3966
|
+
"name": "--forge-button-toggle-group-outline-color-active",
|
|
3967
|
+
"description": "The color of the outline around the group element when hovered or focused.",
|
|
3753
3968
|
"values": []
|
|
3754
3969
|
},
|
|
3755
3970
|
{
|
|
3756
|
-
"name": "--forge-
|
|
3757
|
-
"description": "
|
|
3971
|
+
"name": "--forge-button-toggle-group-shape",
|
|
3972
|
+
"description": "The shape radius of the group container element.",
|
|
3758
3973
|
"values": []
|
|
3759
3974
|
},
|
|
3760
3975
|
{
|
|
3761
|
-
"name": "--forge-
|
|
3762
|
-
"description": "
|
|
3976
|
+
"name": "--forge-button-toggle-group-shape-start-start",
|
|
3977
|
+
"description": "The start-start shape radius.",
|
|
3763
3978
|
"values": []
|
|
3764
3979
|
},
|
|
3765
3980
|
{
|
|
3766
|
-
"name": "--forge-
|
|
3767
|
-
"description": "
|
|
3981
|
+
"name": "--forge-button-toggle-group-shape-start-end",
|
|
3982
|
+
"description": "The start-end shape radius.",
|
|
3768
3983
|
"values": []
|
|
3769
3984
|
},
|
|
3770
3985
|
{
|
|
3771
|
-
"name": "--forge-
|
|
3772
|
-
"description": "
|
|
3986
|
+
"name": "--forge-button-toggle-group-shape-end-start",
|
|
3987
|
+
"description": "The end-start shape radius.",
|
|
3773
3988
|
"values": []
|
|
3774
3989
|
},
|
|
3775
3990
|
{
|
|
3776
|
-
"name": "--forge-
|
|
3777
|
-
"description": "
|
|
3991
|
+
"name": "--forge-button-toggle-group-shape-end-end",
|
|
3992
|
+
"description": "The end-end shape radius.",
|
|
3778
3993
|
"values": []
|
|
3779
3994
|
},
|
|
3780
3995
|
{
|
|
3781
|
-
"name": "--forge-
|
|
3782
|
-
"description": "
|
|
3996
|
+
"name": "--forge-button-toggle-group-transition-duration",
|
|
3997
|
+
"description": "The transition duration for all animations on the group.",
|
|
3783
3998
|
"values": []
|
|
3784
3999
|
},
|
|
3785
4000
|
{
|
|
3786
|
-
"name": "--forge-
|
|
3787
|
-
"description": "
|
|
4001
|
+
"name": "--forge-button-toggle-group-transition-timing",
|
|
4002
|
+
"description": "The transition timing for all animations on the group.",
|
|
3788
4003
|
"values": []
|
|
3789
4004
|
},
|
|
3790
4005
|
{
|
|
@@ -4028,98 +4243,8 @@
|
|
|
4028
4243
|
"values": []
|
|
4029
4244
|
},
|
|
4030
4245
|
{
|
|
4031
|
-
"name": "--forge-chip-set-spacing",
|
|
4032
|
-
"description": "The spacing between chips.",
|
|
4033
|
-
"values": []
|
|
4034
|
-
},
|
|
4035
|
-
{
|
|
4036
|
-
"name": "--forge-button-toggle-group-display",
|
|
4037
|
-
"description": "The `display` of the group container elements.",
|
|
4038
|
-
"values": []
|
|
4039
|
-
},
|
|
4040
|
-
{
|
|
4041
|
-
"name": "--forge-button-toggle-group-gap",
|
|
4042
|
-
"description": "The space between button toggle elements.",
|
|
4043
|
-
"values": []
|
|
4044
|
-
},
|
|
4045
|
-
{
|
|
4046
|
-
"name": "--forge-button-toggle-group-padding",
|
|
4047
|
-
"description": "The padding around the button toggle elements when outlined.",
|
|
4048
|
-
"values": []
|
|
4049
|
-
},
|
|
4050
|
-
{
|
|
4051
|
-
"name": "--forge-button-toggle-group-padding-block",
|
|
4052
|
-
"description": "The block padding around the button toggle elements when outlined.",
|
|
4053
|
-
"values": []
|
|
4054
|
-
},
|
|
4055
|
-
{
|
|
4056
|
-
"name": "--forge-button-toggle-group-padding-inline",
|
|
4057
|
-
"description": "The inline padding around the button toggle elements when outlined.",
|
|
4058
|
-
"values": []
|
|
4059
|
-
},
|
|
4060
|
-
{
|
|
4061
|
-
"name": "--forge-button-toggle-group-height",
|
|
4062
|
-
"description": "The height of the group element.",
|
|
4063
|
-
"values": []
|
|
4064
|
-
},
|
|
4065
|
-
{
|
|
4066
|
-
"name": "--forge-button-toggle-group-dense-height",
|
|
4067
|
-
"description": "The height of the group element when dense.",
|
|
4068
|
-
"values": []
|
|
4069
|
-
},
|
|
4070
|
-
{
|
|
4071
|
-
"name": "--forge-button-toggle-group-outline-width",
|
|
4072
|
-
"description": "The width of the outline around the group element.",
|
|
4073
|
-
"values": []
|
|
4074
|
-
},
|
|
4075
|
-
{
|
|
4076
|
-
"name": "--forge-button-toggle-group-outline-style",
|
|
4077
|
-
"description": "The style of the outline around the group element.",
|
|
4078
|
-
"values": []
|
|
4079
|
-
},
|
|
4080
|
-
{
|
|
4081
|
-
"name": "--forge-button-toggle-group-outline-color",
|
|
4082
|
-
"description": "The color of the outline around the group element.",
|
|
4083
|
-
"values": []
|
|
4084
|
-
},
|
|
4085
|
-
{
|
|
4086
|
-
"name": "--forge-button-toggle-group-outline-color-active",
|
|
4087
|
-
"description": "The color of the outline around the group element when hovered or focused.",
|
|
4088
|
-
"values": []
|
|
4089
|
-
},
|
|
4090
|
-
{
|
|
4091
|
-
"name": "--forge-button-toggle-group-shape",
|
|
4092
|
-
"description": "The shape radius of the group container element.",
|
|
4093
|
-
"values": []
|
|
4094
|
-
},
|
|
4095
|
-
{
|
|
4096
|
-
"name": "--forge-button-toggle-group-shape-start-start",
|
|
4097
|
-
"description": "The start-start shape radius.",
|
|
4098
|
-
"values": []
|
|
4099
|
-
},
|
|
4100
|
-
{
|
|
4101
|
-
"name": "--forge-button-toggle-group-shape-start-end",
|
|
4102
|
-
"description": "The start-end shape radius.",
|
|
4103
|
-
"values": []
|
|
4104
|
-
},
|
|
4105
|
-
{
|
|
4106
|
-
"name": "--forge-button-toggle-group-shape-end-start",
|
|
4107
|
-
"description": "The end-start shape radius.",
|
|
4108
|
-
"values": []
|
|
4109
|
-
},
|
|
4110
|
-
{
|
|
4111
|
-
"name": "--forge-button-toggle-group-shape-end-end",
|
|
4112
|
-
"description": "The end-end shape radius.",
|
|
4113
|
-
"values": []
|
|
4114
|
-
},
|
|
4115
|
-
{
|
|
4116
|
-
"name": "--forge-button-toggle-group-transition-duration",
|
|
4117
|
-
"description": "The transition duration for all animations on the group.",
|
|
4118
|
-
"values": []
|
|
4119
|
-
},
|
|
4120
|
-
{
|
|
4121
|
-
"name": "--forge-button-toggle-group-transition-timing",
|
|
4122
|
-
"description": "The transition timing for all animations on the group.",
|
|
4246
|
+
"name": "--forge-chip-set-spacing",
|
|
4247
|
+
"description": "The spacing between chips.",
|
|
4123
4248
|
"values": []
|
|
4124
4249
|
},
|
|
4125
4250
|
{
|
|
@@ -4237,131 +4362,6 @@
|
|
|
4237
4362
|
"description": "The duration of the drawer closing animation.",
|
|
4238
4363
|
"values": []
|
|
4239
4364
|
},
|
|
4240
|
-
{
|
|
4241
|
-
"name": "--forge-button-toggle-display",
|
|
4242
|
-
"description": "The `display` style for the button toggle container element.",
|
|
4243
|
-
"values": []
|
|
4244
|
-
},
|
|
4245
|
-
{
|
|
4246
|
-
"name": "--forge-button-toggle-min-width",
|
|
4247
|
-
"description": "The minimum width.",
|
|
4248
|
-
"values": []
|
|
4249
|
-
},
|
|
4250
|
-
{
|
|
4251
|
-
"name": "--forge-button-toggle-spacing",
|
|
4252
|
-
"description": "The spacing between the button toggle and its content.",
|
|
4253
|
-
"values": []
|
|
4254
|
-
},
|
|
4255
|
-
{
|
|
4256
|
-
"name": "--forge-button-toggle-padding-block",
|
|
4257
|
-
"description": "The padding on the block axis.",
|
|
4258
|
-
"values": []
|
|
4259
|
-
},
|
|
4260
|
-
{
|
|
4261
|
-
"name": "--forge-button-toggle-padding-inline",
|
|
4262
|
-
"description": "The padding on the inline axis.",
|
|
4263
|
-
"values": []
|
|
4264
|
-
},
|
|
4265
|
-
{
|
|
4266
|
-
"name": "--forge-button-toggle-color",
|
|
4267
|
-
"description": "The color of the button toggle content.",
|
|
4268
|
-
"values": []
|
|
4269
|
-
},
|
|
4270
|
-
{
|
|
4271
|
-
"name": "--forge-button-toggle-background",
|
|
4272
|
-
"description": "The background of the button toggle.",
|
|
4273
|
-
"values": []
|
|
4274
|
-
},
|
|
4275
|
-
{
|
|
4276
|
-
"name": "--forge-button-toggle-cursor",
|
|
4277
|
-
"description": "The cursor of the button toggle.",
|
|
4278
|
-
"values": []
|
|
4279
|
-
},
|
|
4280
|
-
{
|
|
4281
|
-
"name": "--forge-button-toggle-border-width",
|
|
4282
|
-
"description": "The border-width of the button toggle.",
|
|
4283
|
-
"values": []
|
|
4284
|
-
},
|
|
4285
|
-
{
|
|
4286
|
-
"name": "--forge-button-toggle-border-style",
|
|
4287
|
-
"description": "The border-style of the button toggle.",
|
|
4288
|
-
"values": []
|
|
4289
|
-
},
|
|
4290
|
-
{
|
|
4291
|
-
"name": "--forge-button-toggle-border-color",
|
|
4292
|
-
"description": "The border-color of the button toggle.",
|
|
4293
|
-
"values": []
|
|
4294
|
-
},
|
|
4295
|
-
{
|
|
4296
|
-
"name": "--forge-button-toggle-shape",
|
|
4297
|
-
"description": "The shape radius of the button toggle.",
|
|
4298
|
-
"values": []
|
|
4299
|
-
},
|
|
4300
|
-
{
|
|
4301
|
-
"name": "--forge-button-toggle-shape-start-start",
|
|
4302
|
-
"description": "The start-start shape radius of the button toggle.",
|
|
4303
|
-
"values": []
|
|
4304
|
-
},
|
|
4305
|
-
{
|
|
4306
|
-
"name": "--forge-button-toggle-shape-start-end",
|
|
4307
|
-
"description": "The start-end shape radius of the button toggle.",
|
|
4308
|
-
"values": []
|
|
4309
|
-
},
|
|
4310
|
-
{
|
|
4311
|
-
"name": "--forge-button-toggle-shape-end-start",
|
|
4312
|
-
"description": "The end-start shape radius of the button toggle.",
|
|
4313
|
-
"values": []
|
|
4314
|
-
},
|
|
4315
|
-
{
|
|
4316
|
-
"name": "--forge-button-toggle-shape-end-end",
|
|
4317
|
-
"description": "The end-end shape radius of the button toggle.",
|
|
4318
|
-
"values": []
|
|
4319
|
-
},
|
|
4320
|
-
{
|
|
4321
|
-
"name": "--forge-button-toggle-selected-background",
|
|
4322
|
-
"description": "The background of the button toggle when selected.",
|
|
4323
|
-
"values": []
|
|
4324
|
-
},
|
|
4325
|
-
{
|
|
4326
|
-
"name": "--forge-button-toggle-selected-color",
|
|
4327
|
-
"description": "The color of the button toggle content when selected.",
|
|
4328
|
-
"values": []
|
|
4329
|
-
},
|
|
4330
|
-
{
|
|
4331
|
-
"name": "--forge-button-toggle-selected-disabled-background",
|
|
4332
|
-
"description": "The background of the button toggle when selected and disabled.",
|
|
4333
|
-
"values": []
|
|
4334
|
-
},
|
|
4335
|
-
{
|
|
4336
|
-
"name": "--forge-button-toggle-disabled-opacity",
|
|
4337
|
-
"description": "The opacity of the button toggle when disabled.",
|
|
4338
|
-
"values": []
|
|
4339
|
-
},
|
|
4340
|
-
{
|
|
4341
|
-
"name": "--forge-button-toggle-disabled-cursor",
|
|
4342
|
-
"description": "The cursor of the button toggle when disabled.",
|
|
4343
|
-
"values": []
|
|
4344
|
-
},
|
|
4345
|
-
{
|
|
4346
|
-
"name": "--forge-button-toggle-disabled-color",
|
|
4347
|
-
"description": "The color of the button toggle content when disabled.",
|
|
4348
|
-
"values": []
|
|
4349
|
-
},
|
|
4350
|
-
{
|
|
4351
|
-
"name": "--forge-button-toggle-disabled-background",
|
|
4352
|
-
"description": "The background of the button toggle when disabled.",
|
|
4353
|
-
"values": []
|
|
4354
|
-
},
|
|
4355
|
-
{
|
|
4356
|
-
"name": "--forge-button-toggle-transition-duration",
|
|
4357
|
-
"description": "The transition-duration of various properties.",
|
|
4358
|
-
"values": []
|
|
4359
|
-
},
|
|
4360
|
-
{
|
|
4361
|
-
"name": "--forge-button-toggle-transition-timing",
|
|
4362
|
-
"description": "The transition-timing of various properties.",
|
|
4363
|
-
"values": []
|
|
4364
|
-
},
|
|
4365
4365
|
{
|
|
4366
4366
|
"name": "--forge-drawer-width",
|
|
4367
4367
|
"description": "The width of the drawer.",
|
|
@@ -4852,6 +4852,16 @@
|
|
|
4852
4852
|
"description": "The delay of the radio button's animations.",
|
|
4853
4853
|
"values": []
|
|
4854
4854
|
},
|
|
4855
|
+
{
|
|
4856
|
+
"name": "--forge-split-view-panel-size",
|
|
4857
|
+
"description": "The size of the panel along the axis of orientation.",
|
|
4858
|
+
"values": []
|
|
4859
|
+
},
|
|
4860
|
+
{
|
|
4861
|
+
"name": "--forge-split-view-panel-cursor",
|
|
4862
|
+
"description": "The cursor to display when hovering over the panel.",
|
|
4863
|
+
"values": []
|
|
4864
|
+
},
|
|
4855
4865
|
{
|
|
4856
4866
|
"name": "--forge-select-placeholder-color",
|
|
4857
4867
|
"description": "The color of the placeholder text.",
|
|
@@ -5013,53 +5023,173 @@
|
|
|
5013
5023
|
"values": []
|
|
5014
5024
|
},
|
|
5015
5025
|
{
|
|
5016
|
-
"name": "--forge-field-popover-icon-open-rotation",
|
|
5017
|
-
"description": "The rotation of the popover icon when open.",
|
|
5026
|
+
"name": "--forge-field-popover-icon-open-rotation",
|
|
5027
|
+
"description": "The rotation of the popover icon when open.",
|
|
5028
|
+
"values": []
|
|
5029
|
+
},
|
|
5030
|
+
{
|
|
5031
|
+
"name": "--forge-field-surface-animation-duration",
|
|
5032
|
+
"description": "The duration of background and outline animations.",
|
|
5033
|
+
"values": []
|
|
5034
|
+
},
|
|
5035
|
+
{
|
|
5036
|
+
"name": "--forge-field-surface-animation-timing",
|
|
5037
|
+
"description": "The timing function of background and outline animations.",
|
|
5038
|
+
"values": []
|
|
5039
|
+
},
|
|
5040
|
+
{
|
|
5041
|
+
"name": "--forge-field-surface-floating-animation-duration",
|
|
5042
|
+
"description": "The duration of the floating label animation.",
|
|
5043
|
+
"values": []
|
|
5044
|
+
},
|
|
5045
|
+
{
|
|
5046
|
+
"name": "--forge-field-surface-floating-animation-timing",
|
|
5047
|
+
"description": "The timing function of the floating label animation.",
|
|
5048
|
+
"values": []
|
|
5049
|
+
},
|
|
5050
|
+
{
|
|
5051
|
+
"name": "--forge-field-focus-indicator-width",
|
|
5052
|
+
"description": "The width of the focus indicator.",
|
|
5053
|
+
"values": []
|
|
5054
|
+
},
|
|
5055
|
+
{
|
|
5056
|
+
"name": "--forge-field-disabled-opacity",
|
|
5057
|
+
"description": "The opacity of the field when disabled.",
|
|
5058
|
+
"values": []
|
|
5059
|
+
},
|
|
5060
|
+
{
|
|
5061
|
+
"name": "--forge-field-disabled-background",
|
|
5062
|
+
"description": "The background of the field when disabled.",
|
|
5063
|
+
"values": []
|
|
5064
|
+
},
|
|
5065
|
+
{
|
|
5066
|
+
"name": "--forge-step-primary-color",
|
|
5067
|
+
"description": "The primary color of the step. Defaults to the primary theme.",
|
|
5068
|
+
"values": []
|
|
5069
|
+
},
|
|
5070
|
+
{
|
|
5071
|
+
"name": "--forge-step-text-color",
|
|
5072
|
+
"description": "The text color of the step. Defaults to the on-primary theme.",
|
|
5073
|
+
"values": []
|
|
5074
|
+
},
|
|
5075
|
+
{
|
|
5076
|
+
"name": "--forge-step-border-radius",
|
|
5077
|
+
"description": "The border radius of the step. Defaults to the extra-large shape.",
|
|
5078
|
+
"values": []
|
|
5079
|
+
},
|
|
5080
|
+
{
|
|
5081
|
+
"name": "--forge-step-border-radius-vertical",
|
|
5082
|
+
"description": "The border radius of the step in vertical mode. Defaults to the medium shape.",
|
|
5083
|
+
"values": []
|
|
5084
|
+
},
|
|
5085
|
+
{
|
|
5086
|
+
"name": "--forge-step-disabled-text-color",
|
|
5087
|
+
"description": "The text color of the step when disabled. Defaults to the text-low theme.",
|
|
5088
|
+
"values": []
|
|
5089
|
+
},
|
|
5090
|
+
{
|
|
5091
|
+
"name": "--forge-step-disabled-color",
|
|
5092
|
+
"description": "The color of the step when disabled. Defaults to the surface-container-minimum theme.",
|
|
5093
|
+
"values": []
|
|
5094
|
+
},
|
|
5095
|
+
{
|
|
5096
|
+
"name": "--forge-step-icon-fill",
|
|
5097
|
+
"description": "The fill color of the step icon. Defaults to unset.",
|
|
5098
|
+
"values": []
|
|
5099
|
+
},
|
|
5100
|
+
{
|
|
5101
|
+
"name": "--forge-step-icon-fill-active",
|
|
5102
|
+
"description": "The fill color of the step icon when active. Defaults to the primary color.",
|
|
5103
|
+
"values": []
|
|
5104
|
+
},
|
|
5105
|
+
{
|
|
5106
|
+
"name": "--forge-step-icon-text-color",
|
|
5107
|
+
"description": "The text color of the step icon. Defaults to the primary theme.",
|
|
5108
|
+
"values": []
|
|
5109
|
+
},
|
|
5110
|
+
{
|
|
5111
|
+
"name": "--forge-step-icon-text-color-active",
|
|
5112
|
+
"description": "The text color of the step icon when active. Defaults to the on-primary theme.",
|
|
5113
|
+
"values": []
|
|
5114
|
+
},
|
|
5115
|
+
{
|
|
5116
|
+
"name": "--forge-step-icon-content-size",
|
|
5117
|
+
"description": "The size of the step icon content. Defaults to 24px.",
|
|
5118
|
+
"values": []
|
|
5119
|
+
},
|
|
5120
|
+
{
|
|
5121
|
+
"name": "--forge-step-icon-size",
|
|
5122
|
+
"description": "The size of the step icon. Defaults to 0.875em.",
|
|
5123
|
+
"values": []
|
|
5124
|
+
},
|
|
5125
|
+
{
|
|
5126
|
+
"name": "--forge-step-icon-transition-duration",
|
|
5127
|
+
"description": "The duration of the step icon transition. Defaults to the medium4 animation duration.",
|
|
5128
|
+
"values": []
|
|
5129
|
+
},
|
|
5130
|
+
{
|
|
5131
|
+
"name": "--forge-step-icon-transition-easing",
|
|
5132
|
+
"description": "The easing of the step icon transition. Defaults to the standard animation easing.",
|
|
5133
|
+
"values": []
|
|
5134
|
+
},
|
|
5135
|
+
{
|
|
5136
|
+
"name": "--forge-step-line-color",
|
|
5137
|
+
"description": "The color of the step line. Defaults to the outline theme.",
|
|
5138
|
+
"values": []
|
|
5139
|
+
},
|
|
5140
|
+
{
|
|
5141
|
+
"name": "--forge-step-line-min-width",
|
|
5142
|
+
"description": "The minimum width of the step line. Defaults to 10px.",
|
|
5143
|
+
"values": []
|
|
5144
|
+
},
|
|
5145
|
+
{
|
|
5146
|
+
"name": "--forge-step-line-min-width-clustered",
|
|
5147
|
+
"description": "The minimum width of the step line when clustered. Defaults to 25px.",
|
|
5018
5148
|
"values": []
|
|
5019
5149
|
},
|
|
5020
5150
|
{
|
|
5021
|
-
"name": "--forge-
|
|
5022
|
-
"description": "The
|
|
5151
|
+
"name": "--forge-step-label-color",
|
|
5152
|
+
"description": "The color of the step label. Defaults to the text-high theme.",
|
|
5023
5153
|
"values": []
|
|
5024
5154
|
},
|
|
5025
5155
|
{
|
|
5026
|
-
"name": "--forge-
|
|
5027
|
-
"description": "The
|
|
5156
|
+
"name": "--forge-step-sub-label-color",
|
|
5157
|
+
"description": "The color of the step sub-label. Defaults to the text-medium theme.",
|
|
5028
5158
|
"values": []
|
|
5029
5159
|
},
|
|
5030
5160
|
{
|
|
5031
|
-
"name": "--forge-
|
|
5032
|
-
"description": "The
|
|
5161
|
+
"name": "--forge-step-error-color",
|
|
5162
|
+
"description": "The color of the step error. Defaults to the error theme.",
|
|
5033
5163
|
"values": []
|
|
5034
5164
|
},
|
|
5035
5165
|
{
|
|
5036
|
-
"name": "--forge-
|
|
5037
|
-
"description": "The
|
|
5166
|
+
"name": "--forge-step-error-text-color",
|
|
5167
|
+
"description": "The text color of the step error. Defaults to the on-error theme.",
|
|
5038
5168
|
"values": []
|
|
5039
5169
|
},
|
|
5040
5170
|
{
|
|
5041
|
-
"name": "--forge-
|
|
5042
|
-
"description": "The width of the
|
|
5171
|
+
"name": "--forge-step-expansion-panel-border-left-width",
|
|
5172
|
+
"description": "The border left width of the step expansion panel. Defaults to 1px.",
|
|
5043
5173
|
"values": []
|
|
5044
5174
|
},
|
|
5045
5175
|
{
|
|
5046
|
-
"name": "--forge-
|
|
5047
|
-
"description": "The
|
|
5176
|
+
"name": "--forge-step-expansion-panel-margin-bottom",
|
|
5177
|
+
"description": "The margin bottom of the step expansion panel. Defaults to 4px.",
|
|
5048
5178
|
"values": []
|
|
5049
5179
|
},
|
|
5050
5180
|
{
|
|
5051
|
-
"name": "--forge-
|
|
5052
|
-
"description": "The
|
|
5181
|
+
"name": "--forge-step-expansion-panel-margin-left",
|
|
5182
|
+
"description": "The margin left of the step expansion panel. Defaults to 60px.",
|
|
5053
5183
|
"values": []
|
|
5054
5184
|
},
|
|
5055
5185
|
{
|
|
5056
|
-
"name": "--forge-
|
|
5057
|
-
"description": "The
|
|
5186
|
+
"name": "--forge-step-expansion-panel-margin-top",
|
|
5187
|
+
"description": "The margin top of the step expansion panel. Defaults to 4px.",
|
|
5058
5188
|
"values": []
|
|
5059
5189
|
},
|
|
5060
5190
|
{
|
|
5061
|
-
"name": "--forge-
|
|
5062
|
-
"description": "The
|
|
5191
|
+
"name": "--forge-step-expansion-panel-icon-color",
|
|
5192
|
+
"description": "The color of the step expansion panel icon. Defaults to the text-medium theme.",
|
|
5063
5193
|
"values": []
|
|
5064
5194
|
},
|
|
5065
5195
|
{
|
|
@@ -5252,136 +5382,6 @@
|
|
|
5252
5382
|
"description": "The color of the label text when the tab is pressed.",
|
|
5253
5383
|
"values": []
|
|
5254
5384
|
},
|
|
5255
|
-
{
|
|
5256
|
-
"name": "--forge-step-primary-color",
|
|
5257
|
-
"description": "The primary color of the step. Defaults to the primary theme.",
|
|
5258
|
-
"values": []
|
|
5259
|
-
},
|
|
5260
|
-
{
|
|
5261
|
-
"name": "--forge-step-text-color",
|
|
5262
|
-
"description": "The text color of the step. Defaults to the on-primary theme.",
|
|
5263
|
-
"values": []
|
|
5264
|
-
},
|
|
5265
|
-
{
|
|
5266
|
-
"name": "--forge-step-border-radius",
|
|
5267
|
-
"description": "The border radius of the step. Defaults to the extra-large shape.",
|
|
5268
|
-
"values": []
|
|
5269
|
-
},
|
|
5270
|
-
{
|
|
5271
|
-
"name": "--forge-step-border-radius-vertical",
|
|
5272
|
-
"description": "The border radius of the step in vertical mode. Defaults to the medium shape.",
|
|
5273
|
-
"values": []
|
|
5274
|
-
},
|
|
5275
|
-
{
|
|
5276
|
-
"name": "--forge-step-disabled-text-color",
|
|
5277
|
-
"description": "The text color of the step when disabled. Defaults to the text-low theme.",
|
|
5278
|
-
"values": []
|
|
5279
|
-
},
|
|
5280
|
-
{
|
|
5281
|
-
"name": "--forge-step-disabled-color",
|
|
5282
|
-
"description": "The color of the step when disabled. Defaults to the surface-container-minimum theme.",
|
|
5283
|
-
"values": []
|
|
5284
|
-
},
|
|
5285
|
-
{
|
|
5286
|
-
"name": "--forge-step-icon-fill",
|
|
5287
|
-
"description": "The fill color of the step icon. Defaults to unset.",
|
|
5288
|
-
"values": []
|
|
5289
|
-
},
|
|
5290
|
-
{
|
|
5291
|
-
"name": "--forge-step-icon-fill-active",
|
|
5292
|
-
"description": "The fill color of the step icon when active. Defaults to the primary color.",
|
|
5293
|
-
"values": []
|
|
5294
|
-
},
|
|
5295
|
-
{
|
|
5296
|
-
"name": "--forge-step-icon-text-color",
|
|
5297
|
-
"description": "The text color of the step icon. Defaults to the primary theme.",
|
|
5298
|
-
"values": []
|
|
5299
|
-
},
|
|
5300
|
-
{
|
|
5301
|
-
"name": "--forge-step-icon-text-color-active",
|
|
5302
|
-
"description": "The text color of the step icon when active. Defaults to the on-primary theme.",
|
|
5303
|
-
"values": []
|
|
5304
|
-
},
|
|
5305
|
-
{
|
|
5306
|
-
"name": "--forge-step-icon-content-size",
|
|
5307
|
-
"description": "The size of the step icon content. Defaults to 24px.",
|
|
5308
|
-
"values": []
|
|
5309
|
-
},
|
|
5310
|
-
{
|
|
5311
|
-
"name": "--forge-step-icon-size",
|
|
5312
|
-
"description": "The size of the step icon. Defaults to 0.875em.",
|
|
5313
|
-
"values": []
|
|
5314
|
-
},
|
|
5315
|
-
{
|
|
5316
|
-
"name": "--forge-step-icon-transition-duration",
|
|
5317
|
-
"description": "The duration of the step icon transition. Defaults to the medium4 animation duration.",
|
|
5318
|
-
"values": []
|
|
5319
|
-
},
|
|
5320
|
-
{
|
|
5321
|
-
"name": "--forge-step-icon-transition-easing",
|
|
5322
|
-
"description": "The easing of the step icon transition. Defaults to the standard animation easing.",
|
|
5323
|
-
"values": []
|
|
5324
|
-
},
|
|
5325
|
-
{
|
|
5326
|
-
"name": "--forge-step-line-color",
|
|
5327
|
-
"description": "The color of the step line. Defaults to the outline theme.",
|
|
5328
|
-
"values": []
|
|
5329
|
-
},
|
|
5330
|
-
{
|
|
5331
|
-
"name": "--forge-step-line-min-width",
|
|
5332
|
-
"description": "The minimum width of the step line. Defaults to 10px.",
|
|
5333
|
-
"values": []
|
|
5334
|
-
},
|
|
5335
|
-
{
|
|
5336
|
-
"name": "--forge-step-line-min-width-clustered",
|
|
5337
|
-
"description": "The minimum width of the step line when clustered. Defaults to 25px.",
|
|
5338
|
-
"values": []
|
|
5339
|
-
},
|
|
5340
|
-
{
|
|
5341
|
-
"name": "--forge-step-label-color",
|
|
5342
|
-
"description": "The color of the step label. Defaults to the text-high theme.",
|
|
5343
|
-
"values": []
|
|
5344
|
-
},
|
|
5345
|
-
{
|
|
5346
|
-
"name": "--forge-step-sub-label-color",
|
|
5347
|
-
"description": "The color of the step sub-label. Defaults to the text-medium theme.",
|
|
5348
|
-
"values": []
|
|
5349
|
-
},
|
|
5350
|
-
{
|
|
5351
|
-
"name": "--forge-step-error-color",
|
|
5352
|
-
"description": "The color of the step error. Defaults to the error theme.",
|
|
5353
|
-
"values": []
|
|
5354
|
-
},
|
|
5355
|
-
{
|
|
5356
|
-
"name": "--forge-step-error-text-color",
|
|
5357
|
-
"description": "The text color of the step error. Defaults to the on-error theme.",
|
|
5358
|
-
"values": []
|
|
5359
|
-
},
|
|
5360
|
-
{
|
|
5361
|
-
"name": "--forge-step-expansion-panel-border-left-width",
|
|
5362
|
-
"description": "The border left width of the step expansion panel. Defaults to 1px.",
|
|
5363
|
-
"values": []
|
|
5364
|
-
},
|
|
5365
|
-
{
|
|
5366
|
-
"name": "--forge-step-expansion-panel-margin-bottom",
|
|
5367
|
-
"description": "The margin bottom of the step expansion panel. Defaults to 4px.",
|
|
5368
|
-
"values": []
|
|
5369
|
-
},
|
|
5370
|
-
{
|
|
5371
|
-
"name": "--forge-step-expansion-panel-margin-left",
|
|
5372
|
-
"description": "The margin left of the step expansion panel. Defaults to 60px.",
|
|
5373
|
-
"values": []
|
|
5374
|
-
},
|
|
5375
|
-
{
|
|
5376
|
-
"name": "--forge-step-expansion-panel-margin-top",
|
|
5377
|
-
"description": "The margin top of the step expansion panel. Defaults to 4px.",
|
|
5378
|
-
"values": []
|
|
5379
|
-
},
|
|
5380
|
-
{
|
|
5381
|
-
"name": "--forge-step-expansion-panel-icon-color",
|
|
5382
|
-
"description": "The color of the step expansion panel icon. Defaults to the text-medium theme.",
|
|
5383
|
-
"values": []
|
|
5384
|
-
},
|
|
5385
5385
|
{
|
|
5386
5386
|
"name": "--forge-tab-bar-justify",
|
|
5387
5387
|
"description": "The `justify-content` value for the tab bar flex container.",
|
|
@@ -5404,7 +5404,6 @@
|
|
|
5404
5404
|
}
|
|
5405
5405
|
],
|
|
5406
5406
|
"pseudoElements": [
|
|
5407
|
-
{ "name": "::part(root)", "description": "The root container element." },
|
|
5408
5407
|
{
|
|
5409
5408
|
"name": "::part(root)",
|
|
5410
5409
|
"description": "The root element of the backdrop."
|
|
@@ -5418,6 +5417,7 @@
|
|
|
5418
5417
|
"description": "The surface element of the bottom sheet within th dialog."
|
|
5419
5418
|
},
|
|
5420
5419
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5420
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5421
5421
|
{
|
|
5422
5422
|
"name": "::part(focus-indicator)",
|
|
5423
5423
|
"description": "The focus-indicator indicator element."
|
|
@@ -5504,7 +5504,6 @@
|
|
|
5504
5504
|
"name": "::part(progressbar)",
|
|
5505
5505
|
"description": "Styles the progress bar container element"
|
|
5506
5506
|
},
|
|
5507
|
-
{ "name": "::part(root)", "description": "The root container element." },
|
|
5508
5507
|
{ "name": "::part(root)", "description": "The dialog container element." },
|
|
5509
5508
|
{ "name": "::part(backdrop)", "description": "The backdrop element." },
|
|
5510
5509
|
{ "name": "::part(surface)", "description": "The dialog surface element." },
|
|
@@ -5520,9 +5519,7 @@
|
|
|
5520
5519
|
"name": "::part(move-handle-icon)",
|
|
5521
5520
|
"description": "The move handle icon element."
|
|
5522
5521
|
},
|
|
5523
|
-
{ "name": "::part(root)", "description": "The root element
|
|
5524
|
-
{ "name": "::part(header)", "description": "The header of the panel." },
|
|
5525
|
-
{ "name": "::part(content)", "description": "The content of the panel." },
|
|
5522
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5526
5523
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5527
5524
|
{ "name": "::part(label)", "description": "The label element." },
|
|
5528
5525
|
{
|
|
@@ -5561,6 +5558,9 @@
|
|
|
5561
5558
|
"name": "::part(focus-indicator)",
|
|
5562
5559
|
"description": "The focus indicator element."
|
|
5563
5560
|
},
|
|
5561
|
+
{ "name": "::part(root)", "description": "The root element of the panel." },
|
|
5562
|
+
{ "name": "::part(header)", "description": "The header of the panel." },
|
|
5563
|
+
{ "name": "::part(content)", "description": "The content of the panel." },
|
|
5564
5564
|
{
|
|
5565
5565
|
"name": "::part(form)",
|
|
5566
5566
|
"description": "The `<form>` element at the root."
|
|
@@ -5581,10 +5581,20 @@
|
|
|
5581
5581
|
"name": "::part(helper-text-container)",
|
|
5582
5582
|
"description": "The container around the helper-text slot."
|
|
5583
5583
|
},
|
|
5584
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5585
|
+
{
|
|
5586
|
+
"name": "::part(focus-indicator)",
|
|
5587
|
+
"description": "The focus-indicator indicator element."
|
|
5588
|
+
},
|
|
5589
|
+
{
|
|
5590
|
+
"name": "::part(state-layer)",
|
|
5591
|
+
"description": "The state-layer surface element."
|
|
5592
|
+
},
|
|
5584
5593
|
{
|
|
5585
5594
|
"name": "::part(indicator)",
|
|
5586
5595
|
"description": "The focus indicator element."
|
|
5587
5596
|
},
|
|
5597
|
+
{ "name": "::part(svg)", "description": "The internal SVG element." },
|
|
5588
5598
|
{ "name": "::part(root)", "description": "The root layout element." },
|
|
5589
5599
|
{
|
|
5590
5600
|
"name": "::part(container)",
|
|
@@ -5610,18 +5620,9 @@
|
|
|
5610
5620
|
"name": "::part(progressbar)",
|
|
5611
5621
|
"description": "Styles the progress bar container element"
|
|
5612
5622
|
},
|
|
5613
|
-
{ "name": "::part(svg)", "description": "The internal SVG element." },
|
|
5614
|
-
{ "name": "::part(root)", "description": "The root container element." },
|
|
5615
|
-
{
|
|
5616
|
-
"name": "::part(focus-indicator)",
|
|
5617
|
-
"description": "The focus-indicator indicator element."
|
|
5618
|
-
},
|
|
5619
|
-
{
|
|
5620
|
-
"name": "::part(state-layer)",
|
|
5621
|
-
"description": "The state-layer surface element."
|
|
5622
|
-
},
|
|
5623
5623
|
{ "name": "::part(root)", "description": "The root element of the icon." },
|
|
5624
5624
|
{ "name": "::part(icon)", "description": "The icon element." },
|
|
5625
|
+
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5625
5626
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5626
5627
|
{
|
|
5627
5628
|
"name": "::part(graphic-container)",
|
|
@@ -5639,7 +5640,6 @@
|
|
|
5639
5640
|
"name": "::part(actions-container)",
|
|
5640
5641
|
"description": "The actions container element."
|
|
5641
5642
|
},
|
|
5642
|
-
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5643
5643
|
{ "name": "::part(overlay)", "description": "The overlay root element." },
|
|
5644
5644
|
{
|
|
5645
5645
|
"name": "::part(surface)",
|
|
@@ -5648,6 +5648,10 @@
|
|
|
5648
5648
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5649
5649
|
{ "name": "::part(header)", "description": "The header of the scaffold." },
|
|
5650
5650
|
{ "name": "::part(body)", "description": "The body of the scaffold." },
|
|
5651
|
+
{
|
|
5652
|
+
"name": "::part(root)",
|
|
5653
|
+
"description": "The root element of the skeleton."
|
|
5654
|
+
},
|
|
5651
5655
|
{ "name": "::part(anchor)", "description": "The root anchor element." },
|
|
5652
5656
|
{
|
|
5653
5657
|
"name": "::part(focus-indicator)",
|
|
@@ -5657,10 +5661,6 @@
|
|
|
5657
5661
|
"name": "::part(state-layer)",
|
|
5658
5662
|
"description": "The state layer element."
|
|
5659
5663
|
},
|
|
5660
|
-
{
|
|
5661
|
-
"name": "::part(root)",
|
|
5662
|
-
"description": "The root element of the skeleton."
|
|
5663
|
-
},
|
|
5664
5664
|
{
|
|
5665
5665
|
"name": "::part(slider)",
|
|
5666
5666
|
"description": "Styles the slider container element."
|
|
@@ -5699,6 +5699,7 @@
|
|
|
5699
5699
|
"description": "Styles the start handle label content element."
|
|
5700
5700
|
},
|
|
5701
5701
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5702
|
+
{ "name": "::part(surface)", "description": "The surface element." },
|
|
5702
5703
|
{
|
|
5703
5704
|
"name": "::part(switch)",
|
|
5704
5705
|
"description": "Styles the switch container element."
|
|
@@ -5765,7 +5766,6 @@
|
|
|
5765
5766
|
"name": "::part(focus-indicator)",
|
|
5766
5767
|
"description": "The focus indicator element."
|
|
5767
5768
|
},
|
|
5768
|
-
{ "name": "::part(surface)", "description": "The surface element." },
|
|
5769
5769
|
{ "name": "::part(surface)", "description": "The surface container." },
|
|
5770
5770
|
{ "name": "::part(message)", "description": "The message container." },
|
|
5771
5771
|
{ "name": "::part(action-button)", "description": "The action button." },
|
|
@@ -5849,6 +5849,19 @@
|
|
|
5849
5849
|
"name": "::part(actions-container)",
|
|
5850
5850
|
"description": "The action container element around the slot."
|
|
5851
5851
|
},
|
|
5852
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5853
|
+
{
|
|
5854
|
+
"name": "::part(focus-indicator)",
|
|
5855
|
+
"description": "The focus indicator element."
|
|
5856
|
+
},
|
|
5857
|
+
{
|
|
5858
|
+
"name": "::part(state-layer)",
|
|
5859
|
+
"description": "The state layer surface element."
|
|
5860
|
+
},
|
|
5861
|
+
{
|
|
5862
|
+
"name": "::part(root)",
|
|
5863
|
+
"description": "The root container element for the group."
|
|
5864
|
+
},
|
|
5852
5865
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5853
5866
|
{
|
|
5854
5867
|
"name": "::part(trigger)",
|
|
@@ -5863,10 +5876,13 @@
|
|
|
5863
5876
|
"description": "The state layer surface."
|
|
5864
5877
|
},
|
|
5865
5878
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5866
|
-
{
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
},
|
|
5879
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5880
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5881
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5882
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5883
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5884
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5885
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5870
5886
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5871
5887
|
{
|
|
5872
5888
|
"name": "::part(content)",
|
|
@@ -5881,15 +5897,6 @@
|
|
|
5881
5897
|
"name": "::part(content)",
|
|
5882
5898
|
"description": "The content container element."
|
|
5883
5899
|
},
|
|
5884
|
-
{ "name": "::part(root)", "description": "The root container element." },
|
|
5885
|
-
{
|
|
5886
|
-
"name": "::part(focus-indicator)",
|
|
5887
|
-
"description": "The focus indicator element."
|
|
5888
|
-
},
|
|
5889
|
-
{
|
|
5890
|
-
"name": "::part(state-layer)",
|
|
5891
|
-
"description": "The state layer surface element."
|
|
5892
|
-
},
|
|
5893
5900
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5894
5901
|
{
|
|
5895
5902
|
"name": "::part(content)",
|
|
@@ -5999,10 +6006,6 @@
|
|
|
5999
6006
|
"name": "::part(focus-indicator)",
|
|
6000
6007
|
"description": "The focus indicator element."
|
|
6001
6008
|
},
|
|
6002
|
-
{ "name": "::part(container)", "description": "The tab container." },
|
|
6003
|
-
{ "name": "::part(content)", "description": "The tab content container." },
|
|
6004
|
-
{ "name": "::part(label)", "description": "The tab label container." },
|
|
6005
|
-
{ "name": "::part(indicator)", "description": "The tab active indicator." },
|
|
6006
6009
|
{ "name": "::part(root)", "description": "The root element." },
|
|
6007
6010
|
{ "name": "::part(step)", "description": "The step container element." },
|
|
6008
6011
|
{ "name": "::part(before)", "description": "The line before the step." },
|
|
@@ -6037,6 +6040,10 @@
|
|
|
6037
6040
|
"name": "::part(focus-indicator)",
|
|
6038
6041
|
"description": "The focus indicator element."
|
|
6039
6042
|
},
|
|
6043
|
+
{ "name": "::part(container)", "description": "The tab container." },
|
|
6044
|
+
{ "name": "::part(content)", "description": "The tab content container." },
|
|
6045
|
+
{ "name": "::part(label)", "description": "The tab label container." },
|
|
6046
|
+
{ "name": "::part(indicator)", "description": "The tab active indicator." },
|
|
6040
6047
|
{ "name": "::part(container)", "description": "The container element." },
|
|
6041
6048
|
{
|
|
6042
6049
|
"name": "::part(scroll-container)",
|