@octans/ui 1.5.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/CalendarHeatmap/CalendarHeatmap.vue.d.ts +13 -1
- package/dist/components/CalendarHeatmap/types.d.ts +7 -0
- package/dist/components/Checkbox/Checkbox.vue.d.ts +22 -0
- package/dist/components/Choice/Choice.vue.d.ts +27 -0
- package/dist/components/ChoiceList/ChoiceList.vue.d.ts +28 -0
- package/dist/components/ChoiceList/types.d.ts +7 -0
- package/dist/components/ColorSelector/ColorSelector.vue.d.ts +14 -2
- package/dist/components/ColorSelector/types.d.ts +7 -0
- package/dist/components/DatePicker/DatePicker.vue.d.ts +13 -1
- package/dist/components/DatePicker/types.d.ts +7 -0
- package/dist/components/FileInput/FileInput.vue.d.ts +39 -0
- package/dist/components/Filters/FilterItem.vue.d.ts +83 -5
- package/dist/components/Filters/Filters.vue.d.ts +87 -5
- package/dist/components/Labelled/Labelled.vue.d.ts +45 -0
- package/dist/components/NavField/NavField.vue.d.ts +39 -0
- package/dist/components/OtpInput/OtpInput.vue.d.ts +13 -1
- package/dist/components/OtpInput/types.d.ts +7 -0
- package/dist/components/Popover/Popover.vue.d.ts +5 -4
- package/dist/components/Popover/index.d.ts +3 -0
- package/dist/components/Popover/types.d.ts +13 -0
- package/dist/components/RadioButton/RadioButton.vue.d.ts +22 -0
- package/dist/components/RangeSlider/RangeSlider.vue.d.ts +43 -0
- package/dist/components/Rating/Rating.vue.d.ts +13 -1
- package/dist/components/Rating/types.d.ts +7 -0
- package/dist/components/ScrollPane/ScrollPane.vue.d.ts +14 -1
- package/dist/components/ScrollPane/index.d.ts +1 -1
- package/dist/components/ScrollPane/types.d.ts +22 -0
- package/dist/components/SegmentedControl/SegmentedControl.vue.d.ts +6 -2
- package/dist/components/SegmentedControl/types.d.ts +7 -0
- package/dist/components/Select/Select.vue.d.ts +42 -0
- package/dist/components/TextField/TextField.vue.d.ts +9 -5
- package/dist/components/TextField/types.d.ts +21 -0
- package/dist/components/TimePicker/TimePicker.vue.d.ts +13 -1
- package/dist/components/TimePicker/types.d.ts +7 -0
- package/dist/components/TimezonePicker/types.d.ts +7 -0
- package/dist/components/ToggleSwitch/ToggleSwitch.vue.d.ts +6 -2
- package/dist/components/ToggleSwitch/types.d.ts +7 -0
- package/dist/style.css +1 -1
- package/dist/ui.js +2327 -2062
- package/dist/ui.umd.js +3 -3
- package/package.json +1 -1
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { CalendarHeatmapProps, CalendarHeatmapSeries } from './types';
|
|
2
|
-
declare
|
|
2
|
+
declare var __VLS_9: any, __VLS_12: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
label?: (props: typeof __VLS_9) => any;
|
|
5
|
+
} & {
|
|
6
|
+
helpText?: (props: typeof __VLS_12) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import('vue').DefineComponent<CalendarHeatmapProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CalendarHeatmapProps> & Readonly<{}>, {
|
|
3
9
|
data: import('./types').CalendarHeatmapDataPoint[];
|
|
4
10
|
tooltip: boolean;
|
|
5
11
|
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
@@ -17,5 +23,11 @@ declare const __VLS_export: import('vue').DefineComponent<CalendarHeatmapProps,
|
|
|
17
23
|
showWeekdays: boolean;
|
|
18
24
|
showLegend: boolean;
|
|
19
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
27
|
declare const _default: typeof __VLS_export;
|
|
21
28
|
export default _default;
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
@@ -65,6 +65,13 @@ export interface CalendarHeatmapProps {
|
|
|
65
65
|
* Renders a help icon next to the label which links to an external page.
|
|
66
66
|
*/
|
|
67
67
|
helpLink?: string | false;
|
|
68
|
+
/**
|
|
69
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
70
|
+
* Defaults to an information symbol.
|
|
71
|
+
*/
|
|
72
|
+
helpLinkIcon?: string;
|
|
73
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
74
|
+
helpLinkTooltip?: string;
|
|
68
75
|
/**
|
|
69
76
|
* The data to plot, one entry per day.
|
|
70
77
|
*
|
|
@@ -19,6 +19,17 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
19
19
|
type: PropType<string | false | null>;
|
|
20
20
|
required: false;
|
|
21
21
|
};
|
|
22
|
+
/**
|
|
23
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
24
|
+
* Defaults to an information symbol.
|
|
25
|
+
*/
|
|
26
|
+
helpLinkIcon: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
};
|
|
29
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
30
|
+
helpLinkTooltip: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
};
|
|
22
33
|
name: {
|
|
23
34
|
type: StringConstructor;
|
|
24
35
|
};
|
|
@@ -98,6 +109,17 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
98
109
|
type: PropType<string | false | null>;
|
|
99
110
|
required: false;
|
|
100
111
|
};
|
|
112
|
+
/**
|
|
113
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
114
|
+
* Defaults to an information symbol.
|
|
115
|
+
*/
|
|
116
|
+
helpLinkIcon: {
|
|
117
|
+
type: StringConstructor;
|
|
118
|
+
};
|
|
119
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
120
|
+
helpLinkTooltip: {
|
|
121
|
+
type: StringConstructor;
|
|
122
|
+
};
|
|
101
123
|
name: {
|
|
102
124
|
type: StringConstructor;
|
|
103
125
|
};
|
|
@@ -14,6 +14,19 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
14
14
|
helpLink: {
|
|
15
15
|
type: PropType<string | false | null>;
|
|
16
16
|
};
|
|
17
|
+
/**
|
|
18
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
19
|
+
*/
|
|
20
|
+
helpLinkIcon: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Text shown on hovering the `helpLink` icon.
|
|
26
|
+
*/
|
|
27
|
+
helpLinkTooltip: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
};
|
|
17
30
|
error: {
|
|
18
31
|
type: PropType<string | false | null>;
|
|
19
32
|
};
|
|
@@ -61,6 +74,19 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
61
74
|
helpLink: {
|
|
62
75
|
type: PropType<string | false | null>;
|
|
63
76
|
};
|
|
77
|
+
/**
|
|
78
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
79
|
+
*/
|
|
80
|
+
helpLinkIcon: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Text shown on hovering the `helpLink` icon.
|
|
86
|
+
*/
|
|
87
|
+
helpLinkTooltip: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
};
|
|
64
90
|
error: {
|
|
65
91
|
type: PropType<string | false | null>;
|
|
66
92
|
};
|
|
@@ -98,5 +124,6 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
98
124
|
type: string;
|
|
99
125
|
tooltipPosition: string;
|
|
100
126
|
value: any;
|
|
127
|
+
helpLinkIcon: string;
|
|
101
128
|
readonly: boolean;
|
|
102
129
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -18,6 +18,18 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
18
18
|
helpLink: {
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
};
|
|
21
|
+
/**
|
|
22
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
23
|
+
* Defaults to an information symbol. Per-choice links take theirs from
|
|
24
|
+
* the choice itself.
|
|
25
|
+
*/
|
|
26
|
+
helpLinkIcon: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
};
|
|
29
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
30
|
+
helpLinkTooltip: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
};
|
|
21
33
|
/**
|
|
22
34
|
* The choices to render. See `ChoiceListOptionType`, which is exported.
|
|
23
35
|
*
|
|
@@ -27,6 +39,8 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
27
39
|
* value: any
|
|
28
40
|
* helpText?: string
|
|
29
41
|
* helpLink?: string
|
|
42
|
+
* helpLinkIcon?: string
|
|
43
|
+
* helpLinkTooltip?: string
|
|
30
44
|
* disabled?: boolean
|
|
31
45
|
* readonly?: boolean
|
|
32
46
|
* // shown only while this choice is selected
|
|
@@ -112,6 +126,18 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
112
126
|
helpLink: {
|
|
113
127
|
type: StringConstructor;
|
|
114
128
|
};
|
|
129
|
+
/**
|
|
130
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
131
|
+
* Defaults to an information symbol. Per-choice links take theirs from
|
|
132
|
+
* the choice itself.
|
|
133
|
+
*/
|
|
134
|
+
helpLinkIcon: {
|
|
135
|
+
type: StringConstructor;
|
|
136
|
+
};
|
|
137
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
138
|
+
helpLinkTooltip: {
|
|
139
|
+
type: StringConstructor;
|
|
140
|
+
};
|
|
115
141
|
/**
|
|
116
142
|
* The choices to render. See `ChoiceListOptionType`, which is exported.
|
|
117
143
|
*
|
|
@@ -121,6 +147,8 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
121
147
|
* value: any
|
|
122
148
|
* helpText?: string
|
|
123
149
|
* helpLink?: string
|
|
150
|
+
* helpLinkIcon?: string
|
|
151
|
+
* helpLinkTooltip?: string
|
|
124
152
|
* disabled?: boolean
|
|
125
153
|
* readonly?: boolean
|
|
126
154
|
* // shown only while this choice is selected
|
|
@@ -18,6 +18,13 @@ export interface ChoiceListOptionType {
|
|
|
18
18
|
* Renders a help icon next to the label which links to an external page.
|
|
19
19
|
*/
|
|
20
20
|
helpLink?: string;
|
|
21
|
+
/**
|
|
22
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
23
|
+
* Defaults to an information symbol.
|
|
24
|
+
*/
|
|
25
|
+
helpLinkIcon?: string;
|
|
26
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
27
|
+
helpLinkTooltip?: string;
|
|
21
28
|
disabled?: boolean;
|
|
22
29
|
readonly?: boolean;
|
|
23
30
|
/**
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { Gradient } from '../../utils/gradient';
|
|
2
2
|
import { ColorSelectorProps } from './types';
|
|
3
|
-
declare
|
|
3
|
+
declare var __VLS_9: any, __VLS_12: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
label?: (props: typeof __VLS_9) => any;
|
|
6
|
+
} & {
|
|
7
|
+
helpText?: (props: typeof __VLS_12) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import('vue').DefineComponent<ColorSelectorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
10
|
"update:modelValue": (value: string | Gradient) => any;
|
|
5
11
|
"update:swatches": (value: string[]) => any;
|
|
6
12
|
}, string, import('vue').PublicProps, Readonly<ColorSelectorProps> & Readonly<{
|
|
@@ -9,8 +15,8 @@ declare const __VLS_export: import('vue').DefineComponent<ColorSelectorProps, {}
|
|
|
9
15
|
}>, {
|
|
10
16
|
placement: import('../Popover').PopoverPlacementType;
|
|
11
17
|
disabled: boolean;
|
|
12
|
-
trigger: import('./types').ColorSelectorTriggerType;
|
|
13
18
|
mode: import('./types').ColorSelectorMode;
|
|
19
|
+
trigger: import('./types').ColorSelectorTriggerType;
|
|
14
20
|
fullWidth: boolean;
|
|
15
21
|
placeholder: string;
|
|
16
22
|
readonly: boolean;
|
|
@@ -30,5 +36,11 @@ declare const __VLS_export: import('vue').DefineComponent<ColorSelectorProps, {}
|
|
|
30
36
|
rememberSwatches: boolean;
|
|
31
37
|
maxSwatches: number;
|
|
32
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
33
40
|
declare const _default: typeof __VLS_export;
|
|
34
41
|
export default _default;
|
|
42
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
43
|
+
new (): {
|
|
44
|
+
$slots: S;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
@@ -56,6 +56,13 @@ export interface ColorSelectorProps extends Omit<ColorPickerProps, 'modelValue'>
|
|
|
56
56
|
* Renders a help icon next to the label which links to an external page.
|
|
57
57
|
*/
|
|
58
58
|
helpLink?: string | false | null;
|
|
59
|
+
/**
|
|
60
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
61
|
+
* Defaults to an information symbol.
|
|
62
|
+
*/
|
|
63
|
+
helpLinkIcon?: string;
|
|
64
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
65
|
+
helpLinkTooltip?: string;
|
|
59
66
|
/**
|
|
60
67
|
* Where the picker opens relative to the trigger.
|
|
61
68
|
*/
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { DatePickerProps } from './types';
|
|
2
|
-
declare
|
|
2
|
+
declare var __VLS_9: any, __VLS_12: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
label?: (props: typeof __VLS_9) => any;
|
|
5
|
+
} & {
|
|
6
|
+
helpText?: (props: typeof __VLS_12) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import('vue').DefineComponent<DatePickerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
9
|
"update:modelValue": (v: string | null) => any;
|
|
4
10
|
}, string, import('vue').PublicProps, Readonly<DatePickerProps> & Readonly<{
|
|
5
11
|
"onUpdate:modelValue"?: ((v: string | null) => any) | undefined;
|
|
@@ -13,5 +19,11 @@ declare const __VLS_export: import('vue').DefineComponent<DatePickerProps, {}, {
|
|
|
13
19
|
maxTime: string;
|
|
14
20
|
clearable: boolean;
|
|
15
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
23
|
declare const _default: typeof __VLS_export;
|
|
17
24
|
export default _default;
|
|
25
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -15,6 +15,13 @@ export interface DatePickerProps {
|
|
|
15
15
|
* Renders a help icon next to the label which links to an external page.
|
|
16
16
|
*/
|
|
17
17
|
helpLink?: string | false;
|
|
18
|
+
/**
|
|
19
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
20
|
+
* Defaults to an information symbol.
|
|
21
|
+
*/
|
|
22
|
+
helpLinkIcon?: string;
|
|
23
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
24
|
+
helpLinkTooltip?: string;
|
|
18
25
|
placeholder?: string;
|
|
19
26
|
disabled?: boolean;
|
|
20
27
|
readonly?: boolean;
|
|
@@ -37,6 +37,17 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
37
37
|
helpLink: {
|
|
38
38
|
type: PropType<string | false | null>;
|
|
39
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
42
|
+
* Defaults to an information symbol.
|
|
43
|
+
*/
|
|
44
|
+
helpLinkIcon: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
};
|
|
47
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
48
|
+
helpLinkTooltip: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
};
|
|
40
51
|
/**
|
|
41
52
|
* Marks the field as required, drawing an asterisk after the label.
|
|
42
53
|
*
|
|
@@ -153,6 +164,17 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
153
164
|
helpLink: {
|
|
154
165
|
type: PropType<string | false | null>;
|
|
155
166
|
};
|
|
167
|
+
/**
|
|
168
|
+
* The icon drawn for `helpLink` — any name the `Icon` component takes.
|
|
169
|
+
* Defaults to an information symbol.
|
|
170
|
+
*/
|
|
171
|
+
helpLinkIcon: {
|
|
172
|
+
type: StringConstructor;
|
|
173
|
+
};
|
|
174
|
+
/** Text shown on hovering the `helpLink` icon. */
|
|
175
|
+
helpLinkTooltip: {
|
|
176
|
+
type: StringConstructor;
|
|
177
|
+
};
|
|
156
178
|
/**
|
|
157
179
|
* Marks the field as required, drawing an asterisk after the label.
|
|
158
180
|
*
|
|
@@ -467,6 +489,14 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
467
489
|
type: PropType<string | false | null>;
|
|
468
490
|
required: false;
|
|
469
491
|
};
|
|
492
|
+
helpLinkIcon: {
|
|
493
|
+
type: StringConstructor;
|
|
494
|
+
default: string;
|
|
495
|
+
};
|
|
496
|
+
helpLinkTooltip: {
|
|
497
|
+
type: StringConstructor;
|
|
498
|
+
required: false;
|
|
499
|
+
};
|
|
470
500
|
required: {
|
|
471
501
|
type: BooleanConstructor;
|
|
472
502
|
required: false;
|
|
@@ -494,12 +524,21 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
494
524
|
type: PropType<string | false | null>;
|
|
495
525
|
required: false;
|
|
496
526
|
};
|
|
527
|
+
helpLinkIcon: {
|
|
528
|
+
type: StringConstructor;
|
|
529
|
+
default: string;
|
|
530
|
+
};
|
|
531
|
+
helpLinkTooltip: {
|
|
532
|
+
type: StringConstructor;
|
|
533
|
+
required: false;
|
|
534
|
+
};
|
|
497
535
|
required: {
|
|
498
536
|
type: BooleanConstructor;
|
|
499
537
|
required: false;
|
|
500
538
|
};
|
|
501
539
|
}>> & Readonly<{}>, {
|
|
502
540
|
required: boolean;
|
|
541
|
+
helpLinkIcon: string;
|
|
503
542
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
504
543
|
Spinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
505
544
|
color: {
|
|
@@ -165,11 +165,47 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
165
165
|
invert: boolean;
|
|
166
166
|
pressed: boolean;
|
|
167
167
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
168
|
-
DatePicker:
|
|
169
|
-
|
|
170
|
-
|
|
168
|
+
DatePicker: {
|
|
169
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../DatePicker').DatePickerProps> & Readonly<{
|
|
170
|
+
"onUpdate:modelValue"?: ((v: string | null) => any) | undefined;
|
|
171
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
172
|
+
"update:modelValue": (v: string | null) => any;
|
|
173
|
+
}, import('vue').PublicProps, {
|
|
174
|
+
disabled: boolean;
|
|
175
|
+
type: "datetime" | "date" | "month" | "year";
|
|
176
|
+
autoOpen: boolean;
|
|
177
|
+
readonly: boolean;
|
|
178
|
+
modelFormat: string;
|
|
179
|
+
minTime: string;
|
|
180
|
+
maxTime: string;
|
|
181
|
+
clearable: boolean;
|
|
182
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
183
|
+
P: {};
|
|
184
|
+
B: {};
|
|
185
|
+
D: {};
|
|
186
|
+
C: {};
|
|
187
|
+
M: {};
|
|
188
|
+
Defaults: {};
|
|
189
|
+
}, Readonly<import('../DatePicker').DatePickerProps> & Readonly<{
|
|
190
|
+
"onUpdate:modelValue"?: ((v: string | null) => any) | undefined;
|
|
191
|
+
}>, {}, {}, {}, {}, {
|
|
192
|
+
disabled: boolean;
|
|
193
|
+
type: "datetime" | "date" | "month" | "year";
|
|
194
|
+
autoOpen: boolean;
|
|
195
|
+
readonly: boolean;
|
|
196
|
+
modelFormat: string;
|
|
197
|
+
minTime: string;
|
|
198
|
+
maxTime: string;
|
|
199
|
+
clearable: boolean;
|
|
200
|
+
}>;
|
|
201
|
+
__isFragment?: never;
|
|
202
|
+
__isTeleport?: never;
|
|
203
|
+
__isSuspense?: never;
|
|
204
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('../DatePicker').DatePickerProps> & Readonly<{
|
|
171
205
|
"onUpdate:modelValue"?: ((v: string | null) => any) | undefined;
|
|
172
|
-
}>, {
|
|
206
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
207
|
+
"update:modelValue": (v: string | null) => any;
|
|
208
|
+
}, string, {
|
|
173
209
|
disabled: boolean;
|
|
174
210
|
type: "datetime" | "date" | "month" | "year";
|
|
175
211
|
autoOpen: boolean;
|
|
@@ -178,7 +214,13 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
178
214
|
minTime: string;
|
|
179
215
|
maxTime: string;
|
|
180
216
|
clearable: boolean;
|
|
181
|
-
}, {},
|
|
217
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
218
|
+
$slots: {
|
|
219
|
+
label?: (props: any) => any;
|
|
220
|
+
} & {
|
|
221
|
+
helpText?: (props: {}) => any;
|
|
222
|
+
};
|
|
223
|
+
});
|
|
182
224
|
TextField: {
|
|
183
225
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../TextField').TextFieldProps> & Readonly<{
|
|
184
226
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -238,6 +280,10 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
238
280
|
emptyValue: string | number | null;
|
|
239
281
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
240
282
|
$slots: {
|
|
283
|
+
label?: (props: any) => any;
|
|
284
|
+
} & {
|
|
285
|
+
helpText?: (props: {}) => any;
|
|
286
|
+
} & {
|
|
241
287
|
left?: (props: {}) => any;
|
|
242
288
|
} & {
|
|
243
289
|
prefix?: (props: {}) => any;
|
|
@@ -264,6 +310,12 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
264
310
|
helpLink: {
|
|
265
311
|
type: import('vue').PropType<string | false | null>;
|
|
266
312
|
};
|
|
313
|
+
helpLinkIcon: {
|
|
314
|
+
type: StringConstructor;
|
|
315
|
+
};
|
|
316
|
+
helpLinkTooltip: {
|
|
317
|
+
type: StringConstructor;
|
|
318
|
+
};
|
|
267
319
|
required: {
|
|
268
320
|
type: BooleanConstructor;
|
|
269
321
|
default: boolean;
|
|
@@ -439,6 +491,12 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
439
491
|
helpLink: {
|
|
440
492
|
type: import('vue').PropType<string | false | null>;
|
|
441
493
|
};
|
|
494
|
+
helpLinkIcon: {
|
|
495
|
+
type: StringConstructor;
|
|
496
|
+
};
|
|
497
|
+
helpLinkTooltip: {
|
|
498
|
+
type: StringConstructor;
|
|
499
|
+
};
|
|
442
500
|
required: {
|
|
443
501
|
type: BooleanConstructor;
|
|
444
502
|
default: boolean;
|
|
@@ -596,6 +654,7 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
596
654
|
ScrollPane: {
|
|
597
655
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../ScrollPane').ScrollPaneProps> & Readonly<{}>, {
|
|
598
656
|
scrollTo: (x: number, y: number) => void;
|
|
657
|
+
scrollIntoView: (target: Element | string | null | undefined, options?: import('../ScrollPane').ScrollPaneScrollIntoViewOptions) => void;
|
|
599
658
|
update: () => void;
|
|
600
659
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
601
660
|
disabled: boolean;
|
|
@@ -611,6 +670,7 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
611
670
|
Defaults: {};
|
|
612
671
|
}, Readonly<import('../ScrollPane').ScrollPaneProps> & Readonly<{}>, {
|
|
613
672
|
scrollTo: (x: number, y: number) => void;
|
|
673
|
+
scrollIntoView: (target: Element | string | null | undefined, options?: import('../ScrollPane').ScrollPaneScrollIntoViewOptions) => void;
|
|
614
674
|
update: () => void;
|
|
615
675
|
}, {}, {}, {}, {
|
|
616
676
|
disabled: boolean;
|
|
@@ -623,6 +683,7 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
623
683
|
__isSuspense?: never;
|
|
624
684
|
} & import('vue').ComponentOptionsBase<Readonly<import('../ScrollPane').ScrollPaneProps> & Readonly<{}>, {
|
|
625
685
|
scrollTo: (x: number, y: number) => void;
|
|
686
|
+
scrollIntoView: (target: Element | string | null | undefined, options?: import('../ScrollPane').ScrollPaneScrollIntoViewOptions) => void;
|
|
626
687
|
update: () => void;
|
|
627
688
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
628
689
|
disabled: boolean;
|
|
@@ -655,6 +716,14 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
655
716
|
type: import('vue').PropType<string | false | null>;
|
|
656
717
|
required: false;
|
|
657
718
|
};
|
|
719
|
+
helpLinkIcon: {
|
|
720
|
+
type: StringConstructor;
|
|
721
|
+
default: string;
|
|
722
|
+
};
|
|
723
|
+
helpLinkTooltip: {
|
|
724
|
+
type: StringConstructor;
|
|
725
|
+
required: false;
|
|
726
|
+
};
|
|
658
727
|
required: {
|
|
659
728
|
type: BooleanConstructor;
|
|
660
729
|
required: false;
|
|
@@ -682,12 +751,21 @@ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
682
751
|
type: import('vue').PropType<string | false | null>;
|
|
683
752
|
required: false;
|
|
684
753
|
};
|
|
754
|
+
helpLinkIcon: {
|
|
755
|
+
type: StringConstructor;
|
|
756
|
+
default: string;
|
|
757
|
+
};
|
|
758
|
+
helpLinkTooltip: {
|
|
759
|
+
type: StringConstructor;
|
|
760
|
+
required: false;
|
|
761
|
+
};
|
|
685
762
|
required: {
|
|
686
763
|
type: BooleanConstructor;
|
|
687
764
|
required: false;
|
|
688
765
|
};
|
|
689
766
|
}>> & Readonly<{}>, {
|
|
690
767
|
required: boolean;
|
|
768
|
+
helpLinkIcon: string;
|
|
691
769
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
692
770
|
Tag: {
|
|
693
771
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tag/Tag.vue').TagProps> & Readonly<{
|