@dcodegroup-au/dsg-vue 0.1.15 → 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/components/Table/DsgTable.vue.d.ts +3 -0
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +266 -258
- package/dist/table.d.ts +18 -0
- package/package.json +4 -4
package/dist/table.d.ts
CHANGED
|
@@ -27,6 +27,9 @@ export declare const DsgTable: {
|
|
|
27
27
|
updateRowTable: (rowData: any) => void;
|
|
28
28
|
addRowTable: (rowData: any) => void;
|
|
29
29
|
deleteRowTable: (rowData: any) => void;
|
|
30
|
+
setData: (data: any[]) => void;
|
|
31
|
+
getData: () => any[];
|
|
32
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
30
33
|
termChanged: (term: string | null) => void;
|
|
31
34
|
setFilters: (filters: any) => void;
|
|
32
35
|
setLoading: (loadingState: boolean) => void;
|
|
@@ -287,6 +290,9 @@ export declare const DsgTable: {
|
|
|
287
290
|
updateRowTable: (rowData: any) => void;
|
|
288
291
|
addRowTable: (rowData: any) => void;
|
|
289
292
|
deleteRowTable: (rowData: any) => void;
|
|
293
|
+
setData: (data: any[]) => void;
|
|
294
|
+
getData: () => any[];
|
|
295
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
290
296
|
termChanged: (term: string | null) => void;
|
|
291
297
|
setFilters: (filters: any) => void;
|
|
292
298
|
setLoading: (loadingState: boolean) => void;
|
|
@@ -312,6 +318,9 @@ export declare const DsgTable: {
|
|
|
312
318
|
updateRowTable: (rowData: any) => void;
|
|
313
319
|
addRowTable: (rowData: any) => void;
|
|
314
320
|
deleteRowTable: (rowData: any) => void;
|
|
321
|
+
setData: (data: any[]) => void;
|
|
322
|
+
getData: () => any[];
|
|
323
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
315
324
|
termChanged: (term: string | null) => void;
|
|
316
325
|
setFilters: (filters: any) => void;
|
|
317
326
|
setLoading: (loadingState: boolean) => void;
|
|
@@ -1543,6 +1552,9 @@ declare const _default: {
|
|
|
1543
1552
|
updateRowTable: (rowData: any) => void;
|
|
1544
1553
|
addRowTable: (rowData: any) => void;
|
|
1545
1554
|
deleteRowTable: (rowData: any) => void;
|
|
1555
|
+
setData: (data: any[]) => void;
|
|
1556
|
+
getData: () => any[];
|
|
1557
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
1546
1558
|
termChanged: (term: string | null) => void;
|
|
1547
1559
|
setFilters: (filters: any) => void;
|
|
1548
1560
|
setLoading: (loadingState: boolean) => void;
|
|
@@ -1803,6 +1815,9 @@ declare const _default: {
|
|
|
1803
1815
|
updateRowTable: (rowData: any) => void;
|
|
1804
1816
|
addRowTable: (rowData: any) => void;
|
|
1805
1817
|
deleteRowTable: (rowData: any) => void;
|
|
1818
|
+
setData: (data: any[]) => void;
|
|
1819
|
+
getData: () => any[];
|
|
1820
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
1806
1821
|
termChanged: (term: string | null) => void;
|
|
1807
1822
|
setFilters: (filters: any) => void;
|
|
1808
1823
|
setLoading: (loadingState: boolean) => void;
|
|
@@ -1828,6 +1843,9 @@ declare const _default: {
|
|
|
1828
1843
|
updateRowTable: (rowData: any) => void;
|
|
1829
1844
|
addRowTable: (rowData: any) => void;
|
|
1830
1845
|
deleteRowTable: (rowData: any) => void;
|
|
1846
|
+
setData: (data: any[]) => void;
|
|
1847
|
+
getData: () => any[];
|
|
1848
|
+
mutateData: (mutator: (data: any[]) => any[] | void) => void;
|
|
1831
1849
|
termChanged: (term: string | null) => void;
|
|
1832
1850
|
setFilters: (filters: any) => void;
|
|
1833
1851
|
setLoading: (loadingState: boolean) => void;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcodegroup-au/dsg-vue",
|
|
3
3
|
"description": "Front-end Vue/Tailwind DSG for UntitledUI.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.16",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"preinstall": "npx only-allow pnpm",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"eslint-config-prettier": "^10.1.8",
|
|
123
123
|
"eslint-plugin-prettier": "^5.5.4",
|
|
124
124
|
"eslint-plugin-storybook": "^0.12.0",
|
|
125
|
-
"eslint-plugin-vue": "^10.
|
|
125
|
+
"eslint-plugin-vue": "^10.6.1",
|
|
126
126
|
"floating-vue": "^5.2.2",
|
|
127
127
|
"globals": "^16.5.0",
|
|
128
128
|
"hotkeys-js": "^3.13.15",
|
|
@@ -132,12 +132,12 @@
|
|
|
132
132
|
"only-allow": "^1.2.1",
|
|
133
133
|
"phone": "^3.1.67",
|
|
134
134
|
"prettier": "^3.6.2",
|
|
135
|
-
"sass": "^1.94.
|
|
135
|
+
"sass": "^1.94.2",
|
|
136
136
|
"semantic-release": "^24.2.9",
|
|
137
137
|
"storybook": "^8.6.14",
|
|
138
138
|
"tailwindcss": "^3.4.18",
|
|
139
139
|
"typescript": "^5.9.3",
|
|
140
|
-
"typescript-eslint": "^8.
|
|
140
|
+
"typescript-eslint": "^8.48.0",
|
|
141
141
|
"ua-parser-js": "^2.0.6",
|
|
142
142
|
"uuid": "^11.1.0",
|
|
143
143
|
"vditor": "^3.11.2",
|