@lx-frontend/wrap-element-ui 0.4.6-beta.2 → 1.0.0-beta.1

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 (74) hide show
  1. package/README.md +20 -29
  2. package/dist/AddMembers/index.vue.d.ts +31 -0
  3. package/dist/AuditSteps/index.vue.d.ts +46 -0
  4. package/dist/DemoComponent/index.vue.d.ts +2 -0
  5. package/dist/EditableTable/index.vue.d.ts +186 -0
  6. package/dist/EditableTable/types.d.ts +123 -0
  7. package/dist/EditableTable/useCellHover.d.ts +11 -0
  8. package/dist/EditableTable/useColumnHeaderOperation.d.ts +106 -0
  9. package/dist/EditableTable/useDefaultOperation.d.ts +22 -0
  10. package/dist/EditableTable/useDragSort.d.ts +15 -0
  11. package/dist/EditableTable/usePagination.d.ts +13 -0
  12. package/dist/EditableTable/useRowBgColor.d.ts +16 -0
  13. package/dist/EditableTable/useViewSetting.d.ts +58 -0
  14. package/dist/Ellipsis/MultilineEllipsis.vue.d.ts +91 -0
  15. package/dist/Ellipsis/index.vue.d.ts +89 -0
  16. package/dist/LxTable/index.vue.d.ts +2 -0
  17. package/dist/PopoverForm/index.vue.d.ts +50 -0
  18. package/dist/SearchForm/index.vue.d.ts +105 -0
  19. package/dist/SearchSelect/index.vue.d.ts +53 -0
  20. package/dist/index.css +1 -0
  21. package/dist/index.d.ts +11 -0
  22. package/dist/index.mjs +40808 -0
  23. package/dist/singleMessage/index.d.ts +4 -0
  24. package/package.json +60 -36
  25. package/{packages/AddMembers/src/AddMembers.vue → src/components/AddMembers/index.vue} +35 -13
  26. package/{packages/AuditSteps/src/AuditSteps.vue → src/components/AuditSteps/index.vue} +55 -0
  27. package/{packages/DemoComponent/src/DemoComponent.vue → src/components/DemoComponent/index.vue} +11 -0
  28. package/src/components/EditableTable/README.md +147 -0
  29. package/src/components/EditableTable/index.less +716 -0
  30. package/src/components/EditableTable/index.vue +842 -0
  31. package/src/components/EditableTable/pin-top.png +0 -0
  32. package/src/components/EditableTable/types.ts +94 -0
  33. package/src/components/EditableTable/useCellHover.ts +72 -0
  34. package/src/components/EditableTable/useColumnHeaderOperation.ts +188 -0
  35. package/src/components/EditableTable/useDefaultOperation.ts +96 -0
  36. package/src/components/EditableTable/useDragSort.ts +292 -0
  37. package/src/components/EditableTable/usePagination.ts +34 -0
  38. package/src/components/EditableTable/useRowBgColor.ts +51 -0
  39. package/src/components/EditableTable/useViewSetting.ts +67 -0
  40. package/{packages/Ellipsis/src → src/components/Ellipsis}/MultilineEllipsis.vue +1 -1
  41. package/{packages/Ellipsis/src/Ellipsis.vue → src/components/Ellipsis/index.vue} +5 -5
  42. package/src/components/LxTable/index.vue +296 -0
  43. package/{packages/SearchForm/src/SearchForm.vue → src/components/SearchForm/index.vue} +47 -21
  44. package/{packages/SearchSelect/src/SearchSelect.vue → src/components/SearchSelect/index.vue} +7 -4
  45. package/src/components/index.ts +22 -0
  46. package/babel.config.js +0 -5
  47. package/global.d.ts +0 -23
  48. package/packages/AddMembers/index.js +0 -11
  49. package/packages/AuditSteps/index.js +0 -7
  50. package/packages/DemoComponent/index.js +0 -7
  51. package/packages/Ellipsis/index.js +0 -7
  52. package/packages/LxTable/index.js +0 -11
  53. package/packages/LxTable/src/LxTable.vue +0 -296
  54. package/packages/PopoverForm/index.js +0 -7
  55. package/packages/SearchForm/index.js +0 -7
  56. package/packages/SearchSelect/index.js +0 -7
  57. package/packages/index.js +0 -59
  58. package/packages/theme-default/gulpfile.js +0 -25
  59. package/packages/theme-default/lib/AuditSteps.css +0 -1
  60. package/packages/theme-default/lib/DemoComponent.css +0 -1
  61. package/packages/theme-default/lib/index.css +0 -1
  62. package/packages/theme-default/package.json +0 -23
  63. package/packages/theme-default/src/AuditSteps.scss +0 -52
  64. package/packages/theme-default/src/DemoComponent.scss +0 -9
  65. package/packages/theme-default/src/common/var.scss +0 -0
  66. package/packages/theme-default/src/fonts/.gitkeep +0 -0
  67. package/packages/theme-default/src/index.css +0 -11
  68. package/packages/theme-default/src/index.scss +0 -2
  69. package/packages/utils/.gitkeep +0 -0
  70. package/plugins/wrap.js +0 -22
  71. package/postcss.config.js +0 -5
  72. package/tsconfig.json +0 -41
  73. /package/{packages/PopoverForm/src/PopoverForm.vue → src/components/PopoverForm/index.vue} +0 -0
  74. /package/{packages → src/components}/singleMessage/index.ts +0 -0
