@fewangsit/wangsvue 1.5.199-alpha.4 → 1.5.199-alpha.6
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/build-entry.d.ts +1 -0
- package/components/calendar/Calendar.vue.d.ts +1 -4
- package/package.json +1 -1
- package/wangsvue.es.js +2742 -2735
- package/wangsvue.system.js +73 -73
package/build-entry.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export { default as eventBus } from './event-bus';
|
|
|
3
3
|
export { default as ToastService } from 'primevue/toastservice';
|
|
4
4
|
export * from './utils';
|
|
5
5
|
export { formatCurrency } from './components/inputcurrency/helpers/currency.helper';
|
|
6
|
+
export { formatDateTimeRange } from './components/filtercontainer/helpers/formatDateTimeRange.helper';
|
|
6
7
|
export { default as useLoadingStore } from './components/loading/store/loading.store';
|
|
7
8
|
export { default as Tooltip } from 'primevue/tooltip';
|
|
8
9
|
export { Focus } from './directives';
|
|
@@ -287,10 +287,7 @@ export interface CalendarProps {
|
|
|
287
287
|
/**
|
|
288
288
|
* Epoch time in milliseconds representing the selected date(s).
|
|
289
289
|
*
|
|
290
|
-
* Can be used with `v-model:epochTimeMillis`
|
|
291
|
-
* but the calendar wont update its state when this prop value changed from parent.
|
|
292
|
-
*
|
|
293
|
-
* If you need to achieve two way data binding, use v-model instead. {@link modelValue}
|
|
290
|
+
* Can be used with `v-model:epochTimeMillis` for two way binding.
|
|
294
291
|
*/
|
|
295
292
|
epochTimeMillis?: number | number[];
|
|
296
293
|
|