@rebilly/revel 6.17.13 → 6.17.15
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/CHANGELOG.md +4 -0
- package/dist/components/r-avatar/r-avatar.vue.d.ts +1 -1
- package/dist/components/r-button/r-button.vue.d.ts +1 -1
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +4 -4
- package/dist/components/r-date-input/r-calendar.vue.d.ts +0 -3
- package/dist/components/r-date-input/r-date-input.vue.d.ts +9 -9
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +3 -3
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +1 -4
- package/dist/components/r-date-input/v-calendar.es.d.ts +4 -4
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +1 -1
- package/dist/components/r-grid/columnTypes/badge.vue.d.ts +2 -2
- package/dist/components/r-grid/columnTypes/index.d.ts +14 -14
- package/dist/components/r-grid/r-grid.vue.d.ts +9 -11
- package/dist/components/r-icon-button/r-icon-button.vue.d.ts +1 -1
- package/dist/components/r-input/r-input.vue.d.ts +5 -5
- package/dist/components/r-loader/r-loader.vue.d.ts +1 -1
- package/dist/components/r-modal/r-modal.vue.d.ts +3 -3
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +1 -1
- package/dist/components/r-popper/r-popper.vue.d.ts +5 -5
- package/dist/components/r-radio/r-radio.vue.d.ts +5 -5
- package/dist/components/r-select/r-select.vue.d.ts +17 -17
- package/dist/components/r-toast/r-toast.vue.d.ts +4 -4
- package/dist/revel.mjs +1482 -1469
- package/dist/revel.umd.js +5 -5
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [6.17.15](https://github.com/Rebilly/rebilly/compare/revel-v6.17.14...revel-v6.17.15) (2024-03-18)
|
|
2
|
+
|
|
3
|
+
## [6.17.14](https://github.com/Rebilly/rebilly/compare/revel-v6.17.13...revel-v6.17.14) (2024-03-15)
|
|
4
|
+
|
|
1
5
|
## [6.17.13](https://github.com/Rebilly/rebilly/compare/revel-v6.17.12...revel-v6.17.13) (2024-03-15)
|
|
2
6
|
|
|
3
7
|
|
|
@@ -180,10 +180,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
180
180
|
default: null;
|
|
181
181
|
};
|
|
182
182
|
}>>, {
|
|
183
|
-
icon: string;
|
|
184
183
|
type: string;
|
|
185
184
|
link: boolean;
|
|
186
185
|
loading: boolean;
|
|
186
|
+
icon: string;
|
|
187
187
|
size: string;
|
|
188
188
|
disabled: boolean;
|
|
189
189
|
active: boolean;
|
|
@@ -27,7 +27,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
* @model
|
|
28
28
|
*/
|
|
29
29
|
modelValue: {
|
|
30
|
-
type: (
|
|
30
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
@@ -101,7 +101,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
101
101
|
* @model
|
|
102
102
|
*/
|
|
103
103
|
modelValue: {
|
|
104
|
-
type: (
|
|
104
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
105
105
|
default: boolean;
|
|
106
106
|
};
|
|
107
107
|
/**
|
|
@@ -136,11 +136,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
136
136
|
}>> & {
|
|
137
137
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
138
138
|
}, {
|
|
139
|
+
value: string | boolean;
|
|
139
140
|
caption: string;
|
|
140
141
|
label: string;
|
|
141
|
-
value: string | boolean;
|
|
142
|
-
disabled: boolean;
|
|
143
142
|
id: string;
|
|
143
|
+
disabled: boolean;
|
|
144
144
|
modelValue: string | number | boolean | unknown[];
|
|
145
145
|
fuzzy: boolean;
|
|
146
146
|
validate: ValidationState;
|
|
@@ -130,8 +130,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
130
130
|
commonAttrs(): {
|
|
131
131
|
id: string;
|
|
132
132
|
name: string;
|
|
133
|
-
minDate: string | Record<string, any
|
|
134
|
-
maxDate: string | Record<string, any
|
|
133
|
+
minDate: string | Date | Record<string, any>;
|
|
134
|
+
maxDate: string | Date | Record<string, any>;
|
|
135
135
|
columns: number;
|
|
136
136
|
placement: string;
|
|
137
137
|
timePicker: boolean;
|
|
@@ -279,19 +279,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
279
279
|
type: string;
|
|
280
280
|
caption: string;
|
|
281
281
|
label: string;
|
|
282
|
-
|
|
282
|
+
columns: number;
|
|
283
283
|
id: string;
|
|
284
|
-
|
|
284
|
+
disabled: boolean;
|
|
285
|
+
modelValue: string | Date | Record<string, any>;
|
|
285
286
|
validate: ValidationState;
|
|
286
|
-
placement: string;
|
|
287
287
|
timezone: string;
|
|
288
288
|
is24hr: boolean;
|
|
289
|
-
|
|
289
|
+
placement: string;
|
|
290
290
|
timePicker: boolean;
|
|
291
|
+
placeholder: string;
|
|
291
292
|
availableDates: Record<string, any>;
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
maxDate: string | Record<string, any> | Date;
|
|
293
|
+
minDate: string | Date | Record<string, any>;
|
|
294
|
+
maxDate: string | Date | Record<string, any>;
|
|
295
295
|
locale: string;
|
|
296
296
|
}>;
|
|
297
297
|
export default _default;
|
|
@@ -67,7 +67,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
67
67
|
calendarPresetsPeriodsList(): [string, import("./calendar-presets").CalendarPresetPeriod][];
|
|
68
68
|
isValidDatesPeriod(): boolean;
|
|
69
69
|
isRelative(): boolean;
|
|
70
|
-
selectedRelativeParams(): import("./calendar-presets").CalendarPresetPeriod |
|
|
70
|
+
selectedRelativeParams(): DateRange | import("./calendar-presets").CalendarPresetPeriod | {
|
|
71
71
|
start: string;
|
|
72
72
|
end: string;
|
|
73
73
|
} | {
|
|
@@ -102,7 +102,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
102
|
getFormattedPresetPeriod(presetName: CalendarPreset): string;
|
|
103
103
|
validateDatesPeriod(period: Voidable<Moment | string | Date>): boolean;
|
|
104
104
|
toggle(name: string): void;
|
|
105
|
-
parsePeriod(period: string | DateRange): import("./calendar-presets").CalendarPresetPeriod |
|
|
105
|
+
parsePeriod(period: string | DateRange): DateRange | import("./calendar-presets").CalendarPresetPeriod | {
|
|
106
106
|
start: string;
|
|
107
107
|
end: string;
|
|
108
108
|
} | null;
|
|
@@ -159,9 +159,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
159
159
|
modelValue: string | DateRange;
|
|
160
160
|
timezone: string;
|
|
161
161
|
is24hr: boolean;
|
|
162
|
-
placeholder: string;
|
|
163
162
|
calendarToggle: Function;
|
|
164
163
|
timePicker: boolean;
|
|
165
164
|
showPresets: boolean;
|
|
165
|
+
placeholder: string;
|
|
166
166
|
}>;
|
|
167
167
|
export default _default;
|
|
@@ -100,9 +100,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
100
100
|
tintColor: string;
|
|
101
101
|
};
|
|
102
102
|
popoverConfigs: {
|
|
103
|
-
/**
|
|
104
|
-
* Validation result sent by Vuelidate
|
|
105
|
-
*/
|
|
106
103
|
placement: {};
|
|
107
104
|
visibility: string;
|
|
108
105
|
modifiers: {
|
|
@@ -208,7 +205,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
208
205
|
validate: ValidationState;
|
|
209
206
|
timezone: string;
|
|
210
207
|
is24hr: boolean;
|
|
211
|
-
placeholder: string;
|
|
212
208
|
timePicker: boolean;
|
|
209
|
+
placeholder: string;
|
|
213
210
|
}>;
|
|
214
211
|
export default _default;
|
|
@@ -156,7 +156,7 @@ declare const _sfc_main$3: {
|
|
|
156
156
|
minPage: ObjectConstructor;
|
|
157
157
|
maxPage: ObjectConstructor;
|
|
158
158
|
transition: StringConstructor;
|
|
159
|
-
attributes: (
|
|
159
|
+
attributes: (ArrayConstructor | ObjectConstructor)[];
|
|
160
160
|
trimWeeks: BooleanConstructor;
|
|
161
161
|
disablePageSwipe: BooleanConstructor;
|
|
162
162
|
};
|
|
@@ -278,7 +278,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
278
278
|
dragAttribute: ObjectConstructor;
|
|
279
279
|
selectAttribute: ObjectConstructor;
|
|
280
280
|
attributes: ArrayConstructor;
|
|
281
|
-
validHours: (
|
|
281
|
+
validHours: (ArrayConstructor | FunctionConstructor | ObjectConstructor)[];
|
|
282
282
|
}, unknown, {
|
|
283
283
|
value_: null;
|
|
284
284
|
dateParts: null;
|
|
@@ -429,10 +429,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
429
429
|
dragAttribute: ObjectConstructor;
|
|
430
430
|
selectAttribute: ObjectConstructor;
|
|
431
431
|
attributes: ArrayConstructor;
|
|
432
|
-
validHours: (
|
|
432
|
+
validHours: (ArrayConstructor | FunctionConstructor | ObjectConstructor)[];
|
|
433
433
|
}>> & {
|
|
434
|
-
onDrag?: ((...args: any[]) => any) | undefined;
|
|
435
434
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
435
|
+
onDrag?: ((...args: any[]) => any) | undefined;
|
|
436
436
|
onDayclick?: ((...args: any[]) => any) | undefined;
|
|
437
437
|
onDaykeydown?: ((...args: any[]) => any) | undefined;
|
|
438
438
|
"onPopover-will-show"?: ((...args: any[]) => any) | undefined;
|
|
@@ -57,8 +57,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
default: boolean;
|
|
58
58
|
};
|
|
59
59
|
}>> & {
|
|
60
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
61
60
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
62
62
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
63
63
|
}, {
|
|
64
64
|
disabled: boolean;
|
|
@@ -12,7 +12,7 @@ import type { BadgeColumn } from './types';
|
|
|
12
12
|
*/
|
|
13
13
|
declare const _default: import("vue").DefineComponent<{
|
|
14
14
|
value: {
|
|
15
|
-
type: (
|
|
15
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16
16
|
required: true;
|
|
17
17
|
};
|
|
18
18
|
row: {
|
|
@@ -27,7 +27,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
getBadgeType(value: string): string;
|
|
28
28
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
29
|
value: {
|
|
30
|
-
type: (
|
|
30
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
31
31
|
required: true;
|
|
32
32
|
};
|
|
33
33
|
row: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const ColumnTypes: {
|
|
2
2
|
badge: import("vue").DefineComponent<{
|
|
3
3
|
value: {
|
|
4
|
-
type: (
|
|
4
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
5
5
|
required: true;
|
|
6
6
|
};
|
|
7
7
|
row: {
|
|
@@ -9,14 +9,14 @@ export declare const ColumnTypes: {
|
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
11
|
column: {
|
|
12
|
-
type: import("vue").PropType<import("./types").BadgeColumn>;
|
|
12
|
+
type: import("vue").PropType<import("./types.js").BadgeColumn>;
|
|
13
13
|
required: true;
|
|
14
14
|
};
|
|
15
15
|
}, unknown, unknown, {}, {
|
|
16
16
|
getBadgeType(value: string): string;
|
|
17
17
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
value: {
|
|
19
|
-
type: (
|
|
19
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
20
20
|
required: true;
|
|
21
21
|
};
|
|
22
22
|
row: {
|
|
@@ -24,13 +24,13 @@ export declare const ColumnTypes: {
|
|
|
24
24
|
required: true;
|
|
25
25
|
};
|
|
26
26
|
column: {
|
|
27
|
-
type: import("vue").PropType<import("./types").BadgeColumn>;
|
|
27
|
+
type: import("vue").PropType<import("./types.js").BadgeColumn>;
|
|
28
28
|
required: true;
|
|
29
29
|
};
|
|
30
30
|
}>>, {}>;
|
|
31
31
|
button: import("vue").DefineComponent<{
|
|
32
32
|
column: {
|
|
33
|
-
type: import("vue").PropType<import("./types").ButtonColumn>;
|
|
33
|
+
type: import("vue").PropType<import("./types.js").ButtonColumn>;
|
|
34
34
|
required: true;
|
|
35
35
|
};
|
|
36
36
|
row: {
|
|
@@ -42,12 +42,12 @@ export declare const ColumnTypes: {
|
|
|
42
42
|
default: null;
|
|
43
43
|
};
|
|
44
44
|
}, unknown, unknown, {
|
|
45
|
-
buttons(): import("./types").ButtonOptions[];
|
|
45
|
+
buttons(): import("./types.js").ButtonOptions[];
|
|
46
46
|
}, {
|
|
47
|
-
buttonOptions(button: import("./types").ButtonOptions): import("./button.vue").ButtonColumnRenderOptions;
|
|
47
|
+
buttonOptions(button: import("./types.js").ButtonOptions): import("./button.vue").ButtonColumnRenderOptions;
|
|
48
48
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
49
|
column: {
|
|
50
|
-
type: import("vue").PropType<import("./types").ButtonColumn>;
|
|
50
|
+
type: import("vue").PropType<import("./types.js").ButtonColumn>;
|
|
51
51
|
required: true;
|
|
52
52
|
};
|
|
53
53
|
row: {
|
|
@@ -63,7 +63,7 @@ export declare const ColumnTypes: {
|
|
|
63
63
|
}>;
|
|
64
64
|
text: import("vue").DefineComponent<{
|
|
65
65
|
column: {
|
|
66
|
-
type: import("vue").PropType<import("./types").GridColumn>;
|
|
66
|
+
type: import("vue").PropType<import("./types.js").GridColumn>;
|
|
67
67
|
required: true;
|
|
68
68
|
};
|
|
69
69
|
value: {
|
|
@@ -72,7 +72,7 @@ export declare const ColumnTypes: {
|
|
|
72
72
|
};
|
|
73
73
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
74
74
|
column: {
|
|
75
|
-
type: import("vue").PropType<import("./types").GridColumn>;
|
|
75
|
+
type: import("vue").PropType<import("./types.js").GridColumn>;
|
|
76
76
|
required: true;
|
|
77
77
|
};
|
|
78
78
|
value: {
|
|
@@ -82,7 +82,7 @@ export declare const ColumnTypes: {
|
|
|
82
82
|
}>>, {}>;
|
|
83
83
|
date: import("vue").DefineComponent<{
|
|
84
84
|
column: {
|
|
85
|
-
type: import("vue").PropType<import("./types").DateColumn>;
|
|
85
|
+
type: import("vue").PropType<import("./types.js").DateColumn>;
|
|
86
86
|
required: true;
|
|
87
87
|
};
|
|
88
88
|
value: {
|
|
@@ -94,7 +94,7 @@ export declare const ColumnTypes: {
|
|
|
94
94
|
title(): string;
|
|
95
95
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
96
96
|
column: {
|
|
97
|
-
type: import("vue").PropType<import("./types").DateColumn>;
|
|
97
|
+
type: import("vue").PropType<import("./types.js").DateColumn>;
|
|
98
98
|
required: true;
|
|
99
99
|
};
|
|
100
100
|
value: {
|
|
@@ -108,7 +108,7 @@ export declare const ColumnTypes: {
|
|
|
108
108
|
required: true;
|
|
109
109
|
};
|
|
110
110
|
column: {
|
|
111
|
-
type: import("vue").PropType<import("./types").NumericColumn>;
|
|
111
|
+
type: import("vue").PropType<import("./types.js").NumericColumn>;
|
|
112
112
|
required: true;
|
|
113
113
|
};
|
|
114
114
|
}, unknown, unknown, {
|
|
@@ -119,7 +119,7 @@ export declare const ColumnTypes: {
|
|
|
119
119
|
required: true;
|
|
120
120
|
};
|
|
121
121
|
column: {
|
|
122
|
-
type: import("vue").PropType<import("./types").NumericColumn>;
|
|
122
|
+
type: import("vue").PropType<import("./types.js").NumericColumn>;
|
|
123
123
|
required: true;
|
|
124
124
|
};
|
|
125
125
|
}>>, {}>;
|
|
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
* Defines the property, which changes will trigger the fetching of data
|
|
32
32
|
*/
|
|
33
33
|
watcher: {
|
|
34
|
-
type: (StringConstructor | BooleanConstructor |
|
|
34
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor | ObjectConstructor)[];
|
|
35
35
|
default: null;
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
} | undefined;
|
|
60
60
|
getComponent({ renderAs }: Column): import("vue").DefineComponent<{
|
|
61
61
|
value: {
|
|
62
|
-
type: (
|
|
62
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
63
63
|
required: true;
|
|
64
64
|
};
|
|
65
65
|
row: {
|
|
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
getBadgeType(value: string): string;
|
|
75
75
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
76
76
|
value: {
|
|
77
|
-
type: (
|
|
77
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
78
78
|
required: true;
|
|
79
79
|
};
|
|
80
80
|
row: {
|
|
@@ -97,9 +97,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
97
|
value: {
|
|
98
98
|
type: StringConstructor;
|
|
99
99
|
default: null;
|
|
100
|
-
};
|
|
101
|
-
* Specify the columns
|
|
102
|
-
*/
|
|
100
|
+
};
|
|
103
101
|
}, unknown, unknown, {
|
|
104
102
|
buttons(): import("./columnTypes/types").ButtonOptions[];
|
|
105
103
|
}, {
|
|
@@ -116,9 +114,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
116
114
|
value: {
|
|
117
115
|
type: StringConstructor;
|
|
118
116
|
default: null;
|
|
119
|
-
};
|
|
120
|
-
* Specify the columns
|
|
121
|
-
*/
|
|
117
|
+
};
|
|
122
118
|
}>>, {
|
|
123
119
|
value: string;
|
|
124
120
|
}> | import("vue").DefineComponent<{
|
|
@@ -170,7 +166,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
170
166
|
required: true;
|
|
171
167
|
};
|
|
172
168
|
}, unknown, unknown, {
|
|
173
|
-
displayValue(): string | number | null;
|
|
169
|
+
displayValue(): string | number | null; /**
|
|
170
|
+
* Specify if the grid has frozen (fixed) left column
|
|
171
|
+
*/
|
|
174
172
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
175
173
|
value: {
|
|
176
174
|
type: PropType<string | number>;
|
|
@@ -202,7 +200,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
202
200
|
* Defines the property, which changes will trigger the fetching of data
|
|
203
201
|
*/
|
|
204
202
|
watcher: {
|
|
205
|
-
type: (StringConstructor | BooleanConstructor |
|
|
203
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor | ObjectConstructor)[];
|
|
206
204
|
default: null;
|
|
207
205
|
};
|
|
208
206
|
/**
|
|
@@ -122,11 +122,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
122
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
type: string;
|
|
125
|
+
tooltip: string;
|
|
125
126
|
size: string;
|
|
126
127
|
disabled: boolean;
|
|
127
128
|
fluid: boolean;
|
|
128
129
|
capitalizeFirstLetter: boolean;
|
|
129
|
-
tooltip: string;
|
|
130
130
|
fitted: boolean;
|
|
131
131
|
tooltipRightEdge: boolean;
|
|
132
132
|
}>;
|
|
@@ -195,7 +195,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
195
195
|
click(): void;
|
|
196
196
|
autoResizeTextArea(element: HTMLElement): void;
|
|
197
197
|
highlight(): void;
|
|
198
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
198
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "click" | "focus" | "update:modelValue" | "key-press" | "key-down" | "key-submit" | "left-icon-click" | "right-icon-click")[], "blur" | "click" | "focus" | "update:modelValue" | "key-press" | "key-down" | "key-submit" | "left-icon-click" | "right-icon-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
199
199
|
/**
|
|
200
200
|
* TBD
|
|
201
201
|
*/
|
|
@@ -373,9 +373,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
373
373
|
};
|
|
374
374
|
}>> & {
|
|
375
375
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
376
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
377
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
378
376
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
377
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
378
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
379
379
|
"onKey-press"?: ((...args: any[]) => any) | undefined;
|
|
380
380
|
"onKey-down"?: ((...args: any[]) => any) | undefined;
|
|
381
381
|
"onKey-submit"?: ((...args: any[]) => any) | undefined;
|
|
@@ -386,15 +386,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
386
386
|
label: string;
|
|
387
387
|
modelValue: Nullable<string | number | boolean>;
|
|
388
388
|
validate: Record<string, any>;
|
|
389
|
-
rightIcon: string;
|
|
390
|
-
inputEvents: Record<string, any>;
|
|
391
389
|
rows: string | number;
|
|
392
390
|
numeric: boolean;
|
|
393
391
|
helpText: string;
|
|
394
392
|
multiline: boolean;
|
|
395
393
|
submitOnEnter: boolean;
|
|
394
|
+
inputEvents: Record<string, any>;
|
|
396
395
|
leftIcon: string;
|
|
397
396
|
leftIconClickPointer: boolean;
|
|
397
|
+
rightIcon: string;
|
|
398
398
|
rightIconClickPointer: boolean;
|
|
399
399
|
leftIconSpinning: boolean;
|
|
400
400
|
rightIconSpinning: boolean;
|
|
@@ -116,17 +116,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
116
116
|
default: number;
|
|
117
117
|
};
|
|
118
118
|
}>> & {
|
|
119
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
120
119
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
120
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
121
121
|
onLeave?: ((...args: any[]) => any) | undefined;
|
|
122
122
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
title: string;
|
|
125
|
+
show: boolean;
|
|
125
126
|
scroll: boolean;
|
|
126
127
|
size: string;
|
|
127
|
-
show: boolean;
|
|
128
|
-
duration: number;
|
|
129
128
|
cancelLabel: string;
|
|
130
129
|
scrollContent: boolean;
|
|
130
|
+
duration: number;
|
|
131
131
|
}>;
|
|
132
132
|
export default _default;
|
|
@@ -99,7 +99,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
99
99
|
* Position
|
|
100
100
|
*/
|
|
101
101
|
position: {
|
|
102
|
-
type: PropType<"
|
|
102
|
+
type: PropType<"bottomStart" | "bottomEnd" | "topStart" | "topEnd">;
|
|
103
103
|
default: string;
|
|
104
104
|
validator: (position: string) => boolean;
|
|
105
105
|
};
|
|
@@ -232,7 +232,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
232
232
|
* Position
|
|
233
233
|
*/
|
|
234
234
|
position: {
|
|
235
|
-
type: PropType<"
|
|
235
|
+
type: PropType<"bottomStart" | "bottomEnd" | "topStart" | "topEnd">;
|
|
236
236
|
default: string;
|
|
237
237
|
validator: (position: string) => boolean;
|
|
238
238
|
};
|
|
@@ -257,14 +257,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
257
257
|
"onToggle-on"?: ((...args: any[]) => any) | undefined;
|
|
258
258
|
"onToggle-off"?: ((...args: any[]) => any) | undefined;
|
|
259
259
|
}, {
|
|
260
|
+
autoHide: boolean;
|
|
260
261
|
disabled: boolean;
|
|
261
262
|
fluid: boolean;
|
|
262
|
-
position: "bottomEnd" | "bottomStart" | "topStart" | "topEnd";
|
|
263
|
-
offset: number;
|
|
264
263
|
duration: number;
|
|
264
|
+
position: "bottomStart" | "bottomEnd" | "topStart" | "topEnd";
|
|
265
|
+
offset: number;
|
|
265
266
|
state: boolean;
|
|
266
267
|
escToHide: boolean;
|
|
267
|
-
autoHide: boolean;
|
|
268
268
|
globalAutoHide: boolean;
|
|
269
269
|
closeFunction: Function;
|
|
270
270
|
openOnMount: boolean;
|
|
@@ -33,7 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
* Radio input value
|
|
34
34
|
*/
|
|
35
35
|
value: {
|
|
36
|
-
type: (
|
|
36
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
37
37
|
required: true;
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
default: null;
|
|
52
52
|
};
|
|
53
53
|
modelValue: {
|
|
54
|
-
type: (
|
|
54
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
55
55
|
default: null;
|
|
56
56
|
};
|
|
57
57
|
}, unknown, unknown, {
|
|
@@ -97,7 +97,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
97
|
* Radio input value
|
|
98
98
|
*/
|
|
99
99
|
value: {
|
|
100
|
-
type: (
|
|
100
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
101
101
|
required: true;
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
@@ -115,7 +115,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
115
115
|
default: null;
|
|
116
116
|
};
|
|
117
117
|
modelValue: {
|
|
118
|
-
type: (
|
|
118
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
119
119
|
default: null;
|
|
120
120
|
};
|
|
121
121
|
}>> & {
|
|
@@ -124,8 +124,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
124
124
|
name: string;
|
|
125
125
|
caption: string;
|
|
126
126
|
label: string;
|
|
127
|
-
disabled: boolean;
|
|
128
127
|
id: string;
|
|
128
|
+
disabled: boolean;
|
|
129
129
|
modelValue: string | number | boolean | unknown[];
|
|
130
130
|
validate: ValidationState;
|
|
131
131
|
}>;
|