@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/lib/components.d.ts
CHANGED
|
@@ -6529,12 +6529,12 @@ export declare const UxButton: new () => {
|
|
|
6529
6529
|
formmethod?: string | undefined | undefined;
|
|
6530
6530
|
formnovalidate?: (boolean | "true" | "false") | undefined;
|
|
6531
6531
|
formtarget?: string | undefined | undefined;
|
|
6532
|
-
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
6533
|
-
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
6534
6532
|
accesskey?: string | undefined | undefined;
|
|
6535
6533
|
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
6536
6534
|
dir?: string | undefined | undefined;
|
|
6535
|
+
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
6537
6536
|
enterKeyHint?: "search" | "done" | "next" | "enter" | "go" | "previous" | "send" | undefined;
|
|
6537
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
6538
6538
|
inert?: (boolean | "true" | "false") | undefined;
|
|
6539
6539
|
lang?: string | undefined | undefined;
|
|
6540
6540
|
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
@@ -6633,6 +6633,528 @@ export declare const UButtonGroup: import("vue").DefineComponent<import("vue").E
|
|
|
6633
6633
|
readonly size: import("./button").ButtonSize | undefined;
|
|
6634
6634
|
readonly vertical: boolean;
|
|
6635
6635
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6636
|
+
export type * from './button-v3';
|
|
6637
|
+
export { buttonV3Dark, buttonV3Light, buttonV3Props } from './button-v3';
|
|
6638
|
+
export declare const UButtonV3: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6639
|
+
readonly type: {
|
|
6640
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3Type>;
|
|
6641
|
+
readonly default: "primary";
|
|
6642
|
+
};
|
|
6643
|
+
readonly tone: {
|
|
6644
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3Tone>;
|
|
6645
|
+
readonly default: "default";
|
|
6646
|
+
};
|
|
6647
|
+
readonly size: import("vue").PropType<import("./button-v3").ButtonV3Size>;
|
|
6648
|
+
readonly iconOnly: BooleanConstructor;
|
|
6649
|
+
readonly block: BooleanConstructor;
|
|
6650
|
+
readonly disabled: BooleanConstructor;
|
|
6651
|
+
readonly loading: BooleanConstructor;
|
|
6652
|
+
readonly focusable: {
|
|
6653
|
+
readonly type: BooleanConstructor;
|
|
6654
|
+
readonly default: true;
|
|
6655
|
+
};
|
|
6656
|
+
readonly tag: {
|
|
6657
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3Tag>;
|
|
6658
|
+
readonly default: "button";
|
|
6659
|
+
};
|
|
6660
|
+
readonly attrType: {
|
|
6661
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3AttrType>;
|
|
6662
|
+
readonly default: "button";
|
|
6663
|
+
};
|
|
6664
|
+
readonly onClick: import("vue").PropType<import("./button-v3").ButtonV3ClickHandler>;
|
|
6665
|
+
readonly theme: import("vue").PropType<import("./_mixins").Theme<"ButtonV3", {
|
|
6666
|
+
fontFamily: string;
|
|
6667
|
+
fontSize: string;
|
|
6668
|
+
lineHeight: string;
|
|
6669
|
+
fontWeight: string;
|
|
6670
|
+
letterSpacing: string;
|
|
6671
|
+
pressedOverlayColor: string;
|
|
6672
|
+
focusRingColor: string;
|
|
6673
|
+
textColorDisabled: string;
|
|
6674
|
+
colorPrimary: string;
|
|
6675
|
+
colorPrimaryHover: string;
|
|
6676
|
+
textColorPrimary: string;
|
|
6677
|
+
textColorPrimaryHover: string;
|
|
6678
|
+
borderColorPrimary: string;
|
|
6679
|
+
colorPrimaryDisabled: string;
|
|
6680
|
+
borderColorPrimaryDisabled: string;
|
|
6681
|
+
colorPrimaryNegative: string;
|
|
6682
|
+
colorPrimaryNegativeHover: string;
|
|
6683
|
+
textColorPrimaryNegative: string;
|
|
6684
|
+
textColorPrimaryNegativeHover: string;
|
|
6685
|
+
borderColorPrimaryNegative: string;
|
|
6686
|
+
colorPrimaryNegativeDisabled: string;
|
|
6687
|
+
borderColorPrimaryNegativeDisabled: string;
|
|
6688
|
+
colorSecondary: string;
|
|
6689
|
+
colorSecondaryHover: string;
|
|
6690
|
+
textColorSecondary: string;
|
|
6691
|
+
textColorSecondaryHover: string;
|
|
6692
|
+
borderColorSecondary: string;
|
|
6693
|
+
colorSecondaryDisabled: string;
|
|
6694
|
+
borderColorSecondaryDisabled: string;
|
|
6695
|
+
colorTertiary: string;
|
|
6696
|
+
colorTertiaryHover: string;
|
|
6697
|
+
textColorTertiary: string;
|
|
6698
|
+
textColorTertiaryHover: string;
|
|
6699
|
+
borderColorTertiary: string;
|
|
6700
|
+
colorTertiaryDisabled: string;
|
|
6701
|
+
borderColorTertiaryDisabled: string;
|
|
6702
|
+
colorTertiaryNegative: string;
|
|
6703
|
+
colorTertiaryNegativeHover: string;
|
|
6704
|
+
textColorTertiaryNegative: string;
|
|
6705
|
+
textColorTertiaryNegativeHover: string;
|
|
6706
|
+
borderColorTertiaryNegative: string;
|
|
6707
|
+
colorTertiaryNegativeDisabled: string;
|
|
6708
|
+
borderColorTertiaryNegativeDisabled: string;
|
|
6709
|
+
colorGhost: string;
|
|
6710
|
+
colorGhostHover: string;
|
|
6711
|
+
textColorGhost: string;
|
|
6712
|
+
textColorGhostHover: string;
|
|
6713
|
+
borderColorGhost: string;
|
|
6714
|
+
colorGhostDisabled: string;
|
|
6715
|
+
borderColorGhostDisabled: string;
|
|
6716
|
+
colorGhostNegative: string;
|
|
6717
|
+
colorGhostNegativeHover: string;
|
|
6718
|
+
textColorGhostNegative: string;
|
|
6719
|
+
textColorGhostNegativeHover: string;
|
|
6720
|
+
borderColorGhostNegative: string;
|
|
6721
|
+
colorGhostNegativeDisabled: string;
|
|
6722
|
+
borderColorGhostNegativeDisabled: string;
|
|
6723
|
+
heightSmall: string;
|
|
6724
|
+
heightMedium: string;
|
|
6725
|
+
heightLarge: string;
|
|
6726
|
+
paddingSmall: string;
|
|
6727
|
+
paddingMedium: string;
|
|
6728
|
+
paddingLarge: string;
|
|
6729
|
+
borderRadiusSmall: string;
|
|
6730
|
+
borderRadiusMedium: string;
|
|
6731
|
+
borderRadiusLarge: string;
|
|
6732
|
+
iconSizeSmall: string;
|
|
6733
|
+
iconSizeMedium: string;
|
|
6734
|
+
iconSizeLarge: string;
|
|
6735
|
+
iconMargin: string;
|
|
6736
|
+
borderWidth: string;
|
|
6737
|
+
focusRingWidth: string;
|
|
6738
|
+
spinnerStrokeWidth: string;
|
|
6739
|
+
}, any>>;
|
|
6740
|
+
readonly themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"ButtonV3", {
|
|
6741
|
+
fontFamily: string;
|
|
6742
|
+
fontSize: string;
|
|
6743
|
+
lineHeight: string;
|
|
6744
|
+
fontWeight: string;
|
|
6745
|
+
letterSpacing: string;
|
|
6746
|
+
pressedOverlayColor: string;
|
|
6747
|
+
focusRingColor: string;
|
|
6748
|
+
textColorDisabled: string;
|
|
6749
|
+
colorPrimary: string;
|
|
6750
|
+
colorPrimaryHover: string;
|
|
6751
|
+
textColorPrimary: string;
|
|
6752
|
+
textColorPrimaryHover: string;
|
|
6753
|
+
borderColorPrimary: string;
|
|
6754
|
+
colorPrimaryDisabled: string;
|
|
6755
|
+
borderColorPrimaryDisabled: string;
|
|
6756
|
+
colorPrimaryNegative: string;
|
|
6757
|
+
colorPrimaryNegativeHover: string;
|
|
6758
|
+
textColorPrimaryNegative: string;
|
|
6759
|
+
textColorPrimaryNegativeHover: string;
|
|
6760
|
+
borderColorPrimaryNegative: string;
|
|
6761
|
+
colorPrimaryNegativeDisabled: string;
|
|
6762
|
+
borderColorPrimaryNegativeDisabled: string;
|
|
6763
|
+
colorSecondary: string;
|
|
6764
|
+
colorSecondaryHover: string;
|
|
6765
|
+
textColorSecondary: string;
|
|
6766
|
+
textColorSecondaryHover: string;
|
|
6767
|
+
borderColorSecondary: string;
|
|
6768
|
+
colorSecondaryDisabled: string;
|
|
6769
|
+
borderColorSecondaryDisabled: string;
|
|
6770
|
+
colorTertiary: string;
|
|
6771
|
+
colorTertiaryHover: string;
|
|
6772
|
+
textColorTertiary: string;
|
|
6773
|
+
textColorTertiaryHover: string;
|
|
6774
|
+
borderColorTertiary: string;
|
|
6775
|
+
colorTertiaryDisabled: string;
|
|
6776
|
+
borderColorTertiaryDisabled: string;
|
|
6777
|
+
colorTertiaryNegative: string;
|
|
6778
|
+
colorTertiaryNegativeHover: string;
|
|
6779
|
+
textColorTertiaryNegative: string;
|
|
6780
|
+
textColorTertiaryNegativeHover: string;
|
|
6781
|
+
borderColorTertiaryNegative: string;
|
|
6782
|
+
colorTertiaryNegativeDisabled: string;
|
|
6783
|
+
borderColorTertiaryNegativeDisabled: string;
|
|
6784
|
+
colorGhost: string;
|
|
6785
|
+
colorGhostHover: string;
|
|
6786
|
+
textColorGhost: string;
|
|
6787
|
+
textColorGhostHover: string;
|
|
6788
|
+
borderColorGhost: string;
|
|
6789
|
+
colorGhostDisabled: string;
|
|
6790
|
+
borderColorGhostDisabled: string;
|
|
6791
|
+
colorGhostNegative: string;
|
|
6792
|
+
colorGhostNegativeHover: string;
|
|
6793
|
+
textColorGhostNegative: string;
|
|
6794
|
+
textColorGhostNegativeHover: string;
|
|
6795
|
+
borderColorGhostNegative: string;
|
|
6796
|
+
colorGhostNegativeDisabled: string;
|
|
6797
|
+
borderColorGhostNegativeDisabled: string;
|
|
6798
|
+
heightSmall: string;
|
|
6799
|
+
heightMedium: string;
|
|
6800
|
+
heightLarge: string;
|
|
6801
|
+
paddingSmall: string;
|
|
6802
|
+
paddingMedium: string;
|
|
6803
|
+
paddingLarge: string;
|
|
6804
|
+
borderRadiusSmall: string;
|
|
6805
|
+
borderRadiusMedium: string;
|
|
6806
|
+
borderRadiusLarge: string;
|
|
6807
|
+
iconSizeSmall: string;
|
|
6808
|
+
iconSizeMedium: string;
|
|
6809
|
+
iconSizeLarge: string;
|
|
6810
|
+
iconMargin: string;
|
|
6811
|
+
borderWidth: string;
|
|
6812
|
+
focusRingWidth: string;
|
|
6813
|
+
spinnerStrokeWidth: string;
|
|
6814
|
+
}, any>>>;
|
|
6815
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"ButtonV3", {
|
|
6816
|
+
fontFamily: string;
|
|
6817
|
+
fontSize: string;
|
|
6818
|
+
lineHeight: string;
|
|
6819
|
+
fontWeight: string;
|
|
6820
|
+
letterSpacing: string;
|
|
6821
|
+
pressedOverlayColor: string;
|
|
6822
|
+
focusRingColor: string;
|
|
6823
|
+
textColorDisabled: string;
|
|
6824
|
+
colorPrimary: string;
|
|
6825
|
+
colorPrimaryHover: string;
|
|
6826
|
+
textColorPrimary: string;
|
|
6827
|
+
textColorPrimaryHover: string;
|
|
6828
|
+
borderColorPrimary: string;
|
|
6829
|
+
colorPrimaryDisabled: string;
|
|
6830
|
+
borderColorPrimaryDisabled: string;
|
|
6831
|
+
colorPrimaryNegative: string;
|
|
6832
|
+
colorPrimaryNegativeHover: string;
|
|
6833
|
+
textColorPrimaryNegative: string;
|
|
6834
|
+
textColorPrimaryNegativeHover: string;
|
|
6835
|
+
borderColorPrimaryNegative: string;
|
|
6836
|
+
colorPrimaryNegativeDisabled: string;
|
|
6837
|
+
borderColorPrimaryNegativeDisabled: string;
|
|
6838
|
+
colorSecondary: string;
|
|
6839
|
+
colorSecondaryHover: string;
|
|
6840
|
+
textColorSecondary: string;
|
|
6841
|
+
textColorSecondaryHover: string;
|
|
6842
|
+
borderColorSecondary: string;
|
|
6843
|
+
colorSecondaryDisabled: string;
|
|
6844
|
+
borderColorSecondaryDisabled: string;
|
|
6845
|
+
colorTertiary: string;
|
|
6846
|
+
colorTertiaryHover: string;
|
|
6847
|
+
textColorTertiary: string;
|
|
6848
|
+
textColorTertiaryHover: string;
|
|
6849
|
+
borderColorTertiary: string;
|
|
6850
|
+
colorTertiaryDisabled: string;
|
|
6851
|
+
borderColorTertiaryDisabled: string;
|
|
6852
|
+
colorTertiaryNegative: string;
|
|
6853
|
+
colorTertiaryNegativeHover: string;
|
|
6854
|
+
textColorTertiaryNegative: string;
|
|
6855
|
+
textColorTertiaryNegativeHover: string;
|
|
6856
|
+
borderColorTertiaryNegative: string;
|
|
6857
|
+
colorTertiaryNegativeDisabled: string;
|
|
6858
|
+
borderColorTertiaryNegativeDisabled: string;
|
|
6859
|
+
colorGhost: string;
|
|
6860
|
+
colorGhostHover: string;
|
|
6861
|
+
textColorGhost: string;
|
|
6862
|
+
textColorGhostHover: string;
|
|
6863
|
+
borderColorGhost: string;
|
|
6864
|
+
colorGhostDisabled: string;
|
|
6865
|
+
borderColorGhostDisabled: string;
|
|
6866
|
+
colorGhostNegative: string;
|
|
6867
|
+
colorGhostNegativeHover: string;
|
|
6868
|
+
textColorGhostNegative: string;
|
|
6869
|
+
textColorGhostNegativeHover: string;
|
|
6870
|
+
borderColorGhostNegative: string;
|
|
6871
|
+
colorGhostNegativeDisabled: string;
|
|
6872
|
+
borderColorGhostNegativeDisabled: string;
|
|
6873
|
+
heightSmall: string;
|
|
6874
|
+
heightMedium: string;
|
|
6875
|
+
heightLarge: string;
|
|
6876
|
+
paddingSmall: string;
|
|
6877
|
+
paddingMedium: string;
|
|
6878
|
+
paddingLarge: string;
|
|
6879
|
+
borderRadiusSmall: string;
|
|
6880
|
+
borderRadiusMedium: string;
|
|
6881
|
+
borderRadiusLarge: string;
|
|
6882
|
+
iconSizeSmall: string;
|
|
6883
|
+
iconSizeMedium: string;
|
|
6884
|
+
iconSizeLarge: string;
|
|
6885
|
+
iconMargin: string;
|
|
6886
|
+
borderWidth: string;
|
|
6887
|
+
focusRingWidth: string;
|
|
6888
|
+
spinnerStrokeWidth: string;
|
|
6889
|
+
}, any>>>;
|
|
6890
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6891
|
+
[key: string]: any;
|
|
6892
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6893
|
+
readonly type: {
|
|
6894
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3Type>;
|
|
6895
|
+
readonly default: "primary";
|
|
6896
|
+
};
|
|
6897
|
+
readonly tone: {
|
|
6898
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3Tone>;
|
|
6899
|
+
readonly default: "default";
|
|
6900
|
+
};
|
|
6901
|
+
readonly size: import("vue").PropType<import("./button-v3").ButtonV3Size>;
|
|
6902
|
+
readonly iconOnly: BooleanConstructor;
|
|
6903
|
+
readonly block: BooleanConstructor;
|
|
6904
|
+
readonly disabled: BooleanConstructor;
|
|
6905
|
+
readonly loading: BooleanConstructor;
|
|
6906
|
+
readonly focusable: {
|
|
6907
|
+
readonly type: BooleanConstructor;
|
|
6908
|
+
readonly default: true;
|
|
6909
|
+
};
|
|
6910
|
+
readonly tag: {
|
|
6911
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3Tag>;
|
|
6912
|
+
readonly default: "button";
|
|
6913
|
+
};
|
|
6914
|
+
readonly attrType: {
|
|
6915
|
+
readonly type: import("vue").PropType<import("./button-v3").ButtonV3AttrType>;
|
|
6916
|
+
readonly default: "button";
|
|
6917
|
+
};
|
|
6918
|
+
readonly onClick: import("vue").PropType<import("./button-v3").ButtonV3ClickHandler>;
|
|
6919
|
+
readonly theme: import("vue").PropType<import("./_mixins").Theme<"ButtonV3", {
|
|
6920
|
+
fontFamily: string;
|
|
6921
|
+
fontSize: string;
|
|
6922
|
+
lineHeight: string;
|
|
6923
|
+
fontWeight: string;
|
|
6924
|
+
letterSpacing: string;
|
|
6925
|
+
pressedOverlayColor: string;
|
|
6926
|
+
focusRingColor: string;
|
|
6927
|
+
textColorDisabled: string;
|
|
6928
|
+
colorPrimary: string;
|
|
6929
|
+
colorPrimaryHover: string;
|
|
6930
|
+
textColorPrimary: string;
|
|
6931
|
+
textColorPrimaryHover: string;
|
|
6932
|
+
borderColorPrimary: string;
|
|
6933
|
+
colorPrimaryDisabled: string;
|
|
6934
|
+
borderColorPrimaryDisabled: string;
|
|
6935
|
+
colorPrimaryNegative: string;
|
|
6936
|
+
colorPrimaryNegativeHover: string;
|
|
6937
|
+
textColorPrimaryNegative: string;
|
|
6938
|
+
textColorPrimaryNegativeHover: string;
|
|
6939
|
+
borderColorPrimaryNegative: string;
|
|
6940
|
+
colorPrimaryNegativeDisabled: string;
|
|
6941
|
+
borderColorPrimaryNegativeDisabled: string;
|
|
6942
|
+
colorSecondary: string;
|
|
6943
|
+
colorSecondaryHover: string;
|
|
6944
|
+
textColorSecondary: string;
|
|
6945
|
+
textColorSecondaryHover: string;
|
|
6946
|
+
borderColorSecondary: string;
|
|
6947
|
+
colorSecondaryDisabled: string;
|
|
6948
|
+
borderColorSecondaryDisabled: string;
|
|
6949
|
+
colorTertiary: string;
|
|
6950
|
+
colorTertiaryHover: string;
|
|
6951
|
+
textColorTertiary: string;
|
|
6952
|
+
textColorTertiaryHover: string;
|
|
6953
|
+
borderColorTertiary: string;
|
|
6954
|
+
colorTertiaryDisabled: string;
|
|
6955
|
+
borderColorTertiaryDisabled: string;
|
|
6956
|
+
colorTertiaryNegative: string;
|
|
6957
|
+
colorTertiaryNegativeHover: string;
|
|
6958
|
+
textColorTertiaryNegative: string;
|
|
6959
|
+
textColorTertiaryNegativeHover: string;
|
|
6960
|
+
borderColorTertiaryNegative: string;
|
|
6961
|
+
colorTertiaryNegativeDisabled: string;
|
|
6962
|
+
borderColorTertiaryNegativeDisabled: string;
|
|
6963
|
+
colorGhost: string;
|
|
6964
|
+
colorGhostHover: string;
|
|
6965
|
+
textColorGhost: string;
|
|
6966
|
+
textColorGhostHover: string;
|
|
6967
|
+
borderColorGhost: string;
|
|
6968
|
+
colorGhostDisabled: string;
|
|
6969
|
+
borderColorGhostDisabled: string;
|
|
6970
|
+
colorGhostNegative: string;
|
|
6971
|
+
colorGhostNegativeHover: string;
|
|
6972
|
+
textColorGhostNegative: string;
|
|
6973
|
+
textColorGhostNegativeHover: string;
|
|
6974
|
+
borderColorGhostNegative: string;
|
|
6975
|
+
colorGhostNegativeDisabled: string;
|
|
6976
|
+
borderColorGhostNegativeDisabled: string;
|
|
6977
|
+
heightSmall: string;
|
|
6978
|
+
heightMedium: string;
|
|
6979
|
+
heightLarge: string;
|
|
6980
|
+
paddingSmall: string;
|
|
6981
|
+
paddingMedium: string;
|
|
6982
|
+
paddingLarge: string;
|
|
6983
|
+
borderRadiusSmall: string;
|
|
6984
|
+
borderRadiusMedium: string;
|
|
6985
|
+
borderRadiusLarge: string;
|
|
6986
|
+
iconSizeSmall: string;
|
|
6987
|
+
iconSizeMedium: string;
|
|
6988
|
+
iconSizeLarge: string;
|
|
6989
|
+
iconMargin: string;
|
|
6990
|
+
borderWidth: string;
|
|
6991
|
+
focusRingWidth: string;
|
|
6992
|
+
spinnerStrokeWidth: string;
|
|
6993
|
+
}, any>>;
|
|
6994
|
+
readonly themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"ButtonV3", {
|
|
6995
|
+
fontFamily: string;
|
|
6996
|
+
fontSize: string;
|
|
6997
|
+
lineHeight: string;
|
|
6998
|
+
fontWeight: string;
|
|
6999
|
+
letterSpacing: string;
|
|
7000
|
+
pressedOverlayColor: string;
|
|
7001
|
+
focusRingColor: string;
|
|
7002
|
+
textColorDisabled: string;
|
|
7003
|
+
colorPrimary: string;
|
|
7004
|
+
colorPrimaryHover: string;
|
|
7005
|
+
textColorPrimary: string;
|
|
7006
|
+
textColorPrimaryHover: string;
|
|
7007
|
+
borderColorPrimary: string;
|
|
7008
|
+
colorPrimaryDisabled: string;
|
|
7009
|
+
borderColorPrimaryDisabled: string;
|
|
7010
|
+
colorPrimaryNegative: string;
|
|
7011
|
+
colorPrimaryNegativeHover: string;
|
|
7012
|
+
textColorPrimaryNegative: string;
|
|
7013
|
+
textColorPrimaryNegativeHover: string;
|
|
7014
|
+
borderColorPrimaryNegative: string;
|
|
7015
|
+
colorPrimaryNegativeDisabled: string;
|
|
7016
|
+
borderColorPrimaryNegativeDisabled: string;
|
|
7017
|
+
colorSecondary: string;
|
|
7018
|
+
colorSecondaryHover: string;
|
|
7019
|
+
textColorSecondary: string;
|
|
7020
|
+
textColorSecondaryHover: string;
|
|
7021
|
+
borderColorSecondary: string;
|
|
7022
|
+
colorSecondaryDisabled: string;
|
|
7023
|
+
borderColorSecondaryDisabled: string;
|
|
7024
|
+
colorTertiary: string;
|
|
7025
|
+
colorTertiaryHover: string;
|
|
7026
|
+
textColorTertiary: string;
|
|
7027
|
+
textColorTertiaryHover: string;
|
|
7028
|
+
borderColorTertiary: string;
|
|
7029
|
+
colorTertiaryDisabled: string;
|
|
7030
|
+
borderColorTertiaryDisabled: string;
|
|
7031
|
+
colorTertiaryNegative: string;
|
|
7032
|
+
colorTertiaryNegativeHover: string;
|
|
7033
|
+
textColorTertiaryNegative: string;
|
|
7034
|
+
textColorTertiaryNegativeHover: string;
|
|
7035
|
+
borderColorTertiaryNegative: string;
|
|
7036
|
+
colorTertiaryNegativeDisabled: string;
|
|
7037
|
+
borderColorTertiaryNegativeDisabled: string;
|
|
7038
|
+
colorGhost: string;
|
|
7039
|
+
colorGhostHover: string;
|
|
7040
|
+
textColorGhost: string;
|
|
7041
|
+
textColorGhostHover: string;
|
|
7042
|
+
borderColorGhost: string;
|
|
7043
|
+
colorGhostDisabled: string;
|
|
7044
|
+
borderColorGhostDisabled: string;
|
|
7045
|
+
colorGhostNegative: string;
|
|
7046
|
+
colorGhostNegativeHover: string;
|
|
7047
|
+
textColorGhostNegative: string;
|
|
7048
|
+
textColorGhostNegativeHover: string;
|
|
7049
|
+
borderColorGhostNegative: string;
|
|
7050
|
+
colorGhostNegativeDisabled: string;
|
|
7051
|
+
borderColorGhostNegativeDisabled: string;
|
|
7052
|
+
heightSmall: string;
|
|
7053
|
+
heightMedium: string;
|
|
7054
|
+
heightLarge: string;
|
|
7055
|
+
paddingSmall: string;
|
|
7056
|
+
paddingMedium: string;
|
|
7057
|
+
paddingLarge: string;
|
|
7058
|
+
borderRadiusSmall: string;
|
|
7059
|
+
borderRadiusMedium: string;
|
|
7060
|
+
borderRadiusLarge: string;
|
|
7061
|
+
iconSizeSmall: string;
|
|
7062
|
+
iconSizeMedium: string;
|
|
7063
|
+
iconSizeLarge: string;
|
|
7064
|
+
iconMargin: string;
|
|
7065
|
+
borderWidth: string;
|
|
7066
|
+
focusRingWidth: string;
|
|
7067
|
+
spinnerStrokeWidth: string;
|
|
7068
|
+
}, any>>>;
|
|
7069
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"ButtonV3", {
|
|
7070
|
+
fontFamily: string;
|
|
7071
|
+
fontSize: string;
|
|
7072
|
+
lineHeight: string;
|
|
7073
|
+
fontWeight: string;
|
|
7074
|
+
letterSpacing: string;
|
|
7075
|
+
pressedOverlayColor: string;
|
|
7076
|
+
focusRingColor: string;
|
|
7077
|
+
textColorDisabled: string;
|
|
7078
|
+
colorPrimary: string;
|
|
7079
|
+
colorPrimaryHover: string;
|
|
7080
|
+
textColorPrimary: string;
|
|
7081
|
+
textColorPrimaryHover: string;
|
|
7082
|
+
borderColorPrimary: string;
|
|
7083
|
+
colorPrimaryDisabled: string;
|
|
7084
|
+
borderColorPrimaryDisabled: string;
|
|
7085
|
+
colorPrimaryNegative: string;
|
|
7086
|
+
colorPrimaryNegativeHover: string;
|
|
7087
|
+
textColorPrimaryNegative: string;
|
|
7088
|
+
textColorPrimaryNegativeHover: string;
|
|
7089
|
+
borderColorPrimaryNegative: string;
|
|
7090
|
+
colorPrimaryNegativeDisabled: string;
|
|
7091
|
+
borderColorPrimaryNegativeDisabled: string;
|
|
7092
|
+
colorSecondary: string;
|
|
7093
|
+
colorSecondaryHover: string;
|
|
7094
|
+
textColorSecondary: string;
|
|
7095
|
+
textColorSecondaryHover: string;
|
|
7096
|
+
borderColorSecondary: string;
|
|
7097
|
+
colorSecondaryDisabled: string;
|
|
7098
|
+
borderColorSecondaryDisabled: string;
|
|
7099
|
+
colorTertiary: string;
|
|
7100
|
+
colorTertiaryHover: string;
|
|
7101
|
+
textColorTertiary: string;
|
|
7102
|
+
textColorTertiaryHover: string;
|
|
7103
|
+
borderColorTertiary: string;
|
|
7104
|
+
colorTertiaryDisabled: string;
|
|
7105
|
+
borderColorTertiaryDisabled: string;
|
|
7106
|
+
colorTertiaryNegative: string;
|
|
7107
|
+
colorTertiaryNegativeHover: string;
|
|
7108
|
+
textColorTertiaryNegative: string;
|
|
7109
|
+
textColorTertiaryNegativeHover: string;
|
|
7110
|
+
borderColorTertiaryNegative: string;
|
|
7111
|
+
colorTertiaryNegativeDisabled: string;
|
|
7112
|
+
borderColorTertiaryNegativeDisabled: string;
|
|
7113
|
+
colorGhost: string;
|
|
7114
|
+
colorGhostHover: string;
|
|
7115
|
+
textColorGhost: string;
|
|
7116
|
+
textColorGhostHover: string;
|
|
7117
|
+
borderColorGhost: string;
|
|
7118
|
+
colorGhostDisabled: string;
|
|
7119
|
+
borderColorGhostDisabled: string;
|
|
7120
|
+
colorGhostNegative: string;
|
|
7121
|
+
colorGhostNegativeHover: string;
|
|
7122
|
+
textColorGhostNegative: string;
|
|
7123
|
+
textColorGhostNegativeHover: string;
|
|
7124
|
+
borderColorGhostNegative: string;
|
|
7125
|
+
colorGhostNegativeDisabled: string;
|
|
7126
|
+
borderColorGhostNegativeDisabled: string;
|
|
7127
|
+
heightSmall: string;
|
|
7128
|
+
heightMedium: string;
|
|
7129
|
+
heightLarge: string;
|
|
7130
|
+
paddingSmall: string;
|
|
7131
|
+
paddingMedium: string;
|
|
7132
|
+
paddingLarge: string;
|
|
7133
|
+
borderRadiusSmall: string;
|
|
7134
|
+
borderRadiusMedium: string;
|
|
7135
|
+
borderRadiusLarge: string;
|
|
7136
|
+
iconSizeSmall: string;
|
|
7137
|
+
iconSizeMedium: string;
|
|
7138
|
+
iconSizeLarge: string;
|
|
7139
|
+
iconMargin: string;
|
|
7140
|
+
borderWidth: string;
|
|
7141
|
+
focusRingWidth: string;
|
|
7142
|
+
spinnerStrokeWidth: string;
|
|
7143
|
+
}, any>>>;
|
|
7144
|
+
}>> & Readonly<{}>, {
|
|
7145
|
+
readonly loading: boolean;
|
|
7146
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
7147
|
+
readonly type: import("./button-v3").ButtonV3Type;
|
|
7148
|
+
readonly block: boolean;
|
|
7149
|
+
readonly disabled: boolean;
|
|
7150
|
+
readonly focusable: boolean;
|
|
7151
|
+
readonly attrType: import("./button-v3").ButtonV3AttrType;
|
|
7152
|
+
readonly tone: import("./button-v3").ButtonV3Tone;
|
|
7153
|
+
readonly iconOnly: boolean;
|
|
7154
|
+
}, import("vue").SlotsType<import("./button-v3").ButtonV3Slots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7155
|
+
export declare const UxButtonV3: new () => {
|
|
7156
|
+
$props: import("./button-v3").ButtonV3MergedProps;
|
|
7157
|
+
};
|
|
6636
7158
|
export type * from './calendar';
|
|
6637
7159
|
export { calendarProps } from './calendar';
|
|
6638
7160
|
export declare const UCalendar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
package/lib/components.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.UWatermark = exports.watermarkProps = exports.UVirtualList = exports.virtualListProps = exports.UUploadTrigger = exports.UUploadFileList = exports.UUploadDragger = exports.UUpload = exports.uploadProps = exports.uploadDownload = exports.UUl = exports.UText = exports.UOl = exports.ULi = exports.UHr = exports.UH6 = exports.UH5 = exports.UH4 = exports.UH3 = exports.UH2 = exports.UH1 = exports.UBlockquote = exports.ulProps = exports.textProps = exports.pProps = exports.olProps = exports.NP = exports.NA = exports.h6Props = exports.h5Props = exports.h4Props = exports.h3Props = exports.h2Props = exports.h1Props = exports.blockquoteProps = exports.aProps = exports.UTreeSelect = void 0;
|
|
3
|
+
exports.MessageStatus = exports.ChatMessageType = exports.ChatMarkType = exports.ChatAttachmentStatus = exports.UCascader = exports.cascaderProps = exports.UCarouselItem = exports.UCarousel = exports.carouselProps = exports.UCardList = exports.cardListProps = exports.UCard = exports.cardProps = exports.UCalendar = exports.calendarProps = exports.UxButtonV3 = exports.UButtonV3 = exports.buttonV3Props = exports.buttonV3Light = exports.buttonV3Dark = exports.UButtonGroup = exports.buttonGroupProps = exports.UxButton = exports.UButton = exports.buttonProps = exports.UBreadcrumbItem = exports.UBreadcrumb = exports.breadcrumbProps = exports.breadcrumbItemProps = exports.UBadge = exports.badgeProps = exports.UBackTop = exports.backTopProps = exports.UAvatarGroup = exports.avatarGroupProps = exports.UAvatar = exports.avatarProps = exports.UAutoComplete = exports.autoCompleteProps = exports.UAnchorLink = exports.UAnchor = exports.anchorProps = exports.anchorLinkProps = exports.UAlert = exports.alertProps = exports.UAffix = exports.affixProps = exports.UActionCard = exports.actionCardLight = exports.actionCardDark = void 0;
|
|
4
|
+
exports.UDropdown = exports.dropdownProps = exports.UDrawerContent = exports.UDrawer = exports.drawerProps = exports.drawerContentProps = exports.UDivider = exports.dividerProps = exports.createDiscreteApi = exports.UDialog = exports.UDialogProvider = exports.useDialogReactiveList = exports.useDialog = exports.dialogProviderProps = exports.dialogProps = exports.UDescriptionsItem = exports.UDescriptions = exports.descriptionsProps = exports.descriptionsItemProps = exports.UDatePickerV2 = exports.datePickerV2Light = exports.datePickerV2Dark = exports.UDatePicker = exports.datePickerProps = exports.UDataTable = exports.dataTableProps = exports.UCrop = exports.cropProps = exports.UCountdown = exports.countdownProps = exports.UConfigProvider = exports.configProviderProps = exports.UColorPicker = exports.colorPickerProps = exports.UCollapseTransition = exports.collapseTransitionProps = exports.UCollapseItem = exports.UCollapse = exports.collapseProps = exports.collapseItemProps = exports.UCode = exports.codeProps = exports.UCheckboxGroup = exports.UCheckbox = exports.checkboxProps = exports.checkboxGroupProps = exports.UChatMessages = exports.UChatMainArea = exports.UChatListItems = exports.UChat = void 0;
|
|
5
|
+
exports.headerSearchResultsProps = exports.headerSearchMobileProps = exports.headerSearchDesktopProps = exports.headerProps = exports.headerNavigationProps = exports.headerMobileProps = exports.headerMobileLayoutProps = exports.headerDesktopLayoutProps = exports.headerActionsProps = exports.hasChildren = exports.getMenuItemKey = exports.UGi = exports.UGridItem = exports.UGrid = exports.gridProps = exports.gridItemProps = exports.giProps = exports.UGradientText = exports.gradientTextProps = exports.UGlobalStyle = exports.UFormItemRow = exports.UFormItemGridItem = exports.UFormItemGi = exports.UFormItemCol = exports.UFormItem = exports.UForm = exports.formProps = exports.formItemProps = exports.formItemGridItemProps = exports.formItemGiProps = exports.UFloatButtonGroup = exports.floatButtonGroupProps = exports.UFloatButton = exports.floatButtonProps = exports.UFlex = exports.flexProps = exports.UEquation = exports.equationProps = exports.UEmpty = exports.emptyProps = exports.UPerformantEllipsis = exports.UEllipsis = exports.ellipsisProps = exports.UEl = exports.UElement = exports.elementProps = exports.UDynamicTags = exports.dynamicTagsProps = exports.UDynamicInput = exports.dynamicInputProps = void 0;
|
|
6
|
+
exports.inputProps = exports.inputGroupProps = exports.inputGroupLabelProps = exports.UInfiniteScroll = exports.infiniteScrollProps = exports.UImagePreview = exports.UImageGroup = exports.UImage = exports.imageProps = exports.imagePreviewProps = exports.imageGroupProps = exports.UIconWrapper = exports.iconWrapperProps = exports.UIconPack = exports.iconPackProps = exports.iconPackLight = exports.iconPackDark = exports.UIconBarItem = exports.UIconBar = exports.iconBarProps = exports.iconBarItemProps = exports.UIcon = exports.renderIcon = exports.renderAsyncIcon = exports.iconProps = exports.UHighlight = exports.highlightProps = exports.UHeatmap = exports.heatmapProps = exports.heatmapMockData = exports.heatmapLight = exports.heatmapDark = exports.UHeaderSearchResults = exports.UHeaderSearchMobile = exports.UHeaderSearchDesktop = exports.UHeaderNavigation = exports.UHeaderMobileLayout = exports.UHeaderDesktopLayout = exports.UHeaderActions = exports.UHeader = exports.UHeaderMobile = exports.resolveTopLevelMenuKey = exports.resolvePlacement = exports.renderOptionLabel = exports.renderBadge = exports.isNotNull = exports.isLeafMenuOption = exports.isGroupOption = exports.isDividerOption = exports.isColumnOption = void 0;
|
|
7
|
+
exports.UMessageProvider = exports.useMessage = exports.messageProviderProps = exports.UMenu = exports.menuProps = exports.UMention = exports.mentionProps = exports.UMarquee = exports.UMappingCardList = exports.UMappingCard = exports.renderConfig = exports.mappingCardLight = exports.mappingCardDark = exports.ULog = exports.logProps = exports.ULoadingBarProvider = exports.useLoadingBar = exports.loadingBarProviderProps = exports.UListItem = exports.UList = exports.listProps = exports.ULegacyTransfer = exports.legacyTransferProps = exports.URow = exports.UCol = exports.rowProps = exports.colProps = exports.ULayoutSider = exports.ULayoutHeader = exports.ULayoutFooter = exports.ULayoutContent = exports.ULayout = exports.layoutSiderProps = exports.layoutProps = exports.layoutHeaderProps = exports.layoutFooterProps = exports.layoutContentProps = exports.UKanbanColumn = exports.UKanbanCard = exports.UKanban = exports.kanbanProps = exports.kanbanLight = exports.kanbanDark = exports.UInputOtp = exports.inputOtpProps = exports.UInputNumber = exports.inputNumberProps = exports.UInputGroupLabel = exports.UInputGroup = exports.UInput = void 0;
|
|
8
|
+
exports.skeletonProps = exports.USelect = exports.selectProps = exports.UScrollbar = exports.scrollbarProps = exports.USafeTopScrollbar = exports.safeTopScrollbarProps = exports.UResult = exports.resultProps = exports.URate = exports.rateProps = exports.URadioGroup = exports.URadioButton = exports.URadio = exports.radioProps = exports.radioGroupProps = exports.radioButtonProps = exports.UQrCode = exports.qrCodeProps = exports.UProgress = exports.progressProps = exports.UPopselect = exports.popselectProps = exports.UPopover = exports.popoverProps = exports.UPopconfirm = exports.popconfirmProps = exports.UPagination = exports.paginationProps = exports.UPageHeader = exports.pageHeaderProps = exports.UNumberAnimation = exports.numberAnimationProps = exports.UNotificationProvider = exports.useNotification = exports.notificationProviderProps = exports.UModalFullscreen = exports.modalFullscreenProps = exports.UModalProvider = exports.UModal = exports.useModalReactiveList = exports.useModal = exports.modalProviderProps = exports.modalProps = exports.UMessageBubble = exports.MessageBubbleType = exports.MessageBubbleStatus = exports.MessageBubbleServiceVariant = exports.MessageBubbleAttachmentStatus = exports.messageBubbleProps = void 0;
|
|
9
|
+
exports.transferProps = exports.UTooltip = exports.tooltipProps = exports.UToggleButton = exports.toggleButtonProps = exports.UTimelineItem = exports.UTimeline = exports.timelineProps = exports.timelineItemProps = exports.UTimePicker = exports.timePickerProps = exports.UTime = exports.timeProps = exports.UThing = exports.thingProps = exports.UTagGroup = exports.UTag = exports.tagProps = exports.UTabs = exports.UTabPane = exports.UTab = exports.tabsProps = exports.tabProps = exports.tabPaneProps = exports.UTr = exports.UThead = exports.UTh = exports.UTd = exports.UTbody = exports.UTable = exports.tableProps = exports.USwitch = exports.switchProps = exports.USteps = exports.UStep = exports.stepsProps = exports.stepProps = exports.UStatus = exports.statusProps = exports.UStatistic = exports.statisticProps = exports.USplit = exports.splitProps = exports.USpin = exports.spinProps = exports.USpace = exports.spaceProps = exports.USlider = exports.sliderProps = exports.USkeleton = void 0;
|
|
10
|
+
exports.UWatermark = exports.watermarkProps = exports.UVirtualList = exports.virtualListProps = exports.UUploadTrigger = exports.UUploadFileList = exports.UUploadDragger = exports.UUpload = exports.uploadProps = exports.uploadDownload = exports.UUl = exports.UText = exports.UOl = exports.ULi = exports.UHr = exports.UH6 = exports.UH5 = exports.UH4 = exports.UH3 = exports.UH2 = exports.UH1 = exports.UBlockquote = exports.ulProps = exports.textProps = exports.pProps = exports.olProps = exports.NP = exports.NA = exports.h6Props = exports.h5Props = exports.h4Props = exports.h3Props = exports.h2Props = exports.h1Props = exports.blockquoteProps = exports.aProps = exports.UTreeSelect = exports.treeSelectProps = exports.UTree = exports.treeProps = exports.treeGetClickTarget = exports.UTransfer = void 0;
|
|
11
11
|
const wrap_component_1 = require("./_utils/wrap-component");
|
|
12
12
|
const action_card_1 = require("./action-card");
|
|
13
13
|
const affix_1 = require("./affix");
|
|
@@ -21,6 +21,7 @@ const badge_1 = require("./badge");
|
|
|
21
21
|
const breadcrumb_1 = require("./breadcrumb");
|
|
22
22
|
const button_1 = require("./button");
|
|
23
23
|
const button_group_1 = require("./button-group");
|
|
24
|
+
const button_v3_1 = require("./button-v3");
|
|
24
25
|
const calendar_1 = require("./calendar");
|
|
25
26
|
const card_1 = require("./card");
|
|
26
27
|
const card_list_1 = require("./card-list");
|
|
@@ -164,6 +165,12 @@ exports.UxButton = (0, wrap_component_1.wrap)(button_1.UxButton);
|
|
|
164
165
|
var button_group_2 = require("./button-group");
|
|
165
166
|
Object.defineProperty(exports, "buttonGroupProps", { enumerable: true, get: function () { return button_group_2.buttonGroupProps; } });
|
|
166
167
|
exports.UButtonGroup = (0, wrap_component_1.wrap)(button_group_1.UButtonGroup);
|
|
168
|
+
var button_v3_2 = require("./button-v3");
|
|
169
|
+
Object.defineProperty(exports, "buttonV3Dark", { enumerable: true, get: function () { return button_v3_2.buttonV3Dark; } });
|
|
170
|
+
Object.defineProperty(exports, "buttonV3Light", { enumerable: true, get: function () { return button_v3_2.buttonV3Light; } });
|
|
171
|
+
Object.defineProperty(exports, "buttonV3Props", { enumerable: true, get: function () { return button_v3_2.buttonV3Props; } });
|
|
172
|
+
exports.UButtonV3 = (0, wrap_component_1.wrap)(button_v3_1.UButtonV3);
|
|
173
|
+
exports.UxButtonV3 = (0, wrap_component_1.wrap)(button_v3_1.UxButtonV3);
|
|
167
174
|
var calendar_2 = require("./calendar");
|
|
168
175
|
Object.defineProperty(exports, "calendarProps", { enumerable: true, get: function () { return calendar_2.calendarProps; } });
|
|
169
176
|
exports.UCalendar = (0, wrap_component_1.wrap)(calendar_1.UCalendar);
|
|
@@ -2,6 +2,8 @@ import type { AnyIconPack, IconPackRegistry } from '@uzum-tech/icons';
|
|
|
2
2
|
import type { CNode } from 'css-render';
|
|
3
3
|
import type { Ref, VNodeChild } from 'vue';
|
|
4
4
|
import type { AccountOptionTheme } from '../../_internal/account-option/styles';
|
|
5
|
+
import type { ButtonV3Props } from '../../_internal/button-v3';
|
|
6
|
+
import type { ButtonV3Theme } from '../../_internal/button-v3/styles';
|
|
5
7
|
import type { SafeTopScrollbarTheme } from '../../_internal/safe-top-scrollbar/styles';
|
|
6
8
|
import type { ScrollbarTheme } from '../../_internal/scrollbar/styles';
|
|
7
9
|
import type { InternalSelectMenuTheme } from '../../_internal/select-menu/styles';
|
|
@@ -212,6 +214,7 @@ export interface GlobalThemeWithoutCommon {
|
|
|
212
214
|
Breadcrumb?: BreadcrumbTheme;
|
|
213
215
|
Button?: ButtonTheme;
|
|
214
216
|
ButtonGroup?: ButtonGroupTheme;
|
|
217
|
+
ButtonV3?: ButtonV3Theme;
|
|
215
218
|
Calendar?: CalendarTheme;
|
|
216
219
|
ActionCard?: ActionCardTheme;
|
|
217
220
|
MappingCard?: MappingCardTheme;
|
|
@@ -322,6 +325,7 @@ export interface GlobalComponentConfig {
|
|
|
322
325
|
Breadcrumb?: BreadcrumbProps;
|
|
323
326
|
Button?: ButtonProps;
|
|
324
327
|
ButtonGroup?: ButtonGroupProps;
|
|
328
|
+
ButtonV3?: ButtonV3Props;
|
|
325
329
|
Calendar?: CalendarProps;
|
|
326
330
|
ActionCard?: ActionCardProps;
|
|
327
331
|
MappingCard?: MappingCardProps;
|