@blueking/ediatable 0.0.1-beta.7 → 0.0.1-beta.8
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/README.md +563 -0
- package/package.json +5 -1
- package/typings/components/{date-time-picker.vue.d.ts → date-time-picker-column.vue.d.ts} +4 -2
- package/typings/components/fixed-column.vue.d.ts +6 -4
- package/typings/components/head-column.vue.d.ts +21 -11
- package/typings/components/{input.vue.d.ts → input-column.vue.d.ts} +6 -4
- package/typings/components/{tag-input.vue.d.ts → tag-input-column.vue.d.ts} +6 -4
- package/typings/vue2.d.ts +13 -6
- package/typings/vue3.d.ts +7 -6
- package/vue2/index.es.min.js +1515 -8814
- package/vue2/index.iife.min.js +5888 -13274
- package/vue2/index.umd.min.js +1600 -8973
- package/vue2/vue2.css +44 -118
- package/vue3/index.es.min.js +269 -236
- package/vue3/index.iife.min.js +1586 -8974
- package/vue3/index.umd.min.js +309 -276
- package/vue3/vue3.css +41 -41
- package/typings/ediatable.vue.d.ts +0 -20
- package/typings/components/{operation.vue.d.ts → operation-column.vue.d.ts} +5 -5
- /package/typings/components/{select.vue.d.ts → select-column.vue.d.ts} +0 -0
|
@@ -9,7 +9,10 @@ declare let __VLS_typeProps: Props;
|
|
|
9
9
|
type __VLS_PublicProps = {
|
|
10
10
|
modelValue?: string[];
|
|
11
11
|
} & typeof __VLS_typeProps;
|
|
12
|
-
declare
|
|
12
|
+
declare function __VLS_template(): {
|
|
13
|
+
tip?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
13
16
|
placeholder: string;
|
|
14
17
|
single: boolean;
|
|
15
18
|
rules: undefined;
|
|
@@ -32,9 +35,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
32
35
|
rules: Rules;
|
|
33
36
|
single: boolean;
|
|
34
37
|
showTip: boolean;
|
|
35
|
-
}, {}
|
|
36
|
-
|
|
37
|
-
}>;
|
|
38
|
+
}, {}>;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
38
40
|
export default _default;
|
|
39
41
|
type __VLS_WithDefaults<P, D> = {
|
|
40
42
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
package/typings/vue2.d.ts
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
|
-
import DateTimePickerColumn from './components/date-time-picker.vue';
|
|
2
|
-
import InputColumn from './components/input.vue';
|
|
1
|
+
import DateTimePickerColumn from './components/date-time-picker-column.vue';
|
|
2
|
+
import InputColumn from './components/input-column.vue';
|
|
3
3
|
import FixedColumn from './components/fixed-column.vue';
|
|
4
4
|
import HeadColumn from './components/head-column.vue';
|
|
5
|
-
import OperationColumn from './components/operation.vue';
|
|
6
|
-
import SelectColumn from './components/select.vue';
|
|
7
|
-
import TagInputColumn from './components/tag-input.vue';
|
|
8
|
-
import TextPlainColumn from './components/text-plain.vue';
|
|
5
|
+
import OperationColumn from './components/operation-column.vue';
|
|
6
|
+
import SelectColumn from './components/select-column.vue';
|
|
7
|
+
import TagInputColumn from './components/tag-input-column.vue';
|
|
8
|
+
import TextPlainColumn from './components/text-plain-column.vue';
|
|
9
|
+
export { type IHead } from './ediatable.vue';
|
|
9
10
|
export * from './hooks/useValidtor';
|
|
10
11
|
export { DateTimePickerColumn, InputColumn, FixedColumn, HeadColumn, OperationColumn, SelectColumn, TagInputColumn, TextPlainColumn, };
|
|
11
12
|
declare const _default: {
|
|
12
13
|
name: string;
|
|
14
|
+
props: {
|
|
15
|
+
theadList: {
|
|
16
|
+
type: ArrayConstructor;
|
|
17
|
+
default: never[];
|
|
18
|
+
};
|
|
19
|
+
};
|
|
13
20
|
created(): void;
|
|
14
21
|
mounted(): void;
|
|
15
22
|
beforeDestroy(): void;
|
package/typings/vue3.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import Ediatable from './ediatable.vue';
|
|
2
|
-
import DateTimePickerColumn from './components/date-time-picker.vue';
|
|
3
|
-
import InputColumn from './components/input.vue';
|
|
2
|
+
import DateTimePickerColumn from './components/date-time-picker-column.vue';
|
|
3
|
+
import InputColumn from './components/input-column.vue';
|
|
4
4
|
import FixedColumn from './components/fixed-column.vue';
|
|
5
5
|
import HeadColumn from './components/head-column.vue';
|
|
6
|
-
import OperationColumn from './components/operation.vue';
|
|
7
|
-
import SelectColumn from './components/select.vue';
|
|
8
|
-
import TagInputColumn from './components/tag-input.vue';
|
|
9
|
-
import TextPlainColumn from './components/text-plain.vue';
|
|
6
|
+
import OperationColumn from './components/operation-column.vue';
|
|
7
|
+
import SelectColumn from './components/select-column.vue';
|
|
8
|
+
import TagInputColumn from './components/tag-input-column.vue';
|
|
9
|
+
import TextPlainColumn from './components/text-plain-column.vue';
|
|
10
|
+
export { type IHead } from './ediatable.vue';
|
|
10
11
|
export * from './hooks/useValidtor';
|
|
11
12
|
export { Ediatable, DateTimePickerColumn, InputColumn, FixedColumn, HeadColumn, OperationColumn, SelectColumn, TagInputColumn, TextPlainColumn, };
|
|
12
13
|
export default Ediatable;
|