@creopse/vue 0.0.67 → 0.0.68
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 +9 -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.68",
|
|
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.11"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@inertiajs/core": "^2.1.6",
|
|
@@ -3239,6 +3239,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3239
3239
|
readonly menuId?: number | undefined;
|
|
3240
3240
|
readonly pageId?: number | undefined;
|
|
3241
3241
|
readonly sectionKey?: string | undefined;
|
|
3242
|
+
readonly menuItemTypeId?: number | undefined;
|
|
3242
3243
|
readonly menuItemGroupId?: number | undefined;
|
|
3243
3244
|
readonly title: string;
|
|
3244
3245
|
readonly description?: string | null | undefined;
|
|
@@ -3251,6 +3252,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3251
3252
|
readonly isVisible: boolean;
|
|
3252
3253
|
readonly color?: string | undefined;
|
|
3253
3254
|
readonly icon?: string | undefined;
|
|
3255
|
+
readonly image?: string | undefined;
|
|
3254
3256
|
readonly targetType: import("@creopse/utils").MenuItemTargetType;
|
|
3255
3257
|
readonly contentType?: import("@creopse/utils").ContentType | undefined;
|
|
3256
3258
|
readonly contentId?: number | undefined;
|
|
@@ -3359,6 +3361,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3359
3361
|
readonly updatedAt?: string | undefined;
|
|
3360
3362
|
} | undefined;
|
|
3361
3363
|
} | undefined;
|
|
3364
|
+
readonly type?: {
|
|
3365
|
+
readonly id?: number | undefined;
|
|
3366
|
+
readonly name: string;
|
|
3367
|
+
readonly description?: string | null | undefined;
|
|
3368
|
+
readonly createdAt?: string | undefined;
|
|
3369
|
+
readonly updatedAt?: string | undefined;
|
|
3370
|
+
} | undefined;
|
|
3362
3371
|
readonly group?: {
|
|
3363
3372
|
readonly id?: number | undefined;
|
|
3364
3373
|
readonly name: string;
|