@unizhen/ui 0.0.39 → 0.0.41

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.
@@ -1,4 +1,4 @@
1
- import { PropType, DefineComponent, ExtractPropTypes, Ref, VNodeChild, ComponentOptionsMixin, PublicProps, Component, ComputedRef, ComponentProvideOptions, SlotsType, CSSProperties, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, VNode } from 'vue';
1
+ import { PropType, DefineComponent, ExtractPropTypes, Ref, VNodeChild, ComponentOptionsMixin, PublicProps, Component, ComputedRef, ComponentProvideOptions, SlotsType, CSSProperties, TextareaHTMLAttributes, InputHTMLAttributes, HTMLAttributes, VNode } from 'vue';
2
2
  import { IUzSearchBars } from './interface';
3
3
  import { ObjectKey, Fn } from 'components/interface';
4
4
  import { Depth } from 'naive-ui/es/icon/src/Icon';
@@ -6,18 +6,18 @@ import { Theme } from 'naive-ui/es/_mixins';
6
6
  import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
7
7
  import { Size, Type } from 'naive-ui/es/button/src/interface';
8
8
  import { MaybeArray } from 'naive-ui/es/_utils';
9
- import { BaseWaveRef, InternalSelectionInst, ScrollbarInst } from 'naive-ui/es/_internal';
9
+ import { BaseWaveRef, ScrollbarInst, InternalSelectionInst } from 'naive-ui/es/_internal';
10
10
  import { RtlItem } from 'naive-ui/es/config-provider/src/internal-interface';
11
- import { ButtonSlots, SelectFilter, PopoverPlacement, SelectOption, PopoverProps, SelectRenderTag, SelectNodeProps, FormValidationStatus, SelectGroupOption, ThemeCommonVars, SelectSlots, PopoverTrigger, PopoverSlots, InputSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots, PopoverInst, TooltipSlots, DropdownMenuProps, DropdownNodeProps, MenuOption, MenuGroupOption } from 'naive-ui';
12
- import { VResizeObserverOnResize, FollowerInst, BinderInst, FollowerPlacement, VVirtualListScrollTo } from 'vueuc';
13
- import { SelectMixedOption, Value, Size, SelectFallbackOption, OnUpdateValue, SelectIgnoredOption, SelectBaseOption, ValueAtom } from 'naive-ui/es/select/src/interface';
14
- import { RenderLabel, RenderOption } from 'naive-ui/es/_internal/select-menu/src/interface';
15
- import { TreeMate, TreeNode, CheckStrategy, Key } from 'treemate';
11
+ import { ButtonSlots, PopoverTrigger, PopoverPlacement, PopoverSlots, SelectOption, FormValidationStatus, ThemeCommonVars, InputSlots, SelectFilter, PopoverProps, SelectRenderTag, SelectNodeProps, SelectGroupOption, SelectSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots, PopoverInst, TooltipSlots, DropdownMenuProps, DropdownNodeProps, MenuOption, MenuGroupOption } from 'naive-ui';
12
+ import { VResizeObserverOnResize, BinderInst, FollowerInst, FollowerPlacement, VVirtualListScrollTo } from 'vueuc';
16
13
  import { Size, OnUpdateValue } from 'naive-ui/es/input/src/interface';
17
14
  import { InternalRenderBody } from 'naive-ui/es/popover/src/interface';
18
15
  import { TriggerEventHandlers } from 'naive-ui/es/popover/src/Popover';
19
16
  import { IUzFormItem } from '..';
20
17
  import { ScrollTo, ScrollBy } from 'naive-ui/es/_internal/scrollbar/src/Scrollbar';
18
+ import { SelectMixedOption, Value, Size, SelectFallbackOption, OnUpdateValue, SelectIgnoredOption, SelectBaseOption, ValueAtom } from 'naive-ui/es/select/src/interface';
19
+ import { RenderLabel, RenderOption } from 'naive-ui/es/_internal/select-menu/src/interface';
20
+ import { TreeMate, TreeNode, CheckStrategy, Key } from 'treemate';
21
21
  import { Size, OnUpdateValue } from 'naive-ui/es/input-number/src/interface';
22
22
  import { Value, FormattedValue, DefaultTime, Shortcuts, IsDateDisabled, IsTimeDisabled, FirstDayOfWeek, OnConfirm, OnUpdateFormattedValue, OnUpdateValue, PanelRef } from 'naive-ui/es/date-picker/src/interface';
23
23
  import { DatePickerType } from 'naive-ui/es/date-picker/src/config';
