@uzum-tech/ui 2.1.3 → 2.2.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 (111) hide show
  1. package/dist/index.js +1236 -530
  2. package/dist/index.mjs +1232 -531
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/_internal/icon/index.d.ts +1 -1
  6. package/es/_internal/icon/index.mjs +1 -1
  7. package/es/_internal/icon/src/UIcon.d.ts +11 -1
  8. package/es/_internal/icon/src/UIcon.mjs +20 -8
  9. package/es/_internal/icon/src/interface.d.ts +11 -4
  10. package/es/_internal/icon/src/interface.mjs +4 -0
  11. package/es/_internal/icon/src/render-icon.d.ts +1 -0
  12. package/es/_internal/icon/src/render-icon.mjs +5 -0
  13. package/es/_internal/icons/SearchOutline.d.ts +2 -0
  14. package/es/_internal/icons/SearchOutline.mjs +18 -0
  15. package/es/_internal/icons/index.d.ts +1 -0
  16. package/es/_internal/icons/index.mjs +1 -0
  17. package/es/_mixins/use-form-item.mjs +5 -0
  18. package/es/_utils/dom/copy-to-clipboard.d.ts +1 -0
  19. package/es/_utils/dom/copy-to-clipboard.mjs +8 -0
  20. package/es/_utils/dom/index.d.ts +1 -0
  21. package/es/_utils/dom/index.mjs +1 -0
  22. package/es/components.d.ts +1169 -76
  23. package/es/components.mjs +4 -1
  24. package/es/config-provider/src/internal-interface.d.ts +4 -0
  25. package/es/data-table/src/use-table-data.d.ts +1 -1
  26. package/es/date-picker/src/DatePicker.mjs +7 -4
  27. package/es/icon/index.d.ts +1 -1
  28. package/es/icon/index.mjs +1 -1
  29. package/es/icon/src/Icon.d.ts +1 -1
  30. package/es/icon/src/Icon.mjs +1 -1
  31. package/es/icon-pack/index.d.ts +5 -0
  32. package/es/icon-pack/index.mjs +3 -0
  33. package/es/icon-pack/src/IconPack.d.ts +1047 -0
  34. package/es/icon-pack/src/IconPack.mjs +300 -0
  35. package/es/icon-pack/src/interface.d.ts +465 -0
  36. package/es/icon-pack/src/interface.mjs +75 -0
  37. package/es/icon-pack/src/styles/index.cssr.d.ts +2 -0
  38. package/es/icon-pack/src/styles/index.cssr.mjs +131 -0
  39. package/es/icon-pack/styles/dark.d.ts +123 -0
  40. package/es/icon-pack/styles/dark.mjs +20 -0
  41. package/es/icon-pack/styles/index.d.ts +3 -0
  42. package/es/icon-pack/styles/index.mjs +2 -0
  43. package/es/icon-pack/styles/light.d.ts +143 -0
  44. package/es/icon-pack/styles/light.mjs +64 -0
  45. package/es/icon-wrapper/src/IconWrapper.d.ts +1 -1
  46. package/es/input/src/Input.mjs +3 -1
  47. package/es/pagination/index.d.ts +3 -3
  48. package/es/pagination/index.mjs +2 -1
  49. package/es/pagination/src/Pagination.d.ts +74 -1379
  50. package/es/pagination/src/Pagination.mjs +28 -63
  51. package/es/pagination/src/interface.d.ts +1345 -1
  52. package/es/pagination/src/interface.mjs +68 -1
  53. package/es/themes/dark.mjs +2 -0
  54. package/es/themes/light.mjs +2 -0
  55. package/es/version.d.ts +1 -1
  56. package/es/version.mjs +1 -1
  57. package/lib/_internal/icon/index.d.ts +1 -1
  58. package/lib/_internal/icon/index.js +2 -1
  59. package/lib/_internal/icon/src/UIcon.d.ts +11 -1
  60. package/lib/_internal/icon/src/UIcon.js +17 -6
  61. package/lib/_internal/icon/src/interface.d.ts +11 -4
  62. package/lib/_internal/icon/src/interface.js +1 -1
  63. package/lib/_internal/icon/src/render-icon.d.ts +1 -0
  64. package/lib/_internal/icon/src/render-icon.js +4 -0
  65. package/lib/_internal/icons/SearchOutline.d.ts +2 -0
  66. package/lib/_internal/icons/SearchOutline.js +10 -0
  67. package/lib/_internal/icons/index.d.ts +1 -0
  68. package/lib/_internal/icons/index.js +3 -1
  69. package/lib/_mixins/use-form-item.js +5 -0
  70. package/lib/_utils/dom/copy-to-clipboard.d.ts +1 -0
  71. package/lib/_utils/dom/copy-to-clipboard.js +11 -0
  72. package/lib/_utils/dom/index.d.ts +1 -0
  73. package/lib/_utils/dom/index.js +3 -1
  74. package/lib/components.d.ts +1169 -76
  75. package/lib/components.js +12 -5
  76. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  77. package/lib/data-table/src/use-table-data.d.ts +1 -1
  78. package/lib/date-picker/src/DatePicker.js +5 -4
  79. package/lib/icon/index.d.ts +1 -1
  80. package/lib/icon/index.js +2 -1
  81. package/lib/icon/src/Icon.d.ts +1 -1
  82. package/lib/icon/src/Icon.js +2 -1
  83. package/lib/icon-pack/index.d.ts +5 -0
  84. package/lib/icon-pack/index.js +13 -0
  85. package/lib/icon-pack/src/IconPack.d.ts +1047 -0
  86. package/lib/icon-pack/src/IconPack.js +240 -0
  87. package/lib/icon-pack/src/interface.d.ts +465 -0
  88. package/lib/icon-pack/src/interface.js +49 -0
  89. package/lib/icon-pack/src/styles/index.cssr.d.ts +2 -0
  90. package/lib/icon-pack/src/styles/index.cssr.js +136 -0
  91. package/lib/icon-pack/styles/dark.d.ts +123 -0
  92. package/lib/icon-pack/styles/dark.js +22 -0
  93. package/lib/icon-pack/styles/index.d.ts +3 -0
  94. package/lib/icon-pack/styles/index.js +10 -0
  95. package/lib/icon-pack/styles/light.d.ts +143 -0
  96. package/lib/icon-pack/styles/light.js +46 -0
  97. package/lib/icon-wrapper/src/IconWrapper.d.ts +1 -1
  98. package/lib/input/src/Input.js +3 -1
  99. package/lib/pagination/index.d.ts +3 -3
  100. package/lib/pagination/index.js +2 -1
  101. package/lib/pagination/src/Pagination.d.ts +74 -1379
  102. package/lib/pagination/src/Pagination.js +27 -40
  103. package/lib/pagination/src/interface.d.ts +1345 -1
  104. package/lib/pagination/src/interface.js +37 -0
  105. package/lib/themes/dark.js +110 -108
  106. package/lib/themes/light.js +110 -108
  107. package/lib/version.d.ts +1 -1
  108. package/lib/version.js +1 -1
  109. package/package.json +1 -1
  110. package/volar.d.ts +1 -0
  111. package/web-types.json +263 -1
@@ -65495,7 +65495,7 @@ export declare const UHighlight: import("vue").DefineComponent<import("vue").Ext
65495
65495
  readonly patterns: string[];
65496
65496
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
65497
65497
  export type * from './icon';
