@itwin/itwinui-react 3.2.0 → 3.2.2
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/CHANGELOG.md +12 -0
- package/LICENSE.md +1 -1
- package/README.md +6 -6
- package/cjs/core/Carousel/Carousel.d.ts +38 -2
- package/cjs/core/ComboBox/ComboBoxInput.js +5 -2
- package/cjs/core/Tile/Tile.d.ts +10 -10
- package/cjs/core/Tooltip/Tooltip.d.ts +4 -3
- package/cjs/styles.js +1 -417
- package/esm/core/Carousel/Carousel.d.ts +38 -2
- package/esm/core/ComboBox/ComboBoxInput.js +5 -2
- package/esm/core/Tile/Tile.d.ts +10 -10
- package/esm/core/Tooltip/Tooltip.d.ts +4 -3
- package/esm/styles.js +13 -416
- package/package.json +1 -1
- package/styles.css +15 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1763](https://github.com/iTwin/iTwinUI/pull/1763): Reduced bundle size by optimizing how CSS modules are handled internally.
|
|
8
|
+
|
|
9
|
+
## 3.2.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1760](https://github.com/iTwin/iTwinUI/pull/1760): Fixed `ComboBox` to correctly merge `inputProps.style` with internal styles.
|
|
14
|
+
|
|
3
15
|
## 3.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MIT License
|
|
2
2
|
|
|
3
|
-
Copyright © 2021-
|
|
3
|
+
Copyright © 2021-2024 Bentley Systems, Incorporated. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ The goal of this package is to provide React components that make it easier to u
|
|
|
32
32
|
## Installation
|
|
33
33
|
|
|
34
34
|
```
|
|
35
|
-
npm
|
|
35
|
+
npm add @itwin/itwinui-react
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
---
|
|
@@ -57,10 +57,10 @@ export default function App() {
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
ThemeProvider has a `theme` prop which accepts one of the following values:
|
|
60
|
-
- `light`
|
|
61
|
-
- `dark`
|
|
62
|
-
- `os` (respects the color scheme of the operating system)
|
|
63
|
-
- `inherit`
|
|
60
|
+
- `"light"`
|
|
61
|
+
- `"dark"`
|
|
62
|
+
- `"os"` (respects the color scheme of the operating system)
|
|
63
|
+
- `"inherit"` (default)
|
|
64
64
|
|
|
65
65
|
---
|
|
66
66
|
|
|
@@ -78,7 +78,7 @@ const Page = () => (
|
|
|
78
78
|
|
|
79
79
|
Check out this template for a live interactive demo:
|
|
80
80
|
|
|
81
|
-
[](https://stackblitz.
|
|
81
|
+
[](https://stackblitz.com/github/iTwin/iTwinUI/tree/main/minimal-sandbox?file=src/App.tsx)
|
|
82
82
|
|
|
83
83
|
---
|
|
84
84
|
|
|
@@ -71,7 +71,25 @@ export declare const Carousel: PolymorphicForwardRefComponent<"section", Carouse
|
|
|
71
71
|
ariaStrategy?: "label" | "description" | "none" | undefined;
|
|
72
72
|
id?: string | undefined;
|
|
73
73
|
}> & {
|
|
74
|
-
content: React.ReactNode;
|
|
74
|
+
content: React.ReactNode; /**
|
|
75
|
+
* The Carousel component consists of a set of slides, normally displayed one at a time. A navigation section is
|
|
76
|
+
* shown below the slides, consisting of "dots" and "previous"/"next" buttons, used for changing slides; this navigation
|
|
77
|
+
* section must be present _before_ the slides in DOM order, even though it is visually shown below the slides.
|
|
78
|
+
*
|
|
79
|
+
* The currently shown slide can also be changed using the left/right arrow keys or by dragging on a touch device.
|
|
80
|
+
*
|
|
81
|
+
* This component uses a composition approach so it should be used with the provided subcomponents.
|
|
82
|
+
*
|
|
83
|
+
* @example
|
|
84
|
+
* <Carousel>
|
|
85
|
+
* <Carousel.Navigation />
|
|
86
|
+
* <Carousel.Slider>
|
|
87
|
+
* <Carousel.Slide>...</Carousel.Slide>
|
|
88
|
+
* <Carousel.Slide>...</Carousel.Slide>
|
|
89
|
+
* <Carousel.Slide>...</Carousel.Slide>
|
|
90
|
+
* </Carousel.Slider>
|
|
91
|
+
* </Carousel>
|
|
92
|
+
*/
|
|
75
93
|
children?: React.ReactNode;
|
|
76
94
|
} & import("../utils/index.js").PortalProps & {
|
|
77
95
|
placement?: import("@floating-ui/utils").Placement | undefined;
|
|
@@ -134,7 +152,25 @@ export declare const Carousel: PolymorphicForwardRefComponent<"section", Carouse
|
|
|
134
152
|
ariaStrategy?: "label" | "description" | "none" | undefined;
|
|
135
153
|
id?: string | undefined;
|
|
136
154
|
}> & {
|
|
137
|
-
content: React.ReactNode;
|
|
155
|
+
content: React.ReactNode; /**
|
|
156
|
+
* The Carousel component consists of a set of slides, normally displayed one at a time. A navigation section is
|
|
157
|
+
* shown below the slides, consisting of "dots" and "previous"/"next" buttons, used for changing slides; this navigation
|
|
158
|
+
* section must be present _before_ the slides in DOM order, even though it is visually shown below the slides.
|
|
159
|
+
*
|
|
160
|
+
* The currently shown slide can also be changed using the left/right arrow keys or by dragging on a touch device.
|
|
161
|
+
*
|
|
162
|
+
* This component uses a composition approach so it should be used with the provided subcomponents.
|
|
163
|
+
*
|
|
164
|
+
* @example
|
|
165
|
+
* <Carousel>
|
|
166
|
+
* <Carousel.Navigation />
|
|
167
|
+
* <Carousel.Slider>
|
|
168
|
+
* <Carousel.Slide>...</Carousel.Slide>
|
|
169
|
+
* <Carousel.Slide>...</Carousel.Slide>
|
|
170
|
+
* <Carousel.Slide>...</Carousel.Slide>
|
|
171
|
+
* </Carousel.Slider>
|
|
172
|
+
* </Carousel>
|
|
173
|
+
*/
|
|
138
174
|
children?: React.ReactNode;
|
|
139
175
|
} & import("../utils/index.js").PortalProps & {
|
|
140
176
|
placement?: import("@floating-ui/utils").Placement | undefined;
|
|
@@ -34,7 +34,7 @@ const index_js_1 = require("../utils/index.js");
|
|
|
34
34
|
const ComboBoxMultipleContainer_js_1 = require("./ComboBoxMultipleContainer.js");
|
|
35
35
|
const helpers_js_1 = require("./helpers.js");
|
|
36
36
|
exports.ComboBoxInput = React.forwardRef((props, forwardedRef) => {
|
|
37
|
-
const { selectTags, size, ...rest } = props;
|
|
37
|
+
const { selectTags, size, style, ...rest } = props;
|
|
38
38
|
const { isOpen, id, focusedIndex, enableVirtualization, multiple, onClickHandler, popover, show, hide, } = (0, index_js_1.useSafeContext)(helpers_js_1.ComboBoxStateContext);
|
|
39
39
|
const dispatch = (0, index_js_1.useSafeContext)(helpers_js_1.ComboBoxActionContext);
|
|
40
40
|
const { inputRef, menuRef, optionsExtraInfoRef } = (0, index_js_1.useSafeContext)(helpers_js_1.ComboBoxRefsContext);
|
|
@@ -169,7 +169,10 @@ exports.ComboBoxInput = React.forwardRef((props, forwardedRef) => {
|
|
|
169
169
|
return (React.createElement(React.Fragment, null,
|
|
170
170
|
React.createElement(Input_js_1.Input, { ref: refs, "aria-expanded": isOpen, "aria-activedescendant": isOpen && focusedIndex != undefined && focusedIndex > -1
|
|
171
171
|
? getIdFromIndex(focusedIndex)
|
|
172
|
-
: undefined, role: 'combobox', "aria-controls": isOpen ? `${id}-list` : undefined, "aria-autocomplete": 'list', spellCheck: false, autoCapitalize: 'none', autoCorrect: 'off', style:
|
|
172
|
+
: undefined, role: 'combobox', "aria-controls": isOpen ? `${id}-list` : undefined, "aria-autocomplete": 'list', spellCheck: false, autoCapitalize: 'none', autoCorrect: 'off', style: {
|
|
173
|
+
...(multiple && { paddingInlineStart: tagContainerWidth + 18 }),
|
|
174
|
+
...style,
|
|
175
|
+
}, "aria-describedby": multiple ? `${id}-selected-live` : undefined, size: size, ...popover.getReferenceProps({
|
|
173
176
|
...rest,
|
|
174
177
|
onPointerDown: (0, index_js_1.mergeEventHandlers)(props.onPointerDown, handlePointerDown),
|
|
175
178
|
onClick: (0, index_js_1.mergeEventHandlers)(props.onClick, handleClick),
|
package/cjs/core/Tile/Tile.d.ts
CHANGED
|
@@ -260,7 +260,10 @@ export declare const Tile: PolymorphicForwardRefComponent<"div", TileLegacyProps
|
|
|
260
260
|
onVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
261
261
|
autoUpdateOptions?: {
|
|
262
262
|
ancestorScroll?: boolean | undefined;
|
|
263
|
-
ancestorResize?: boolean | undefined;
|
|
263
|
+
ancestorResize?: boolean | undefined; /**
|
|
264
|
+
* Display a loading state.
|
|
265
|
+
* @default false
|
|
266
|
+
*/
|
|
264
267
|
elementResize?: boolean | undefined;
|
|
265
268
|
animationFrame?: boolean | undefined;
|
|
266
269
|
layoutShift?: boolean | undefined;
|
|
@@ -275,10 +278,7 @@ export declare const Tile: PolymorphicForwardRefComponent<"div", TileLegacyProps
|
|
|
275
278
|
inline?: boolean | undefined;
|
|
276
279
|
} | undefined;
|
|
277
280
|
reference?: HTMLElement | null | undefined;
|
|
278
|
-
ariaStrategy?: "label" | "description" | "none" | undefined;
|
|
279
|
-
* Default tile variant or the folder layout.
|
|
280
|
-
* @default 'default'
|
|
281
|
-
*/
|
|
281
|
+
ariaStrategy?: "label" | "description" | "none" | undefined;
|
|
282
282
|
id?: string | undefined;
|
|
283
283
|
}> & {
|
|
284
284
|
content: React.ReactNode;
|
|
@@ -289,7 +289,10 @@ export declare const Tile: PolymorphicForwardRefComponent<"div", TileLegacyProps
|
|
|
289
289
|
onVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
290
290
|
autoUpdateOptions?: {
|
|
291
291
|
ancestorScroll?: boolean | undefined;
|
|
292
|
-
ancestorResize?: boolean | undefined;
|
|
292
|
+
ancestorResize?: boolean | undefined; /**
|
|
293
|
+
* Display a loading state.
|
|
294
|
+
* @default false
|
|
295
|
+
*/
|
|
293
296
|
elementResize?: boolean | undefined;
|
|
294
297
|
animationFrame?: boolean | undefined;
|
|
295
298
|
layoutShift?: boolean | undefined;
|
|
@@ -304,10 +307,7 @@ export declare const Tile: PolymorphicForwardRefComponent<"div", TileLegacyProps
|
|
|
304
307
|
inline?: boolean | undefined;
|
|
305
308
|
} | undefined;
|
|
306
309
|
reference?: HTMLElement | null | undefined;
|
|
307
|
-
ariaStrategy?: "label" | "description" | "none" | undefined;
|
|
308
|
-
* Default tile variant or the folder layout.
|
|
309
|
-
* @default 'default'
|
|
310
|
-
*/
|
|
310
|
+
ariaStrategy?: "label" | "description" | "none" | undefined;
|
|
311
311
|
id?: string | undefined;
|
|
312
312
|
} & {
|
|
313
313
|
as?: "div" | undefined;
|
|
@@ -20,9 +20,9 @@ type TooltipOptions = {
|
|
|
20
20
|
* autoUpdate options that recalculates position
|
|
21
21
|
* to ensure the floating element remains anchored
|
|
22
22
|
* to its reference element, such as when scrolling
|
|
23
|
-
* and resizing the screen
|
|
23
|
+
* and resizing the screen.
|
|
24
24
|
*
|
|
25
|
-
* https://floating-ui.com/docs/autoUpdate#options
|
|
25
|
+
* @see [floating-ui docs](https://floating-ui.com/docs/autoUpdate#options)
|
|
26
26
|
*/
|
|
27
27
|
autoUpdateOptions?: {
|
|
28
28
|
ancestorScroll?: boolean;
|
|
@@ -36,7 +36,8 @@ type TooltipOptions = {
|
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
38
38
|
* Tooltip middleware options.
|
|
39
|
-
*
|
|
39
|
+
*
|
|
40
|
+
* @see [floating-ui docs](https://floating-ui.com/docs/middleware)
|
|
40
41
|
*/
|
|
41
42
|
middleware?: {
|
|
42
43
|
offset?: number;
|
package/cjs/styles.js
CHANGED
|
@@ -1,417 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
const closeAnimation = "_iui3-closeAnimation";
|
|
3
|
-
const pulse = "_iui3-pulse";
|
|
4
|
-
const styles = {
|
|
5
|
-
"iui-root": "_iui3-root",
|
|
6
|
-
"iui-root-background": "_iui3-root-background",
|
|
7
|
-
"iui-alert": "_iui3-alert",
|
|
8
|
-
"iui-alert-link": "_iui3-alert-link",
|
|
9
|
-
"iui-button": "_iui3-button",
|
|
10
|
-
"iui-alert-message": "_iui3-alert-message",
|
|
11
|
-
"iui-anchor": "_iui3-anchor",
|
|
12
|
-
"iui-anchor-external": "_iui3-anchor-external",
|
|
13
|
-
"iui-avatar": "_iui3-avatar",
|
|
14
|
-
"iui-avatar-count": "_iui3-avatar-count",
|
|
15
|
-
"iui-small": "_iui3-small",
|
|
16
|
-
"iui-large": "_iui3-large",
|
|
17
|
-
"iui-x-large": "_iui3-x-large",
|
|
18
|
-
"iui-avatar-list": "_iui3-avatar-list",
|
|
19
|
-
"iui-stacked": "_iui3-stacked",
|
|
20
|
-
"iui-animated": "_iui3-animated",
|
|
21
|
-
"iui-backdrop": "_iui3-backdrop",
|
|
22
|
-
"iui-backdrop-visible": "_iui3-backdrop-visible",
|
|
23
|
-
"iui-backdrop-fixed": "_iui3-backdrop-fixed",
|
|
24
|
-
"iui-badge": "_iui3-badge",
|
|
25
|
-
"iui-blockquote": "_iui3-blockquote",
|
|
26
|
-
"iui-breadcrumbs": "_iui3-breadcrumbs",
|
|
27
|
-
"iui-breadcrumbs-list": "_iui3-breadcrumbs-list",
|
|
28
|
-
"iui-breadcrumbs-item": "_iui3-breadcrumbs-item",
|
|
29
|
-
"iui-breadcrumbs-content": "_iui3-breadcrumbs-content",
|
|
30
|
-
"iui-breadcrumbs-separator": "_iui3-breadcrumbs-separator",
|
|
31
|
-
"iui-button-icon": "_iui3-button-icon",
|
|
32
|
-
"iui-button-dropdown": "_iui3-button-dropdown",
|
|
33
|
-
"iui-button-split": "_iui3-button-split",
|
|
34
|
-
"iui-button-group": "_iui3-button-group",
|
|
35
|
-
"iui-input-flex-container": "_iui3-input-flex-container",
|
|
36
|
-
"iui-input": "_iui3-input",
|
|
37
|
-
"iui-disabled": "_iui3-disabled",
|
|
38
|
-
"iui-button-group-overflow-x": "_iui3-button-group-overflow-x",
|
|
39
|
-
"iui-carousel": "_iui3-carousel",
|
|
40
|
-
"iui-carousel-slider": "_iui3-carousel-slider",
|
|
41
|
-
"iui-carousel-slider-item": "_iui3-carousel-slider-item",
|
|
42
|
-
"iui-carousel-navigation": "_iui3-carousel-navigation",
|
|
43
|
-
"iui-carousel-navigation-left": "_iui3-carousel-navigation-left",
|
|
44
|
-
"iui-carousel-navigation-right": "_iui3-carousel-navigation-right",
|
|
45
|
-
"iui-carousel-navigation-dots": "_iui3-carousel-navigation-dots",
|
|
46
|
-
"iui-carousel-navigation-dot": "_iui3-carousel-navigation-dot",
|
|
47
|
-
"iui-first": "_iui3-first",
|
|
48
|
-
"iui-second": "_iui3-second",
|
|
49
|
-
"iui-active": "_iui3-active",
|
|
50
|
-
"iui-checkbox-wrapper": "_iui3-checkbox-wrapper",
|
|
51
|
-
"iui-loading": "_iui3-loading",
|
|
52
|
-
"iui-checkbox-label": "_iui3-checkbox-label",
|
|
53
|
-
"iui-radio-label": "_iui3-radio-label",
|
|
54
|
-
"iui-positive": "_iui3-positive",
|
|
55
|
-
"iui-warning": "_iui3-warning",
|
|
56
|
-
"iui-negative": "_iui3-negative",
|
|
57
|
-
"iui-checkbox": "_iui3-checkbox",
|
|
58
|
-
"iui-checkbox-visibility": "_iui3-checkbox-visibility",
|
|
59
|
-
"iui-code": "_iui3-code",
|
|
60
|
-
"iui-codeblock": "_iui3-codeblock",
|
|
61
|
-
"iui-title-bar": "_iui3-title-bar",
|
|
62
|
-
"iui-title": "_iui3-title",
|
|
63
|
-
"iui-codeblock-content": "_iui3-codeblock-content",
|
|
64
|
-
"iui-color-picker": "_iui3-color-picker",
|
|
65
|
-
"iui-color-swatch": "_iui3-color-swatch",
|
|
66
|
-
"iui-color-palette": "_iui3-color-palette",
|
|
67
|
-
"iui-color-palette-wrapper": "_iui3-color-palette-wrapper",
|
|
68
|
-
"iui-color-input": "_iui3-color-input",
|
|
69
|
-
"iui-color-input-wrapper": "_iui3-color-input-wrapper",
|
|
70
|
-
"iui-color-input-fields": "_iui3-color-input-fields",
|
|
71
|
-
"iui-color-picker-section-label": "_iui3-color-picker-section-label",
|
|
72
|
-
"iui-color-selection-wrapper": "_iui3-color-selection-wrapper",
|
|
73
|
-
"iui-color-field": "_iui3-color-field",
|
|
74
|
-
"iui-hue-slider": "_iui3-hue-slider",
|
|
75
|
-
"iui-slider": "_iui3-slider",
|
|
76
|
-
"iui-opacity-slider": "_iui3-opacity-slider",
|
|
77
|
-
"iui-color-dot": "_iui3-color-dot",
|
|
78
|
-
"iui-date-picker": "_iui3-date-picker",
|
|
79
|
-
"iui-time-picker": "_iui3-time-picker",
|
|
80
|
-
"iui-calendar-month-year": "_iui3-calendar-month-year",
|
|
81
|
-
"iui-calendar-month": "_iui3-calendar-month",
|
|
82
|
-
"iui-calendar-weekdays": "_iui3-calendar-weekdays",
|
|
83
|
-
"iui-calendar-week": "_iui3-calendar-week",
|
|
84
|
-
"iui-calendar-day": "_iui3-calendar-day",
|
|
85
|
-
"iui-calendar-day-today": "_iui3-calendar-day-today",
|
|
86
|
-
"iui-calendar-day-selected": "_iui3-calendar-day-selected",
|
|
87
|
-
"iui-calendar-day-selected-today": "_iui3-calendar-day-selected-today",
|
|
88
|
-
"iui-calendar-day-outside-month": "_iui3-calendar-day-outside-month",
|
|
89
|
-
"iui-calendar-day-outside-month-today": "_iui3-calendar-day-outside-month-today",
|
|
90
|
-
"iui-calendar-day-range-start": "_iui3-calendar-day-range-start",
|
|
91
|
-
"iui-calendar-day-range-start-today": "_iui3-calendar-day-range-start-today",
|
|
92
|
-
"iui-calendar-day-range-end": "_iui3-calendar-day-range-end",
|
|
93
|
-
"iui-calendar-day-range-end-today": "_iui3-calendar-day-range-end-today",
|
|
94
|
-
"iui-calendar-day-range": "_iui3-calendar-day-range",
|
|
95
|
-
"iui-calendar-day-range-today": "_iui3-calendar-day-range-today",
|
|
96
|
-
"iui-dialog-wrapper": "_iui3-dialog-wrapper",
|
|
97
|
-
"iui-dialog": "_iui3-dialog",
|
|
98
|
-
"iui-dialog-content": "_iui3-dialog-content",
|
|
99
|
-
"iui-dialog-visible": "_iui3-dialog-visible",
|
|
100
|
-
"iui-dialog-default": "_iui3-dialog-default",
|
|
101
|
-
"iui-dialog-full-page": "_iui3-dialog-full-page",
|
|
102
|
-
"iui-dialog-draggable": "_iui3-dialog-draggable",
|
|
103
|
-
"iui-dialog-animation-enter": "_iui3-dialog-animation-enter",
|
|
104
|
-
"iui-dialog-animation-enter-active": "_iui3-dialog-animation-enter-active",
|
|
105
|
-
"iui-dialog-title": "_iui3-dialog-title",
|
|
106
|
-
"iui-dialog-title-bar": "_iui3-dialog-title-bar",
|
|
107
|
-
"iui-dialog-title-bar-filled": "_iui3-dialog-title-bar-filled",
|
|
108
|
-
"iui-dialog-button-bar": "_iui3-dialog-button-bar",
|
|
109
|
-
"iui-expandable-block": "_iui3-expandable-block",
|
|
110
|
-
"iui-expandable-header": "_iui3-expandable-header",
|
|
111
|
-
"iui-expandable-block-icon": "_iui3-expandable-block-icon",
|
|
112
|
-
"iui-expandable-block-label": "_iui3-expandable-block-label",
|
|
113
|
-
"iui-expandable-block-title": "_iui3-expandable-block-title",
|
|
114
|
-
"iui-expandable-block-caption": "_iui3-expandable-block-caption",
|
|
115
|
-
"iui-expandable-content": "_iui3-expandable-content",
|
|
116
|
-
"iui-fieldset": "_iui3-fieldset",
|
|
117
|
-
"iui-file-upload": "_iui3-file-upload",
|
|
118
|
-
"iui-content": "_iui3-content",
|
|
119
|
-
"iui-browse-input": "_iui3-browse-input",
|
|
120
|
-
"iui-template-icon": "_iui3-template-icon",
|
|
121
|
-
"iui-template-text": "_iui3-template-text",
|
|
122
|
-
"iui-drag": "_iui3-drag",
|
|
123
|
-
"iui-file-upload-template": "_iui3-file-upload-template",
|
|
124
|
-
"iui-file-card": "_iui3-file-card",
|
|
125
|
-
"iui-file-card-icon": "_iui3-file-card-icon",
|
|
126
|
-
"iui-file-card-text": "_iui3-file-card-text",
|
|
127
|
-
"iui-file-card-title": "_iui3-file-card-title",
|
|
128
|
-
"iui-file-card-description": "_iui3-file-card-description",
|
|
129
|
-
"iui-file-card-action": "_iui3-file-card-action",
|
|
130
|
-
"iui-file-card-empty": "_iui3-file-card-empty",
|
|
131
|
-
"iui-file-card-empty-icon": "_iui3-file-card-empty-icon",
|
|
132
|
-
"iui-file-card-empty-action": "_iui3-file-card-empty-action",
|
|
133
|
-
"iui-legal-footer": "_iui3-legal-footer",
|
|
134
|
-
"iui-legal-footer-list": "_iui3-legal-footer-list",
|
|
135
|
-
"iui-legal-footer-item": "_iui3-legal-footer-item",
|
|
136
|
-
"iui-legal-footer-separator": "_iui3-legal-footer-separator",
|
|
137
|
-
"iui-legal-footer-developer": "_iui3-legal-footer-developer",
|
|
138
|
-
"iui-page-header": "_iui3-page-header",
|
|
139
|
-
"iui-page-header-left": "_iui3-page-header-left",
|
|
140
|
-
"iui-page-header-center": "_iui3-page-header-center",
|
|
141
|
-
"iui-page-header-right": "_iui3-page-header-right",
|
|
142
|
-
"iui-page-header-divider": "_iui3-page-header-divider",
|
|
143
|
-
"iui-header-breadcrumbs": "_iui3-header-breadcrumbs",
|
|
144
|
-
"iui-header-brand": "_iui3-header-brand",
|
|
145
|
-
"iui-header-brand-icon": "_iui3-header-brand-icon",
|
|
146
|
-
"iui-header-brand-label": "_iui3-header-brand-label",
|
|
147
|
-
"iui-header-breadcrumbs-list": "_iui3-header-breadcrumbs-list",
|
|
148
|
-
"iui-header-breadcrumb-button": "_iui3-header-breadcrumb-button",
|
|
149
|
-
"iui-header-breadcrumb-button-split": "_iui3-header-breadcrumb-button-split",
|
|
150
|
-
"iui-header-breadcrumb-item": "_iui3-header-breadcrumb-item",
|
|
151
|
-
"iui-header-breadcrumb-button-wrapper": "_iui3-header-breadcrumb-button-wrapper",
|
|
152
|
-
"iui-header-breadcrumb-button-icon": "_iui3-header-breadcrumb-button-icon",
|
|
153
|
-
"iui-header-breadcrumb-button-dropdown-icon": "_iui3-header-breadcrumb-button-dropdown-icon",
|
|
154
|
-
"iui-header-breadcrumb-button-text": "_iui3-header-breadcrumb-button-text",
|
|
155
|
-
"iui-header-breadcrumb-button-text-label": "_iui3-header-breadcrumb-button-text-label",
|
|
156
|
-
"iui-header-breadcrumb-button-text-sublabel": "_iui3-header-breadcrumb-button-text-sublabel",
|
|
157
|
-
"iui-information-panel-wrapper": "_iui3-information-panel-wrapper",
|
|
158
|
-
"iui-information-panel": "_iui3-information-panel",
|
|
159
|
-
"iui-resizer": "_iui3-resizer",
|
|
160
|
-
"iui-resizer-bar": "_iui3-resizer-bar",
|
|
161
|
-
"iui-information-header": "_iui3-information-header",
|
|
162
|
-
"iui-information-body": "_iui3-information-body",
|
|
163
|
-
"iui-information-header-label": "_iui3-information-header-label",
|
|
164
|
-
"iui-information-header-actions": "_iui3-information-header-actions",
|
|
165
|
-
"iui-right": "_iui3-right",
|
|
166
|
-
"iui-bottom": "_iui3-bottom",
|
|
167
|
-
"iui-visible": "_iui3-visible",
|
|
168
|
-
"iui-information-body-content": "_iui3-information-body-content",
|
|
169
|
-
"iui-input-label": "_iui3-input-label",
|
|
170
|
-
"iui-inline": "_iui3-inline",
|
|
171
|
-
"iui-input-with-icon": "_iui3-input-with-icon",
|
|
172
|
-
"iui-select-tag-container": "_iui3-select-tag-container",
|
|
173
|
-
"iui-end-icon": "_iui3-end-icon",
|
|
174
|
-
"iui-open": "_iui3-open",
|
|
175
|
-
"iui-input-grid": "_iui3-input-grid",
|
|
176
|
-
"iui-required": "_iui3-required",
|
|
177
|
-
"iui-input-group": "_iui3-input-group",
|
|
178
|
-
"iui-status-message": "_iui3-status-message",
|
|
179
|
-
"iui-select-button": "_iui3-select-button",
|
|
180
|
-
"iui-input-group-wrapper": "_iui3-input-group-wrapper",
|
|
181
|
-
"iui-toggle-switch-wrapper": "_iui3-toggle-switch-wrapper",
|
|
182
|
-
"iui-radio-wrapper": "_iui3-radio-wrapper",
|
|
183
|
-
"iui-keyboard": "_iui3-keyboard",
|
|
184
|
-
"iui-list": "_iui3-list",
|
|
185
|
-
"iui-menu": "_iui3-menu",
|
|
186
|
-
"iui-header-menu-icon": "_iui3-header-menu-icon",
|
|
187
|
-
"iui-list-item": "_iui3-list-item",
|
|
188
|
-
"iui-menu-item-skeleton": "_iui3-menu-item-skeleton",
|
|
189
|
-
"iui-menu-item": "_iui3-menu-item",
|
|
190
|
-
"iui-link-action": "_iui3-link-action",
|
|
191
|
-
"iui-focused": "_iui3-focused",
|
|
192
|
-
"iui-icon": "_iui3-icon",
|
|
193
|
-
"iui-list-item-icon": "_iui3-list-item-icon",
|
|
194
|
-
"iui-menu-label": "_iui3-menu-label",
|
|
195
|
-
"iui-menu-description": "_iui3-menu-description",
|
|
196
|
-
"iui-menu-content": "_iui3-menu-content",
|
|
197
|
-
"iui-list-item-content": "_iui3-list-item-content",
|
|
198
|
-
"iui-list-item-description": "_iui3-list-item-description",
|
|
199
|
-
"iui-menu-divider": "_iui3-menu-divider",
|
|
200
|
-
"iui-non-ideal-state": "_iui3-non-ideal-state",
|
|
201
|
-
"iui-non-ideal-state-illustration": "_iui3-non-ideal-state-illustration",
|
|
202
|
-
"iui-non-ideal-state-title": "_iui3-non-ideal-state-title",
|
|
203
|
-
"iui-non-ideal-state-description": "_iui3-non-ideal-state-description",
|
|
204
|
-
"iui-non-ideal-state-actions": "_iui3-non-ideal-state-actions",
|
|
205
|
-
"iui-overlay": "_iui3-overlay",
|
|
206
|
-
"iui-progress-indicator-linear": "_iui3-progress-indicator-linear",
|
|
207
|
-
"iui-overlay-wrapper": "_iui3-overlay-wrapper",
|
|
208
|
-
"iui-overlay-exiting": "_iui3-overlay-exiting",
|
|
209
|
-
closeAnimation,
|
|
210
|
-
"iui-progress-indicator-radial": "_iui3-progress-indicator-radial",
|
|
211
|
-
"iui-ud082cf": "_iui3-ud082cf",
|
|
212
|
-
"iui-progress-indicator-linear-label": "_iui3-progress-indicator-linear-label",
|
|
213
|
-
"iui-ud082df": "_iui3-ud082df",
|
|
214
|
-
"iui-radio": "_iui3-radio",
|
|
215
|
-
"iui-radio-tile": "_iui3-radio-tile",
|
|
216
|
-
"iui-radio-tile-icon": "_iui3-radio-tile-icon",
|
|
217
|
-
"iui-radio-tile-container": "_iui3-radio-tile-container",
|
|
218
|
-
"iui-radio-tile-input": "_iui3-radio-tile-input",
|
|
219
|
-
"iui-radio-tile-label": "_iui3-radio-tile-label",
|
|
220
|
-
"iui-radio-tile-sublabel": "_iui3-radio-tile-sublabel",
|
|
221
|
-
"iui-searchbox": "_iui3-searchbox",
|
|
222
|
-
"iui-expandable-searchbox": "_iui3-expandable-searchbox",
|
|
223
|
-
"iui-searchbox-open-button": "_iui3-searchbox-open-button",
|
|
224
|
-
"iui-search-icon": "_iui3-search-icon",
|
|
225
|
-
"iui-search-input": "_iui3-search-input",
|
|
226
|
-
"iui-placeholder": "_iui3-placeholder",
|
|
227
|
-
"iui-select-tag": "_iui3-select-tag",
|
|
228
|
-
"iui-select-tag-label": "_iui3-select-tag-label",
|
|
229
|
-
"iui-select-tag-button": "_iui3-select-tag-button",
|
|
230
|
-
"iui-select-tag-button-icon": "_iui3-select-tag-button-icon",
|
|
231
|
-
"iui-side-navigation": "_iui3-side-navigation",
|
|
232
|
-
"iui-sidenav-content": "_iui3-sidenav-content",
|
|
233
|
-
"iui-top": "_iui3-top",
|
|
234
|
-
"iui-sidenav-button": "_iui3-sidenav-button",
|
|
235
|
-
"iui-expand": "_iui3-expand",
|
|
236
|
-
"iui-collapsed": "_iui3-collapsed",
|
|
237
|
-
"iui-expanded": "_iui3-expanded",
|
|
238
|
-
"iui-submenu-open": "_iui3-submenu-open",
|
|
239
|
-
"iui-side-navigation-submenu": "_iui3-side-navigation-submenu",
|
|
240
|
-
"iui-enter": "_iui3-enter",
|
|
241
|
-
"iui-enter-active": "_iui3-enter-active",
|
|
242
|
-
"iui-exit": "_iui3-exit",
|
|
243
|
-
"iui-exit-active": "_iui3-exit-active",
|
|
244
|
-
"iui-side-navigation-submenu-content": "_iui3-side-navigation-submenu-content",
|
|
245
|
-
"iui-side-navigation-submenu-header": "_iui3-side-navigation-submenu-header",
|
|
246
|
-
"iui-side-navigation-submenu-header-label": "_iui3-side-navigation-submenu-header-label",
|
|
247
|
-
"iui-side-navigation-submenu-header-actions": "_iui3-side-navigation-submenu-header-actions",
|
|
248
|
-
"iui-side-navigation-wrapper": "_iui3-side-navigation-wrapper",
|
|
249
|
-
"iui-skip-to-content-link": "_iui3-skip-to-content-link",
|
|
250
|
-
"iui-slider-container": "_iui3-slider-container",
|
|
251
|
-
"iui-slider-min": "_iui3-slider-min",
|
|
252
|
-
"iui-slider-max": "_iui3-slider-max",
|
|
253
|
-
"iui-slider-ticks": "_iui3-slider-ticks",
|
|
254
|
-
"iui-slider-tick": "_iui3-slider-tick",
|
|
255
|
-
"iui-slider-track": "_iui3-slider-track",
|
|
256
|
-
"iui-slider-thumb": "_iui3-slider-thumb",
|
|
257
|
-
"iui-grabbing": "_iui3-grabbing",
|
|
258
|
-
"iui-stepper": "_iui3-stepper",
|
|
259
|
-
"iui-stepper-step": "_iui3-stepper-step",
|
|
260
|
-
"iui-current": "_iui3-current",
|
|
261
|
-
"iui-clickable": "_iui3-clickable",
|
|
262
|
-
"iui-stepper-circle": "_iui3-stepper-circle",
|
|
263
|
-
"iui-stepper-track-content": "_iui3-stepper-track-content",
|
|
264
|
-
"iui-stepper-step-name": "_iui3-stepper-step-name",
|
|
265
|
-
"iui-stepper-steps-label": "_iui3-stepper-steps-label",
|
|
266
|
-
"iui-stepper-steps-label-count": "_iui3-stepper-steps-label-count",
|
|
267
|
-
"iui-surface": "_iui3-surface",
|
|
268
|
-
"iui-surface-body": "_iui3-surface-body",
|
|
269
|
-
"iui-surface-header": "_iui3-surface-header",
|
|
270
|
-
"iui-popover-surface": "_iui3-popover-surface",
|
|
271
|
-
"iui-table": "_iui3-table",
|
|
272
|
-
"iui-table-cell-end-icon": "_iui3-table-cell-end-icon",
|
|
273
|
-
"iui-table-cell-start-icon": "_iui3-table-cell-start-icon",
|
|
274
|
-
"iui-table-header": "_iui3-table-header",
|
|
275
|
-
"iui-table-cell": "_iui3-table-cell",
|
|
276
|
-
"iui-table-paginator": "_iui3-table-paginator",
|
|
277
|
-
"iui-table-body": "_iui3-table-body",
|
|
278
|
-
"iui-table-header-wrapper": "_iui3-table-header-wrapper",
|
|
279
|
-
"iui-slot": "_iui3-slot",
|
|
280
|
-
"iui-actionable": "_iui3-actionable",
|
|
281
|
-
"iui-table-filter-button": "_iui3-table-filter-button",
|
|
282
|
-
"iui-table-resizer": "_iui3-table-resizer",
|
|
283
|
-
"iui-table-resizer-bar": "_iui3-table-resizer-bar",
|
|
284
|
-
"iui-table-sort": "_iui3-table-sort",
|
|
285
|
-
"iui-table-reorder-bar": "_iui3-table-reorder-bar",
|
|
286
|
-
"iui-table-reorder-column-right": "_iui3-table-reorder-column-right",
|
|
287
|
-
"iui-table-reorder-column-left": "_iui3-table-reorder-column-left",
|
|
288
|
-
"iui-sorted": "_iui3-sorted",
|
|
289
|
-
"iui-table-row": "_iui3-table-row",
|
|
290
|
-
"iui-table-more-options": "_iui3-table-more-options",
|
|
291
|
-
"iui-table-row-expander": "_iui3-table-row-expander",
|
|
292
|
-
"iui-table-row-expanded": "_iui3-table-row-expanded",
|
|
293
|
-
"iui-table-expanded-content": "_iui3-table-expanded-content",
|
|
294
|
-
"iui-new": "_iui3-new",
|
|
295
|
-
"iui-main-column": "_iui3-main-column",
|
|
296
|
-
"iui-table-header-actions-container": "_iui3-table-header-actions-container",
|
|
297
|
-
"iui-scroll-snapping": "_iui3-scroll-snapping",
|
|
298
|
-
"iui-zebra-striping": "_iui3-zebra-striping",
|
|
299
|
-
"iui-table-empty": "_iui3-table-empty",
|
|
300
|
-
"iui-table-cell-sticky": "_iui3-table-cell-sticky",
|
|
301
|
-
"iui-table-cell-shadow-left": "_iui3-table-cell-shadow-left",
|
|
302
|
-
"iui-table-cell-shadow-right": "_iui3-table-cell-shadow-right",
|
|
303
|
-
"iui-left": "_iui3-left",
|
|
304
|
-
"iui-center": "_iui3-center",
|
|
305
|
-
"iui-table-paginator-page-size-label": "_iui3-table-paginator-page-size-label",
|
|
306
|
-
"iui-table-paginator-ellipsis": "_iui3-table-paginator-ellipsis",
|
|
307
|
-
"iui-table-paginator-ellipsis-small": "_iui3-table-paginator-ellipsis-small",
|
|
308
|
-
"iui-table-paginator-pages-group": "_iui3-table-paginator-pages-group",
|
|
309
|
-
"iui-table-paginator-page-button": "_iui3-table-paginator-page-button",
|
|
310
|
-
"iui-table-paginator-page-button-small": "_iui3-table-paginator-page-button-small",
|
|
311
|
-
"iui-table-column-filter": "_iui3-table-column-filter",
|
|
312
|
-
"iui-button-bar": "_iui3-button-bar",
|
|
313
|
-
"iui-tabs-wrapper": "_iui3-tabs-wrapper",
|
|
314
|
-
"iui-horizontal": "_iui3-horizontal",
|
|
315
|
-
"iui-tabs": "_iui3-tabs",
|
|
316
|
-
"scroll-shadow-inset-horizontal": "_iui3-scroll-shadow-inset-horizontal",
|
|
317
|
-
"iui-borderless": "_iui3-borderless",
|
|
318
|
-
"iui-tab": "_iui3-tab",
|
|
319
|
-
"iui-vertical": "_iui3-vertical",
|
|
320
|
-
"scroll-shadow-inset-vertical": "_iui3-scroll-shadow-inset-vertical",
|
|
321
|
-
"iui-tabs-content": "_iui3-tabs-content",
|
|
322
|
-
"iui-tabs-actions-wrapper": "_iui3-tabs-actions-wrapper",
|
|
323
|
-
"iui-default": "_iui3-default",
|
|
324
|
-
"iui-tabs-actions": "_iui3-tabs-actions",
|
|
325
|
-
"iui-tab-icon": "_iui3-tab-icon",
|
|
326
|
-
"iui-tab-description": "_iui3-tab-description",
|
|
327
|
-
"iui-tab-label": "_iui3-tab-label",
|
|
328
|
-
"iui-green": "_iui3-green",
|
|
329
|
-
"iui-pill": "_iui3-pill",
|
|
330
|
-
"iui-not-animated": "_iui3-not-animated",
|
|
331
|
-
"iui-tag": "_iui3-tag",
|
|
332
|
-
"iui-tag-basic": "_iui3-tag-basic",
|
|
333
|
-
"iui-tag-label": "_iui3-tag-label",
|
|
334
|
-
"iui-tag-button": "_iui3-tag-button",
|
|
335
|
-
"iui-tag-container": "_iui3-tag-container",
|
|
336
|
-
"iui-truncate": "_iui3-truncate",
|
|
337
|
-
"iui-scroll": "_iui3-scroll",
|
|
338
|
-
"iui-text-headline": "_iui3-text-headline",
|
|
339
|
-
"iui-text-title": "_iui3-text-title",
|
|
340
|
-
"iui-text-subheading": "_iui3-text-subheading",
|
|
341
|
-
"iui-text-leading": "_iui3-text-leading",
|
|
342
|
-
"iui-text-block": "_iui3-text-block",
|
|
343
|
-
"iui-text-small": "_iui3-text-small",
|
|
344
|
-
"iui-text-muted": "_iui3-text-muted",
|
|
345
|
-
"iui-skeleton": "_iui3-skeleton",
|
|
346
|
-
"skeleton-shimmer": "_iui3-skeleton-shimmer",
|
|
347
|
-
"iui-text-spacing": "_iui3-text-spacing",
|
|
348
|
-
"iui-tile": "_iui3-tile",
|
|
349
|
-
"iui-folder": "_iui3-folder",
|
|
350
|
-
"iui-tile-thumbnail": "_iui3-tile-thumbnail",
|
|
351
|
-
"iui-tile-name": "_iui3-tile-name",
|
|
352
|
-
"iui-tile-more-options": "_iui3-tile-more-options",
|
|
353
|
-
"iui-tile-metadata": "_iui3-tile-metadata",
|
|
354
|
-
"iui-tile-description": "_iui3-tile-description",
|
|
355
|
-
"iui-thumbnail-icon": "_iui3-thumbnail-icon",
|
|
356
|
-
"iui-tile-thumbnail-picture": "_iui3-tile-thumbnail-picture",
|
|
357
|
-
"iui-selected": "_iui3-selected",
|
|
358
|
-
"iui-tile-content": "_iui3-tile-content",
|
|
359
|
-
"iui-tile-thumbnail-type-indicator": "_iui3-tile-thumbnail-type-indicator",
|
|
360
|
-
"iui-tile-thumbnail-quick-action": "_iui3-tile-thumbnail-quick-action",
|
|
361
|
-
"iui-tile-thumbnail-badge-container": "_iui3-tile-thumbnail-badge-container",
|
|
362
|
-
"iui-tile-buttons": "_iui3-tile-buttons",
|
|
363
|
-
"iui-tile-name-label": "_iui3-tile-name-label",
|
|
364
|
-
"iui-tile-metadata-icon": "_iui3-tile-metadata-icon",
|
|
365
|
-
"iui-tile-status-icon": "_iui3-tile-status-icon",
|
|
366
|
-
"iui-time": "_iui3-time",
|
|
367
|
-
"iui-period": "_iui3-period",
|
|
368
|
-
"iui-toast-wrapper": "_iui3-toast-wrapper",
|
|
369
|
-
"iui-toast-all": "_iui3-toast-all",
|
|
370
|
-
"iui-placement-top": "_iui3-placement-top",
|
|
371
|
-
"iui-placement-top-start": "_iui3-placement-top-start",
|
|
372
|
-
"iui-placement-top-end": "_iui3-placement-top-end",
|
|
373
|
-
"iui-placement-bottom": "_iui3-placement-bottom",
|
|
374
|
-
"iui-toast": "_iui3-toast",
|
|
375
|
-
"iui-placement-bottom-start": "_iui3-placement-bottom-start",
|
|
376
|
-
"iui-placement-bottom-end": "_iui3-placement-bottom-end",
|
|
377
|
-
"iui-status-area": "_iui3-status-area",
|
|
378
|
-
"iui-message": "_iui3-message",
|
|
379
|
-
"iui-toast-anchor": "_iui3-toast-anchor",
|
|
380
|
-
"iui-informational": "_iui3-informational",
|
|
381
|
-
"iui-label-on-left": "_iui3-label-on-left",
|
|
382
|
-
"iui-label-on-right": "_iui3-label-on-right",
|
|
383
|
-
"iui-toggle-switch-icon": "_iui3-toggle-switch-icon",
|
|
384
|
-
"iui-toggle-switch": "_iui3-toggle-switch",
|
|
385
|
-
"iui-toggle-switch-label": "_iui3-toggle-switch-label",
|
|
386
|
-
"iui-tooltip": "_iui3-tooltip",
|
|
387
|
-
"iui-transfer-list-wrapper": "_iui3-transfer-list-wrapper",
|
|
388
|
-
"iui-transfer-list-listbox-wrapper": "_iui3-transfer-list-listbox-wrapper",
|
|
389
|
-
"iui-transfer-list-listbox": "_iui3-transfer-list-listbox",
|
|
390
|
-
"iui-transfer-list-toolbar": "_iui3-transfer-list-toolbar",
|
|
391
|
-
"iui-tree": "_iui3-tree",
|
|
392
|
-
"iui-sub-tree": "_iui3-sub-tree",
|
|
393
|
-
"iui-tree-item": "_iui3-tree-item",
|
|
394
|
-
"iui-tree-node": "_iui3-tree-node",
|
|
395
|
-
"iui-tree-node-checkbox": "_iui3-tree-node-checkbox",
|
|
396
|
-
"iui-tree-node-content": "_iui3-tree-node-content",
|
|
397
|
-
"iui-tree-node-content-icon": "_iui3-tree-node-content-icon",
|
|
398
|
-
"iui-tree-node-content-expander-icon": "_iui3-tree-node-content-expander-icon",
|
|
399
|
-
"iui-tree-node-content-expander-icon-expanded": "_iui3-tree-node-content-expander-icon-expanded",
|
|
400
|
-
"iui-tree-node-content-label": "_iui3-tree-node-content-label",
|
|
401
|
-
"iui-tree-node-content-title": "_iui3-tree-node-content-title",
|
|
402
|
-
"iui-tree-node-content-caption": "_iui3-tree-node-content-caption",
|
|
403
|
-
"iui-button-base": "_iui3-button-base",
|
|
404
|
-
"iui-svg-icon": "_iui3-svg-icon",
|
|
405
|
-
"iui-notification-marker": "_iui3-notification-marker",
|
|
406
|
-
pulse,
|
|
407
|
-
"iui-divider": "_iui3-divider",
|
|
408
|
-
"iui-flex": "_iui3-flex",
|
|
409
|
-
"iui-flex-spacer": "_iui3-flex-spacer",
|
|
410
|
-
"iui-flex-item": "_iui3-flex-item",
|
|
411
|
-
"iui-visually-hidden": "_iui3-visually-hidden",
|
|
412
|
-
"iui-link-box": "_iui3-link-box",
|
|
413
|
-
"iui-workflow-diagram": "_iui3-workflow-diagram",
|
|
414
|
-
"iui-workflow-diagram-step": "_iui3-workflow-diagram-step",
|
|
415
|
-
"iui-workflow-diagram-content": "_iui3-workflow-diagram-content"
|
|
416
|
-
};
|
|
417
|
-
module.exports = styles;
|
|
1
|
+
"use strict";const t=new Proxy({},{get(e,i){if(typeof i=="string"&&i.startsWith("iui-"))return i.replace("iui-","_iui3-")},has(e,i){return typeof i=="string"&&i.startsWith("iui-")}});module.exports=t;
|