@yahoo/uds 3.133.3 → 3.134.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/automated-config/dist/generated/autoVariants.cjs +14 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +14 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +14 -0
- package/dist/automated-config/dist/generated/autoVariants.js +14 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +2796 -1
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +288 -2
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +288 -2
- package/dist/automated-config/dist/generated/generatedConfigs.js +2796 -2
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +119 -0
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +2 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +2 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +119 -0
- package/dist/automated-config/dist/properties.cjs +15 -1
- package/dist/automated-config/dist/properties.d.cts +4 -0
- package/dist/automated-config/dist/properties.d.ts +4 -0
- package/dist/automated-config/dist/properties.js +15 -1
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/cli/commands/sync.cjs +4 -0
- package/dist/cli/commands/sync.js +4 -0
- package/dist/components/client/Modal/Modal.cjs +193 -0
- package/dist/components/client/Modal/Modal.d.cts +51 -0
- package/dist/components/client/Modal/Modal.d.ts +52 -0
- package/dist/components/client/Modal/Modal.js +191 -0
- package/dist/components/client/Modal/ModalActions.cjs +54 -0
- package/dist/components/client/Modal/ModalActions.d.cts +27 -0
- package/dist/components/client/Modal/ModalActions.d.ts +28 -0
- package/dist/components/client/Modal/ModalActions.js +52 -0
- package/dist/components/client/Modal/ModalContent.cjs +37 -0
- package/dist/components/client/Modal/ModalContent.d.cts +24 -0
- package/dist/components/client/Modal/ModalContent.d.ts +25 -0
- package/dist/components/client/Modal/ModalContent.js +35 -0
- package/dist/components/client/Modal/ModalContext.cjs +15 -0
- package/dist/components/client/Modal/ModalContext.d.cts +13 -0
- package/dist/components/client/Modal/ModalContext.d.ts +14 -0
- package/dist/components/client/Modal/ModalContext.js +12 -0
- package/dist/components/client/Modal/ModalDescription.cjs +29 -0
- package/dist/components/client/Modal/ModalDescription.d.cts +23 -0
- package/dist/components/client/Modal/ModalDescription.d.ts +24 -0
- package/dist/components/client/Modal/ModalDescription.js +27 -0
- package/dist/components/client/Modal/ModalTitle.cjs +29 -0
- package/dist/components/client/Modal/ModalTitle.d.cts +23 -0
- package/dist/components/client/Modal/ModalTitle.d.ts +24 -0
- package/dist/components/client/Modal/ModalTitle.js +27 -0
- package/dist/components/client/Modal/UDSModalConfigProvider.cjs +42 -0
- package/dist/components/client/Modal/UDSModalConfigProvider.d.cts +35 -0
- package/dist/components/client/Modal/UDSModalConfigProvider.d.ts +36 -0
- package/dist/components/client/Modal/UDSModalConfigProvider.js +39 -0
- package/dist/components/client/Modal/index.cjs +16 -0
- package/dist/components/client/Modal/index.d.cts +8 -0
- package/dist/components/client/Modal/index.d.ts +9 -0
- package/dist/components/client/Modal/index.js +9 -0
- package/dist/components/client/Modal/useScrollFade.cjs +38 -0
- package/dist/components/client/Modal/useScrollFade.d.cts +13 -0
- package/dist/components/client/Modal/useScrollFade.d.ts +14 -0
- package/dist/components/client/Modal/useScrollFade.js +36 -0
- package/dist/components/client/Modal/utils.cjs +32 -0
- package/dist/components/client/Modal/utils.d.cts +13 -0
- package/dist/components/client/Modal/utils.d.ts +14 -0
- package/dist/components/client/Modal/utils.js +30 -0
- package/dist/components/client/Popover/index.d.cts +1 -1
- package/dist/components/client/Popover/index.d.ts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.cts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.ts +1 -1
- package/dist/components/client/index.cjs +13 -0
- package/dist/components/client/index.d.cts +8 -2
- package/dist/components/client/index.d.ts +8 -2
- package/dist/components/client/index.js +7 -1
- package/dist/components/client/providers/UDSConfigProvider.cjs +6 -2
- package/dist/components/client/providers/UDSConfigProvider.d.cts +2 -1
- package/dist/components/client/providers/UDSConfigProvider.d.ts +2 -1
- package/dist/components/client/providers/UDSConfigProvider.js +6 -2
- package/dist/components/experimental/client/index.cjs +0 -5
- package/dist/components/experimental/client/index.d.cts +1 -2
- package/dist/components/experimental/client/index.d.ts +1 -2
- package/dist/components/experimental/client/index.js +1 -2
- package/dist/components/experimental/index.cjs +1 -10
- package/dist/components/experimental/index.d.cts +1 -2
- package/dist/components/experimental/index.d.ts +1 -2
- package/dist/components/experimental/index.js +2 -7
- package/dist/components/index.cjs +20 -0
- package/dist/components/index.d.cts +8 -2
- package/dist/components/index.d.ts +8 -2
- package/dist/components/index.js +14 -1
- package/dist/config/dist/index.cjs +129 -4
- package/dist/config/dist/index.js +129 -4
- package/dist/index.cjs +16 -0
- package/dist/index.d.cts +11 -4
- package/dist/index.d.ts +11 -4
- package/dist/index.js +9 -2
- package/dist/runtime/index.cjs +2 -0
- package/dist/runtime/index.d.cts +2 -1
- package/dist/runtime/index.d.ts +2 -1
- package/dist/runtime/index.js +2 -1
- package/dist/runtime/modalConfig.cjs +22 -0
- package/dist/runtime/modalConfig.d.cts +22 -0
- package/dist/runtime/modalConfig.d.ts +22 -0
- package/dist/runtime/modalConfig.js +21 -0
- package/dist/runtime/udsConfig.cjs +4 -2
- package/dist/runtime/udsConfig.d.cts +2 -0
- package/dist/runtime/udsConfig.d.ts +2 -0
- package/dist/runtime/udsConfig.js +4 -2
- package/dist/styles/styler.d.cts +35 -21
- package/dist/styles/styler.d.ts +35 -21
- package/dist/styles/variants.d.cts +42 -0
- package/dist/styles/variants.d.ts +42 -0
- package/dist/tailwind/dist/automated-config/dist/generated/autoVariants.cjs +14 -0
- package/dist/tailwind/dist/automated-config/dist/generated/autoVariants.js +14 -0
- package/dist/tailwind/dist/automated-config/dist/generated/autoVariants.js.map +1 -1
- package/dist/tailwind/dist/automated-config/dist/generated/generatedConfigs.cjs +2796 -1
- package/dist/tailwind/dist/automated-config/dist/generated/generatedConfigs.js +2796 -2
- package/dist/tailwind/dist/automated-config/dist/generated/generatedConfigs.js.map +1 -1
- package/dist/tailwind/dist/automated-config/dist/properties.cjs +15 -1
- package/dist/tailwind/dist/automated-config/dist/properties.js +15 -1
- package/dist/tailwind/dist/automated-config/dist/properties.js.map +1 -1
- package/dist/tailwind/dist/config/dist/index.cjs +129 -4
- package/dist/tailwind/dist/config/dist/index.js +129 -4
- package/dist/tailwind/dist/config/dist/index.js.map +1 -1
- package/dist/tailwind/dist/css/utils.cjs +8 -0
- package/dist/tailwind/dist/css/utils.js +8 -0
- package/dist/tailwind/dist/css/utils.js.map +1 -1
- package/dist/tailwind/dist/runtimeConfig/hookMetadata.cjs +34 -0
- package/dist/tailwind/dist/runtimeConfig/hookMetadata.js +34 -0
- package/dist/tailwind/dist/runtimeConfig/hookMetadata.js.map +1 -1
- package/dist/tailwind/dist/tailwind/plugins/blurBgFallback.cjs +3 -0
- package/dist/tailwind/dist/tailwind/plugins/blurBgFallback.js +3 -0
- package/dist/tailwind/dist/tailwind/plugins/blurBgFallback.js.map +1 -1
- package/dist/tailwind/dist/tailwind/plugins/components.cjs +1 -0
- package/dist/tailwind/dist/tailwind/plugins/components.js +2 -1
- package/dist/tailwind/dist/tailwind/plugins/components.js.map +1 -1
- package/dist/tailwind/dist/types/dist/index.d.cts.map +1 -1
- package/dist/tailwind/dist/types/dist/index.d.ts.map +1 -1
- package/dist/tokens/automation/configs/index.cjs +1 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +1 -0
- package/dist/tokens/automation/index.d.cts +2 -2
- package/dist/tokens/automation/index.d.ts +2 -2
- package/dist/tokens/automation/index.js +2 -2
- package/dist/tokens/index.cjs +1 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +68 -2
- package/dist/types/dist/index.d.ts +68 -2
- package/dist/uds/generated/componentData.cjs +717 -526
- package/dist/uds/generated/componentData.js +580 -425
- package/dist/uds/generated/tailwindPurge.cjs +137 -96
- package/dist/uds/generated/tailwindPurge.js +137 -96
- package/dist/utils/exposeAriakitScrollbarWidth.cjs +17 -0
- package/dist/utils/exposeAriakitScrollbarWidth.d.cts +13 -0
- package/dist/utils/exposeAriakitScrollbarWidth.d.ts +13 -0
- package/dist/utils/exposeAriakitScrollbarWidth.js +16 -0
- package/generated/componentData.json +876 -665
- package/generated/tailwindPurge.ts +4 -4
- package/package.json +1 -1
- package/dist/components/experimental/client/Modal.cjs +0 -60
- package/dist/components/experimental/client/Modal.d.cts +0 -27
- package/dist/components/experimental/client/Modal.d.ts +0 -28
- package/dist/components/experimental/client/Modal.js +0 -55
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const require_runtime_bottomSheetConfig = require("./bottomSheetConfig.cjs");
|
|
4
4
|
const require_runtime_breakpointsConfig = require("./breakpointsConfig.cjs");
|
|
5
|
+
const require_runtime_modalConfig = require("./modalConfig.cjs");
|
|
5
6
|
const require_runtime_popoverConfig = require("./popoverConfig.cjs");
|
|
6
7
|
const require_runtime_toastConfig = require("./toastConfig.cjs");
|
|
7
8
|
const require_runtime_tooltipConfig = require("./tooltipConfig.cjs");
|
|
@@ -10,9 +11,10 @@ const configToUDSConfigContext = (config) => {
|
|
|
10
11
|
return {
|
|
11
12
|
bottomSheet: require_runtime_bottomSheetConfig.configToBottomSheetConfigContext(config),
|
|
12
13
|
breakpoints: require_runtime_breakpointsConfig.configToBreakpointsConfigContext(config),
|
|
14
|
+
modal: require_runtime_modalConfig.configToModalConfigContext(config),
|
|
15
|
+
popover: require_runtime_popoverConfig.configToPopoverConfigContext(config),
|
|
13
16
|
toast: require_runtime_toastConfig.configToToastConfigContext(config),
|
|
14
|
-
tooltip: require_runtime_tooltipConfig.configToTooltipConfigContext(config)
|
|
15
|
-
popover: require_runtime_popoverConfig.configToPopoverConfigContext(config)
|
|
17
|
+
tooltip: require_runtime_tooltipConfig.configToTooltipConfigContext(config)
|
|
16
18
|
};
|
|
17
19
|
};
|
|
18
20
|
//#endregion
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalTokensConfig } from "../config/dist/index.cjs";
|
|
3
3
|
import { UDSBottomSheetConfigContextType } from "./bottomSheetConfig.cjs";
|
|
4
|
+
import { UDSModalConfigContextType } from "./modalConfig.cjs";
|
|
4
5
|
import { UDSPopoverConfigContextType } from "./popoverConfig.cjs";
|
|
5
6
|
import { UDSBreakpointsConfigContextType } from "./breakpointsConfig.cjs";
|
|
6
7
|
import { UDSToastConfigContextType } from "./toastConfig.cjs";
|
|
@@ -11,6 +12,7 @@ interface UDSConfigContextType {
|
|
|
11
12
|
bottomSheet: UDSBottomSheetConfigContextType;
|
|
12
13
|
breakpoints: UDSBreakpointsConfigContextType;
|
|
13
14
|
toast: UDSToastConfigContextType;
|
|
15
|
+
modal: UDSModalConfigContextType;
|
|
14
16
|
tooltip: UDSTooltipConfigContextType;
|
|
15
17
|
popover: UDSPopoverConfigContextType;
|
|
16
18
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalTokensConfig } from "../config/dist/index.js";
|
|
3
3
|
import { UDSBottomSheetConfigContextType } from "./bottomSheetConfig.js";
|
|
4
|
+
import { UDSModalConfigContextType } from "./modalConfig.js";
|
|
4
5
|
import { UDSPopoverConfigContextType } from "./popoverConfig.js";
|
|
5
6
|
import { UDSBreakpointsConfigContextType } from "./breakpointsConfig.js";
|
|
6
7
|
import { UDSToastConfigContextType } from "./toastConfig.js";
|
|
@@ -11,6 +12,7 @@ interface UDSConfigContextType {
|
|
|
11
12
|
bottomSheet: UDSBottomSheetConfigContextType;
|
|
12
13
|
breakpoints: UDSBreakpointsConfigContextType;
|
|
13
14
|
toast: UDSToastConfigContextType;
|
|
15
|
+
modal: UDSModalConfigContextType;
|
|
14
16
|
tooltip: UDSTooltipConfigContextType;
|
|
15
17
|
popover: UDSPopoverConfigContextType;
|
|
16
18
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
import { configToBottomSheetConfigContext } from "./bottomSheetConfig.js";
|
|
3
3
|
import { configToBreakpointsConfigContext } from "./breakpointsConfig.js";
|
|
4
|
+
import { configToModalConfigContext } from "./modalConfig.js";
|
|
4
5
|
import { configToPopoverConfigContext } from "./popoverConfig.js";
|
|
5
6
|
import { configToToastConfigContext } from "./toastConfig.js";
|
|
6
7
|
import { configToTooltipConfigContext } from "./tooltipConfig.js";
|
|
@@ -9,9 +10,10 @@ const configToUDSConfigContext = (config) => {
|
|
|
9
10
|
return {
|
|
10
11
|
bottomSheet: configToBottomSheetConfigContext(config),
|
|
11
12
|
breakpoints: configToBreakpointsConfigContext(config),
|
|
13
|
+
modal: configToModalConfigContext(config),
|
|
14
|
+
popover: configToPopoverConfigContext(config),
|
|
12
15
|
toast: configToToastConfigContext(config),
|
|
13
|
-
tooltip: configToTooltipConfigContext(config)
|
|
14
|
-
popover: configToPopoverConfigContext(config)
|
|
16
|
+
tooltip: configToTooltipConfigContext(config)
|
|
15
17
|
};
|
|
16
18
|
};
|
|
17
19
|
//#endregion
|
package/dist/styles/styler.d.cts
CHANGED
|
@@ -113,6 +113,20 @@ declare const getStylesInternal: (props?: ({
|
|
|
113
113
|
menuitemSizeEndIcon?: "default" | undefined;
|
|
114
114
|
menuitemSizeRoot?: "default" | undefined;
|
|
115
115
|
menuitemSizeStartIcon?: "default" | undefined;
|
|
116
|
+
modalSizeActions?: "default" | undefined;
|
|
117
|
+
modalSizeCloseIcon?: "default" | undefined;
|
|
118
|
+
modalSizeCloseIconContainer?: "default" | undefined;
|
|
119
|
+
modalSizeDescription?: "default" | undefined;
|
|
120
|
+
modalSizeHeader?: "default" | undefined;
|
|
121
|
+
modalSizeRoot?: "default" | undefined;
|
|
122
|
+
modalSizeScrim?: "default" | undefined;
|
|
123
|
+
modalSizeSpacingHorizontal?: "default" | undefined;
|
|
124
|
+
modalSizeTitle?: "default" | undefined;
|
|
125
|
+
modalSizeTitleDescriptionWrapper?: "default" | undefined;
|
|
126
|
+
modalVariantCloseIcon?: "default" | undefined;
|
|
127
|
+
modalVariantDescription?: "default" | undefined;
|
|
128
|
+
modalVariantRoot?: "default" | undefined;
|
|
129
|
+
modalVariantTitle?: "default" | undefined;
|
|
116
130
|
popoverSizeCloseIcon?: "default" | undefined;
|
|
117
131
|
popoverSizeCloseIconContainer?: "default" | undefined;
|
|
118
132
|
popoverSizeContentWrapper?: "default" | undefined;
|
|
@@ -157,10 +171,10 @@ declare const getStylesInternal: (props?: ({
|
|
|
157
171
|
toastSizeIcon?: "default" | undefined;
|
|
158
172
|
toastSizeLabel?: "default" | undefined;
|
|
159
173
|
toastSizeRoot?: "default" | undefined;
|
|
160
|
-
toastVariantActionButton?: "
|
|
161
|
-
toastVariantCloseIcon?: "
|
|
162
|
-
toastVariantIcon?: "
|
|
163
|
-
toastVariantRoot?: "
|
|
174
|
+
toastVariantActionButton?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
175
|
+
toastVariantCloseIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
176
|
+
toastVariantIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
177
|
+
toastVariantRoot?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
164
178
|
tooltipSizeBody?: "default" | undefined;
|
|
165
179
|
tooltipSizeEndContent?: "default" | undefined;
|
|
166
180
|
tooltipSizeIcon?: "default" | undefined;
|
|
@@ -207,39 +221,39 @@ declare const getStylesInternal: (props?: ({
|
|
|
207
221
|
borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
208
222
|
borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
209
223
|
borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
210
|
-
borderWidth?: "
|
|
211
|
-
borderVerticalWidth?: "
|
|
212
|
-
borderHorizontalWidth?: "
|
|
213
|
-
borderStartWidth?: "
|
|
214
|
-
borderEndWidth?: "
|
|
215
|
-
borderTopWidth?: "
|
|
216
|
-
borderBottomWidth?: "
|
|
224
|
+
borderWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
225
|
+
borderVerticalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
226
|
+
borderHorizontalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
227
|
+
borderStartWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
228
|
+
borderEndWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
229
|
+
borderTopWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
230
|
+
borderBottomWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
217
231
|
avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
|
|
218
232
|
iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
219
|
-
alignContent?: "
|
|
220
|
-
alignItems?: "
|
|
221
|
-
alignSelf?: "
|
|
222
|
-
flex?: "
|
|
233
|
+
alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
|
|
234
|
+
alignItems?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
|
|
235
|
+
alignSelf?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto" | undefined;
|
|
236
|
+
flex?: "1" | "none" | "auto" | "initial" | undefined;
|
|
223
237
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
224
238
|
flexGrow?: "0" | "1" | "2" | "3" | undefined;
|
|
225
239
|
flexShrink?: "0" | "1" | undefined;
|
|
226
240
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
227
|
-
justifyContent?: "
|
|
241
|
+
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
228
242
|
flexBasis?: "min-content" | undefined;
|
|
229
|
-
display?: "flex" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "
|
|
243
|
+
display?: "flex" | "table" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "grid" | "contents" | undefined;
|
|
230
244
|
overflow?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
231
245
|
overflowX?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
232
246
|
overflowY?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
233
247
|
position?: "static" | "fixed" | "absolute" | "relative" | "sticky" | undefined;
|
|
234
|
-
contentFit?: "
|
|
248
|
+
contentFit?: "none" | "fill" | "cover" | "contain" | "scale-down" | undefined;
|
|
235
249
|
colorMode?: "light" | "dark" | undefined;
|
|
236
|
-
scaleMode?: "
|
|
250
|
+
scaleMode?: "small" | "medium" | "xSmall" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
|
|
237
251
|
width?: "full" | "fit" | "screen" | undefined;
|
|
238
252
|
height?: "full" | "fit" | "screen" | undefined;
|
|
239
|
-
dropShadow?: "
|
|
253
|
+
dropShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
240
254
|
insetShadow?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
|
|
241
255
|
nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
242
|
-
nestedBorderRadiusWidth?: "
|
|
256
|
+
nestedBorderRadiusWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
243
257
|
nestedBorderRadiusSpacing?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
244
258
|
nestedBorderRadius?: boolean | "first" | "last" | undefined;
|
|
245
259
|
} & {
|
package/dist/styles/styler.d.ts
CHANGED
|
@@ -113,6 +113,20 @@ declare const getStylesInternal: (props?: ({
|
|
|
113
113
|
menuitemSizeEndIcon?: "default" | undefined;
|
|
114
114
|
menuitemSizeRoot?: "default" | undefined;
|
|
115
115
|
menuitemSizeStartIcon?: "default" | undefined;
|
|
116
|
+
modalSizeActions?: "default" | undefined;
|
|
117
|
+
modalSizeCloseIcon?: "default" | undefined;
|
|
118
|
+
modalSizeCloseIconContainer?: "default" | undefined;
|
|
119
|
+
modalSizeDescription?: "default" | undefined;
|
|
120
|
+
modalSizeHeader?: "default" | undefined;
|
|
121
|
+
modalSizeRoot?: "default" | undefined;
|
|
122
|
+
modalSizeScrim?: "default" | undefined;
|
|
123
|
+
modalSizeSpacingHorizontal?: "default" | undefined;
|
|
124
|
+
modalSizeTitle?: "default" | undefined;
|
|
125
|
+
modalSizeTitleDescriptionWrapper?: "default" | undefined;
|
|
126
|
+
modalVariantCloseIcon?: "default" | undefined;
|
|
127
|
+
modalVariantDescription?: "default" | undefined;
|
|
128
|
+
modalVariantRoot?: "default" | undefined;
|
|
129
|
+
modalVariantTitle?: "default" | undefined;
|
|
116
130
|
popoverSizeCloseIcon?: "default" | undefined;
|
|
117
131
|
popoverSizeCloseIconContainer?: "default" | undefined;
|
|
118
132
|
popoverSizeContentWrapper?: "default" | undefined;
|
|
@@ -157,10 +171,10 @@ declare const getStylesInternal: (props?: ({
|
|
|
157
171
|
toastSizeIcon?: "default" | undefined;
|
|
158
172
|
toastSizeLabel?: "default" | undefined;
|
|
159
173
|
toastSizeRoot?: "default" | undefined;
|
|
160
|
-
toastVariantActionButton?: "
|
|
161
|
-
toastVariantCloseIcon?: "
|
|
162
|
-
toastVariantIcon?: "
|
|
163
|
-
toastVariantRoot?: "
|
|
174
|
+
toastVariantActionButton?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
175
|
+
toastVariantCloseIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
176
|
+
toastVariantIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
177
|
+
toastVariantRoot?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
|
|
164
178
|
tooltipSizeBody?: "default" | undefined;
|
|
165
179
|
tooltipSizeEndContent?: "default" | undefined;
|
|
166
180
|
tooltipSizeIcon?: "default" | undefined;
|
|
@@ -207,39 +221,39 @@ declare const getStylesInternal: (props?: ({
|
|
|
207
221
|
borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
208
222
|
borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
209
223
|
borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
210
|
-
borderWidth?: "
|
|
211
|
-
borderVerticalWidth?: "
|
|
212
|
-
borderHorizontalWidth?: "
|
|
213
|
-
borderStartWidth?: "
|
|
214
|
-
borderEndWidth?: "
|
|
215
|
-
borderTopWidth?: "
|
|
216
|
-
borderBottomWidth?: "
|
|
224
|
+
borderWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
225
|
+
borderVerticalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
226
|
+
borderHorizontalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
227
|
+
borderStartWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
228
|
+
borderEndWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
229
|
+
borderTopWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
230
|
+
borderBottomWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
217
231
|
avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
|
|
218
232
|
iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
219
|
-
alignContent?: "
|
|
220
|
-
alignItems?: "
|
|
221
|
-
alignSelf?: "
|
|
222
|
-
flex?: "
|
|
233
|
+
alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
|
|
234
|
+
alignItems?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
|
|
235
|
+
alignSelf?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto" | undefined;
|
|
236
|
+
flex?: "1" | "none" | "auto" | "initial" | undefined;
|
|
223
237
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
224
238
|
flexGrow?: "0" | "1" | "2" | "3" | undefined;
|
|
225
239
|
flexShrink?: "0" | "1" | undefined;
|
|
226
240
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
227
|
-
justifyContent?: "
|
|
241
|
+
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
228
242
|
flexBasis?: "min-content" | undefined;
|
|
229
|
-
display?: "flex" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "
|
|
243
|
+
display?: "flex" | "table" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "grid" | "contents" | undefined;
|
|
230
244
|
overflow?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
231
245
|
overflowX?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
232
246
|
overflowY?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
233
247
|
position?: "static" | "fixed" | "absolute" | "relative" | "sticky" | undefined;
|
|
234
|
-
contentFit?: "
|
|
248
|
+
contentFit?: "none" | "fill" | "cover" | "contain" | "scale-down" | undefined;
|
|
235
249
|
colorMode?: "light" | "dark" | undefined;
|
|
236
|
-
scaleMode?: "
|
|
250
|
+
scaleMode?: "small" | "medium" | "xSmall" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
|
|
237
251
|
width?: "full" | "fit" | "screen" | undefined;
|
|
238
252
|
height?: "full" | "fit" | "screen" | undefined;
|
|
239
|
-
dropShadow?: "
|
|
253
|
+
dropShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
240
254
|
insetShadow?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
|
|
241
255
|
nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
242
|
-
nestedBorderRadiusWidth?: "
|
|
256
|
+
nestedBorderRadiusWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
|
|
243
257
|
nestedBorderRadiusSpacing?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
244
258
|
nestedBorderRadius?: boolean | "first" | "last" | undefined;
|
|
245
259
|
} & {
|
|
@@ -625,6 +625,48 @@ declare const variants: {
|
|
|
625
625
|
menuitemSizeStartIcon: {
|
|
626
626
|
readonly default: "uds-menuitem-size-default-starticon";
|
|
627
627
|
};
|
|
628
|
+
modalSizeActions: {
|
|
629
|
+
readonly default: "uds-modal-size-default-actions";
|
|
630
|
+
};
|
|
631
|
+
modalSizeCloseIcon: {
|
|
632
|
+
readonly default: "uds-modal-size-default-closeicon";
|
|
633
|
+
};
|
|
634
|
+
modalSizeCloseIconContainer: {
|
|
635
|
+
readonly default: "uds-modal-size-default-closeiconcontainer";
|
|
636
|
+
};
|
|
637
|
+
modalSizeDescription: {
|
|
638
|
+
readonly default: "uds-modal-size-default-description";
|
|
639
|
+
};
|
|
640
|
+
modalSizeHeader: {
|
|
641
|
+
readonly default: "uds-modal-size-default-header";
|
|
642
|
+
};
|
|
643
|
+
modalSizeRoot: {
|
|
644
|
+
readonly default: "uds-modal-size-default-root";
|
|
645
|
+
};
|
|
646
|
+
modalSizeScrim: {
|
|
647
|
+
readonly default: "uds-modal-size-default-scrim";
|
|
648
|
+
};
|
|
649
|
+
modalSizeSpacingHorizontal: {
|
|
650
|
+
readonly default: "uds-modal-size-default-spacinghorizontal";
|
|
651
|
+
};
|
|
652
|
+
modalSizeTitle: {
|
|
653
|
+
readonly default: "uds-modal-size-default-title";
|
|
654
|
+
};
|
|
655
|
+
modalSizeTitleDescriptionWrapper: {
|
|
656
|
+
readonly default: "uds-modal-size-default-titledescriptionwrapper";
|
|
657
|
+
};
|
|
658
|
+
modalVariantCloseIcon: {
|
|
659
|
+
readonly default: "uds-modal-variant-default-closeicon";
|
|
660
|
+
};
|
|
661
|
+
modalVariantDescription: {
|
|
662
|
+
readonly default: "uds-modal-variant-default-description";
|
|
663
|
+
};
|
|
664
|
+
modalVariantRoot: {
|
|
665
|
+
readonly default: "uds-modal-variant-default-root";
|
|
666
|
+
};
|
|
667
|
+
modalVariantTitle: {
|
|
668
|
+
readonly default: "uds-modal-variant-default-title";
|
|
669
|
+
};
|
|
628
670
|
popoverSizeCloseIcon: {
|
|
629
671
|
readonly default: "uds-popover-size-default-closeicon";
|
|
630
672
|
};
|
|
@@ -625,6 +625,48 @@ declare const variants: {
|
|
|
625
625
|
menuitemSizeStartIcon: {
|
|
626
626
|
readonly default: "uds-menuitem-size-default-starticon";
|
|
627
627
|
};
|
|
628
|
+
modalSizeActions: {
|
|
629
|
+
readonly default: "uds-modal-size-default-actions";
|
|
630
|
+
};
|
|
631
|
+
modalSizeCloseIcon: {
|
|
632
|
+
readonly default: "uds-modal-size-default-closeicon";
|
|
633
|
+
};
|
|
634
|
+
modalSizeCloseIconContainer: {
|
|
635
|
+
readonly default: "uds-modal-size-default-closeiconcontainer";
|
|
636
|
+
};
|
|
637
|
+
modalSizeDescription: {
|
|
638
|
+
readonly default: "uds-modal-size-default-description";
|
|
639
|
+
};
|
|
640
|
+
modalSizeHeader: {
|
|
641
|
+
readonly default: "uds-modal-size-default-header";
|
|
642
|
+
};
|
|
643
|
+
modalSizeRoot: {
|
|
644
|
+
readonly default: "uds-modal-size-default-root";
|
|
645
|
+
};
|
|
646
|
+
modalSizeScrim: {
|
|
647
|
+
readonly default: "uds-modal-size-default-scrim";
|
|
648
|
+
};
|
|
649
|
+
modalSizeSpacingHorizontal: {
|
|
650
|
+
readonly default: "uds-modal-size-default-spacinghorizontal";
|
|
651
|
+
};
|
|
652
|
+
modalSizeTitle: {
|
|
653
|
+
readonly default: "uds-modal-size-default-title";
|
|
654
|
+
};
|
|
655
|
+
modalSizeTitleDescriptionWrapper: {
|
|
656
|
+
readonly default: "uds-modal-size-default-titledescriptionwrapper";
|
|
657
|
+
};
|
|
658
|
+
modalVariantCloseIcon: {
|
|
659
|
+
readonly default: "uds-modal-variant-default-closeicon";
|
|
660
|
+
};
|
|
661
|
+
modalVariantDescription: {
|
|
662
|
+
readonly default: "uds-modal-variant-default-description";
|
|
663
|
+
};
|
|
664
|
+
modalVariantRoot: {
|
|
665
|
+
readonly default: "uds-modal-variant-default-root";
|
|
666
|
+
};
|
|
667
|
+
modalVariantTitle: {
|
|
668
|
+
readonly default: "uds-modal-variant-default-title";
|
|
669
|
+
};
|
|
628
670
|
popoverSizeCloseIcon: {
|
|
629
671
|
readonly default: "uds-popover-size-default-closeicon";
|
|
630
672
|
};
|
|
@@ -560,6 +560,20 @@ const autoVariants = {
|
|
|
560
560
|
menuitemSizeEndIcon: { default: "uds-menuitem-size-default-endicon" },
|
|
561
561
|
menuitemSizeRoot: { default: "uds-menuitem-size-default-root" },
|
|
562
562
|
menuitemSizeStartIcon: { default: "uds-menuitem-size-default-starticon" },
|
|
563
|
+
modalSizeActions: { default: "uds-modal-size-default-actions" },
|
|
564
|
+
modalSizeCloseIcon: { default: "uds-modal-size-default-closeicon" },
|
|
565
|
+
modalSizeCloseIconContainer: { default: "uds-modal-size-default-closeiconcontainer" },
|
|
566
|
+
modalSizeDescription: { default: "uds-modal-size-default-description" },
|
|
567
|
+
modalSizeHeader: { default: "uds-modal-size-default-header" },
|
|
568
|
+
modalSizeRoot: { default: "uds-modal-size-default-root" },
|
|
569
|
+
modalSizeScrim: { default: "uds-modal-size-default-scrim" },
|
|
570
|
+
modalSizeSpacingHorizontal: { default: "uds-modal-size-default-spacinghorizontal" },
|
|
571
|
+
modalSizeTitle: { default: "uds-modal-size-default-title" },
|
|
572
|
+
modalSizeTitleDescriptionWrapper: { default: "uds-modal-size-default-titledescriptionwrapper" },
|
|
573
|
+
modalVariantCloseIcon: { default: "uds-modal-variant-default-closeicon" },
|
|
574
|
+
modalVariantDescription: { default: "uds-modal-variant-default-description" },
|
|
575
|
+
modalVariantRoot: { default: "uds-modal-variant-default-root" },
|
|
576
|
+
modalVariantTitle: { default: "uds-modal-variant-default-title" },
|
|
563
577
|
popoverSizeCloseIcon: { default: "uds-popover-size-default-closeicon" },
|
|
564
578
|
popoverSizeCloseIconContainer: { default: "uds-popover-size-default-closeiconcontainer" },
|
|
565
579
|
popoverSizeContentWrapper: { default: "uds-popover-size-default-contentwrapper" },
|
|
@@ -560,6 +560,20 @@ const autoVariants = {
|
|
|
560
560
|
menuitemSizeEndIcon: { default: "uds-menuitem-size-default-endicon" },
|
|
561
561
|
menuitemSizeRoot: { default: "uds-menuitem-size-default-root" },
|
|
562
562
|
menuitemSizeStartIcon: { default: "uds-menuitem-size-default-starticon" },
|
|
563
|
+
modalSizeActions: { default: "uds-modal-size-default-actions" },
|
|
564
|
+
modalSizeCloseIcon: { default: "uds-modal-size-default-closeicon" },
|
|
565
|
+
modalSizeCloseIconContainer: { default: "uds-modal-size-default-closeiconcontainer" },
|
|
566
|
+
modalSizeDescription: { default: "uds-modal-size-default-description" },
|
|
567
|
+
modalSizeHeader: { default: "uds-modal-size-default-header" },
|
|
568
|
+
modalSizeRoot: { default: "uds-modal-size-default-root" },
|
|
569
|
+
modalSizeScrim: { default: "uds-modal-size-default-scrim" },
|
|
570
|
+
modalSizeSpacingHorizontal: { default: "uds-modal-size-default-spacinghorizontal" },
|
|
571
|
+
modalSizeTitle: { default: "uds-modal-size-default-title" },
|
|
572
|
+
modalSizeTitleDescriptionWrapper: { default: "uds-modal-size-default-titledescriptionwrapper" },
|
|
573
|
+
modalVariantCloseIcon: { default: "uds-modal-variant-default-closeicon" },
|
|
574
|
+
modalVariantDescription: { default: "uds-modal-variant-default-description" },
|
|
575
|
+
modalVariantRoot: { default: "uds-modal-variant-default-root" },
|
|
576
|
+
modalVariantTitle: { default: "uds-modal-variant-default-title" },
|
|
563
577
|
popoverSizeCloseIcon: { default: "uds-popover-size-default-closeicon" },
|
|
564
578
|
popoverSizeCloseIconContainer: { default: "uds-popover-size-default-closeiconcontainer" },
|
|
565
579
|
popoverSizeContentWrapper: { default: "uds-popover-size-default-contentwrapper" },
|