@uzum-tech/ui 2.3.7 → 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 +811 -215
- package/dist/index.mjs +807 -216
- 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 +185 -180
- 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 +16 -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/es/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("./_internal").ButtonV3Type>;
|
|
6641
|
+
readonly default: "primary";
|
|
6642
|
+
};
|
|
6643
|
+
readonly tone: {
|
|
6644
|
+
readonly type: import("vue").PropType<import("./_internal").ButtonV3Tone>;
|
|
6645
|
+
readonly default: "default";
|
|
6646
|
+
};
|
|
6647
|
+
readonly size: import("vue").PropType<import("./_internal").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("./_internal").ButtonV3Tag>;
|
|
6658
|
+
readonly default: "button";
|
|
6659
|
+
};
|
|
6660
|
+
readonly attrType: {
|
|
6661
|
+
readonly type: import("vue").PropType<import("./_internal").ButtonV3AttrType>;
|
|
6662
|
+
readonly default: "button";
|
|
6663
|
+
};
|
|
6664
|
+
readonly onClick: import("vue").PropType<import("./_internal").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("./_internal").ButtonV3Type>;
|
|
6895
|
+
readonly default: "primary";
|
|
6896
|
+
};
|
|
6897
|
+
readonly tone: {
|
|
6898
|
+
readonly type: import("vue").PropType<import("./_internal").ButtonV3Tone>;
|
|
6899
|
+
readonly default: "default";
|
|
6900
|
+
};
|
|
6901
|
+
readonly size: import("vue").PropType<import("./_internal").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("./_internal").ButtonV3Tag>;
|
|
6912
|
+
readonly default: "button";
|
|
6913
|
+
};
|
|
6914
|
+
readonly attrType: {
|
|
6915
|
+
readonly type: import("vue").PropType<import("./_internal").ButtonV3AttrType>;
|
|
6916
|
+
readonly default: "button";
|
|
6917
|
+
};
|
|
6918
|
+
readonly onClick: import("vue").PropType<import("./_internal").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("./_internal").ButtonV3Type;
|
|
7148
|
+
readonly block: boolean;
|
|
7149
|
+
readonly disabled: boolean;
|
|
7150
|
+
readonly focusable: boolean;
|
|
7151
|
+
readonly attrType: import("./_internal").ButtonV3AttrType;
|
|
7152
|
+
readonly tone: import("./_internal").ButtonV3Tone;
|
|
7153
|
+
readonly iconOnly: boolean;
|
|
7154
|
+
}, import("vue").SlotsType<import("./_internal").ButtonV3Slots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7155
|
+
export declare const UxButtonV3: new () => {
|
|
7156
|
+
$props: import("./_internal").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<{
|