@ukic/web-components 2.35.0 → 2.35.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/README.md +1 -0
- package/dist/cjs/ic-navigation-item.cjs.entry.js +1 -1
- package/dist/cjs/ic-navigation-item.cjs.entry.js.map +1 -1
- package/dist/cjs/ic-toast.cjs.entry.js +2 -2
- package/dist/cjs/ic-toast.cjs.entry.js.map +1 -1
- package/dist/collection/components/ic-accordion/ic-accordion.stories.js +635 -0
- package/dist/collection/components/ic-alert/ic-alert.stories.js +257 -0
- package/dist/collection/components/ic-back-to-top/ic-back-to-top.stories.js +162 -0
- package/dist/collection/components/ic-badge/ic-badge.stories.js +1082 -0
- package/dist/collection/components/ic-breadcrumb-group/ic-breadcrumb-group.stories.js +502 -0
- package/dist/collection/components/ic-button/ic-button.stories.js +2218 -0
- package/dist/collection/components/ic-card/ic-card.stories.js +1034 -0
- package/dist/collection/components/ic-checkbox-group/ic-checkbox-group.stories.js +687 -0
- package/dist/collection/components/ic-chip/ic-chip.stories.js +670 -0
- package/dist/collection/components/ic-classification-banner/ic-classification-banner.stories.js +131 -0
- package/dist/collection/components/ic-data-entity/ic-data-entity.stories.js +487 -0
- package/dist/collection/components/ic-dialog/ic-dialog.stories.js +1256 -0
- package/dist/collection/components/ic-empty-state/ic-empty-state.stories.js +397 -0
- package/dist/collection/components/ic-footer/ic-footer.stories.js +383 -0
- package/dist/collection/components/ic-hero/ic-hero.stories.js +489 -0
- package/dist/collection/components/ic-link/ic-link.stories.js +114 -0
- package/dist/collection/components/ic-loading-indicator/ic-loading-indicator.stories.js +416 -0
- package/dist/collection/components/ic-navigation-item/ic-navigation-item.css +7 -35
- package/dist/collection/components/ic-page-header/ic-page-header.stories.js +557 -0
- package/dist/collection/components/ic-pagination/ic-pagination.stories.js +125 -0
- package/dist/collection/components/ic-popover-menu/ic-popover-menu.stories.js +486 -0
- package/dist/collection/components/ic-radio-group/ic-radio-group.stories.js +450 -0
- package/dist/collection/components/ic-search-bar/ic-search-bar.stories.js +591 -0
- package/dist/collection/components/ic-section-container/ic-section-container.stories.js +62 -0
- package/dist/collection/components/ic-select/ic-select-searchable.stories.js +953 -0
- package/dist/collection/components/ic-select/ic-select-single.stories.js +780 -0
- package/dist/collection/components/ic-side-navigation/ic-side-navigation.stories.js +2526 -0
- package/dist/collection/components/ic-skeleton/ic-skeleton.stories.js +141 -0
- package/dist/collection/components/ic-status-tag/ic-status-tag.stories.js +161 -0
- package/dist/collection/components/ic-stepper/ic-stepper.stories.js +327 -0
- package/dist/collection/components/ic-switch/ic-switch.stories.js +171 -0
- package/dist/collection/components/ic-tab-context/ic-tabs.stories.js +388 -0
- package/dist/collection/components/ic-text-field/ic-text-field.stories.js +1083 -0
- package/dist/collection/components/ic-theme/ic-theme.stories.js +171 -0
- package/dist/collection/components/ic-toast/ic-toast.js +2 -2
- package/dist/collection/components/ic-toast/ic-toast.js.map +1 -1
- package/dist/collection/components/ic-toast/ic-toast.stories.js +413 -0
- package/dist/collection/components/ic-toast/test/basic/ic-toast.spec.js +3 -3
- package/dist/collection/components/ic-toast/test/basic/ic-toast.spec.js.map +1 -1
- package/dist/collection/components/ic-toggle-button/ic-toggle-button.stories.js +537 -0
- package/dist/collection/components/ic-toggle-button-group/ic-toggle-button-group.stories.js +610 -0
- package/dist/collection/components/ic-tooltip/ic-tooltip.stories.js +356 -0
- package/dist/collection/components/ic-top-navigation/ic-top-navigation.stories.js +1083 -0
- package/dist/collection/components/ic-typography/ic-typography.stories.js +437 -0
- package/dist/collection/patterns/top-nav-content-footer.stories.js +109 -0
- package/dist/collection/patterns/z-index.stories.js +474 -0
- package/dist/components/ic-navigation-item.js +1 -1
- package/dist/components/ic-navigation-item.js.map +1 -1
- package/dist/components/ic-toast.js +2 -2
- package/dist/components/ic-toast.js.map +1 -1
- package/dist/core/core.esm.js +1 -1
- package/dist/core/p-3e8023ff.entry.js +2 -0
- package/dist/core/p-3e8023ff.entry.js.map +1 -0
- package/dist/core/{p-7e8a4abd.entry.js → p-bfaa257c.entry.js} +2 -2
- package/dist/core/{p-7e8a4abd.entry.js.map → p-bfaa257c.entry.js.map} +1 -1
- package/dist/esm/ic-navigation-item.entry.js +1 -1
- package/dist/esm/ic-navigation-item.entry.js.map +1 -1
- package/dist/esm/ic-toast.entry.js +2 -2
- package/dist/esm/ic-toast.entry.js.map +1 -1
- package/hydrate/index.js +3 -3
- package/package.json +15 -11
- package/dist/core/p-dfb3e76e.entry.js +0 -2
- package/dist/core/p-dfb3e76e.entry.js.map +0 -1
@@ -0,0 +1,416 @@
|
|
1
|
+
import { html } from "lit-html";
|
2
|
+
|
3
|
+
const defaultArgs = {
|
4
|
+
appearance: "dark",
|
5
|
+
description: "Loading",
|
6
|
+
fullWidth: false,
|
7
|
+
labelDuration: 8000,
|
8
|
+
size: "default",
|
9
|
+
type: "circular",
|
10
|
+
label: null,
|
11
|
+
};
|
12
|
+
|
13
|
+
const defaultArgTypes = {
|
14
|
+
appearance: {
|
15
|
+
options: ["dark", "light"],
|
16
|
+
control: { type: "radio" },
|
17
|
+
},
|
18
|
+
label: {
|
19
|
+
control: { type: "text" },
|
20
|
+
},
|
21
|
+
size: {
|
22
|
+
options: ["small", "default", "large", "icon"],
|
23
|
+
control: { type: "radio" },
|
24
|
+
},
|
25
|
+
type: {
|
26
|
+
options: ["circular", "linear"],
|
27
|
+
control: { type: "radio" },
|
28
|
+
},
|
29
|
+
};
|
30
|
+
|
31
|
+
export default {
|
32
|
+
title: "Web Components/Loading",
|
33
|
+
component: "ic-loading-indicator",
|
34
|
+
};
|
35
|
+
|
36
|
+
export const CircularIndeterminate = {
|
37
|
+
render: (args) =>
|
38
|
+
html`<ic-loading-indicator label="Loading..."></ic-loading-indicator>`,
|
39
|
+
name: "Circular (indeterminate)",
|
40
|
+
};
|
41
|
+
|
42
|
+
export const CircularDeterminate = {
|
43
|
+
render: (args) =>
|
44
|
+
html`<ic-loading-indicator
|
45
|
+
progress="30"
|
46
|
+
min="0"
|
47
|
+
max="100"
|
48
|
+
label="Loading..."
|
49
|
+
></ic-loading-indicator>`,
|
50
|
+
|
51
|
+
name: "Circular (determinate)",
|
52
|
+
};
|
53
|
+
|
54
|
+
export const CircularLongLabel = {
|
55
|
+
render: (args) =>
|
56
|
+
html`<ic-loading-indicator
|
57
|
+
label="This is a label for a loading indicator that is indeterminate and should wrap onto more than one line when it gets too long"
|
58
|
+
></ic-loading-indicator>`,
|
59
|
+
|
60
|
+
name: "Circular long label",
|
61
|
+
};
|
62
|
+
|
63
|
+
export const CircularVariantsIndeterminate = {
|
64
|
+
render: (args) =>
|
65
|
+
html`<div style="display: grid; gap: 50px;">
|
66
|
+
<ic-loading-indicator label="Small" size="small"></ic-loading-indicator>
|
67
|
+
<ic-loading-indicator label="Default"></ic-loading-indicator>
|
68
|
+
<ic-loading-indicator label="Large" size="large"></ic-loading-indicator>
|
69
|
+
</div>`,
|
70
|
+
|
71
|
+
name: "Circular variants (indeterminate)",
|
72
|
+
};
|
73
|
+
|
74
|
+
export const CircularVariantsDeterminate = {
|
75
|
+
render: (args) =>
|
76
|
+
html`<div style="display: grid; gap: 50px;">
|
77
|
+
<ic-loading-indicator
|
78
|
+
progress="30"
|
79
|
+
min="0"
|
80
|
+
max="100"
|
81
|
+
label="Small"
|
82
|
+
size="small"
|
83
|
+
></ic-loading-indicator>
|
84
|
+
<ic-loading-indicator
|
85
|
+
progress="30"
|
86
|
+
min="0"
|
87
|
+
max="100"
|
88
|
+
label="Default"
|
89
|
+
></ic-loading-indicator>
|
90
|
+
<ic-loading-indicator
|
91
|
+
progress="30"
|
92
|
+
min="0"
|
93
|
+
max="100"
|
94
|
+
label="Large"
|
95
|
+
size="large"
|
96
|
+
></ic-loading-indicator>
|
97
|
+
</div>`,
|
98
|
+
|
99
|
+
name: "Circular variants (determinate)",
|
100
|
+
};
|
101
|
+
|
102
|
+
export const Icon = {
|
103
|
+
render: (args) =>
|
104
|
+
html`<ic-loading-indicator size="icon"></ic-loading-indicator>`,
|
105
|
+
name: "Icon",
|
106
|
+
};
|
107
|
+
|
108
|
+
export const LinearIndeterminate = {
|
109
|
+
render: (args) =>
|
110
|
+
html`<ic-loading-indicator
|
111
|
+
label="Loading..."
|
112
|
+
type="linear"
|
113
|
+
></ic-loading-indicator>`,
|
114
|
+
|
115
|
+
name: "Linear (indeterminate)",
|
116
|
+
};
|
117
|
+
|
118
|
+
export const LinearDeterminate = {
|
119
|
+
render: (args) =>
|
120
|
+
html`<ic-loading-indicator
|
121
|
+
progress="30"
|
122
|
+
min="0"
|
123
|
+
max="100"
|
124
|
+
label="Progress"
|
125
|
+
type="linear"
|
126
|
+
></ic-loading-indicator>`,
|
127
|
+
|
128
|
+
name: "Linear (determinate)",
|
129
|
+
};
|
130
|
+
|
131
|
+
export const LinearLongLabel = {
|
132
|
+
render: (args) =>
|
133
|
+
html`<ic-loading-indicator
|
134
|
+
type="linear"
|
135
|
+
label="This is a label for a loading indicator that is indeterminate and should wrap onto more than one line when it gets too long"
|
136
|
+
></ic-loading-indicator>`,
|
137
|
+
|
138
|
+
name: "Linear long label",
|
139
|
+
};
|
140
|
+
|
141
|
+
export const LinearVariantsIndeterminate = {
|
142
|
+
render: (args) =>
|
143
|
+
html`<div style="display: grid; gap: 50px;">
|
144
|
+
<ic-loading-indicator
|
145
|
+
label="Small"
|
146
|
+
size="small"
|
147
|
+
type="linear"
|
148
|
+
></ic-loading-indicator>
|
149
|
+
<ic-loading-indicator
|
150
|
+
label="Default"
|
151
|
+
type="linear"
|
152
|
+
></ic-loading-indicator>
|
153
|
+
<ic-loading-indicator
|
154
|
+
label="Large"
|
155
|
+
size="large"
|
156
|
+
type="linear"
|
157
|
+
></ic-loading-indicator>
|
158
|
+
<ic-loading-indicator
|
159
|
+
label="Full-width"
|
160
|
+
size="default"
|
161
|
+
type="linear"
|
162
|
+
full-width="true"
|
163
|
+
></ic-loading-indicator>
|
164
|
+
</div>`,
|
165
|
+
|
166
|
+
name: "Linear variants (indeterminate)",
|
167
|
+
};
|
168
|
+
|
169
|
+
export const LinearVariantsDeterminate = {
|
170
|
+
render: (args) =>
|
171
|
+
html`<div style="display: grid; gap: 50px;">
|
172
|
+
<ic-loading-indicator
|
173
|
+
progress="30"
|
174
|
+
min="0"
|
175
|
+
max="100"
|
176
|
+
label="Small"
|
177
|
+
size="small"
|
178
|
+
type="linear"
|
179
|
+
></ic-loading-indicator>
|
180
|
+
<ic-loading-indicator
|
181
|
+
progress="30"
|
182
|
+
min="0"
|
183
|
+
max="100"
|
184
|
+
label="Default"
|
185
|
+
type="linear"
|
186
|
+
></ic-loading-indicator>
|
187
|
+
<ic-loading-indicator
|
188
|
+
progress="30"
|
189
|
+
min="0"
|
190
|
+
max="100"
|
191
|
+
label="Large"
|
192
|
+
size="large"
|
193
|
+
type="linear"
|
194
|
+
></ic-loading-indicator>
|
195
|
+
<ic-loading-indicator
|
196
|
+
progress="30"
|
197
|
+
min="0"
|
198
|
+
max="100"
|
199
|
+
label="Full-width"
|
200
|
+
size="default"
|
201
|
+
type="linear"
|
202
|
+
full-width="true"
|
203
|
+
></ic-loading-indicator>
|
204
|
+
</div>`,
|
205
|
+
|
206
|
+
name: "Linear variants (determinate)",
|
207
|
+
};
|
208
|
+
|
209
|
+
export const CircularLight = {
|
210
|
+
render: (args) =>
|
211
|
+
html`<div style="display: grid; gap: 50px;">
|
212
|
+
<ic-loading-indicator
|
213
|
+
label="Small"
|
214
|
+
size="small"
|
215
|
+
appearance="light"
|
216
|
+
></ic-loading-indicator>
|
217
|
+
<ic-loading-indicator
|
218
|
+
label="Default"
|
219
|
+
appearance="light"
|
220
|
+
></ic-loading-indicator>
|
221
|
+
<ic-loading-indicator
|
222
|
+
label="Large"
|
223
|
+
size="large"
|
224
|
+
appearance="light"
|
225
|
+
></ic-loading-indicator>
|
226
|
+
</div>`,
|
227
|
+
|
228
|
+
name: "Circular light",
|
229
|
+
|
230
|
+
parameters: {
|
231
|
+
backgrounds: {
|
232
|
+
default: "dark",
|
233
|
+
},
|
234
|
+
},
|
235
|
+
};
|
236
|
+
|
237
|
+
export const IconLight = {
|
238
|
+
render: (args) =>
|
239
|
+
html`<ic-loading-indicator
|
240
|
+
size="icon"
|
241
|
+
appearance="light"
|
242
|
+
></ic-loading-indicator>`,
|
243
|
+
|
244
|
+
name: "Icon light",
|
245
|
+
|
246
|
+
parameters: {
|
247
|
+
backgrounds: {
|
248
|
+
default: "dark",
|
249
|
+
},
|
250
|
+
},
|
251
|
+
};
|
252
|
+
|
253
|
+
export const LinearLight = {
|
254
|
+
render: (args) =>
|
255
|
+
html`<div style="display: grid; gap: 50px;">
|
256
|
+
<ic-loading-indicator
|
257
|
+
label="Default"
|
258
|
+
type="linear"
|
259
|
+
appearance="light"
|
260
|
+
></ic-loading-indicator>
|
261
|
+
<ic-loading-indicator
|
262
|
+
label="Large"
|
263
|
+
size="large"
|
264
|
+
type="linear"
|
265
|
+
appearance="light"
|
266
|
+
></ic-loading-indicator>
|
267
|
+
<ic-loading-indicator
|
268
|
+
label="Full-width"
|
269
|
+
type="linear"
|
270
|
+
full-width="true"
|
271
|
+
appearance="light"
|
272
|
+
></ic-loading-indicator>
|
273
|
+
<ic-loading-indicator
|
274
|
+
progress="30"
|
275
|
+
min="0"
|
276
|
+
max="100"
|
277
|
+
label="Default"
|
278
|
+
type="linear"
|
279
|
+
appearance="light"
|
280
|
+
></ic-loading-indicator>
|
281
|
+
<ic-loading-indicator
|
282
|
+
progress="30"
|
283
|
+
min="0"
|
284
|
+
max="100"
|
285
|
+
label="Large"
|
286
|
+
size="large"
|
287
|
+
type="linear"
|
288
|
+
appearance="light"
|
289
|
+
></ic-loading-indicator>
|
290
|
+
<ic-loading-indicator
|
291
|
+
progress="30"
|
292
|
+
min="0"
|
293
|
+
max="100"
|
294
|
+
label="Full-width"
|
295
|
+
type="linear"
|
296
|
+
full-width="true"
|
297
|
+
appearance="light"
|
298
|
+
></ic-loading-indicator>
|
299
|
+
</div>`,
|
300
|
+
|
301
|
+
name: "Linear light",
|
302
|
+
|
303
|
+
parameters: {
|
304
|
+
backgrounds: {
|
305
|
+
default: "dark",
|
306
|
+
},
|
307
|
+
},
|
308
|
+
};
|
309
|
+
|
310
|
+
export const NoLabel = {
|
311
|
+
render: (args) =>
|
312
|
+
html`<div style="display: grid; gap: 50px;">
|
313
|
+
<ic-loading-indicator description="Loading"></ic-loading-indicator
|
314
|
+
><ic-loading-indicator
|
315
|
+
progress="30"
|
316
|
+
min="0"
|
317
|
+
max="100"
|
318
|
+
description="Loading"
|
319
|
+
></ic-loading-indicator
|
320
|
+
><ic-loading-indicator
|
321
|
+
description="Loading"
|
322
|
+
type="linear"
|
323
|
+
></ic-loading-indicator
|
324
|
+
><ic-loading-indicator
|
325
|
+
progress="30"
|
326
|
+
min="0"
|
327
|
+
max="100"
|
328
|
+
description="Loading"
|
329
|
+
type="linear"
|
330
|
+
></ic-loading-indicator>
|
331
|
+
</div>`,
|
332
|
+
|
333
|
+
name: "No label",
|
334
|
+
};
|
335
|
+
|
336
|
+
export const ChangingLabel = {
|
337
|
+
render: (args) =>
|
338
|
+
html`<ic-loading-indicator
|
339
|
+
label="Loading.../Still loading..."
|
340
|
+
label-duration="4000"
|
341
|
+
></ic-loading-indicator>`,
|
342
|
+
|
343
|
+
name: "Changing label",
|
344
|
+
};
|
345
|
+
|
346
|
+
export const ProgressIndicatorForCompactStep = {
|
347
|
+
render: (args) =>
|
348
|
+
html`<ic-loading-indicator
|
349
|
+
size="small"
|
350
|
+
inner-label="3"
|
351
|
+
progress="30"
|
352
|
+
min="0"
|
353
|
+
max="100"
|
354
|
+
></ic-loading-indicator>`,
|
355
|
+
|
356
|
+
name: "Progress indicator for compact step",
|
357
|
+
args: defaultArgs,
|
358
|
+
argTypes: defaultArgTypes,
|
359
|
+
};
|
360
|
+
|
361
|
+
export const PlaygroundIndeterminate = {
|
362
|
+
render: (args) =>
|
363
|
+
html`<div
|
364
|
+
style="background-color: ${args.appearance === "light"
|
365
|
+
? "#393939"
|
366
|
+
: "#FFFFFF"}; padding: 16px;"
|
367
|
+
>
|
368
|
+
<ic-loading-indicator
|
369
|
+
appearance=${args.appearance}
|
370
|
+
description=${args.description}
|
371
|
+
full-width=${args.fullWidth}
|
372
|
+
label-duration=${args.labelDuration}
|
373
|
+
size=${args.size}
|
374
|
+
type=${args.type}
|
375
|
+
label=${args.label}
|
376
|
+
>
|
377
|
+
</ic-loading-indicator>
|
378
|
+
</div>`,
|
379
|
+
|
380
|
+
args: defaultArgs,
|
381
|
+
argTypes: defaultArgTypes,
|
382
|
+
name: "Playground - indeterminate",
|
383
|
+
};
|
384
|
+
|
385
|
+
export const PlaygroundDeterminate = {
|
386
|
+
render: (args) =>
|
387
|
+
html`<div
|
388
|
+
style="background-color: ${args.appearance === "light"
|
389
|
+
? "#393939"
|
390
|
+
: "#FFFFFF"}; padding: 16px;"
|
391
|
+
>
|
392
|
+
<ic-loading-indicator
|
393
|
+
appearance=${args.appearance}
|
394
|
+
description=${args.description}
|
395
|
+
full-width=${args.fullWidth}
|
396
|
+
label-duration=${args.labelDuration}
|
397
|
+
size=${args.size}
|
398
|
+
type=${args.type}
|
399
|
+
label=${args.label}
|
400
|
+
progress=${args.progress}
|
401
|
+
min=${args.min}
|
402
|
+
max=${args.max}
|
403
|
+
>
|
404
|
+
</ic-loading-indicator>
|
405
|
+
</div>`,
|
406
|
+
|
407
|
+
args: {
|
408
|
+
...defaultArgs,
|
409
|
+
max: 100,
|
410
|
+
min: 0,
|
411
|
+
progress: 30,
|
412
|
+
},
|
413
|
+
|
414
|
+
argTypes: defaultArgTypes,
|
415
|
+
name: "Playground - determinate",
|
416
|
+
};
|
@@ -531,24 +531,13 @@ svg {
|
|
531
531
|
cursor: pointer;
|
532
532
|
}
|
533
533
|
|
534
|
-
:host(
|
535
|
-
.navigation-item:not(
|
536
|
-
.navigation-item-page-header,
|
537
|
-
.navigation-item-side-menu
|
538
|
-
)
|
539
|
-
)
|
534
|
+
:host(.navigation-item:not(.navigation-item-page-header, .navigation-item-side-menu))
|
540
535
|
::slotted(a:hover:not(:focus)) {
|
541
536
|
background-color: var(--ic-theme-hover) !important;
|
542
537
|
}
|
543
538
|
|
544
|
-
:host(
|
545
|
-
|
546
|
-
.navigation-item-top-nav-child,
|
547
|
-
.navigation-item-side-menu,
|
548
|
-
.navigation-item-top-nav-child-selected
|
549
|
-
.navigation-item-side-menu-selected
|
550
|
-
)
|
551
|
-
)
|
539
|
+
:host(.navigation-item:not(.navigation-item-top-nav-child, .navigation-item-side-menu, .navigation-item-top-nav-child-selected
|
540
|
+
.navigation-item-side-menu-selected))
|
552
541
|
.focus-indicator:focus-within {
|
553
542
|
box-shadow: var(--ic-border-focus);
|
554
543
|
border-radius: var(--ic-border-radius);
|
@@ -568,13 +557,6 @@ svg {
|
|
568
557
|
outline: var(--ic-hc-focus-outline);
|
569
558
|
}
|
570
559
|
|
571
|
-
:host(.navigation-item-selected.dark) .link:focus,
|
572
|
-
:host(.navigation-item.dark) ::slotted(a.active:focus) {
|
573
|
-
box-shadow: var(--ic-border-focus);
|
574
|
-
border-radius: var(--ic-border-radius);
|
575
|
-
outline: var(--ic-hc-focus-outline);
|
576
|
-
}
|
577
|
-
|
578
560
|
:host(.navigation-item) .link:active:not(:focus),
|
579
561
|
:host(.navigation-item) ::slotted(a:active:not(:focus)) {
|
580
562
|
background-color: var(--ic-theme-active);
|
@@ -925,23 +907,15 @@ svg {
|
|
925
907
|
box-shadow: var(--ic-border-focus-inset);
|
926
908
|
}
|
927
909
|
|
928
|
-
:host(
|
929
|
-
:not(
|
930
|
-
.navigation-item-side-nav-collapsed
|
931
|
-
).navigation-item-side-nav.navigation-item-side-nav-collapsed-with-label
|
932
|
-
)
|
910
|
+
:host(:not(.navigation-item-side-nav-collapsed).navigation-item-side-nav.navigation-item-side-nav-collapsed-with-label)
|
933
911
|
.link {
|
934
912
|
opacity: var(--navigation-item-label-opacity);
|
935
913
|
height: auto;
|
936
914
|
}
|
937
915
|
|
938
|
-
:host(
|
939
|
-
.navigation-item-top-nav-child.navigation-item-side-nav-collapsed-with-label
|
940
|
-
)
|
916
|
+
:host(.navigation-item-top-nav-child.navigation-item-side-nav-collapsed-with-label)
|
941
917
|
.link,
|
942
|
-
:host(
|
943
|
-
.navigation-item-top-nav-child.navigation-item-side-nav-collapsed-with-label
|
944
|
-
)
|
918
|
+
:host(.navigation-item-top-nav-child.navigation-item-side-nav-collapsed-with-label)
|
945
919
|
::slotted(a) {
|
946
920
|
min-width: var(--navigation-group-item-min-width);
|
947
921
|
padding: var(--ic-space-xs) !important;
|
@@ -949,9 +923,7 @@ svg {
|
|
949
923
|
gap: 0;
|
950
924
|
}
|
951
925
|
|
952
|
-
:host(
|
953
|
-
.navigation-item-top-nav-child.navigation-item-side-nav-collapsed-with-label
|
954
|
-
)
|
926
|
+
:host(.navigation-item-top-nav-child.navigation-item-side-nav-collapsed-with-label)
|
955
927
|
::slotted(a) {
|
956
928
|
display: block;
|
957
929
|
}
|