cosey 0.9.1 → 0.9.2
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.
|
@@ -2,11 +2,11 @@ export * from './table-action.api';
|
|
|
2
2
|
declare const _TableAction: {
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
4
|
actions: {
|
|
5
|
-
type: import("vue").PropType<(import("./item.api").TableActionItemProps | null | undefined)[] | (import("./item.api").TableActionItemProps | null | undefined)[][]>;
|
|
5
|
+
type: import("vue").PropType<(boolean | import("./item.api").TableActionItemProps | null | undefined)[] | (boolean | import("./item.api").TableActionItemProps | null | undefined)[][]>;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
8
|
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
9
|
-
actions: (import("./item.api").TableActionItemProps | null | undefined)[] | (import("./item.api").TableActionItemProps | null | undefined)[][];
|
|
9
|
+
actions: (boolean | import("./item.api").TableActionItemProps | null | undefined)[] | (boolean | import("./item.api").TableActionItemProps | null | undefined)[][];
|
|
10
10
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
11
11
|
P: {};
|
|
12
12
|
B: {};
|
|
@@ -16,22 +16,22 @@ declare const _TableAction: {
|
|
|
16
16
|
Defaults: {};
|
|
17
17
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
actions: {
|
|
19
|
-
type: import("vue").PropType<(import("./item.api").TableActionItemProps | null | undefined)[] | (import("./item.api").TableActionItemProps | null | undefined)[][]>;
|
|
19
|
+
type: import("vue").PropType<(boolean | import("./item.api").TableActionItemProps | null | undefined)[] | (boolean | import("./item.api").TableActionItemProps | null | undefined)[][]>;
|
|
20
20
|
default: () => never[];
|
|
21
21
|
};
|
|
22
22
|
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
|
|
23
|
-
actions: (import("./item.api").TableActionItemProps | null | undefined)[] | (import("./item.api").TableActionItemProps | null | undefined)[][];
|
|
23
|
+
actions: (boolean | import("./item.api").TableActionItemProps | null | undefined)[] | (boolean | import("./item.api").TableActionItemProps | null | undefined)[][];
|
|
24
24
|
}>;
|
|
25
25
|
__isFragment?: never;
|
|
26
26
|
__isTeleport?: never;
|
|
27
27
|
__isSuspense?: never;
|
|
28
28
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
29
29
|
actions: {
|
|
30
|
-
type: import("vue").PropType<(import("./item.api").TableActionItemProps | null | undefined)[] | (import("./item.api").TableActionItemProps | null | undefined)[][]>;
|
|
30
|
+
type: import("vue").PropType<(boolean | import("./item.api").TableActionItemProps | null | undefined)[] | (boolean | import("./item.api").TableActionItemProps | null | undefined)[][]>;
|
|
31
31
|
default: () => never[];
|
|
32
32
|
};
|
|
33
33
|
}>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
34
|
-
actions: (import("./item.api").TableActionItemProps | null | undefined)[] | (import("./item.api").TableActionItemProps | null | undefined)[][];
|
|
34
|
+
actions: (boolean | import("./item.api").TableActionItemProps | null | undefined)[] | (boolean | import("./item.api").TableActionItemProps | null | undefined)[][];
|
|
35
35
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin;
|
|
36
36
|
export { _TableAction as TableAction };
|
|
37
37
|
export default _TableAction;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type ExtractPropTypes, type PropType } from 'vue';
|
|
2
2
|
import { type TableActionItemProps } from './item.api';
|
|
3
|
-
type TableActionItemAtom = TableActionItemProps | null | undefined;
|
|
3
|
+
type TableActionItemAtom = TableActionItemProps | null | undefined | boolean;
|
|
4
4
|
export declare const tableActionProps: {
|
|
5
5
|
actions: {
|
|
6
6
|
type: PropType<TableActionItemAtom[] | TableActionItemAtom[][]>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { TableActionItemProps } from './item.api';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
actions: {
|
|
4
|
-
type: import("vue").PropType<(TableActionItemProps | null | undefined)[] | (TableActionItemProps | null | undefined)[][]>;
|
|
4
|
+
type: import("vue").PropType<(boolean | TableActionItemProps | null | undefined)[] | (boolean | TableActionItemProps | null | undefined)[][]>;
|
|
5
5
|
default: () => never[];
|
|
6
6
|
};
|
|
7
7
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
8
|
actions: {
|
|
9
|
-
type: import("vue").PropType<(TableActionItemProps | null | undefined)[] | (TableActionItemProps | null | undefined)[][]>;
|
|
9
|
+
type: import("vue").PropType<(boolean | TableActionItemProps | null | undefined)[] | (boolean | TableActionItemProps | null | undefined)[][]>;
|
|
10
10
|
default: () => never[];
|
|
11
11
|
};
|
|
12
12
|
}>> & Readonly<{}>, {
|
|
13
|
-
actions: (TableActionItemProps | null | undefined)[] | (TableActionItemProps | null | undefined)[][];
|
|
13
|
+
actions: (boolean | TableActionItemProps | null | undefined)[] | (boolean | TableActionItemProps | null | undefined)[][];
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
15
|
export default _default;
|
|
@@ -3,6 +3,7 @@ import { tableActionProps } from './table-action.api.js';
|
|
|
3
3
|
import stdin_default$2 from './item.js';
|
|
4
4
|
import stdin_default$1 from './table-action.style.js';
|
|
5
5
|
import { useComponentConfig } from '../config-provider/config-provider.api.js';
|
|
6
|
+
import { isObject } from '../../utils/is.js';
|
|
6
7
|
|
|
7
8
|
var stdin_default = defineComponent({
|
|
8
9
|
name: "CoTableAction",
|
|
@@ -25,7 +26,7 @@ var stdin_default = defineComponent({
|
|
|
25
26
|
return createVNode("div", {
|
|
26
27
|
"key": rowIndex,
|
|
27
28
|
"class": `${prefixCls.value}-row`
|
|
28
|
-
}, [actions.filter(
|
|
29
|
+
}, [actions.filter(isObject).map((action, actionIndex) => {
|
|
29
30
|
return createVNode(stdin_default$2, {
|
|
30
31
|
"key": actionIndex,
|
|
31
32
|
"props": action
|