@uzum-tech/ui 2.3.8 → 3.0.0-alpha.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/index.js +631 -35
- package/dist/index.mjs +627 -36
- package/dist/index.prod.js +3 -3
- package/dist/index.prod.mjs +3 -3
- package/es/_internal/button-v3/index.d.ts +5 -0
- package/es/_internal/button-v3/index.mjs +3 -0
- package/es/_internal/button-v3/src/ButtonV3.d.ts +533 -0
- package/es/_internal/button-v3/src/ButtonV3.mjs +200 -0
- package/es/_internal/button-v3/src/interface.d.ts +281 -0
- package/es/_internal/button-v3/src/interface.mjs +29 -0
- package/es/_internal/button-v3/src/styles/index.cssr.d.ts +2 -0
- package/es/_internal/button-v3/src/styles/index.cssr.mjs +119 -0
- package/es/_internal/button-v3/src/utils.d.ts +10 -0
- package/es/_internal/button-v3/src/utils.mjs +52 -0
- package/es/_internal/button-v3/styles/_common.d.ts +19 -0
- package/es/_internal/button-v3/styles/_common.mjs +18 -0
- package/es/_internal/button-v3/styles/dark.d.ts +3 -0
- package/es/_internal/button-v3/styles/dark.mjs +8 -0
- package/es/_internal/button-v3/styles/index.d.ts +3 -0
- package/es/_internal/button-v3/styles/index.mjs +2 -0
- package/es/_internal/button-v3/styles/light.d.ts +81 -0
- package/es/_internal/button-v3/styles/light.mjs +91 -0
- package/es/_internal/index.d.ts +2 -0
- package/es/_internal/index.mjs +1 -0
- package/es/_styles/common/dark.mjs +12 -0
- package/es/_styles/common/light.d.ts +12 -0
- package/es/_styles/common/light.mjs +12 -0
- package/es/button-v3/index.d.ts +4 -0
- package/es/button-v3/index.mjs +2 -0
- package/es/button-v3/src/ButtonV3.d.ts +525 -0
- package/es/button-v3/src/ButtonV3.mjs +17 -0
- package/es/components.d.ts +524 -2
- package/es/components.mjs +4 -0
- package/es/config-provider/src/internal-interface.d.ts +4 -0
- package/es/dialog/src/DialogProvider.d.ts +48 -0
- package/es/styles.d.ts +1 -0
- package/es/styles.mjs +1 -0
- package/es/theme-editor/src/ThemeEditor.d.ts +12 -0
- package/es/themes/dark.mjs +2 -0
- package/es/themes/light.mjs +2 -0
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/_internal/button-v3/index.d.ts +5 -0
- package/lib/_internal/button-v3/index.js +13 -0
- package/lib/_internal/button-v3/src/ButtonV3.d.ts +533 -0
- package/lib/_internal/button-v3/src/ButtonV3.js +170 -0
- package/lib/_internal/button-v3/src/interface.d.ts +281 -0
- package/lib/_internal/button-v3/src/interface.js +20 -0
- package/lib/_internal/button-v3/src/styles/index.cssr.d.ts +2 -0
- package/lib/_internal/button-v3/src/styles/index.cssr.js +124 -0
- package/lib/_internal/button-v3/src/utils.d.ts +10 -0
- package/lib/_internal/button-v3/src/utils.js +56 -0
- package/lib/_internal/button-v3/styles/_common.d.ts +19 -0
- package/lib/_internal/button-v3/styles/_common.js +20 -0
- package/lib/_internal/button-v3/styles/dark.d.ts +3 -0
- package/lib/_internal/button-v3/styles/dark.js +10 -0
- package/lib/_internal/button-v3/styles/index.d.ts +3 -0
- package/lib/_internal/button-v3/styles/index.js +10 -0
- package/lib/_internal/button-v3/styles/light.d.ts +81 -0
- package/lib/_internal/button-v3/styles/light.js +19 -0
- package/lib/_internal/index.d.ts +2 -0
- package/lib/_internal/index.js +4 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +12 -0
- package/lib/_styles/common/light.js +1 -1
- package/lib/button-v3/index.d.ts +4 -0
- package/lib/button-v3/index.js +13 -0
- package/lib/button-v3/src/ButtonV3.d.ts +525 -0
- package/lib/button-v3/src/ButtonV3.js +17 -0
- package/lib/components.d.ts +524 -2
- package/lib/components.js +15 -8
- package/lib/config-provider/src/internal-interface.d.ts +4 -0
- package/lib/dialog/src/DialogProvider.d.ts +48 -0
- package/lib/styles.d.ts +1 -0
- package/lib/styles.js +195 -193
- package/lib/theme-editor/src/ThemeEditor.d.ts +12 -0
- package/lib/themes/dark.js +202 -200
- package/lib/themes/light.js +202 -200
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +2 -0
- package/web-types.json +14 -1
package/dist/index.mjs
CHANGED
|
@@ -3901,7 +3901,7 @@ function createCaseFirst(methodName) {
|
|
|
3901
3901
|
* _.upperFirst('FRED');
|
|
3902
3902
|
* // => 'FRED'
|
|
3903
3903
|
*/
|
|
3904
|
-
var upperFirst = createCaseFirst('toUpperCase');
|
|
3904
|
+
var upperFirst$1 = createCaseFirst('toUpperCase');
|
|
3905
3905
|
|
|
3906
3906
|
/**
|
|
3907
3907
|
* Converts the first character of `string` to upper case and the remaining
|
|
@@ -3919,7 +3919,7 @@ var upperFirst = createCaseFirst('toUpperCase');
|
|
|
3919
3919
|
* // => 'Fred'
|
|
3920
3920
|
*/
|
|
3921
3921
|
function capitalize(string) {
|
|
3922
|
-
return upperFirst(toString$1(string).toLowerCase());
|
|
3922
|
+
return upperFirst$1(toString$1(string).toLowerCase());
|
|
3923
3923
|
}
|
|
3924
3924
|
|
|
3925
3925
|
/**
|
|
@@ -6645,7 +6645,7 @@ function throttle(func, wait, options) {
|
|
|
6645
6645
|
});
|
|
6646
6646
|
}
|
|
6647
6647
|
|
|
6648
|
-
var commonVariables$
|
|
6648
|
+
var commonVariables$7 = {
|
|
6649
6649
|
fontFamily: 'v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',
|
|
6650
6650
|
fontFamilyMono: "v-mono, SFMono-Regular, Menlo, Consolas, Courier, monospace",
|
|
6651
6651
|
fontFamilyWixMadeforDisplay: '"Wix Madefor Display", v-sans, system-ui, sans-serif',
|
|
@@ -6703,7 +6703,7 @@ var commonVariables$6 = {
|
|
|
6703
6703
|
const {
|
|
6704
6704
|
fontBodyMedium,
|
|
6705
6705
|
fontFamily: fontFamily$1
|
|
6706
|
-
} = commonVariables$
|
|
6706
|
+
} = commonVariables$7;
|
|
6707
6707
|
var globalStyle = c$1("body", `
|
|
6708
6708
|
margin: 0;
|
|
6709
6709
|
font-size: ${fontBodyMedium};
|
|
@@ -8824,7 +8824,7 @@ function getOffset$2(placement, offsetRect, targetRect, offsetTopToStandardPlace
|
|
|
8824
8824
|
}
|
|
8825
8825
|
|
|
8826
8826
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
8827
|
-
const style$
|
|
8827
|
+
const style$1$ = c([c('.v-binder-follower-container', {
|
|
8828
8828
|
position: 'absolute',
|
|
8829
8829
|
left: '0',
|
|
8830
8830
|
right: '0',
|
|
@@ -8903,7 +8903,7 @@ var VFollower = defineComponent({
|
|
|
8903
8903
|
}
|
|
8904
8904
|
});
|
|
8905
8905
|
const ssrAdapter = useSsrAdapter();
|
|
8906
|
-
style$
|
|
8906
|
+
style$1$.mount({
|
|
8907
8907
|
id: 'vueuc/binder',
|
|
8908
8908
|
head: true,
|
|
8909
8909
|
anchorMetaName: cssrAnchorMetaName,
|
|
@@ -10363,7 +10363,7 @@ var VXScroll = defineComponent({
|
|
|
10363
10363
|
|
|
10364
10364
|
/* eslint-disable @typescript-eslint/strict-boolean-expressions */
|
|
10365
10365
|
const hiddenAttr = 'v-hidden';
|
|
10366
|
-
const style$
|
|
10366
|
+
const style$1_ = c('[v-hidden]', {
|
|
10367
10367
|
display: 'none!important'
|
|
10368
10368
|
});
|
|
10369
10369
|
var VOverflow = defineComponent({
|
|
@@ -10476,7 +10476,7 @@ var VOverflow = defineComponent({
|
|
|
10476
10476
|
}
|
|
10477
10477
|
}
|
|
10478
10478
|
const ssrAdapter = useSsrAdapter();
|
|
10479
|
-
style$
|
|
10479
|
+
style$1_.mount({
|
|
10480
10480
|
id: 'vueuc/overflow',
|
|
10481
10481
|
head: true,
|
|
10482
10482
|
anchorMetaName: cssrAnchorMetaName,
|
|
@@ -14165,7 +14165,7 @@ function useStyle(mountId, style, clsPrefixRef) {
|
|
|
14165
14165
|
}
|
|
14166
14166
|
}
|
|
14167
14167
|
|
|
14168
|
-
var style$
|
|
14168
|
+
var style$1Z = cB("base-icon", `
|
|
14169
14169
|
height: 1em;
|
|
14170
14170
|
width: 1em;
|
|
14171
14171
|
line-height: 1em;
|
|
@@ -14201,7 +14201,7 @@ var UBaseIcon = defineComponent({
|
|
|
14201
14201
|
onMouseup: Function
|
|
14202
14202
|
},
|
|
14203
14203
|
setup(props) {
|
|
14204
|
-
useStyle("-base-icon", style$
|
|
14204
|
+
useStyle("-base-icon", style$1Z, toRef(props, "clsPrefix"));
|
|
14205
14205
|
},
|
|
14206
14206
|
render() {
|
|
14207
14207
|
return /* @__PURE__ */ h(
|
|
@@ -14236,7 +14236,7 @@ const iconProps = {
|
|
|
14236
14236
|
onClick: Function
|
|
14237
14237
|
};
|
|
14238
14238
|
|
|
14239
|
-
var style$
|
|
14239
|
+
var style$1Y = cB("icon", `
|
|
14240
14240
|
height: 1em;
|
|
14241
14241
|
width: 1em;
|
|
14242
14242
|
line-height: 1em;
|
|
@@ -14260,7 +14260,7 @@ var style$1X = cB("icon", `
|
|
|
14260
14260
|
|
|
14261
14261
|
const derived$1 = {
|
|
14262
14262
|
name: "common",
|
|
14263
|
-
...commonVariables$
|
|
14263
|
+
...commonVariables$7,
|
|
14264
14264
|
scrollbarColor: "rgba(255, 255, 255, 0.25)",
|
|
14265
14265
|
scrollbarColorHover: "rgba(255, 255, 255, 0.4)",
|
|
14266
14266
|
scrollbarWidth: "5px",
|
|
@@ -14293,6 +14293,18 @@ const derived$1 = {
|
|
|
14293
14293
|
brandQuinary300: "#F19EDA",
|
|
14294
14294
|
brandQuinary600: "#EA3E68",
|
|
14295
14295
|
brandQuinary100: "#FAD6D9",
|
|
14296
|
+
accentBrand: "#7000FF",
|
|
14297
|
+
accentBrandHover: "#5D46A6",
|
|
14298
|
+
accentError: "#F24835",
|
|
14299
|
+
accentErrorHover: "#A82C1E",
|
|
14300
|
+
accentErrorSubtle: "#FFFFFF",
|
|
14301
|
+
accentNeutral: "#F3F4F6",
|
|
14302
|
+
accentNeutralHover: "#E8EAED",
|
|
14303
|
+
accentFocusRing: "#CDD1D5",
|
|
14304
|
+
accentBorder: "#DDE0E3",
|
|
14305
|
+
accentDisabled: "#DDE0E3",
|
|
14306
|
+
accentDisabledContent: "#B2B8BC",
|
|
14307
|
+
accentPressedOverlay: "rgba(0, 0, 0, 0.12)",
|
|
14296
14308
|
surfacePrimary: "#101010",
|
|
14297
14309
|
surfaceSecondary: "#1D1D1D",
|
|
14298
14310
|
containerPrimary: "#1D1D1D",
|
|
@@ -14343,7 +14355,7 @@ const derived$1 = {
|
|
|
14343
14355
|
|
|
14344
14356
|
const derived = {
|
|
14345
14357
|
name: "common",
|
|
14346
|
-
...commonVariables$
|
|
14358
|
+
...commonVariables$7,
|
|
14347
14359
|
scrollbarColor: "rgba(0, 0, 0, 0.25)",
|
|
14348
14360
|
scrollbarColorHover: "rgba(0, 0, 0, 0.4)",
|
|
14349
14361
|
scrollbarWidth: "5px",
|
|
@@ -14376,6 +14388,18 @@ const derived = {
|
|
|
14376
14388
|
brandQuinary300: "#F19EDA",
|
|
14377
14389
|
brandQuinary600: "#EA3E68",
|
|
14378
14390
|
brandQuinary100: "#FAD6D9",
|
|
14391
|
+
accentBrand: "#7000FF",
|
|
14392
|
+
accentBrandHover: "#5D46A6",
|
|
14393
|
+
accentError: "#F24835",
|
|
14394
|
+
accentErrorHover: "#A82C1E",
|
|
14395
|
+
accentErrorSubtle: "#FFFFFF",
|
|
14396
|
+
accentNeutral: "#F3F4F6",
|
|
14397
|
+
accentNeutralHover: "#E8EAED",
|
|
14398
|
+
accentFocusRing: "#CDD1D5",
|
|
14399
|
+
accentBorder: "#DDE0E3",
|
|
14400
|
+
accentDisabled: "#DDE0E3",
|
|
14401
|
+
accentDisabledContent: "#B2B8BC",
|
|
14402
|
+
accentPressedOverlay: "rgba(0, 0, 0, 0.12)",
|
|
14379
14403
|
surfacePrimary: "#fff",
|
|
14380
14404
|
surfaceSecondary: "#1d1d1d",
|
|
14381
14405
|
containerPrimary: "#fff",
|
|
@@ -14422,7 +14446,7 @@ const derived = {
|
|
|
14422
14446
|
boxShadow2: "0px 20px 80px 0px rgba(0, 0, 0, 0.07)"
|
|
14423
14447
|
};
|
|
14424
14448
|
|
|
14425
|
-
function self$
|
|
14449
|
+
function self$1F(vars) {
|
|
14426
14450
|
const {
|
|
14427
14451
|
elementsPrimary
|
|
14428
14452
|
} = vars;
|
|
@@ -14438,13 +14462,13 @@ function self$1E(vars) {
|
|
|
14438
14462
|
const iconLight = {
|
|
14439
14463
|
name: "Icon",
|
|
14440
14464
|
common: derived,
|
|
14441
|
-
self: self$
|
|
14465
|
+
self: self$1F
|
|
14442
14466
|
};
|
|
14443
14467
|
|
|
14444
14468
|
const iconDark$1 = {
|
|
14445
14469
|
name: "Icon",
|
|
14446
14470
|
common: derived$1,
|
|
14447
|
-
self: self$
|
|
14471
|
+
self: self$1F
|
|
14448
14472
|
};
|
|
14449
14473
|
|
|
14450
14474
|
const FALLBACK_ICON = "�";
|
|
@@ -14458,7 +14482,7 @@ const UIconImpl = defineComponent({
|
|
|
14458
14482
|
mergedIconPacksRef,
|
|
14459
14483
|
inlineThemeDisabled
|
|
14460
14484
|
} = useConfig(props);
|
|
14461
|
-
const themeRef = useTheme("Icon", "-icon", style$
|
|
14485
|
+
const themeRef = useTheme("Icon", "-icon", style$1Y, iconLight, props, mergedClsPrefixRef);
|
|
14462
14486
|
const cssVarsRef = computed(() => {
|
|
14463
14487
|
const {
|
|
14464
14488
|
depth
|
|
@@ -14599,7 +14623,7 @@ var commonVars$b = {
|
|
|
14599
14623
|
avatarSize: "16px"
|
|
14600
14624
|
};
|
|
14601
14625
|
|
|
14602
|
-
function self$
|
|
14626
|
+
function self$1E(vars) {
|
|
14603
14627
|
const {
|
|
14604
14628
|
heightHuge,
|
|
14605
14629
|
fontBodyLarge,
|
|
@@ -14629,16 +14653,16 @@ function self$1D(vars) {
|
|
|
14629
14653
|
const accountOptionLight = {
|
|
14630
14654
|
name: "AccountOption",
|
|
14631
14655
|
common: derived,
|
|
14632
|
-
self: self$
|
|
14656
|
+
self: self$1E
|
|
14633
14657
|
};
|
|
14634
14658
|
|
|
14635
14659
|
const accountOptionDark = {
|
|
14636
14660
|
name: "AccountOption",
|
|
14637
14661
|
common: derived$1,
|
|
14638
|
-
self: self$
|
|
14662
|
+
self: self$1E
|
|
14639
14663
|
};
|
|
14640
14664
|
|
|
14641
|
-
var style$
|
|
14665
|
+
var style$1X = cB("base-account-option", `
|
|
14642
14666
|
display: flex;
|
|
14643
14667
|
align-items: center;
|
|
14644
14668
|
position: relative;
|
|
@@ -14693,7 +14717,7 @@ var UBaseAccountOption = defineComponent({
|
|
|
14693
14717
|
const themeRef = useTheme(
|
|
14694
14718
|
"AccountOption",
|
|
14695
14719
|
"-base-account-option",
|
|
14696
|
-
style$
|
|
14720
|
+
style$1X,
|
|
14697
14721
|
accountOptionLight,
|
|
14698
14722
|
props,
|
|
14699
14723
|
mergedClsPrefixRef
|
|
@@ -14769,6 +14793,546 @@ var UBaseAccountOption = defineComponent({
|
|
|
14769
14793
|
}
|
|
14770
14794
|
});
|
|
14771
14795
|
|
|
14796
|
+
var commonVariables$6 = {
|
|
14797
|
+
heightSmall: "36px",
|
|
14798
|
+
heightMedium: "48px",
|
|
14799
|
+
heightLarge: "56px",
|
|
14800
|
+
paddingSmall: "0 12px",
|
|
14801
|
+
paddingMedium: "0 16px",
|
|
14802
|
+
paddingLarge: "0 24px",
|
|
14803
|
+
borderRadiusSmall: "8px",
|
|
14804
|
+
borderRadiusMedium: "12px",
|
|
14805
|
+
borderRadiusLarge: "16px",
|
|
14806
|
+
iconSizeSmall: "16px",
|
|
14807
|
+
iconSizeMedium: "20px",
|
|
14808
|
+
iconSizeLarge: "24px",
|
|
14809
|
+
iconMargin: "8px",
|
|
14810
|
+
borderWidth: "1px",
|
|
14811
|
+
focusRingWidth: "2px",
|
|
14812
|
+
spinnerStrokeWidth: "3.7px"
|
|
14813
|
+
};
|
|
14814
|
+
|
|
14815
|
+
const TRANSPARENT = "transparent";
|
|
14816
|
+
function self$1D(vars) {
|
|
14817
|
+
const {
|
|
14818
|
+
fontFamilyWixMadeforDisplay,
|
|
14819
|
+
fontBodyMedium,
|
|
14820
|
+
lineHeightBodyMedium,
|
|
14821
|
+
fontWeightStrong,
|
|
14822
|
+
textPrimary,
|
|
14823
|
+
staticBlack,
|
|
14824
|
+
staticWhite,
|
|
14825
|
+
accentBrand,
|
|
14826
|
+
accentBrandHover,
|
|
14827
|
+
accentError,
|
|
14828
|
+
accentErrorHover,
|
|
14829
|
+
accentErrorSubtle,
|
|
14830
|
+
accentNeutral,
|
|
14831
|
+
accentNeutralHover,
|
|
14832
|
+
accentBorder,
|
|
14833
|
+
accentFocusRing,
|
|
14834
|
+
accentDisabled,
|
|
14835
|
+
accentDisabledContent,
|
|
14836
|
+
accentPressedOverlay
|
|
14837
|
+
} = vars;
|
|
14838
|
+
return {
|
|
14839
|
+
...commonVariables$6,
|
|
14840
|
+
fontFamily: fontFamilyWixMadeforDisplay,
|
|
14841
|
+
fontSize: fontBodyMedium,
|
|
14842
|
+
lineHeight: lineHeightBodyMedium,
|
|
14843
|
+
fontWeight: fontWeightStrong,
|
|
14844
|
+
letterSpacing: "0.1px",
|
|
14845
|
+
pressedOverlayColor: accentPressedOverlay,
|
|
14846
|
+
focusRingColor: accentFocusRing,
|
|
14847
|
+
textColorDisabled: accentDisabledContent,
|
|
14848
|
+
colorPrimary: accentBrand,
|
|
14849
|
+
colorPrimaryHover: accentBrandHover,
|
|
14850
|
+
textColorPrimary: staticWhite,
|
|
14851
|
+
textColorPrimaryHover: staticWhite,
|
|
14852
|
+
borderColorPrimary: TRANSPARENT,
|
|
14853
|
+
colorPrimaryDisabled: accentDisabled,
|
|
14854
|
+
borderColorPrimaryDisabled: TRANSPARENT,
|
|
14855
|
+
colorPrimaryNegative: accentError,
|
|
14856
|
+
colorPrimaryNegativeHover: accentErrorHover,
|
|
14857
|
+
textColorPrimaryNegative: staticWhite,
|
|
14858
|
+
textColorPrimaryNegativeHover: staticWhite,
|
|
14859
|
+
borderColorPrimaryNegative: TRANSPARENT,
|
|
14860
|
+
colorPrimaryNegativeDisabled: accentDisabled,
|
|
14861
|
+
borderColorPrimaryNegativeDisabled: TRANSPARENT,
|
|
14862
|
+
colorSecondary: accentNeutral,
|
|
14863
|
+
colorSecondaryHover: accentNeutralHover,
|
|
14864
|
+
textColorSecondary: staticBlack,
|
|
14865
|
+
textColorSecondaryHover: staticBlack,
|
|
14866
|
+
borderColorSecondary: accentBorder,
|
|
14867
|
+
colorSecondaryDisabled: accentDisabled,
|
|
14868
|
+
borderColorSecondaryDisabled: accentNeutral,
|
|
14869
|
+
colorTertiary: TRANSPARENT,
|
|
14870
|
+
colorTertiaryHover: accentNeutral,
|
|
14871
|
+
textColorTertiary: textPrimary,
|
|
14872
|
+
textColorTertiaryHover: staticBlack,
|
|
14873
|
+
borderColorTertiary: TRANSPARENT,
|
|
14874
|
+
colorTertiaryDisabled: TRANSPARENT,
|
|
14875
|
+
borderColorTertiaryDisabled: TRANSPARENT,
|
|
14876
|
+
colorTertiaryNegative: TRANSPARENT,
|
|
14877
|
+
colorTertiaryNegativeHover: accentErrorSubtle,
|
|
14878
|
+
textColorTertiaryNegative: accentError,
|
|
14879
|
+
textColorTertiaryNegativeHover: accentError,
|
|
14880
|
+
borderColorTertiaryNegative: TRANSPARENT,
|
|
14881
|
+
colorTertiaryNegativeDisabled: TRANSPARENT,
|
|
14882
|
+
borderColorTertiaryNegativeDisabled: TRANSPARENT,
|
|
14883
|
+
colorGhost: TRANSPARENT,
|
|
14884
|
+
colorGhostHover: TRANSPARENT,
|
|
14885
|
+
textColorGhost: accentBrand,
|
|
14886
|
+
textColorGhostHover: accentBrandHover,
|
|
14887
|
+
borderColorGhost: TRANSPARENT,
|
|
14888
|
+
colorGhostDisabled: TRANSPARENT,
|
|
14889
|
+
borderColorGhostDisabled: TRANSPARENT,
|
|
14890
|
+
colorGhostNegative: TRANSPARENT,
|
|
14891
|
+
colorGhostNegativeHover: TRANSPARENT,
|
|
14892
|
+
textColorGhostNegative: accentError,
|
|
14893
|
+
textColorGhostNegativeHover: accentErrorHover,
|
|
14894
|
+
borderColorGhostNegative: TRANSPARENT,
|
|
14895
|
+
colorGhostNegativeDisabled: TRANSPARENT,
|
|
14896
|
+
borderColorGhostNegativeDisabled: TRANSPARENT
|
|
14897
|
+
};
|
|
14898
|
+
}
|
|
14899
|
+
const buttonV3Light = {
|
|
14900
|
+
name: "ButtonV3",
|
|
14901
|
+
common: derived,
|
|
14902
|
+
self: self$1D
|
|
14903
|
+
};
|
|
14904
|
+
|
|
14905
|
+
const buttonV3Dark = {
|
|
14906
|
+
name: "ButtonV3",
|
|
14907
|
+
common: derived$1,
|
|
14908
|
+
self: self$1D
|
|
14909
|
+
};
|
|
14910
|
+
|
|
14911
|
+
const buttonV3Props = {
|
|
14912
|
+
...useTheme.props,
|
|
14913
|
+
type: {
|
|
14914
|
+
type: String,
|
|
14915
|
+
default: "primary"
|
|
14916
|
+
},
|
|
14917
|
+
tone: {
|
|
14918
|
+
type: String,
|
|
14919
|
+
default: "default"
|
|
14920
|
+
},
|
|
14921
|
+
size: String,
|
|
14922
|
+
iconOnly: Boolean,
|
|
14923
|
+
block: Boolean,
|
|
14924
|
+
disabled: Boolean,
|
|
14925
|
+
loading: Boolean,
|
|
14926
|
+
focusable: {
|
|
14927
|
+
type: Boolean,
|
|
14928
|
+
default: true
|
|
14929
|
+
},
|
|
14930
|
+
tag: {
|
|
14931
|
+
type: String,
|
|
14932
|
+
default: "button"
|
|
14933
|
+
},
|
|
14934
|
+
attrType: {
|
|
14935
|
+
type: String,
|
|
14936
|
+
default: "button"
|
|
14937
|
+
},
|
|
14938
|
+
onClick: [Function, Array]
|
|
14939
|
+
};
|
|
14940
|
+
|
|
14941
|
+
var style$1W = c$1([c$1("@keyframes u-button-v3-spin", `
|
|
14942
|
+
from {
|
|
14943
|
+
transform: rotate(0deg);
|
|
14944
|
+
}
|
|
14945
|
+
to {
|
|
14946
|
+
transform: rotate(360deg);
|
|
14947
|
+
}
|
|
14948
|
+
`), cB("button-v3", `
|
|
14949
|
+
box-sizing: border-box;
|
|
14950
|
+
position: relative;
|
|
14951
|
+
display: inline-flex;
|
|
14952
|
+
flex-wrap: nowrap;
|
|
14953
|
+
flex-shrink: 0;
|
|
14954
|
+
align-items: center;
|
|
14955
|
+
justify-content: center;
|
|
14956
|
+
gap: var(--u-icon-margin);
|
|
14957
|
+
margin: 0;
|
|
14958
|
+
max-width: 100%;
|
|
14959
|
+
height: var(--u-height);
|
|
14960
|
+
padding: var(--u-padding);
|
|
14961
|
+
border: var(--u-border-width) solid var(--u-border-color);
|
|
14962
|
+
border-radius: var(--u-border-radius);
|
|
14963
|
+
background-color: var(--u-color);
|
|
14964
|
+
color: var(--u-text-color);
|
|
14965
|
+
font-family: var(--u-font-family);
|
|
14966
|
+
font-size: var(--u-font-size);
|
|
14967
|
+
line-height: var(--u-line-height);
|
|
14968
|
+
font-weight: var(--u-font-weight);
|
|
14969
|
+
letter-spacing: var(--u-letter-spacing);
|
|
14970
|
+
text-align: center;
|
|
14971
|
+
text-decoration: none;
|
|
14972
|
+
white-space: nowrap;
|
|
14973
|
+
cursor: pointer;
|
|
14974
|
+
outline: none;
|
|
14975
|
+
user-select: none;
|
|
14976
|
+
-webkit-user-select: none;
|
|
14977
|
+
-webkit-tap-highlight-color: transparent;
|
|
14978
|
+
transition:
|
|
14979
|
+
color .3s var(--u-bezier),
|
|
14980
|
+
background-color .3s var(--u-bezier),
|
|
14981
|
+
border-color .3s var(--u-bezier);
|
|
14982
|
+
`, [c$1("&::after", `
|
|
14983
|
+
content: "";
|
|
14984
|
+
position: absolute;
|
|
14985
|
+
inset: calc(var(--u-border-width) * -1);
|
|
14986
|
+
z-index: 0;
|
|
14987
|
+
border-radius: inherit;
|
|
14988
|
+
background-color: var(--u-pressed-overlay-color);
|
|
14989
|
+
opacity: 0;
|
|
14990
|
+
pointer-events: none;
|
|
14991
|
+
transition: opacity .2s var(--u-bezier);
|
|
14992
|
+
`), cE("label", `
|
|
14993
|
+
position: relative;
|
|
14994
|
+
z-index: 1;
|
|
14995
|
+
min-width: 0;
|
|
14996
|
+
overflow: hidden;
|
|
14997
|
+
text-overflow: ellipsis;
|
|
14998
|
+
white-space: nowrap;
|
|
14999
|
+
`), cE("icon", `
|
|
15000
|
+
position: relative;
|
|
15001
|
+
z-index: 1;
|
|
15002
|
+
display: inline-flex;
|
|
15003
|
+
align-items: center;
|
|
15004
|
+
justify-content: center;
|
|
15005
|
+
flex: none;
|
|
15006
|
+
width: var(--u-icon-size);
|
|
15007
|
+
height: var(--u-icon-size);
|
|
15008
|
+
font-size: var(--u-icon-size);
|
|
15009
|
+
line-height: 1;
|
|
15010
|
+
`, [c$1("svg", `
|
|
15011
|
+
width: 1em;
|
|
15012
|
+
height: 1em;
|
|
15013
|
+
`)]), cE("spinner", `
|
|
15014
|
+
position: absolute;
|
|
15015
|
+
z-index: 1;
|
|
15016
|
+
top: 50%;
|
|
15017
|
+
left: 50%;
|
|
15018
|
+
transform: translate(-50%, -50%);
|
|
15019
|
+
width: var(--u-icon-size);
|
|
15020
|
+
height: var(--u-icon-size);
|
|
15021
|
+
font-size: var(--u-icon-size);
|
|
15022
|
+
line-height: 1;
|
|
15023
|
+
`), cE("spinner-icon", `
|
|
15024
|
+
display: block;
|
|
15025
|
+
width: 100%;
|
|
15026
|
+
height: 100%;
|
|
15027
|
+
color: currentColor;
|
|
15028
|
+
animation: u-button-v3-spin 1s linear infinite;
|
|
15029
|
+
`), cM("block", `
|
|
15030
|
+
display: flex;
|
|
15031
|
+
width: 100%;
|
|
15032
|
+
`), cM("icon-only", `
|
|
15033
|
+
padding: 0;
|
|
15034
|
+
width: var(--u-height);
|
|
15035
|
+
`), cNotM("disabled", [c$1("&:hover", `
|
|
15036
|
+
background-color: var(--u-color-hover);
|
|
15037
|
+
color: var(--u-text-color-hover);
|
|
15038
|
+
`), c$1("&:focus-visible", `
|
|
15039
|
+
outline: var(--u-focus-ring-width) solid var(--u-focus-ring-color);
|
|
15040
|
+
outline-offset: 0;
|
|
15041
|
+
`), cNotM("loading", [c$1("&:active", `
|
|
15042
|
+
background-color: var(--u-color);
|
|
15043
|
+
`, [c$1("&::after", `
|
|
15044
|
+
opacity: 1;
|
|
15045
|
+
`)])])]), cM("ghost-type", [c$1("&::after", `
|
|
15046
|
+
display: none;
|
|
15047
|
+
`), cNotM("disabled", [c$1("&:focus-visible", `
|
|
15048
|
+
color: var(--u-text-color-hover);
|
|
15049
|
+
`)])]), cM("disabled", `
|
|
15050
|
+
cursor: not-allowed;
|
|
15051
|
+
background-color: var(--u-color-disabled);
|
|
15052
|
+
border-color: var(--u-border-color-disabled);
|
|
15053
|
+
color: var(--u-text-color-disabled);
|
|
15054
|
+
`), cM("loading", `
|
|
15055
|
+
cursor: default;
|
|
15056
|
+
`), cM("loading-text-only", [cE("label", `
|
|
15057
|
+
visibility: hidden;
|
|
15058
|
+
`)])])]);
|
|
15059
|
+
|
|
15060
|
+
const SPINNER_VIEWBOX = 100;
|
|
15061
|
+
const SPINNER_ARC = 0.75;
|
|
15062
|
+
const DEFAULT_SPINNER_STROKE_WIDTH = 18.5;
|
|
15063
|
+
function resolveVariantKey(type, tone) {
|
|
15064
|
+
if (tone !== "negative" || type === "secondary") return type;
|
|
15065
|
+
return `${type}Negative`;
|
|
15066
|
+
}
|
|
15067
|
+
function upperFirst(value) {
|
|
15068
|
+
return value.charAt(0).toUpperCase() + value.slice(1);
|
|
15069
|
+
}
|
|
15070
|
+
function resolveSpinnerStrokeWidth(iconSize, strokeWidth) {
|
|
15071
|
+
const size = Number.parseFloat(iconSize);
|
|
15072
|
+
const stroke = Number.parseFloat(strokeWidth);
|
|
15073
|
+
if (!size || !stroke) return DEFAULT_SPINNER_STROKE_WIDTH;
|
|
15074
|
+
return stroke / size * SPINNER_VIEWBOX;
|
|
15075
|
+
}
|
|
15076
|
+
function renderSpinner(clsPrefix, strokeWidth) {
|
|
15077
|
+
const radius = (SPINNER_VIEWBOX - strokeWidth) / 2;
|
|
15078
|
+
const circumference = 2 * Math.PI * radius;
|
|
15079
|
+
const arc = SPINNER_ARC * circumference;
|
|
15080
|
+
return h("svg", {
|
|
15081
|
+
class: `${clsPrefix}-button-v3__spinner-icon`,
|
|
15082
|
+
viewBox: `0 0 ${SPINNER_VIEWBOX} ${SPINNER_VIEWBOX}`,
|
|
15083
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15084
|
+
role: "img",
|
|
15085
|
+
"aria-label": "loading"
|
|
15086
|
+
}, [h("circle", {
|
|
15087
|
+
cx: SPINNER_VIEWBOX / 2,
|
|
15088
|
+
cy: SPINNER_VIEWBOX / 2,
|
|
15089
|
+
r: radius,
|
|
15090
|
+
fill: "none",
|
|
15091
|
+
stroke: "currentColor",
|
|
15092
|
+
"stroke-width": strokeWidth,
|
|
15093
|
+
"stroke-linecap": "round",
|
|
15094
|
+
"stroke-dasharray": `${arc} ${circumference - arc}`
|
|
15095
|
+
})]);
|
|
15096
|
+
}
|
|
15097
|
+
function renderIconSlot(options) {
|
|
15098
|
+
const {
|
|
15099
|
+
clsPrefix,
|
|
15100
|
+
slot,
|
|
15101
|
+
showSpinner,
|
|
15102
|
+
strokeWidth,
|
|
15103
|
+
key
|
|
15104
|
+
} = options;
|
|
15105
|
+
if (!showSpinner && !slot) return null;
|
|
15106
|
+
return h("span", {
|
|
15107
|
+
key,
|
|
15108
|
+
class: `${clsPrefix}-button-v3__icon`
|
|
15109
|
+
}, showSpinner ? [renderSpinner(clsPrefix, strokeWidth)] : slot?.());
|
|
15110
|
+
}
|
|
15111
|
+
|
|
15112
|
+
const ButtonV3$1 = defineComponent({
|
|
15113
|
+
name: "ButtonV3",
|
|
15114
|
+
props: buttonV3Props,
|
|
15115
|
+
slots: Object,
|
|
15116
|
+
setup(props, { attrs }) {
|
|
15117
|
+
{
|
|
15118
|
+
watchEffect(() => {
|
|
15119
|
+
if (props.type === "secondary" && props.tone === "negative") {
|
|
15120
|
+
warnOnce(
|
|
15121
|
+
"button-v3",
|
|
15122
|
+
"\u0423 \u0442\u0438\u043F\u0430 `secondary` \u043D\u0435\u0442 \u0442\u043E\u043D\u0430 `negative` \u2014 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u0442\u043E\u043D `default`."
|
|
15123
|
+
);
|
|
15124
|
+
}
|
|
15125
|
+
if (props.iconOnly && !attrs["aria-label"] && !attrs["aria-labelledby"] && !attrs.title) {
|
|
15126
|
+
warnOnce(
|
|
15127
|
+
"button-v3",
|
|
15128
|
+
"\u041A\u043D\u043E\u043F\u043A\u0435 \u0441 `icon-only` \u043D\u0443\u0436\u0435\u043D `aria-label` (\u0438\u043B\u0438 `title`) \u2014 \u0438\u043D\u0430\u0447\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043D\u0435\u043F\u043E\u043D\u044F\u0442\u043D\u043E."
|
|
15129
|
+
);
|
|
15130
|
+
}
|
|
15131
|
+
});
|
|
15132
|
+
}
|
|
15133
|
+
const selfElRef = ref(null);
|
|
15134
|
+
const { inlineThemeDisabled, mergedClsPrefixRef } = useConfig(props);
|
|
15135
|
+
const themeRef = useTheme(
|
|
15136
|
+
"ButtonV3",
|
|
15137
|
+
"-button-v3",
|
|
15138
|
+
style$1W,
|
|
15139
|
+
buttonV3Light,
|
|
15140
|
+
props,
|
|
15141
|
+
mergedClsPrefixRef
|
|
15142
|
+
);
|
|
15143
|
+
const { mergedSizeRef } = useFormItem(
|
|
15144
|
+
{},
|
|
15145
|
+
{
|
|
15146
|
+
defaultSize: "medium",
|
|
15147
|
+
mergedSize: (UFormItem) => {
|
|
15148
|
+
const { size } = props;
|
|
15149
|
+
if (size)
|
|
15150
|
+
return size;
|
|
15151
|
+
const { mergedSize: formItemSize } = UFormItem || {};
|
|
15152
|
+
if (formItemSize)
|
|
15153
|
+
return formItemSize.value;
|
|
15154
|
+
return "medium";
|
|
15155
|
+
}
|
|
15156
|
+
}
|
|
15157
|
+
);
|
|
15158
|
+
const variantKeyRef = computed(
|
|
15159
|
+
() => resolveVariantKey(props.type, props.tone)
|
|
15160
|
+
);
|
|
15161
|
+
const mergedDisabledRef = computed(() => props.disabled);
|
|
15162
|
+
const inertRef = computed(() => props.disabled || props.loading);
|
|
15163
|
+
const mergedFocusableRef = computed(
|
|
15164
|
+
() => props.focusable && !props.disabled
|
|
15165
|
+
);
|
|
15166
|
+
const spinnerStrokeWidthRef = computed(() => {
|
|
15167
|
+
const { self } = themeRef.value;
|
|
15168
|
+
return resolveSpinnerStrokeWidth(
|
|
15169
|
+
self[createKey("iconSize", mergedSizeRef.value)],
|
|
15170
|
+
self.spinnerStrokeWidth
|
|
15171
|
+
);
|
|
15172
|
+
});
|
|
15173
|
+
const handleClick = (e) => {
|
|
15174
|
+
if (inertRef.value) {
|
|
15175
|
+
e.preventDefault();
|
|
15176
|
+
e.stopPropagation();
|
|
15177
|
+
return;
|
|
15178
|
+
}
|
|
15179
|
+
const { onClick } = props;
|
|
15180
|
+
if (onClick)
|
|
15181
|
+
call(onClick, e);
|
|
15182
|
+
};
|
|
15183
|
+
const cssVarsRef = computed(() => {
|
|
15184
|
+
const {
|
|
15185
|
+
common: { cubicBezierEaseInOut },
|
|
15186
|
+
self
|
|
15187
|
+
} = themeRef.value;
|
|
15188
|
+
const {
|
|
15189
|
+
fontFamily,
|
|
15190
|
+
fontSize,
|
|
15191
|
+
lineHeight,
|
|
15192
|
+
fontWeight,
|
|
15193
|
+
letterSpacing,
|
|
15194
|
+
iconMargin,
|
|
15195
|
+
borderWidth,
|
|
15196
|
+
focusRingWidth,
|
|
15197
|
+
focusRingColor,
|
|
15198
|
+
pressedOverlayColor,
|
|
15199
|
+
textColorDisabled
|
|
15200
|
+
} = self;
|
|
15201
|
+
const size = mergedSizeRef.value;
|
|
15202
|
+
const variant = upperFirst(variantKeyRef.value);
|
|
15203
|
+
const colors = self;
|
|
15204
|
+
return {
|
|
15205
|
+
"--u-bezier": cubicBezierEaseInOut,
|
|
15206
|
+
"--u-height": self[createKey("height", size)],
|
|
15207
|
+
"--u-padding": self[createKey("padding", size)],
|
|
15208
|
+
"--u-border-radius": self[createKey("borderRadius", size)],
|
|
15209
|
+
"--u-icon-size": self[createKey("iconSize", size)],
|
|
15210
|
+
"--u-icon-margin": iconMargin,
|
|
15211
|
+
"--u-font-family": fontFamily,
|
|
15212
|
+
"--u-font-size": fontSize,
|
|
15213
|
+
"--u-line-height": lineHeight,
|
|
15214
|
+
"--u-font-weight": fontWeight,
|
|
15215
|
+
"--u-letter-spacing": letterSpacing,
|
|
15216
|
+
"--u-border-width": borderWidth,
|
|
15217
|
+
"--u-focus-ring-width": focusRingWidth,
|
|
15218
|
+
"--u-focus-ring-color": focusRingColor,
|
|
15219
|
+
"--u-pressed-overlay-color": pressedOverlayColor,
|
|
15220
|
+
"--u-color": colors[`color${variant}`],
|
|
15221
|
+
"--u-color-hover": colors[`color${variant}Hover`],
|
|
15222
|
+
"--u-color-disabled": colors[`color${variant}Disabled`],
|
|
15223
|
+
"--u-text-color": colors[`textColor${variant}`],
|
|
15224
|
+
"--u-text-color-hover": colors[`textColor${variant}Hover`],
|
|
15225
|
+
"--u-text-color-disabled": textColorDisabled,
|
|
15226
|
+
"--u-border-color": colors[`borderColor${variant}`],
|
|
15227
|
+
"--u-border-color-disabled": colors[`borderColor${variant}Disabled`]
|
|
15228
|
+
};
|
|
15229
|
+
});
|
|
15230
|
+
const themeClassHashRef = computed(
|
|
15231
|
+
() => `${variantKeyRef.value}-${mergedSizeRef.value}`
|
|
15232
|
+
);
|
|
15233
|
+
const themeClassHandle = inlineThemeDisabled ? useThemeClass("button-v3", themeClassHashRef, cssVarsRef, props) : void 0;
|
|
15234
|
+
return {
|
|
15235
|
+
selfElRef,
|
|
15236
|
+
mergedClsPrefix: mergedClsPrefixRef,
|
|
15237
|
+
mergedSize: mergedSizeRef,
|
|
15238
|
+
mergedDisabled: mergedDisabledRef,
|
|
15239
|
+
mergedFocusable: mergedFocusableRef,
|
|
15240
|
+
inert: inertRef,
|
|
15241
|
+
spinnerStrokeWidth: spinnerStrokeWidthRef,
|
|
15242
|
+
handleClick,
|
|
15243
|
+
cssVars: inlineThemeDisabled ? void 0 : cssVarsRef,
|
|
15244
|
+
themeClass: themeClassHandle?.themeClass,
|
|
15245
|
+
onRender: themeClassHandle?.onRender
|
|
15246
|
+
};
|
|
15247
|
+
},
|
|
15248
|
+
render() {
|
|
15249
|
+
const {
|
|
15250
|
+
$slots,
|
|
15251
|
+
mergedClsPrefix: clsPrefix,
|
|
15252
|
+
tag: Component,
|
|
15253
|
+
iconOnly,
|
|
15254
|
+
loading,
|
|
15255
|
+
mergedDisabled,
|
|
15256
|
+
inert,
|
|
15257
|
+
spinnerStrokeWidth: strokeWidth,
|
|
15258
|
+
onRender
|
|
15259
|
+
} = this;
|
|
15260
|
+
onRender?.();
|
|
15261
|
+
const iconStartSlot = $slots["icon-start"];
|
|
15262
|
+
const iconEndSlot = $slots["icon-end"];
|
|
15263
|
+
const hasIconStart = !!iconStartSlot;
|
|
15264
|
+
const hasIconEnd = !!iconEndSlot;
|
|
15265
|
+
const centeredSpinner = loading && !iconOnly && !hasIconStart && !hasIconEnd;
|
|
15266
|
+
const children = [];
|
|
15267
|
+
if (iconOnly) {
|
|
15268
|
+
children.push(
|
|
15269
|
+
renderIconSlot({
|
|
15270
|
+
clsPrefix,
|
|
15271
|
+
slot: iconStartSlot || $slots.default,
|
|
15272
|
+
showSpinner: loading,
|
|
15273
|
+
strokeWidth,
|
|
15274
|
+
key: "icon"
|
|
15275
|
+
})
|
|
15276
|
+
);
|
|
15277
|
+
} else {
|
|
15278
|
+
children.push(
|
|
15279
|
+
renderIconSlot({
|
|
15280
|
+
clsPrefix,
|
|
15281
|
+
slot: iconStartSlot,
|
|
15282
|
+
showSpinner: loading && hasIconStart,
|
|
15283
|
+
strokeWidth,
|
|
15284
|
+
key: "icon-start"
|
|
15285
|
+
})
|
|
15286
|
+
);
|
|
15287
|
+
if ($slots.default) {
|
|
15288
|
+
children.push(
|
|
15289
|
+
/* @__PURE__ */ h("span", { class: `${clsPrefix}-button-v3__label` }, $slots.default())
|
|
15290
|
+
);
|
|
15291
|
+
}
|
|
15292
|
+
children.push(
|
|
15293
|
+
renderIconSlot({
|
|
15294
|
+
clsPrefix,
|
|
15295
|
+
slot: iconEndSlot,
|
|
15296
|
+
showSpinner: loading && !hasIconStart && hasIconEnd,
|
|
15297
|
+
strokeWidth,
|
|
15298
|
+
key: "icon-end"
|
|
15299
|
+
})
|
|
15300
|
+
);
|
|
15301
|
+
if (centeredSpinner) {
|
|
15302
|
+
children.push(
|
|
15303
|
+
/* @__PURE__ */ h("span", { class: `${clsPrefix}-button-v3__spinner` }, renderSpinner(clsPrefix, strokeWidth))
|
|
15304
|
+
);
|
|
15305
|
+
}
|
|
15306
|
+
}
|
|
15307
|
+
return /* @__PURE__ */ h(
|
|
15308
|
+
Component,
|
|
15309
|
+
{
|
|
15310
|
+
ref: "selfElRef",
|
|
15311
|
+
class: [
|
|
15312
|
+
`${clsPrefix}-button-v3`,
|
|
15313
|
+
this.themeClass,
|
|
15314
|
+
`${clsPrefix}-button-v3--${this.type}-type`,
|
|
15315
|
+
`${clsPrefix}-button-v3--${this.tone}-tone`,
|
|
15316
|
+
`${clsPrefix}-button-v3--${this.mergedSize}-size`,
|
|
15317
|
+
iconOnly && `${clsPrefix}-button-v3--icon-only`,
|
|
15318
|
+
this.block && `${clsPrefix}-button-v3--block`,
|
|
15319
|
+
mergedDisabled && `${clsPrefix}-button-v3--disabled`,
|
|
15320
|
+
loading && `${clsPrefix}-button-v3--loading`,
|
|
15321
|
+
centeredSpinner && `${clsPrefix}-button-v3--loading-text-only`
|
|
15322
|
+
],
|
|
15323
|
+
style: this.cssVars,
|
|
15324
|
+
type: Component === "button" ? this.attrType : void 0,
|
|
15325
|
+
disabled: Component === "button" ? mergedDisabled : void 0,
|
|
15326
|
+
tabindex: this.mergedFocusable ? 0 : -1,
|
|
15327
|
+
"aria-disabled": inert ? "true" : void 0,
|
|
15328
|
+
"aria-busy": loading ? "true" : void 0,
|
|
15329
|
+
onClick: this.handleClick
|
|
15330
|
+
},
|
|
15331
|
+
children
|
|
15332
|
+
);
|
|
15333
|
+
}
|
|
15334
|
+
});
|
|
15335
|
+
|
|
14772
15336
|
const checkboxGroupInjectionKey = createInjectionKey("u-checkbox-group");
|
|
14773
15337
|
const checkboxBaseProps = {
|
|
14774
15338
|
size: String,
|
|
@@ -15035,7 +15599,7 @@ var ArrowUpIcon = defineComponent({
|
|
|
15035
15599
|
|
|
15036
15600
|
function replaceable(name, icon) {
|
|
15037
15601
|
return defineComponent({
|
|
15038
|
-
name: upperFirst(name),
|
|
15602
|
+
name: upperFirst$1(name),
|
|
15039
15603
|
setup() {
|
|
15040
15604
|
const mergedIconsRef = inject(
|
|
15041
15605
|
configProviderInjectionKey,
|
|
@@ -16147,7 +16711,7 @@ var ZoomOutIcon = replaceable(
|
|
|
16147
16711
|
|
|
16148
16712
|
const {
|
|
16149
16713
|
cubicBezierEaseInOut: cubicBezierEaseInOut$4
|
|
16150
|
-
} = commonVariables$
|
|
16714
|
+
} = commonVariables$7;
|
|
16151
16715
|
function iconSwitchTransition({
|
|
16152
16716
|
originalTransform = "",
|
|
16153
16717
|
left = 0,
|
|
@@ -16757,7 +17321,7 @@ var UBaseLoading = defineComponent({
|
|
|
16757
17321
|
|
|
16758
17322
|
const {
|
|
16759
17323
|
cubicBezierEaseInOut: cubicBezierEaseInOut$3
|
|
16760
|
-
} = commonVariables$
|
|
17324
|
+
} = commonVariables$7;
|
|
16761
17325
|
function fadeInTransition({
|
|
16762
17326
|
name = "fade-in",
|
|
16763
17327
|
enterDuration = "0.2s",
|
|
@@ -21903,7 +22467,7 @@ const buttonRtl = {
|
|
|
21903
22467
|
|
|
21904
22468
|
const {
|
|
21905
22469
|
cubicBezierEaseInOut: cubicBezierEaseInOut$2
|
|
21906
|
-
} = commonVariables$
|
|
22470
|
+
} = commonVariables$7;
|
|
21907
22471
|
function fadeInWidthExpandTransition({
|
|
21908
22472
|
duration = ".2s",
|
|
21909
22473
|
delay = ".1s"
|
|
@@ -22826,7 +23390,7 @@ const {
|
|
|
22826
23390
|
cubicBezierEaseInOut: cubicBezierEaseInOut$1,
|
|
22827
23391
|
cubicBezierEaseOut: cubicBezierEaseOut$6,
|
|
22828
23392
|
cubicBezierEaseIn: cubicBezierEaseIn$5
|
|
22829
|
-
} = commonVariables$
|
|
23393
|
+
} = commonVariables$7;
|
|
22830
23394
|
function fadeInHeightExpandTransition({
|
|
22831
23395
|
overflow = "hidden",
|
|
22832
23396
|
duration = ".3s",
|
|
@@ -25013,7 +25577,7 @@ var SelectMenuSearch = defineComponent({
|
|
|
25013
25577
|
const {
|
|
25014
25578
|
cubicBezierEaseIn: cubicBezierEaseIn$4,
|
|
25015
25579
|
cubicBezierEaseOut: cubicBezierEaseOut$5
|
|
25016
|
-
} = commonVariables$
|
|
25580
|
+
} = commonVariables$7;
|
|
25017
25581
|
function fadeInScaleUpTransition({
|
|
25018
25582
|
transformOrigin = "inherit",
|
|
25019
25583
|
duration = ".2s",
|
|
@@ -29072,7 +29636,7 @@ var SlotMachineNumber = defineComponent({
|
|
|
29072
29636
|
|
|
29073
29637
|
const {
|
|
29074
29638
|
cubicBezierEaseOut: cubicBezierEaseOut$4
|
|
29075
|
-
} = commonVariables$
|
|
29639
|
+
} = commonVariables$7;
|
|
29076
29640
|
function fadeUpWidthExpandTransition({
|
|
29077
29641
|
duration = ".2s"
|
|
29078
29642
|
} = {}) {
|
|
@@ -34151,6 +34715,24 @@ var _UButtonGroup = defineComponent({
|
|
|
34151
34715
|
}
|
|
34152
34716
|
});
|
|
34153
34717
|
|
|
34718
|
+
const ButtonV3 = defineComponent({
|
|
34719
|
+
name: "ButtonV3",
|
|
34720
|
+
props: buttonV3Props,
|
|
34721
|
+
slots: Object,
|
|
34722
|
+
inheritAttrs: false,
|
|
34723
|
+
setup(props, { slots, attrs }) {
|
|
34724
|
+
return () => h(
|
|
34725
|
+
ButtonV3$1,
|
|
34726
|
+
{
|
|
34727
|
+
...props,
|
|
34728
|
+
...attrs
|
|
34729
|
+
},
|
|
34730
|
+
slots
|
|
34731
|
+
);
|
|
34732
|
+
}
|
|
34733
|
+
});
|
|
34734
|
+
const XButtonV3 = ButtonV3;
|
|
34735
|
+
|
|
34154
34736
|
/**
|
|
34155
34737
|
* The {@link addDays} function options.
|
|
34156
34738
|
*/
|
|
@@ -91266,7 +91848,7 @@ var UDrawerBodyWrapper = defineComponent({
|
|
|
91266
91848
|
const {
|
|
91267
91849
|
cubicBezierEaseIn: cubicBezierEaseIn$3,
|
|
91268
91850
|
cubicBezierEaseOut: cubicBezierEaseOut$3
|
|
91269
|
-
} = commonVariables$
|
|
91851
|
+
} = commonVariables$7;
|
|
91270
91852
|
function slideInFromBottomTransition({
|
|
91271
91853
|
duration = "0.3s",
|
|
91272
91854
|
leaveDuration = "0.2s",
|
|
@@ -91290,7 +91872,7 @@ function slideInFromBottomTransition({
|
|
|
91290
91872
|
const {
|
|
91291
91873
|
cubicBezierEaseIn: cubicBezierEaseIn$2,
|
|
91292
91874
|
cubicBezierEaseOut: cubicBezierEaseOut$2
|
|
91293
|
-
} = commonVariables$
|
|
91875
|
+
} = commonVariables$7;
|
|
91294
91876
|
function slideInFromLeftTransition({
|
|
91295
91877
|
duration = "0.3s",
|
|
91296
91878
|
leaveDuration = "0.2s",
|
|
@@ -91314,7 +91896,7 @@ function slideInFromLeftTransition({
|
|
|
91314
91896
|
const {
|
|
91315
91897
|
cubicBezierEaseIn: cubicBezierEaseIn$1,
|
|
91316
91898
|
cubicBezierEaseOut: cubicBezierEaseOut$1
|
|
91317
|
-
} = commonVariables$
|
|
91899
|
+
} = commonVariables$7;
|
|
91318
91900
|
function slideInFromRightTransition({
|
|
91319
91901
|
duration = "0.3s",
|
|
91320
91902
|
leaveDuration = "0.2s",
|
|
@@ -91338,7 +91920,7 @@ function slideInFromRightTransition({
|
|
|
91338
91920
|
const {
|
|
91339
91921
|
cubicBezierEaseIn,
|
|
91340
91922
|
cubicBezierEaseOut
|
|
91341
|
-
} = commonVariables$
|
|
91923
|
+
} = commonVariables$7;
|
|
91342
91924
|
function slideInFromTopTransition({
|
|
91343
91925
|
duration = "0.3s",
|
|
91344
91926
|
leaveDuration = "0.2s",
|
|
@@ -94914,7 +95496,7 @@ Schema.validators = validators;
|
|
|
94914
95496
|
|
|
94915
95497
|
const {
|
|
94916
95498
|
cubicBezierEaseInOut
|
|
94917
|
-
} = commonVariables$
|
|
95499
|
+
} = commonVariables$7;
|
|
94918
95500
|
function fadeDownTransition({
|
|
94919
95501
|
name = "fade-down",
|
|
94920
95502
|
fromOffset = "-4px",
|
|
@@ -123054,6 +123636,8 @@ const UBreadcrumbItem = /* @__PURE__ */wrap(_UBreadcrumbItem);
|
|
|
123054
123636
|
const UButton = /* @__PURE__ */wrap(Button);
|
|
123055
123637
|
const UxButton = /* @__PURE__ */wrap(XButton);
|
|
123056
123638
|
const UButtonGroup = /* @__PURE__ */wrap(_UButtonGroup);
|
|
123639
|
+
const UButtonV3 = /* @__PURE__ */wrap(ButtonV3);
|
|
123640
|
+
const UxButtonV3 = /* @__PURE__ */wrap(XButtonV3);
|
|
123057
123641
|
const UCalendar = /* @__PURE__ */wrap(_UCalendar);
|
|
123058
123642
|
const UCard = /* @__PURE__ */wrap(_UCard);
|
|
123059
123643
|
const UCardList = /* @__PURE__ */wrap(_UCardList);
|
|
@@ -123247,6 +123831,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
123247
123831
|
UBreadcrumbItem: UBreadcrumbItem,
|
|
123248
123832
|
UButton: UButton,
|
|
123249
123833
|
UButtonGroup: UButtonGroup,
|
|
123834
|
+
UButtonV3: UButtonV3,
|
|
123250
123835
|
UCalendar: UCalendar,
|
|
123251
123836
|
UCard: UCard,
|
|
123252
123837
|
UCardList: UCardList,
|
|
@@ -123416,6 +124001,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
123416
124001
|
UVirtualList: UVirtualList,
|
|
123417
124002
|
UWatermark: UWatermark,
|
|
123418
124003
|
UxButton: UxButton,
|
|
124004
|
+
UxButtonV3: UxButtonV3,
|
|
123419
124005
|
aProps: aProps,
|
|
123420
124006
|
actionCardDark: actionCardDark,
|
|
123421
124007
|
actionCardLight: actionCardLight,
|
|
@@ -123433,6 +124019,9 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
123433
124019
|
breadcrumbProps: breadcrumbProps,
|
|
123434
124020
|
buttonGroupProps: buttonGroupProps,
|
|
123435
124021
|
buttonProps: buttonProps,
|
|
124022
|
+
buttonV3Dark: buttonV3Dark,
|
|
124023
|
+
buttonV3Light: buttonV3Light,
|
|
124024
|
+
buttonV3Props: buttonV3Props,
|
|
123436
124025
|
calendarProps: calendarProps,
|
|
123437
124026
|
cardListProps: cardListProps,
|
|
123438
124027
|
cardProps: cardProps,
|
|
@@ -123632,7 +124221,7 @@ function useThemeVars() {
|
|
|
123632
124221
|
});
|
|
123633
124222
|
}
|
|
123634
124223
|
|
|
123635
|
-
var version = "
|
|
124224
|
+
var version = "3.0.0-alpha.0";
|
|
123636
124225
|
|
|
123637
124226
|
function create({
|
|
123638
124227
|
componentPrefix = "U",
|
|
@@ -123702,6 +124291,7 @@ const lightTheme = {
|
|
|
123702
124291
|
Breadcrumb: breadcrumbLight,
|
|
123703
124292
|
Button: buttonLight,
|
|
123704
124293
|
ButtonGroup: buttonGroupLight,
|
|
124294
|
+
ButtonV3: buttonV3Light,
|
|
123705
124295
|
Calendar: calendarLight,
|
|
123706
124296
|
Card: cardLight,
|
|
123707
124297
|
CardList: cardListLight,
|
|
@@ -124327,6 +124917,7 @@ const darkTheme = {
|
|
|
124327
124917
|
Breadcrumb: breadcrumbDark,
|
|
124328
124918
|
Button: buttonDark,
|
|
124329
124919
|
ButtonGroup: buttonGroupDark,
|
|
124920
|
+
ButtonV3: buttonV3Dark,
|
|
124330
124921
|
Calendar: calendarDark,
|
|
124331
124922
|
Card: cardDark$1,
|
|
124332
124923
|
CardList: cardDark,
|
|
@@ -124437,4 +125028,4 @@ function createTheme(name, componentThemes) {
|
|
|
124437
125028
|
return theme;
|
|
124438
125029
|
}
|
|
124439
125030
|
|
|
124440
|
-
export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageBubbleAttachmentStatus, MessageBubbleServiceVariant, MessageBubbleStatus, MessageBubbleType, MessageStatus, a as NA, p as NP, UActionCard, UAffix, UAlert, UAnchor, UAnchorLink, UAutoComplete, UAvatar, UAvatarGroup, UBackTop, UBadge, UBlockquote, UBreadcrumb, UBreadcrumbItem, UButton, UButtonGroup, UCalendar, UCard, UCardList, UCarousel, UCarouselItem, UCascader, UChat, UChatListItems, UChatMainArea, UChatMessages, UCheckbox, UCheckboxGroup, UCode, UCol, UCollapse, UCollapseItem, UCollapseTransition, UColorPicker, UConfigProvider, UCountdown, UCrop, UDataTable, UDatePicker, UDatePickerV2, UDescriptions, UDescriptionsItem, UDialog, UDialogProvider, UDivider, UDrawer, UDrawerContent, UDropdown, UDynamicInput, UDynamicTags, UEl, UElement, UEllipsis, UEmpty, UEquation, UFlex, UFloatButton, UFloatButtonGroup, UForm, UFormItem, UFormItemCol, UFormItemGi, UFormItemGridItem, UFormItemRow, UGi, UGlobalStyle, UGradientText, UGrid, UGridItem, UH1, UH2, UH3, UH4, UH5, UH6, UHeader, UHeaderActions, UHeaderDesktopLayout, HeaderMobile as UHeaderMobile, UHeaderMobileLayout, UHeaderNavigation, UHeaderSearchDesktop, UHeaderSearchMobile, UHeaderSearchResults, UHeatmap, UHighlight, UHr, UIcon, UIconBar, UIconBarItem, UIconPack, UIconWrapper, UImage, UImageGroup, UImagePreview, UInfiniteScroll, UInput, UInputGroup, UInputGroupLabel, UInputNumber, UInputOtp, UKanban, UKanbanCard, UKanbanColumn, ULayout, ULayoutContent, ULayoutFooter, ULayoutHeader, ULayoutSider, ULegacyTransfer, ULi, UList, UListItem, ULoadingBarProvider, ULog, UMappingCard, UMappingCardList, UMarquee, UMention, UMenu, UMessageBubble, UMessageProvider, UModal, UModalFullscreen, UModalProvider, UNotificationProvider, UNumberAnimation, UOl, UPageHeader, UPagination, UPerformantEllipsis, UPopconfirm, UPopover, UPopselect, UProgress, UQrCode, URadio, URadioButton, URadioGroup, URate, UResult, URow, USafeTopScrollbar, UScrollbar, USelect, USkeleton, USlider, USpace, USpin, USplit, UStatistic, UStatus, UStep, USteps, USwitch, UTab, UTabPane, UTable, UTabs, UTag, UTagGroup, UTbody, UTd, UText, UTh, UThead, ThemeEditor as UThemeEditor, UThing, UTime, UTimePicker, UTimeline, UTimelineItem, UToggleButton, UTooltip, UTr, UTransfer, UTree, UTreeSelect, UUl, UUpload, UUploadDragger, UUploadFileList, UUploadTrigger, UVirtualList, UWatermark, UxButton, UzumUiResolver, aProps, actionCardDark, actionCardLight, affixProps, alertDark, alertProps, anchorDark, anchorLinkProps, anchorProps, autoCompleteDark, autoCompleteProps, avatarDark, avatarGroupProps, avatarProps, backTopDark, backTopProps, badgeDark, badgeProps, blockquoteProps, breadcrumbDark, breadcrumbItemProps, breadcrumbProps, buttonDark, buttonGroupDark, buttonGroupProps, buttonProps, c$1 as c, cB, cE, cM, cNotM, calendarProps, cardDark$1 as cardDark, cardDark as cardListDark, cardListProps, cardProps, carouselProps, cascaderDark, cascaderProps, checkboxDark, checkboxGroupProps, checkboxProps, codeDark, codeProps, colProps, collapseDark, collapseItemProps, collapseProps, collapseTransitionProps, colorPickerProps, derived$1 as commonDark, derived as commonLight, configProviderProps, countdownProps, create, createDiscreteApi, createLocale, createTheme, cropProps, darkTheme, dataTableDark, dataTableProps, dateEnUs as dateEnUS, datePickerDark, datePickerProps, datePickerV2Dark, datePickerV2Light, dateRuRU, dateUzUZ, dateZhCN, uzumUi as default, descriptionsDark, descriptionsItemProps, descriptionsProps, dialogDark, dialogProps, dialogProviderProps, dividerDark, dividerProps, drawerContentProps, drawerDark, drawerProps, dropdownDark, dropdownProps, dynamicInputDark, dynamicInputProps, dynamicTagsDark, dynamicTagsProps, elementDark, elementProps, ellipsisProps, emptyDark$1 as emptyDark, emptyProps, enUS$1 as enUS, equationProps, flexProps, floatButtonDark, floatButtonGroupDark, floatButtonGroupProps, floatButtonProps, formItemDark as formDark, formItemGiProps, formItemGiProps as formItemGridItemProps, formItemProps, formProps, getMenuItemKey, gridItemProps as giProps, gradientTextDark, gradientTextProps, gridItemProps, gridProps, headerProps$2 as h1Props, headerProps$2 as h2Props, headerProps$2 as h3Props, headerProps$2 as h4Props, headerProps$2 as h5Props, headerProps$2 as h6Props, hasChildren, headerActionsProps, headerDesktopLayoutProps, headerMobileLayoutProps, headerMobileProps, headerNavigationProps, headerProps$1 as headerProps, headerSearchDesktopProps, headerSearchMobileProps, headerSearchResultsProps, HeatmapDark as heatmapDark, heatmapLight, heatmapMockData, heatmapProps, highlightProps, iconBarItemProps, iconBarProps, iconDark$1 as iconDark, iconPackDark, iconPackLight, iconPackProps, iconProps, iconWrapperProps, imageGroupProps, imagePreviewProps, imageProps, infiniteScrollProps, inputDark, inputGroupLabelProps, inputGroupProps, inputNumberDark, inputNumberProps, inputOtpDark, inputOtpProps, inputProps, install, internalSelectMenuDark, internalSelectionDark, isColumnOption, isDividerOption, isGroupOption, isLeafMenuOption, isNotNull, kanbanDark, kanbanLight, kanbanProps, layoutProps as layoutContentProps, layoutDark, layoutFooterProps, headerProps as layoutHeaderProps, layoutProps, layoutSiderProps, transferProps$1 as legacyTransferProps, lightTheme, listDark$1 as listDark, listProps, loadingBarDark, loadingBarProviderProps, logDark, logProps, mappingCardDark, mappingCardLight, marqueeDark, listDark as mentionDark, mentionProps, menuDark, menuProps, messageBubbleDark, messageBubbleProps, messageDark, messageProviderProps, modalDark, modalFullscreenProps, modalProps, modalProviderProps, notificationDark, notificationProviderProps, numberAnimationProps, olProps, pProps, pageHeaderProps, paginationDark, paginationProps, popconfirmDark, popconfirmProps, popoverDark, popoverProps, popselect as popselectDark, popselectProps, progressDark, progressProps, qrCodeProps, radioButtonProps, radioDark, radioGroupProps, radioProps, rateDark, rateProps, renderAsyncIcon, renderBadge, renderConfig, renderIcon, renderOptionLabel, resolvePlacement, resolveTopLevelMenuKey, resultDark, resultProps, rowProps, ruRu as ruRU, safeTopScrollbarProps, scrollbarDark, scrollbarProps, selectDark, selectProps, skeletonProps, sliderDark, sliderProps, spaceDark, spaceProps, spinDark, spinProps, splitProps, statisticDark, statisticProps, emptyDark as statusDark, statusProps, stepProps, stepsDark, stepsProps, switchDark, switchProps, tabPaneProps, tabProps, tableDark, tableProps, tabsDark, tabsProps, tagDark, tagProps, textProps, thingDark, thingProps, timePickerDark, timePickerProps, timeProps, timelineDark, timelineItemProps, timelineProps, toggleButtonDark, toggleButtonProps, tooltipDark, tooltipProps, transferDark$1 as transferDark, transferProps, treeDark, treeGetClickTarget, treeProps, treeSelectDark, treeSelectProps, typographyDark, ulProps, alertRtl as unstableAlertRtl, avatarGroupRtl as unstableAvatarGroupRtl, badgeRtl as unstableBadgeRtl, buttonGroupRtl as unstableButtonGroupRtl, buttonRtl as unstableButtonRtl, cardRtl as unstableCardRtl, checkboxRtl as unstableCheckboxRtl, collapseRtl as unstableCollapseRtl, collapseTransitionRtl as unstableCollapseTransitionRtl, drawerRtl as unstableDrawerRtl, dynamicInputRtl as unstableDynamicInputRtl, inputNumberRtl as unstableInputNumberRtl, inputOtpRtl as unstableInputOtpRtl, inputRtl as unstableInputRtl, listRtl as unstableListRtl, messageRtl as unstableMessageRtl, notificationRtl as unstableNotificationRtl, rtl as unstablePageHeaderRtl, paginationRtl as unstablePaginationRtl, radioRtl as unstableRadioRtl, rowRtl as unstableRowRtl, scrollbarRtl as unstableScrollbarRtl, spaceRtl as unstableSpaceRtl, statisticRtl as unstableStatisticRtl, stepsRtl as unstableStepsRtl, tableRtl as unstableTableRtl, tagRtl as unstableTagRtl, thingRtl as unstableThingRtl, treeRtl as unstableTreeRtl, uploadRtl as unstableUploadRtl, uploadDark, publicDownload as uploadDownload, uploadProps, useDialog, useDialogReactiveList, useLoadingBar, useMessage, useModal, useModalReactiveList, useNotification, useOsTheme, useThemeVars, uzUZ, version, virtualListProps, watermarkDark, watermarkProps, zhCN$1 as zhCN, zindexable };
|
|
125031
|
+
export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageBubbleAttachmentStatus, MessageBubbleServiceVariant, MessageBubbleStatus, MessageBubbleType, MessageStatus, a as NA, p as NP, UActionCard, UAffix, UAlert, UAnchor, UAnchorLink, UAutoComplete, UAvatar, UAvatarGroup, UBackTop, UBadge, UBlockquote, UBreadcrumb, UBreadcrumbItem, UButton, UButtonGroup, UButtonV3, UCalendar, UCard, UCardList, UCarousel, UCarouselItem, UCascader, UChat, UChatListItems, UChatMainArea, UChatMessages, UCheckbox, UCheckboxGroup, UCode, UCol, UCollapse, UCollapseItem, UCollapseTransition, UColorPicker, UConfigProvider, UCountdown, UCrop, UDataTable, UDatePicker, UDatePickerV2, UDescriptions, UDescriptionsItem, UDialog, UDialogProvider, UDivider, UDrawer, UDrawerContent, UDropdown, UDynamicInput, UDynamicTags, UEl, UElement, UEllipsis, UEmpty, UEquation, UFlex, UFloatButton, UFloatButtonGroup, UForm, UFormItem, UFormItemCol, UFormItemGi, UFormItemGridItem, UFormItemRow, UGi, UGlobalStyle, UGradientText, UGrid, UGridItem, UH1, UH2, UH3, UH4, UH5, UH6, UHeader, UHeaderActions, UHeaderDesktopLayout, HeaderMobile as UHeaderMobile, UHeaderMobileLayout, UHeaderNavigation, UHeaderSearchDesktop, UHeaderSearchMobile, UHeaderSearchResults, UHeatmap, UHighlight, UHr, UIcon, UIconBar, UIconBarItem, UIconPack, UIconWrapper, UImage, UImageGroup, UImagePreview, UInfiniteScroll, UInput, UInputGroup, UInputGroupLabel, UInputNumber, UInputOtp, UKanban, UKanbanCard, UKanbanColumn, ULayout, ULayoutContent, ULayoutFooter, ULayoutHeader, ULayoutSider, ULegacyTransfer, ULi, UList, UListItem, ULoadingBarProvider, ULog, UMappingCard, UMappingCardList, UMarquee, UMention, UMenu, UMessageBubble, UMessageProvider, UModal, UModalFullscreen, UModalProvider, UNotificationProvider, UNumberAnimation, UOl, UPageHeader, UPagination, UPerformantEllipsis, UPopconfirm, UPopover, UPopselect, UProgress, UQrCode, URadio, URadioButton, URadioGroup, URate, UResult, URow, USafeTopScrollbar, UScrollbar, USelect, USkeleton, USlider, USpace, USpin, USplit, UStatistic, UStatus, UStep, USteps, USwitch, UTab, UTabPane, UTable, UTabs, UTag, UTagGroup, UTbody, UTd, UText, UTh, UThead, ThemeEditor as UThemeEditor, UThing, UTime, UTimePicker, UTimeline, UTimelineItem, UToggleButton, UTooltip, UTr, UTransfer, UTree, UTreeSelect, UUl, UUpload, UUploadDragger, UUploadFileList, UUploadTrigger, UVirtualList, UWatermark, UxButton, UxButtonV3, UzumUiResolver, aProps, actionCardDark, actionCardLight, affixProps, alertDark, alertProps, anchorDark, anchorLinkProps, anchorProps, autoCompleteDark, autoCompleteProps, avatarDark, avatarGroupProps, avatarProps, backTopDark, backTopProps, badgeDark, badgeProps, blockquoteProps, breadcrumbDark, breadcrumbItemProps, breadcrumbProps, buttonDark, buttonGroupDark, buttonGroupProps, buttonProps, buttonV3Dark, buttonV3Light, buttonV3Props, c$1 as c, cB, cE, cM, cNotM, calendarProps, cardDark$1 as cardDark, cardDark as cardListDark, cardListProps, cardProps, carouselProps, cascaderDark, cascaderProps, checkboxDark, checkboxGroupProps, checkboxProps, codeDark, codeProps, colProps, collapseDark, collapseItemProps, collapseProps, collapseTransitionProps, colorPickerProps, derived$1 as commonDark, derived as commonLight, configProviderProps, countdownProps, create, createDiscreteApi, createLocale, createTheme, cropProps, darkTheme, dataTableDark, dataTableProps, dateEnUs as dateEnUS, datePickerDark, datePickerProps, datePickerV2Dark, datePickerV2Light, dateRuRU, dateUzUZ, dateZhCN, uzumUi as default, descriptionsDark, descriptionsItemProps, descriptionsProps, dialogDark, dialogProps, dialogProviderProps, dividerDark, dividerProps, drawerContentProps, drawerDark, drawerProps, dropdownDark, dropdownProps, dynamicInputDark, dynamicInputProps, dynamicTagsDark, dynamicTagsProps, elementDark, elementProps, ellipsisProps, emptyDark$1 as emptyDark, emptyProps, enUS$1 as enUS, equationProps, flexProps, floatButtonDark, floatButtonGroupDark, floatButtonGroupProps, floatButtonProps, formItemDark as formDark, formItemGiProps, formItemGiProps as formItemGridItemProps, formItemProps, formProps, getMenuItemKey, gridItemProps as giProps, gradientTextDark, gradientTextProps, gridItemProps, gridProps, headerProps$2 as h1Props, headerProps$2 as h2Props, headerProps$2 as h3Props, headerProps$2 as h4Props, headerProps$2 as h5Props, headerProps$2 as h6Props, hasChildren, headerActionsProps, headerDesktopLayoutProps, headerMobileLayoutProps, headerMobileProps, headerNavigationProps, headerProps$1 as headerProps, headerSearchDesktopProps, headerSearchMobileProps, headerSearchResultsProps, HeatmapDark as heatmapDark, heatmapLight, heatmapMockData, heatmapProps, highlightProps, iconBarItemProps, iconBarProps, iconDark$1 as iconDark, iconPackDark, iconPackLight, iconPackProps, iconProps, iconWrapperProps, imageGroupProps, imagePreviewProps, imageProps, infiniteScrollProps, inputDark, inputGroupLabelProps, inputGroupProps, inputNumberDark, inputNumberProps, inputOtpDark, inputOtpProps, inputProps, install, internalSelectMenuDark, internalSelectionDark, isColumnOption, isDividerOption, isGroupOption, isLeafMenuOption, isNotNull, kanbanDark, kanbanLight, kanbanProps, layoutProps as layoutContentProps, layoutDark, layoutFooterProps, headerProps as layoutHeaderProps, layoutProps, layoutSiderProps, transferProps$1 as legacyTransferProps, lightTheme, listDark$1 as listDark, listProps, loadingBarDark, loadingBarProviderProps, logDark, logProps, mappingCardDark, mappingCardLight, marqueeDark, listDark as mentionDark, mentionProps, menuDark, menuProps, messageBubbleDark, messageBubbleProps, messageDark, messageProviderProps, modalDark, modalFullscreenProps, modalProps, modalProviderProps, notificationDark, notificationProviderProps, numberAnimationProps, olProps, pProps, pageHeaderProps, paginationDark, paginationProps, popconfirmDark, popconfirmProps, popoverDark, popoverProps, popselect as popselectDark, popselectProps, progressDark, progressProps, qrCodeProps, radioButtonProps, radioDark, radioGroupProps, radioProps, rateDark, rateProps, renderAsyncIcon, renderBadge, renderConfig, renderIcon, renderOptionLabel, resolvePlacement, resolveTopLevelMenuKey, resultDark, resultProps, rowProps, ruRu as ruRU, safeTopScrollbarProps, scrollbarDark, scrollbarProps, selectDark, selectProps, skeletonProps, sliderDark, sliderProps, spaceDark, spaceProps, spinDark, spinProps, splitProps, statisticDark, statisticProps, emptyDark as statusDark, statusProps, stepProps, stepsDark, stepsProps, switchDark, switchProps, tabPaneProps, tabProps, tableDark, tableProps, tabsDark, tabsProps, tagDark, tagProps, textProps, thingDark, thingProps, timePickerDark, timePickerProps, timeProps, timelineDark, timelineItemProps, timelineProps, toggleButtonDark, toggleButtonProps, tooltipDark, tooltipProps, transferDark$1 as transferDark, transferProps, treeDark, treeGetClickTarget, treeProps, treeSelectDark, treeSelectProps, typographyDark, ulProps, alertRtl as unstableAlertRtl, avatarGroupRtl as unstableAvatarGroupRtl, badgeRtl as unstableBadgeRtl, buttonGroupRtl as unstableButtonGroupRtl, buttonRtl as unstableButtonRtl, cardRtl as unstableCardRtl, checkboxRtl as unstableCheckboxRtl, collapseRtl as unstableCollapseRtl, collapseTransitionRtl as unstableCollapseTransitionRtl, drawerRtl as unstableDrawerRtl, dynamicInputRtl as unstableDynamicInputRtl, inputNumberRtl as unstableInputNumberRtl, inputOtpRtl as unstableInputOtpRtl, inputRtl as unstableInputRtl, listRtl as unstableListRtl, messageRtl as unstableMessageRtl, notificationRtl as unstableNotificationRtl, rtl as unstablePageHeaderRtl, paginationRtl as unstablePaginationRtl, radioRtl as unstableRadioRtl, rowRtl as unstableRowRtl, scrollbarRtl as unstableScrollbarRtl, spaceRtl as unstableSpaceRtl, statisticRtl as unstableStatisticRtl, stepsRtl as unstableStepsRtl, tableRtl as unstableTableRtl, tagRtl as unstableTagRtl, thingRtl as unstableThingRtl, treeRtl as unstableTreeRtl, uploadRtl as unstableUploadRtl, uploadDark, publicDownload as uploadDownload, uploadProps, useDialog, useDialogReactiveList, useLoadingBar, useMessage, useModal, useModalReactiveList, useNotification, useOsTheme, useThemeVars, uzUZ, version, virtualListProps, watermarkDark, watermarkProps, zhCN$1 as zhCN, zindexable };
|