@maggioli-design-system/mds-table-row 5.1.0 → 5.3.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/dist/cjs/{index-cb928c36.js → index-27c9aefd.js} +146 -108
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mds-table-row.cjs.entry.js +2 -2
- package/dist/cjs/mds-table-row.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/common/floating-controller.js +3 -3
- package/dist/collection/common/string.js +30 -0
- package/dist/collection/components/mds-table-row/mds-table-row.css +131 -28
- package/dist/collection/dictionary/keyboard.js +84 -0
- package/dist/collection/type/keyboard.js +1 -0
- package/dist/components/mds-table-row.js +1 -1
- package/dist/documentation.json +2 -2
- package/dist/esm/{index-8134a00a.js → index-81f966aa.js} +146 -108
- package/dist/esm/loader.js +2 -2
- package/dist/esm/mds-table-row.entry.js +2 -2
- package/dist/esm/mds-table-row.js +3 -3
- package/dist/esm-es5/index-81f966aa.js +1 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mds-table-row.entry.js +2 -2
- package/dist/esm-es5/mds-table-row.js +1 -1
- package/dist/mds-table-row/mds-table-row.esm.js +1 -1
- package/dist/mds-table-row/mds-table-row.js +1 -1
- package/dist/mds-table-row/p-133f1581.system.js +2 -0
- package/dist/mds-table-row/p-25b773c1.js +2 -0
- package/dist/mds-table-row/p-dea08b0f.system.entry.js +6 -0
- package/dist/mds-table-row/p-e71445fa.system.js +1 -0
- package/dist/mds-table-row/p-f83384f1.entry.js +6 -0
- package/dist/stats.json +38 -33
- package/dist/types/common/string.d.ts +4 -0
- package/dist/types/dictionary/keyboard.d.ts +2 -0
- package/dist/types/type/keyboard.d.ts +12 -0
- package/documentation.json +22 -2
- package/package.json +4 -4
- package/src/common/floating-controller.ts +6 -6
- package/src/common/string.ts +42 -0
- package/src/components/mds-table-row/css/mds-table-row-actions.css +8 -10
- package/src/components/mds-table-row/css/mds-table-row-interactive.css +0 -1
- package/src/components/mds-table-row/css/mds-table-row-pref-animation.css +5 -14
- package/src/components/mds-table-row/css/mds-table-row-selected.css +0 -1
- package/src/components/mds-table-row/css/mds-table-row-sorted.css +0 -2
- package/src/components/mds-table-row/mds-table-row.css +1 -3
- package/src/dictionary/keyboard.ts +87 -0
- package/src/fixtures/icons.json +18 -1
- package/src/meta/keyboard/keys.json +83 -0
- package/src/tailwind/components.css +11 -46
- package/src/tailwind/fouc.css +118 -0
- package/src/tailwind/index.css +4 -0
- package/src/type/keyboard.ts +93 -0
- package/www/build/mds-table-row.esm.js +1 -1
- package/www/build/mds-table-row.js +1 -1
- package/www/build/p-133f1581.system.js +2 -0
- package/www/build/p-25b773c1.js +2 -0
- package/www/build/p-dea08b0f.system.entry.js +6 -0
- package/www/build/p-e71445fa.system.js +1 -0
- package/www/build/p-f83384f1.entry.js +6 -0
- package/dist/esm-es5/index-8134a00a.js +0 -1
- package/dist/mds-table-row/p-11048c96.system.js +0 -1
- package/dist/mds-table-row/p-12e458ac.entry.js +0 -6
- package/dist/mds-table-row/p-22d4881a.js +0 -2
- package/dist/mds-table-row/p-88f814c9.system.js +0 -2
- package/dist/mds-table-row/p-95fc715e.system.entry.js +0 -6
- package/www/build/p-11048c96.system.js +0 -1
- package/www/build/p-12e458ac.entry.js +0 -6
- package/www/build/p-22d4881a.js +0 -2
- package/www/build/p-88f814c9.system.js +0 -2
- package/www/build/p-95fc715e.system.entry.js +0 -6
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
@tailwind utilities;
|
|
2
|
-
|
|
3
1
|
:host {
|
|
4
|
-
|
|
5
2
|
--mds-table-row-color-hover: var(--mds-table-color, rgb(var(--tone-neutral-02)));
|
|
6
3
|
--mds-table-row-color-alt: var(--mds-table-color-alt, rgb(var(--tone-neutral-02)));
|
|
7
4
|
--mds-table-row-background-hover: var(--mds-table-background, rgb(var(--tone-neutral)));
|
|
@@ -26,26 +23,22 @@
|
|
|
26
23
|
}
|
|
27
24
|
|
|
28
25
|
:host([interactive]:hover) {
|
|
29
|
-
|
|
30
26
|
--mds-table-row-actions-background: var(--mds-table-row-background-hover);
|
|
31
27
|
--mds-table-row-background: var(--mds-table-row-background-hover);
|
|
32
28
|
--mds-table-row-color: var(--mds-table-row-color-hover);
|
|
33
29
|
}
|
|
34
30
|
|
|
35
31
|
:host([selected]) {
|
|
36
|
-
|
|
37
32
|
--mds-table-row-background: var(--mds-table-row-background-hover);
|
|
38
33
|
--mds-table-row-color: var(--mds-table-row-color-hover);
|
|
39
34
|
}
|
|
40
35
|
|
|
41
36
|
:host([sorted]) {
|
|
42
|
-
|
|
43
37
|
--mds-table-row-background: var(--mds-table-row-background-alt);
|
|
44
38
|
--mds-table-row-color: var(--mds-table-row-color-alt);
|
|
45
39
|
}
|
|
46
40
|
|
|
47
41
|
:host([sorted][selected]) {
|
|
48
|
-
|
|
49
42
|
--mds-table-row-background: var(--mds-table-row-background-hover);
|
|
50
43
|
--mds-table-row-color: var(--mds-table-row-color-hover);
|
|
51
44
|
}
|
|
@@ -60,7 +53,6 @@
|
|
|
60
53
|
}
|
|
61
54
|
|
|
62
55
|
.actions {
|
|
63
|
-
|
|
64
56
|
--mds-table-row-actions-background: var(--mds-table-row-background);
|
|
65
57
|
|
|
66
58
|
align-items: center;
|
|
@@ -83,6 +75,8 @@
|
|
|
83
75
|
}
|
|
84
76
|
|
|
85
77
|
:host(:hover) .actions {
|
|
78
|
+
|
|
79
|
+
/* :host-context(:not(.safari)) */
|
|
86
80
|
transform: translateX(100%);
|
|
87
81
|
}
|
|
88
82
|
|
|
@@ -92,40 +86,149 @@
|
|
|
92
86
|
}
|
|
93
87
|
|
|
94
88
|
:host([overlay-actions]:hover) .actions {
|
|
95
|
-
|
|
96
89
|
--mds-table-row-actions-background: var(--mds-table-row-background);
|
|
97
90
|
|
|
98
91
|
transform: translateX(0);
|
|
99
92
|
}
|
|
100
93
|
|
|
101
|
-
:host
|
|
102
|
-
:host
|
|
103
|
-
|
|
94
|
+
:host-context(mds-table[interactive="false"]):host(:hover) .actions,
|
|
95
|
+
:host-context(mds-table:not([interactive])):host(:hover) .actions {
|
|
104
96
|
--mds-table-row-actions-background: var(--mds-table-row-background-hover);
|
|
105
97
|
}
|
|
106
98
|
|
|
107
|
-
:host(:not([
|
|
108
|
-
:host
|
|
109
|
-
:host
|
|
110
|
-
:host([
|
|
111
|
-
|
|
99
|
+
:host-context(mds-table[selection]:not([interactive])):host(:not([selected]):hover) .actions,
|
|
100
|
+
:host-context(mds-table[selection][interactive="false"]):host(:not([selected]):hover) .actions,
|
|
101
|
+
:host-context(mds-table[selection]:not([interactive])):host([selected="false"]:hover) .actions,
|
|
102
|
+
:host-context(mds-table[selection][interactive="false"]):host([selected="false"]:hover) .actions {
|
|
112
103
|
--mds-table-row-actions-background: var(--mds-table-row-background-alt);
|
|
113
104
|
}
|
|
114
105
|
|
|
115
|
-
|
|
116
|
-
:
|
|
117
|
-
|
|
106
|
+
:host-context(.pref-animation-reduce) {
|
|
107
|
+
transition-duration: 0s;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@media (prefers-reduced-motion) {
|
|
111
|
+
:host-context(.pref-animation-system) {
|
|
118
112
|
transition-duration: 0s;
|
|
119
113
|
}
|
|
120
114
|
}
|
|
121
115
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
116
|
+
:host(:not(:is([hydrated], .hydrated))) {
|
|
117
|
+
animation-duration: 0s;
|
|
118
|
+
border-color: transparent;
|
|
119
|
+
box-shadow: 0 0 0 transparent;
|
|
120
|
+
opacity: 0;
|
|
121
|
+
outline-color: transparent;
|
|
122
|
+
transition-delay: 0s;
|
|
123
|
+
transition-duration: 0s;
|
|
124
|
+
visibility: hidden;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* TODO refact(stencil): Uses only used selector from parent shadowDOM component */
|
|
128
|
+
|
|
129
|
+
mds-accordion:not(:is([hydrated], .hydrated)),
|
|
130
|
+
mds-accordion-item:not(:is([hydrated], .hydrated)),
|
|
131
|
+
mds-accordion-timer:not(:is([hydrated], .hydrated)),
|
|
132
|
+
mds-accordion-timer-item:not(:is([hydrated], .hydrated)),
|
|
133
|
+
mds-author:not(:is([hydrated], .hydrated)),
|
|
134
|
+
mds-avatar:not(:is([hydrated], .hydrated)),
|
|
135
|
+
mds-badge:not(:is([hydrated], .hydrated)),
|
|
136
|
+
mds-banner:not(:is([hydrated], .hydrated)),
|
|
137
|
+
mds-benchmark-bar:not(:is([hydrated], .hydrated)),
|
|
138
|
+
mds-bibliography:not(:is([hydrated], .hydrated)),
|
|
139
|
+
mds-breadcrumb:not(:is([hydrated], .hydrated)),
|
|
140
|
+
mds-breadcrumb-item:not(:is([hydrated], .hydrated)),
|
|
141
|
+
mds-button:not(:is([hydrated], .hydrated)),
|
|
142
|
+
mds-card:not(:is([hydrated], .hydrated)),
|
|
143
|
+
mds-card-content:not(:is([hydrated], .hydrated)),
|
|
144
|
+
mds-card-footer:not(:is([hydrated], .hydrated)),
|
|
145
|
+
mds-card-header:not(:is([hydrated], .hydrated)),
|
|
146
|
+
mds-card-media:not(:is([hydrated], .hydrated)),
|
|
147
|
+
mds-chip:not(:is([hydrated], .hydrated)),
|
|
148
|
+
mds-details:not(:is([hydrated], .hydrated)),
|
|
149
|
+
mds-dropdown:not(:is([hydrated], .hydrated)),
|
|
150
|
+
mds-entity:not(:is([hydrated], .hydrated)),
|
|
151
|
+
mds-file:not(:is([hydrated], .hydrated)),
|
|
152
|
+
mds-file-preview:not(:is([hydrated], .hydrated)),
|
|
153
|
+
mds-filter:not(:is([hydrated], .hydrated)),
|
|
154
|
+
mds-filter-item:not(:is([hydrated], .hydrated)),
|
|
155
|
+
mds-header:not(:is([hydrated], .hydrated)),
|
|
156
|
+
mds-header-bar:not(:is([hydrated], .hydrated)),
|
|
157
|
+
mds-help:not(:is([hydrated], .hydrated)),
|
|
158
|
+
mds-horizontal-scroll:not(:is([hydrated], .hydrated)),
|
|
159
|
+
mds-hr:not(:is([hydrated], .hydrated)),
|
|
160
|
+
mds-icon:not(:is([hydrated], .hydrated)),
|
|
161
|
+
mds-img:not(:is([hydrated], .hydrated)),
|
|
162
|
+
mds-input:not(:is([hydrated], .hydrated)),
|
|
163
|
+
mds-input-field:not(:is([hydrated], .hydrated)),
|
|
164
|
+
mds-input-range:not(:is([hydrated], .hydrated)),
|
|
165
|
+
mds-input-select:not(:is([hydrated], .hydrated)),
|
|
166
|
+
mds-input-switch:not(:is([hydrated], .hydrated)),
|
|
167
|
+
mds-input-tip:not(:is([hydrated], .hydrated)),
|
|
168
|
+
mds-input-tip-item:not(:is([hydrated], .hydrated)),
|
|
169
|
+
mds-input-upload:not(:is([hydrated], .hydrated)),
|
|
170
|
+
mds-keyboard:not(:is([hydrated], .hydrated)),
|
|
171
|
+
mds-keyboard-key:not(:is([hydrated], .hydrated)),
|
|
172
|
+
mds-kpi:not(:is([hydrated], .hydrated)),
|
|
173
|
+
mds-kpi-item:not(:is([hydrated], .hydrated)),
|
|
174
|
+
mds-label:not(:is([hydrated], .hydrated)),
|
|
175
|
+
mds-list:not(:is([hydrated], .hydrated)),
|
|
176
|
+
mds-list-item:not(:is([hydrated], .hydrated)),
|
|
177
|
+
mds-modal:not(:is([hydrated], .hydrated)),
|
|
178
|
+
mds-note:not(:is([hydrated], .hydrated)),
|
|
179
|
+
mds-notification:not(:is([hydrated], .hydrated)),
|
|
180
|
+
mds-paginator:not(:is([hydrated], .hydrated)),
|
|
181
|
+
mds-paginator-item:not(:is([hydrated], .hydrated)),
|
|
182
|
+
mds-pref:not(:is([hydrated], .hydrated)),
|
|
183
|
+
mds-pref-animation:not(:is([hydrated], .hydrated)),
|
|
184
|
+
mds-pref-consumption:not(:is([hydrated], .hydrated)),
|
|
185
|
+
mds-pref-contrast:not(:is([hydrated], .hydrated)),
|
|
186
|
+
mds-pref-language:not(:is([hydrated], .hydrated)),
|
|
187
|
+
mds-pref-language-item:not(:is([hydrated], .hydrated)),
|
|
188
|
+
mds-pref-theme:not(:is([hydrated], .hydrated)),
|
|
189
|
+
mds-price-table:not(:is([hydrated], .hydrated)),
|
|
190
|
+
mds-price-table-features:not(:is([hydrated], .hydrated)),
|
|
191
|
+
mds-price-table-features-cell:not(:is([hydrated], .hydrated)),
|
|
192
|
+
mds-price-table-features-row:not(:is([hydrated], .hydrated)),
|
|
193
|
+
mds-price-table-header:not(:is([hydrated], .hydrated)),
|
|
194
|
+
mds-price-table-list:not(:is([hydrated], .hydrated)),
|
|
195
|
+
mds-price-table-list-item:not(:is([hydrated], .hydrated)),
|
|
196
|
+
mds-progress:not(:is([hydrated], .hydrated)),
|
|
197
|
+
mds-push-notification:not(:is([hydrated], .hydrated)),
|
|
198
|
+
mds-push-notifications:not(:is([hydrated], .hydrated)),
|
|
199
|
+
mds-quote:not(:is([hydrated], .hydrated)),
|
|
200
|
+
mds-separator:not(:is([hydrated], .hydrated)),
|
|
201
|
+
mds-spinner:not(:is([hydrated], .hydrated)),
|
|
202
|
+
mds-stepper-bar:not(:is([hydrated], .hydrated)),
|
|
203
|
+
mds-stepper-bar-item:not(:is([hydrated], .hydrated)),
|
|
204
|
+
mds-tab:not(:is([hydrated], .hydrated)),
|
|
205
|
+
mds-tab-bar:not(:is([hydrated], .hydrated)),
|
|
206
|
+
mds-tab-bar-item:not(:is([hydrated], .hydrated)),
|
|
207
|
+
mds-tab-item:not(:is([hydrated], .hydrated)),
|
|
208
|
+
mds-table:not(:is([hydrated], .hydrated)),
|
|
209
|
+
mds-table-body:not(:is([hydrated], .hydrated)),
|
|
210
|
+
mds-table-cell:not(:is([hydrated], .hydrated)),
|
|
211
|
+
mds-table-footer:not(:is([hydrated], .hydrated)),
|
|
212
|
+
mds-table-header:not(:is([hydrated], .hydrated)),
|
|
213
|
+
mds-table-header-cell:not(:is([hydrated], .hydrated)),
|
|
214
|
+
mds-table-row:not(:is([hydrated], .hydrated)),
|
|
215
|
+
mds-text:not(:is([hydrated], .hydrated)),
|
|
216
|
+
mds-toast:not(:is([hydrated], .hydrated)),
|
|
217
|
+
mds-tooltip:not(:is([hydrated], .hydrated)),
|
|
218
|
+
mds-tree:not(:is([hydrated], .hydrated)),
|
|
219
|
+
mds-tree-item:not(:is([hydrated], .hydrated)),
|
|
220
|
+
mds-url-view:not(:is([hydrated], .hydrated)),
|
|
221
|
+
mds-usage:not(:is([hydrated], .hydrated)),
|
|
222
|
+
mds-video-wall:not(:is([hydrated], .hydrated)),
|
|
223
|
+
mds-zero:not(:is([hydrated], .hydrated))
|
|
224
|
+
{
|
|
225
|
+
animation-duration: 0s;
|
|
226
|
+
border-color: transparent;
|
|
227
|
+
box-shadow: 0 0 0 transparent;
|
|
228
|
+
opacity: 0;
|
|
229
|
+
outline-color: transparent;
|
|
230
|
+
transition-delay: 0s;
|
|
231
|
+
transition-duration: 0s;
|
|
232
|
+
visibility: hidden;
|
|
130
233
|
}
|
|
131
234
|
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
const keyboardKeyNameDictionary = [
|
|
2
|
+
'0',
|
|
3
|
+
'1',
|
|
4
|
+
'2',
|
|
5
|
+
'3',
|
|
6
|
+
'4',
|
|
7
|
+
'5',
|
|
8
|
+
'6',
|
|
9
|
+
'7',
|
|
10
|
+
'8',
|
|
11
|
+
'9',
|
|
12
|
+
'a',
|
|
13
|
+
'alt',
|
|
14
|
+
'altleft',
|
|
15
|
+
'altright',
|
|
16
|
+
'arrowdown',
|
|
17
|
+
'arrowleft',
|
|
18
|
+
'arrowright',
|
|
19
|
+
'arrowup',
|
|
20
|
+
'b',
|
|
21
|
+
'backspace',
|
|
22
|
+
'c',
|
|
23
|
+
'capslock',
|
|
24
|
+
'command',
|
|
25
|
+
'commandleft',
|
|
26
|
+
'commandright',
|
|
27
|
+
'control',
|
|
28
|
+
'controlleft',
|
|
29
|
+
'controlright',
|
|
30
|
+
'd',
|
|
31
|
+
'delete',
|
|
32
|
+
'e',
|
|
33
|
+
'end',
|
|
34
|
+
'enter',
|
|
35
|
+
'escape',
|
|
36
|
+
'f',
|
|
37
|
+
'f1',
|
|
38
|
+
'f10',
|
|
39
|
+
'f11',
|
|
40
|
+
'f12',
|
|
41
|
+
'f2',
|
|
42
|
+
'f3',
|
|
43
|
+
'f4',
|
|
44
|
+
'f5',
|
|
45
|
+
'f6',
|
|
46
|
+
'f7',
|
|
47
|
+
'f8',
|
|
48
|
+
'f9',
|
|
49
|
+
'g',
|
|
50
|
+
'h',
|
|
51
|
+
'home',
|
|
52
|
+
'i',
|
|
53
|
+
'j',
|
|
54
|
+
'k',
|
|
55
|
+
'l',
|
|
56
|
+
'm',
|
|
57
|
+
'n',
|
|
58
|
+
'o',
|
|
59
|
+
'option',
|
|
60
|
+
'optionleft',
|
|
61
|
+
'optionright',
|
|
62
|
+
'p',
|
|
63
|
+
'pagedown',
|
|
64
|
+
'pageup',
|
|
65
|
+
'q',
|
|
66
|
+
'r',
|
|
67
|
+
's',
|
|
68
|
+
'shift',
|
|
69
|
+
'shiftleft',
|
|
70
|
+
'shiftright',
|
|
71
|
+
'space',
|
|
72
|
+
't',
|
|
73
|
+
'tab',
|
|
74
|
+
'u',
|
|
75
|
+
'v',
|
|
76
|
+
'w',
|
|
77
|
+
'windows',
|
|
78
|
+
'windowsleft',
|
|
79
|
+
'windowsright',
|
|
80
|
+
'x',
|
|
81
|
+
'y',
|
|
82
|
+
'z',
|
|
83
|
+
];
|
|
84
|
+
export { keyboardKeyNameDictionary, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -870,7 +870,7 @@ const localeIt = {
|
|
|
870
870
|
unselectRow: unselectRow
|
|
871
871
|
};
|
|
872
872
|
|
|
873
|
-
const mdsTableRowCss = "
|
|
873
|
+
const mdsTableRowCss = ":host{--mds-table-row-color-hover:var(--mds-table-color, rgb(var(--tone-neutral-02)));--mds-table-row-color-alt:var(--mds-table-color-alt, rgb(var(--tone-neutral-02)));--mds-table-row-background-hover:var(--mds-table-background, rgb(var(--tone-neutral)));--mds-table-row-background-alt:var(--mds-table-background-alt, rgb(var(--tone-neutral)));--mds-table-row-actions-gap:var(--mds-table-actions-gap, 1rem);-webkit-transition-duration:200ms;transition-duration:200ms;-webkit-transition-timing-function:cubic-bezier(0, 0, 0.2, 1);transition-timing-function:cubic-bezier(0, 0, 0.2, 1);color:var(--mds-table-row-color);display:table-row;position:relative;-webkit-transition-property:color;transition-property:color}.selection-cell{vertical-align:middle}.checkbox-wrapper{display:-ms-flexbox;display:flex}:host([interactive]:hover){--mds-table-row-actions-background:var(--mds-table-row-background-hover);--mds-table-row-background:var(--mds-table-row-background-hover);--mds-table-row-color:var(--mds-table-row-color-hover)}:host([selected]){--mds-table-row-background:var(--mds-table-row-background-hover);--mds-table-row-color:var(--mds-table-row-color-hover)}:host([sorted]){--mds-table-row-background:var(--mds-table-row-background-alt);--mds-table-row-color:var(--mds-table-row-color-alt)}:host([sorted][selected]){--mds-table-row-background:var(--mds-table-row-background-hover);--mds-table-row-color:var(--mds-table-row-color-hover)}.actions-view{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;inset:0;-ms-flex-pack:end;justify-content:end;pointer-events:none;position:absolute}.actions{--mds-table-row-actions-background:var(--mds-table-row-background);-ms-flex-align:center;align-items:center;background-color:var(--mds-table-row-actions-background);border-bottom-left-radius:calc(0.5rem + var(--mds-table-border-width) * 2);border-top-left-radius:calc(0.5rem + var(--mds-table-border-width) * 2);display:-ms-inline-flexbox;display:inline-flex;gap:var(--mds-table-row-actions-gap);inset:0;margin-right:100%;padding:calc(var(--mds-table-border-width) * 2);padding-right:0;pointer-events:auto;position:-webkit-sticky;position:sticky;right:0;-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-transition-duration:500ms;transition-duration:500ms;-webkit-transition-property:background-color, padding-right, -webkit-transform;transition-property:background-color, padding-right, -webkit-transform;transition-property:transform, background-color, padding-right;transition-property:transform, background-color, padding-right, -webkit-transform;-webkit-transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1);transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1)}:host(:hover) .actions{-webkit-transform:translateX(100%);transform:translateX(100%)}:host([overlay-actions]) .actions{padding-right:var(--mds-table-cell-padding);-webkit-transform:translateX(100%);transform:translateX(100%)}:host([overlay-actions]:hover) .actions{--mds-table-row-actions-background:var(--mds-table-row-background);-webkit-transform:translateX(0);transform:translateX(0)}:host-context(mds-table[interactive=\"false\"]):host(:hover) .actions,:host-context(mds-table:not([interactive])):host(:hover) .actions{--mds-table-row-actions-background:var(--mds-table-row-background-hover)}:host-context(mds-table[selection]:not([interactive])):host(:not([selected]):hover) .actions,:host-context(mds-table[selection][interactive=\"false\"]):host(:not([selected]):hover) .actions,:host-context(mds-table[selection]:not([interactive])):host([selected=\"false\"]:hover) .actions,:host-context(mds-table[selection][interactive=\"false\"]):host([selected=\"false\"]:hover) .actions{--mds-table-row-actions-background:var(--mds-table-row-background-alt)}:host-context(.pref-animation-reduce){-webkit-transition-duration:0s;transition-duration:0s}@media (prefers-reduced-motion){:host-context(.pref-animation-system){-webkit-transition-duration:0s;transition-duration:0s}}:host(:not(:is([hydrated],.hydrated))){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}mds-accordion:not(:is([hydrated],.hydrated)),mds-accordion-item:not(:is([hydrated],.hydrated)),mds-accordion-timer:not(:is([hydrated],.hydrated)),mds-accordion-timer-item:not(:is([hydrated],.hydrated)),mds-author:not(:is([hydrated],.hydrated)),mds-avatar:not(:is([hydrated],.hydrated)),mds-badge:not(:is([hydrated],.hydrated)),mds-banner:not(:is([hydrated],.hydrated)),mds-benchmark-bar:not(:is([hydrated],.hydrated)),mds-bibliography:not(:is([hydrated],.hydrated)),mds-breadcrumb:not(:is([hydrated],.hydrated)),mds-breadcrumb-item:not(:is([hydrated],.hydrated)),mds-button:not(:is([hydrated],.hydrated)),mds-card:not(:is([hydrated],.hydrated)),mds-card-content:not(:is([hydrated],.hydrated)),mds-card-footer:not(:is([hydrated],.hydrated)),mds-card-header:not(:is([hydrated],.hydrated)),mds-card-media:not(:is([hydrated],.hydrated)),mds-chip:not(:is([hydrated],.hydrated)),mds-details:not(:is([hydrated],.hydrated)),mds-dropdown:not(:is([hydrated],.hydrated)),mds-entity:not(:is([hydrated],.hydrated)),mds-file:not(:is([hydrated],.hydrated)),mds-file-preview:not(:is([hydrated],.hydrated)),mds-filter:not(:is([hydrated],.hydrated)),mds-filter-item:not(:is([hydrated],.hydrated)),mds-header:not(:is([hydrated],.hydrated)),mds-header-bar:not(:is([hydrated],.hydrated)),mds-help:not(:is([hydrated],.hydrated)),mds-horizontal-scroll:not(:is([hydrated],.hydrated)),mds-hr:not(:is([hydrated],.hydrated)),mds-icon:not(:is([hydrated],.hydrated)),mds-img:not(:is([hydrated],.hydrated)),mds-input:not(:is([hydrated],.hydrated)),mds-input-field:not(:is([hydrated],.hydrated)),mds-input-range:not(:is([hydrated],.hydrated)),mds-input-select:not(:is([hydrated],.hydrated)),mds-input-switch:not(:is([hydrated],.hydrated)),mds-input-tip:not(:is([hydrated],.hydrated)),mds-input-tip-item:not(:is([hydrated],.hydrated)),mds-input-upload:not(:is([hydrated],.hydrated)),mds-keyboard:not(:is([hydrated],.hydrated)),mds-keyboard-key:not(:is([hydrated],.hydrated)),mds-kpi:not(:is([hydrated],.hydrated)),mds-kpi-item:not(:is([hydrated],.hydrated)),mds-label:not(:is([hydrated],.hydrated)),mds-list:not(:is([hydrated],.hydrated)),mds-list-item:not(:is([hydrated],.hydrated)),mds-modal:not(:is([hydrated],.hydrated)),mds-note:not(:is([hydrated],.hydrated)),mds-notification:not(:is([hydrated],.hydrated)),mds-paginator:not(:is([hydrated],.hydrated)),mds-paginator-item:not(:is([hydrated],.hydrated)),mds-pref:not(:is([hydrated],.hydrated)),mds-pref-animation:not(:is([hydrated],.hydrated)),mds-pref-consumption:not(:is([hydrated],.hydrated)),mds-pref-contrast:not(:is([hydrated],.hydrated)),mds-pref-language:not(:is([hydrated],.hydrated)),mds-pref-language-item:not(:is([hydrated],.hydrated)),mds-pref-theme:not(:is([hydrated],.hydrated)),mds-price-table:not(:is([hydrated],.hydrated)),mds-price-table-features:not(:is([hydrated],.hydrated)),mds-price-table-features-cell:not(:is([hydrated],.hydrated)),mds-price-table-features-row:not(:is([hydrated],.hydrated)),mds-price-table-header:not(:is([hydrated],.hydrated)),mds-price-table-list:not(:is([hydrated],.hydrated)),mds-price-table-list-item:not(:is([hydrated],.hydrated)),mds-progress:not(:is([hydrated],.hydrated)),mds-push-notification:not(:is([hydrated],.hydrated)),mds-push-notifications:not(:is([hydrated],.hydrated)),mds-quote:not(:is([hydrated],.hydrated)),mds-separator:not(:is([hydrated],.hydrated)),mds-spinner:not(:is([hydrated],.hydrated)),mds-stepper-bar:not(:is([hydrated],.hydrated)),mds-stepper-bar-item:not(:is([hydrated],.hydrated)),mds-tab:not(:is([hydrated],.hydrated)),mds-tab-bar:not(:is([hydrated],.hydrated)),mds-tab-bar-item:not(:is([hydrated],.hydrated)),mds-tab-item:not(:is([hydrated],.hydrated)),mds-table:not(:is([hydrated],.hydrated)),mds-table-body:not(:is([hydrated],.hydrated)),mds-table-cell:not(:is([hydrated],.hydrated)),mds-table-footer:not(:is([hydrated],.hydrated)),mds-table-header:not(:is([hydrated],.hydrated)),mds-table-header-cell:not(:is([hydrated],.hydrated)),mds-table-row:not(:is([hydrated],.hydrated)),mds-text:not(:is([hydrated],.hydrated)),mds-toast:not(:is([hydrated],.hydrated)),mds-tooltip:not(:is([hydrated],.hydrated)),mds-tree:not(:is([hydrated],.hydrated)),mds-tree-item:not(:is([hydrated],.hydrated)),mds-url-view:not(:is([hydrated],.hydrated)),mds-usage:not(:is([hydrated],.hydrated)),mds-video-wall:not(:is([hydrated],.hydrated)),mds-zero:not(:is([hydrated],.hydrated)){-webkit-animation-duration:0s;animation-duration:0s;border-color:transparent;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;opacity:0;outline-color:transparent;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;visibility:hidden}";
|
|
874
874
|
const MdsTableRowStyle0 = mdsTableRowCss;
|
|
875
875
|
|
|
876
876
|
const MdsTableRow$1 = /*@__PURE__*/ proxyCustomElement(class MdsTableRow extends HTMLElement {
|