@oub/fusion 0.2.66 → 0.2.68
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/common/date-picker/FusionDatePicker.vue.d.ts +36 -0
- package/dist/fusion.js +23 -3
- package/dist/fusion.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/themes.css +1 -1
- package/dist/utilities.css +1 -1
- package/dist/variables/_components.scss +7 -10
- package/dist/variables/_fused.scss +0 -6
- package/dist/variables/_oub.scss +0 -6
- package/package.json +1 -1
|
@@ -63,6 +63,22 @@ 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
|
+
};
|
|
66
82
|
}, unknown, {
|
|
67
83
|
date: string | Date;
|
|
68
84
|
datePickerInputOptions: {
|
|
@@ -144,6 +160,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
160
|
type: StringConstructor;
|
|
145
161
|
default: string;
|
|
146
162
|
};
|
|
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
|
+
};
|
|
147
179
|
}>> & {
|
|
148
180
|
"onInput:blur"?: ((...args: any[]) => any) | undefined;
|
|
149
181
|
"onInput:focus"?: ((...args: any[]) => any) | undefined;
|
|
@@ -158,7 +190,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
158
190
|
maxDate: string;
|
|
159
191
|
format: string;
|
|
160
192
|
clearable: boolean;
|
|
193
|
+
monthPicker: boolean;
|
|
194
|
+
timePicker: boolean;
|
|
161
195
|
autocomplete: string;
|
|
196
|
+
weekPicker: boolean;
|
|
197
|
+
yearPicker: boolean;
|
|
162
198
|
helperLabel: string;
|
|
163
199
|
errorLabel: string;
|
|
164
200
|
dateSeparator: string;
|
package/dist/fusion.js
CHANGED
|
@@ -11783,6 +11783,22 @@ const a1 = /* @__PURE__ */ ye(Gv, [["render", t1]]), n1 = ve({
|
|
|
11783
11783
|
dataTest: {
|
|
11784
11784
|
type: String,
|
|
11785
11785
|
default: "fusion-date-picker"
|
|
11786
|
+
},
|
|
11787
|
+
monthPicker: {
|
|
11788
|
+
type: Boolean,
|
|
11789
|
+
default: !1
|
|
11790
|
+
},
|
|
11791
|
+
yearPicker: {
|
|
11792
|
+
type: Boolean,
|
|
11793
|
+
default: !1
|
|
11794
|
+
},
|
|
11795
|
+
timePicker: {
|
|
11796
|
+
type: Boolean,
|
|
11797
|
+
default: !1
|
|
11798
|
+
},
|
|
11799
|
+
weekPicker: {
|
|
11800
|
+
type: Boolean,
|
|
11801
|
+
default: !1
|
|
11786
11802
|
}
|
|
11787
11803
|
},
|
|
11788
11804
|
emits: ["input:blur", "input:focus", "update:modelValue"],
|
|
@@ -11871,6 +11887,10 @@ function u1(e, t, n, r, a, o) {
|
|
|
11871
11887
|
"min-date": e.minDate,
|
|
11872
11888
|
disabled: e.disabled,
|
|
11873
11889
|
clearable: e.isClearable,
|
|
11890
|
+
"month-picker": e.monthPicker,
|
|
11891
|
+
"year-picker": e.yearPicker,
|
|
11892
|
+
"time-picker": e.timePicker,
|
|
11893
|
+
"week-picker": e.weekPicker,
|
|
11874
11894
|
onBlur: e.handleBlur,
|
|
11875
11895
|
onFocus: e.handleFocus
|
|
11876
11896
|
}, {
|
|
@@ -11878,14 +11898,14 @@ function u1(e, t, n, r, a, o) {
|
|
|
11878
11898
|
ke(i, { class: "fusion-date-picker icon" })
|
|
11879
11899
|
]),
|
|
11880
11900
|
_: 1
|
|
11881
|
-
}, 8, ["modelValue", "uid", "format", "placeholder", "autocomplete", "required", "text-input", "name", "class", "max-date", "min-date", "disabled", "clearable", "onUpdate:modelValue", "onBlur", "onFocus"]),
|
|
11901
|
+
}, 8, ["modelValue", "uid", "format", "placeholder", "autocomplete", "required", "text-input", "name", "class", "max-date", "min-date", "disabled", "clearable", "month-picker", "year-picker", "time-picker", "week-picker", "onUpdate:modelValue", "onBlur", "onFocus"]),
|
|
11882
11902
|
e.errorLabel ? (d(), m("div", s1, [
|
|
11883
11903
|
ke(u, { "data-test": "error-icon" }),
|
|
11884
11904
|
y("span", l1, oe(e.errorLabel), 1)
|
|
11885
11905
|
])) : D("", !0)
|
|
11886
11906
|
], 8, r1);
|
|
11887
11907
|
}
|
|
11888
|
-
const Xm = /* @__PURE__ */ ye(n1, [["render", u1], ["__scopeId", "data-v-
|
|
11908
|
+
const Xm = /* @__PURE__ */ ye(n1, [["render", u1], ["__scopeId", "data-v-33df37bc"]]), d1 = ve({
|
|
11889
11909
|
name: "FusionSearchableInput",
|
|
11890
11910
|
components: {
|
|
11891
11911
|
SVGSearch: Zr,
|
|
@@ -13003,7 +13023,7 @@ function F0(e, t, n, r, a, o) {
|
|
|
13003
13023
|
_: 3
|
|
13004
13024
|
}, 16, ["class", "tabindex", "onClick", "onKeydown", "onMouseover", "onMouseout", "onMousedown", "onMouseup"]);
|
|
13005
13025
|
}
|
|
13006
|
-
const $m = /* @__PURE__ */ ye(T0, [["render", F0], ["__scopeId", "data-v-
|
|
13026
|
+
const $m = /* @__PURE__ */ ye(T0, [["render", F0], ["__scopeId", "data-v-31387a17"]]), x0 = ve({
|
|
13007
13027
|
name: "SVGArrowRight"
|
|
13008
13028
|
}), O0 = {
|
|
13009
13029
|
width: "24",
|