@hbdlzy/ui-core 0.1.4 → 0.1.5

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 (64) hide show
  1. package/README.md +7 -0
  2. package/components.manifest.json +11 -35
  3. package/dist/components/BaseCard/BaseCard.types.d.ts +36 -36
  4. package/dist/components/BaseCard/BaseCard.vue.d.ts +122 -122
  5. package/dist/components/BaseCard/index.d.ts +3 -3
  6. package/dist/components/BaseEChart/BaseEChart.types.d.ts +26 -26
  7. package/dist/components/BaseEChart/BaseEChart.vue.d.ts +66 -66
  8. package/dist/components/BaseEChart/index.d.ts +3 -3
  9. package/dist/components/BaseExportButton/BaseExportButton.types.d.ts +21 -21
  10. package/dist/components/BaseExportButton/BaseExportButton.utils.d.ts +4 -4
  11. package/dist/components/BaseExportButton/BaseExportButton.vue.d.ts +128 -128
  12. package/dist/components/BaseExportButton/index.d.ts +5 -5
  13. package/dist/components/BaseTable/BaseTable.types.d.ts +163 -163
  14. package/dist/components/BaseTable/BaseTable.vue.d.ts +157 -157
  15. package/dist/components/BaseTable/index.d.ts +3 -3
  16. package/dist/components/OutlinedCascader/OutlinedCascader.types.d.ts +25 -25
  17. package/dist/components/OutlinedCascader/OutlinedCascader.vue.d.ts +85 -85
  18. package/dist/components/OutlinedCascader/index.d.ts +3 -3
  19. package/dist/components/OutlinedDatePicker/OutlinedDatePicker.types.d.ts +27 -27
  20. package/dist/components/OutlinedDatePicker/OutlinedDatePicker.vue.d.ts +88 -88
  21. package/dist/components/OutlinedDatePicker/index.d.ts +3 -3
  22. package/dist/components/OutlinedDateTimePicker/OutlinedDateTimePicker.types.d.ts +26 -26
  23. package/dist/components/OutlinedDateTimePicker/OutlinedDateTimePicker.vue.d.ts +97 -97
  24. package/dist/components/OutlinedDateTimePicker/index.d.ts +3 -3
  25. package/dist/components/OutlinedInput/OutlinedInput.types.d.ts +29 -29
  26. package/dist/components/OutlinedInput/OutlinedInput.vue.d.ts +97 -97
  27. package/dist/components/OutlinedInput/index.d.ts +3 -3
  28. package/dist/components/OutlinedSelect/OutlinedSelect.types.d.ts +38 -38
  29. package/dist/components/OutlinedSelect/OutlinedSelect.vue.d.ts +116 -116
  30. package/dist/components/OutlinedSelect/index.d.ts +3 -3
  31. package/dist/components/OutlinedTimePicker/OutlinedTimePicker.types.d.ts +28 -28
  32. package/dist/components/OutlinedTimePicker/OutlinedTimePicker.vue.d.ts +94 -94
  33. package/dist/components/OutlinedTimePicker/index.d.ts +3 -3
  34. package/dist/components/OutlinedTreeSelect/OutlinedTreeSelect.types.d.ts +46 -46
  35. package/dist/components/OutlinedTreeSelect/OutlinedTreeSelect.vue.d.ts +137 -137
  36. package/dist/components/OutlinedTreeSelect/index.d.ts +3 -3
  37. package/dist/echarts/index.d.ts +9 -9
  38. package/dist/excel/exportExcel.d.ts +18 -18
  39. package/dist/index.cjs +42 -1
  40. package/dist/index.d.ts +27 -30
  41. package/dist/index.js +308 -527
  42. package/dist/ripple/index.d.ts +2 -0
  43. package/dist/style.css +1 -1
  44. package/package.json +6 -4
  45. package/src/components/BaseExportButton/BaseExportButton.vue +1 -3
  46. package/src/components/BaseTable/BaseTable.types.ts +1 -1
  47. package/src/index.ts +5 -4
  48. package/src/ripple/index.ts +213 -0
  49. package/dist/components/BaseDialog/BaseDialog.types.d.ts +0 -25
  50. package/dist/components/BaseDialog/BaseDialog.vue.d.ts +0 -100
  51. package/dist/components/BaseDialog/index.d.ts +0 -3
  52. package/dist/components/BaseSearchForm/BaseSearchForm.types.d.ts +0 -42
  53. package/dist/components/BaseSearchForm/BaseSearchForm.utils.d.ts +0 -5
  54. package/dist/components/BaseSearchForm/BaseSearchForm.vue.d.ts +0 -88
  55. package/dist/components/BaseSearchForm/index.d.ts +0 -4
  56. package/src/components/BaseDialog/BaseDialog.types.ts +0 -28
  57. package/src/components/BaseDialog/BaseDialog.vue +0 -158
  58. package/src/components/BaseDialog/README.md +0 -69
  59. package/src/components/BaseDialog/index.ts +0 -10
  60. package/src/components/BaseSearchForm/BaseSearchForm.types.ts +0 -46
  61. package/src/components/BaseSearchForm/BaseSearchForm.utils.ts +0 -41
  62. package/src/components/BaseSearchForm/BaseSearchForm.vue +0 -267
  63. package/src/components/BaseSearchForm/README.md +0 -66
  64. package/src/components/BaseSearchForm/index.ts +0 -20
