bm-admin-ui 1.0.84-alpha → 1.0.86-alpha

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.
Files changed (42) hide show
  1. package/es/components/float-table/index.js +62 -54
  2. package/es/components/form-create/index.js +70 -10
  3. package/es/components/index.d.ts +0 -1
  4. package/es/components/shops-filter/index.js +33 -5
  5. package/es/components/staffs-selector/index.d.ts +8 -8
  6. package/es/components/staffs-selector/index.js +2 -2
  7. package/es/components/staffs-selector/src/departmentCmp.vue.d.ts +3 -3
  8. package/es/components/staffs-selector/src/multipleCmp.vue.d.ts +3 -3
  9. package/es/components/staffs-selector/src/radioCmp.vue.d.ts +2 -2
  10. package/es/components/staffs-selector/src/staffs-selector.vue.d.ts +8 -8
  11. package/es/components/staffs-selector/src/variedCmp.vue.d.ts +3 -3
  12. package/lib/components/float-table/index.js +62 -54
  13. package/lib/components/form-create/index.js +68 -8
  14. package/lib/components/index.d.ts +0 -1
  15. package/lib/components/shops-filter/index.js +33 -5
  16. package/lib/components/staffs-selector/index.d.ts +8 -8
  17. package/lib/components/staffs-selector/index.js +2 -2
  18. package/lib/components/staffs-selector/src/departmentCmp.vue.d.ts +3 -3
  19. package/lib/components/staffs-selector/src/multipleCmp.vue.d.ts +3 -3
  20. package/lib/components/staffs-selector/src/radioCmp.vue.d.ts +2 -2
  21. package/lib/components/staffs-selector/src/staffs-selector.vue.d.ts +8 -8
  22. package/lib/components/staffs-selector/src/variedCmp.vue.d.ts +3 -3
  23. package/package.json +1 -1
  24. package/theme-chalk/form-create.css +1 -1
  25. package/theme-chalk/index.css +1 -1
  26. package/theme-chalk/shops-filter.css +1 -1
  27. package/types/components/index.d.ts +0 -1
  28. package/types/components/staffs-selector/index.d.ts +8 -8
  29. package/types/components/staffs-selector/src/departmentCmp.vue.d.ts +3 -3
  30. package/types/components/staffs-selector/src/multipleCmp.vue.d.ts +3 -3
  31. package/types/components/staffs-selector/src/radioCmp.vue.d.ts +2 -2
  32. package/types/components/staffs-selector/src/staffs-selector.vue.d.ts +8 -8
  33. package/types/components/staffs-selector/src/variedCmp.vue.d.ts +3 -3
  34. package/es/components/shops-filter/index.d.ts +0 -99
  35. package/es/components/shops-filter/src/shops-filter.d.ts +0 -25
  36. package/es/components/shops-filter/src/shops-filter.vue.d.ts +0 -98
  37. package/lib/components/shops-filter/index.d.ts +0 -99
  38. package/lib/components/shops-filter/src/shops-filter.d.ts +0 -25
  39. package/lib/components/shops-filter/src/shops-filter.vue.d.ts +0 -98
  40. package/types/components/shops-filter/index.d.ts +0 -99
  41. package/types/components/shops-filter/src/shops-filter.d.ts +0 -25
  42. package/types/components/shops-filter/src/shops-filter.vue.d.ts +0 -98