65498
- export { iconProps, renderIcon } from './icon';
65498
+ export { iconProps, renderAsyncIcon, renderIcon } from './icon';
65499
65499
  export declare const UIcon: {
65500
65500
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
65501
65501
  readonly depth: import("vue").PropType<import("./_internal/icon").Depth>;
@@ -65504,6 +65504,10 @@ export declare const UIcon: {
65504
65504
  readonly component: import("vue").PropType<import("vue").Component>;
65505
65505
  readonly name: import("vue").PropType<string>;
65506
65506
  readonly pack: import("vue").PropType<import("./config-provider").IconPackName>;
65507
+ readonly async: {
65508
+ readonly type: BooleanConstructor;
65509
+ readonly default: undefined;
65510
+ };
65507
65511
  readonly onClick: import("vue").PropType<(e: MouseEvent) => void>;
65508
65512
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Icon", {
65509
65513
  color: string;
@@ -65543,7 +65547,9 @@ export declare const UIcon: {
65543
65547
  }> | undefined;
65544
65548
  themeClass: import("vue").Ref<string, string> | undefined;
65545
65549
  onRender: (() => void) | undefined;
65546
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
65550
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
65551
+ readonly async: boolean;
65552
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
65547
65553
  P: {};
65548
65554
  B: {};
65549
65555
  D: {};
@@ -65557,6 +65563,10 @@ export declare const UIcon: {
65557
65563
  readonly component: import("vue").PropType<import("vue").Component>;
65558
65564
  readonly name: import("vue").PropType<string>;
65559
65565
  readonly pack: import("vue").PropType<import("./config-provider").IconPackName>;
65566
+ readonly async: {
65567
+ readonly type: BooleanConstructor;
65568
+ readonly default: undefined;
65569
+ };
65560
65570
  readonly onClick: import("vue").PropType<(e: MouseEvent) => void>;
65561
65571
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Icon", {
65562
65572
  color: string;
@@ -65596,7 +65606,9 @@ export declare const UIcon: {
65596
65606
  }> | undefined;
65597
65607
  themeClass: import("vue").Ref<string, string> | undefined;
65598
65608
  onRender: (() => void) | undefined;
65599
- }, {}, {}, {}, {}>;
65609
+ }, {}, {}, {}, {
65610
+ readonly async: boolean;
65611
+ }>;
65600
65612
  __isFragment?: never;
65601
65613
  __isTeleport?: never;
65602
65614
  __isSuspense?: never;
@@ -65607,6 +65619,10 @@ export declare const UIcon: {
65607
65619
  readonly component: import("vue").PropType<import("vue").Component>;
65608
65620
  readonly name: import("vue").PropType<string>;
65609
65621
  readonly pack: import("vue").PropType<import("./config-provider").IconPackName>;
65622
+ readonly async: {
65623
+ readonly type: BooleanConstructor;
65624
+ readonly default: undefined;
65625
+ };
65610
65626
  readonly onClick: import("vue").PropType<(e: MouseEvent) => void>;
65611
65627
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Icon", {
65612
65628
  color: string;
@@ -65646,7 +65662,9 @@ export declare const UIcon: {
65646
65662
  }> | undefined;
65647
65663
  themeClass: import("vue").Ref<string, string> | undefined;
65648
65664
  onRender: (() => void) | undefined;
65649
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("./_internal/icon").GenericUIcon;
65665
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
65666
+ readonly async: boolean;
65667
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("./_internal/icon").GenericUIcon;
65650
65668
  export type * from './icon-bar';
65651
65669
  export { iconBarItemProps, iconBarProps } from './icon-bar';
65652
65670
  export declare const UIconBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -65882,74 +65900,1120 @@ export declare const UIconBarItem: import("vue").DefineComponent<import("vue").E
65882
65900
  fontSize: string;
65883
65901
  lineHeight: string;
65884
65902
  textColor: string;
65885
- textColorPrimary: string;
65886
- textColorInfo: string;
65887
- textColorSuccess: string;
65888
- textColorWarning: string;
65889
- textColorError: string;
65890
- codeTextColor: string;
65891
- codeColor: string;
65892
- codeBorder: string;
65893
- }, any>> | undefined;
65894
- text?: string | undefined;
65895
- tag?: keyof HTMLElementTagNameMap | undefined;
65896
- color?: string | undefined;
65897
- variant?: import("./typography").TypographyVariant | undefined;
65898
- italic?: boolean | undefined;
65899
- variantOptions?: import("./typography").TypographyVariantOptions | undefined;
65900
- variantWeightsOptions?: import("./typography").TypographyVariantWeightsOptions | undefined;
65901
- underline?: boolean | undefined;
65902
- strikethrough?: boolean | undefined;
65903
- }>;
65904
- onRender: (() => void) | undefined;
65905
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
65906
- readonly label: StringConstructor;
65907
- readonly icon: import("vue").PropType<() => import("vue").VNodeChild>;
65908
- readonly iconSize: import("vue").PropType<number | string>;
65909
- readonly span: import("vue").PropType<number | string>;
65910
- readonly typographyProps: {
65911
- readonly type: import("vue").PropType<Partial<import("./typography").TextProps>>;
65912
- };
65913
- readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconBar", {
65914
- itemSize: string;
65915
- color: string;
65916
- colorHover: string;
65917
- itemGap: string;
65918
- iconSize: string;
65919
- labelColor: string;
65920
- labelSizeHover: string;
65921
- labelColorHover: string;
65922
- boxShadow: string;
65923
- span: number;
65924
- cols: number;
65925
- }, any>>;
65926
- readonly themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconBar", {
65927
- itemSize: string;
65928
- color: string;
65929
- colorHover: string;
65930
- itemGap: string;
65931
- iconSize: string;
65932
- labelColor: string;
65933
- labelSizeHover: string;
65934
- labelColorHover: string;
65935
- boxShadow: string;
65936
- span: number;
65937
- cols: number;
65938
- }, any>>>;
65939
- readonly builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconBar", {
65940
- itemSize: string;
65941
- color: string;
65942
- colorHover: string;
65943
- itemGap: string;
65944
- iconSize: string;
65945
- labelColor: string;
65946
- labelSizeHover: string;
65947
- labelColorHover: string;
65948
- boxShadow: string;
65949
- span: number;
65950
- cols: number;
65951
- }, any>>>;
65952
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
65903
+ textColorPrimary: string;
65904
+ textColorInfo: string;
65905
+ textColorSuccess: string;
65906
+ textColorWarning: string;
65907
+ textColorError: string;
65908
+ codeTextColor: string;
65909
+ codeColor: string;
65910
+ codeBorder: string;
65911
+ }, any>> | undefined;
65912
+ text?: string | undefined;
65913
+ tag?: keyof HTMLElementTagNameMap | undefined;
65914
+ color?: string | undefined;
65915
+ variant?: import("./typography").TypographyVariant | undefined;
65916
+ italic?: boolean | undefined;
65917
+ variantOptions?: import("./typography").TypographyVariantOptions | undefined;
65918
+ variantWeightsOptions?: import("./typography").TypographyVariantWeightsOptions | undefined;
65919
+ underline?: boolean | undefined;
65920
+ strikethrough?: boolean | undefined;
65921
+ }>;
65922
+ onRender: (() => void) | undefined;
65923
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
65924
+ readonly label: StringConstructor;
65925
+ readonly icon: import("vue").PropType<() => import("vue").VNodeChild>;
65926
+ readonly iconSize: import("vue").PropType<number | string>;
65927
+ readonly span: import("vue").PropType<number | string>;
65928
+ readonly typographyProps: {
65929
+ readonly type: import("vue").PropType<Partial<import("./typography").TextProps>>;
65930
+ };
65931
+ readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconBar", {
65932
+ itemSize: string;
65933
+ color: string;
65934
+ colorHover: string;
65935
+ itemGap: string;
65936
+ iconSize: string;
65937
+ labelColor: string;
65938
+ labelSizeHover: string;
65939
+ labelColorHover: string;
65940
+ boxShadow: string;
65941
+ span: number;
65942
+ cols: number;
65943
+ }, any>>;
65944
+ readonly themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconBar", {
65945
+ itemSize: string;
65946
+ color: string;
65947
+ colorHover: string;
65948
+ itemGap: string;
65949
+ iconSize: string;
65950
+ labelColor: string;
65951
+ labelSizeHover: string;
65952
+ labelColorHover: string;
65953
+ boxShadow: string;
65954
+ span: number;
65955
+ cols: number;
65956
+ }, any>>>;
65957
+ readonly builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconBar", {
65958
+ itemSize: string;
65959
+ color: string;
65960
+ colorHover: string;
65961
+ itemGap: string;
65962
+ iconSize: string;
65963
+ labelColor: string;
65964
+ labelSizeHover: string;
65965
+ labelColorHover: string;
65966
+ boxShadow: string;
65967
+ span: number;
65968
+ cols: number;
65969
+ }, any>>>;
65970
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
65971
+ export type * from './icon-pack';
65972
+ export { iconPackDark, iconPackLight, iconPackProps } from './icon-pack';
65973
+ export declare const UIconPack: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
65974
+ readonly pack: import("vue").PropType<import("@uzum-tech/icons").AnyIconPack | string>;
65975
+ readonly value: import("vue").PropType<import("./icon-pack").IconPackValue>;
65976
+ readonly defaultValue: {
65977
+ readonly type: import("vue").PropType<import("./icon-pack").IconPackValue>;
65978
+ readonly default: null;
65979
+ };
65980
+ readonly disabled: {
65981
+ readonly type: BooleanConstructor;
65982
+ readonly default: undefined;
65983
+ };
65984
+ readonly title: StringConstructor;
65985
+ readonly description: StringConstructor;
65986
+ readonly searchable: {
65987
+ readonly type: BooleanConstructor;
65988
+ readonly default: true;
65989
+ };
65990
+ readonly searchValue: StringConstructor;
65991
+ readonly defaultSearchValue: {
65992
+ readonly type: StringConstructor;
65993
+ readonly default: "";
65994
+ };
65995
+ readonly searchPlaceholder: StringConstructor;
65996
+ readonly searchDebounce: {
65997
+ readonly type: NumberConstructor;
65998
+ readonly default: 200;
65999
+ };
66000
+ readonly grouped: {
66001
+ readonly type: BooleanConstructor;
66002
+ readonly default: true;
66003
+ };
66004
+ readonly columns: {
66005
+ readonly type: import("vue").PropType<number | "auto">;
66006
+ readonly default: "auto";
66007
+ };
66008
+ readonly minColumnWidth: {
66009
+ readonly type: import("vue").PropType<number | string>;
66010
+ readonly default: 150;
66011
+ };
66012
+ readonly iconSize: {
66013
+ readonly type: import("vue").PropType<number | string>;
66014
+ readonly default: 40;
66015
+ };
66016
+ readonly height: import("vue").PropType<number | string>;
66017
+ readonly maxBodyHeight: {
66018
+ readonly type: import("vue").PropType<number | string>;
66019
+ readonly default: 496;
66020
+ };
66021
+ readonly contentPadding: {
66022
+ readonly type: import("vue").PropType<number | string>;
66023
+ readonly default: 24;
66024
+ };
66025
+ readonly async: {
66026
+ readonly type: BooleanConstructor;
66027
+ readonly default: undefined;
66028
+ };
66029
+ readonly copyable: {
66030
+ readonly type: BooleanConstructor;
66031
+ readonly default: true;
66032
+ };
66033
+ readonly formatCopy: import("vue").PropType<import("./icon-pack").IconPackFormatCopy>;
66034
+ readonly formatGroupLabel: import("vue").PropType<import("./icon-pack").IconPackFormatGroupLabel>;
66035
+ readonly formatIconLabel: import("vue").PropType<import("./icon-pack").IconPackFormatIconLabel>;
66036
+ readonly showGroupCounter: {
66037
+ readonly type: BooleanConstructor;
66038
+ readonly default: true;
66039
+ };
66040
+ readonly emptyText: StringConstructor;
66041
+ readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
66042
+ readonly searchInputProps: import("vue").PropType<Partial<import("./input").InputProps>>;
66043
+ readonly scrollbarProps: import("vue").PropType<Partial<import("./scrollbar").ScrollbarProps>>;
66044
+ readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconPack", {
66045
+ containerColor: string;
66046
+ borderRadius: string;
66047
+ titleTextColor: string;
66048
+ descriptionTextColor: string;
66049
+ groupTitleTextColor: string;
66050
+ groupCounterTextColor: string;
66051
+ cardColor: string;
66052
+ cardColorHover: string;
66053
+ cardColorPressed: string;
66054
+ cardColorSelected: string;
66055
+ cardBorderRadius: string;
66056
+ cardIconColor: string;
66057
+ cardIconColorSelected: string;
66058
+ cardLabelTextColor: string;
66059
+ cardLabelTextColorSelected: string;
66060
+ dividerColor: string;
66061
+ }, {
66062
+ Input: import("./_mixins").Theme<"Input", {
66063
+ paddingTiny: string;
66064
+ paddingSmall: string;
66065
+ paddingMedium: string;
66066
+ paddingLarge: string;
66067
+ paddingHuge: string;
66068
+ clearSize: string;
66069
+ countTextColorDisabled: string;
66070
+ countTextColor: string;
66071
+ heightTiny: string;
66072
+ heightSmall: string;
66073
+ heightMedium: string;
66074
+ heightLarge: string;
66075
+ heightHuge: string;
66076
+ fontSizeTiny: string;
66077
+ fontSizeSmall: string;
66078
+ fontSizeMedium: string;
66079
+ fontSizeLarge: string;
66080
+ fontSizeHuge: string;
66081
+ lineHeight: string;
66082
+ lineHeightTextarea: string;
66083
+ borderRadius: string;
66084
+ iconSize: string;
66085
+ groupLabelTextColor: string;
66086
+ textColor: string;
66087
+ textColorDisabled: string;
66088
+ textDecorationColor: string;
66089
+ caretColor: string;
66090
+ placeholderColor: string;
66091
+ placeholderColorDisabled: string;
66092
+ color: string;
66093
+ colorDisabled: string;
66094
+ colorFocus: string;
66095
+ groupLabelBorder: string;
66096
+ border: string;
66097
+ borderHover: string;
66098
+ borderDisabled: string;
66099
+ borderFocus: string;
66100
+ boxShadowFocus: string;
66101
+ loadingColor: string;
66102
+ loadingColorSuccess: string;
66103
+ borderSuccess: string;
66104
+ borderHoverSuccess: string;
66105
+ colorFocusSuccess: string;
66106
+ borderFocusSuccess: string;
66107
+ boxShadowFocusSuccess: string;
66108
+ caretColorSuccess: string;
66109
+ loadingColorWarning: string;
66110
+ borderWarning: string;
66111
+ borderHoverWarning: string;
66112
+ colorFocusWarning: string;
66113
+ borderFocusWarning: string;
66114
+ boxShadowFocusWarning: string;
66115
+ caretColorWarning: string;
66116
+ loadingColorError: string;
66117
+ borderError: string;
66118
+ borderHoverError: string;
66119
+ colorFocusError: string;
66120
+ borderFocusError: string;
66121
+ boxShadowFocusError: string;
66122
+ caretColorError: string;
66123
+ clearColor: string;
66124
+ clearColorHover: string;
66125
+ clearColorPressed: string;
66126
+ iconColor: string;
66127
+ iconColorDisabled: string;
66128
+ iconColorHover: string;
66129
+ iconColorPressed: string;
66130
+ suffixTextColor: string;
66131
+ selectionColor: string;
66132
+ }, any>;
66133
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66134
+ height: string;
66135
+ width: string;
66136
+ borderRadius: string;
66137
+ color: string;
66138
+ colorHover: string;
66139
+ railInsetHorizontalBottom: string;
66140
+ railInsetHorizontalTop: string;
66141
+ railInsetVerticalRight: string;
66142
+ railInsetVerticalLeft: string;
66143
+ railColor: string;
66144
+ }, any>;
66145
+ Empty: import("./_mixins").Theme<"Empty", {
66146
+ iconSizeSmall: string;
66147
+ iconSizeMedium: string;
66148
+ iconSizeLarge: string;
66149
+ iconSizeHuge: string;
66150
+ titleFontSizeSmall: string;
66151
+ titleFontSizeMedium: string;
66152
+ titleFontSizeLarge: string;
66153
+ titleFontSizeHuge: string;
66154
+ descriptionFontSizeSmall: string;
66155
+ descriptionFontSizeMedium: string;
66156
+ descriptionFontSizeLarge: string;
66157
+ descriptionFontSizeHuge: string;
66158
+ titleColor: string;
66159
+ descriptionColor: string;
66160
+ iconColor: string;
66161
+ iconBgColor: string;
66162
+ extraTextColor: string;
66163
+ }, any>;
66164
+ }>>;
66165
+ readonly themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconPack", {
66166
+ containerColor: string;
66167
+ borderRadius: string;
66168
+ titleTextColor: string;
66169
+ descriptionTextColor: string;
66170
+ groupTitleTextColor: string;
66171
+ groupCounterTextColor: string;
66172
+ cardColor: string;
66173
+ cardColorHover: string;
66174
+ cardColorPressed: string;
66175
+ cardColorSelected: string;
66176
+ cardBorderRadius: string;
66177
+ cardIconColor: string;
66178
+ cardIconColorSelected: string;
66179
+ cardLabelTextColor: string;
66180
+ cardLabelTextColorSelected: string;
66181
+ dividerColor: string;
66182
+ }, {
66183
+ Input: import("./_mixins").Theme<"Input", {
66184
+ paddingTiny: string;
66185
+ paddingSmall: string;
66186
+ paddingMedium: string;
66187
+ paddingLarge: string;
66188
+ paddingHuge: string;
66189
+ clearSize: string;
66190
+ countTextColorDisabled: string;
66191
+ countTextColor: string;
66192
+ heightTiny: string;
66193
+ heightSmall: string;
66194
+ heightMedium: string;
66195
+ heightLarge: string;
66196
+ heightHuge: string;
66197
+ fontSizeTiny: string;
66198
+ fontSizeSmall: string;
66199
+ fontSizeMedium: string;
66200
+ fontSizeLarge: string;
66201
+ fontSizeHuge: string;
66202
+ lineHeight: string;
66203
+ lineHeightTextarea: string;
66204
+ borderRadius: string;
66205
+ iconSize: string;
66206
+ groupLabelTextColor: string;
66207
+ textColor: string;
66208
+ textColorDisabled: string;
66209
+ textDecorationColor: string;
66210
+ caretColor: string;
66211
+ placeholderColor: string;
66212
+ placeholderColorDisabled: string;
66213
+ color: string;
66214
+ colorDisabled: string;
66215
+ colorFocus: string;
66216
+ groupLabelBorder: string;
66217
+ border: string;
66218
+ borderHover: string;
66219
+ borderDisabled: string;
66220
+ borderFocus: string;
66221
+ boxShadowFocus: string;
66222
+ loadingColor: string;
66223
+ loadingColorSuccess: string;
66224
+ borderSuccess: string;
66225
+ borderHoverSuccess: string;
66226
+ colorFocusSuccess: string;
66227
+ borderFocusSuccess: string;
66228
+ boxShadowFocusSuccess: string;
66229
+ caretColorSuccess: string;
66230
+ loadingColorWarning: string;
66231
+ borderWarning: string;
66232
+ borderHoverWarning: string;
66233
+ colorFocusWarning: string;
66234
+ borderFocusWarning: string;
66235
+ boxShadowFocusWarning: string;
66236
+ caretColorWarning: string;
66237
+ loadingColorError: string;
66238
+ borderError: string;
66239
+ borderHoverError: string;
66240
+ colorFocusError: string;
66241
+ borderFocusError: string;
66242
+ boxShadowFocusError: string;
66243
+ caretColorError: string;
66244
+ clearColor: string;
66245
+ clearColorHover: string;
66246
+ clearColorPressed: string;
66247
+ iconColor: string;
66248
+ iconColorDisabled: string;
66249
+ iconColorHover: string;
66250
+ iconColorPressed: string;
66251
+ suffixTextColor: string;
66252
+ selectionColor: string;
66253
+ }, any>;
66254
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66255
+ height: string;
66256
+ width: string;
66257
+ borderRadius: string;
66258
+ color: string;
66259
+ colorHover: string;
66260
+ railInsetHorizontalBottom: string;
66261
+ railInsetHorizontalTop: string;
66262
+ railInsetVerticalRight: string;
66263
+ railInsetVerticalLeft: string;
66264
+ railColor: string;
66265
+ }, any>;
66266
+ Empty: import("./_mixins").Theme<"Empty", {
66267
+ iconSizeSmall: string;
66268
+ iconSizeMedium: string;
66269
+ iconSizeLarge: string;
66270
+ iconSizeHuge: string;
66271
+ titleFontSizeSmall: string;
66272
+ titleFontSizeMedium: string;
66273
+ titleFontSizeLarge: string;
66274
+ titleFontSizeHuge: string;
66275
+ descriptionFontSizeSmall: string;
66276
+ descriptionFontSizeMedium: string;
66277
+ descriptionFontSizeLarge: string;
66278
+ descriptionFontSizeHuge: string;
66279
+ titleColor: string;
66280
+ descriptionColor: string;
66281
+ iconColor: string;
66282
+ iconBgColor: string;
66283
+ extraTextColor: string;
66284
+ }, any>;
66285
+ }>>>;
66286
+ readonly builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconPack", {
66287
+ containerColor: string;
66288
+ borderRadius: string;
66289
+ titleTextColor: string;
66290
+ descriptionTextColor: string;
66291
+ groupTitleTextColor: string;
66292
+ groupCounterTextColor: string;
66293
+ cardColor: string;
66294
+ cardColorHover: string;
66295
+ cardColorPressed: string;
66296
+ cardColorSelected: string;
66297
+ cardBorderRadius: string;
66298
+ cardIconColor: string;
66299
+ cardIconColorSelected: string;
66300
+ cardLabelTextColor: string;
66301
+ cardLabelTextColorSelected: string;
66302
+ dividerColor: string;
66303
+ }, {
66304
+ Input: import("./_mixins").Theme<"Input", {
66305
+ paddingTiny: string;
66306
+ paddingSmall: string;
66307
+ paddingMedium: string;
66308
+ paddingLarge: string;
66309
+ paddingHuge: string;
66310
+ clearSize: string;
66311
+ countTextColorDisabled: string;
66312
+ countTextColor: string;
66313
+ heightTiny: string;
66314
+ heightSmall: string;
66315
+ heightMedium: string;
66316
+ heightLarge: string;
66317
+ heightHuge: string;
66318
+ fontSizeTiny: string;
66319
+ fontSizeSmall: string;
66320
+ fontSizeMedium: string;
66321
+ fontSizeLarge: string;
66322
+ fontSizeHuge: string;
66323
+ lineHeight: string;
66324
+ lineHeightTextarea: string;
66325
+ borderRadius: string;
66326
+ iconSize: string;
66327
+ groupLabelTextColor: string;
66328
+ textColor: string;
66329
+ textColorDisabled: string;
66330
+ textDecorationColor: string;
66331
+ caretColor: string;
66332
+ placeholderColor: string;
66333
+ placeholderColorDisabled: string;
66334
+ color: string;
66335
+ colorDisabled: string;
66336
+ colorFocus: string;
66337
+ groupLabelBorder: string;
66338
+ border: string;
66339
+ borderHover: string;
66340
+ borderDisabled: string;
66341
+ borderFocus: string;
66342
+ boxShadowFocus: string;
66343
+ loadingColor: string;
66344
+ loadingColorSuccess: string;
66345
+ borderSuccess: string;
66346
+ borderHoverSuccess: string;
66347
+ colorFocusSuccess: string;
66348
+ borderFocusSuccess: string;
66349
+ boxShadowFocusSuccess: string;
66350
+ caretColorSuccess: string;
66351
+ loadingColorWarning: string;
66352
+ borderWarning: string;
66353
+ borderHoverWarning: string;
66354
+ colorFocusWarning: string;
66355
+ borderFocusWarning: string;
66356
+ boxShadowFocusWarning: string;
66357
+ caretColorWarning: string;
66358
+ loadingColorError: string;
66359
+ borderError: string;
66360
+ borderHoverError: string;
66361
+ colorFocusError: string;
66362
+ borderFocusError: string;
66363
+ boxShadowFocusError: string;
66364
+ caretColorError: string;
66365
+ clearColor: string;
66366
+ clearColorHover: string;
66367
+ clearColorPressed: string;
66368
+ iconColor: string;
66369
+ iconColorDisabled: string;
66370
+ iconColorHover: string;
66371
+ iconColorPressed: string;
66372
+ suffixTextColor: string;
66373
+ selectionColor: string;
66374
+ }, any>;
66375
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66376
+ height: string;
66377
+ width: string;
66378
+ borderRadius: string;
66379
+ color: string;
66380
+ colorHover: string;
66381
+ railInsetHorizontalBottom: string;
66382
+ railInsetHorizontalTop: string;
66383
+ railInsetVerticalRight: string;
66384
+ railInsetVerticalLeft: string;
66385
+ railColor: string;
66386
+ }, any>;
66387
+ Empty: import("./_mixins").Theme<"Empty", {
66388
+ iconSizeSmall: string;
66389
+ iconSizeMedium: string;
66390
+ iconSizeLarge: string;
66391
+ iconSizeHuge: string;
66392
+ titleFontSizeSmall: string;
66393
+ titleFontSizeMedium: string;
66394
+ titleFontSizeLarge: string;
66395
+ titleFontSizeHuge: string;
66396
+ descriptionFontSizeSmall: string;
66397
+ descriptionFontSizeMedium: string;
66398
+ descriptionFontSizeLarge: string;
66399
+ descriptionFontSizeHuge: string;
66400
+ titleColor: string;
66401
+ descriptionColor: string;
66402
+ iconColor: string;
66403
+ iconBgColor: string;
66404
+ extraTextColor: string;
66405
+ }, any>;
66406
+ }>>>;
66407
+ }>, {
66408
+ mergedClsPrefix: import("vue").Ref<string, string>;
66409
+ mergedTheme: import("vue").ComputedRef<{
66410
+ common: import("./config-provider").ThemeCommonVars;
66411
+ self: {
66412
+ containerColor: string;
66413
+ borderRadius: string;
66414
+ titleTextColor: string;
66415
+ descriptionTextColor: string;
66416
+ groupTitleTextColor: string;
66417
+ groupCounterTextColor: string;
66418
+ cardColor: string;
66419
+ cardColorHover: string;
66420
+ cardColorPressed: string;
66421
+ cardColorSelected: string;
66422
+ cardBorderRadius: string;
66423
+ cardIconColor: string;
66424
+ cardIconColorSelected: string;
66425
+ cardLabelTextColor: string;
66426
+ cardLabelTextColorSelected: string;
66427
+ dividerColor: string;
66428
+ };
66429
+ peers: {
66430
+ Input: import("./_mixins").Theme<"Input", {
66431
+ paddingTiny: string;
66432
+ paddingSmall: string;
66433
+ paddingMedium: string;
66434
+ paddingLarge: string;
66435
+ paddingHuge: string;
66436
+ clearSize: string;
66437
+ countTextColorDisabled: string;
66438
+ countTextColor: string;
66439
+ heightTiny: string;
66440
+ heightSmall: string;
66441
+ heightMedium: string;
66442
+ heightLarge: string;
66443
+ heightHuge: string;
66444
+ fontSizeTiny: string;
66445
+ fontSizeSmall: string;
66446
+ fontSizeMedium: string;
66447
+ fontSizeLarge: string;
66448
+ fontSizeHuge: string;
66449
+ lineHeight: string;
66450
+ lineHeightTextarea: string;
66451
+ borderRadius: string;
66452
+ iconSize: string;
66453
+ groupLabelTextColor: string;
66454
+ textColor: string;
66455
+ textColorDisabled: string;
66456
+ textDecorationColor: string;
66457
+ caretColor: string;
66458
+ placeholderColor: string;
66459
+ placeholderColorDisabled: string;
66460
+ color: string;
66461
+ colorDisabled: string;
66462
+ colorFocus: string;
66463
+ groupLabelBorder: string;
66464
+ border: string;
66465
+ borderHover: string;
66466
+ borderDisabled: string;
66467
+ borderFocus: string;
66468
+ boxShadowFocus: string;
66469
+ loadingColor: string;
66470
+ loadingColorSuccess: string;
66471
+ borderSuccess: string;
66472
+ borderHoverSuccess: string;
66473
+ colorFocusSuccess: string;
66474
+ borderFocusSuccess: string;
66475
+ boxShadowFocusSuccess: string;
66476
+ caretColorSuccess: string;
66477
+ loadingColorWarning: string;
66478
+ borderWarning: string;
66479
+ borderHoverWarning: string;
66480
+ colorFocusWarning: string;
66481
+ borderFocusWarning: string;
66482
+ boxShadowFocusWarning: string;
66483
+ caretColorWarning: string;
66484
+ loadingColorError: string;
66485
+ borderError: string;
66486
+ borderHoverError: string;
66487
+ colorFocusError: string;
66488
+ borderFocusError: string;
66489
+ boxShadowFocusError: string;
66490
+ caretColorError: string;
66491
+ clearColor: string;
66492
+ clearColorHover: string;
66493
+ clearColorPressed: string;
66494
+ iconColor: string;
66495
+ iconColorDisabled: string;
66496
+ iconColorHover: string;
66497
+ iconColorPressed: string;
66498
+ suffixTextColor: string;
66499
+ selectionColor: string;
66500
+ }, any>;
66501
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66502
+ height: string;
66503
+ width: string;
66504
+ borderRadius: string;
66505
+ color: string;
66506
+ colorHover: string;
66507
+ railInsetHorizontalBottom: string;
66508
+ railInsetHorizontalTop: string;
66509
+ railInsetVerticalRight: string;
66510
+ railInsetVerticalLeft: string;
66511
+ railColor: string;
66512
+ }, any>;
66513
+ Empty: import("./_mixins").Theme<"Empty", {
66514
+ iconSizeSmall: string;
66515
+ iconSizeMedium: string;
66516
+ iconSizeLarge: string;
66517
+ iconSizeHuge: string;
66518
+ titleFontSizeSmall: string;
66519
+ titleFontSizeMedium: string;
66520
+ titleFontSizeLarge: string;
66521
+ titleFontSizeHuge: string;
66522
+ descriptionFontSizeSmall: string;
66523
+ descriptionFontSizeMedium: string;
66524
+ descriptionFontSizeLarge: string;
66525
+ descriptionFontSizeHuge: string;
66526
+ titleColor: string;
66527
+ descriptionColor: string;
66528
+ iconColor: string;
66529
+ iconBgColor: string;
66530
+ extraTextColor: string;
66531
+ }, any>;
66532
+ };
66533
+ peerOverrides: {
66534
+ Input?: {
66535
+ peers?: {
66536
+ [x: string]: any;
66537
+ } | undefined;
66538
+ } | undefined;
66539
+ Scrollbar?: {
66540
+ peers?: {
66541
+ [x: string]: any;
66542
+ } | undefined;
66543
+ } | undefined;
66544
+ Empty?: {
66545
+ peers?: {
66546
+ [x: string]: any;
66547
+ } | undefined;
66548
+ } | undefined;
66549
+ };
66550
+ }>;
66551
+ cssVars: import("vue").ComputedRef<Record<string, string>>;
66552
+ themeClass: import("vue").Ref<string, string>;
66553
+ onRender: () => void;
66554
+ mergedValue: import("vue").ComputedRef<import("./icon-pack").IconPackValue>;
66555
+ mergedSearch: import("vue").ComputedRef<string>;
66556
+ mergedDisabled: import("vue").ComputedRef<boolean>;
66557
+ groups: import("vue").ComputedRef<import("./icon-pack").IconPackGroupData[]>;
66558
+ isEmpty: import("vue").ComputedRef<boolean>;
66559
+ handleSearch: (value: string) => void;
66560
+ handleSelect: (icon: import("./icon-pack").IconPackIcon) => void;
66561
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("copy" | "select" | "search" | "update:value" | "update:searchValue")[], "copy" | "select" | "search" | "update:value" | "update:searchValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
66562
+ readonly pack: import("vue").PropType<import("@uzum-tech/icons").AnyIconPack | string>;
66563
+ readonly value: import("vue").PropType<import("./icon-pack").IconPackValue>;
66564
+ readonly defaultValue: {
66565
+ readonly type: import("vue").PropType<import("./icon-pack").IconPackValue>;
66566
+ readonly default: null;
66567
+ };
66568
+ readonly disabled: {
66569
+ readonly type: BooleanConstructor;
66570
+ readonly default: undefined;
66571
+ };
66572
+ readonly title: StringConstructor;
66573
+ readonly description: StringConstructor;
66574
+ readonly searchable: {
66575
+ readonly type: BooleanConstructor;
66576
+ readonly default: true;
66577
+ };
66578
+ readonly searchValue: StringConstructor;
66579
+ readonly defaultSearchValue: {
66580
+ readonly type: StringConstructor;
66581
+ readonly default: "";
66582
+ };
66583
+ readonly searchPlaceholder: StringConstructor;
66584
+ readonly searchDebounce: {
66585
+ readonly type: NumberConstructor;
66586
+ readonly default: 200;
66587
+ };
66588
+ readonly grouped: {
66589
+ readonly type: BooleanConstructor;
66590
+ readonly default: true;
66591
+ };
66592
+ readonly columns: {
66593
+ readonly type: import("vue").PropType<number | "auto">;
66594
+ readonly default: "auto";
66595
+ };
66596
+ readonly minColumnWidth: {
66597
+ readonly type: import("vue").PropType<number | string>;
66598
+ readonly default: 150;
66599
+ };
66600
+ readonly iconSize: {
66601
+ readonly type: import("vue").PropType<number | string>;
66602
+ readonly default: 40;
66603
+ };
66604
+ readonly height: import("vue").PropType<number | string>;
66605
+ readonly maxBodyHeight: {
66606
+ readonly type: import("vue").PropType<number | string>;
66607
+ readonly default: 496;
66608
+ };
66609
+ readonly contentPadding: {
66610
+ readonly type: import("vue").PropType<number | string>;
66611
+ readonly default: 24;
66612
+ };
66613
+ readonly async: {
66614
+ readonly type: BooleanConstructor;
66615
+ readonly default: undefined;
66616
+ };
66617
+ readonly copyable: {
66618
+ readonly type: BooleanConstructor;
66619
+ readonly default: true;
66620
+ };
66621
+ readonly formatCopy: import("vue").PropType<import("./icon-pack").IconPackFormatCopy>;
66622
+ readonly formatGroupLabel: import("vue").PropType<import("./icon-pack").IconPackFormatGroupLabel>;
66623
+ readonly formatIconLabel: import("vue").PropType<import("./icon-pack").IconPackFormatIconLabel>;
66624
+ readonly showGroupCounter: {
66625
+ readonly type: BooleanConstructor;
66626
+ readonly default: true;
66627
+ };
66628
+ readonly emptyText: StringConstructor;
66629
+ readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
66630
+ readonly searchInputProps: import("vue").PropType<Partial<import("./input").InputProps>>;
66631
+ readonly scrollbarProps: import("vue").PropType<Partial<import("./scrollbar").ScrollbarProps>>;
66632
+ readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconPack", {
66633
+ containerColor: string;
66634
+ borderRadius: string;
66635
+ titleTextColor: string;
66636
+ descriptionTextColor: string;
66637
+ groupTitleTextColor: string;
66638
+ groupCounterTextColor: string;
66639
+ cardColor: string;
66640
+ cardColorHover: string;
66641
+ cardColorPressed: string;
66642
+ cardColorSelected: string;
66643
+ cardBorderRadius: string;
66644
+ cardIconColor: string;
66645
+ cardIconColorSelected: string;
66646
+ cardLabelTextColor: string;
66647
+ cardLabelTextColorSelected: string;
66648
+ dividerColor: string;
66649
+ }, {
66650
+ Input: import("./_mixins").Theme<"Input", {
66651
+ paddingTiny: string;
66652
+ paddingSmall: string;
66653
+ paddingMedium: string;
66654
+ paddingLarge: string;
66655
+ paddingHuge: string;
66656
+ clearSize: string;
66657
+ countTextColorDisabled: string;
66658
+ countTextColor: string;
66659
+ heightTiny: string;
66660
+ heightSmall: string;
66661
+ heightMedium: string;
66662
+ heightLarge: string;
66663
+ heightHuge: string;
66664
+ fontSizeTiny: string;
66665
+ fontSizeSmall: string;
66666
+ fontSizeMedium: string;
66667
+ fontSizeLarge: string;
66668
+ fontSizeHuge: string;
66669
+ lineHeight: string;
66670
+ lineHeightTextarea: string;
66671
+ borderRadius: string;
66672
+ iconSize: string;
66673
+ groupLabelTextColor: string;
66674
+ textColor: string;
66675
+ textColorDisabled: string;
66676
+ textDecorationColor: string;
66677
+ caretColor: string;
66678
+ placeholderColor: string;
66679
+ placeholderColorDisabled: string;
66680
+ color: string;
66681
+ colorDisabled: string;
66682
+ colorFocus: string;
66683
+ groupLabelBorder: string;
66684
+ border: string;
66685
+ borderHover: string;
66686
+ borderDisabled: string;
66687
+ borderFocus: string;
66688
+ boxShadowFocus: string;
66689
+ loadingColor: string;
66690
+ loadingColorSuccess: string;
66691
+ borderSuccess: string;
66692
+ borderHoverSuccess: string;
66693
+ colorFocusSuccess: string;
66694
+ borderFocusSuccess: string;
66695
+ boxShadowFocusSuccess: string;
66696
+ caretColorSuccess: string;
66697
+ loadingColorWarning: string;
66698
+ borderWarning: string;
66699
+ borderHoverWarning: string;
66700
+ colorFocusWarning: string;
66701
+ borderFocusWarning: string;
66702
+ boxShadowFocusWarning: string;
66703
+ caretColorWarning: string;
66704
+ loadingColorError: string;
66705
+ borderError: string;
66706
+ borderHoverError: string;
66707
+ colorFocusError: string;
66708
+ borderFocusError: string;
66709
+ boxShadowFocusError: string;
66710
+ caretColorError: string;
66711
+ clearColor: string;
66712
+ clearColorHover: string;
66713
+ clearColorPressed: string;
66714
+ iconColor: string;
66715
+ iconColorDisabled: string;
66716
+ iconColorHover: string;
66717
+ iconColorPressed: string;
66718
+ suffixTextColor: string;
66719
+ selectionColor: string;
66720
+ }, any>;
66721
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66722
+ height: string;
66723
+ width: string;
66724
+ borderRadius: string;
66725
+ color: string;
66726
+ colorHover: string;
66727
+ railInsetHorizontalBottom: string;
66728
+ railInsetHorizontalTop: string;
66729
+ railInsetVerticalRight: string;
66730
+ railInsetVerticalLeft: string;
66731
+ railColor: string;
66732
+ }, any>;
66733
+ Empty: import("./_mixins").Theme<"Empty", {
66734
+ iconSizeSmall: string;
66735
+ iconSizeMedium: string;
66736
+ iconSizeLarge: string;
66737
+ iconSizeHuge: string;
66738
+ titleFontSizeSmall: string;
66739
+ titleFontSizeMedium: string;
66740
+ titleFontSizeLarge: string;
66741
+ titleFontSizeHuge: string;
66742
+ descriptionFontSizeSmall: string;
66743
+ descriptionFontSizeMedium: string;
66744
+ descriptionFontSizeLarge: string;
66745
+ descriptionFontSizeHuge: string;
66746
+ titleColor: string;
66747
+ descriptionColor: string;
66748
+ iconColor: string;
66749
+ iconBgColor: string;
66750
+ extraTextColor: string;
66751
+ }, any>;
66752
+ }>>;
66753
+ readonly themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconPack", {
66754
+ containerColor: string;
66755
+ borderRadius: string;
66756
+ titleTextColor: string;
66757
+ descriptionTextColor: string;
66758
+ groupTitleTextColor: string;
66759
+ groupCounterTextColor: string;
66760
+ cardColor: string;
66761
+ cardColorHover: string;
66762
+ cardColorPressed: string;
66763
+ cardColorSelected: string;
66764
+ cardBorderRadius: string;
66765
+ cardIconColor: string;
66766
+ cardIconColorSelected: string;
66767
+ cardLabelTextColor: string;
66768
+ cardLabelTextColorSelected: string;
66769
+ dividerColor: string;
66770
+ }, {
66771
+ Input: import("./_mixins").Theme<"Input", {
66772
+ paddingTiny: string;
66773
+ paddingSmall: string;
66774
+ paddingMedium: string;
66775
+ paddingLarge: string;
66776
+ paddingHuge: string;
66777
+ clearSize: string;
66778
+ countTextColorDisabled: string;
66779
+ countTextColor: string;
66780
+ heightTiny: string;
66781
+ heightSmall: string;
66782
+ heightMedium: string;
66783
+ heightLarge: string;
66784
+ heightHuge: string;
66785
+ fontSizeTiny: string;
66786
+ fontSizeSmall: string;
66787
+ fontSizeMedium: string;
66788
+ fontSizeLarge: string;
66789
+ fontSizeHuge: string;
66790
+ lineHeight: string;
66791
+ lineHeightTextarea: string;
66792
+ borderRadius: string;
66793
+ iconSize: string;
66794
+ groupLabelTextColor: string;
66795
+ textColor: string;
66796
+ textColorDisabled: string;
66797
+ textDecorationColor: string;
66798
+ caretColor: string;
66799
+ placeholderColor: string;
66800
+ placeholderColorDisabled: string;
66801
+ color: string;
66802
+ colorDisabled: string;
66803
+ colorFocus: string;
66804
+ groupLabelBorder: string;
66805
+ border: string;
66806
+ borderHover: string;
66807
+ borderDisabled: string;
66808
+ borderFocus: string;
66809
+ boxShadowFocus: string;
66810
+ loadingColor: string;
66811
+ loadingColorSuccess: string;
66812
+ borderSuccess: string;
66813
+ borderHoverSuccess: string;
66814
+ colorFocusSuccess: string;
66815
+ borderFocusSuccess: string;
66816
+ boxShadowFocusSuccess: string;
66817
+ caretColorSuccess: string;
66818
+ loadingColorWarning: string;
66819
+ borderWarning: string;
66820
+ borderHoverWarning: string;
66821
+ colorFocusWarning: string;
66822
+ borderFocusWarning: string;
66823
+ boxShadowFocusWarning: string;
66824
+ caretColorWarning: string;
66825
+ loadingColorError: string;
66826
+ borderError: string;
66827
+ borderHoverError: string;
66828
+ colorFocusError: string;
66829
+ borderFocusError: string;
66830
+ boxShadowFocusError: string;
66831
+ caretColorError: string;
66832
+ clearColor: string;
66833
+ clearColorHover: string;
66834
+ clearColorPressed: string;
66835
+ iconColor: string;
66836
+ iconColorDisabled: string;
66837
+ iconColorHover: string;
66838
+ iconColorPressed: string;
66839
+ suffixTextColor: string;
66840
+ selectionColor: string;
66841
+ }, any>;
66842
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66843
+ height: string;
66844
+ width: string;
66845
+ borderRadius: string;
66846
+ color: string;
66847
+ colorHover: string;
66848
+ railInsetHorizontalBottom: string;
66849
+ railInsetHorizontalTop: string;
66850
+ railInsetVerticalRight: string;
66851
+ railInsetVerticalLeft: string;
66852
+ railColor: string;
66853
+ }, any>;
66854
+ Empty: import("./_mixins").Theme<"Empty", {
66855
+ iconSizeSmall: string;
66856
+ iconSizeMedium: string;
66857
+ iconSizeLarge: string;
66858
+ iconSizeHuge: string;
66859
+ titleFontSizeSmall: string;
66860
+ titleFontSizeMedium: string;
66861
+ titleFontSizeLarge: string;
66862
+ titleFontSizeHuge: string;
66863
+ descriptionFontSizeSmall: string;
66864
+ descriptionFontSizeMedium: string;
66865
+ descriptionFontSizeLarge: string;
66866
+ descriptionFontSizeHuge: string;
66867
+ titleColor: string;
66868
+ descriptionColor: string;
66869
+ iconColor: string;
66870
+ iconBgColor: string;
66871
+ extraTextColor: string;
66872
+ }, any>;
66873
+ }>>>;
66874
+ readonly builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"IconPack", {
66875
+ containerColor: string;
66876
+ borderRadius: string;
66877
+ titleTextColor: string;
66878
+ descriptionTextColor: string;
66879
+ groupTitleTextColor: string;
66880
+ groupCounterTextColor: string;
66881
+ cardColor: string;
66882
+ cardColorHover: string;
66883
+ cardColorPressed: string;
66884
+ cardColorSelected: string;
66885
+ cardBorderRadius: string;
66886
+ cardIconColor: string;
66887
+ cardIconColorSelected: string;
66888
+ cardLabelTextColor: string;
66889
+ cardLabelTextColorSelected: string;
66890
+ dividerColor: string;
66891
+ }, {
66892
+ Input: import("./_mixins").Theme<"Input", {
66893
+ paddingTiny: string;
66894
+ paddingSmall: string;
66895
+ paddingMedium: string;
66896
+ paddingLarge: string;
66897
+ paddingHuge: string;
66898
+ clearSize: string;
66899
+ countTextColorDisabled: string;
66900
+ countTextColor: string;
66901
+ heightTiny: string;
66902
+ heightSmall: string;
66903
+ heightMedium: string;
66904
+ heightLarge: string;
66905
+ heightHuge: string;
66906
+ fontSizeTiny: string;
66907
+ fontSizeSmall: string;
66908
+ fontSizeMedium: string;
66909
+ fontSizeLarge: string;
66910
+ fontSizeHuge: string;
66911
+ lineHeight: string;
66912
+ lineHeightTextarea: string;
66913
+ borderRadius: string;
66914
+ iconSize: string;
66915
+ groupLabelTextColor: string;
66916
+ textColor: string;
66917
+ textColorDisabled: string;
66918
+ textDecorationColor: string;
66919
+ caretColor: string;
66920
+ placeholderColor: string;
66921
+ placeholderColorDisabled: string;
66922
+ color: string;
66923
+ colorDisabled: string;
66924
+ colorFocus: string;
66925
+ groupLabelBorder: string;
66926
+ border: string;
66927
+ borderHover: string;
66928
+ borderDisabled: string;
66929
+ borderFocus: string;
66930
+ boxShadowFocus: string;
66931
+ loadingColor: string;
66932
+ loadingColorSuccess: string;
66933
+ borderSuccess: string;
66934
+ borderHoverSuccess: string;
66935
+ colorFocusSuccess: string;
66936
+ borderFocusSuccess: string;
66937
+ boxShadowFocusSuccess: string;
66938
+ caretColorSuccess: string;
66939
+ loadingColorWarning: string;
66940
+ borderWarning: string;
66941
+ borderHoverWarning: string;
66942
+ colorFocusWarning: string;
66943
+ borderFocusWarning: string;
66944
+ boxShadowFocusWarning: string;
66945
+ caretColorWarning: string;
66946
+ loadingColorError: string;
66947
+ borderError: string;
66948
+ borderHoverError: string;
66949
+ colorFocusError: string;
66950
+ borderFocusError: string;
66951
+ boxShadowFocusError: string;
66952
+ caretColorError: string;
66953
+ clearColor: string;
66954
+ clearColorHover: string;
66955
+ clearColorPressed: string;
66956
+ iconColor: string;
66957
+ iconColorDisabled: string;
66958
+ iconColorHover: string;
66959
+ iconColorPressed: string;
66960
+ suffixTextColor: string;
66961
+ selectionColor: string;
66962
+ }, any>;
66963
+ Scrollbar: import("./_mixins").Theme<"Scrollbar", {
66964
+ height: string;
66965
+ width: string;
66966
+ borderRadius: string;
66967
+ color: string;
66968
+ colorHover: string;
66969
+ railInsetHorizontalBottom: string;
66970
+ railInsetHorizontalTop: string;
66971
+ railInsetVerticalRight: string;
66972
+ railInsetVerticalLeft: string;
66973
+ railColor: string;
66974
+ }, any>;
66975
+ Empty: import("./_mixins").Theme<"Empty", {
66976
+ iconSizeSmall: string;
66977
+ iconSizeMedium: string;
66978
+ iconSizeLarge: string;
66979
+ iconSizeHuge: string;
66980
+ titleFontSizeSmall: string;
66981
+ titleFontSizeMedium: string;
66982
+ titleFontSizeLarge: string;
66983
+ titleFontSizeHuge: string;
66984
+ descriptionFontSizeSmall: string;
66985
+ descriptionFontSizeMedium: string;
66986
+ descriptionFontSizeLarge: string;
66987
+ descriptionFontSizeHuge: string;
66988
+ titleColor: string;
66989
+ descriptionColor: string;
66990
+ iconColor: string;
66991
+ iconBgColor: string;
66992
+ extraTextColor: string;
66993
+ }, any>;
66994
+ }>>>;
66995
+ }>> & Readonly<{
66996
+ onCopy?: ((...args: any[]) => any) | undefined;
66997
+ onSelect?: ((...args: any[]) => any) | undefined;
66998
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
66999
+ onSearch?: ((...args: any[]) => any) | undefined;
67000
+ "onUpdate:searchValue"?: ((...args: any[]) => any) | undefined;
67001
+ }>, {
67002
+ readonly disabled: boolean;
67003
+ readonly iconSize: string | number;
67004
+ readonly defaultValue: import("./icon-pack").IconPackValue;
67005
+ readonly async: boolean;
67006
+ readonly columns: number | "auto";
67007
+ readonly copyable: boolean;
67008
+ readonly searchable: boolean;
67009
+ readonly defaultSearchValue: string;
67010
+ readonly searchDebounce: number;
67011
+ readonly grouped: boolean;
67012
+ readonly minColumnWidth: string | number;
67013
+ readonly maxBodyHeight: string | number;
67014
+ readonly contentPadding: string | number;
67015
+ readonly showGroupCounter: boolean;
67016
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
65953
67017
  export type * from './icon-wrapper';
65954
67018
  export { iconWrapperProps } from './icon-wrapper';
65955
67019
  export declare const UIconWrapper: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -66019,8 +67083,8 @@ export declare const UIconWrapper: import("vue").DefineComponent<import("vue").E
66019
67083
  }>> & Readonly<{}>, {
66020
67084
  readonly borderRadius: number;
66021
67085
  readonly size: number;
66022
- readonly pulseSize: number;
66023
67086
  readonly variant: import("./icon-wrapper/src/interface").IconWrapperVariant;
67087
+ readonly pulseSize: number;
66024
67088
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
66025
67089
  export type * from './image';
66026
67090
  export { imageGroupProps, imagePreviewProps, imageProps } from './image';
@@ -85765,6 +86829,18 @@ export type * from './pagination';
85765
86829
  export { paginationProps } from './pagination';
85766
86830
  export declare const UPagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
85767
86831
  readonly simple: BooleanConstructor;
86832
+ readonly variant: {
86833
+ readonly type: import("vue").PropType<import("./pagination").PaginationVariant>;
86834
+ readonly default: "default";
86835
+ };
86836
+ readonly hasPrev: {
86837
+ readonly type: BooleanConstructor;
86838
+ readonly default: undefined;
86839
+ };
86840
+ readonly hasNext: {
86841
+ readonly type: BooleanConstructor;
86842
+ readonly default: undefined;
86843
+ };
85768
86844
  readonly page: NumberConstructor;
85769
86845
  readonly defaultPage: {
85770
86846
  readonly type: NumberConstructor;
@@ -85802,7 +86878,7 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
85802
86878
  readonly suffix: import("vue").PropType<import("./pagination/src/interface").RenderSuffix>;
85803
86879
  readonly label: import("vue").PropType<import("./pagination").PaginationRenderLabel>;
85804
86880
  readonly displayOrder: {
85805
- readonly type: import("vue").PropType<Array<"size-picker" | "pages" | "quick-jumper">>;
86881
+ readonly type: import("vue").PropType<import("./pagination").PaginationDisplayOrder[]>;
85806
86882
  readonly default: readonly ["size-picker", "pages", "quick-jumper"];
85807
86883
  };
85808
86884
  readonly to: {
@@ -87090,6 +88166,8 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
87090
88166
  }>;
87091
88167
  selfRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
87092
88168
  mergedPage: import("vue").ComputedRef<number>;
88169
+ mergedHasPrev: import("vue").ComputedRef<boolean>;
88170
+ mergedHasNext: import("vue").ComputedRef<boolean>;
87093
88171
  pageItems: import("vue").ComputedRef<import("./pagination/src/utils").PageItem[]>;
87094
88172
  mergedItemCount: import("vue").ComputedRef<number>;
87095
88173
  jumperValue: import("vue").Ref<string, string>;
@@ -87873,6 +88951,18 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
87873
88951
  onRender: (() => void) | undefined;
87874
88952
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
87875
88953
  readonly simple: BooleanConstructor;
88954
+ readonly variant: {
88955
+ readonly type: import("vue").PropType<import("./pagination").PaginationVariant>;
88956
+ readonly default: "default";
88957
+ };
88958
+ readonly hasPrev: {
88959
+ readonly type: BooleanConstructor;
88960
+ readonly default: undefined;
88961
+ };
88962
+ readonly hasNext: {
88963
+ readonly type: BooleanConstructor;
88964
+ readonly default: undefined;
88965
+ };
87876
88966
  readonly page: NumberConstructor;
87877
88967
  readonly defaultPage: {
87878
88968
  readonly type: NumberConstructor;
@@ -87910,7 +89000,7 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
87910
89000
  readonly suffix: import("vue").PropType<import("./pagination/src/interface").RenderSuffix>;
87911
89001
  readonly label: import("vue").PropType<import("./pagination").PaginationRenderLabel>;
87912
89002
  readonly displayOrder: {
87913
- readonly type: import("vue").PropType<Array<"size-picker" | "pages" | "quick-jumper">>;
89003
+ readonly type: import("vue").PropType<import("./pagination").PaginationDisplayOrder[]>;
87914
89004
  readonly default: readonly ["size-picker", "pages", "quick-jumper"];
87915
89005
  };
87916
89006
  readonly to: {
@@ -89191,13 +90281,16 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
89191
90281
  readonly to: string | boolean | HTMLElement;
89192
90282
  readonly size: import("./pagination/src/interface").Size;
89193
90283
  readonly simple: boolean;
90284
+ readonly variant: import("./pagination").PaginationVariant;
90285
+ readonly hasPrev: boolean;
90286
+ readonly hasNext: boolean;
89194
90287
  readonly defaultPage: number;
89195
90288
  readonly defaultPageCount: number;
89196
90289
  readonly showSizePicker: boolean;
89197
90290
  readonly pageSizes: (number | import("./pagination").PaginationSizeOption)[];
89198
90291
  readonly showQuickJumper: boolean;
89199
90292
  readonly pageSlot: number;
89200
- readonly displayOrder: ("size-picker" | "pages" | "quick-jumper")[];
90293
+ readonly displayOrder: import("./pagination").PaginationDisplayOrder[];
89201
90294
  }, import("vue").SlotsType<import("./pagination").PaginationSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
89202
90295
  export type * from './popconfirm';
89203
90296
  export { popconfirmProps } from './popconfirm';