@oub/fusion 0.2.83 → 0.2.85

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.
@@ -63,22 +63,6 @@ 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
67
  date: string | Date;
84
68
  datePickerInputOptions: {
@@ -160,22 +144,6 @@ declare const _default: import("vue").DefineComponent<{
160
144
  type: StringConstructor;
161
145
  default: string;
162
146
  };
163
- monthPicker: {
164
- type: BooleanConstructor;
165
- default: boolean;
166
- };
167
- yearPicker: {
168
- type: BooleanConstructor;
169
- default: boolean;
170
- };
171
- timePicker: {
172
- type: BooleanConstructor;
173
- default: boolean;
174
- };
175
- weekPicker: {
176
- type: BooleanConstructor;
177
- default: boolean;
178
- };
179
147
  }>> & {
180
148
  "onInput:blur"?: ((...args: any[]) => any) | undefined;
181
149
  "onInput:focus"?: ((...args: any[]) => any) | undefined;
@@ -190,11 +158,7 @@ declare const _default: import("vue").DefineComponent<{
190
158
  maxDate: string;
191
159
  format: string;
192
160
  clearable: boolean;
193
- monthPicker: boolean;
194
- timePicker: boolean;
195
161
  autocomplete: string;
196
- weekPicker: boolean;
197
- yearPicker: boolean;
198
162
  helperLabel: string;
199
163
  errorLabel: string;
200
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, };