@oub/fusion 0.2.84 → 0.2.86

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.
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
28
28
  default: string;
29
29
  };
30
30
  modelValue: {
31
- type: (StringConstructor | ObjectConstructor | DateConstructor)[];
31
+ type: (StringConstructor | DateConstructor)[];
32
32
  default: null;
33
33
  };
34
34
  required: {
@@ -63,27 +63,8 @@ declare const _default: import("vue").DefineComponent<{
63
63
  type: StringConstructor;
64
64
  default: string;
65
65
  };
66
- monthPicker: {
67
- type: BooleanConstructor;
68
- default: boolean;
69
- };
70
- yearPicker: {
71
- type: BooleanConstructor;
72
- default: boolean;
73
- };
74
- timePicker: {
75
- type: BooleanConstructor;
76
- default: boolean;
77
- };
78
- weekPicker: {
79
- type: BooleanConstructor;
80
- default: boolean;
81
- };
82
66
  }, unknown, {
83
- date: string | Date | {
84
- month: number;
85
- year: number;
86
- } | null;
67
+ date: string | Date;
87
68
  datePickerInputOptions: {
88
69
  format: string;
89
70
  rangeSeparator: string;
@@ -95,6 +76,7 @@ declare const _default: import("vue").DefineComponent<{
95
76
  };
96
77
  isClearable(): boolean;
97
78
  }, {
79
+ updateDate(): void;
98
80
  handleFocus(): void;
99
81
  handleBlur(): void;
100
82
  }, 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<{
@@ -127,7 +109,7 @@ declare const _default: import("vue").DefineComponent<{
127
109
  default: string;
128
110
  };
129
111
  modelValue: {
130
- type: (StringConstructor | ObjectConstructor | DateConstructor)[];
112
+ type: (StringConstructor | DateConstructor)[];
131
113
  default: null;
132
114
  };
133
115
  required: {
@@ -162,22 +144,6 @@ declare const _default: import("vue").DefineComponent<{
162
144
  type: StringConstructor;
163
145
  default: string;
164
146
  };
165
- monthPicker: {
166
- type: BooleanConstructor;
167
- default: boolean;
168
- };
169
- yearPicker: {
170
- type: BooleanConstructor;
171
- default: boolean;
172
- };
173
- timePicker: {
174
- type: BooleanConstructor;
175
- default: boolean;
176
- };
177
- weekPicker: {
178
- type: BooleanConstructor;
179
- default: boolean;
180
- };
181
147
  }>> & {
182
148
  "onInput:blur"?: ((...args: any[]) => any) | undefined;
183
149
  "onInput:focus"?: ((...args: any[]) => any) | undefined;
@@ -186,17 +152,13 @@ declare const _default: import("vue").DefineComponent<{
186
152
  dataTest: string;
187
153
  disabled: boolean;
188
154
  required: boolean;
189
- modelValue: string | Record<string, any> | Date;
155
+ modelValue: string | Date;
190
156
  placeholder: string;
191
157
  minDate: string;
192
158
  maxDate: string;
193
159
  format: string;
194
160
  clearable: boolean;
195
- monthPicker: boolean;
196
- timePicker: boolean;
197
161
  autocomplete: string;
198
- weekPicker: boolean;
199
- yearPicker: boolean;
200
162
  helperLabel: string;
201
163
  errorLabel: string;
202
164
  dateSeparator: string;
@@ -0,0 +1,160 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ id: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ name: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
10
+ label: {
11
+ type: StringConstructor;
12
+ required: true;
13
+ };
14
+ placeholder: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ autocomplete: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ helperLabel: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ errorLabel: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ modelValue: {
31
+ type: (StringConstructor | ObjectConstructor | DateConstructor)[];
32
+ default: null;
33
+ };
34
+ required: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ disabled: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ format: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ maxDate: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ minDate: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ clearable: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ dataTest: {
59
+ type: StringConstructor;
60
+ default: string;
61
+ };
62
+ }, unknown, {
63
+ date: string | Date | {
64
+ month: number;
65
+ year: number;
66
+ } | null;
67
+ datePickerInputOptions: {
68
+ format: string;
69
+ enableTimePicker: boolean;
70
+ monthPicker: boolean;
71
+ };
72
+ }, {
73
+ stateClasses(): {
74
+ disabled: boolean;
75
+ error: boolean;
76
+ };
77
+ isClearable(): boolean;
78
+ }, {
79
+ handleFocus(): void;
80
+ handleBlur(): void;
81
+ }, 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<{
82
+ id: {
83
+ type: StringConstructor;
84
+ required: true;
85
+ };
86
+ name: {
87
+ type: StringConstructor;
88
+ required: true;
89
+ };
90
+ label: {
91
+ type: StringConstructor;
92
+ required: true;
93
+ };
94
+ placeholder: {
95
+ type: StringConstructor;
96
+ default: string;
97
+ };
98
+ autocomplete: {
99
+ type: StringConstructor;
100
+ default: string;
101
+ };
102
+ helperLabel: {
103
+ type: StringConstructor;
104
+ default: string;
105
+ };
106
+ errorLabel: {
107
+ type: StringConstructor;
108
+ default: string;
109
+ };
110
+ modelValue: {
111
+ type: (StringConstructor | ObjectConstructor | DateConstructor)[];
112
+ default: null;
113
+ };
114
+ required: {
115
+ type: BooleanConstructor;
116
+ default: boolean;
117
+ };
118
+ disabled: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ };
122
+ format: {
123
+ type: StringConstructor;
124
+ default: string;
125
+ };
126
+ maxDate: {
127
+ type: StringConstructor;
128
+ default: string;
129
+ };
130
+ minDate: {
131
+ type: StringConstructor;
132
+ default: string;
133
+ };
134
+ clearable: {
135
+ type: BooleanConstructor;
136
+ default: boolean;
137
+ };
138
+ dataTest: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ }>> & {
143
+ "onInput:blur"?: ((...args: any[]) => any) | undefined;
144
+ "onInput:focus"?: ((...args: any[]) => any) | undefined;
145
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
146
+ }, {
147
+ dataTest: string;
148
+ disabled: boolean;
149
+ required: boolean;
150
+ modelValue: string | Record<string, any> | Date;
151
+ placeholder: string;
152
+ minDate: string;
153
+ maxDate: string;
154
+ format: string;
155
+ clearable: boolean;
156
+ autocomplete: string;
157
+ helperLabel: string;
158
+ errorLabel: string;
159
+ }, {}>;
160
+ export default _default;
@@ -36,4 +36,5 @@ import FusionCircularProgressIndicator from './components/common/circular-progre
36
36
  import FusionCircularProgressIndicatorLabel from './components/common/circular-progress-bar/circular-progress-indicator-label/FusionCircularProgressIndicatorLabel.vue';
37
37
  import FusionCircularProgressIndicatorLabelChecklist from './components/common/circular-progress-bar/circular-progress-indicator-label/FusionCircularProgressIndicatorLabelChecklist.vue';
38
38
  import FusionCircularProgressIndicatorLabelCollection from './components/common/circular-progress-bar/FusionCircularProgressIndicatorLabelCollection.vue';
39
- 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, };
39
+ import FusionMonthDatePicker from './components/common/date-picker/FusionMonthDatePicker.vue';
40
+ 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, };