@@ -1,97 +1,97 @@
1
- import type { OutlinedInputCssValue, OutlinedInputProps, OutlinedInputValue } from './OutlinedInput.types';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedInputProps>, {
3
- value: string;
4
- disabled: boolean;
5
- placeholder: string;
6
- label: string;
7
- typeInput: string;
8
- showPassword: boolean;
9
- isNumber: boolean;
10
- inputHeight: number;
11
- isBorder: boolean;
12
- suffixText: string;
13
- clearable: boolean;
14
- showWordLimit: boolean;
15
- marginBottom: number;
16
- paddingTop: number;
17
- }>>, {
18
- focus: () => void;
19
- blur: () => void;
20
- clear: () => void;
21
- select: () => void;
22
- getInputRef: () => unknown;
23
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24
- input: (value: OutlinedInputValue) => void;
25
- "update:value": (value: OutlinedInputValue) => void;
26
- warning: (value: string) => void;
27
- focus: (value: FocusEvent) => void;
28
- blur: (value: FocusEvent) => void;
29
- change: (value: OutlinedInputValue) => void;
30
- clear: () => void;
31
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedInputProps>, {
32
- value: string;
33
- disabled: boolean;
34
- placeholder: string;
35
- label: string;
36
- typeInput: string;
37
- showPassword: boolean;
38
- isNumber: boolean;
39
- inputHeight: number;
40
- isBorder: boolean;
41
- suffixText: string;
42
- clearable: boolean;
43
- showWordLimit: boolean;
44
- marginBottom: number;
45
- paddingTop: number;
46
- }>>> & Readonly<{
47
- onBlur?: ((value: FocusEvent) => any) | undefined;
48
- onChange?: ((value: OutlinedInputValue) => any) | undefined;
49
- onFocus?: ((value: FocusEvent) => any) | undefined;
50
- onInput?: ((value: OutlinedInputValue) => any) | undefined;
51
- onClear?: (() => any) | undefined;
52
- onWarning?: ((value: string) => any) | undefined;
53
- "onUpdate:value"?: ((value: OutlinedInputValue) => any) | undefined;
54
- }>, {
55
- label: string;
56
- disabled: boolean;
57
- value: OutlinedInputValue;
58
- placeholder: string;
59
- clearable: boolean;
60
- inputHeight: number;
61
- isBorder: boolean;
62
- marginBottom: OutlinedInputCssValue;
63
- paddingTop: OutlinedInputCssValue;
64
- showPassword: boolean;
65
- typeInput: string;
66
- isNumber: boolean;
67
- suffixText: string;
68
- showWordLimit: boolean;
69
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
70
- prefix?(_: {}): any;
71
- prepend?(_: {}): any;
72
- append?(_: {}): any;
73
- suffix?(_: {}): any;
74
- }>;
75
- export default _default;
76
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
77
- type __VLS_TypePropsToRuntimeProps<T> = {
78
- [K in keyof T]-?: {} extends Pick<T, K> ? {
79
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
80
- } : {
81
- type: import('vue').PropType<T[K]>;
82
- required: true;
83
- };
84
- };
85
- type __VLS_WithDefaults<P, D> = {
86
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
87
- default: D[K];
88
- }> : P[K];
89
- };
90
- type __VLS_Prettify<T> = {
91
- [K in keyof T]: T[K];
92
- } & {};
93
- type __VLS_WithTemplateSlots<T, S> = T & {
94
- new (): {
95
- $slots: S;
96
- };
97
- };
1
+ import type { OutlinedInputCssValue, OutlinedInputProps, OutlinedInputValue } from './OutlinedInput.types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedInputProps>, {
3
+ value: string;
4
+ disabled: boolean;
5
+ placeholder: string;
6
+ label: string;
7
+ typeInput: string;
8
+ showPassword: boolean;
9
+ isNumber: boolean;
10
+ inputHeight: number;
11
+ isBorder: boolean;
12
+ suffixText: string;
13
+ clearable: boolean;
14
+ showWordLimit: boolean;
15
+ marginBottom: number;
16
+ paddingTop: number;
17
+ }>>, {
18
+ focus: () => void;
19
+ blur: () => void;
20
+ clear: () => void;
21
+ select: () => void;
22
+ getInputRef: () => unknown;
23
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24
+ input: (value: OutlinedInputValue) => void;
25
+ "update:value": (value: OutlinedInputValue) => void;
26
+ warning: (value: string) => void;
27
+ focus: (value: FocusEvent) => void;
28
+ blur: (value: FocusEvent) => void;
29
+ change: (value: OutlinedInputValue) => void;
30
+ clear: () => void;
31
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedInputProps>, {
32
+ value: string;
33
+ disabled: boolean;
34
+ placeholder: string;
35
+ label: string;
36
+ typeInput: string;
37
+ showPassword: boolean;
38
+ isNumber: boolean;
39
+ inputHeight: number;
40
+ isBorder: boolean;
41
+ suffixText: string;
42
+ clearable: boolean;
43
+ showWordLimit: boolean;
44
+ marginBottom: number;
45
+ paddingTop: number;
46
+ }>>> & Readonly<{
47
+ onBlur?: ((value: FocusEvent) => any) | undefined;
48
+ onChange?: ((value: OutlinedInputValue) => any) | undefined;
49
+ onFocus?: ((value: FocusEvent) => any) | undefined;
50
+ onInput?: ((value: OutlinedInputValue) => any) | undefined;
51
+ onClear?: (() => any) | undefined;
52
+ onWarning?: ((value: string) => any) | undefined;
53
+ "onUpdate:value"?: ((value: OutlinedInputValue) => any) | undefined;
54
+ }>, {
55
+ label: string;
56
+ disabled: boolean;
57
+ value: OutlinedInputValue;
58
+ placeholder: string;
59
+ clearable: boolean;
60
+ inputHeight: number;
61
+ isBorder: boolean;
62
+ marginBottom: OutlinedInputCssValue;
63
+ paddingTop: OutlinedInputCssValue;
64
+ showPassword: boolean;
65
+ typeInput: string;
66
+ isNumber: boolean;
67
+ suffixText: string;
68
+ showWordLimit: boolean;
69
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
70
+ prefix?(_: {}): any;
71
+ prepend?(_: {}): any;
72
+ append?(_: {}): any;
73
+ suffix?(_: {}): any;
74
+ }>;
75
+ export default _default;
76
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
77
+ type __VLS_TypePropsToRuntimeProps<T> = {
78
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
79
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
80
+ } : {
81
+ type: import('vue').PropType<T[K]>;
82
+ required: true;
83
+ };
84
+ };
85
+ type __VLS_WithDefaults<P, D> = {
86
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
87
+ default: D[K];
88
+ }> : P[K];
89
+ };
90
+ type __VLS_Prettify<T> = {
91
+ [K in keyof T]: T[K];
92
+ } & {};
93
+ type __VLS_WithTemplateSlots<T, S> = T & {
94
+ new (): {
95
+ $slots: S;
96
+ };
97
+ };
@@ -1,3 +1,3 @@
1
- import OutlinedInput from './OutlinedInput.vue';
2
- export default OutlinedInput;
3
- export type { OutlinedInputCssValue, OutlinedInputExpose, OutlinedInputProps, OutlinedInputValue } from './OutlinedInput.types';
1
+ import OutlinedInput from './OutlinedInput.vue';
2
+ export default OutlinedInput;
3
+ export type { OutlinedInputCssValue, OutlinedInputExpose, OutlinedInputProps, OutlinedInputValue } from './OutlinedInput.types';
@@ -1,38 +1,38 @@
1
- export type OutlinedSelectCssValue = string | number;
2
- export type OutlinedSelectOptionValue = string | number | boolean | Record<string, unknown> | null;
3
- export type OutlinedSelectValue = OutlinedSelectOptionValue | OutlinedSelectOptionValue[];
4
- export interface OutlinedSelectOption {
5
- label?: string;
6
- value?: OutlinedSelectOptionValue;
7
- disabled?: boolean;
8
- [key: string]: unknown;
9
- }
10
- export interface OutlinedSelectProps {
11
- value?: OutlinedSelectValue;
12
- options?: OutlinedSelectOption[];
13
- placeholder?: string;
14
- label?: string;
15
- disabled?: boolean;
16
- typeInput?: string;
17
- showPassword?: boolean;
18
- collapseTags?: boolean;
19
- collapseTagsTooltip?: boolean;
20
- filterable?: boolean;
21
- clearable?: boolean;
22
- multiple?: boolean;
23
- inputHeight?: number;
24
- isBorder?: boolean;
25
- keyValue?: string;
26
- labelValue?: string;
27
- noCheck?: boolean;
28
- maxCollapseTags?: number;
29
- marginBottom?: OutlinedSelectCssValue;
30
- paddingTop?: OutlinedSelectCssValue;
31
- }
32
- export interface OutlinedSelectExpose {
33
- focus: () => void;
34
- blur: () => void;
35
- clear: () => void;
36
- toggleMenu: () => void;
37
- getSelectRef: () => unknown | null;
38
- }
1
+ export type OutlinedSelectCssValue = string | number;
2
+ export type OutlinedSelectOptionValue = string | number | boolean | Record<string, unknown> | null;
3
+ export type OutlinedSelectValue = OutlinedSelectOptionValue | OutlinedSelectOptionValue[];
4
+ export interface OutlinedSelectOption {
5
+ label?: string;
6
+ value?: OutlinedSelectOptionValue;
7
+ disabled?: boolean;
8
+ [key: string]: unknown;
9
+ }
10
+ export interface OutlinedSelectProps {
11
+ value?: OutlinedSelectValue;
12
+ options?: OutlinedSelectOption[];
13
+ placeholder?: string;
14
+ label?: string;
15
+ disabled?: boolean;
16
+ typeInput?: string;
17
+ showPassword?: boolean;
18
+ collapseTags?: boolean;
19
+ collapseTagsTooltip?: boolean;
20
+ filterable?: boolean;
21
+ clearable?: boolean;
22
+ multiple?: boolean;
23
+ inputHeight?: number;
24
+ isBorder?: boolean;
25
+ keyValue?: string;
26
+ labelValue?: string;
27
+ noCheck?: boolean;
28
+ maxCollapseTags?: number;
29
+ marginBottom?: OutlinedSelectCssValue;
30
+ paddingTop?: OutlinedSelectCssValue;
31
+ }
32
+ export interface OutlinedSelectExpose {
33
+ focus: () => void;
34
+ blur: () => void;
35
+ clear: () => void;
36
+ toggleMenu: () => void;
37
+ getSelectRef: () => unknown | null;
38
+ }
@@ -1,116 +1,116 @@
1
- import type { OutlinedSelectCssValue, OutlinedSelectOption, OutlinedSelectProps, OutlinedSelectValue } from './OutlinedSelect.types';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedSelectProps>, {
3
- value: undefined;
4
- options: () => never[];
5
- placeholder: string;
6
- label: string;
7
- disabled: boolean;
8
- typeInput: string;
9
- showPassword: boolean;
10
- collapseTags: boolean;
11
- collapseTagsTooltip: boolean;
12
- filterable: boolean;
13
- clearable: boolean;
14
- multiple: boolean;
15
- inputHeight: number;
16
- isBorder: boolean;
17
- keyValue: string;
18
- labelValue: string;
19
- noCheck: boolean;
20
- maxCollapseTags: number;
21
- marginBottom: number;
22
- paddingTop: number;
23
- }>>, {
24
- focus: () => void;
25
- blur: () => void;
26
- clear: () => void;
27
- toggleMenu: () => void;
28
- getSelectRef: () => unknown;
29
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
30
- input: (value: OutlinedSelectValue) => void;
31
- "update:value": (value: OutlinedSelectValue) => void;
32
- change: (value: OutlinedSelectValue) => void;
33
- focus: (value: FocusEvent) => void;
34
- blur: (value: FocusEvent) => void;
35
- "visible-change": (value: boolean) => void;
36
- clear: () => void;
37
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedSelectProps>, {
38
- value: undefined;
39
- options: () => never[];
40
- placeholder: string;
41
- label: string;
42
- disabled: boolean;
43
- typeInput: string;
44
- showPassword: boolean;
45
- collapseTags: boolean;
46
- collapseTagsTooltip: boolean;
47
- filterable: boolean;
48
- clearable: boolean;
49
- multiple: boolean;
50
- inputHeight: number;
51
- isBorder: boolean;
52
- keyValue: string;
53
- labelValue: string;
54
- noCheck: boolean;
55
- maxCollapseTags: number;
56
- marginBottom: number;
57
- paddingTop: number;
58
- }>>> & Readonly<{
59
- onBlur?: ((value: FocusEvent) => any) | undefined;
60
- onChange?: ((value: OutlinedSelectValue) => any) | undefined;
61
- onFocus?: ((value: FocusEvent) => any) | undefined;
62
- onInput?: ((value: OutlinedSelectValue) => any) | undefined;
63
- onClear?: (() => any) | undefined;
64
- "onUpdate:value"?: ((value: OutlinedSelectValue) => any) | undefined;
65
- "onVisible-change"?: ((value: boolean) => any) | undefined;
66
- }>, {
67
- label: string;
68
- disabled: boolean;
69
- value: OutlinedSelectValue;
70
- options: OutlinedSelectOption[];
71
- placeholder: string;
72
- clearable: boolean;
73
- inputHeight: number;
74
- isBorder: boolean;
75
- filterable: boolean;
76
- marginBottom: OutlinedSelectCssValue;
77
- paddingTop: OutlinedSelectCssValue;
78
- multiple: boolean;
79
- showPassword: boolean;
80
- typeInput: string;
81
- collapseTags: boolean;
82
- collapseTagsTooltip: boolean;
83
- keyValue: string;
84
- labelValue: string;
85
- noCheck: boolean;
86
- maxCollapseTags: number;
87
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
88
- default?(_: {}): any;
89
- empty?(_: {}): any;
90
- header?(_: {}): any;
91
- footer?(_: {}): any;
92
- tag?(_: any): any;
93
- }>;
94
- export default _default;
95
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
96
- type __VLS_TypePropsToRuntimeProps<T> = {
97
- [K in keyof T]-?: {} extends Pick<T, K> ? {
98
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
99
- } : {
100
- type: import('vue').PropType<T[K]>;
101
- required: true;
102
- };
103
- };
104
- type __VLS_WithDefaults<P, D> = {
105
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
106
- default: D[K];
107
- }> : P[K];
108
- };
109
- type __VLS_Prettify<T> = {
110
- [K in keyof T]: T[K];
111
- } & {};
112
- type __VLS_WithTemplateSlots<T, S> = T & {
113
- new (): {
114
- $slots: S;
115
- };
116
- };
1
+ import type { OutlinedSelectCssValue, OutlinedSelectOption, OutlinedSelectProps, OutlinedSelectValue } from './OutlinedSelect.types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedSelectProps>, {
3
+ value: undefined;
4
+ options: () => never[];
5
+ placeholder: string;
6
+ label: string;
7
+ disabled: boolean;
8
+ typeInput: string;
9
+ showPassword: boolean;
10
+ collapseTags: boolean;
11
+ collapseTagsTooltip: boolean;
12
+ filterable: boolean;
13
+ clearable: boolean;
14
+ multiple: boolean;
15
+ inputHeight: number;
16
+ isBorder: boolean;
17
+ keyValue: string;
18
+ labelValue: string;
19
+ noCheck: boolean;
20
+ maxCollapseTags: number;
21
+ marginBottom: number;
22
+ paddingTop: number;
23
+ }>>, {
24
+ focus: () => void;
25
+ blur: () => void;
26
+ clear: () => void;
27
+ toggleMenu: () => void;
28
+ getSelectRef: () => unknown;
29
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
30
+ input: (value: OutlinedSelectValue) => void;
31
+ "update:value": (value: OutlinedSelectValue) => void;
32
+ change: (value: OutlinedSelectValue) => void;
33
+ focus: (value: FocusEvent) => void;
34
+ blur: (value: FocusEvent) => void;
35
+ "visible-change": (value: boolean) => void;
36
+ clear: () => void;
37
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OutlinedSelectProps>, {
38
+ value: undefined;
39
+ options: () => never[];
40
+ placeholder: string;
41
+ label: string;
42
+ disabled: boolean;
43
+ typeInput: string;
44
+ showPassword: boolean;
45
+ collapseTags: boolean;
46
+ collapseTagsTooltip: boolean;
47
+ filterable: boolean;
48
+ clearable: boolean;
49
+ multiple: boolean;
50
+ inputHeight: number;
51
+ isBorder: boolean;
52
+ keyValue: string;
53
+ labelValue: string;
54
+ noCheck: boolean;
55
+ maxCollapseTags: number;
56
+ marginBottom: number;
57
+ paddingTop: number;
58
+ }>>> & Readonly<{
59
+ onBlur?: ((value: FocusEvent) => any) | undefined;
60
+ onChange?: ((value: OutlinedSelectValue) => any) | undefined;
61
+ onFocus?: ((value: FocusEvent) => any) | undefined;
62
+ onInput?: ((value: OutlinedSelectValue) => any) | undefined;
63
+ onClear?: (() => any) | undefined;
64
+ "onUpdate:value"?: ((value: OutlinedSelectValue) => any) | undefined;
65
+ "onVisible-change"?: ((value: boolean) => any) | undefined;
66
+ }>, {
67
+ label: string;
68
+ disabled: boolean;
69
+ value: OutlinedSelectValue;
70
+ options: OutlinedSelectOption[];
71
+ placeholder: string;
72
+ clearable: boolean;
73
+ inputHeight: number;
74
+ isBorder: boolean;
75
+ filterable: boolean;
76
+ marginBottom: OutlinedSelectCssValue;
77
+ paddingTop: OutlinedSelectCssValue;
78
+ multiple: boolean;
79
+ showPassword: boolean;
80
+ typeInput: string;
81
+ collapseTags: boolean;
82
+ collapseTagsTooltip: boolean;
83
+ keyValue: string;
84
+ labelValue: string;
85
+ noCheck: boolean;
86
+ maxCollapseTags: number;
87
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
88
+ default?(_: {}): any;
89
+ empty?(_: {}): any;
90
+ header?(_: {}): any;
91
+ footer?(_: {}): any;
92
+ tag?(_: any): any;
93
+ }>;
94
+ export default _default;
95
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
96
+ type __VLS_TypePropsToRuntimeProps<T> = {
97
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
98
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
99
+ } : {
100
+ type: import('vue').PropType<T[K]>;
101
+ required: true;
102
+ };
103
+ };
104
+ type __VLS_WithDefaults<P, D> = {
105
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
106
+ default: D[K];
107
+ }> : P[K];
108
+ };
109
+ type __VLS_Prettify<T> = {
110
+ [K in keyof T]: T[K];
111
+ } & {};
112
+ type __VLS_WithTemplateSlots<T, S> = T & {
113
+ new (): {
114
+ $slots: S;
115
+ };
116
+ };
@@ -1,3 +1,3 @@
1
- import OutlinedSelect from './OutlinedSelect.vue';
2
- export default OutlinedSelect;
3
- export type { OutlinedSelectCssValue, OutlinedSelectExpose, OutlinedSelectOption, OutlinedSelectOptionValue, OutlinedSelectProps, OutlinedSelectValue } from './OutlinedSelect.types';
1
+ import OutlinedSelect from './OutlinedSelect.vue';
2
+ export default OutlinedSelect;
3
+ export type { OutlinedSelectCssValue, OutlinedSelectExpose, OutlinedSelectOption, OutlinedSelectOptionValue, OutlinedSelectProps, OutlinedSelectValue } from './OutlinedSelect.types';
@@ -1,28 +1,28 @@
1
- export type OutlinedTimePickerCssValue = string | number;
2
- export type OutlinedTimePickerValue = string | number | Date | Array<string | number | Date> | null;
3
- export interface OutlinedTimePickerProps {
4
- value?: OutlinedTimePickerValue;
5
- placeholder?: string;
6
- label?: string;
7
- disabled?: boolean;
8
- clearable?: boolean;
9
- isRange?: boolean;
10
- startPlaceholder?: string;
11
- endPlaceholder?: string;
12
- rangeSeparator?: string;
13
- format?: string;
14
- valueFormat?: string;
15
- arrowControl?: boolean;
16
- inputHeight?: number;
17
- isBorder?: boolean;
18
- marginBottom?: OutlinedTimePickerCssValue;
19
- paddingTop?: OutlinedTimePickerCssValue;
20
- }
21
- export interface OutlinedTimePickerExpose {
22
- focus: () => void;
23
- blur: () => void;
24
- handleOpen: () => void;
25
- handleClose: () => void;
26
- clear: () => void;
27
- getPickerRef: () => unknown | null;
28
- }
1
+ export type OutlinedTimePickerCssValue = string | number;
2
+ export type OutlinedTimePickerValue = string | number | Date | Array<string | number | Date> | null;
3
+ export interface OutlinedTimePickerProps {
4
+ value?: OutlinedTimePickerValue;
5
+ placeholder?: string;
6
+ label?: string;
7
+ disabled?: boolean;
8
+ clearable?: boolean;
9
+ isRange?: boolean;
10
+ startPlaceholder?: string;
11
+ endPlaceholder?: string;
12
+ rangeSeparator?: string;
13
+ format?: string;
14
+ valueFormat?: string;
15
+ arrowControl?: boolean;
16
+ inputHeight?: number;
17
+ isBorder?: boolean;
18
+ marginBottom?: OutlinedTimePickerCssValue;
19
+ paddingTop?: OutlinedTimePickerCssValue;
20
+ }
21
+ export interface OutlinedTimePickerExpose {
22
+ focus: () => void;
23
+ blur: () => void;
24
+ handleOpen: () => void;
25
+ handleClose: () => void;
26
+ clear: () => void;
27
+ getPickerRef: () => unknown | null;
28
+ }