@blueking/date-picker 0.0.12 → 0.0.13
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/vue2-full.es.js +10 -1
- package/dist/vue3-full.es.js +10 -1
- package/dist/vue3-light.es.js +10 -1
- package/package.json +1 -1
- package/types/vue2.d.ts +1 -0
- package/types/vue3.d.ts +1 -0
package/dist/vue2-full.es.js
CHANGED
|
@@ -64562,5 +64562,14 @@ const vue2 = {
|
|
|
64562
64562
|
}
|
|
64563
64563
|
};
|
|
64564
64564
|
export {
|
|
64565
|
-
|
|
64565
|
+
DATE_PICKER_PROVIDER_KEY,
|
|
64566
|
+
vue2 as default,
|
|
64567
|
+
getDateValueMode,
|
|
64568
|
+
getDateValueToString,
|
|
64569
|
+
isValidDateValue,
|
|
64570
|
+
naturalDateRegexp,
|
|
64571
|
+
recentDateRegexp,
|
|
64572
|
+
transformDateValueToDayjs,
|
|
64573
|
+
useDatePickerProvider,
|
|
64574
|
+
useDatePickertInject
|
|
64566
64575
|
};
|
package/dist/vue3-full.es.js
CHANGED
|
@@ -55925,8 +55925,17 @@ dayjs.extend(tz);
|
|
|
55925
55925
|
dayjs.extend(utc);
|
|
55926
55926
|
const Dayjs = dayjs_minExports.Dayjs;
|
|
55927
55927
|
export {
|
|
55928
|
+
DATE_PICKER_PROVIDER_KEY,
|
|
55928
55929
|
_sfc_main as DatePicker,
|
|
55929
55930
|
Dayjs,
|
|
55930
55931
|
dayjs,
|
|
55931
|
-
_sfc_main as default
|
|
55932
|
+
_sfc_main as default,
|
|
55933
|
+
getDateValueMode,
|
|
55934
|
+
getDateValueToString,
|
|
55935
|
+
isValidDateValue,
|
|
55936
|
+
naturalDateRegexp,
|
|
55937
|
+
recentDateRegexp,
|
|
55938
|
+
transformDateValueToDayjs,
|
|
55939
|
+
useDatePickerProvider,
|
|
55940
|
+
useDatePickertInject
|
|
55932
55941
|
};
|
package/dist/vue3-light.es.js
CHANGED
|
@@ -23294,8 +23294,17 @@ dayjs.extend(tz);
|
|
|
23294
23294
|
dayjs.extend(utc);
|
|
23295
23295
|
const Dayjs = dayjs_minExports.Dayjs;
|
|
23296
23296
|
export {
|
|
23297
|
+
DATE_PICKER_PROVIDER_KEY,
|
|
23297
23298
|
_sfc_main as DatePicker,
|
|
23298
23299
|
Dayjs,
|
|
23299
23300
|
dayjs,
|
|
23300
|
-
_sfc_main as default
|
|
23301
|
+
_sfc_main as default,
|
|
23302
|
+
getDateValueMode,
|
|
23303
|
+
getDateValueToString,
|
|
23304
|
+
isValidDateValue,
|
|
23305
|
+
naturalDateRegexp,
|
|
23306
|
+
recentDateRegexp,
|
|
23307
|
+
transformDateValueToDayjs,
|
|
23308
|
+
useDatePickerProvider,
|
|
23309
|
+
useDatePickertInject
|
|
23301
23310
|
};
|
package/package.json
CHANGED
package/types/vue2.d.ts
CHANGED
package/types/vue3.d.ts
CHANGED