@anzusystems/common-admin 1.47.0-alpha41 → 1.47.0-alpha42

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: T[], value: T) => void;
5028
+ export declare const arrayItemToggle: <T>(array: 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: TItem[];
5453
+ selectedItems: Array<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: TItem[]): void;
5479
+ (e: 'onConfirm', data: Array<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: TItem[];
5497
+ selectedItems: Array<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: TItem[]): void;
5526
+ (e: 'onConfirm', data: Array<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: TItem[];
5545
+ selectedItems: Array<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: TItem[]): void;
5574
+ (e: 'onConfirm', data: Array<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-alpha41",
16
+ "version": "1.47.0-alpha42",
17
17
  "type": "module",
18
18
  "license": "Apache-2.0",
19
19
  "scripts": {
@@ -42,15 +42,15 @@
42
42
  "@intlify/unplugin-vue-i18n": "^4.0.0",
43
43
  "@kyvg/vue3-notification": "^3.2.1",
44
44
  "@mdi/font": "^7.4.47",
45
- "@rushstack/eslint-patch": "^1.9.0",
46
- "@shikijs/vitepress-twoslash": "^1.2.1",
45
+ "@rushstack/eslint-patch": "^1.10.1",
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.11.30",
49
+ "@types/node": "^20.12.3",
50
50
  "@types/rusha": "^0.8.3",
51
51
  "@types/sortablejs": "^1.15.8",
52
52
  "@types/webfontloader": "^1.6.38",
53
- "@typescript-eslint/parser": "^7.4.0",
53
+ "@typescript-eslint/parser": "^7.5.0",
54
54
  "@vitejs/plugin-vue": "^5.0.4",
55
55
  "@vue/eslint-config-prettier": "^9.0.0",
56
56
  "@vue/eslint-config-typescript": "^13.0.0",
@@ -78,18 +78,18 @@
78
78
  "sortablejs": "^1.15.2",
79
79
  "stylelint": "16.3.1",
80
80
  "stylelint-config-recommended-vue": "^1.5.0",
81
- "stylelint-config-standard-scss": "^13.0.0",
82
- "typescript": "5.3.3",
81
+ "stylelint-config-standard-scss": "^13.1.0",
82
+ "typescript": "5.4.3",
83
83
  "uuid": "^9.0.1",
84
- "vite": "5.2.6",
84
+ "vite": "5.2.8",
85
85
  "vite-plugin-dts": "^3.8.1",
86
86
  "vite-plugin-vuetify": "^2.0.3",
87
- "vitepress": "1.0.1",
87
+ "vitepress": "1.0.2",
88
88
  "vue": "3.4.21",
89
89
  "vue-i18n": "9.10.2",
90
90
  "vue-router": "4.3.0",
91
91
  "vue-tsc": "2.0.7",
92
- "vuetify": "3.5.13",
92
+ "vuetify": "3.5.14",
93
93
  "webfontloader": "^1.6.28"
94
94
  },
95
95
  "peerDependencies": {
@@ -104,7 +104,7 @@
104
104
  "vue": "3.4.21",
105
105
  "vue-i18n": "9.10.2",
106
106
  "vue-router": "4.3.0",
107
- "vuetify": "3.5.12"
107
+ "vuetify": "3.5.14"
108
108
  },
109
109
  "peerDependenciesMeta": {
110
110
  "@vueuse/core": {