@creopse/vue 0.0.68 → 0.0.69
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@creopse/vue",
|
|
3
3
|
"description": "Creopse Vue Toolkit",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.69",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Noé Gnanih <noegnanih@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"axios": "^1.15.0",
|
|
33
33
|
"lodash.clonedeep": "^4.5.0",
|
|
34
34
|
"uuid": "^13.0.0",
|
|
35
|
-
"@creopse/utils": "0.1.
|
|
35
|
+
"@creopse/utils": "0.1.12"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@inertiajs/core": "^2.1.6",
|
|
@@ -3232,6 +3232,9 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3232
3232
|
readonly name: string;
|
|
3233
3233
|
readonly title: string;
|
|
3234
3234
|
readonly description?: string | null | undefined;
|
|
3235
|
+
readonly data?: {
|
|
3236
|
+
readonly [x: string]: any;
|
|
3237
|
+
} | undefined;
|
|
3235
3238
|
readonly createdAt?: string | undefined;
|
|
3236
3239
|
readonly updatedAt?: string | undefined;
|
|
3237
3240
|
readonly items?: readonly {
|