@dcodegroup-au/dsg-vue 0.1.21 → 0.1.22
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/{DsgLabel.vue_vue_type_style_index_0_lang-BXePb1IV.js → DsgLabel.vue_vue_type_style_index_0_lang-BYL1w85l.js} +2 -2
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-BIxdsbw_.js → DsgTablePerPage.vue_vue_type_style_index_0_lang-COiqcr11.js} +6473 -6432
- package/dist/{DsgTablePerPage.vue_vue_type_style_index_0_lang-DU5GAN6E.cjs → DsgTablePerPage.vue_vue_type_style_index_0_lang-VdqoCHmU.cjs} +1197 -1197
- package/dist/components/Table/DsgTable.vue.d.ts +8 -0
- package/dist/components/Table/DsgTableComponent.vue.d.ts +2 -0
- package/dist/dsg-vue.cjs +6 -6
- package/dist/dsg-vue.editor.esm.js +10 -10
- package/dist/dsg-vue.esm.js +160 -155
- package/dist/dsg-vue.table.cjs +2 -2
- package/dist/dsg-vue.table.esm.js +592 -552
- package/dist/table.d.ts +4 -0
- package/package.json +14 -14
package/dist/table.d.ts
CHANGED
|
@@ -98,6 +98,8 @@ export declare const DsgTable: {
|
|
|
98
98
|
readonly fieldPrefix?: string | undefined;
|
|
99
99
|
readonly eventPrefix?: string | undefined;
|
|
100
100
|
readonly selectable?: boolean | undefined;
|
|
101
|
+
readonly replaceState?: boolean | undefined;
|
|
102
|
+
readonly replaceStrategy?: "window" | "inertia" | undefined;
|
|
101
103
|
readonly "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
|
|
102
104
|
readonly "onDsg-table:loaded"?: (() => any) | undefined;
|
|
103
105
|
readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
|
|
@@ -1632,6 +1634,8 @@ declare const _default: {
|
|
|
1632
1634
|
readonly fieldPrefix?: string | undefined;
|
|
1633
1635
|
readonly eventPrefix?: string | undefined;
|
|
1634
1636
|
readonly selectable?: boolean | undefined;
|
|
1637
|
+
readonly replaceState?: boolean | undefined;
|
|
1638
|
+
readonly replaceStrategy?: "window" | "inertia" | undefined;
|
|
1635
1639
|
readonly "onDsg-table:loading"?: ((loading: boolean) => any) | undefined;
|
|
1636
1640
|
readonly "onDsg-table:loaded"?: (() => any) | undefined;
|
|
1637
1641
|
readonly "onDsg-table:load-success"?: ((response: import('axios').AxiosResponse<any, any, {}>) => any) | undefined;
|
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.22",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"preinstall": "npx only-allow pnpm",
|
|
@@ -103,10 +103,10 @@
|
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@eslint/eslintrc": "^3.3.3",
|
|
106
|
-
"@eslint/js": "^9.39.
|
|
106
|
+
"@eslint/js": "^9.39.2",
|
|
107
107
|
"@testing-library/vue": "^8.1.0",
|
|
108
108
|
"@types/eslint": "^9.6.1",
|
|
109
|
-
"@types/node": "^22.19.
|
|
109
|
+
"@types/node": "^22.19.7",
|
|
110
110
|
"@types/uuid": "^10.0.0",
|
|
111
111
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
112
112
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
@@ -115,14 +115,14 @@
|
|
|
115
115
|
"@vueuse/components": "^13.9.0",
|
|
116
116
|
"@vueuse/core": "^13.9.0",
|
|
117
117
|
"@vueuse/integrations": "^13.9.0",
|
|
118
|
-
"axios": "^1.13.
|
|
119
|
-
"card-validator": "^10.0.
|
|
118
|
+
"axios": "^1.13.4",
|
|
119
|
+
"card-validator": "^10.0.4",
|
|
120
120
|
"date-fns": "^4.1.0",
|
|
121
|
-
"eslint": "^9.39.
|
|
121
|
+
"eslint": "^9.39.2",
|
|
122
122
|
"eslint-config-prettier": "^10.1.8",
|
|
123
|
-
"eslint-plugin-prettier": "^5.5.
|
|
123
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
124
124
|
"eslint-plugin-storybook": "^0.12.0",
|
|
125
|
-
"eslint-plugin-vue": "^10.
|
|
125
|
+
"eslint-plugin-vue": "^10.7.0",
|
|
126
126
|
"floating-vue": "^5.2.2",
|
|
127
127
|
"globals": "^16.5.0",
|
|
128
128
|
"hotkeys-js": "^3.13.15",
|
|
@@ -130,15 +130,15 @@
|
|
|
130
130
|
"jiti": "^2.6.1",
|
|
131
131
|
"jsdom": "^26.1.0",
|
|
132
132
|
"only-allow": "^1.2.2",
|
|
133
|
-
"phone": "^3.1.
|
|
134
|
-
"prettier": "^3.
|
|
135
|
-
"sass": "^1.
|
|
133
|
+
"phone": "^3.1.70",
|
|
134
|
+
"prettier": "^3.8.1",
|
|
135
|
+
"sass": "^1.97.3",
|
|
136
136
|
"semantic-release": "^24.2.9",
|
|
137
|
-
"storybook": "^8.6.
|
|
137
|
+
"storybook": "^8.6.15",
|
|
138
138
|
"tailwindcss": "^3.4.19",
|
|
139
139
|
"typescript": "^5.9.3",
|
|
140
|
-
"typescript-eslint": "^8.
|
|
141
|
-
"ua-parser-js": "^2.0.
|
|
140
|
+
"typescript-eslint": "^8.54.0",
|
|
141
|
+
"ua-parser-js": "^2.0.8",
|
|
142
142
|
"uuid": "^11.1.0",
|
|
143
143
|
"vditor": "^3.11.2",
|
|
144
144
|
"vite": "^6.4.1",
|