@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.
Files changed (83) hide show
  1. package/dist/index.js +631 -35
  2. package/dist/index.mjs +627 -36
  3. package/dist/index.prod.js +3 -3
  4. package/dist/index.prod.mjs +3 -3
  5. package/es/_internal/button-v3/index.d.ts +5 -0
  6. package/es/_internal/button-v3/index.mjs +3 -0
  7. package/es/_internal/button-v3/src/ButtonV3.d.ts +533 -0
  8. package/es/_internal/button-v3/src/ButtonV3.mjs +200 -0
  9. package/es/_internal/button-v3/src/interface.d.ts +281 -0
  10. package/es/_internal/button-v3/src/interface.mjs +29 -0
  11. package/es/_internal/button-v3/src/styles/index.cssr.d.ts +2 -0
  12. package/es/_internal/button-v3/src/styles/index.cssr.mjs +119 -0
  13. package/es/_internal/button-v3/src/utils.d.ts +10 -0
  14. package/es/_internal/button-v3/src/utils.mjs +52 -0
  15. package/es/_internal/button-v3/styles/_common.d.ts +19 -0
  16. package/es/_internal/button-v3/styles/_common.mjs +18 -0
  17. package/es/_internal/button-v3/styles/dark.d.ts +3 -0
  18. package/es/_internal/button-v3/styles/dark.mjs +8 -0
  19. package/es/_internal/button-v3/styles/index.d.ts +3 -0
  20. package/es/_internal/button-v3/styles/index.mjs +2 -0
  21. package/es/_internal/button-v3/styles/light.d.ts +81 -0
  22. package/es/_internal/button-v3/styles/light.mjs +91 -0
  23. package/es/_internal/index.d.ts +2 -0
  24. package/es/_internal/index.mjs +1 -0
  25. package/es/_styles/common/dark.mjs +12 -0
  26. package/es/_styles/common/light.d.ts +12 -0
  27. package/es/_styles/common/light.mjs +12 -0
  28. package/es/button-v3/index.d.ts +4 -0
  29. package/es/button-v3/index.mjs +2 -0
  30. package/es/button-v3/src/ButtonV3.d.ts +525 -0
  31. package/es/button-v3/src/ButtonV3.mjs +17 -0
  32. package/es/components.d.ts +524 -2
  33. package/es/components.mjs +4 -0
  34. package/es/config-provider/src/internal-interface.d.ts +4 -0
  35. package/es/dialog/src/DialogProvider.d.ts +48 -0
  36. package/es/styles.d.ts +1 -0
  37. package/es/styles.mjs +1 -0
  38. package/es/theme-editor/src/ThemeEditor.d.ts +12 -0
  39. package/es/themes/dark.mjs +2 -0
  40. package/es/themes/light.mjs +2 -0
  41. package/es/version.d.ts +1 -1
  42. package/es/version.mjs +1 -1
  43. package/lib/_internal/button-v3/index.d.ts +5 -0
  44. package/lib/_internal/button-v3/index.js +13 -0
  45. package/lib/_internal/button-v3/src/ButtonV3.d.ts +533 -0
  46. package/lib/_internal/button-v3/src/ButtonV3.js +170 -0
  47. package/lib/_internal/button-v3/src/interface.d.ts +281 -0
  48. package/lib/_internal/button-v3/src/interface.js +20 -0
  49. package/lib/_internal/button-v3/src/styles/index.cssr.d.ts +2 -0
  50. package/lib/_internal/button-v3/src/styles/index.cssr.js +124 -0
  51. package/lib/_internal/button-v3/src/utils.d.ts +10 -0
  52. package/lib/_internal/button-v3/src/utils.js +56 -0
  53. package/lib/_internal/button-v3/styles/_common.d.ts +19 -0
  54. package/lib/_internal/button-v3/styles/_common.js +20 -0
  55. package/lib/_internal/button-v3/styles/dark.d.ts +3 -0
  56. package/lib/_internal/button-v3/styles/dark.js +10 -0
  57. package/lib/_internal/button-v3/styles/index.d.ts +3 -0
  58. package/lib/_internal/button-v3/styles/index.js +10 -0
  59. package/lib/_internal/button-v3/styles/light.d.ts +81 -0
  60. package/lib/_internal/button-v3/styles/light.js +19 -0
  61. package/lib/_internal/index.d.ts +2 -0
  62. package/lib/_internal/index.js +4 -1
  63. package/lib/_styles/common/dark.js +1 -1
  64. package/lib/_styles/common/light.d.ts +12 -0
  65. package/lib/_styles/common/light.js +1 -1
  66. package/lib/button-v3/index.d.ts +4 -0
  67. package/lib/button-v3/index.js +13 -0
  68. package/lib/button-v3/src/ButtonV3.d.ts +525 -0
  69. package/lib/button-v3/src/ButtonV3.js +17 -0
  70. package/lib/components.d.ts +524 -2
  71. package/lib/components.js +15 -8
  72. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  73. package/lib/dialog/src/DialogProvider.d.ts +48 -0
  74. package/lib/styles.d.ts +1 -0
  75. package/lib/styles.js +195 -193
  76. package/lib/theme-editor/src/ThemeEditor.d.ts +12 -0
  77. package/lib/themes/dark.js +202 -200
  78. package/lib/themes/light.js +202 -200
  79. package/lib/version.d.ts +1 -1
  80. package/lib/version.js +1 -1
  81. package/package.json +1 -1
  82. package/volar.d.ts +2 -0
  83. package/web-types.json +14 -1
