@tylertech/forge 3.9.0-dev.0 → 3.9.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +4276 -4167
- package/dist/lib.js +27 -105
- package/dist/lib.js.map +4 -4
- package/dist/vscode.css-custom-data.json +154 -147
- package/dist/vscode.html-custom-data.json +355 -368
- package/esm/app-bar/help-button/app-bar-help-button.js +1 -1
- package/esm/app-bar/menu-button/app-bar-menu-button.js +1 -1
- package/esm/app-bar/notification-button/app-bar-notification-button.js +1 -1
- package/esm/app-bar/search/app-bar-search.js +1 -1
- package/esm/autocomplete/autocomplete.js +1 -1
- package/esm/banner/banner.js +1 -1
- package/esm/button/base/base-button-adapter.js +1 -1
- package/esm/button/base/base-button.js +1 -1
- package/esm/calendar/calendar-adapter.d.ts +0 -24
- package/esm/calendar/calendar-adapter.js +1 -67
- package/esm/calendar/calendar-constants.d.ts +0 -34
- package/esm/calendar/calendar-constants.js +0 -33
- package/esm/calendar/calendar-core.d.ts +0 -60
- package/esm/calendar/calendar-core.js +2 -220
- package/esm/calendar/calendar-dom-utils.d.ts +0 -6
- package/esm/calendar/calendar-dom-utils.js +0 -36
- package/esm/calendar/calendar.d.ts +1 -40
- package/esm/calendar/calendar.js +3 -81
- package/esm/calendar/core/calendar-base.d.ts +0 -3
- package/esm/calendar/core/date-range.d.ts +0 -2
- package/esm/calendar/core/date-range.js +0 -1
- package/esm/chips/chip/chip.js +1 -1
- package/esm/color-picker/color-picker.js +1 -1
- package/esm/core/utils/dismissible-stack.d.ts +5 -1
- package/esm/core/utils/dismissible-stack.js +6 -0
- package/esm/data-table/body/body.d.ts +33 -0
- package/esm/data-table/body/body.js +42 -0
- package/esm/data-table/body/index.d.ts +6 -0
- package/esm/data-table/body/index.js +6 -0
- package/esm/data-table/cell/cell.d.ts +33 -0
- package/esm/data-table/cell/cell.js +42 -0
- package/esm/data-table/cell/index.d.ts +6 -0
- package/esm/data-table/cell/index.js +6 -0
- package/esm/data-table/column/column.d.ts +33 -0
- package/esm/data-table/column/column.js +42 -0
- package/esm/data-table/column/index.d.ts +6 -0
- package/esm/data-table/column/index.js +6 -0
- package/esm/data-table/footer/footer.d.ts +33 -0
- package/esm/data-table/footer/footer.js +42 -0
- package/esm/data-table/footer/index.d.ts +6 -0
- package/esm/data-table/footer/index.js +6 -0
- package/esm/data-table/head/head.d.ts +33 -0
- package/esm/data-table/head/head.js +42 -0
- package/esm/data-table/head/index.d.ts +6 -0
- package/esm/data-table/head/index.js +6 -0
- package/esm/data-table/index.d.ts +12 -0
- package/esm/data-table/index.js +12 -0
- package/esm/data-table/row/index.d.ts +6 -0
- package/esm/data-table/row/index.js +6 -0
- package/esm/data-table/row/row.d.ts +33 -0
- package/esm/data-table/row/row.js +42 -0
- package/esm/data-table/table/index.d.ts +6 -0
- package/esm/data-table/table/index.js +6 -0
- package/esm/data-table/table/table.d.ts +36 -0
- package/esm/data-table/table/table.js +40 -0
- package/esm/date-picker/base/base-date-picker-adapter.js +3 -0
- package/esm/date-picker/base/base-date-picker-constants.d.ts +0 -3
- package/esm/date-picker/base/base-date-picker-constants.js +0 -3
- package/esm/date-picker/base/base-date-picker-core.d.ts +0 -15
- package/esm/date-picker/base/base-date-picker-core.js +0 -30
- package/esm/date-picker/base/base-date-picker.d.ts +0 -12
- package/esm/date-picker/base/base-date-picker.js +0 -24
- package/esm/date-picker/date-picker-core.d.ts +0 -3
- package/esm/date-picker/date-picker-core.js +0 -20
- package/esm/date-picker/date-picker.js +1 -1
- package/esm/date-range-picker/date-range-picker-constants.d.ts +0 -3
- package/esm/date-range-picker/date-range-picker-constants.js +0 -1
- package/esm/date-range-picker/date-range-picker-core.d.ts +0 -3
- package/esm/date-range-picker/date-range-picker-core.js +2 -62
- package/esm/date-range-picker/date-range-picker.d.ts +0 -3
- package/esm/date-range-picker/date-range-picker.js +1 -4
- package/esm/icon/icon-constants.d.ts +2 -1
- package/esm/icon/icon-constants.js +2 -1
- package/esm/icon/icon-core.js +6 -2
- package/esm/icon/icon-utils.d.ts +2 -1
- package/esm/icon/icon-utils.js +2 -2
- package/esm/icon/icon.d.ts +3 -1
- package/esm/icon/icon.js +1 -1
- package/esm/icon-button/icon-button-core.js +11 -2
- package/esm/list-dropdown/list-dropdown-utils.js +1 -1
- package/esm/list-dropdown/list-dropdown.js +1 -1
- package/esm/menu/menu.js +1 -1
- package/esm/open-icon/open-icon.js +1 -1
- package/esm/paginator/paginator.js +1 -1
- package/esm/popover/popover-constants.d.ts +3 -0
- package/esm/popover/popover-constants.js +4 -2
- package/esm/popover/popover-core.d.ts +4 -0
- package/esm/popover/popover-core.js +20 -0
- package/esm/popover/popover.d.ts +4 -0
- package/esm/popover/popover.js +8 -0
- package/esm/select/select/select.js +1 -1
- package/esm/split-view/split-view-panel/split-view-panel.js +3 -4
- package/esm/stepper/step/step.js +1 -1
- package/esm/table/table-core.js +1 -0
- package/esm/table/table.js +1 -1
- package/esm/tabs/tab-bar/tab-bar-adapter.js +1 -1
- package/esm/tabs/tab-bar/tab-bar.js +1 -1
- package/esm/text-field/text-field.js +1 -1
- package/esm/time-picker/time-picker.js +1 -2
- package/esm/toast/toast.js +1 -1
- package/package.json +2 -2
- package/sass/calendar/_mixins.scss +2 -3
- package/sass/data-table/_core.scss +52 -0
- package/sass/data-table/_token-utils.scss +15 -0
- package/sass/data-table/body/body.scss +27 -0
- package/sass/data-table/cell/cell.scss +27 -0
- package/sass/data-table/column/column.scss +27 -0
- package/sass/data-table/footer/footer.scss +27 -0
- package/sass/data-table/head/head.scss +27 -0
- package/sass/data-table/index.scss +12 -0
- package/sass/data-table/row/row.scss +27 -0
- package/sass/data-table/table/table.scss +16 -0
|
@@ -38,48 +38,63 @@
|
|
|
38
38
|
"values": []
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
|
-
"name": "--forge-
|
|
42
|
-
"description": "The background color.",
|
|
41
|
+
"name": "--forge-banner-background",
|
|
42
|
+
"description": "The background color of the banner.",
|
|
43
43
|
"values": []
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"name": "--forge-
|
|
47
|
-
"description": "The text color.",
|
|
46
|
+
"name": "--forge-banner-color",
|
|
47
|
+
"description": "The text color of the banner.",
|
|
48
48
|
"values": []
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"name": "--forge-
|
|
52
|
-
"description": "The
|
|
51
|
+
"name": "--forge-banner-icon-color",
|
|
52
|
+
"description": "The color of the icon.",
|
|
53
53
|
"values": []
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
|
-
"name": "--forge-
|
|
56
|
+
"name": "--forge-banner-gap",
|
|
57
|
+
"description": "The gap between the contents.",
|
|
58
|
+
"values": []
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "--forge-banner-padding-inline",
|
|
57
62
|
"description": "The inline padding.",
|
|
58
63
|
"values": []
|
|
59
64
|
},
|
|
60
65
|
{
|
|
61
|
-
"name": "--forge-
|
|
66
|
+
"name": "--forge-banner-padding-block",
|
|
62
67
|
"description": "The block padding.",
|
|
63
68
|
"values": []
|
|
64
69
|
},
|
|
65
70
|
{
|
|
66
|
-
"name": "--forge-
|
|
67
|
-
"description": "The
|
|
71
|
+
"name": "--forge-banner-transition-duration",
|
|
72
|
+
"description": "The transition duration.",
|
|
68
73
|
"values": []
|
|
69
74
|
},
|
|
70
75
|
{
|
|
71
|
-
"name": "--forge-
|
|
72
|
-
"description": "The
|
|
76
|
+
"name": "--forge-banner-transition-easing",
|
|
77
|
+
"description": "The transition easing function.",
|
|
73
78
|
"values": []
|
|
74
79
|
},
|
|
75
80
|
{
|
|
76
|
-
"name": "--forge-
|
|
77
|
-
"description": "The
|
|
81
|
+
"name": "--forge-bottom-sheet-desktop-max-width",
|
|
82
|
+
"description": "The maximum width of the bottom sheet on desktop.",
|
|
78
83
|
"values": []
|
|
79
84
|
},
|
|
80
85
|
{
|
|
81
|
-
"name": "--forge-
|
|
82
|
-
"description": "The
|
|
86
|
+
"name": "--forge-bottom-sheet-desktop-min-width",
|
|
87
|
+
"description": "The minimum width of the bottom sheet on desktop.",
|
|
88
|
+
"values": []
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "--forge-bottom-sheet-animation-duration",
|
|
92
|
+
"description": "The duration of the bottom sheet animation to fullscreen.",
|
|
93
|
+
"values": []
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "--forge-bottom-sheet-animation-timing",
|
|
97
|
+
"description": "The timing function of the bottom sheet animation to fullscreen.",
|
|
83
98
|
"values": []
|
|
84
99
|
},
|
|
85
100
|
{
|
|
@@ -113,63 +128,48 @@
|
|
|
113
128
|
"values": [{ "name": "string" }]
|
|
114
129
|
},
|
|
115
130
|
{
|
|
116
|
-
"name": "--forge-
|
|
117
|
-
"description": "The background color
|
|
118
|
-
"values": []
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"name": "--forge-banner-color",
|
|
122
|
-
"description": "The text color of the banner.",
|
|
131
|
+
"name": "--forge-badge-background",
|
|
132
|
+
"description": "The background color.",
|
|
123
133
|
"values": []
|
|
124
134
|
},
|
|
125
135
|
{
|
|
126
|
-
"name": "--forge-
|
|
127
|
-
"description": "The color
|
|
136
|
+
"name": "--forge-badge-color",
|
|
137
|
+
"description": "The text color.",
|
|
128
138
|
"values": []
|
|
129
139
|
},
|
|
130
140
|
{
|
|
131
|
-
"name": "--forge-
|
|
132
|
-
"description": "The
|
|
141
|
+
"name": "--forge-badge-shape",
|
|
142
|
+
"description": "The shape radius.",
|
|
133
143
|
"values": []
|
|
134
144
|
},
|
|
135
145
|
{
|
|
136
|
-
"name": "--forge-
|
|
146
|
+
"name": "--forge-badge-padding-inline",
|
|
137
147
|
"description": "The inline padding.",
|
|
138
148
|
"values": []
|
|
139
149
|
},
|
|
140
150
|
{
|
|
141
|
-
"name": "--forge-
|
|
151
|
+
"name": "--forge-badge-padding-block",
|
|
142
152
|
"description": "The block padding.",
|
|
143
153
|
"values": []
|
|
144
154
|
},
|
|
145
155
|
{
|
|
146
|
-
"name": "--forge-
|
|
147
|
-
"description": "The
|
|
148
|
-
"values": []
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"name": "--forge-banner-transition-easing",
|
|
152
|
-
"description": "The transition easing function.",
|
|
153
|
-
"values": []
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"name": "--forge-bottom-sheet-desktop-max-width",
|
|
157
|
-
"description": "The maximum width of the bottom sheet on desktop.",
|
|
156
|
+
"name": "--forge-badge-border-width",
|
|
157
|
+
"description": "The border width.",
|
|
158
158
|
"values": []
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
|
-
"name": "--forge-
|
|
162
|
-
"description": "The
|
|
161
|
+
"name": "--forge-badge-border-color",
|
|
162
|
+
"description": "The border color.",
|
|
163
163
|
"values": []
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
|
-
"name": "--forge-
|
|
167
|
-
"description": "The
|
|
166
|
+
"name": "--forge-badge-border-style",
|
|
167
|
+
"description": "The border style.",
|
|
168
168
|
"values": []
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
|
-
"name": "--forge-
|
|
172
|
-
"description": "The
|
|
171
|
+
"name": "--forge-badge-gap",
|
|
172
|
+
"description": "The spacing between the content within the badge.",
|
|
173
173
|
"values": []
|
|
174
174
|
},
|
|
175
175
|
{
|
|
@@ -1202,16 +1202,6 @@
|
|
|
1202
1202
|
"description": "The margin of divider.",
|
|
1203
1203
|
"values": []
|
|
1204
1204
|
},
|
|
1205
|
-
{
|
|
1206
|
-
"name": "--forge-expansion-panel-animation-duration",
|
|
1207
|
-
"description": "The duration of the open/close animation.",
|
|
1208
|
-
"values": []
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
"name": "--forge-expansion-panel-animation-easing",
|
|
1212
|
-
"description": "The easing function of the open/close animation.",
|
|
1213
|
-
"values": []
|
|
1214
|
-
},
|
|
1215
1205
|
{
|
|
1216
1206
|
"name": "--forge-field-background",
|
|
1217
1207
|
"description": "The background of the field surface.",
|
|
@@ -1407,6 +1397,16 @@
|
|
|
1407
1397
|
"description": "The background of the field when disabled.",
|
|
1408
1398
|
"values": []
|
|
1409
1399
|
},
|
|
1400
|
+
{
|
|
1401
|
+
"name": "--forge-expansion-panel-animation-duration",
|
|
1402
|
+
"description": "The duration of the open/close animation.",
|
|
1403
|
+
"values": []
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"name": "--forge-expansion-panel-animation-easing",
|
|
1407
|
+
"description": "The easing function of the open/close animation.",
|
|
1408
|
+
"values": []
|
|
1409
|
+
},
|
|
1410
1410
|
{
|
|
1411
1411
|
"name": "--forge-file-picker-background",
|
|
1412
1412
|
"description": "Controls the background color.",
|
|
@@ -1717,6 +1717,71 @@
|
|
|
1717
1717
|
"description": "The font size of the icon.",
|
|
1718
1718
|
"values": []
|
|
1719
1719
|
},
|
|
1720
|
+
{
|
|
1721
|
+
"name": "--forge-inline-message-background",
|
|
1722
|
+
"description": "The background color.",
|
|
1723
|
+
"values": []
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"name": "--forge-inline-message-color",
|
|
1727
|
+
"description": "The text color.",
|
|
1728
|
+
"values": []
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"name": "--forge-inline-message-shape",
|
|
1732
|
+
"description": "The shape (border) radius.",
|
|
1733
|
+
"values": []
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"name": "--forge-inline-message-padding",
|
|
1737
|
+
"description": "The padding around the content.",
|
|
1738
|
+
"values": []
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
"name": "--forge-inline-message-padding-inline",
|
|
1742
|
+
"description": "The inline padding around the content.",
|
|
1743
|
+
"values": []
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"name": "--forge-inline-message-padding-block",
|
|
1747
|
+
"description": "The block padding around the content.",
|
|
1748
|
+
"values": []
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"name": "--forge-inline-message-border-width",
|
|
1752
|
+
"description": "The border width.",
|
|
1753
|
+
"values": []
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"name": "--forge-inline-message-border-style",
|
|
1757
|
+
"description": "The border style. Defaults to `none`.",
|
|
1758
|
+
"values": []
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"name": "--forge-inline-message-border-color",
|
|
1762
|
+
"description": "The border color.",
|
|
1763
|
+
"values": []
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
"name": "--forge-inline-message-gap",
|
|
1767
|
+
"description": "The gap/space between the content elements.",
|
|
1768
|
+
"values": []
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
"name": "--forge-inline-message-icon-gap",
|
|
1772
|
+
"description": "The gap/space between the icon and the content.",
|
|
1773
|
+
"values": []
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"name": "--forge-inline-message-content-gap",
|
|
1777
|
+
"description": "The gap/space between the title and the message.",
|
|
1778
|
+
"values": []
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"name": "--forge-inline-message-icon-color",
|
|
1782
|
+
"description": "The icon color.",
|
|
1783
|
+
"values": []
|
|
1784
|
+
},
|
|
1720
1785
|
{
|
|
1721
1786
|
"name": "--forge-icon-button-display",
|
|
1722
1787
|
"description": "The display property of the button.",
|
|
@@ -1967,71 +2032,6 @@
|
|
|
1967
2032
|
"description": "The color of the focus indicator.",
|
|
1968
2033
|
"values": []
|
|
1969
2034
|
},
|
|
1970
|
-
{
|
|
1971
|
-
"name": "--forge-inline-message-background",
|
|
1972
|
-
"description": "The background color.",
|
|
1973
|
-
"values": []
|
|
1974
|
-
},
|
|
1975
|
-
{
|
|
1976
|
-
"name": "--forge-inline-message-color",
|
|
1977
|
-
"description": "The text color.",
|
|
1978
|
-
"values": []
|
|
1979
|
-
},
|
|
1980
|
-
{
|
|
1981
|
-
"name": "--forge-inline-message-shape",
|
|
1982
|
-
"description": "The shape (border) radius.",
|
|
1983
|
-
"values": []
|
|
1984
|
-
},
|
|
1985
|
-
{
|
|
1986
|
-
"name": "--forge-inline-message-padding",
|
|
1987
|
-
"description": "The padding around the content.",
|
|
1988
|
-
"values": []
|
|
1989
|
-
},
|
|
1990
|
-
{
|
|
1991
|
-
"name": "--forge-inline-message-padding-inline",
|
|
1992
|
-
"description": "The inline padding around the content.",
|
|
1993
|
-
"values": []
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
"name": "--forge-inline-message-padding-block",
|
|
1997
|
-
"description": "The block padding around the content.",
|
|
1998
|
-
"values": []
|
|
1999
|
-
},
|
|
2000
|
-
{
|
|
2001
|
-
"name": "--forge-inline-message-border-width",
|
|
2002
|
-
"description": "The border width.",
|
|
2003
|
-
"values": []
|
|
2004
|
-
},
|
|
2005
|
-
{
|
|
2006
|
-
"name": "--forge-inline-message-border-style",
|
|
2007
|
-
"description": "The border style. Defaults to `none`.",
|
|
2008
|
-
"values": []
|
|
2009
|
-
},
|
|
2010
|
-
{
|
|
2011
|
-
"name": "--forge-inline-message-border-color",
|
|
2012
|
-
"description": "The border color.",
|
|
2013
|
-
"values": []
|
|
2014
|
-
},
|
|
2015
|
-
{
|
|
2016
|
-
"name": "--forge-inline-message-gap",
|
|
2017
|
-
"description": "The gap/space between the content elements.",
|
|
2018
|
-
"values": []
|
|
2019
|
-
},
|
|
2020
|
-
{
|
|
2021
|
-
"name": "--forge-inline-message-icon-gap",
|
|
2022
|
-
"description": "The gap/space between the icon and the content.",
|
|
2023
|
-
"values": []
|
|
2024
|
-
},
|
|
2025
|
-
{
|
|
2026
|
-
"name": "--forge-inline-message-content-gap",
|
|
2027
|
-
"description": "The gap/space between the title and the message.",
|
|
2028
|
-
"values": []
|
|
2029
|
-
},
|
|
2030
|
-
{
|
|
2031
|
-
"name": "--forge-inline-message-icon-color",
|
|
2032
|
-
"description": "The icon color.",
|
|
2033
|
-
"values": []
|
|
2034
|
-
},
|
|
2035
2035
|
{
|
|
2036
2036
|
"name": "--forge-label-value-align",
|
|
2037
2037
|
"description": "Aligns the label and value. Possible values: `start` (default), `center`, `end`.",
|
|
@@ -4002,11 +4002,6 @@
|
|
|
4002
4002
|
"description": "The transition timing for all animations on the group.",
|
|
4003
4003
|
"values": []
|
|
4004
4004
|
},
|
|
4005
|
-
{
|
|
4006
|
-
"name": "--forge-chip-set-spacing",
|
|
4007
|
-
"description": "The spacing between chips.",
|
|
4008
|
-
"values": []
|
|
4009
|
-
},
|
|
4010
4005
|
{
|
|
4011
4006
|
"name": "--forge-chip-background",
|
|
4012
4007
|
"description": "The background color of the chip.",
|
|
@@ -4247,6 +4242,11 @@
|
|
|
4247
4242
|
"description": "The delay of the checkmark transition in chips.",
|
|
4248
4243
|
"values": []
|
|
4249
4244
|
},
|
|
4245
|
+
{
|
|
4246
|
+
"name": "--forge-chip-set-spacing",
|
|
4247
|
+
"description": "The spacing between chips.",
|
|
4248
|
+
"values": []
|
|
4249
|
+
},
|
|
4250
4250
|
{
|
|
4251
4251
|
"name": "--forge-drawer-width",
|
|
4252
4252
|
"description": "The width of the drawer.",
|
|
@@ -4852,6 +4852,16 @@
|
|
|
4852
4852
|
"description": "The delay of the radio button's animations.",
|
|
4853
4853
|
"values": []
|
|
4854
4854
|
},
|
|
4855
|
+
{
|
|
4856
|
+
"name": "--forge-split-view-panel-size",
|
|
4857
|
+
"description": "The size of the panel along the axis of orientation.",
|
|
4858
|
+
"values": []
|
|
4859
|
+
},
|
|
4860
|
+
{
|
|
4861
|
+
"name": "--forge-split-view-panel-cursor",
|
|
4862
|
+
"description": "The cursor to display when hovering over the panel.",
|
|
4863
|
+
"values": []
|
|
4864
|
+
},
|
|
4855
4865
|
{
|
|
4856
4866
|
"name": "--forge-select-placeholder-color",
|
|
4857
4867
|
"description": "The color of the placeholder text.",
|
|
@@ -5052,16 +5062,6 @@
|
|
|
5052
5062
|
"description": "The background of the field when disabled.",
|
|
5053
5063
|
"values": []
|
|
5054
5064
|
},
|
|
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
5065
|
{
|
|
5066
5066
|
"name": "--forge-step-primary-color",
|
|
5067
5067
|
"description": "The primary color of the step. Defaults to the primary theme.",
|
|
@@ -5408,7 +5408,6 @@
|
|
|
5408
5408
|
"name": "::part(root)",
|
|
5409
5409
|
"description": "The root element of the backdrop."
|
|
5410
5410
|
},
|
|
5411
|
-
{ "name": "::part(root)", "description": "The root container element." },
|
|
5412
5411
|
{
|
|
5413
5412
|
"name": "::part(root)",
|
|
5414
5413
|
"description": "The root element of the bottom sheet."
|
|
@@ -5418,6 +5417,7 @@
|
|
|
5418
5417
|
"description": "The surface element of the bottom sheet within th dialog."
|
|
5419
5418
|
},
|
|
5420
5419
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5420
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5421
5421
|
{
|
|
5422
5422
|
"name": "::part(focus-indicator)",
|
|
5423
5423
|
"description": "The focus-indicator indicator element."
|
|
@@ -5520,9 +5520,6 @@
|
|
|
5520
5520
|
"description": "The move handle icon element."
|
|
5521
5521
|
},
|
|
5522
5522
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5523
|
-
{ "name": "::part(root)", "description": "The root element of the panel." },
|
|
5524
|
-
{ "name": "::part(header)", "description": "The header of the panel." },
|
|
5525
|
-
{ "name": "::part(content)", "description": "The content of the panel." },
|
|
5526
5523
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5527
5524
|
{ "name": "::part(label)", "description": "The label element." },
|
|
5528
5525
|
{
|
|
@@ -5561,6 +5558,9 @@
|
|
|
5561
5558
|
"name": "::part(focus-indicator)",
|
|
5562
5559
|
"description": "The focus indicator element."
|
|
5563
5560
|
},
|
|
5561
|
+
{ "name": "::part(root)", "description": "The root element of the panel." },
|
|
5562
|
+
{ "name": "::part(header)", "description": "The header of the panel." },
|
|
5563
|
+
{ "name": "::part(content)", "description": "The content of the panel." },
|
|
5564
5564
|
{
|
|
5565
5565
|
"name": "::part(form)",
|
|
5566
5566
|
"description": "The `<form>` element at the root."
|
|
@@ -5595,6 +5595,11 @@
|
|
|
5595
5595
|
"description": "The focus indicator element."
|
|
5596
5596
|
},
|
|
5597
5597
|
{ "name": "::part(svg)", "description": "The internal SVG element." },
|
|
5598
|
+
{ "name": "::part(root)", "description": "The root layout element." },
|
|
5599
|
+
{
|
|
5600
|
+
"name": "::part(container)",
|
|
5601
|
+
"description": "The container element for the title and message content."
|
|
5602
|
+
},
|
|
5598
5603
|
{ "name": "::part(root)", "description": "The root container element." },
|
|
5599
5604
|
{
|
|
5600
5605
|
"name": "::part(focus-indicator)",
|
|
@@ -5604,11 +5609,6 @@
|
|
|
5604
5609
|
"name": "::part(state-layer)",
|
|
5605
5610
|
"description": "The state-layer surface element."
|
|
5606
5611
|
},
|
|
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
|
-
},
|
|
5612
5612
|
{
|
|
5613
5613
|
"name": "::part(root)",
|
|
5614
5614
|
"description": "The root layout container element."
|
|
@@ -5863,7 +5863,6 @@
|
|
|
5863
5863
|
"description": "The root container element for the group."
|
|
5864
5864
|
},
|
|
5865
5865
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5866
|
-
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5867
5866
|
{
|
|
5868
5867
|
"name": "::part(trigger)",
|
|
5869
5868
|
"description": "The trigger element of the chip."
|
|
@@ -5877,6 +5876,14 @@
|
|
|
5877
5876
|
"description": "The state layer surface."
|
|
5878
5877
|
},
|
|
5879
5878
|
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5879
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5880
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5881
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5882
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5883
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5884
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5885
|
+
{ "name": "::part(root)", "description": "The root container element." },
|
|
5886
|
+
{ "name": "::part(root)", "description": "The component's root element." },
|
|
5880
5887
|
{
|
|
5881
5888
|
"name": "::part(content)",
|
|
5882
5889
|
"description": "The content container element."
|