ablok-components 0.2.14 → 0.2.16

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.
@@ -29,7 +29,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
29
29
  fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
30
30
  readonly [Symbol.species]: ArrayConstructor;
31
31
  };
32
- default: () => never[];
32
+ default: () => string[];
33
33
  };
34
34
  config: {
35
35
  type: ObjectConstructor;
@@ -54,6 +54,8 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
54
54
  }>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
55
55
  "update:modelValue": (...args: any[]) => void;
56
56
  "update:isDragging": (...args: any[]) => void;
57
+ "update:dragIndex": (...args: any[]) => void;
58
+ "update:dragOverIndex": (...args: any[]) => void;
57
59
  }, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
58
60
  modelValue: {
59
61
  type: {
@@ -72,7 +74,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
72
74
  fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
73
75
  readonly [Symbol.species]: ArrayConstructor;
74
76
  };
75
- default: () => never[];
77
+ default: () => string[];
76
78
  };
77
79
  config: {
78
80
  type: ObjectConstructor;
@@ -97,6 +99,8 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
97
99
  }>> & Readonly<{
98
100
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
99
101
  "onUpdate:isDragging"?: ((...args: any[]) => any) | undefined;
102
+ "onUpdate:dragIndex"?: ((...args: any[]) => any) | undefined;
103
+ "onUpdate:dragOverIndex"?: ((...args: any[]) => any) | undefined;
100
104
  }>, {
101
105
  modelValue: any[];
102
106
  messages: Record<string, any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ablok-components",
3
3
  "private": false,
4
- "version": "0.2.14",
4
+ "version": "0.2.16",
5
5
  "scripts": {
6
6
  "dev": "vite --host",
7
7
  "build": "vue-tsc --noEmit && vite build",