@anzusystems/common-admin 1.47.0-alpha42 → 1.47.0-alpha43
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.
|
@@ -5025,7 +5025,7 @@ export declare const arrayFlatten: <T>(input: NestedArray<T>, acc?: T[]) => T[];
|
|
|
5025
5025
|
|
|
5026
5026
|
export declare const arrayFromArgs: <T>(args_0: T[]) => T[];
|
|
5027
5027
|
|
|
5028
|
-
export declare const arrayItemToggle: <T>(array:
|
|
5028
|
+
export declare const arrayItemToggle: <T>(array: T[], value: T) => void;
|
|
5029
5029
|
|
|
5030
5030
|
export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => boolean;
|
|
5031
5031
|
|
|
@@ -5450,7 +5450,7 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5450
5450
|
"onUpdate:pagination"?: ((data: Pagination) => any) | undefined;
|
|
5451
5451
|
onOnPageChange?: (() => any) | undefined;
|
|
5452
5452
|
onOnFetchNextPage?: (() => any) | undefined;
|
|
5453
|
-
selectedItems:
|
|
5453
|
+
selectedItems: TItem[];
|
|
5454
5454
|
minCount?: number | undefined;
|
|
5455
5455
|
maxCount?: number | undefined;
|
|
5456
5456
|
dialogTitleT?: string | undefined;
|
|
@@ -5476,7 +5476,7 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5476
5476
|
(e: 'update:pagination', data: Pagination): void;
|
|
5477
5477
|
(e: 'onOpen'): void;
|
|
5478
5478
|
(e: 'onPageChange'): void;
|
|
5479
|
-
(e: 'onConfirm', data:
|
|
5479
|
+
(e: 'onConfirm', data: TItem[]): void;
|
|
5480
5480
|
(e: 'onFetchNextPage'): void;
|
|
5481
5481
|
};
|
|
5482
5482
|
} | undefined, __VLS_expose?: ((exposed: ShallowUnwrapRef< {
|
|
@@ -5494,7 +5494,7 @@ open: () => void;
|
|
|
5494
5494
|
"onUpdate:pagination"?: ((data: Pagination) => any) | undefined;
|
|
5495
5495
|
onOnPageChange?: (() => any) | undefined;
|
|
5496
5496
|
onOnFetchNextPage?: (() => any) | undefined;
|
|
5497
|
-
selectedItems:
|
|
5497
|
+
selectedItems: TItem[];
|
|
5498
5498
|
minCount?: number | undefined;
|
|
5499
5499
|
maxCount?: number | undefined;
|
|
5500
5500
|
dialogTitleT?: string | undefined;
|
|
@@ -5523,7 +5523,7 @@ open: () => void;
|
|
|
5523
5523
|
(e: 'update:pagination', data: Pagination): void;
|
|
5524
5524
|
(e: 'onOpen'): void;
|
|
5525
5525
|
(e: 'onPageChange'): void;
|
|
5526
|
-
(e: 'onConfirm', data:
|
|
5526
|
+
(e: 'onConfirm', data: TItem[]): void;
|
|
5527
5527
|
(e: 'onFetchNextPage'): void;
|
|
5528
5528
|
};
|
|
5529
5529
|
}>) => VNode<RendererNode, RendererElement, {
|
|
@@ -5542,7 +5542,7 @@ open: () => void;
|
|
|
5542
5542
|
"onUpdate:pagination"?: ((data: Pagination) => any) | undefined;
|
|
5543
5543
|
onOnPageChange?: (() => any) | undefined;
|
|
5544
5544
|
onOnFetchNextPage?: (() => any) | undefined;
|
|
5545
|
-
selectedItems:
|
|
5545
|
+
selectedItems: TItem[];
|
|
5546
5546
|
minCount?: number | undefined;
|
|
5547
5547
|
maxCount?: number | undefined;
|
|
5548
5548
|
dialogTitleT?: string | undefined;
|
|
@@ -5571,7 +5571,7 @@ open: () => void;
|
|
|
5571
5571
|
(e: 'update:pagination', data: Pagination): void;
|
|
5572
5572
|
(e: 'onOpen'): void;
|
|
5573
5573
|
(e: 'onPageChange'): void;
|
|
5574
|
-
(e: 'onConfirm', data:
|
|
5574
|
+
(e: 'onConfirm', data: TItem[]): void;
|
|
5575
5575
|
(e: 'onFetchNextPage'): void;
|
|
5576
5576
|
};
|
|
5577
5577
|
} | undefined;
|
|
@@ -10223,7 +10223,7 @@ export declare const stringToFloat: (value: any, fallbackValue?: number) => numb
|
|
|
10223
10223
|
|
|
10224
10224
|
export declare const stringToInt: (value: any, fallbackValue?: number) => number;
|
|
10225
10225
|
|
|
10226
|
-
export declare const stringToKebabCase: <T extends string>(value: T) => Kebab<T>;
|
|
10226
|
+
export declare const stringToKebabCase: <T extends string>(value: T) => Kebab<T, "">;
|
|
10227
10227
|
|
|
10228
10228
|
export declare const stringToSlug: (value: string) => string;
|
|
10229
10229
|
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"./styles": "./dist/style.css",
|
|
14
14
|
"./*": "./*"
|
|
15
15
|
},
|
|
16
|
-
"version": "1.47.0-
|
|
16
|
+
"version": "1.47.0-alpha43",
|
|
17
17
|
"type": "module",
|
|
18
18
|
"license": "Apache-2.0",
|
|
19
19
|
"scripts": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@shikijs/vitepress-twoslash": "^1.2.4",
|
|
47
47
|
"@stylistic/eslint-plugin": "^1.7.0",
|
|
48
48
|
"@tsconfig/node18": "^18.2.4",
|
|
49
|
-
"@types/node": "^20.12.
|
|
49
|
+
"@types/node": "^20.12.5",
|
|
50
50
|
"@types/rusha": "^0.8.3",
|
|
51
51
|
"@types/sortablejs": "^1.15.8",
|
|
52
52
|
"@types/webfontloader": "^1.6.38",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"cropperjs": "^1.6.1",
|
|
66
66
|
"dayjs": "1.11.10",
|
|
67
67
|
"eslint": "8.57.0",
|
|
68
|
-
"eslint-plugin-vue": "9.24.
|
|
68
|
+
"eslint-plugin-vue": "9.24.1",
|
|
69
69
|
"npm-run-all": "^4.1.5",
|
|
70
70
|
"pinia": "2.1.7",
|
|
71
71
|
"postcss": "^8.4.38",
|
|
@@ -73,22 +73,22 @@
|
|
|
73
73
|
"postcss-prefix-selector": "^1.16.0",
|
|
74
74
|
"prettier": "^3.2.5",
|
|
75
75
|
"rusha": "^0.8.14",
|
|
76
|
-
"sass": "^1.
|
|
76
|
+
"sass": "^1.74.1",
|
|
77
77
|
"socket.io-client": "4.7.5",
|
|
78
78
|
"sortablejs": "^1.15.2",
|
|
79
79
|
"stylelint": "16.3.1",
|
|
80
80
|
"stylelint-config-recommended-vue": "^1.5.0",
|
|
81
81
|
"stylelint-config-standard-scss": "^13.1.0",
|
|
82
|
-
"typescript": "5.
|
|
82
|
+
"typescript": "5.3.3",
|
|
83
83
|
"uuid": "^9.0.1",
|
|
84
84
|
"vite": "5.2.8",
|
|
85
85
|
"vite-plugin-dts": "^3.8.1",
|
|
86
86
|
"vite-plugin-vuetify": "^2.0.3",
|
|
87
87
|
"vitepress": "1.0.2",
|
|
88
88
|
"vue": "3.4.21",
|
|
89
|
-
"vue-i18n": "9.
|
|
89
|
+
"vue-i18n": "9.11.0",
|
|
90
90
|
"vue-router": "4.3.0",
|
|
91
|
-
"vue-tsc": "2.0.
|
|
91
|
+
"vue-tsc": "2.0.10",
|
|
92
92
|
"vuetify": "3.5.14",
|
|
93
93
|
"webfontloader": "^1.6.28"
|
|
94
94
|
},
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"pinia": "2.1.7",
|
|
103
103
|
"socket.io-client": "4.7.5",
|
|
104
104
|
"vue": "3.4.21",
|
|
105
|
-
"vue-i18n": "9.
|
|
105
|
+
"vue-i18n": "9.11.0",
|
|
106
106
|
"vue-router": "4.3.0",
|
|
107
107
|
"vuetify": "3.5.14"
|
|
108
108
|
},
|