@@ -2734,1507 +2734,6 @@ declare const _default: DefineComponent<ExtractPropTypes<{
2734
2734
  readonly suffix: boolean;
2735
2735
  readonly privateShow: boolean;
2736
2736
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2737
- NSelect: DefineComponent<ExtractPropTypes<{
2738
- readonly to: {
2739
- type: PropType<HTMLElement | string | boolean>;
2740
- default: undefined;
2741
- };
2742
- readonly bordered: {
2743
- readonly type: PropType<boolean | undefined>;
2744
- readonly default: undefined;
2745
- };
2746
- readonly clearable: BooleanConstructor;
2747
- readonly clearFilterAfterSelect: {
2748
- readonly type: BooleanConstructor;
2749
- readonly default: true;
2750
- };
2751
- readonly options: {
2752
- readonly type: PropType< SelectMixedOption[]>;
2753
- readonly default: () => never[];
2754
- };
2755
- readonly defaultValue: {
2756
- readonly type: PropType< Value | null>;
2757
- readonly default: null;
2758
- };
2759
- readonly keyboard: {
2760
- readonly type: BooleanConstructor;
2761
- readonly default: true;
2762
- };
2763
- readonly value: PropType< Value | null>;
2764
- readonly placeholder: StringConstructor;
2765
- readonly menuProps: PropType< HTMLAttributes>;
2766
- readonly multiple: BooleanConstructor;
2767
- readonly size: PropType< Size>;
2768
- readonly menuSize: {
2769
- readonly type: PropType< Size>;
2770
- };
2771
- readonly filterable: BooleanConstructor;
2772
- readonly disabled: {
2773
- readonly type: PropType<boolean | undefined>;
2774
- readonly default: undefined;
2775
- };
2776
- readonly remote: BooleanConstructor;
2777
- readonly loading: BooleanConstructor;
2778
- readonly filter: PropType< SelectFilter>;
2779
- readonly placement: {
2780
- readonly type: PropType< PopoverPlacement>;
2781
- readonly default: "bottom-start";
2782
- };
2783
- readonly widthMode: {
2784
- readonly type: StringConstructor;
2785
- readonly default: "trigger";
2786
- };
2787
- readonly tag: BooleanConstructor;
2788
- readonly onCreate: PropType<(label: string) => SelectOption>;
2789
- readonly fallbackOption: {
2790
- readonly type: PropType< SelectFallbackOption | false | undefined>;
2791
- readonly default: undefined;
2792
- };
2793
- readonly show: {
2794
- readonly type: PropType<boolean | undefined>;
2795
- readonly default: undefined;
2796
- };
2797
- readonly showArrow: {
2798
- readonly type: BooleanConstructor;
2799
- readonly default: true;
2800
- };
2801
- readonly maxTagCount: PropType<number | "responsive">;
2802
- readonly ellipsisTagPopoverProps: PropType< PopoverProps>;
2803
- readonly consistentMenuWidth: {
2804
- readonly type: BooleanConstructor;
2805
- readonly default: true;
2806
- };
2807
- readonly virtualScroll: {
2808
- readonly type: BooleanConstructor;
2809
- readonly default: true;
2810
- };
2811
- readonly labelField: {
2812
- readonly type: StringConstructor;
2813
- readonly default: "label";
2814
- };
2815
- readonly valueField: {
2816
- readonly type: StringConstructor;
2817
- readonly default: "value";
2818
- };
2819
- readonly childrenField: {
2820
- readonly type: StringConstructor;
2821
- readonly default: "children";
2822
- };
2823
- readonly renderLabel: PropType< RenderLabel>;
2824
- readonly renderOption: PropType< RenderOption>;
2825
- readonly renderTag: PropType< SelectRenderTag>;
2826
- readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue> | undefined>;
2827
- readonly inputProps: PropType< InputHTMLAttributes>;
2828
- readonly nodeProps: PropType< SelectNodeProps>;
2829
- readonly ignoreComposition: {
2830
- readonly type: BooleanConstructor;
2831
- readonly default: true;
2832
- };
2833
- readonly showOnFocus: BooleanConstructor;
2834
- readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue> | undefined>;
2835
- readonly onBlur: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
2836
- readonly onClear: PropType< MaybeArray<() => void> | undefined>;
2837
- readonly onFocus: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
2838
- readonly onScroll: PropType< MaybeArray<(e: Event) => void> | undefined>;
2839
- readonly onSearch: PropType< MaybeArray<(value: string) => void> | undefined>;
2840
- readonly onUpdateShow: PropType< MaybeArray<(value: boolean) => void>>;
2841
- readonly 'onUpdate:show': PropType< MaybeArray<(value: boolean) => void>>;
2842
- readonly displayDirective: {
2843
- readonly type: PropType<"if" | "show">;
2844
- readonly default: "show";
2845
- };
2846
- readonly resetMenuOnOptionsChange: {
2847
- readonly type: BooleanConstructor;
2848
- readonly default: true;
2849
- };
2850
- readonly status: PropType< FormValidationStatus>;
2851
- readonly showCheckmark: {
2852
- readonly type: BooleanConstructor;
2853
- readonly default: true;
2854
- };
2855
- readonly onChange: PropType< MaybeArray<OnUpdateValue>>;
2856
- readonly items: PropType< SelectMixedOption[]>;
2857
- readonly theme: PropType< Theme<"Select", {
2858
- menuBoxShadow: string;
2859
- }, {
2860
- InternalSelection: Theme<"InternalSelection", {
2861
- fontSizeTiny: string;
2862
- fontSizeSmall: string;
2863
- fontSizeMedium: string;
2864
- fontSizeLarge: string;
2865
- heightTiny: string;
2866
- heightSmall: string;
2867
- heightMedium: string;
2868
- heightLarge: string;
2869
- borderRadius: string;
2870
- fontWeight: string;
2871
- textColor: string;
2872
- textColorDisabled: string;
2873
- placeholderColor: string;
2874
- placeholderColorDisabled: string;
2875
- color: string;
2876
- colorDisabled: string;
2877
- colorActive: string;
2878
- border: string;
2879
- borderHover: string;
2880
- borderActive: string;
2881
- borderFocus: string;
2882
- boxShadowHover: string;
2883
- boxShadowActive: string;
2884
- boxShadowFocus: string;
2885
- caretColor: string;
2886
- arrowColor: string;
2887
- arrowColorDisabled: string;
2888
- loadingColor: string;
2889
- borderWarning: string;
2890
- borderHoverWarning: string;
2891
- borderActiveWarning: string;
2892
- borderFocusWarning: string;
2893
- boxShadowHoverWarning: string;
2894
- boxShadowActiveWarning: string;
2895
- boxShadowFocusWarning: string;
2896
- colorActiveWarning: string;
2897
- caretColorWarning: string;
2898
- borderError: string;
2899
- borderHoverError: string;
2900
- borderActiveError: string;
2901
- borderFocusError: string;
2902
- boxShadowHoverError: string;
2903
- boxShadowActiveError: string;
2904
- boxShadowFocusError: string;
2905
- colorActiveError: string;
2906
- caretColorError: string;
2907
- clearColor: string;
2908
- clearColorHover: string;
2909
- clearColorPressed: string;
2910
- paddingSingle: string;
2911
- paddingMultiple: string;
2912
- clearSize: string;
2913
- arrowSize: string;
2914
- }, {
2915
- Popover: Theme<"Popover", {
2916
- fontSize: string;
2917
- borderRadius: string;
2918
- color: string;
2919
- dividerColor: string;
2920
- textColor: string;
2921
- boxShadow: string;
2922
- space: string;
2923
- spaceArrow: string;
2924
- arrowOffset: string;
2925
- arrowOffsetVertical: string;
2926
- arrowHeight: string;
2927
- padding: string;
2928
- }, {
2929
- Scrollbar: Theme<"Scrollbar", {
2930
- height: string;
2931
- width: string;
2932
- borderRadius: string;
2933
- color: string;
2934
- colorHover: string;
2935
- railInsetHorizontalBottom: string;
2936
- railInsetHorizontalTop: string;
2937
- railInsetVerticalRight: string;
2938
- railInsetVerticalLeft: string;
2939
- railColor: string;
2940
- }, any>;
2941
- }>;
2942
- }>;
2943
- InternalSelectMenu: Theme<"InternalSelectMenu", {
2944
- optionFontSizeTiny: string;
2945
- optionFontSizeSmall: string;
2946
- optionFontSizeMedium: string;
2947
- optionFontSizeLarge: string;
2948
- optionFontSizeHuge: string;
2949
- optionHeightTiny: string;
2950
- optionHeightSmall: string;
2951
- optionHeightMedium: string;
2952
- optionHeightLarge: string;
2953
- optionHeightHuge: string;
2954
- borderRadius: string;
2955
- color: string;
2956
- groupHeaderTextColor: string;
2957
- actionDividerColor: string;
2958
- optionTextColor: string;
2959
- optionTextColorPressed: string;
2960
- optionTextColorDisabled: string;
2961
- optionTextColorActive: string;
2962
- optionOpacityDisabled: string;
2963
- optionCheckColor: string;
2964
- optionColorPending: string;
2965
- optionColorActive: string;
2966
- optionColorActivePending: string;
2967
- actionTextColor: string;
2968
- loadingColor: string;
2969
- height: string;
2970
- paddingTiny: string;
2971
- paddingSmall: string;
2972
- paddingMedium: string;
2973
- paddingLarge: string;
2974
- paddingHuge: string;
2975
- optionPaddingTiny: string;
2976
- optionPaddingSmall: string;
2977
- optionPaddingMedium: string;
2978
- optionPaddingLarge: string;
2979
- optionPaddingHuge: string;
2980
- loadingSize: string;
2981
- }, {
2982
- Scrollbar: Theme<"Scrollbar", {
2983
- height: string;
2984
- width: string;
2985
- borderRadius: string;
2986
- color: string;
2987
- colorHover: string;
2988
- railInsetHorizontalBottom: string;
2989
- railInsetHorizontalTop: string;
2990
- railInsetVerticalRight: string;
2991
- railInsetVerticalLeft: string;
2992
- railColor: string;
2993
- }, any>;
2994
- Empty: Theme<"Empty", {
2995
- fontSizeTiny: string;
2996
- fontSizeSmall: string;
2997
- fontSizeMedium: string;
2998
- fontSizeLarge: string;
2999
- fontSizeHuge: string;
3000
- textColor: string;
3001
- iconColor: string;
3002
- extraTextColor: string;
3003
- iconSizeTiny: string;
3004
- iconSizeSmall: string;
3005
- iconSizeMedium: string;
3006
- iconSizeLarge: string;
3007
- iconSizeHuge: string;
3008
- }, any>;
3009
- }>;
3010
- }>>;
3011
- readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
3012
- menuBoxShadow: string;
3013
- }, {
3014
- InternalSelection: Theme<"InternalSelection", {
3015
- fontSizeTiny: string;
3016
- fontSizeSmall: string;
3017
- fontSizeMedium: string;
3018
- fontSizeLarge: string;
3019
- heightTiny: string;
3020
- heightSmall: string;
3021
- heightMedium: string;
3022
- heightLarge: string;
3023
- borderRadius: string;
3024
- fontWeight: string;
3025
- textColor: string;
3026
- textColorDisabled: string;
3027
- placeholderColor: string;
3028
- placeholderColorDisabled: string;
3029
- color: string;
3030
- colorDisabled: string;
3031
- colorActive: string;
3032
- border: string;
3033
- borderHover: string;
3034
- borderActive: string;
3035
- borderFocus: string;
3036
- boxShadowHover: string;
3037
- boxShadowActive: string;
3038
- boxShadowFocus: string;
3039
- caretColor: string;
3040
- arrowColor: string;
3041
- arrowColorDisabled: string;
3042
- loadingColor: string;
3043
- borderWarning: string;
3044
- borderHoverWarning: string;
3045
- borderActiveWarning: string;
3046
- borderFocusWarning: string;
3047
- boxShadowHoverWarning: string;
3048
- boxShadowActiveWarning: string;
3049
- boxShadowFocusWarning: string;
3050
- colorActiveWarning: string;
3051
- caretColorWarning: string;
3052
- borderError: string;
3053
- borderHoverError: string;
3054
- borderActiveError: string;
3055
- borderFocusError: string;
3056
- boxShadowHoverError: string;
3057
- boxShadowActiveError: string;
3058
- boxShadowFocusError: string;
3059
- colorActiveError: string;
3060
- caretColorError: string;
3061
- clearColor: string;
3062
- clearColorHover: string;
3063
- clearColorPressed: string;
3064
- paddingSingle: string;
3065
- paddingMultiple: string;
3066
- clearSize: string;
3067
- arrowSize: string;
3068
- }, {
3069
- Popover: Theme<"Popover", {
3070
- fontSize: string;
3071
- borderRadius: string;
3072
- color: string;
3073
- dividerColor: string;
3074
- textColor: string;
3075
- boxShadow: string;
3076
- space: string;
3077
- spaceArrow: string;
3078
- arrowOffset: string;
3079
- arrowOffsetVertical: string;
3080
- arrowHeight: string;
3081
- padding: string;
3082
- }, {
3083
- Scrollbar: Theme<"Scrollbar", {
3084
- height: string;
3085
- width: string;
3086
- borderRadius: string;
3087
- color: string;
3088
- colorHover: string;
3089
- railInsetHorizontalBottom: string;
3090
- railInsetHorizontalTop: string;
3091
- railInsetVerticalRight: string;
3092
- railInsetVerticalLeft: string;
3093
- railColor: string;
3094
- }, any>;
3095
- }>;
3096
- }>;
3097
- InternalSelectMenu: Theme<"InternalSelectMenu", {
3098
- optionFontSizeTiny: string;
3099
- optionFontSizeSmall: string;
3100
- optionFontSizeMedium: string;
3101
- optionFontSizeLarge: string;
3102
- optionFontSizeHuge: string;
3103
- optionHeightTiny: string;
3104
- optionHeightSmall: string;
3105
- optionHeightMedium: string;
3106
- optionHeightLarge: string;
3107
- optionHeightHuge: string;
3108
- borderRadius: string;
3109
- color: string;
3110
- groupHeaderTextColor: string;
3111
- actionDividerColor: string;
3112
- optionTextColor: string;
3113
- optionTextColorPressed: string;
3114
- optionTextColorDisabled: string;
3115
- optionTextColorActive: string;
3116
- optionOpacityDisabled: string;
3117
- optionCheckColor: string;
3118
- optionColorPending: string;
3119
- optionColorActive: string;
3120
- optionColorActivePending: string;
3121
- actionTextColor: string;
3122
- loadingColor: string;
3123
- height: string;
3124
- paddingTiny: string;
3125
- paddingSmall: string;
3126
- paddingMedium: string;
3127
- paddingLarge: string;
3128
- paddingHuge: string;
3129
- optionPaddingTiny: string;
3130
- optionPaddingSmall: string;
3131
- optionPaddingMedium: string;
3132
- optionPaddingLarge: string;
3133
- optionPaddingHuge: string;
3134
- loadingSize: string;
3135
- }, {
3136
- Scrollbar: Theme<"Scrollbar", {
3137
- height: string;
3138
- width: string;
3139
- borderRadius: string;
3140
- color: string;
3141
- colorHover: string;
3142
- railInsetHorizontalBottom: string;
3143
- railInsetHorizontalTop: string;
3144
- railInsetVerticalRight: string;
3145
- railInsetVerticalLeft: string;
3146
- railColor: string;
3147
- }, any>;
3148
- Empty: Theme<"Empty", {
3149
- fontSizeTiny: string;
3150
- fontSizeSmall: string;
3151
- fontSizeMedium: string;
3152
- fontSizeLarge: string;
3153
- fontSizeHuge: string;
3154
- textColor: string;
3155
- iconColor: string;
3156
- extraTextColor: string;
3157
- iconSizeTiny: string;
3158
- iconSizeSmall: string;
3159
- iconSizeMedium: string;
3160
- iconSizeLarge: string;
3161
- iconSizeHuge: string;
3162
- }, any>;
3163
- }>;
3164
- }>>>;
3165
- readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
3166
- menuBoxShadow: string;
3167
- }, {
3168
- InternalSelection: Theme<"InternalSelection", {
3169
- fontSizeTiny: string;
3170
- fontSizeSmall: string;
3171
- fontSizeMedium: string;
3172
- fontSizeLarge: string;
3173
- heightTiny: string;
3174
- heightSmall: string;
3175
- heightMedium: string;
3176
- heightLarge: string;
3177
- borderRadius: string;
3178
- fontWeight: string;
3179
- textColor: string;
3180
- textColorDisabled: string;
3181
- placeholderColor: string;
3182
- placeholderColorDisabled: string;
3183
- color: string;
3184
- colorDisabled: string;
3185
- colorActive: string;
3186
- border: string;
3187
- borderHover: string;
3188
- borderActive: string;
3189
- borderFocus: string;
3190
- boxShadowHover: string;
3191
- boxShadowActive: string;
3192
- boxShadowFocus: string;
3193
- caretColor: string;
3194
- arrowColor: string;
3195
- arrowColorDisabled: string;
3196
- loadingColor: string;
3197
- borderWarning: string;
3198
- borderHoverWarning: string;
3199
- borderActiveWarning: string;
3200
- borderFocusWarning: string;
3201
- boxShadowHoverWarning: string;
3202
- boxShadowActiveWarning: string;
3203
- boxShadowFocusWarning: string;
3204
- colorActiveWarning: string;
3205
- caretColorWarning: string;
3206
- borderError: string;
3207
- borderHoverError: string;
3208
- borderActiveError: string;
3209
- borderFocusError: string;
3210
- boxShadowHoverError: string;
3211
- boxShadowActiveError: string;
3212
- boxShadowFocusError: string;
3213
- colorActiveError: string;
3214
- caretColorError: string;
3215
- clearColor: string;
3216
- clearColorHover: string;
3217
- clearColorPressed: string;
3218
- paddingSingle: string;
3219
- paddingMultiple: string;
3220
- clearSize: string;
3221
- arrowSize: string;
3222
- }, {
3223
- Popover: Theme<"Popover", {
3224
- fontSize: string;
3225
- borderRadius: string;
3226
- color: string;
3227
- dividerColor: string;
3228
- textColor: string;
3229
- boxShadow: string;
3230
- space: string;
3231
- spaceArrow: string;
3232
- arrowOffset: string;
3233
- arrowOffsetVertical: string;
3234
- arrowHeight: string;
3235
- padding: string;
3236
- }, {
3237
- Scrollbar: Theme<"Scrollbar", {
3238
- height: string;
3239
- width: string;
3240
- borderRadius: string;
3241
- color: string;
3242
- colorHover: string;
3243
- railInsetHorizontalBottom: string;
3244
- railInsetHorizontalTop: string;
3245
- railInsetVerticalRight: string;
3246
- railInsetVerticalLeft: string;
3247
- railColor: string;
3248
- }, any>;
3249
- }>;
3250
- }>;
3251
- InternalSelectMenu: Theme<"InternalSelectMenu", {
3252
- optionFontSizeTiny: string;
3253
- optionFontSizeSmall: string;
3254
- optionFontSizeMedium: string;
3255
- optionFontSizeLarge: string;
3256
- optionFontSizeHuge: string;
3257
- optionHeightTiny: string;
3258
- optionHeightSmall: string;
3259
- optionHeightMedium: string;
3260
- optionHeightLarge: string;
3261
- optionHeightHuge: string;
3262
- borderRadius: string;
3263
- color: string;
3264
- groupHeaderTextColor: string;
3265
- actionDividerColor: string;
3266
- optionTextColor: string;
3267
- optionTextColorPressed: string;
3268
- optionTextColorDisabled: string;
3269
- optionTextColorActive: string;
3270
- optionOpacityDisabled: string;
3271
- optionCheckColor: string;
3272
- optionColorPending: string;
3273
- optionColorActive: string;
3274
- optionColorActivePending: string;
3275
- actionTextColor: string;
3276
- loadingColor: string;
3277
- height: string;
3278
- paddingTiny: string;
3279
- paddingSmall: string;
3280
- paddingMedium: string;
3281
- paddingLarge: string;
3282
- paddingHuge: string;
3283
- optionPaddingTiny: string;
3284
- optionPaddingSmall: string;
3285
- optionPaddingMedium: string;
3286
- optionPaddingLarge: string;
3287
- optionPaddingHuge: string;
3288
- loadingSize: string;
3289
- }, {
3290
- Scrollbar: Theme<"Scrollbar", {
3291
- height: string;
3292
- width: string;
3293
- borderRadius: string;
3294
- color: string;
3295
- colorHover: string;
3296
- railInsetHorizontalBottom: string;
3297
- railInsetHorizontalTop: string;
3298
- railInsetVerticalRight: string;
3299
- railInsetVerticalLeft: string;
3300
- railColor: string;
3301
- }, any>;
3302
- Empty: Theme<"Empty", {
3303
- fontSizeTiny: string;
3304
- fontSizeSmall: string;
3305
- fontSizeMedium: string;
3306
- fontSizeLarge: string;
3307
- fontSizeHuge: string;
3308
- textColor: string;
3309
- iconColor: string;
3310
- extraTextColor: string;
3311
- iconSizeTiny: string;
3312
- iconSizeSmall: string;
3313
- iconSizeMedium: string;
3314
- iconSizeLarge: string;
3315
- iconSizeHuge: string;
3316
- }, any>;
3317
- }>;
3318
- }>>>;
3319
- }>, {
3320
- mergedStatus: ComputedRef< FormValidationStatus | undefined>;
3321
- mergedClsPrefix: Ref<string, string>;
3322
- mergedBordered: ComputedRef<boolean>;
3323
- namespace: ComputedRef<string | undefined>;
3324
- treeMate: ComputedRef<TreeMate<SelectOption, SelectGroupOption, SelectIgnoredOption>>;
3325
- isMounted: Readonly< Ref<boolean, boolean>>;
3326
- triggerRef: Ref<{
3327
- isComposing: boolean;
3328
- focus: () => void;
3329
- focusInput: () => void;
3330
- blur: () => void;
3331
- blurInput: () => void;
3332
- $el: HTMLElement;
3333
- } | null, InternalSelectionInst | {
3334
- isComposing: boolean;
3335
- focus: () => void;
3336
- focusInput: () => void;
3337
- blur: () => void;
3338
- blurInput: () => void;
3339
- $el: HTMLElement;
3340
- } | null>;
3341
- menuRef: Ref<{
3342
- selfRef: HTMLElement | null;
3343
- getPendingTmNode: () => TreeNode<SelectBaseOption> | null;
3344
- prev: () => void;
3345
- next: () => void;
3346
- } | null, {
3347
- selfRef: HTMLElement | null;
3348
- getPendingTmNode: () => TreeNode<SelectBaseOption> | null;
3349
- prev: () => void;
3350
- next: () => void;
3351
- } | {
3352
- selfRef: HTMLElement | null;
3353
- getPendingTmNode: () => TreeNode<SelectBaseOption> | null;
3354
- prev: () => void;
3355
- next: () => void;
3356
- } | null>;
3357
- pattern: Ref<string, string>;
3358
- uncontrolledShow: Ref<boolean, boolean>;
3359
- mergedShow: ComputedRef<boolean>;
3360
- adjustedTo: ComputedRef<string | HTMLElement>;
3361
- uncontrolledValue: Ref<string[] | number[] | ValueAtom | ValueAtom[] | null, string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
3362
- mergedValue: ComputedRef<string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
3363
- followerRef: Ref<{
3364
- syncPosition: () => void;
3365
- } | null, FollowerInst | {
3366
- syncPosition: () => void;
3367
- } | null>;
3368
- localizedPlaceholder: ComputedRef<string>;
3369
- selectedOption: ComputedRef< SelectOption | null>;
3370
- selectedOptions: ComputedRef< SelectOption[] | null>;
3371
- mergedSize: ComputedRef<"small" | "medium" | "large" | "tiny">;
3372
- mergedDisabled: ComputedRef<boolean>;
3373
- focused: Ref<boolean, boolean>;
3374
- activeWithoutMenuOpen: Ref<boolean, boolean>;
3375
- inlineThemeDisabled: boolean | undefined;
3376
- onTriggerInputFocus: () => void;
3377
- onTriggerInputBlur: () => void;
3378
- handleTriggerOrMenuResize: () => void;
3379
- handleMenuFocus: () => void;
3380
- handleMenuBlur: (e: FocusEvent) => void;
3381
- handleMenuTabOut: () => void;
3382
- handleTriggerClick: () => void;
3383
- handleToggle: (tmNode: TreeNode<SelectOption>) => void;
3384
- handleDeleteOption: (option: SelectOption) => void;
3385
- handlePatternInput: (e: InputEvent) => void;
3386
- handleClear: (e: MouseEvent) => void;
3387
- handleTriggerBlur: (e: FocusEvent) => void;
3388
- handleTriggerFocus: (e: FocusEvent) => void;
3389
- handleKeydown: (e: KeyboardEvent) => void;
3390
- handleMenuAfterLeave: () => void;
3391
- handleMenuClickOutside: (e: MouseEvent) => void;
3392
- handleMenuScroll: (e: Event) => void;
3393
- handleMenuKeydown: (e: KeyboardEvent) => void;
3394
- handleMenuMousedown: (e: MouseEvent) => void;
3395
- mergedTheme: ComputedRef<{
3396
- common: ThemeCommonVars;
3397
- self: {
3398
- menuBoxShadow: string;
3399
- };
3400
- peers: {
3401
- InternalSelection: Theme<"InternalSelection", {
3402
- fontSizeTiny: string;
3403
- fontSizeSmall: string;
3404
- fontSizeMedium: string;
3405
- fontSizeLarge: string;
3406
- heightTiny: string;
3407
- heightSmall: string;
3408
- heightMedium: string;
3409
- heightLarge: string;
3410
- borderRadius: string;
3411
- fontWeight: string;
3412
- textColor: string;
3413
- textColorDisabled: string;
3414
- placeholderColor: string;
3415
- placeholderColorDisabled: string;
3416
- color: string;
3417
- colorDisabled: string;
3418
- colorActive: string;
3419
- border: string;
3420
- borderHover: string;
3421
- borderActive: string;
3422
- borderFocus: string;
3423
- boxShadowHover: string;
3424
- boxShadowActive: string;
3425
- boxShadowFocus: string;
3426
- caretColor: string;
3427
- arrowColor: string;
3428
- arrowColorDisabled: string;
3429
- loadingColor: string;
3430
- borderWarning: string;
3431
- borderHoverWarning: string;
3432
- borderActiveWarning: string;
3433
- borderFocusWarning: string;
3434
- boxShadowHoverWarning: string;
3435
- boxShadowActiveWarning: string;
3436
- boxShadowFocusWarning: string;
3437
- colorActiveWarning: string;
3438
- caretColorWarning: string;
3439
- borderError: string;
3440
- borderHoverError: string;
3441
- borderActiveError: string;
3442
- borderFocusError: string;
3443
- boxShadowHoverError: string;
3444
- boxShadowActiveError: string;
3445
- boxShadowFocusError: string;
3446
- colorActiveError: string;
3447
- caretColorError: string;
3448
- clearColor: string;
3449
- clearColorHover: string;
3450
- clearColorPressed: string;
3451
- paddingSingle: string;
3452
- paddingMultiple: string;
3453
- clearSize: string;
3454
- arrowSize: string;
3455
- }, {
3456
- Popover: Theme<"Popover", {
3457
- fontSize: string;
3458
- borderRadius: string;
3459
- color: string;
3460
- dividerColor: string;
3461
- textColor: string;
3462
- boxShadow: string;
3463
- space: string;
3464
- spaceArrow: string;
3465
- arrowOffset: string;
3466
- arrowOffsetVertical: string;
3467
- arrowHeight: string;
3468
- padding: string;
3469
- }, {
3470
- Scrollbar: Theme<"Scrollbar", {
3471
- height: string;
3472
- width: string;
3473
- borderRadius: string;
3474
- color: string;
3475
- colorHover: string;
3476
- railInsetHorizontalBottom: string;
3477
- railInsetHorizontalTop: string;
3478
- railInsetVerticalRight: string;
3479
- railInsetVerticalLeft: string;
3480
- railColor: string;
3481
- }, any>;
3482
- }>;
3483
- }>;
3484
- InternalSelectMenu: Theme<"InternalSelectMenu", {
3485
- optionFontSizeTiny: string;
3486
- optionFontSizeSmall: string;
3487
- optionFontSizeMedium: string;
3488
- optionFontSizeLarge: string;
3489
- optionFontSizeHuge: string;
3490
- optionHeightTiny: string;
3491
- optionHeightSmall: string;
3492
- optionHeightMedium: string;
3493
- optionHeightLarge: string;
3494
- optionHeightHuge: string;
3495
- borderRadius: string;
3496
- color: string;
3497
- groupHeaderTextColor: string;
3498
- actionDividerColor: string;
3499
- optionTextColor: string;
3500
- optionTextColorPressed: string;
3501
- optionTextColorDisabled: string;
3502
- optionTextColorActive: string;
3503
- optionOpacityDisabled: string;
3504
- optionCheckColor: string;
3505
- optionColorPending: string;
3506
- optionColorActive: string;
3507
- optionColorActivePending: string;
3508
- actionTextColor: string;
3509
- loadingColor: string;
3510
- height: string;
3511
- paddingTiny: string;
3512
- paddingSmall: string;
3513
- paddingMedium: string;
3514
- paddingLarge: string;
3515
- paddingHuge: string;
3516
- optionPaddingTiny: string;
3517
- optionPaddingSmall: string;
3518
- optionPaddingMedium: string;
3519
- optionPaddingLarge: string;
3520
- optionPaddingHuge: string;
3521
- loadingSize: string;
3522
- }, {
3523
- Scrollbar: Theme<"Scrollbar", {
3524
- height: string;
3525
- width: string;
3526
- borderRadius: string;
3527
- color: string;
3528
- colorHover: string;
3529
- railInsetHorizontalBottom: string;
3530
- railInsetHorizontalTop: string;
3531
- railInsetVerticalRight: string;
3532
- railInsetVerticalLeft: string;
3533
- railColor: string;
3534
- }, any>;
3535
- Empty: Theme<"Empty", {
3536
- fontSizeTiny: string;
3537
- fontSizeSmall: string;
3538
- fontSizeMedium: string;
3539
- fontSizeLarge: string;
3540
- fontSizeHuge: string;
3541
- textColor: string;
3542
- iconColor: string;
3543
- extraTextColor: string;
3544
- iconSizeTiny: string;
3545
- iconSizeSmall: string;
3546
- iconSizeMedium: string;
3547
- iconSizeLarge: string;
3548
- iconSizeHuge: string;
3549
- }, any>;
3550
- }>;
3551
- };
3552
- peerOverrides: {
3553
- InternalSelection?: {
3554
- peers?: {
3555
- Popover?: ExtractThemeOverrides<Theme<"Popover", {
3556
- fontSize: string;
3557
- borderRadius: string;
3558
- color: string;
3559
- dividerColor: string;
3560
- textColor: string;
3561
- boxShadow: string;
3562
- space: string;
3563
- spaceArrow: string;
3564
- arrowOffset: string;
3565
- arrowOffsetVertical: string;
3566
- arrowHeight: string;
3567
- padding: string;
3568
- }, {
3569
- Scrollbar: Theme<"Scrollbar", {
3570
- height: string;
3571
- width: string;
3572
- borderRadius: string;
3573
- color: string;
3574
- colorHover: string;
3575
- railInsetHorizontalBottom: string;
3576
- railInsetHorizontalTop: string;
3577
- railInsetVerticalRight: string;
3578
- railInsetVerticalLeft: string;
3579
- railColor: string;
3580
- }, any>;
3581
- }>> | undefined;
3582
- } | undefined;
3583
- } | undefined;
3584
- InternalSelectMenu?: {
3585
- peers?: {
3586
- Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
3587
- height: string;
3588
- width: string;
3589
- borderRadius: string;
3590
- color: string;
3591
- colorHover: string;
3592
- railInsetHorizontalBottom: string;
3593
- railInsetHorizontalTop: string;
3594
- railInsetVerticalRight: string;
3595
- railInsetVerticalLeft: string;
3596
- railColor: string;
3597
- }, any>> | undefined;
3598
- Empty?: ExtractThemeOverrides<Theme<"Empty", {
3599
- fontSizeTiny: string;
3600
- fontSizeSmall: string;
3601
- fontSizeMedium: string;
3602
- fontSizeLarge: string;
3603
- fontSizeHuge: string;
3604
- textColor: string;
3605
- iconColor: string;
3606
- extraTextColor: string;
3607
- iconSizeTiny: string;
3608
- iconSizeSmall: string;
3609
- iconSizeMedium: string;
3610
- iconSizeLarge: string;
3611
- iconSizeHuge: string;
3612
- }, any>> | undefined;
3613
- } | undefined;
3614
- } | undefined;
3615
- };
3616
- }>;
3617
- cssVars: ComputedRef<{
3618
- "--n-menu-box-shadow": string;
3619
- }> | undefined;
3620
- themeClass: Ref<string, string> | undefined;
3621
- onRender: (() => void) | undefined;
3622
- focus: () => void;
3623
- blur: () => void;
3624
- focusInput: () => void;
3625
- blurInput: () => void;
3626
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
3627
- readonly to: {
3628
- type: PropType<HTMLElement | string | boolean>;
3629
- default: undefined;
3630
- };
3631
- readonly bordered: {
3632
- readonly type: PropType<boolean | undefined>;
3633
- readonly default: undefined;
3634
- };
3635
- readonly clearable: BooleanConstructor;
3636
- readonly clearFilterAfterSelect: {
3637
- readonly type: BooleanConstructor;
3638
- readonly default: true;
3639
- };
3640
- readonly options: {
3641
- readonly type: PropType< SelectMixedOption[]>;
3642
- readonly default: () => never[];
3643
- };
3644
- readonly defaultValue: {
3645
- readonly type: PropType< Value | null>;
3646
- readonly default: null;
3647
- };
3648
- readonly keyboard: {
3649
- readonly type: BooleanConstructor;
3650
- readonly default: true;
3651
- };
3652
- readonly value: PropType< Value | null>;
3653
- readonly placeholder: StringConstructor;
3654
- readonly menuProps: PropType< HTMLAttributes>;
3655
- readonly multiple: BooleanConstructor;
3656
- readonly size: PropType< Size>;
3657
- readonly menuSize: {
3658
- readonly type: PropType< Size>;
3659
- };
3660
- readonly filterable: BooleanConstructor;
3661
- readonly disabled: {
3662
- readonly type: PropType<boolean | undefined>;
3663
- readonly default: undefined;
3664
- };
3665
- readonly remote: BooleanConstructor;
3666
- readonly loading: BooleanConstructor;
3667
- readonly filter: PropType< SelectFilter>;
3668
- readonly placement: {
3669
- readonly type: PropType< PopoverPlacement>;
3670
- readonly default: "bottom-start";
3671
- };
3672
- readonly widthMode: {
3673
- readonly type: StringConstructor;
3674
- readonly default: "trigger";
3675
- };
3676
- readonly tag: BooleanConstructor;
3677
- readonly onCreate: PropType<(label: string) => SelectOption>;
3678
- readonly fallbackOption: {
3679
- readonly type: PropType< SelectFallbackOption | false | undefined>;
3680
- readonly default: undefined;
3681
- };
3682
- readonly show: {
3683
- readonly type: PropType<boolean | undefined>;
3684
- readonly default: undefined;
3685
- };
3686
- readonly showArrow: {
3687
- readonly type: BooleanConstructor;
3688
- readonly default: true;
3689
- };
3690
- readonly maxTagCount: PropType<number | "responsive">;
3691
- readonly ellipsisTagPopoverProps: PropType< PopoverProps>;
3692
- readonly consistentMenuWidth: {
3693
- readonly type: BooleanConstructor;
3694
- readonly default: true;
3695
- };
3696
- readonly virtualScroll: {
3697
- readonly type: BooleanConstructor;
3698
- readonly default: true;
3699
- };
3700
- readonly labelField: {
3701
- readonly type: StringConstructor;
3702
- readonly default: "label";
3703
- };
3704
- readonly valueField: {
3705
- readonly type: StringConstructor;
3706
- readonly default: "value";
3707
- };
3708
- readonly childrenField: {
3709
- readonly type: StringConstructor;
3710
- readonly default: "children";
3711
- };
3712
- readonly renderLabel: PropType< RenderLabel>;
3713
- readonly renderOption: PropType< RenderOption>;
3714
- readonly renderTag: PropType< SelectRenderTag>;
3715
- readonly 'onUpdate:value': PropType< MaybeArray<OnUpdateValue> | undefined>;
3716
- readonly inputProps: PropType< InputHTMLAttributes>;
3717
- readonly nodeProps: PropType< SelectNodeProps>;
3718
- readonly ignoreComposition: {
3719
- readonly type: BooleanConstructor;
3720
- readonly default: true;
3721
- };
3722
- readonly showOnFocus: BooleanConstructor;
3723
- readonly onUpdateValue: PropType< MaybeArray<OnUpdateValue> | undefined>;
3724
- readonly onBlur: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
3725
- readonly onClear: PropType< MaybeArray<() => void> | undefined>;
3726
- readonly onFocus: PropType< MaybeArray<(e: FocusEvent) => void> | undefined>;
3727
- readonly onScroll: PropType< MaybeArray<(e: Event) => void> | undefined>;
3728
- readonly onSearch: PropType< MaybeArray<(value: string) => void> | undefined>;
3729
- readonly onUpdateShow: PropType< MaybeArray<(value: boolean) => void>>;
3730
- readonly 'onUpdate:show': PropType< MaybeArray<(value: boolean) => void>>;
3731
- readonly displayDirective: {
3732
- readonly type: PropType<"if" | "show">;
3733
- readonly default: "show";
3734
- };
3735
- readonly resetMenuOnOptionsChange: {
3736
- readonly type: BooleanConstructor;
3737
- readonly default: true;
3738
- };
3739
- readonly status: PropType< FormValidationStatus>;
3740
- readonly showCheckmark: {
3741
- readonly type: BooleanConstructor;
3742
- readonly default: true;
3743
- };
3744
- readonly onChange: PropType< MaybeArray<OnUpdateValue>>;
3745
- readonly items: PropType< SelectMixedOption[]>;
3746
- readonly theme: PropType< Theme<"Select", {
3747
- menuBoxShadow: string;
3748
- }, {
3749
- InternalSelection: Theme<"InternalSelection", {
3750
- fontSizeTiny: string;
3751
- fontSizeSmall: string;
3752
- fontSizeMedium: string;
3753
- fontSizeLarge: string;
3754
- heightTiny: string;
3755
- heightSmall: string;
3756
- heightMedium: string;
3757
- heightLarge: string;
3758
- borderRadius: string;
3759
- fontWeight: string;
3760
- textColor: string;
3761
- textColorDisabled: string;
3762
- placeholderColor: string;
3763
- placeholderColorDisabled: string;
3764
- color: string;
3765
- colorDisabled: string;
3766
- colorActive: string;
3767
- border: string;
3768
- borderHover: string;
3769
- borderActive: string;
3770
- borderFocus: string;
3771
- boxShadowHover: string;
3772
- boxShadowActive: string;
3773
- boxShadowFocus: string;
3774
- caretColor: string;
3775
- arrowColor: string;
3776
- arrowColorDisabled: string;
3777
- loadingColor: string;
3778
- borderWarning: string;
3779
- borderHoverWarning: string;
3780
- borderActiveWarning: string;
3781
- borderFocusWarning: string;
3782
- boxShadowHoverWarning: string;
3783
- boxShadowActiveWarning: string;
3784
- boxShadowFocusWarning: string;
3785
- colorActiveWarning: string;
3786
- caretColorWarning: string;
3787
- borderError: string;
3788
- borderHoverError: string;
3789
- borderActiveError: string;
3790
- borderFocusError: string;
3791
- boxShadowHoverError: string;
3792
- boxShadowActiveError: string;
3793
- boxShadowFocusError: string;
3794
- colorActiveError: string;
3795
- caretColorError: string;
3796
- clearColor: string;
3797
- clearColorHover: string;
3798
- clearColorPressed: string;
3799
- paddingSingle: string;
3800
- paddingMultiple: string;
3801
- clearSize: string;
3802
- arrowSize: string;
3803
- }, {
3804
- Popover: Theme<"Popover", {
3805
- fontSize: string;
3806
- borderRadius: string;
3807
- color: string;
3808
- dividerColor: string;
3809
- textColor: string;
3810
- boxShadow: string;
3811
- space: string;
3812
- spaceArrow: string;
3813
- arrowOffset: string;
3814
- arrowOffsetVertical: string;
3815
- arrowHeight: string;
3816
- padding: string;
3817
- }, {
3818
- Scrollbar: Theme<"Scrollbar", {
3819
- height: string;
3820
- width: string;
3821
- borderRadius: string;
3822
- color: string;
3823
- colorHover: string;
3824
- railInsetHorizontalBottom: string;
3825
- railInsetHorizontalTop: string;
3826
- railInsetVerticalRight: string;
3827
- railInsetVerticalLeft: string;
3828
- railColor: string;
3829
- }, any>;
3830
- }>;
3831
- }>;
3832
- InternalSelectMenu: Theme<"InternalSelectMenu", {
3833
- optionFontSizeTiny: string;
3834
- optionFontSizeSmall: string;
3835
- optionFontSizeMedium: string;
3836
- optionFontSizeLarge: string;
3837
- optionFontSizeHuge: string;
3838
- optionHeightTiny: string;
3839
- optionHeightSmall: string;
3840
- optionHeightMedium: string;
3841
- optionHeightLarge: string;
3842
- optionHeightHuge: string;
3843
- borderRadius: string;
3844
- color: string;
3845
- groupHeaderTextColor: string;
3846
- actionDividerColor: string;
3847
- optionTextColor: string;
3848
- optionTextColorPressed: string;
3849
- optionTextColorDisabled: string;
3850
- optionTextColorActive: string;
3851
- optionOpacityDisabled: string;
3852
- optionCheckColor: string;
3853
- optionColorPending: string;
3854
- optionColorActive: string;
3855
- optionColorActivePending: string;
3856
- actionTextColor: string;
3857
- loadingColor: string;
3858
- height: string;
3859
- paddingTiny: string;
3860
- paddingSmall: string;
3861
- paddingMedium: string;
3862
- paddingLarge: string;
3863
- paddingHuge: string;
3864
- optionPaddingTiny: string;
3865
- optionPaddingSmall: string;
3866
- optionPaddingMedium: string;
3867
- optionPaddingLarge: string;
3868
- optionPaddingHuge: string;
3869
- loadingSize: string;
3870
- }, {
3871
- Scrollbar: Theme<"Scrollbar", {
3872
- height: string;
3873
- width: string;
3874
- borderRadius: string;
3875
- color: string;
3876
- colorHover: string;
3877
- railInsetHorizontalBottom: string;
3878
- railInsetHorizontalTop: string;
3879
- railInsetVerticalRight: string;
3880
- railInsetVerticalLeft: string;
3881
- railColor: string;
3882
- }, any>;
3883
- Empty: Theme<"Empty", {
3884
- fontSizeTiny: string;
3885
- fontSizeSmall: string;
3886
- fontSizeMedium: string;
3887
- fontSizeLarge: string;
3888
- fontSizeHuge: string;
3889
- textColor: string;
3890
- iconColor: string;
3891
- extraTextColor: string;
3892
- iconSizeTiny: string;
3893
- iconSizeSmall: string;
3894
- iconSizeMedium: string;
3895
- iconSizeLarge: string;
3896
- iconSizeHuge: string;
3897
- }, any>;
3898
- }>;
3899
- }>>;
3900
- readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
3901
- menuBoxShadow: string;
3902
- }, {
3903
- InternalSelection: Theme<"InternalSelection", {
3904
- fontSizeTiny: string;
3905
- fontSizeSmall: string;
3906
- fontSizeMedium: string;
3907
- fontSizeLarge: string;
3908
- heightTiny: string;
3909
- heightSmall: string;
3910
- heightMedium: string;
3911
- heightLarge: string;
3912
- borderRadius: string;
3913
- fontWeight: string;
3914
- textColor: string;
3915
- textColorDisabled: string;
3916
- placeholderColor: string;
3917
- placeholderColorDisabled: string;
3918
- color: string;
3919
- colorDisabled: string;
3920
- colorActive: string;
3921
- border: string;
3922
- borderHover: string;
3923
- borderActive: string;
3924
- borderFocus: string;
3925
- boxShadowHover: string;
3926
- boxShadowActive: string;
3927
- boxShadowFocus: string;
3928
- caretColor: string;
3929
- arrowColor: string;
3930
- arrowColorDisabled: string;
3931
- loadingColor: string;
3932
- borderWarning: string;
3933
- borderHoverWarning: string;
3934
- borderActiveWarning: string;
3935
- borderFocusWarning: string;
3936
- boxShadowHoverWarning: string;
3937
- boxShadowActiveWarning: string;
3938
- boxShadowFocusWarning: string;
3939
- colorActiveWarning: string;
3940
- caretColorWarning: string;
3941
- borderError: string;
3942
- borderHoverError: string;
3943
- borderActiveError: string;
3944
- borderFocusError: string;
3945
- boxShadowHoverError: string;
3946
- boxShadowActiveError: string;
3947
- boxShadowFocusError: string;
3948
- colorActiveError: string;
3949
- caretColorError: string;
3950
- clearColor: string;
3951
- clearColorHover: string;
3952
- clearColorPressed: string;
3953
- paddingSingle: string;
3954
- paddingMultiple: string;
3955
- clearSize: string;
3956
- arrowSize: string;
3957
- }, {
3958
- Popover: Theme<"Popover", {
3959
- fontSize: string;
3960
- borderRadius: string;
3961
- color: string;
3962
- dividerColor: string;
3963
- textColor: string;
3964
- boxShadow: string;
3965
- space: string;
3966
- spaceArrow: string;
3967
- arrowOffset: string;
3968
- arrowOffsetVertical: string;
3969
- arrowHeight: string;
3970
- padding: string;
3971
- }, {
3972
- Scrollbar: Theme<"Scrollbar", {
3973
- height: string;
3974
- width: string;
3975
- borderRadius: string;
3976
- color: string;
3977
- colorHover: string;
3978
- railInsetHorizontalBottom: string;
3979
- railInsetHorizontalTop: string;
3980
- railInsetVerticalRight: string;
3981
- railInsetVerticalLeft: string;
3982
- railColor: string;
3983
- }, any>;
3984
- }>;
3985
- }>;
3986
- InternalSelectMenu: Theme<"InternalSelectMenu", {
3987
- optionFontSizeTiny: string;
3988
- optionFontSizeSmall: string;
3989
- optionFontSizeMedium: string;
3990
- optionFontSizeLarge: string;
3991
- optionFontSizeHuge: string;
3992
- optionHeightTiny: string;
3993
- optionHeightSmall: string;
3994
- optionHeightMedium: string;
3995
- optionHeightLarge: string;
3996
- optionHeightHuge: string;
3997
- borderRadius: string;
3998
- color: string;
3999
- groupHeaderTextColor: string;
4000
- actionDividerColor: string;
4001
- optionTextColor: string;
4002
- optionTextColorPressed: string;
4003
- optionTextColorDisabled: string;
4004
- optionTextColorActive: string;
4005
- optionOpacityDisabled: string;
4006
- optionCheckColor: string;
4007
- optionColorPending: string;
4008
- optionColorActive: string;
4009
- optionColorActivePending: string;
4010
- actionTextColor: string;
4011
- loadingColor: string;
4012
- height: string;
4013
- paddingTiny: string;
4014
- paddingSmall: string;
4015
- paddingMedium: string;
4016
- paddingLarge: string;
4017
- paddingHuge: string;
4018
- optionPaddingTiny: string;
4019
- optionPaddingSmall: string;
4020
- optionPaddingMedium: string;
4021
- optionPaddingLarge: string;
4022
- optionPaddingHuge: string;
4023
- loadingSize: string;
4024
- }, {
4025
- Scrollbar: Theme<"Scrollbar", {
4026
- height: string;
4027
- width: string;
4028
- borderRadius: string;
4029
- color: string;
4030
- colorHover: string;
4031
- railInsetHorizontalBottom: string;
4032
- railInsetHorizontalTop: string;
4033
- railInsetVerticalRight: string;
4034
- railInsetVerticalLeft: string;
4035
- railColor: string;
4036
- }, any>;
4037
- Empty: Theme<"Empty", {
4038
- fontSizeTiny: string;
4039
- fontSizeSmall: string;
4040
- fontSizeMedium: string;
4041
- fontSizeLarge: string;
4042
- fontSizeHuge: string;
4043
- textColor: string;
4044
- iconColor: string;
4045
- extraTextColor: string;
4046
- iconSizeTiny: string;
4047
- iconSizeSmall: string;
4048
- iconSizeMedium: string;
4049
- iconSizeLarge: string;
4050
- iconSizeHuge: string;
4051
- }, any>;
4052
- }>;
4053
- }>>>;
4054
- readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Select", {
4055
- menuBoxShadow: string;
4056
- }, {
4057
- InternalSelection: Theme<"InternalSelection", {
4058
- fontSizeTiny: string;
4059
- fontSizeSmall: string;
4060
- fontSizeMedium: string;
4061
- fontSizeLarge: string;
4062
- heightTiny: string;
4063
- heightSmall: string;
4064
- heightMedium: string;
4065
- heightLarge: string;
4066
- borderRadius: string;
4067
- fontWeight: string;
4068
- textColor: string;
4069
- textColorDisabled: string;
4070
- placeholderColor: string;
4071
- placeholderColorDisabled: string;
4072
- color: string;
4073
- colorDisabled: string;
4074
- colorActive: string;
4075
- border: string;
4076
- borderHover: string;
4077
- borderActive: string;
4078
- borderFocus: string;
4079
- boxShadowHover: string;
4080
- boxShadowActive: string;
4081
- boxShadowFocus: string;
4082
- caretColor: string;
4083
- arrowColor: string;
4084
- arrowColorDisabled: string;
4085
- loadingColor: string;
4086
- borderWarning: string;
4087
- borderHoverWarning: string;
4088
- borderActiveWarning: string;
4089
- borderFocusWarning: string;
4090
- boxShadowHoverWarning: string;
4091
- boxShadowActiveWarning: string;
4092
- boxShadowFocusWarning: string;
4093
- colorActiveWarning: string;
4094
- caretColorWarning: string;
4095
- borderError: string;
4096
- borderHoverError: string;
4097
- borderActiveError: string;
4098
- borderFocusError: string;
4099
- boxShadowHoverError: string;
4100
- boxShadowActiveError: string;
4101
- boxShadowFocusError: string;
4102
- colorActiveError: string;
4103
- caretColorError: string;
4104
- clearColor: string;
4105
- clearColorHover: string;
4106
- clearColorPressed: string;
4107
- paddingSingle: string;
4108
- paddingMultiple: string;
4109
- clearSize: string;
4110
- arrowSize: string;
4111
- }, {
4112
- Popover: Theme<"Popover", {
4113
- fontSize: string;
4114
- borderRadius: string;
4115
- color: string;
4116
- dividerColor: string;
4117
- textColor: string;
4118
- boxShadow: string;
4119
- space: string;
4120
- spaceArrow: string;
4121
- arrowOffset: string;
4122
- arrowOffsetVertical: string;
4123
- arrowHeight: string;
4124
- padding: string;
4125
- }, {
4126
- Scrollbar: Theme<"Scrollbar", {
4127
- height: string;
4128
- width: string;
4129
- borderRadius: string;
4130
- color: string;
4131
- colorHover: string;
4132
- railInsetHorizontalBottom: string;
4133
- railInsetHorizontalTop: string;
4134
- railInsetVerticalRight: string;
4135
- railInsetVerticalLeft: string;
4136
- railColor: string;
4137
- }, any>;
4138
- }>;
4139
- }>;
4140
- InternalSelectMenu: Theme<"InternalSelectMenu", {
4141
- optionFontSizeTiny: string;
4142
- optionFontSizeSmall: string;
4143
- optionFontSizeMedium: string;
4144
- optionFontSizeLarge: string;
4145
- optionFontSizeHuge: string;
4146
- optionHeightTiny: string;
4147
- optionHeightSmall: string;
4148
- optionHeightMedium: string;
4149
- optionHeightLarge: string;
4150
- optionHeightHuge: string;
4151
- borderRadius: string;
4152
- color: string;
4153
- groupHeaderTextColor: string;
4154
- actionDividerColor: string;
4155
- optionTextColor: string;
4156
- optionTextColorPressed: string;
4157
- optionTextColorDisabled: string;
4158
- optionTextColorActive: string;
4159
- optionOpacityDisabled: string;
4160
- optionCheckColor: string;
4161
- optionColorPending: string;
4162
- optionColorActive: string;
4163
- optionColorActivePending: string;
4164
- actionTextColor: string;
4165
- loadingColor: string;
4166
- height: string;
4167
- paddingTiny: string;
4168
- paddingSmall: string;
4169
- paddingMedium: string;
4170
- paddingLarge: string;
4171
- paddingHuge: string;
4172
- optionPaddingTiny: string;
4173
- optionPaddingSmall: string;
4174
- optionPaddingMedium: string;
4175
- optionPaddingLarge: string;
4176
- optionPaddingHuge: string;
4177
- loadingSize: string;
4178
- }, {
4179
- Scrollbar: Theme<"Scrollbar", {
4180
- height: string;
4181
- width: string;
4182
- borderRadius: string;
4183
- color: string;
4184
- colorHover: string;
4185
- railInsetHorizontalBottom: string;
4186
- railInsetHorizontalTop: string;
4187
- railInsetVerticalRight: string;
4188
- railInsetVerticalLeft: string;
4189
- railColor: string;
4190
- }, any>;
4191
- Empty: Theme<"Empty", {
4192
- fontSizeTiny: string;
4193
- fontSizeSmall: string;
4194
- fontSizeMedium: string;
4195
- fontSizeLarge: string;
4196
- fontSizeHuge: string;
4197
- textColor: string;
4198
- iconColor: string;
4199
- extraTextColor: string;
4200
- iconSizeTiny: string;
4201
- iconSizeSmall: string;
4202
- iconSizeMedium: string;
4203
- iconSizeLarge: string;
4204
- iconSizeHuge: string;
4205
- }, any>;
4206
- }>;
4207
- }>>>;
4208
- }>> & Readonly<{}>, {
4209
- readonly options: SelectMixedOption[];
4210
- readonly tag: boolean;
4211
- readonly to: string | boolean | HTMLElement;
4212
- readonly disabled: boolean | undefined;
4213
- readonly show: boolean | undefined;
4214
- readonly multiple: boolean;
4215
- readonly loading: boolean;
4216
- readonly bordered: boolean | undefined;
4217
- readonly clearable: boolean;
4218
- readonly defaultValue: Value | null;
4219
- readonly placement: PopoverPlacement;
4220
- readonly keyboard: boolean;
4221
- readonly showArrow: boolean;
4222
- readonly displayDirective: "show" | "if";
4223
- readonly filterable: boolean;
4224
- readonly clearFilterAfterSelect: boolean;
4225
- readonly remote: boolean;
4226
- readonly virtualScroll: boolean;
4227
- readonly valueField: string;
4228
- readonly labelField: string;
4229
- readonly childrenField: string;
4230
- readonly widthMode: string;
4231
- readonly fallbackOption: false | SelectFallbackOption | undefined;
4232
- readonly consistentMenuWidth: boolean;
4233
- readonly ignoreComposition: boolean;
4234
- readonly showOnFocus: boolean;
4235
- readonly resetMenuOnOptionsChange: boolean;
4236
- readonly showCheckmark: boolean;
4237
- }, SlotsType<SelectSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
4238
2737
  NInputGroup: DefineComponent<{}, {
4239
2738
  mergedClsPrefix: Ref<string, string>;
4240
2739
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;