@creopse/vue 0.0.67 → 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/dist/index.cjs +16 -13
- package/dist/index.js +16 -13
- package/dist/index.mjs +2899 -2756
- package/package.json +3 -3
- package/types/core/props-manager.d.ts +12 -0
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",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@vueuse/core": "^14.1.0",
|
|
32
|
-
"axios": "^1.
|
|
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 {
|
|
@@ -3239,6 +3242,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3239
3242
|
readonly menuId?: number | undefined;
|
|
3240
3243
|
readonly pageId?: number | undefined;
|
|
3241
3244
|
readonly sectionKey?: string | undefined;
|
|
3245
|
+
readonly menuItemTypeId?: number | undefined;
|
|
3242
3246
|
readonly menuItemGroupId?: number | undefined;
|
|
3243
3247
|
readonly title: string;
|
|
3244
3248
|
readonly description?: string | null | undefined;
|
|
@@ -3251,6 +3255,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3251
3255
|
readonly isVisible: boolean;
|
|
3252
3256
|
readonly color?: string | undefined;
|
|
3253
3257
|
readonly icon?: string | undefined;
|
|
3258
|
+
readonly image?: string | undefined;
|
|
3254
3259
|
readonly targetType: import("@creopse/utils").MenuItemTargetType;
|
|
3255
3260
|
readonly contentType?: import("@creopse/utils").ContentType | undefined;
|
|
3256
3261
|
readonly contentId?: number | undefined;
|
|
@@ -3359,6 +3364,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3359
3364
|
readonly updatedAt?: string | undefined;
|
|
3360
3365
|
} | undefined;
|
|
3361
3366
|
} | undefined;
|
|
3367
|
+
readonly type?: {
|
|
3368
|
+
readonly id?: number | undefined;
|
|
3369
|
+
readonly name: string;
|
|
3370
|
+
readonly description?: string | null | undefined;
|
|
3371
|
+
readonly createdAt?: string | undefined;
|
|
3372
|
+
readonly updatedAt?: string | undefined;
|
|
3373
|
+
} | undefined;
|
|
3362
3374
|
readonly group?: {
|
|
3363
3375
|
readonly id?: number | undefined;
|
|
3364
3376
|
readonly name: string;
|