@oub/fusion 0.2.96 → 0.2.97
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/fusion.js +1845 -1654
- package/dist/fusion.umd.cjs +7 -7
- package/dist/lib/components/common/date-picker/FusionRangeDatePicker.vue.d.ts +178 -0
- package/dist/lib/main.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/types/components/FusionRangeDatePicker.d.ts +28 -0
- package/package.json +1 -1
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import type { RangeConfig } from '../../../../types/components/FusionRangeDatePicker';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
id: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
name: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
label: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
placeholder: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
autocomplete: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
helperLabel: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
errorLabel: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: ArrayConstructor;
|
|
33
|
+
default: () => null[];
|
|
34
|
+
};
|
|
35
|
+
required: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
disabled: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
format: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
rangeSeparator: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
maxDate: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
minDate: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
clearable: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
dataTest: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
rangeConfig: {
|
|
68
|
+
type: () => RangeConfig;
|
|
69
|
+
default: () => {};
|
|
70
|
+
};
|
|
71
|
+
}, unknown, {
|
|
72
|
+
dateRange: Date[] | null;
|
|
73
|
+
datePickerInputOptions: {
|
|
74
|
+
format: string;
|
|
75
|
+
rangeSeparator: string;
|
|
76
|
+
};
|
|
77
|
+
}, {
|
|
78
|
+
stateClasses(): {
|
|
79
|
+
disabled: boolean;
|
|
80
|
+
error: boolean;
|
|
81
|
+
};
|
|
82
|
+
maxRangeValue(): string | number | undefined;
|
|
83
|
+
minRangeValue(): string | number | undefined;
|
|
84
|
+
autoRangeValue(): string | number | undefined;
|
|
85
|
+
}, {
|
|
86
|
+
updateDateRange(): void;
|
|
87
|
+
handleFocus(): void;
|
|
88
|
+
handleBlur(): void;
|
|
89
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus" | "update:modelValue")[], "input:blur" | "input:focus" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
+
id: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
required: true;
|
|
93
|
+
};
|
|
94
|
+
name: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
required: true;
|
|
97
|
+
};
|
|
98
|
+
label: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
required: true;
|
|
101
|
+
};
|
|
102
|
+
placeholder: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
autocomplete: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
helperLabel: {
|
|
111
|
+
type: StringConstructor;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
114
|
+
errorLabel: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
modelValue: {
|
|
119
|
+
type: ArrayConstructor;
|
|
120
|
+
default: () => null[];
|
|
121
|
+
};
|
|
122
|
+
required: {
|
|
123
|
+
type: BooleanConstructor;
|
|
124
|
+
default: boolean;
|
|
125
|
+
};
|
|
126
|
+
disabled: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
format: {
|
|
131
|
+
type: StringConstructor;
|
|
132
|
+
default: string;
|
|
133
|
+
};
|
|
134
|
+
rangeSeparator: {
|
|
135
|
+
type: StringConstructor;
|
|
136
|
+
default: string;
|
|
137
|
+
};
|
|
138
|
+
maxDate: {
|
|
139
|
+
type: StringConstructor;
|
|
140
|
+
default: string;
|
|
141
|
+
};
|
|
142
|
+
minDate: {
|
|
143
|
+
type: StringConstructor;
|
|
144
|
+
default: string;
|
|
145
|
+
};
|
|
146
|
+
clearable: {
|
|
147
|
+
type: BooleanConstructor;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
dataTest: {
|
|
151
|
+
type: StringConstructor;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
154
|
+
rangeConfig: {
|
|
155
|
+
type: () => RangeConfig;
|
|
156
|
+
default: () => {};
|
|
157
|
+
};
|
|
158
|
+
}>> & {
|
|
159
|
+
"onInput:blur"?: ((...args: any[]) => any) | undefined;
|
|
160
|
+
"onInput:focus"?: ((...args: any[]) => any) | undefined;
|
|
161
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
162
|
+
}, {
|
|
163
|
+
dataTest: string;
|
|
164
|
+
disabled: boolean;
|
|
165
|
+
required: boolean;
|
|
166
|
+
modelValue: unknown[];
|
|
167
|
+
placeholder: string;
|
|
168
|
+
minDate: string;
|
|
169
|
+
maxDate: string;
|
|
170
|
+
format: string;
|
|
171
|
+
clearable: boolean;
|
|
172
|
+
autocomplete: string;
|
|
173
|
+
helperLabel: string;
|
|
174
|
+
errorLabel: string;
|
|
175
|
+
rangeSeparator: string;
|
|
176
|
+
rangeConfig: RangeConfig;
|
|
177
|
+
}, {}>;
|
|
178
|
+
export default _default;
|
package/dist/lib/main.d.ts
CHANGED
|
@@ -38,4 +38,5 @@ import FusionCircularProgressIndicatorLabelChecklist from './components/common/c
|
|
|
38
38
|
import FusionCircularProgressIndicatorLabelCollection from './components/common/circular-progress-bar/FusionCircularProgressIndicatorLabelCollection.vue';
|
|
39
39
|
import FusionMonthDatePicker from './components/common/date-picker/FusionMonthDatePicker.vue';
|
|
40
40
|
import FusionFileUploaderButton from './components/form/file-uploader/button/FusionFileUploaderButton.vue';
|
|
41
|
-
|
|
41
|
+
import FusionRangeDatePicker from './components/common/date-picker/FusionRangeDatePicker.vue';
|
|
42
|
+
export { FusionInput, FusionButton, FusionTextarea, FusionCheckbox, FusionRadio, FusionTextLink, FusionSelect, FusionPasswordInput, FusionPhoneInput, FusionBanner, FusionLoadingSpinner, FusionDatePicker, FusionSearchableInput, FusionNumericInputStepper, FusionTag, FusionDivider, FusionCard, FusionProgressBar, FusionContextMenu, FusionMenuItem, FusionPlatformBar, FusionSideNavigation, FusionSideNavigationItem, FusionListItem, FusionWidget, FusionToastMessage, FusionToolBar, FusionIconButton, FusionKeyValuePair, FusionFooterBar, FusionSubheadingBar, FusionRadioGroup, FusionCheckboxGroup, FusionModal, FusionCircularProgressIndicator, FusionCircularProgressIndicatorLabel, FusionCircularProgressIndicatorLabelChecklist, FusionCircularProgressIndicatorLabelCollection, FusionMonthDatePicker, FusionFileUploaderButton, FusionRangeDatePicker, };
|