@@ -1,98 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- labelTitle: {
3
- type: StringConstructor;
4
- default: string;
5
- };
6
- showAlways: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- displayParams: {
11
- type: ObjectConstructor;
12
- default: () => {
13
- width: string;
14
- labelOffset: string;
15
- labelWidth: string;
16
- searchWidth: string;
17
- listMaxHeight: string;
18
- };
19
- };
20
- loadFilter: {
21
- type: FunctionConstructor;
22
- default: () => Promise<never[]>;
23
- };
24
- loadData: {
25
- type: FunctionConstructor;
26
- default: () => Promise<never>;
27
- };
28
- }, {
29
- triggleActive(): void;
30
- outSideClick(): void;
31
- changeFilterSelect(index: any, code: any): void;
32
- onCheckAllChange(e: any): void;
33
- checkboxChange(): void;
34
- invertChange(): void;
35
- clearAll(): void;
36
- fetchData(): void;
37
- clearAllSelected(e: any): void;
38
- filterIsActive(filterIndex: any, code: any): boolean;
39
- isActive: import("vue").Ref<boolean>;
40
- searchVal: import("vue").Ref<string>;
41
- selected: import("vue").Ref<any[]>;
42
- shopList: import("vue").Ref<{
43
- shopCode: string;
44
- shopName: string;
45
- }[]>;
46
- shopListByCode: import("vue").Ref<{}>;
47
- checkAll: import("vue").Ref<boolean>;
48
- hasCheck: import("vue").Ref<boolean>;
49
- inverSelect: import("vue").Ref<boolean>;
50
- shopCheck: import("vue").Ref<{}>;
51
- filterSelects: import("vue").Ref<never[]>;
52
- filterArr: import("vue").Ref<{
53
- list: {
54
- code: string;
55
- label: string;
56
- }[];
57
- paramsStr: string;
58
- label?: string | undefined;
59
- multiple?: boolean | undefined;
60
- }[]>;
61
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:selected")[], "change" | "update:selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
62
- labelTitle: {
63
- type: StringConstructor;
64
- default: string;
65
- };
66
- showAlways: {
67
- type: BooleanConstructor;
68
- default: boolean;
69
- };
70
- displayParams: {
71
- type: ObjectConstructor;
72
- default: () => {
73
- width: string;
74
- labelOffset: string;
75
- labelWidth: string;
76
- searchWidth: string;
77
- listMaxHeight: string;
78
- };
79
- };
80
- loadFilter: {
81
- type: FunctionConstructor;
82
- default: () => Promise<never[]>;
83
- };
84
- loadData: {
85
- type: FunctionConstructor;
86
- default: () => Promise<never>;
87
- };
88
- }>> & {
89
- onChange?: ((...args: any[]) => any) | undefined;
90
- "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
91
- }, {
92
- loadData: Function;
93
- labelTitle: string;
94
- showAlways: boolean;
95
- displayParams: Record<string, any>;
96
- loadFilter: Function;
97
- }>;
98
- export default _default;
@@ -1,99 +0,0 @@
1
- declare const BmShopsFilter: import("bm-admin-ui/es/utils/with-install").SFCWithInstall<import("vue").DefineComponent<{
2
- labelTitle: {
3
- type: StringConstructor;
4
- default: string;
5
- };
6
- showAlways: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- displayParams: {
11
- type: ObjectConstructor;
12
- default: () => {
13
- width: string;
14
- labelOffset: string;
15
- labelWidth: string;
16
- searchWidth: string;
17
- listMaxHeight: string;
18
- };
19
- };
20
- loadFilter: {
21
- type: FunctionConstructor;
22
- default: () => Promise<never[]>;
23
- };
24
- loadData: {
25
- type: FunctionConstructor;
26
- default: () => Promise<never>;
27
- };
28
- }, {
29
- triggleActive(): void;
30
- outSideClick(): void;
31
- changeFilterSelect(index: any, code: any): void;
32
- onCheckAllChange(e: any): void;
33
- checkboxChange(): void;
34
- invertChange(): void;
35
- clearAll(): void;
36
- fetchData(): void;
37
- clearAllSelected(e: any): void;
38
- filterIsActive(filterIndex: any, code: any): boolean;
39
- isActive: import("vue").Ref<boolean>;
40
- searchVal: import("vue").Ref<string>;
41
- selected: import("vue").Ref<any[]>;
42
- shopList: import("vue").Ref<{
43
- shopCode: string;
44
- shopName: string;
45
- }[]>;
46
- shopListByCode: import("vue").Ref<{}>;
47
- checkAll: import("vue").Ref<boolean>;
48
- hasCheck: import("vue").Ref<boolean>;
49
- inverSelect: import("vue").Ref<boolean>;
50
- shopCheck: import("vue").Ref<{}>;
51
- filterSelects: import("vue").Ref<never[]>;
52
- filterArr: import("vue").Ref<{
53
- list: {
54
- code: string;
55
- label: string;
56
- }[];
57
- paramsStr: string;
58
- label?: string | undefined;
59
- multiple?: boolean | undefined;
60
- }[]>;
61
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:selected")[], "change" | "update:selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
62
- labelTitle: {
63
- type: StringConstructor;
64
- default: string;
65
- };
66
- showAlways: {
67
- type: BooleanConstructor;
68
- default: boolean;
69
- };
70
- displayParams: {
71
- type: ObjectConstructor;
72
- default: () => {
73
- width: string;
74
- labelOffset: string;
75
- labelWidth: string;
76
- searchWidth: string;
77
- listMaxHeight: string;
78
- };
79
- };
80
- loadFilter: {
81
- type: FunctionConstructor;
82
- default: () => Promise<never[]>;
83
- };
84
- loadData: {
85
- type: FunctionConstructor;
86
- default: () => Promise<never>;
87
- };
88
- }>> & {
89
- onChange?: ((...args: any[]) => any) | undefined;
90
- "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
91
- }, {
92
- loadData: Function;
93
- labelTitle: string;
94
- showAlways: boolean;
95
- displayParams: Record<string, any>;
96
- loadFilter: Function;
97
- }>>;
98
- export { BmShopsFilter };
99
- export default BmShopsFilter;
@@ -1,25 +0,0 @@
1
- import type { ExtractPropTypes } from 'vue';
2
- export declare const shopsFilterProps: {
3
- labelTitle: {
4
- type: StringConstructor;
5
- default: string;
6
- };
7
- showAlways: {
8
- type: BooleanConstructor;
9
- default: boolean;
10
- };
11
- displayParams: {
12
- type: ObjectConstructor;
13
- default: () => {
14
- width: string;
15
- labelOffset: string;
16
- labelWidth: string;
17
- searchWidth: string;
18
- };
19
- };
20
- filterArr: {
21
- type: PromiseConstructor;
22
- default: () => never[];
23
- };
24
- };
25
- export declare type ShopsFilterProps = ExtractPropTypes<typeof shopsFilterProps>;
@@ -1,98 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- labelTitle: {
3
- type: StringConstructor;
4
- default: string;
5
- };
6
- showAlways: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- displayParams: {
11
- type: ObjectConstructor;
12
- default: () => {
13
- width: string;
14
- labelOffset: string;
15
- labelWidth: string;
16
- searchWidth: string;
17
- listMaxHeight: string;
18
- };
19
- };
20
- loadFilter: {
21
- type: FunctionConstructor;
22
- default: () => Promise<never[]>;
23
- };
24
- loadData: {
25
- type: FunctionConstructor;
26
- default: () => Promise<never>;
27
- };
28
- }, {
29
- triggleActive(): void;
30
- outSideClick(): void;
31
- changeFilterSelect(index: any, code: any): void;
32
- onCheckAllChange(e: any): void;
33
- checkboxChange(): void;
34
- invertChange(): void;
35
- clearAll(): void;
36
- fetchData(): void;
37
- clearAllSelected(e: any): void;
38
- filterIsActive(filterIndex: any, code: any): boolean;
39
- isActive: import("vue").Ref<boolean>;
40
- searchVal: import("vue").Ref<string>;
41
- selected: import("vue").Ref<any[]>;
42
- shopList: import("vue").Ref<{
43
- shopCode: string;
44
- shopName: string;
45
- }[]>;
46
- shopListByCode: import("vue").Ref<{}>;
47
- checkAll: import("vue").Ref<boolean>;
48
- hasCheck: import("vue").Ref<boolean>;
49
- inverSelect: import("vue").Ref<boolean>;
50
- shopCheck: import("vue").Ref<{}>;
51
- filterSelects: import("vue").Ref<never[]>;
52
- filterArr: import("vue").Ref<{
53
- list: {
54
- code: string;
55
- label: string;
56
- }[];
57
- paramsStr: string;
58
- label?: string | undefined;
59
- multiple?: boolean | undefined;
60
- }[]>;
61
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:selected")[], "change" | "update:selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
62
- labelTitle: {
63
- type: StringConstructor;
64
- default: string;
65
- };
66
- showAlways: {
67
- type: BooleanConstructor;
68
- default: boolean;
69
- };
70
- displayParams: {
71
- type: ObjectConstructor;
72
- default: () => {
73
- width: string;
74
- labelOffset: string;
75
- labelWidth: string;
76
- searchWidth: string;
77
- listMaxHeight: string;
78
- };
79
- };
80
- loadFilter: {
81
- type: FunctionConstructor;
82
- default: () => Promise<never[]>;
83
- };
84
- loadData: {
85
- type: FunctionConstructor;
86
- default: () => Promise<never>;
87
- };
88
- }>> & {
89
- onChange?: ((...args: any[]) => any) | undefined;
90
- "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
91
- }, {
92
- loadData: Function;
93
- labelTitle: string;
94
- showAlways: boolean;
95
- displayParams: Record<string, any>;
96
- loadFilter: Function;
97
- }>;
98
- export default _default;