@dcodegroup-au/dsg-vue 0.1.14 → 0.1.16
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/{DsgTablePerPage.vue_vue_type_style_index_0_lang-OVnCsiAi.cjs → DsgTablePerPage.vue_vue_type_style_index_0_lang-B3Ew3xM2.cjs} +1196 -1196
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-ByEZd_XB.js → DsgTablePerPage.vue_vue_type_style_index_0_lang-Dq7AM0nW.js} +10341 -10679
- package/dist/components/Elements/DsgDatepicker.vue.d.ts +3 -0
- package/dist/components/Table/DsgTable.vue.d.ts +3 -0
- package/dist/dsg-vue.cjs +12 -12
- package/dist/dsg-vue.css +2 -2
- package/dist/dsg-vue.esm.js +2163 -2132
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +266 -258
- package/dist/dsg-vue.tailwind.cjs +1 -1
- package/dist/dsg-vue.tailwind.esm.js +6 -6
- package/dist/table.d.ts +18 -0
- package/package.json +17 -17
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { RangeConfig, UIOptions } from '@vuepic/vue-datepicker';
|
|
2
|
+
import { Locale } from 'date-fns';
|
|
2
3
|
/**
|
|
3
4
|
* ------------------------------------------------
|
|
4
5
|
* # Setup: Props/Variables/Models
|
|
@@ -24,6 +25,8 @@ export interface DsgDatepickerProps {
|
|
|
24
25
|
label?: string;
|
|
25
26
|
useTimePicker?: boolean;
|
|
26
27
|
errors?: string[];
|
|
28
|
+
locale?: string;
|
|
29
|
+
formatLocale?: Locale;
|
|
27
30
|
}
|
|
28
31
|
type __VLS_Props = DsgDatepickerProps;
|
|
29
32
|
type __VLS_PublicProps = {
|
|
@@ -338,6 +338,9 @@ declare const __VLS_component: import('vue').DefineComponent<DsgTableProps, {
|
|
|
338
338
|
updateRowTable: (rowData: any) => void;
|
|
339
339
|
addRowTable: (rowData: any) => void;
|
|
340
340
|
deleteRowTable: (rowData: any) => void;
|
|
341
|
+
setData: (data: any[]) => void;
|
|
342
|
+
getData: () => any[];
|
|
343
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
341
344
|
termChanged: (term: string | null) => void;
|
|
342
345
|
setFilters: (filters: any) => void;
|
|
343
346
|
setLoading: (loadingState: boolean) => void;
|