@@ -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<{
package/es/components.mjs CHANGED
@@ -11,6 +11,7 @@ import { UBadge as _UBadge } from "./badge/index.mjs";
11
11
  import { UBreadcrumb as _UBreadcrumb, UBreadcrumbItem as _UBreadcrumbItem } from "./breadcrumb/index.mjs";
12
12
  import { UButton as _UButton, UxButton as _UxButton } from "./button/index.mjs";
13
13
  import { UButtonGroup as _UButtonGroup } from "./button-group/index.mjs";
14
+ import { UButtonV3 as _UButtonV3, UxButtonV3 as _UxButtonV3 } from "./button-v3/index.mjs";
14
15
  import { UCalendar as _UCalendar } from "./calendar/index.mjs";
15
16
  import { UCard as _UCard } from "./card/index.mjs";
16
17
  import { UCardList as _UCardList } from "./card-list/index.mjs";
@@ -139,6 +140,9 @@ export const UButton = /* #__PURE__ */wrap(_UButton);
139
140
  export const UxButton = /* #__PURE__ */wrap(_UxButton);
140
141
  export { buttonGroupProps } from "./button-group/index.mjs";
141
142
  export const UButtonGroup = /* #__PURE__ */wrap(_UButtonGroup);
143
+ export { buttonV3Dark, buttonV3Light, buttonV3Props } from "./button-v3/index.mjs";
144
+ export const UButtonV3 = /* #__PURE__ */wrap(_UButtonV3);
145
+ export const UxButtonV3 = /* #__PURE__ */wrap(_UxButtonV3);
142
146
  export { calendarProps } from "./calendar/index.mjs";
143
147
  export const UCalendar = /* #__PURE__ */wrap(_UCalendar);
144
148
  export { cardProps } from "./card/index.mjs";
@@ -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;
@@ -320,6 +320,18 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
320
320
  brandQuinary300: string;
321
321
  brandQuinary600: string;
322
322
  brandQuinary100: string;
323
+ accentBrand: string;
324
+ accentBrandHover: string;
325
+ accentError: string;
326
+ accentErrorHover: string;
327
+ accentErrorSubtle: string;
328
+ accentNeutral: string;
329
+ accentNeutralHover: string;
330
+ accentFocusRing: string;
331
+ accentBorder: string;
332
+ accentDisabled: string;
333
+ accentDisabledContent: string;
334
+ accentPressedOverlay: string;
323
335
  surfacePrimary: string;
324
336
  surfaceSecondary: string;
325
337
  containerPrimary: string;
@@ -698,6 +710,18 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
698
710
  brandQuinary300: string;
699
711
  brandQuinary600: string;
700
712
  brandQuinary100: string;
713
+ accentBrand: string;
714
+ accentBrandHover: string;
715
+ accentError: string;
716
+ accentErrorHover: string;
717
+ accentErrorSubtle: string;
718
+ accentNeutral: string;
719
+ accentNeutralHover: string;
720
+ accentFocusRing: string;
721
+ accentBorder: string;
722
+ accentDisabled: string;
723
+ accentDisabledContent: string;
724
+ accentPressedOverlay: string;
701
725
  surfacePrimary: string;
702
726
  surfaceSecondary: string;
703
727
  containerPrimary: string;
@@ -1109,6 +1133,18 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
1109
1133
  brandQuinary300: string;
1110
1134
  brandQuinary600: string;
1111
1135
  brandQuinary100: string;
1136
+ accentBrand: string;
1137
+ accentBrandHover: string;
1138
+ accentError: string;
1139
+ accentErrorHover: string;
1140
+ accentErrorSubtle: string;
1141
+ accentNeutral: string;
1142
+ accentNeutralHover: string;
1143
+ accentFocusRing: string;
1144
+ accentBorder: string;
1145
+ accentDisabled: string;
1146
+ accentDisabledContent: string;
1147
+ accentPressedOverlay: string;
1112
1148
  surfacePrimary: string;
1113
1149
  surfaceSecondary: string;
1114
1150
  containerPrimary: string;
@@ -1487,6 +1523,18 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
1487
1523
  brandQuinary300: string;
1488
1524
  brandQuinary600: string;
1489
1525
  brandQuinary100: string;
1526
+ accentBrand: string;
1527
+ accentBrandHover: string;
1528
+ accentError: string;
1529
+ accentErrorHover: string;
1530
+ accentErrorSubtle: string;
1531
+ accentNeutral: string;
1532
+ accentNeutralHover: string;
1533
+ accentFocusRing: string;
1534
+ accentBorder: string;
1535
+ accentDisabled: string;
1536
+ accentDisabledContent: string;
1537
+ accentPressedOverlay: string;
1490
1538
  surfacePrimary: string;
1491
1539
  surfaceSecondary: string;
1492
1540
  containerPrimary: string;
package/es/styles.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { buttonV3Dark } from './_internal/button-v3/styles';
1
2
  export { scrollbarDark } from './_internal/scrollbar/styles';
2
3
  export { scrollbarRtl as unstableScrollbarRtl } from './_internal/scrollbar/styles';
3
4
  export { internalSelectMenuDark } from './_internal/select-menu/styles';
package/es/styles.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ export { buttonV3Dark } from "./_internal/button-v3/styles/index.mjs";
1
2
  // danger zone, internal styles
2
3
  export { scrollbarDark } from "./_internal/scrollbar/styles/index.mjs";
3
4
  export { scrollbarRtl as unstableScrollbarRtl } from "./_internal/scrollbar/styles/index.mjs";