@tylertech/forge 3.8.2-dev.0 → 3.9.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +10454 -10067
- package/dist/lib.js +18 -18
- package/dist/lib.js.map +3 -3
- package/dist/toolbar/forge-toolbar.css +1 -0
- package/dist/vscode.css-custom-data.json +946 -946
- package/dist/vscode.html-custom-data.json +618 -558
- package/esm/calendar/calendar-adapter.d.ts +24 -0
- package/esm/calendar/calendar-adapter.js +67 -1
- package/esm/calendar/calendar-constants.d.ts +34 -0
- package/esm/calendar/calendar-constants.js +33 -0
- package/esm/calendar/calendar-core.d.ts +60 -0
- package/esm/calendar/calendar-core.js +220 -2
- package/esm/calendar/calendar-dom-utils.d.ts +6 -0
- package/esm/calendar/calendar-dom-utils.js +36 -0
- package/esm/calendar/calendar.d.ts +40 -1
- package/esm/calendar/calendar.js +80 -2
- package/esm/calendar/core/calendar-base.d.ts +3 -0
- package/esm/calendar/core/date-range.d.ts +2 -0
- package/esm/calendar/core/date-range.js +1 -0
- package/esm/date-picker/base/base-date-picker-adapter.js +0 -3
- package/esm/date-picker/base/base-date-picker-constants.d.ts +3 -0
- package/esm/date-picker/base/base-date-picker-constants.js +3 -0
- package/esm/date-picker/base/base-date-picker-core.d.ts +15 -0
- package/esm/date-picker/base/base-date-picker-core.js +30 -0
- package/esm/date-picker/base/base-date-picker.d.ts +12 -0
- package/esm/date-picker/base/base-date-picker.js +24 -0
- package/esm/date-picker/date-picker-core.d.ts +3 -0
- package/esm/date-picker/date-picker-core.js +20 -0
- package/esm/date-range-picker/date-range-picker-constants.d.ts +3 -0
- package/esm/date-range-picker/date-range-picker-constants.js +1 -0
- package/esm/date-range-picker/date-range-picker-core.d.ts +3 -0
- package/esm/date-range-picker/date-range-picker-core.js +62 -2
- package/esm/date-range-picker/date-range-picker.d.ts +3 -0
- package/esm/date-range-picker/date-range-picker.js +3 -0
- package/esm/split-view/split-view-panel/split-view-panel.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/toolbar/toolbar.js +1 -1
- package/package.json +1 -1
- package/sass/calendar/_mixins.scss +3 -2
- 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.",
|
|
@@ -113,24 +83,34 @@
|
|
|
113
83
|
"values": []
|
|
114
84
|
},
|
|
115
85
|
{
|
|
116
|
-
"name": "--forge-
|
|
117
|
-
"description": "The
|
|
118
|
-
"values": []
|
|
86
|
+
"name": "--forge-avatar-background",
|
|
87
|
+
"description": "The background color of the avatar.",
|
|
88
|
+
"values": [{ "name": "string" }]
|
|
119
89
|
},
|
|
120
90
|
{
|
|
121
|
-
"name": "--forge-
|
|
122
|
-
"description": "The
|
|
123
|
-
"values": []
|
|
91
|
+
"name": "--forge-avatar-shape",
|
|
92
|
+
"description": "The border radius of the avatar, defaults to 50%.",
|
|
93
|
+
"values": [{ "name": "number" }]
|
|
124
94
|
},
|
|
125
95
|
{
|
|
126
|
-
"name": "--forge-
|
|
127
|
-
"description": "The
|
|
128
|
-
"values": []
|
|
96
|
+
"name": "--forge-avatar-color",
|
|
97
|
+
"description": "The text color of the avatar.",
|
|
98
|
+
"values": [{ "name": "color" }]
|
|
129
99
|
},
|
|
130
100
|
{
|
|
131
|
-
"name": "--forge-
|
|
132
|
-
"description": "The
|
|
133
|
-
"values": []
|
|
101
|
+
"name": "--forge-avatar-size",
|
|
102
|
+
"description": "The height and width of the avatar.",
|
|
103
|
+
"values": [{ "name": "number" }]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "--forge-avatar-transition-duration",
|
|
107
|
+
"description": "The transition duration for animations.",
|
|
108
|
+
"values": [{ "name": "number" }]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "--forge-avatar-transition-timing",
|
|
112
|
+
"description": "The transition timing function for animations.",
|
|
113
|
+
"values": [{ "name": "string" }]
|
|
134
114
|
},
|
|
135
115
|
{
|
|
136
116
|
"name": "--forge-banner-background",
|
|
@@ -172,6 +152,26 @@
|
|
|
172
152
|
"description": "The transition easing function.",
|
|
173
153
|
"values": []
|
|
174
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"name": "--forge-bottom-sheet-desktop-max-width",
|
|
157
|
+
"description": "The maximum width of the bottom sheet on desktop.",
|
|
158
|
+
"values": []
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "--forge-bottom-sheet-desktop-min-width",
|
|
162
|
+
"description": "The minimum width of the bottom sheet on desktop.",
|
|
163
|
+
"values": []
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "--forge-bottom-sheet-animation-duration",
|
|
167
|
+
"description": "The duration of the bottom sheet animation to fullscreen.",
|
|
168
|
+
"values": []
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "--forge-bottom-sheet-animation-timing",
|
|
172
|
+
"description": "The timing function of the bottom sheet animation to fullscreen.",
|
|
173
|
+
"values": []
|
|
174
|
+
},
|
|
175
175
|
{
|
|
176
176
|
"name": "--forge-button-primary-color",
|
|
177
177
|
"description": "The primary color of the button.",
|
|
@@ -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.",
|
|
@@ -1202,6 +1182,26 @@
|
|
|
1202
1182
|
"description": "The duration of the exit animation for preset sheet dialogs.",
|
|
1203
1183
|
"values": []
|
|
1204
1184
|
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "--forge-divider-color",
|
|
1187
|
+
"description": "The color of the divider.",
|
|
1188
|
+
"values": []
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
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.",
|
|
1203
|
+
"values": []
|
|
1204
|
+
},
|
|
1205
1205
|
{
|
|
1206
1206
|
"name": "--forge-expansion-panel-animation-duration",
|
|
1207
1207
|
"description": "The duration of the open/close animation.",
|
|
@@ -1478,378 +1478,218 @@
|
|
|
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
|
|
1576
|
+
"name": "--forge-fab-extended-padding",
|
|
1577
|
+
"description": "The inline padding of the extended button.",
|
|
1578
1578
|
"values": []
|
|
1579
1579
|
},
|
|
1580
1580
|
{
|
|
1581
|
-
"name": "--forge-
|
|
1582
|
-
"description": "The
|
|
1581
|
+
"name": "--forge-fab-extended-min-width",
|
|
1582
|
+
"description": "The min-width of the extended button.",
|
|
1583
1583
|
"values": []
|
|
1584
1584
|
},
|
|
1585
1585
|
{
|
|
1586
|
-
"name": "--forge-
|
|
1587
|
-
"description": "The
|
|
1586
|
+
"name": "--forge-fab-density-small-size",
|
|
1587
|
+
"description": "The height and min-width of the small density button.",
|
|
1588
1588
|
"values": []
|
|
1589
1589
|
},
|
|
1590
1590
|
{
|
|
1591
|
-
"name": "--forge-
|
|
1592
|
-
"description": "The
|
|
1591
|
+
"name": "--forge-fab-density-medium-size",
|
|
1592
|
+
"description": "The height and min-width of the medium density (default) button.",
|
|
1593
1593
|
"values": []
|
|
1594
1594
|
},
|
|
1595
1595
|
{
|
|
1596
|
-
"name": "--forge-
|
|
1597
|
-
"description": "The
|
|
1596
|
+
"name": "--forge-fab-density-large-size",
|
|
1597
|
+
"description": "The height and min-width of the large density button.",
|
|
1598
1598
|
"values": []
|
|
1599
1599
|
},
|
|
1600
1600
|
{
|
|
1601
|
-
"name": "--forge-
|
|
1602
|
-
"description": "The
|
|
1601
|
+
"name": "--forge-fab-disabled-cursor",
|
|
1602
|
+
"description": "The cursor when disabled.",
|
|
1603
1603
|
"values": []
|
|
1604
1604
|
},
|
|
1605
1605
|
{
|
|
1606
|
-
"name": "--forge-
|
|
1607
|
-
"description": "The
|
|
1606
|
+
"name": "--forge-fab-disabled-background",
|
|
1607
|
+
"description": "The background color when disabled.",
|
|
1608
1608
|
"values": []
|
|
1609
1609
|
},
|
|
1610
1610
|
{
|
|
1611
|
-
"name": "--forge-
|
|
1612
|
-
"description": "The
|
|
1611
|
+
"name": "--forge-fab-disabled-color",
|
|
1612
|
+
"description": "The text color when disabled.",
|
|
1613
1613
|
"values": []
|
|
1614
1614
|
},
|
|
1615
1615
|
{
|
|
1616
|
-
"name": "--forge-
|
|
1617
|
-
"description": "The
|
|
1616
|
+
"name": "--forge-fab-disabled-opacity",
|
|
1617
|
+
"description": "The opacity when disabled.",
|
|
1618
1618
|
"values": []
|
|
1619
1619
|
},
|
|
1620
1620
|
{
|
|
1621
|
-
"name": "--forge-
|
|
1622
|
-
"description": "The display
|
|
1621
|
+
"name": "--forge-focus-indicator-display",
|
|
1622
|
+
"description": "The `display` style. Defaults to `flex`.",
|
|
1623
1623
|
"values": []
|
|
1624
1624
|
},
|
|
1625
1625
|
{
|
|
1626
|
-
"name": "--forge-
|
|
1627
|
-
"description": "The
|
|
1626
|
+
"name": "--forge-focus-indicator-width",
|
|
1627
|
+
"description": "The width of the focus indicator when resting.",
|
|
1628
1628
|
"values": []
|
|
1629
1629
|
},
|
|
1630
1630
|
{
|
|
1631
|
-
"name": "--forge-
|
|
1632
|
-
"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.",
|
|
1633
1633
|
"values": []
|
|
1634
1634
|
},
|
|
1635
1635
|
{
|
|
1636
|
-
"name": "--forge-
|
|
1637
|
-
"description": "The
|
|
1636
|
+
"name": "--forge-focus-indicator-color",
|
|
1637
|
+
"description": "The color of the focus indicator.",
|
|
1638
1638
|
"values": []
|
|
1639
1639
|
},
|
|
1640
1640
|
{
|
|
1641
|
-
"name": "--forge-
|
|
1642
|
-
"description": "The
|
|
1641
|
+
"name": "--forge-focus-indicator-shape",
|
|
1642
|
+
"description": "The shape of the focus indicator.",
|
|
1643
1643
|
"values": []
|
|
1644
1644
|
},
|
|
1645
1645
|
{
|
|
1646
|
-
"name": "--forge-
|
|
1647
|
-
"description": "The
|
|
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.",
|
|
1673
|
-
"values": []
|
|
1674
|
-
},
|
|
1675
|
-
{
|
|
1676
|
-
"name": "--forge-fab-lowered-active-shadow",
|
|
1677
|
-
"description": "The box shadow of the button when lowered and active.",
|
|
1678
|
-
"values": []
|
|
1679
|
-
},
|
|
1680
|
-
{
|
|
1681
|
-
"name": "--forge-fab-transition-duration",
|
|
1682
|
-
"description": "The transition duration.",
|
|
1683
|
-
"values": []
|
|
1684
|
-
},
|
|
1685
|
-
{
|
|
1686
|
-
"name": "--forge-fab-transition-timing",
|
|
1687
|
-
"description": "The transition timing function.",
|
|
1688
|
-
"values": []
|
|
1689
|
-
},
|
|
1690
|
-
{
|
|
1691
|
-
"name": "--forge-fab-shape",
|
|
1692
|
-
"description": "The border radius of the button.",
|
|
1693
|
-
"values": []
|
|
1694
|
-
},
|
|
1695
|
-
{
|
|
1696
|
-
"name": "--forge-fab-shape-start-start",
|
|
1697
|
-
"description": "The start-start border radius.",
|
|
1698
|
-
"values": []
|
|
1699
|
-
},
|
|
1700
|
-
{
|
|
1701
|
-
"name": "--forge-fab-shape-start-end",
|
|
1702
|
-
"description": "The start-end border radius.",
|
|
1703
|
-
"values": []
|
|
1704
|
-
},
|
|
1705
|
-
{
|
|
1706
|
-
"name": "--forge-fab-shape-end-start",
|
|
1707
|
-
"description": "The end-start border radius.",
|
|
1708
|
-
"values": []
|
|
1709
|
-
},
|
|
1710
|
-
{
|
|
1711
|
-
"name": "--forge-fab-shape-end-end",
|
|
1712
|
-
"description": "The end-end border radius.",
|
|
1713
|
-
"values": []
|
|
1714
|
-
},
|
|
1715
|
-
{
|
|
1716
|
-
"name": "--forge-fab-extended-padding",
|
|
1717
|
-
"description": "The inline padding of the extended button.",
|
|
1718
|
-
"values": []
|
|
1719
|
-
},
|
|
1720
|
-
{
|
|
1721
|
-
"name": "--forge-fab-extended-min-width",
|
|
1722
|
-
"description": "The min-width of the extended button.",
|
|
1723
|
-
"values": []
|
|
1724
|
-
},
|
|
1725
|
-
{
|
|
1726
|
-
"name": "--forge-fab-density-small-size",
|
|
1727
|
-
"description": "The height and min-width of the small density button.",
|
|
1728
|
-
"values": []
|
|
1729
|
-
},
|
|
1730
|
-
{
|
|
1731
|
-
"name": "--forge-fab-density-medium-size",
|
|
1732
|
-
"description": "The height and min-width of the medium density (default) button.",
|
|
1733
|
-
"values": []
|
|
1734
|
-
},
|
|
1735
|
-
{
|
|
1736
|
-
"name": "--forge-fab-density-large-size",
|
|
1737
|
-
"description": "The height and min-width of the large density button.",
|
|
1738
|
-
"values": []
|
|
1739
|
-
},
|
|
1740
|
-
{
|
|
1741
|
-
"name": "--forge-fab-disabled-cursor",
|
|
1742
|
-
"description": "The cursor when disabled.",
|
|
1743
|
-
"values": []
|
|
1744
|
-
},
|
|
1745
|
-
{
|
|
1746
|
-
"name": "--forge-fab-disabled-background",
|
|
1747
|
-
"description": "The background color when disabled.",
|
|
1748
|
-
"values": []
|
|
1749
|
-
},
|
|
1750
|
-
{
|
|
1751
|
-
"name": "--forge-fab-disabled-color",
|
|
1752
|
-
"description": "The text color when disabled.",
|
|
1753
|
-
"values": []
|
|
1754
|
-
},
|
|
1755
|
-
{
|
|
1756
|
-
"name": "--forge-fab-disabled-opacity",
|
|
1757
|
-
"description": "The opacity when disabled.",
|
|
1758
|
-
"values": []
|
|
1759
|
-
},
|
|
1760
|
-
{
|
|
1761
|
-
"name": "--forge-label-value-align",
|
|
1762
|
-
"description": "Aligns the label and value. Possible values: `start` (default), `center`, `end`.",
|
|
1763
|
-
"values": []
|
|
1764
|
-
},
|
|
1765
|
-
{
|
|
1766
|
-
"name": "--forge-label-value-label-spacing",
|
|
1767
|
-
"description": "The spacing between the label and value.",
|
|
1768
|
-
"values": []
|
|
1769
|
-
},
|
|
1770
|
-
{
|
|
1771
|
-
"name": "--forge-label-value-label-block-start-spacing",
|
|
1772
|
-
"description": "The block start spacing for the label.",
|
|
1773
|
-
"values": []
|
|
1774
|
-
},
|
|
1775
|
-
{
|
|
1776
|
-
"name": "--forge-label-value-label-block-end-spacing",
|
|
1777
|
-
"description": "The block end spacing for the label.",
|
|
1778
|
-
"values": []
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
"name": "--forge-label-value-label-color",
|
|
1782
|
-
"description": "The color to apply to the label.",
|
|
1783
|
-
"values": []
|
|
1784
|
-
},
|
|
1785
|
-
{
|
|
1786
|
-
"name": "--forge-label-value-icon-spacing",
|
|
1787
|
-
"description": "The spacing between the icon and the label.",
|
|
1788
|
-
"values": []
|
|
1789
|
-
},
|
|
1790
|
-
{
|
|
1791
|
-
"name": "--forge-label-value-inline-label-spacing",
|
|
1792
|
-
"description": "The spacing between the label and value when displayed inline.",
|
|
1793
|
-
"values": []
|
|
1794
|
-
},
|
|
1795
|
-
{
|
|
1796
|
-
"name": "--forge-label-value-empty-color",
|
|
1797
|
-
"description": "The color to apply to the value when empty.",
|
|
1798
|
-
"values": []
|
|
1799
|
-
},
|
|
1800
|
-
{
|
|
1801
|
-
"name": "--forge-label-value-empty-style",
|
|
1802
|
-
"description": "The font-style to apply to the value when empty.",
|
|
1803
|
-
"values": []
|
|
1804
|
-
},
|
|
1805
|
-
{
|
|
1806
|
-
"name": "--forge-linear-progress-height",
|
|
1807
|
-
"description": "The height of the element.",
|
|
1646
|
+
"name": "--forge-focus-indicator-duration",
|
|
1647
|
+
"description": "The animation duration.",
|
|
1808
1648
|
"values": []
|
|
1809
1649
|
},
|
|
1810
1650
|
{
|
|
1811
|
-
"name": "--forge-
|
|
1812
|
-
"description": "The
|
|
1651
|
+
"name": "--forge-focus-indicator-easing",
|
|
1652
|
+
"description": "The animation easing function.",
|
|
1813
1653
|
"values": []
|
|
1814
1654
|
},
|
|
1815
1655
|
{
|
|
1816
|
-
"name": "--forge-
|
|
1817
|
-
"description": "The
|
|
1656
|
+
"name": "--forge-focus-indicator-shape-start-start",
|
|
1657
|
+
"description": "The start start shape.",
|
|
1818
1658
|
"values": []
|
|
1819
1659
|
},
|
|
1820
1660
|
{
|
|
1821
|
-
"name": "--forge-
|
|
1822
|
-
"description": "The
|
|
1661
|
+
"name": "--forge-focus-indicator-shape-start-end",
|
|
1662
|
+
"description": "The start end shape.",
|
|
1823
1663
|
"values": []
|
|
1824
1664
|
},
|
|
1825
1665
|
{
|
|
1826
|
-
"name": "--forge-
|
|
1827
|
-
"description": "The
|
|
1666
|
+
"name": "--forge-focus-indicator-shape-end-start",
|
|
1667
|
+
"description": "The end start shape.",
|
|
1828
1668
|
"values": []
|
|
1829
1669
|
},
|
|
1830
1670
|
{
|
|
1831
|
-
"name": "--forge-
|
|
1832
|
-
"description": "The
|
|
1671
|
+
"name": "--forge-focus-indicator-shape-end-end",
|
|
1672
|
+
"description": "The end end shape.",
|
|
1833
1673
|
"values": []
|
|
1834
1674
|
},
|
|
1835
1675
|
{
|
|
1836
|
-
"name": "--forge-
|
|
1837
|
-
"description": "The
|
|
1676
|
+
"name": "--forge-focus-indicator-outward-offset",
|
|
1677
|
+
"description": "The offset of the focus indicator when outward.",
|
|
1838
1678
|
"values": []
|
|
1839
1679
|
},
|
|
1840
1680
|
{
|
|
1841
|
-
"name": "--forge-
|
|
1842
|
-
"description": "The
|
|
1681
|
+
"name": "--forge-focus-indicator-inward-offset",
|
|
1682
|
+
"description": "The offset of the focus indicator when inward.",
|
|
1843
1683
|
"values": []
|
|
1844
1684
|
},
|
|
1845
1685
|
{
|
|
1846
|
-
"name": "--forge-
|
|
1847
|
-
"description": "The
|
|
1686
|
+
"name": "--forge-focus-indicator-offset-block",
|
|
1687
|
+
"description": "The block offset.",
|
|
1848
1688
|
"values": []
|
|
1849
1689
|
},
|
|
1850
1690
|
{
|
|
1851
|
-
"name": "--forge-
|
|
1852
|
-
"description": "The
|
|
1691
|
+
"name": "--forge-focus-indicator-offset-inline",
|
|
1692
|
+
"description": "The inline offset.",
|
|
1853
1693
|
"values": []
|
|
1854
1694
|
},
|
|
1855
1695
|
{
|
|
@@ -2128,108 +1968,208 @@
|
|
|
2128
1968
|
"values": []
|
|
2129
1969
|
},
|
|
2130
1970
|
{
|
|
2131
|
-
"name": "--forge-
|
|
2132
|
-
"description": "The color
|
|
1971
|
+
"name": "--forge-inline-message-background",
|
|
1972
|
+
"description": "The background color.",
|
|
2133
1973
|
"values": []
|
|
2134
1974
|
},
|
|
2135
1975
|
{
|
|
2136
|
-
"name": "--forge-
|
|
2137
|
-
"description": "The
|
|
1976
|
+
"name": "--forge-inline-message-color",
|
|
1977
|
+
"description": "The text color.",
|
|
2138
1978
|
"values": []
|
|
2139
1979
|
},
|
|
2140
1980
|
{
|
|
2141
|
-
"name": "--forge-
|
|
2142
|
-
"description": "The
|
|
1981
|
+
"name": "--forge-inline-message-shape",
|
|
1982
|
+
"description": "The shape (border) radius.",
|
|
2143
1983
|
"values": []
|
|
2144
1984
|
},
|
|
2145
1985
|
{
|
|
2146
|
-
"name": "--forge-
|
|
2147
|
-
"description": "The
|
|
1986
|
+
"name": "--forge-inline-message-padding",
|
|
1987
|
+
"description": "The padding around the content.",
|
|
2148
1988
|
"values": []
|
|
2149
1989
|
},
|
|
2150
1990
|
{
|
|
2151
|
-
"name": "--forge-
|
|
2152
|
-
"description": "The
|
|
1991
|
+
"name": "--forge-inline-message-padding-inline",
|
|
1992
|
+
"description": "The inline padding around the content.",
|
|
2153
1993
|
"values": []
|
|
2154
1994
|
},
|
|
2155
1995
|
{
|
|
2156
|
-
"name": "--forge-
|
|
2157
|
-
"description": "The
|
|
1996
|
+
"name": "--forge-inline-message-padding-block",
|
|
1997
|
+
"description": "The block padding around the content.",
|
|
2158
1998
|
"values": []
|
|
2159
1999
|
},
|
|
2160
2000
|
{
|
|
2161
|
-
"name": "--forge-
|
|
2162
|
-
"description": "The
|
|
2001
|
+
"name": "--forge-inline-message-border-width",
|
|
2002
|
+
"description": "The border width.",
|
|
2163
2003
|
"values": []
|
|
2164
2004
|
},
|
|
2165
2005
|
{
|
|
2166
|
-
"name": "--forge-
|
|
2167
|
-
"description": "The
|
|
2006
|
+
"name": "--forge-inline-message-border-style",
|
|
2007
|
+
"description": "The border style. Defaults to `none`.",
|
|
2168
2008
|
"values": []
|
|
2169
2009
|
},
|
|
2170
2010
|
{
|
|
2171
|
-
"name": "--forge-
|
|
2172
|
-
"description": "The
|
|
2011
|
+
"name": "--forge-inline-message-border-color",
|
|
2012
|
+
"description": "The border color.",
|
|
2173
2013
|
"values": []
|
|
2174
2014
|
},
|
|
2175
2015
|
{
|
|
2176
|
-
"name": "--forge-
|
|
2177
|
-
"description": "The
|
|
2016
|
+
"name": "--forge-inline-message-gap",
|
|
2017
|
+
"description": "The gap/space between the content elements.",
|
|
2178
2018
|
"values": []
|
|
2179
2019
|
},
|
|
2180
2020
|
{
|
|
2181
|
-
"name": "--forge-
|
|
2182
|
-
"description": "The
|
|
2021
|
+
"name": "--forge-inline-message-icon-gap",
|
|
2022
|
+
"description": "The gap/space between the icon and the content.",
|
|
2183
2023
|
"values": []
|
|
2184
2024
|
},
|
|
2185
2025
|
{
|
|
2186
|
-
"name": "--forge-
|
|
2187
|
-
"description": "The
|
|
2026
|
+
"name": "--forge-inline-message-content-gap",
|
|
2027
|
+
"description": "The gap/space between the title and the message.",
|
|
2188
2028
|
"values": []
|
|
2189
2029
|
},
|
|
2190
2030
|
{
|
|
2191
|
-
"name": "--forge-
|
|
2192
|
-
"description": "The
|
|
2031
|
+
"name": "--forge-inline-message-icon-color",
|
|
2032
|
+
"description": "The icon color.",
|
|
2193
2033
|
"values": []
|
|
2194
2034
|
},
|
|
2195
2035
|
{
|
|
2196
|
-
"name": "--forge-
|
|
2197
|
-
"description": "
|
|
2036
|
+
"name": "--forge-label-value-align",
|
|
2037
|
+
"description": "Aligns the label and value. Possible values: `start` (default), `center`, `end`.",
|
|
2198
2038
|
"values": []
|
|
2199
2039
|
},
|
|
2200
2040
|
{
|
|
2201
|
-
"name": "--forge-
|
|
2202
|
-
"description": "The
|
|
2041
|
+
"name": "--forge-label-value-label-spacing",
|
|
2042
|
+
"description": "The spacing between the label and value.",
|
|
2203
2043
|
"values": []
|
|
2204
2044
|
},
|
|
2205
2045
|
{
|
|
2206
|
-
"name": "--forge-
|
|
2207
|
-
"description": "The
|
|
2046
|
+
"name": "--forge-label-value-label-block-start-spacing",
|
|
2047
|
+
"description": "The block start spacing for the label.",
|
|
2208
2048
|
"values": []
|
|
2209
2049
|
},
|
|
2210
2050
|
{
|
|
2211
|
-
"name": "--forge-
|
|
2212
|
-
"description": "The
|
|
2051
|
+
"name": "--forge-label-value-label-block-end-spacing",
|
|
2052
|
+
"description": "The block end spacing for the label.",
|
|
2213
2053
|
"values": []
|
|
2214
2054
|
},
|
|
2215
2055
|
{
|
|
2216
|
-
"name": "--forge-
|
|
2217
|
-
"description": "The
|
|
2056
|
+
"name": "--forge-label-value-label-color",
|
|
2057
|
+
"description": "The color to apply to the label.",
|
|
2218
2058
|
"values": []
|
|
2219
2059
|
},
|
|
2220
2060
|
{
|
|
2221
|
-
"name": "--forge-
|
|
2222
|
-
"description": "The
|
|
2061
|
+
"name": "--forge-label-value-icon-spacing",
|
|
2062
|
+
"description": "The spacing between the icon and the label.",
|
|
2223
2063
|
"values": []
|
|
2224
2064
|
},
|
|
2225
2065
|
{
|
|
2226
|
-
"name": "--forge-
|
|
2227
|
-
"description": "The
|
|
2066
|
+
"name": "--forge-label-value-inline-label-spacing",
|
|
2067
|
+
"description": "The spacing between the label and value when displayed inline.",
|
|
2228
2068
|
"values": []
|
|
2229
2069
|
},
|
|
2230
2070
|
{
|
|
2231
|
-
"name": "--forge-
|
|
2232
|
-
"description": "The
|
|
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
|
+
"values": []
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"name": "--forge-linear-progress-indicator-height",
|
|
2102
|
+
"description": "The height of the indicator only.",
|
|
2103
|
+
"values": []
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"name": "--forge-linear-progress-determinate-duration",
|
|
2107
|
+
"description": "The duration of the determinate animation.",
|
|
2108
|
+
"values": []
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"name": "--forge-linear-progress-indeterminate-duration",
|
|
2112
|
+
"description": "The duration of the indeterminate animation.",
|
|
2113
|
+
"values": []
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"name": "--forge-linear-progress-determinate-easing",
|
|
2117
|
+
"description": "The easing function to use for the determinate animation.",
|
|
2118
|
+
"values": []
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"name": "--forge-linear-progress-theme-transition-duration",
|
|
2122
|
+
"description": "The duration of the theme transition.",
|
|
2123
|
+
"values": []
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"name": "--forge-linear-progress-theme-transition-timing",
|
|
2127
|
+
"description": "The easing function to use for the theme transition.",
|
|
2128
|
+
"values": []
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"name": "--forge-open-icon-color",
|
|
2132
|
+
"description": "The color of the icon.",
|
|
2133
|
+
"values": []
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"name": "--forge-open-icon-size",
|
|
2137
|
+
"description": "The size of the icon.",
|
|
2138
|
+
"values": []
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"name": "--forge-open-icon-height",
|
|
2142
|
+
"description": "The height of the icon. Defaults to `size`.",
|
|
2143
|
+
"values": []
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"name": "--forge-open-icon-width",
|
|
2147
|
+
"description": "The width of the icon. Defaults to `size`.",
|
|
2148
|
+
"values": []
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
"name": "--forge-open-icon-initial-rotation",
|
|
2152
|
+
"description": "The initial rotation of the icon.",
|
|
2153
|
+
"values": []
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"name": "--forge-open-icon-open-rotation",
|
|
2157
|
+
"description": "The rotation of the icon when open.",
|
|
2158
|
+
"values": []
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"name": "--forge-open-icon-animation-duration",
|
|
2162
|
+
"description": "The duration of the open animation.",
|
|
2163
|
+
"values": []
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"name": "--forge-open-icon-half-animation-duration",
|
|
2167
|
+
"description": "The duration of the open animation when in a half orientation.",
|
|
2168
|
+
"values": []
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"name": "--forge-open-icon-animation-timing",
|
|
2172
|
+
"description": "The timing function of the open animation.",
|
|
2233
2173
|
"values": []
|
|
2234
2174
|
},
|
|
2235
2175
|
{
|
|
@@ -2272,6 +2212,66 @@
|
|
|
2272
2212
|
"description": "The `inline-end` position of the overlay.",
|
|
2273
2213
|
"values": []
|
|
2274
2214
|
},
|
|
2215
|
+
{
|
|
2216
|
+
"name": "--forge-page-state-width",
|
|
2217
|
+
"description": "The width of the page state.",
|
|
2218
|
+
"values": []
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"name": "--forge-page-state-height",
|
|
2222
|
+
"description": "The height of the page state.",
|
|
2223
|
+
"values": []
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"name": "--forge-page-state-spacing",
|
|
2227
|
+
"description": "The spacing of the page state.",
|
|
2228
|
+
"values": []
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"name": "--forge-page-state-mobile-width",
|
|
2232
|
+
"description": "The mobile width of the page state.",
|
|
2233
|
+
"values": []
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"name": "--forge-page-state-graphic-height",
|
|
2237
|
+
"description": "The graphic height of the page state.",
|
|
2238
|
+
"values": []
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"name": "--forge-page-state-graphic-spacing",
|
|
2242
|
+
"description": "The graphic spacing of the page state.",
|
|
2243
|
+
"values": []
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
"name": "--forge-page-state-mobile-graphic-height",
|
|
2247
|
+
"description": "The mobile graphic height of the page state.",
|
|
2248
|
+
"values": []
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
"name": "--forge-page-state-title-color",
|
|
2252
|
+
"description": "The title color of the page state.",
|
|
2253
|
+
"values": []
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"name": "--forge-page-state-title-spacing",
|
|
2257
|
+
"description": "The title spacing of the page state.",
|
|
2258
|
+
"values": []
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"name": "--forge-page-state-message-color",
|
|
2262
|
+
"description": "The message color of the page state.",
|
|
2263
|
+
"values": []
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"name": "--forge-page-state-message-spacing",
|
|
2267
|
+
"description": "The message spacing of the page state.",
|
|
2268
|
+
"values": []
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"name": "--forge-page-state-actions-spacing",
|
|
2272
|
+
"description": "The actions spacing of the page state.",
|
|
2273
|
+
"values": []
|
|
2274
|
+
},
|
|
2275
2275
|
{
|
|
2276
2276
|
"name": "--forge-popover-background",
|
|
2277
2277
|
"description": "The background color of the popover surface.",
|
|
@@ -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.",
|
|
@@ -2623,22 +2568,77 @@
|
|
|
2623
2568
|
"values": []
|
|
2624
2569
|
},
|
|
2625
2570
|
{
|
|
2626
|
-
"name": "--forge-
|
|
2627
|
-
"description": "The
|
|
2571
|
+
"name": "--forge-skip-link-background",
|
|
2572
|
+
"description": "The background color of the skip link.",
|
|
2628
2573
|
"values": []
|
|
2629
2574
|
},
|
|
2630
2575
|
{
|
|
2631
|
-
"name": "--forge-
|
|
2632
|
-
"description": "The color of
|
|
2576
|
+
"name": "--forge-skip-link-color",
|
|
2577
|
+
"description": "The text color of the skip link.",
|
|
2633
2578
|
"values": []
|
|
2634
2579
|
},
|
|
2635
2580
|
{
|
|
2636
|
-
"name": "--forge-
|
|
2637
|
-
"description": "The
|
|
2581
|
+
"name": "--forge-skip-link-shape",
|
|
2582
|
+
"description": "The border radius of the skip link.",
|
|
2638
2583
|
"values": []
|
|
2639
2584
|
},
|
|
2640
2585
|
{
|
|
2641
|
-
"name": "--forge-
|
|
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
|
+
{
|
|
2626
|
+
"name": "--forge-theme-primary",
|
|
2627
|
+
"description": "The primary color of the slider.",
|
|
2628
|
+
"values": []
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"name": "--forge-theme-on-primary",
|
|
2632
|
+
"description": "The color of elements placed on top of the primary color (the label text for example).",
|
|
2633
|
+
"values": []
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"name": "--forge-slider-track-height",
|
|
2637
|
+
"description": "The height of the track.",
|
|
2638
|
+
"values": []
|
|
2639
|
+
},
|
|
2640
|
+
{
|
|
2641
|
+
"name": "--forge-slider-active-track-color",
|
|
2642
2642
|
"description": "The color of the active track.",
|
|
2643
2643
|
"values": []
|
|
2644
2644
|
},
|
|
@@ -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.",
|
|
@@ -3588,203 +3588,423 @@
|
|
|
3588
3588
|
"values": []
|
|
3589
3589
|
},
|
|
3590
3590
|
{
|
|
3591
|
-
"name": "--forge-tooltip-padding-block",
|
|
3592
|
-
"description": "The block padding of the tooltip surface.",
|
|
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.",
|
|
3803
|
+
"values": []
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
"name": "--forge-button-toggle-padding-block",
|
|
3807
|
+
"description": "The padding on the block axis.",
|
|
3808
|
+
"values": []
|
|
3809
|
+
},
|
|
3810
|
+
{
|
|
3811
|
+
"name": "--forge-button-toggle-padding-inline",
|
|
3812
|
+
"description": "The padding on the inline axis.",
|
|
3593
3813
|
"values": []
|
|
3594
3814
|
},
|
|
3595
3815
|
{
|
|
3596
|
-
"name": "--forge-
|
|
3597
|
-
"description": "The
|
|
3816
|
+
"name": "--forge-button-toggle-color",
|
|
3817
|
+
"description": "The color of the button toggle content.",
|
|
3598
3818
|
"values": []
|
|
3599
3819
|
},
|
|
3600
3820
|
{
|
|
3601
|
-
"name": "--forge-
|
|
3602
|
-
"description": "The
|
|
3821
|
+
"name": "--forge-button-toggle-background",
|
|
3822
|
+
"description": "The background of the button toggle.",
|
|
3603
3823
|
"values": []
|
|
3604
3824
|
},
|
|
3605
3825
|
{
|
|
3606
|
-
"name": "--forge-
|
|
3607
|
-
"description": "The
|
|
3826
|
+
"name": "--forge-button-toggle-cursor",
|
|
3827
|
+
"description": "The cursor of the button toggle.",
|
|
3608
3828
|
"values": []
|
|
3609
3829
|
},
|
|
3610
3830
|
{
|
|
3611
|
-
"name": "--forge-
|
|
3612
|
-
"description": "The border
|
|
3831
|
+
"name": "--forge-button-toggle-border-width",
|
|
3832
|
+
"description": "The border-width of the button toggle.",
|
|
3613
3833
|
"values": []
|
|
3614
3834
|
},
|
|
3615
3835
|
{
|
|
3616
|
-
"name": "--forge-
|
|
3617
|
-
"description": "The border
|
|
3836
|
+
"name": "--forge-button-toggle-border-style",
|
|
3837
|
+
"description": "The border-style of the button toggle.",
|
|
3618
3838
|
"values": []
|
|
3619
3839
|
},
|
|
3620
3840
|
{
|
|
3621
|
-
"name": "--forge-
|
|
3622
|
-
"description": "The border
|
|
3841
|
+
"name": "--forge-button-toggle-border-color",
|
|
3842
|
+
"description": "The border-color of the button toggle.",
|
|
3623
3843
|
"values": []
|
|
3624
3844
|
},
|
|
3625
3845
|
{
|
|
3626
|
-
"name": "--forge-
|
|
3627
|
-
"description": "The
|
|
3846
|
+
"name": "--forge-button-toggle-shape",
|
|
3847
|
+
"description": "The shape radius of the button toggle.",
|
|
3628
3848
|
"values": []
|
|
3629
3849
|
},
|
|
3630
3850
|
{
|
|
3631
|
-
"name": "--forge-
|
|
3632
|
-
"description": "The
|
|
3851
|
+
"name": "--forge-button-toggle-shape-start-start",
|
|
3852
|
+
"description": "The start-start shape radius of the button toggle.",
|
|
3633
3853
|
"values": []
|
|
3634
3854
|
},
|
|
3635
3855
|
{
|
|
3636
|
-
"name": "--forge-
|
|
3637
|
-
"description": "The
|
|
3856
|
+
"name": "--forge-button-toggle-shape-start-end",
|
|
3857
|
+
"description": "The start-end shape radius of the button toggle.",
|
|
3638
3858
|
"values": []
|
|
3639
3859
|
},
|
|
3640
3860
|
{
|
|
3641
|
-
"name": "--forge-
|
|
3642
|
-
"description": "The
|
|
3861
|
+
"name": "--forge-button-toggle-shape-end-start",
|
|
3862
|
+
"description": "The end-start shape radius of the button toggle.",
|
|
3643
3863
|
"values": []
|
|
3644
3864
|
},
|
|
3645
3865
|
{
|
|
3646
|
-
"name": "--forge-
|
|
3647
|
-
"description": "The
|
|
3866
|
+
"name": "--forge-button-toggle-shape-end-end",
|
|
3867
|
+
"description": "The end-end shape radius of the button toggle.",
|
|
3648
3868
|
"values": []
|
|
3649
3869
|
},
|
|
3650
3870
|
{
|
|
3651
|
-
"name": "--forge-
|
|
3652
|
-
"description": "The
|
|
3871
|
+
"name": "--forge-button-toggle-selected-background",
|
|
3872
|
+
"description": "The background of the button toggle when selected.",
|
|
3653
3873
|
"values": []
|
|
3654
3874
|
},
|
|
3655
3875
|
{
|
|
3656
|
-
"name": "--forge-
|
|
3657
|
-
"description": "The
|
|
3876
|
+
"name": "--forge-button-toggle-selected-color",
|
|
3877
|
+
"description": "The color of the button toggle content when selected.",
|
|
3658
3878
|
"values": []
|
|
3659
3879
|
},
|
|
3660
3880
|
{
|
|
3661
|
-
"name": "--forge-
|
|
3662
|
-
"description": "The
|
|
3881
|
+
"name": "--forge-button-toggle-selected-disabled-background",
|
|
3882
|
+
"description": "The background of the button toggle when selected and disabled.",
|
|
3663
3883
|
"values": []
|
|
3664
3884
|
},
|
|
3665
3885
|
{
|
|
3666
|
-
"name": "--forge-
|
|
3667
|
-
"description": "The
|
|
3886
|
+
"name": "--forge-button-toggle-disabled-opacity",
|
|
3887
|
+
"description": "The opacity of the button toggle when disabled.",
|
|
3668
3888
|
"values": []
|
|
3669
3889
|
},
|
|
3670
3890
|
{
|
|
3671
|
-
"name": "--forge-
|
|
3672
|
-
"description": "The
|
|
3891
|
+
"name": "--forge-button-toggle-disabled-cursor",
|
|
3892
|
+
"description": "The cursor of the button toggle when disabled.",
|
|
3673
3893
|
"values": []
|
|
3674
3894
|
},
|
|
3675
3895
|
{
|
|
3676
|
-
"name": "--forge-
|
|
3677
|
-
"description": "The
|
|
3896
|
+
"name": "--forge-button-toggle-disabled-color",
|
|
3897
|
+
"description": "The color of the button toggle content when disabled.",
|
|
3678
3898
|
"values": []
|
|
3679
3899
|
},
|
|
3680
3900
|
{
|
|
3681
|
-
"name": "--forge-
|
|
3682
|
-
"description": "The
|
|
3901
|
+
"name": "--forge-button-toggle-disabled-background",
|
|
3902
|
+
"description": "The background of the button toggle when disabled.",
|
|
3683
3903
|
"values": []
|
|
3684
3904
|
},
|
|
3685
3905
|
{
|
|
3686
|
-
"name": "--forge-
|
|
3687
|
-
"description": "The
|
|
3906
|
+
"name": "--forge-button-toggle-transition-duration",
|
|
3907
|
+
"description": "The transition-duration of various properties.",
|
|
3688
3908
|
"values": []
|
|
3689
3909
|
},
|
|
3690
3910
|
{
|
|
3691
|
-
"name": "--forge-
|
|
3692
|
-
"description": "The
|
|
3911
|
+
"name": "--forge-button-toggle-transition-timing",
|
|
3912
|
+
"description": "The transition-timing of various properties.",
|
|
3693
3913
|
"values": []
|
|
3694
3914
|
},
|
|
3695
3915
|
{
|
|
3696
|
-
"name": "--forge-
|
|
3697
|
-
"description": "The
|
|
3916
|
+
"name": "--forge-button-toggle-group-display",
|
|
3917
|
+
"description": "The `display` of the group container elements.",
|
|
3698
3918
|
"values": []
|
|
3699
3919
|
},
|
|
3700
3920
|
{
|
|
3701
|
-
"name": "--forge-
|
|
3702
|
-
"description": "The
|
|
3921
|
+
"name": "--forge-button-toggle-group-gap",
|
|
3922
|
+
"description": "The space between button toggle elements.",
|
|
3703
3923
|
"values": []
|
|
3704
3924
|
},
|
|
3705
3925
|
{
|
|
3706
|
-
"name": "--forge-
|
|
3707
|
-
"description": "The
|
|
3926
|
+
"name": "--forge-button-toggle-group-padding",
|
|
3927
|
+
"description": "The padding around the button toggle elements when outlined.",
|
|
3708
3928
|
"values": []
|
|
3709
3929
|
},
|
|
3710
3930
|
{
|
|
3711
|
-
"name": "--forge-
|
|
3712
|
-
"description": "The
|
|
3931
|
+
"name": "--forge-button-toggle-group-padding-block",
|
|
3932
|
+
"description": "The block padding around the button toggle elements when outlined.",
|
|
3713
3933
|
"values": []
|
|
3714
3934
|
},
|
|
3715
3935
|
{
|
|
3716
|
-
"name": "--forge-
|
|
3717
|
-
"description": "The
|
|
3936
|
+
"name": "--forge-button-toggle-group-padding-inline",
|
|
3937
|
+
"description": "The inline padding around the button toggle elements when outlined.",
|
|
3718
3938
|
"values": []
|
|
3719
3939
|
},
|
|
3720
3940
|
{
|
|
3721
|
-
"name": "--forge-
|
|
3722
|
-
"description": "The height of the
|
|
3941
|
+
"name": "--forge-button-toggle-group-height",
|
|
3942
|
+
"description": "The height of the group element.",
|
|
3723
3943
|
"values": []
|
|
3724
3944
|
},
|
|
3725
3945
|
{
|
|
3726
|
-
"name": "--forge-
|
|
3727
|
-
"description": "The
|
|
3946
|
+
"name": "--forge-button-toggle-group-dense-height",
|
|
3947
|
+
"description": "The height of the group element when dense.",
|
|
3728
3948
|
"values": []
|
|
3729
3949
|
},
|
|
3730
3950
|
{
|
|
3731
|
-
"name": "--forge-
|
|
3732
|
-
"description": "The
|
|
3951
|
+
"name": "--forge-button-toggle-group-outline-width",
|
|
3952
|
+
"description": "The width of the outline around the group element.",
|
|
3733
3953
|
"values": []
|
|
3734
3954
|
},
|
|
3735
3955
|
{
|
|
3736
|
-
"name": "--forge-
|
|
3737
|
-
"description": "The
|
|
3956
|
+
"name": "--forge-button-toggle-group-outline-style",
|
|
3957
|
+
"description": "The style of the outline around the group element.",
|
|
3738
3958
|
"values": []
|
|
3739
3959
|
},
|
|
3740
3960
|
{
|
|
3741
|
-
"name": "--forge-
|
|
3742
|
-
"description": "The
|
|
3961
|
+
"name": "--forge-button-toggle-group-outline-color",
|
|
3962
|
+
"description": "The color of the outline around the group element.",
|
|
3743
3963
|
"values": []
|
|
3744
3964
|
},
|
|
3745
3965
|
{
|
|
3746
|
-
"name": "--forge-
|
|
3747
|
-
"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.",
|
|
3748
3968
|
"values": []
|
|
3749
3969
|
},
|
|
3750
3970
|
{
|
|
3751
|
-
"name": "--forge-
|
|
3752
|
-
"description": "The
|
|
3971
|
+
"name": "--forge-button-toggle-group-shape",
|
|
3972
|
+
"description": "The shape radius of the group container element.",
|
|
3753
3973
|
"values": []
|
|
3754
3974
|
},
|
|
3755
3975
|
{
|
|
3756
|
-
"name": "--forge-
|
|
3757
|
-
"description": "
|
|
3976
|
+
"name": "--forge-button-toggle-group-shape-start-start",
|
|
3977
|
+
"description": "The start-start shape radius.",
|
|
3758
3978
|
"values": []
|
|
3759
3979
|
},
|
|
3760
3980
|
{
|
|
3761
|
-
"name": "--forge-
|
|
3762
|
-
"description": "
|
|
3981
|
+
"name": "--forge-button-toggle-group-shape-start-end",
|
|
3982
|
+
"description": "The start-end shape radius.",
|
|
3763
3983
|
"values": []
|
|
3764
3984
|
},
|
|
3765
3985
|
{
|
|
3766
|
-
"name": "--forge-
|
|
3767
|
-
"description": "
|
|
3986
|
+
"name": "--forge-button-toggle-group-shape-end-start",
|
|
3987
|
+
"description": "The end-start shape radius.",
|
|
3768
3988
|
"values": []
|
|
3769
3989
|
},
|
|
3770
3990
|
{
|
|
3771
|
-
"name": "--forge-
|
|
3772
|
-
"description": "
|
|
3991
|
+
"name": "--forge-button-toggle-group-shape-end-end",
|
|
3992
|
+
"description": "The end-end shape radius.",
|
|
3773
3993
|
"values": []
|
|
3774
3994
|
},
|
|
3775
3995
|
{
|
|
3776
|
-
"name": "--forge-
|
|
3777
|
-
"description": "
|
|
3996
|
+
"name": "--forge-button-toggle-group-transition-duration",
|
|
3997
|
+
"description": "The transition duration for all animations on the group.",
|
|
3778
3998
|
"values": []
|
|
3779
3999
|
},
|
|
3780
4000
|
{
|
|
3781
|
-
"name": "--forge-
|
|
3782
|
-
"description": "
|
|
4001
|
+
"name": "--forge-button-toggle-group-transition-timing",
|
|
4002
|
+
"description": "The transition timing for all animations on the group.",
|
|
3783
4003
|
"values": []
|
|
3784
4004
|
},
|
|
3785
4005
|
{
|
|
3786
|
-
"name": "--forge-
|
|
3787
|
-
"description": "
|
|
4006
|
+
"name": "--forge-chip-set-spacing",
|
|
4007
|
+
"description": "The spacing between chips.",
|
|
3788
4008
|
"values": []
|
|
3789
4009
|
},
|
|
3790
4010
|
{
|
|
@@ -4024,102 +4244,7 @@
|
|
|
4024
4244
|
},
|
|
4025
4245
|
{
|
|
4026
4246
|
"name": "--forge-chip-checkmark-transition-delay",
|
|
4027
|
-
"description": "The delay of the checkmark transition in chips.",
|
|
4028
|
-
"values": []
|
|
4029
|
-
},
|
|
4030
|
-
{
|
|
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.",
|
|
4247
|
+
"description": "The delay of the checkmark transition in 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.",
|
|
@@ -5008,58 +5008,188 @@
|
|
|
5008
5008
|
"values": []
|
|
5009
5009
|
},
|
|
5010
5010
|
{
|
|
5011
|
-
"name": "--forge-field-popover-icon-transition-timing",
|
|
5012
|
-
"description": "The timing function of the popover icon animation.",
|
|
5011
|
+
"name": "--forge-field-popover-icon-transition-timing",
|
|
5012
|
+
"description": "The timing function of the popover icon animation.",
|
|
5013
|
+
"values": []
|
|
5014
|
+
},
|
|
5015
|
+
{
|
|
5016
|
+
"name": "--forge-field-popover-icon-open-rotation",
|
|
5017
|
+
"description": "The rotation of the popover icon when open.",
|
|
5018
|
+
"values": []
|
|
5019
|
+
},
|
|
5020
|
+
{
|
|
5021
|
+
"name": "--forge-field-surface-animation-duration",
|
|
5022
|
+
"description": "The duration of background and outline animations.",
|
|
5023
|
+
"values": []
|
|
5024
|
+
},
|
|
5025
|
+
{
|
|
5026
|
+
"name": "--forge-field-surface-animation-timing",
|
|
5027
|
+
"description": "The timing function of background and outline animations.",
|
|
5028
|
+
"values": []
|
|
5029
|
+
},
|
|
5030
|
+
{
|
|
5031
|
+
"name": "--forge-field-surface-floating-animation-duration",
|
|
5032
|
+
"description": "The duration of the floating label animation.",
|
|
5033
|
+
"values": []
|
|
5034
|
+
},
|
|
5035
|
+
{
|
|
5036
|
+
"name": "--forge-field-surface-floating-animation-timing",
|
|
5037
|
+
"description": "The timing function of the floating label animation.",
|
|
5038
|
+
"values": []
|
|
5039
|
+
},
|
|
5040
|
+
{
|
|
5041
|
+
"name": "--forge-field-focus-indicator-width",
|
|
5042
|
+
"description": "The width of the focus indicator.",
|
|
5043
|
+
"values": []
|
|
5044
|
+
},
|
|
5045
|
+
{
|
|
5046
|
+
"name": "--forge-field-disabled-opacity",
|
|
5047
|
+
"description": "The opacity of the field when disabled.",
|
|
5048
|
+
"values": []
|
|
5049
|
+
},
|
|
5050
|
+
{
|
|
5051
|
+
"name": "--forge-field-disabled-background",
|
|
5052
|
+
"description": "The background of the field when disabled.",
|
|
5053
|
+
"values": []
|
|
5054
|
+
},
|
|
5055
|
+
{
|
|
5056
|
+
"name": "--forge-split-view-panel-size",
|
|
5057
|
+
"description": "The size of the panel along the axis of orientation.",
|
|
5058
|
+
"values": []
|
|
5059
|
+
},
|
|
5060
|
+
{
|
|
5061
|
+
"name": "--forge-split-view-panel-cursor",
|
|
5062
|
+
"description": "The cursor to display when hovering over the panel.",
|
|
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.",
|
|
5013
5143
|
"values": []
|
|
5014
5144
|
},
|
|
5015
5145
|
{
|
|
5016
|
-
"name": "--forge-
|
|
5017
|
-
"description": "The
|
|
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,11 +5404,11 @@
|
|
|
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."
|
|
5411
5410
|
},
|
|
5411
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5412
5412
|
{
|
|
5413
5413
|
"name": "::part(root)",
|
|
5414
5414
|
"description": "The root element of the bottom sheet."
|
|
@@ -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,6 +5519,7 @@
|
|
|
5520
5519
|
"name": "::part(move-handle-icon)",
|
|
5521
5520
|
"description": "The move handle icon element."
|
|
5522
5521
|
},
|
|
5522
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5523
5523
|
{ "name": "::part(root)", "description": "The root element of the panel." },
|
|
5524
5524
|
{ "name": "::part(header)", "description": "The header of the panel." },
|
|
5525
5525
|
{ "name": "::part(content)", "description": "The content of the panel." },
|
|
@@ -5581,15 +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." },
|
|
5584
5585
|
{
|
|
5585
|
-
"name": "::part(indicator)",
|
|
5586
|
-
"description": "The focus indicator element."
|
|
5586
|
+
"name": "::part(focus-indicator)",
|
|
5587
|
+
"description": "The focus-indicator indicator element."
|
|
5587
5588
|
},
|
|
5588
|
-
{ "name": "::part(root)", "description": "The root layout element." },
|
|
5589
5589
|
{
|
|
5590
|
-
"name": "::part(
|
|
5591
|
-
"description": "The
|
|
5590
|
+
"name": "::part(state-layer)",
|
|
5591
|
+
"description": "The state-layer surface element."
|
|
5592
|
+
},
|
|
5593
|
+
{
|
|
5594
|
+
"name": "::part(indicator)",
|
|
5595
|
+
"description": "The focus indicator element."
|
|
5592
5596
|
},
|
|
5597
|
+
{ "name": "::part(svg)", "description": "The internal SVG element." },
|
|
5593
5598
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5594
5599
|
{
|
|
5595
5600
|
"name": "::part(focus-indicator)",
|
|
@@ -5599,6 +5604,11 @@
|
|
|
5599
5604
|
"name": "::part(state-layer)",
|
|
5600
5605
|
"description": "The state-layer surface element."
|
|
5601
5606
|
},
|
|
5607
|
+
{ "name": "::part(root)", "description": "The root layout element." },
|
|
5608
|
+
{
|
|
5609
|
+
"name": "::part(container)",
|
|
5610
|
+
"description": "The container element for the title and message content."
|
|
5611
|
+
},
|
|
5602
5612
|
{
|
|
5603
5613
|
"name": "::part(root)",
|
|
5604
5614
|
"description": "The root layout container element."
|
|
@@ -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,20 @@
|
|
|
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
|
+
},
|
|
5865
|
+
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5852
5866
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5853
5867
|
{
|
|
5854
5868
|
"name": "::part(trigger)",
|
|
@@ -5863,11 +5877,6 @@
|
|
|
5863
5877
|
"description": "The state layer surface."
|
|
5864
5878
|
},
|
|
5865
5879
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5866
|
-
{
|
|
5867
|
-
"name": "::part(root)",
|
|
5868
|
-
"description": "The root container element for the group."
|
|
5869
|
-
},
|
|
5870
|
-
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5871
5880
|
{
|
|
5872
5881
|
"name": "::part(content)",
|
|
5873
5882
|
"description": "The content container element."
|
|
@@ -5881,15 +5890,6 @@
|
|
|
5881
5890
|
"name": "::part(content)",
|
|
5882
5891
|
"description": "The content container element."
|
|
5883
5892
|
},
|
|
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
5893
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5894
5894
|
{
|
|
5895
5895
|
"name": "::part(content)",
|
|
@@ -5999,10 +5999,6 @@
|
|
|
5999
5999
|
"name": "::part(focus-indicator)",
|
|
6000
6000
|
"description": "The focus indicator element."
|
|
6001
6001
|
},
|
|
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
6002
|
{ "name": "::part(root)", "description": "The root element." },
|
|
6007
6003
|
{ "name": "::part(step)", "description": "The step container element." },
|
|
6008
6004
|
{ "name": "::part(before)", "description": "The line before the step." },
|
|
@@ -6037,6 +6033,10 @@
|
|
|
6037
6033
|
"name": "::part(focus-indicator)",
|
|
6038
6034
|
"description": "The focus indicator element."
|
|
6039
6035
|
},
|
|
6036
|
+
{ "name": "::part(container)", "description": "The tab container." },
|
|
6037
|
+
{ "name": "::part(content)", "description": "The tab content container." },
|
|
6038
|
+
{ "name": "::part(label)", "description": "The tab label container." },
|
|
6039
|
+
{ "name": "::part(indicator)", "description": "The tab active indicator." },
|
|
6040
6040
|
{ "name": "::part(container)", "description": "The container element." },
|
|
6041
6041
|
{
|
|
6042
6042
|
"name": "::part(scroll-container)",
|