@@ -0,0 +1,58 @@
1
+ import { ComputedRef, Ref } from 'vue';
2
+ import { IColumnConfig, IProps } from './types';
3
+
4
+ interface IViewSettingParams {
5
+ tableDomRef: any;
6
+ showingColumns: Ref<string[]>;
7
+ actualColumns: ComputedRef<IColumnConfig[]>;
8
+ props: IProps;
9
+ }
10
+ export default function useViewSetting({ tableDomRef, showingColumns, actualColumns, props }: IViewSettingParams): {
11
+ viewSettingDragSortOptions: Ref<({
12
+ [x: string]: any;
13
+ prop: string;
14
+ label: string;
15
+ editType?: import('./types').IEditType | undefined;
16
+ sortable?: boolean | undefined;
17
+ slotName?: string | undefined;
18
+ isAlwaysShow?: boolean | undefined;
19
+ isColumnSearchAble?: boolean | undefined;
20
+ summary?: boolean | undefined;
21
+ summaryMethod?: ((values: any[]) => string | number) | undefined;
22
+ } | {
23
+ [x: string]: any;
24
+ prop: string;
25
+ label: string;
26
+ editType?: import('./types').IEditType | undefined;
27
+ sortable?: boolean | undefined;
28
+ slotName?: string | undefined;
29
+ isAlwaysShow?: boolean | undefined;
30
+ isColumnSearchAble?: boolean | undefined;
31
+ summary?: boolean | undefined;
32
+ summaryMethod?: ((values: any[]) => string | number) | undefined;
33
+ inputType: string | number;
34
+ } | {
35
+ [x: string]: any;
36
+ prop: string;
37
+ label: string;
38
+ editType?: import('./types').IEditType | undefined;
39
+ sortable?: boolean | undefined;
40
+ slotName?: string | undefined;
41
+ isAlwaysShow?: boolean | undefined;
42
+ isColumnSearchAble?: boolean | undefined;
43
+ summary?: boolean | undefined;
44
+ summaryMethod?: ((values: any[]) => string | number) | undefined;
45
+ options: {
46
+ [x: string]: any;
47
+ key: string;
48
+ value: string | number;
49
+ }[];
50
+ })[]>;
51
+ columnsToBeShown: Ref<string[]>;
52
+ viewSettingVisible: Ref<boolean>;
53
+ leftFixedColumnCount: Ref<number>;
54
+ handleViewSettingShow: () => void;
55
+ handleViewSettingClose: () => void;
56
+ handleViewSettingConfirm: () => Promise<void>;
57
+ };
58
+ export {};
@@ -0,0 +1,91 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ fontSize: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ color: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ lineCount: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ content: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ isOverflow: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ iconName: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ overCountTip: {
27
+ type: ObjectConstructor;
28
+ };
29
+ showIconObj: {
30
+ type: ObjectConstructor;
31
+ default: () => {
32
+ isShowIcon: boolean;
33
+ length: number;
34
+ };
35
+ };
36
+ }, {}, {
37
+ restContent: string;
38
+ preContent: string;
39
+ lastLineHeight: number;
40
+ alignItems: string;
41
+ }, {
42
+ preHeight(): number;
43
+ lineHeight(): string;
44
+ }, {
45
+ bsearch(data: any, pre?: number): boolean;
46
+ isShowIconMethod(): any;
47
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
48
+ fontSize: {
49
+ type: NumberConstructor;
50
+ default: number;
51
+ };
52
+ color: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ lineCount: {
57
+ type: NumberConstructor;
58
+ default: number;
59
+ };
60
+ content: {
61
+ type: StringConstructor;
62
+ default: string;
63
+ };
64
+ isOverflow: {
65
+ type: BooleanConstructor;
66
+ default: boolean;
67
+ };
68
+ iconName: {
69
+ type: StringConstructor;
70
+ default: string;
71
+ };
72
+ overCountTip: {
73
+ type: ObjectConstructor;
74
+ };
75
+ showIconObj: {
76
+ type: ObjectConstructor;
77
+ default: () => {
78
+ isShowIcon: boolean;
79
+ length: number;
80
+ };
81
+ };
82
+ }>>, {
83
+ color: string;
84
+ fontSize: number;
85
+ lineCount: number;
86
+ content: string;
87
+ isOverflow: boolean;
88
+ iconName: string;
89
+ showIconObj: Record<string, any>;
90
+ }>;
91
+ export default _default;
@@ -0,0 +1,89 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ fontSize: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ color: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ lineCount: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ iconName: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ overCountTip: {
19
+ type: ObjectConstructor;
20
+ };
21
+ showIconObj: {
22
+ type: ObjectConstructor;
23
+ default: () => {
24
+ isShowIcon: boolean;
25
+ length: number;
26
+ };
27
+ };
28
+ content: {
29
+ type: (ArrayConstructor | StringConstructor)[];
30
+ default: string;
31
+ };
32
+ popoverName: StringConstructor;
33
+ showPopover: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ }, {}, {
38
+ overflowArr: never[];
39
+ }, {
40
+ contentArr(): any[];
41
+ isOverflow(): boolean;
42
+ }, {
43
+ getKey(item: any, index: any): string;
44
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
45
+ fontSize: {
46
+ type: NumberConstructor;
47
+ default: number;
48
+ };
49
+ color: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ lineCount: {
54
+ type: NumberConstructor;
55
+ default: number;
56
+ };
57
+ iconName: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ overCountTip: {
62
+ type: ObjectConstructor;
63
+ };
64
+ showIconObj: {
65
+ type: ObjectConstructor;
66
+ default: () => {
67
+ isShowIcon: boolean;
68
+ length: number;
69
+ };
70
+ };
71
+ content: {
72
+ type: (ArrayConstructor | StringConstructor)[];
73
+ default: string;
74
+ };
75
+ popoverName: StringConstructor;
76
+ showPopover: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ };
80
+ }>>, {
81
+ color: string;
82
+ fontSize: number;
83
+ lineCount: number;
84
+ content: string | unknown[];
85
+ iconName: string;
86
+ showIconObj: Record<string, any>;
87
+ showPopover: string;
88
+ }>;
89
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1,50 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ title: StringConstructor;
3
+ width: NumberConstructor;
4
+ placement: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ withSubmitBtn: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ isDisabled: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ okText: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ }, {}, {
21
+ show: boolean;
22
+ }, {}, {
23
+ handleClose(): void;
24
+ handleSubmit(): void;
25
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
26
+ title: StringConstructor;
27
+ width: NumberConstructor;
28
+ placement: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ withSubmitBtn: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ isDisabled: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ okText: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ }>>, {
45
+ withSubmitBtn: boolean;
46
+ placement: string;
47
+ isDisabled: boolean;
48
+ okText: string;
49
+ }>;
50
+ export default _default;
@@ -0,0 +1,105 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ isShowSearchBtn: {
3
+ default: boolean;
4
+ type: BooleanConstructor;
5
+ };
6
+ isInline: {
7
+ default: boolean;
8
+ type: BooleanConstructor;
9
+ };
10
+ config: {
11
+ required: true;
12
+ type: ArrayConstructor;
13
+ };
14
+ width: {
15
+ default: string;
16
+ type: StringConstructor;
17
+ };
18
+ formData: {
19
+ required: true;
20
+ };
21
+ showClear: {
22
+ default: boolean;
23
+ type: BooleanConstructor;
24
+ };
25
+ showLabel: {
26
+ default: boolean;
27
+ type: BooleanConstructor;
28
+ };
29
+ ownerClear: {
30
+ type: FunctionConstructor;
31
+ };
32
+ resetCheckedIds: {
33
+ type: BooleanConstructor;
34
+ };
35
+ searchText: {
36
+ default: string;
37
+ type: StringConstructor;
38
+ };
39
+ clearText: {
40
+ default: string;
41
+ type: StringConstructor;
42
+ };
43
+ }, {}, {
44
+ visible: boolean;
45
+ initialData: {};
46
+ checkedIds: {};
47
+ }, {}, {
48
+ handleInput(val: any, prop: any, inputLimitCallback: any, key: any): false | undefined;
49
+ handleSearch(): void;
50
+ handelIsEmpty(prop: any, value: any, key: any): void;
51
+ handleClearParams(): void;
52
+ handleFormClose(): void;
53
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
54
+ isShowSearchBtn: {
55
+ default: boolean;
56
+ type: BooleanConstructor;
57
+ };
58
+ isInline: {
59
+ default: boolean;
60
+ type: BooleanConstructor;
61
+ };
62
+ config: {
63
+ required: true;
64
+ type: ArrayConstructor;
65
+ };
66
+ width: {
67
+ default: string;
68
+ type: StringConstructor;
69
+ };
70
+ formData: {
71
+ required: true;
72
+ };
73
+ showClear: {
74
+ default: boolean;
75
+ type: BooleanConstructor;
76
+ };
77
+ showLabel: {
78
+ default: boolean;
79
+ type: BooleanConstructor;
80
+ };
81
+ ownerClear: {
82
+ type: FunctionConstructor;
83
+ };
84
+ resetCheckedIds: {
85
+ type: BooleanConstructor;
86
+ };
87
+ searchText: {
88
+ default: string;
89
+ type: StringConstructor;
90
+ };
91
+ clearText: {
92
+ default: string;
93
+ type: StringConstructor;
94
+ };
95
+ }>>, {
96
+ width: string;
97
+ resetCheckedIds: boolean;
98
+ isShowSearchBtn: boolean;
99
+ isInline: boolean;
100
+ showClear: boolean;
101
+ showLabel: boolean;
102
+ searchText: string;
103
+ clearText: string;
104
+ }>;
105
+ export default _default;
@@ -0,0 +1,53 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ value: {
3
+ default: string;
4
+ type: StringConstructor;
5
+ };
6
+ placeholder: {
7
+ default: string;
8
+ type: StringConstructor;
9
+ };
10
+ list: {
11
+ default: () => never[];
12
+ type: ArrayConstructor;
13
+ };
14
+ showList: {
15
+ default: () => never[];
16
+ type: ArrayConstructor;
17
+ };
18
+ }, {}, {
19
+ content: string;
20
+ visible: boolean;
21
+ currentId: number;
22
+ }, {}, {
23
+ handleFocus(): void;
24
+ handleInputChange(params: any): void;
25
+ navigateOptions(e: any, params: any): void;
26
+ selectOption(): void;
27
+ handleBlur(): void;
28
+ handleSelect(item: any): void;
29
+ getKey(item: any, index: any): string;
30
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
31
+ value: {
32
+ default: string;
33
+ type: StringConstructor;
34
+ };
35
+ placeholder: {
36
+ default: string;
37
+ type: StringConstructor;
38
+ };
39
+ list: {
40
+ default: () => never[];
41
+ type: ArrayConstructor;
42
+ };
43
+ showList: {
44
+ default: () => never[];
45
+ type: ArrayConstructor;
46
+ };
47
+ }>>, {
48
+ value: string;
49
+ placeholder: string;
50
+ list: unknown[];
51
+ showList: unknown[];
52
+ }>;
53
+ export default _default;
package/dist/index.css ADDED
@@ -0,0 +1 @@
1
+ .demo-component__input{width:30px;border-color:red}.audit-steps{width:612px}.audit-steps .el-step__head{display:none}.audit-steps__step-item{min-height:43px;max-height:43px;margin-bottom:35px}.audit-steps__step-item .el-select{width:400px}.audit-steps__step-item .el-icon-delete{margin-left:10px;font-size:16px;cursor:pointer}.audit-steps__step-order{cursor:default;margin-right:8px;position:relative;display:inline-block;text-align:center;width:20px;height:20px;border-radius:50%;border:1px solid #aaa;background:#aaa;color:#fff}.audit-steps__step-order:not(.first):before{position:absolute;content:"";display:block;width:1px;height:60px;background:#aaa;top:-60px;left:50%}.audit-steps__add{margin-top:-10px}.ellipsis{width:100%;margin:5px auto}.ellipsis__content{width:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.ellipsis__last-line{width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ellipsis-popover{width:100%}.popover-content{padding:18px 20px}.form-double-inline[data-v-d91c89f6]{display:-webkit-box;display:-ms-flexbox;display:flex}.form-double-inline .el-input[data-v-d91c89f6]{width:100%}.form-double-inline .el-input[data-v-d91c89f6]:not(:first-child){margin-left:4px}.form-double-inline .el-date-editor[data-v-d91c89f6]:not(:first-child){margin-left:4px}.table-content .el-pagination{text-align:right;padding:14px 0}.search-select{position:relative;width:100%}.search-select__input{width:100%}.select-down{width:100%;position:absolute;z-index:100;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px #0000001a;border-radius:4px;border:0 solid #d0d0d1;background-color:#fff;overflow:hidden;margin-top:10px}.select-down__item{height:30px;line-height:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 15px}.select-down__item--active{background-color:#eee}.select-down__box{text-align:center;overflow:hidden}.select-down__box:first-of-type{text-align:left}.wp100[data-v-7e47e332]{width:100%}.team-setting__technicians-popover{padding:20px;height:350px;overflow-y:auto}.team-setting__technicians-select{width:320px}.team-setting__empty-technicians-options{font-size:12px;color:#80838e;text-align:center;margin-top:10px}.team-setting__technicians-options{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.team-setting__technicians-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:30px}.team-setting__technicians-option-left{width:250px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#80838e}.team-setting__technicians-option-right{color:#1890ff}.team-setting__technicians-option-right--selected{color:#80838e}.editable-table__selected-color{position:absolute;left:0;top:0;right:0;bottom:0}.editable-table__color-title{text-align:center;width:28px;padding:0!important}.editable-table__color-icon{padding:0!important;margin-left:8px;width:8px;height:8px;border-radius:50%;position:relative;background-color:#fcae46;cursor:pointer;overflow:visible!important}.editable-table__color-icon:before{background-color:#fc6559;left:-10px;z-index:2}.editable-table__color-icon:after{background-color:#409eff;left:-5px;z-index:1}.editable-table__color-icon:before,.editable-table__color-icon:after{content:"";width:8px;height:8px;border-radius:50%;position:absolute;top:0}.editable-table__color-column,.editable-table__drag-cell{padding:0!important}.editable-table__color-column .cell,.editable-table__drag-cell .cell{padding:0!important;height:100%;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.editable-table__color-column .cell{padding:0!important;border:none!important}.editable-table__drag-line{border:none;border-top:1px solid #13161b;height:4px;width:15px}.editable-table__drag-line:last-child{height:1px}.editable-table__drag-icon{width:100%;height:100%;min-height:45px;cursor:-webkit-grab;cursor:grab;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.editable-table__sort-icon{position:relative;width:12px;height:12px;border:1px solid #7b7b7b;padding:0!important;margin-left:4px;border-radius:50%}.editable-table__sort-icon:after{position:absolute;top:50%;left:50%;content:"";width:3px;height:3px;border-bottom:1px solid;border-left:1px solid;border-color:#7b7b7b;-webkit-transform:translate(-50%,-55%) rotate(-45deg);transform:translate(-50%,-55%) rotate(-45deg)}.editable-table__sort-icon--active{border:1px solid #2468f2}.editable-table__sort-icon--active:after{border-color:#2468f2}.editable-table__sort-reference{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.editable-table__sort-reference:hover{cursor:pointer}.editable-table__sort-reference--active{color:#2468f2}.editable-table__sort-filter{padding:0!important}.editable-table__pin-top{width:24px;height:24px;color:#fff;background-color:#969ca4}.editable-table .el-table td,.editable-table .el-table th.is-leaf{border-bottom:1px solid #dfe3ec}.editable-table .el-table__expanded-cell{background-color:#fafafa}.editable-table .el-table tr td{min-height:45px;border-top:none;border-left:none;border-right:none}.editable-table thead tr th{background-color:#f3f4f8!important;border-right:none!important}.editable-table thead tr th .cell{color:#13161b}.editable-table thead tr th:not(:last-child) .cell{border-right:2px #e4e8ef solid}.view-setting__btn-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.view-setting__btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:400;font-size:14px;color:#2468f2;margin-bottom:17px;margin-right:20px}.view-setting__btn-text{margin-left:4px}.view-setting__dialog{padding:0}.view-setting__dialog .el-dialog__body{max-height:800px}.view-setting__dialog .el-dialog__body{padding:0}.view-setting__dialog .el-button--primary{background-color:#2468f2!important;border-color:#2468f2!important}.view-setting__dialog .el-checkbox.is-checked:not(.is-disabled) .el-checkbox__input .el-checkbox__inner{background-color:#2468f2!important;border-color:#2468f2!important}.view-setting__dialog .el-checkbox.is-checked:not(.is-disabled) .el-checkbox__label{color:#2468f2!important}.view-setting__dialog .el-button{border-radius:2px}.view-setting__content{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:500px}.view-setting__content-left{min-width:417px;width:417px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.view-setting__content-left-item{width:130px;margin-bottom:15px}.view-setting__content-right{border-left:1px solid #d9d9d9;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.view-setting__content-right-title,.view-setting__content-left-title{border-bottom:1px solid #d9d9d9;width:100%;height:46px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:20px}.view-setting__selected-count{margin-left:20px}.view-setting__checkbox-wrapper{padding-left:37px;padding-top:24px}.view-setting__content-right{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.view-setting__content-right-frize{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px;border-bottom:1px solid #d9d9d9;padding-left:20px}.view-setting__content-right-input{width:140px;margin:0 4px}.view-setting__content-right-input .el-input__inner{height:28px;line-height:28px}.view-setting__content-right-selected{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;width:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-left:18px;padding-top:17px;padding-right:23px}.view-setting__selected-item-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.view-setting__icon-wrapper{width:14px;height:14px;line-height:14px;padding:2px 4px;margin-right:10px;cursor:-webkit-grab;cursor:grab;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.view-setting__selected-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:30px;height:30px;width:100%}.view-setting__selected-item-close{cursor:pointer}.view-setting__selected-item-close--disabled{cursor:not-allowed;color:#989ea9}.color-popover{min-width:102px;width:102px;padding:0}.color-popover .popper__arrow:after{left:0!important}.color-list{color:#fff;width:102px;border-radius:5px;overflow:hidden}.color-list__item{display:inline-block;width:100%;height:27px;line-height:27px;padding-left:6px}.sort-filter{width:258px;padding:0}.sort-filter__column-title{font-size:14px;font-weight:600;height:40px;line-height:40px;text-align:center;border-bottom:1px solid #d6dbe3}.sort-filter__filter,.sort-filter__sort,.sort-filter__search{padding:14px}.sort-filter__filter{padding-top:0}.sort-filter__filter-title,.sort-filter__sort-title,.sort-filter__search-title{font-weight:600;font-size:14px;color:#1f1f1f;margin-bottom:10px}.sort-filter__search-input .el-input__inner{height:32px}.sort-filter__filter-title{border-top:1px solid #f3f3f3;padding-top:14px}.sort-filter__sort-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sort-filter__sort-btns .el-button{border:none}.sort-filter__sort-btn{width:112px;height:28px;padding:4px 42px;display:inline-block;background-color:#f4f4f4;color:#4a4a4a}.sort-filter__sort-btn:hover{background-color:#fafafa}.sort-filter__sort-btn--active{color:#2468f2;border-color:#eef3ff;background:#f4f7fe}.sort-filter__sort-btn--active:hover{background-color:#f4f7fe}.sort-filter__filter-checkbox-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sort-filter__filter-checkbox{margin-top:10px;font-size:14px}.sort-filter__filter-checkbox:first-child{margin-top:0}.sort-filter__footer{display:-webkit-box;display:-ms-flexbox;display:flex;height:47px;border-top:1px solid #d6dbe3;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 15px}.sort-filter__reset-btn,.sort-filter__confirm-btn{width:50px;height:28px;margin-left:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:2px;font-size:14px;font-weight:400}.sort-filter__confirm-btn{background-color:#2468f2;border-color:#2468f2}.btn-pointer{cursor:pointer}.operation-popover{min-width:120px;padding:0}.operation-popover__operation{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.operation-popover__operation-reference{display:inline-block}.operation-popover__operation-reference--active{color:#2468f2}.operation-popover__operation-reference .el-button{background:transparent;border:none;padding:0;font-weight:400;color:#13161b;font-size:14px}.operation-popover__operation-reference .el-button:focus{color:#2468f2}.operation-popover__operation-item{height:40px;line-height:40px;width:100%;text-align:center;color:#1f1f1f;cursor:pointer}.operation-popover__operation-item:hover{background:#f4f7fe}.operation-popover__save-cancel{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2468f2}.operation-popover__btn{cursor:pointer}.operation-popover__btn:first-child{margin-right:15px}.operation-popover__operation-btn--active{color:#2468f2!important}.pagination-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:12px}.pagination-wrap .el-pagination .el-pager li.number{background-color:#fff;border:1px solid #d6dbe3;font-weight:400;font-size:14px}.pagination-wrap .el-pagination .el-pager li.number.active{background-color:#2468f2;color:#fff}.pagination-wrap .el-pagination .btn-prev,.pagination-wrap .el-pagination .btn-next,.pagination-wrap .el-pagination .el-icon-more{background-color:#fff!important}.custom-row-classname-pinned td:last-child{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAMKADAAQAAAABAAAAMAAAAADbN2wMAAAClElEQVRoBdXYTU/UQBgH8H+X3cvCCam7wEIIxpeTJgY1HkhQsySsIeBFDmq86MkPIX4ITnoxnjwZg66EjUDCxRiNMSQm+LZGiCxggviGuhtqn8ZiF1ra6Ux3ZyZpdjrzzMuvnWmb1cZu3hnVNO06FE0azVtlhAVQGbEFUBVRBVARsQOgGsIVoBLCE6AKYleASMTgwBlk2tLUJXNa/FTC+KPHru3irqWOwmtXL42a7wnwvuxWVj8jEfcdzjHy/yy19Uq+d8BuKOvLLjCAILyIdEpHSm+xr0mg32Xz6peWVz1jmQDUCw/iyuUR5mVUrlRw6/ZdTwDzouTZE/YemJya9ZyQs6L/dK8vmBlAA/AgqP274kf6EZJiYXshhGEYN8K2F9UuNIAmIAoRi2mgI0ziAohA6HuaceH8MC6ODENvaWY2cAN4EB3trRg6m0VTYxKNySSGcll0ZtqYEEIAYRAH93cj138KiUQcT5+/tA7KD2T7cOjAvsCIhsCRAQLz4/dmcoPnzK8Orc8t/NjRw1bx5qaB3pM9MB8CmJ59grlX81gqreDb9x/o6sygu6sDhhnZ3pqy4p+9mHPrzioTdgfsEYJs7BM9R1AuV5AvzGD+zXu7qZXPF6atuuP/sFuVHhnhABrHD/FzYwP3HxawsLi0Y1pURnUUEyQJXULOAd2WE23aX7//4MHEFNa+rDvDq/I0+eKHBaT36lhb/4rXb4tV9c6TcA9fZw8+eZ5vJ5+urerIATRKlIiaAKJE1AwQFaKmgCgQNQeIRtQFIBJRN4AoRF0BIhB1B/AipADwIKQBhEVIBQiDkA7AipASwIKQFhAUITUgCEJ6gB9CCcBuCGUAXgilAG4I5QDbEUoCtiPoXMlE/3b8BeOQEURS9XL7AAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:24px 24px;background-position:right 0 top 0}.el-table__body tr.current-row>td,.el-table__body tr.hover-row>td{background-color:#fafafa}.el-table-filter,th.el-table__cell .el-table__column-filter-trigger,th.is-sortable .caret-wrapper{display:none}table tbody tr td .el-date-editor.el-input{width:100%}table tbody tr td .cell{font-size:14px}.editable-table table th{font-size:14px;font-weight:700}.editable-table table td{font-size:12px;color:#13161b}.no-inner-cell-border .cell{border:none!important}.editable-table-drag-icon{position:relative;width:5px;height:2px;border-left:2px solid #989ea9;border-right:2px solid #989ea9;cursor:-webkit-grab;cursor:grab}.editable-table-drag-icon:after,.editable-table-drag-icon:before{position:absolute;content:"";-webkit-box-sizing:border-box;box-sizing:border-box;left:-2px;display:block;width:5px;height:2px;border-left:2px solid #989ea9;border-right:2px solid #989ea9}.editable-table-drag-icon:after{top:-4px}.editable-table-drag-icon:before{bottom:-4px}.el-select-dropdown__item{text-align:center}.el-dialog__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;background-color:#eee;height:36px;line-height:36px;padding:0 20px}.el-dialog__headerbtn{position:inherit}.el-dialog__title{font-size:14px;line-height:20px;color:#333}.el-dialog__footer{background-color:#eee;height:42px;line-height:42px;padding:0 20px}.el-dialog__footer .el-button{height:24px;font-size:12px;padding:5px 12px}
@@ -0,0 +1,11 @@
1
+ import { default as DemoComponent } from './DemoComponent/index.vue';
2
+ import { default as AuditSteps } from './AuditSteps/index.vue';
3
+ import { default as Ellipsis } from './Ellipsis/index.vue';
4
+ import { default as SearchForm } from './SearchForm/index.vue';
5
+ import { default as LxTable } from './LxTable/index.vue';
6
+ import { default as SearchSelect } from './SearchSelect/index.vue';
7
+ import { default as AddMembers } from './AddMembers/index.vue';
8
+ import { default as PopoverForm } from './PopoverForm/index.vue';
9
+ import { default as EditableTable } from './EditableTable/index.vue';
10
+
11
+ export { DemoComponent, AuditSteps, Ellipsis, SearchForm, LxTable, SearchSelect, AddMembers, PopoverForm, EditableTable };