vxe-table 4.18.6 → 4.18.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/LICENSE +20 -20
- package/README.en.md +118 -118
- package/README.ja-JP.md +117 -117
- package/README.md +268 -268
- package/README.zh-TW.md +117 -117
- package/es/style.css +1 -1
- package/es/table/src/table.js +89 -79
- package/es/table/src/util.js +6 -0
- package/es/table/style.css +18 -48
- package/es/ui/index.js +1 -1
- package/es/ui/src/dom.js +21 -0
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +18 -48
- package/lib/index.common.js +2 -1
- package/lib/index.umd.js +2762 -2833
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/table.js +15 -12
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/src/util.js +6 -0
- package/lib/table/src/util.min.js +1 -1
- package/lib/table/style/style.css +18 -48
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/dom.js +23 -0
- package/lib/ui/src/dom.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/v-x-e-table/index.js +2 -1
- package/lib/v-x-e-table/index.min.js +1 -1
- package/lib/vxe-colgroup/index.js +2 -1
- package/lib/vxe-colgroup/index.min.js +1 -1
- package/lib/vxe-column/index.js +2 -1
- package/lib/vxe-column/index.min.js +1 -1
- package/lib/vxe-grid/index.js +2 -1
- package/lib/vxe-grid/index.min.js +1 -1
- package/lib/vxe-table/index.js +2 -1
- package/lib/vxe-table/index.min.js +1 -1
- package/lib/vxe-table/style/style.css +18 -48
- package/lib/vxe-toolbar/index.js +2 -1
- package/lib/vxe-toolbar/index.min.js +1 -1
- package/lib/vxe-ui/index.js +2 -1
- package/lib/vxe-ui/index.min.js +1 -1
- package/lib/vxe-v-x-e-table/index.js +2 -1
- package/lib/vxe-v-x-e-table/index.min.js +1 -1
- package/package.json +91 -91
- package/packages/colgroup/index.ts +22 -22
- package/packages/column/index.ts +22 -22
- package/packages/components.ts +43 -43
- package/packages/grid/index.ts +18 -18
- package/packages/grid/src/emits.ts +19 -19
- package/packages/grid/src/grid.ts +1768 -1768
- package/packages/grid/src/props.ts +23 -23
- package/packages/index.ts +4 -4
- package/packages/locale/lang/ar-EG.ts +832 -832
- package/packages/locale/lang/de-DE.ts +832 -832
- package/packages/locale/lang/en-US.ts +832 -832
- package/packages/locale/lang/es-ES.ts +832 -832
- package/packages/locale/lang/fr-FR.ts +832 -832
- package/packages/locale/lang/hu-HU.ts +832 -832
- package/packages/locale/lang/hy-AM.ts +832 -832
- package/packages/locale/lang/id-ID.ts +832 -832
- package/packages/locale/lang/it-IT.ts +832 -832
- package/packages/locale/lang/ja-JP.ts +832 -832
- package/packages/locale/lang/ko-KR.ts +832 -832
- package/packages/locale/lang/ms-MY.ts +832 -832
- package/packages/locale/lang/nb-NO.ts +832 -832
- package/packages/locale/lang/pt-BR.ts +832 -832
- package/packages/locale/lang/ru-RU.ts +832 -832
- package/packages/locale/lang/th-TH.ts +832 -832
- package/packages/locale/lang/ug-CN.ts +832 -832
- package/packages/locale/lang/uk-UA.ts +832 -832
- package/packages/locale/lang/uz-UZ.ts +832 -832
- package/packages/locale/lang/vi-VN.ts +832 -832
- package/packages/locale/lang/zh-CHT.ts +832 -832
- package/packages/locale/lang/zh-CN.ts +832 -832
- package/packages/locale/lang/zh-HK.ts +3 -3
- package/packages/locale/lang/zh-MO.ts +3 -3
- package/packages/locale/lang/zh-TC.ts +3 -3
- package/packages/locale/lang/zh-TW.ts +3 -3
- package/packages/table/index.ts +26 -26
- package/packages/table/module/custom/hook.ts +359 -359
- package/packages/table/module/custom/panel.ts +1331 -1331
- package/packages/table/module/edit/hook.ts +1032 -1032
- package/packages/table/module/export/export-panel.ts +567 -567
- package/packages/table/module/export/hook.ts +1654 -1654
- package/packages/table/module/export/import-panel.ts +266 -266
- package/packages/table/module/export/util.ts +24 -24
- package/packages/table/module/filter/hook.ts +468 -468
- package/packages/table/module/filter/panel.ts +301 -301
- package/packages/table/module/keyboard/hook.ts +495 -495
- package/packages/table/module/menu/hook.ts +325 -325
- package/packages/table/module/menu/panel.ts +201 -201
- package/packages/table/module/validator/hook.ts +631 -631
- package/packages/table/render/index.ts +1440 -1440
- package/packages/table/src/body.ts +932 -932
- package/packages/table/src/cell.ts +1290 -1290
- package/packages/table/src/column.ts +190 -190
- package/packages/table/src/columnInfo.ts +225 -225
- package/packages/table/src/emits.ts +123 -123
- package/packages/table/src/footer.ts +368 -368
- package/packages/table/src/group.ts +59 -59
- package/packages/table/src/header.ts +559 -559
- package/packages/table/src/props.ts +324 -324
- package/packages/table/src/store.ts +14 -14
- package/packages/table/src/table.ts +14010 -14001
- package/packages/table/src/use/cell-view.ts +44 -44
- package/packages/table/src/use/index.ts +1 -1
- package/packages/table/src/util.ts +1070 -1064
- package/packages/toolbar/index.ts +18 -18
- package/packages/toolbar/src/toolbar.ts +701 -701
- package/packages/ui/index.ts +530 -530
- package/packages/ui/src/anime.ts +52 -52
- package/packages/ui/src/comp.ts +3 -3
- package/packages/ui/src/dom.ts +259 -236
- package/packages/ui/src/log.ts +8 -8
- package/packages/ui/src/utils.ts +56 -56
- package/packages/ui/src/vn.ts +55 -55
- package/packages/v-x-e-table/index.d.ts +4 -4
- package/packages/v-x-e-table/index.ts +4 -4
- package/styles/all.scss +7 -7
- package/styles/base.scss +16 -16
- package/styles/components/grid.scss +89 -89
- package/styles/components/icon.scss +225 -225
- package/styles/components/old-icon.scss +715 -715
- package/styles/components/table-module/all.scss +6 -6
- package/styles/components/table-module/custom.scss +527 -527
- package/styles/components/table-module/export.scss +130 -130
- package/styles/components/table-module/filter.scss +130 -130
- package/styles/components/table-module/menu.scss +81 -81
- package/styles/components/table.scss +2679 -2679
- package/styles/components/toolbar.scss +119 -119
- package/styles/default.scss +2 -2
- package/styles/helpers/baseMixin.scss +95 -95
- package/styles/index.scss +4 -4
- package/styles/modules.scss +5 -5
- package/styles/theme/base.scss +93 -93
- package/styles/theme/dark.scss +49 -49
- package/styles/theme/light.scss +44 -44
- package/styles/variable.scss +43 -43
- package/types/all.d.ts +37 -37
- package/types/index.d.ts +4 -4
- /package/es/{iconfont.1773972993993.ttf → iconfont.1774240404046.ttf} +0 -0
- /package/es/{iconfont.1773972993993.woff → iconfont.1774240404046.woff} +0 -0
- /package/es/{iconfont.1773972993993.woff2 → iconfont.1774240404046.woff2} +0 -0
- /package/lib/{iconfont.1773972993993.ttf → iconfont.1774240404046.ttf} +0 -0
- /package/lib/{iconfont.1773972993993.woff → iconfont.1774240404046.woff} +0 -0
- /package/lib/{iconfont.1773972993993.woff2 → iconfont.1774240404046.woff2} +0 -0
package/styles/theme/dark.scss
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
@use './base.scss';
|
|
2
|
-
|
|
3
|
-
[data-vxe-ui-theme="dark"] {
|
|
4
|
-
color-scheme: dark;
|
|
5
|
-
|
|
6
|
-
/*font color*/
|
|
7
|
-
--vxe-ui-font-color: #a0a3a7;
|
|
8
|
-
--vxe-ui-font-tinge-color: #33353b;
|
|
9
|
-
--vxe-ui-font-lighten-color: #797b80;
|
|
10
|
-
--vxe-ui-font-darken-color: #47494c;
|
|
11
|
-
--vxe-ui-font-disabled-color: #464646;
|
|
12
|
-
|
|
13
|
-
/*font status color*/
|
|
14
|
-
--vxe-ui-font-primary-color: #409eff;
|
|
15
|
-
|
|
16
|
-
/*base*/
|
|
17
|
-
--vxe-ui-base-popup-border-color: #424242;
|
|
18
|
-
--vxe-ui-base-popup-box-shadow: 0px 12px 30px 8px rgba(0, 0, 0, 0.5);
|
|
19
|
-
|
|
20
|
-
/*layout*/
|
|
21
|
-
--vxe-ui-layout-background-color: #121212;
|
|
22
|
-
|
|
23
|
-
/*input*/
|
|
24
|
-
--vxe-ui-input-border-color: #424242;
|
|
25
|
-
--vxe-ui-input-placeholder-color: #8D9095;
|
|
26
|
-
--vxe-ui-input-disabled-background-color: #262727;
|
|
27
|
-
|
|
28
|
-
/*loading*/
|
|
29
|
-
--vxe-ui-loading-background-color: rgba(255, 255, 255, 0.1);
|
|
30
|
-
|
|
31
|
-
/*table*/
|
|
32
|
-
--vxe-ui-table-header-background-color: #28282a;
|
|
33
|
-
--vxe-ui-table-column-to-row-background-color: #28282a;
|
|
34
|
-
--vxe-ui-table-column-hover-background-color: #242f3b;
|
|
35
|
-
--vxe-ui-table-column-current-background-color: #18222c;
|
|
36
|
-
--vxe-ui-table-column-hover-current-background-color: #242f3b;
|
|
37
|
-
--vxe-ui-table-border-color: #37373a;
|
|
38
|
-
--vxe-ui-table-row-hover-background-color: #262727;
|
|
39
|
-
--vxe-ui-table-row-striped-background-color: #1D1D1D;
|
|
40
|
-
--vxe-ui-table-row-hover-striped-background-color: #262727;
|
|
41
|
-
--vxe-ui-table-row-radio-checked-background-color: #604820;
|
|
42
|
-
--vxe-ui-table-row-hover-radio-checked-background-color: #6e5326;
|
|
43
|
-
--vxe-ui-table-row-checkbox-checked-background-color: #604820;
|
|
44
|
-
--vxe-ui-table-row-hover-checkbox-checked-background-color: #6e5326;
|
|
45
|
-
--vxe-ui-table-row-current-background-color: #18222c;
|
|
46
|
-
--vxe-ui-table-row-hover-current-background-color: #242f3b;
|
|
47
|
-
--vxe-ui-table-fixed-scrolling-box-shadow-color: rgba(0, 0, 0, 0.8);
|
|
48
|
-
--vxe-ui-table-drag-over-background-color:rgba(48, 48, 0, 0.3);
|
|
49
|
-
}
|
|
1
|
+
@use './base.scss';
|
|
2
|
+
|
|
3
|
+
[data-vxe-ui-theme="dark"] {
|
|
4
|
+
color-scheme: dark;
|
|
5
|
+
|
|
6
|
+
/*font color*/
|
|
7
|
+
--vxe-ui-font-color: #a0a3a7;
|
|
8
|
+
--vxe-ui-font-tinge-color: #33353b;
|
|
9
|
+
--vxe-ui-font-lighten-color: #797b80;
|
|
10
|
+
--vxe-ui-font-darken-color: #47494c;
|
|
11
|
+
--vxe-ui-font-disabled-color: #464646;
|
|
12
|
+
|
|
13
|
+
/*font status color*/
|
|
14
|
+
--vxe-ui-font-primary-color: #409eff;
|
|
15
|
+
|
|
16
|
+
/*base*/
|
|
17
|
+
--vxe-ui-base-popup-border-color: #424242;
|
|
18
|
+
--vxe-ui-base-popup-box-shadow: 0px 12px 30px 8px rgba(0, 0, 0, 0.5);
|
|
19
|
+
|
|
20
|
+
/*layout*/
|
|
21
|
+
--vxe-ui-layout-background-color: #121212;
|
|
22
|
+
|
|
23
|
+
/*input*/
|
|
24
|
+
--vxe-ui-input-border-color: #424242;
|
|
25
|
+
--vxe-ui-input-placeholder-color: #8D9095;
|
|
26
|
+
--vxe-ui-input-disabled-background-color: #262727;
|
|
27
|
+
|
|
28
|
+
/*loading*/
|
|
29
|
+
--vxe-ui-loading-background-color: rgba(255, 255, 255, 0.1);
|
|
30
|
+
|
|
31
|
+
/*table*/
|
|
32
|
+
--vxe-ui-table-header-background-color: #28282a;
|
|
33
|
+
--vxe-ui-table-column-to-row-background-color: #28282a;
|
|
34
|
+
--vxe-ui-table-column-hover-background-color: #242f3b;
|
|
35
|
+
--vxe-ui-table-column-current-background-color: #18222c;
|
|
36
|
+
--vxe-ui-table-column-hover-current-background-color: #242f3b;
|
|
37
|
+
--vxe-ui-table-border-color: #37373a;
|
|
38
|
+
--vxe-ui-table-row-hover-background-color: #262727;
|
|
39
|
+
--vxe-ui-table-row-striped-background-color: #1D1D1D;
|
|
40
|
+
--vxe-ui-table-row-hover-striped-background-color: #262727;
|
|
41
|
+
--vxe-ui-table-row-radio-checked-background-color: #604820;
|
|
42
|
+
--vxe-ui-table-row-hover-radio-checked-background-color: #6e5326;
|
|
43
|
+
--vxe-ui-table-row-checkbox-checked-background-color: #604820;
|
|
44
|
+
--vxe-ui-table-row-hover-checkbox-checked-background-color: #6e5326;
|
|
45
|
+
--vxe-ui-table-row-current-background-color: #18222c;
|
|
46
|
+
--vxe-ui-table-row-hover-current-background-color: #242f3b;
|
|
47
|
+
--vxe-ui-table-fixed-scrolling-box-shadow-color: rgba(0, 0, 0, 0.8);
|
|
48
|
+
--vxe-ui-table-drag-over-background-color:rgba(48, 48, 0, 0.3);
|
|
49
|
+
}
|
package/styles/theme/light.scss
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
@use './base.scss';
|
|
2
|
-
@use '../variable.scss' as light_variable;
|
|
3
|
-
|
|
4
|
-
[data-vxe-ui-theme="light"] {
|
|
5
|
-
/*font color*/
|
|
6
|
-
--vxe-ui-font-color: #{light_variable.$vxe-ui-font-color};
|
|
7
|
-
--vxe-ui-font-primary-color: #{light_variable.$vxe-ui-font-primary-color};
|
|
8
|
-
--vxe-ui-font-lighten-color: #{light_variable.$vxe-ui-font-lighten-color};
|
|
9
|
-
--vxe-ui-font-darken-color: #{light_variable.$vxe-ui-font-darken-color};
|
|
10
|
-
--vxe-ui-font-disabled-color: #{light_variable.$vxe-ui-font-disabled-color};
|
|
11
|
-
|
|
12
|
-
/*base*/
|
|
13
|
-
--vxe-ui-base-popup-border-color: #{light_variable.$vxe-ui-base-popup-border-color};
|
|
14
|
-
--vxe-ui-base-popup-box-shadow: #{light_variable.$vxe-ui-base-popup-box-shadow};
|
|
15
|
-
|
|
16
|
-
/*layout*/
|
|
17
|
-
--vxe-ui-layout-background-color: #{light_variable.$vxe-ui-layout-background-color};
|
|
18
|
-
|
|
19
|
-
/*input*/
|
|
20
|
-
--vxe-ui-input-border-color: #{light_variable.$vxe-ui-input-border-color};
|
|
21
|
-
--vxe-ui-input-placeholder-color: #{light_variable.$vxe-ui-input-placeholder-color};
|
|
22
|
-
--vxe-ui-input-disabled-background-color: #{light_variable.$vxe-ui-input-disabled-background-color};
|
|
23
|
-
|
|
24
|
-
/*loading*/
|
|
25
|
-
--vxe-ui-loading-background-color: #{light_variable.$vxe-ui-loading-background-color};
|
|
26
|
-
|
|
27
|
-
/*table*/
|
|
28
|
-
--vxe-ui-table-header-background-color: #{light_variable.$vxe-ui-table-header-background-color};
|
|
29
|
-
--vxe-ui-table-column-to-row-background-color: #{light_variable.$vxe-ui-table-column-to-row-background-color};
|
|
30
|
-
--vxe-ui-table-column-hover-background-color: #{light_variable.$vxe-ui-table-column-hover-background-color};
|
|
31
|
-
--vxe-ui-table-column-current-background-color: #{light_variable.$vxe-ui-table-column-current-background-color};
|
|
32
|
-
--vxe-ui-table-column-hover-current-background-color: #{light_variable.$vxe-ui-table-column-hover-current-background-color};
|
|
33
|
-
--vxe-ui-table-border-color: #{light_variable.$vxe-ui-table-border-color};
|
|
34
|
-
--vxe-ui-table-row-hover-background-color: #{light_variable.$vxe-ui-table-row-hover-background-color};
|
|
35
|
-
--vxe-ui-table-row-striped-background-color: #{light_variable.$vxe-ui-table-row-striped-background-color};
|
|
36
|
-
--vxe-ui-table-row-hover-striped-background-color: #{light_variable.$vxe-ui-table-row-hover-striped-background-color};
|
|
37
|
-
--vxe-ui-table-row-radio-checked-background-color: #{light_variable.$vxe-ui-table-row-radio-checked-background-color};
|
|
38
|
-
--vxe-ui-table-row-hover-radio-checked-background-color: #{light_variable.$vxe-ui-table-row-hover-radio-checked-background-color};
|
|
39
|
-
--vxe-ui-table-row-checkbox-checked-background-color: #{light_variable.$vxe-ui-table-row-checkbox-checked-background-color};
|
|
40
|
-
--vxe-ui-table-row-hover-checkbox-checked-background-color: #{light_variable.$vxe-ui-table-row-hover-checkbox-checked-background-color};
|
|
41
|
-
--vxe-ui-table-row-current-background-color: #{light_variable.$vxe-ui-table-row-current-background-color};
|
|
42
|
-
--vxe-ui-table-row-hover-current-background-color: #{light_variable.$vxe-ui-table-row-hover-current-background-color};
|
|
43
|
-
--vxe-ui-table-fixed-scrolling-box-shadow-color: #{light_variable.$vxe-ui-table-fixed-scrolling-box-shadow-color};
|
|
44
|
-
--vxe-ui-table-drag-over-background-color:#{light_variable.$vxe-ui-table-drag-over-background-color};
|
|
1
|
+
@use './base.scss';
|
|
2
|
+
@use '../variable.scss' as light_variable;
|
|
3
|
+
|
|
4
|
+
[data-vxe-ui-theme="light"] {
|
|
5
|
+
/*font color*/
|
|
6
|
+
--vxe-ui-font-color: #{light_variable.$vxe-ui-font-color};
|
|
7
|
+
--vxe-ui-font-primary-color: #{light_variable.$vxe-ui-font-primary-color};
|
|
8
|
+
--vxe-ui-font-lighten-color: #{light_variable.$vxe-ui-font-lighten-color};
|
|
9
|
+
--vxe-ui-font-darken-color: #{light_variable.$vxe-ui-font-darken-color};
|
|
10
|
+
--vxe-ui-font-disabled-color: #{light_variable.$vxe-ui-font-disabled-color};
|
|
11
|
+
|
|
12
|
+
/*base*/
|
|
13
|
+
--vxe-ui-base-popup-border-color: #{light_variable.$vxe-ui-base-popup-border-color};
|
|
14
|
+
--vxe-ui-base-popup-box-shadow: #{light_variable.$vxe-ui-base-popup-box-shadow};
|
|
15
|
+
|
|
16
|
+
/*layout*/
|
|
17
|
+
--vxe-ui-layout-background-color: #{light_variable.$vxe-ui-layout-background-color};
|
|
18
|
+
|
|
19
|
+
/*input*/
|
|
20
|
+
--vxe-ui-input-border-color: #{light_variable.$vxe-ui-input-border-color};
|
|
21
|
+
--vxe-ui-input-placeholder-color: #{light_variable.$vxe-ui-input-placeholder-color};
|
|
22
|
+
--vxe-ui-input-disabled-background-color: #{light_variable.$vxe-ui-input-disabled-background-color};
|
|
23
|
+
|
|
24
|
+
/*loading*/
|
|
25
|
+
--vxe-ui-loading-background-color: #{light_variable.$vxe-ui-loading-background-color};
|
|
26
|
+
|
|
27
|
+
/*table*/
|
|
28
|
+
--vxe-ui-table-header-background-color: #{light_variable.$vxe-ui-table-header-background-color};
|
|
29
|
+
--vxe-ui-table-column-to-row-background-color: #{light_variable.$vxe-ui-table-column-to-row-background-color};
|
|
30
|
+
--vxe-ui-table-column-hover-background-color: #{light_variable.$vxe-ui-table-column-hover-background-color};
|
|
31
|
+
--vxe-ui-table-column-current-background-color: #{light_variable.$vxe-ui-table-column-current-background-color};
|
|
32
|
+
--vxe-ui-table-column-hover-current-background-color: #{light_variable.$vxe-ui-table-column-hover-current-background-color};
|
|
33
|
+
--vxe-ui-table-border-color: #{light_variable.$vxe-ui-table-border-color};
|
|
34
|
+
--vxe-ui-table-row-hover-background-color: #{light_variable.$vxe-ui-table-row-hover-background-color};
|
|
35
|
+
--vxe-ui-table-row-striped-background-color: #{light_variable.$vxe-ui-table-row-striped-background-color};
|
|
36
|
+
--vxe-ui-table-row-hover-striped-background-color: #{light_variable.$vxe-ui-table-row-hover-striped-background-color};
|
|
37
|
+
--vxe-ui-table-row-radio-checked-background-color: #{light_variable.$vxe-ui-table-row-radio-checked-background-color};
|
|
38
|
+
--vxe-ui-table-row-hover-radio-checked-background-color: #{light_variable.$vxe-ui-table-row-hover-radio-checked-background-color};
|
|
39
|
+
--vxe-ui-table-row-checkbox-checked-background-color: #{light_variable.$vxe-ui-table-row-checkbox-checked-background-color};
|
|
40
|
+
--vxe-ui-table-row-hover-checkbox-checked-background-color: #{light_variable.$vxe-ui-table-row-hover-checkbox-checked-background-color};
|
|
41
|
+
--vxe-ui-table-row-current-background-color: #{light_variable.$vxe-ui-table-row-current-background-color};
|
|
42
|
+
--vxe-ui-table-row-hover-current-background-color: #{light_variable.$vxe-ui-table-row-hover-current-background-color};
|
|
43
|
+
--vxe-ui-table-fixed-scrolling-box-shadow-color: #{light_variable.$vxe-ui-table-fixed-scrolling-box-shadow-color};
|
|
44
|
+
--vxe-ui-table-drag-over-background-color:#{light_variable.$vxe-ui-table-drag-over-background-color};
|
|
45
45
|
}
|
package/styles/variable.scss
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
/*font color*/
|
|
2
|
-
$vxe-ui-font-color: #606266 !default;
|
|
3
|
-
$vxe-ui-font-tinge-color: #d4d5d7 !default;
|
|
4
|
-
$vxe-ui-font-lighten-color: #797b80 !default;
|
|
5
|
-
$vxe-ui-font-darken-color: #47494c !default;
|
|
6
|
-
$vxe-ui-font-disabled-color: #BFBFBF !default;
|
|
7
|
-
|
|
8
|
-
/*font status color*/
|
|
9
|
-
$vxe-ui-font-primary-color: #409eff !default;
|
|
10
|
-
|
|
11
|
-
/*base*/
|
|
12
|
-
$vxe-ui-base-popup-border-color: #DADCE0 !default;
|
|
13
|
-
$vxe-ui-base-popup-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16) !default;
|
|
14
|
-
|
|
15
|
-
/*layout*/
|
|
16
|
-
$vxe-ui-layout-background-color: #ffffff !default;
|
|
17
|
-
|
|
18
|
-
/*input*/
|
|
19
|
-
$vxe-ui-input-border-color: #dcdfe6 !default;
|
|
20
|
-
$vxe-ui-input-placeholder-color: #C0C4CC !default;
|
|
21
|
-
$vxe-ui-input-disabled-background-color: #f3f3f3 !default;
|
|
22
|
-
|
|
23
|
-
/*loading*/
|
|
24
|
-
$vxe-ui-loading-background-color: rgba(255, 255, 255, 0.5) !default;
|
|
25
|
-
|
|
26
|
-
/*table*/
|
|
27
|
-
$vxe-ui-table-header-background-color: #f8f8f9 !default;
|
|
28
|
-
$vxe-ui-table-column-to-row-background-color: #f8f8f9 !default;
|
|
29
|
-
$vxe-ui-table-column-hover-background-color: #d7effb !default;
|
|
30
|
-
$vxe-ui-table-column-current-background-color: #e6f7ff !default;
|
|
31
|
-
$vxe-ui-table-column-hover-current-background-color: #d7effb !default;
|
|
32
|
-
$vxe-ui-table-border-color: #e8eaec !default;
|
|
33
|
-
$vxe-ui-table-row-hover-background-color: #f5f7fa !default;
|
|
34
|
-
$vxe-ui-table-row-striped-background-color: #fafafa !default;
|
|
35
|
-
$vxe-ui-table-row-hover-striped-background-color: #f5f7fa !default;
|
|
36
|
-
$vxe-ui-table-row-radio-checked-background-color: #fff3e0 !default;
|
|
37
|
-
$vxe-ui-table-row-hover-radio-checked-background-color: #ffebbc !default;
|
|
38
|
-
$vxe-ui-table-row-checkbox-checked-background-color: #fff3e0 !default;
|
|
39
|
-
$vxe-ui-table-row-hover-checkbox-checked-background-color: #ffebbc !default;
|
|
40
|
-
$vxe-ui-table-row-current-background-color: #e6f7ff !default;
|
|
41
|
-
$vxe-ui-table-row-hover-current-background-color: #d7effb !default;
|
|
42
|
-
$vxe-ui-table-fixed-scrolling-box-shadow-color: rgba(0, 0, 0, 0.12) !default;
|
|
43
|
-
$vxe-ui-table-drag-over-background-color:rgba(255,255,200,0.3) !default;
|
|
1
|
+
/*font color*/
|
|
2
|
+
$vxe-ui-font-color: #606266 !default;
|
|
3
|
+
$vxe-ui-font-tinge-color: #d4d5d7 !default;
|
|
4
|
+
$vxe-ui-font-lighten-color: #797b80 !default;
|
|
5
|
+
$vxe-ui-font-darken-color: #47494c !default;
|
|
6
|
+
$vxe-ui-font-disabled-color: #BFBFBF !default;
|
|
7
|
+
|
|
8
|
+
/*font status color*/
|
|
9
|
+
$vxe-ui-font-primary-color: #409eff !default;
|
|
10
|
+
|
|
11
|
+
/*base*/
|
|
12
|
+
$vxe-ui-base-popup-border-color: #DADCE0 !default;
|
|
13
|
+
$vxe-ui-base-popup-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16) !default;
|
|
14
|
+
|
|
15
|
+
/*layout*/
|
|
16
|
+
$vxe-ui-layout-background-color: #ffffff !default;
|
|
17
|
+
|
|
18
|
+
/*input*/
|
|
19
|
+
$vxe-ui-input-border-color: #dcdfe6 !default;
|
|
20
|
+
$vxe-ui-input-placeholder-color: #C0C4CC !default;
|
|
21
|
+
$vxe-ui-input-disabled-background-color: #f3f3f3 !default;
|
|
22
|
+
|
|
23
|
+
/*loading*/
|
|
24
|
+
$vxe-ui-loading-background-color: rgba(255, 255, 255, 0.5) !default;
|
|
25
|
+
|
|
26
|
+
/*table*/
|
|
27
|
+
$vxe-ui-table-header-background-color: #f8f8f9 !default;
|
|
28
|
+
$vxe-ui-table-column-to-row-background-color: #f8f8f9 !default;
|
|
29
|
+
$vxe-ui-table-column-hover-background-color: #d7effb !default;
|
|
30
|
+
$vxe-ui-table-column-current-background-color: #e6f7ff !default;
|
|
31
|
+
$vxe-ui-table-column-hover-current-background-color: #d7effb !default;
|
|
32
|
+
$vxe-ui-table-border-color: #e8eaec !default;
|
|
33
|
+
$vxe-ui-table-row-hover-background-color: #f5f7fa !default;
|
|
34
|
+
$vxe-ui-table-row-striped-background-color: #fafafa !default;
|
|
35
|
+
$vxe-ui-table-row-hover-striped-background-color: #f5f7fa !default;
|
|
36
|
+
$vxe-ui-table-row-radio-checked-background-color: #fff3e0 !default;
|
|
37
|
+
$vxe-ui-table-row-hover-radio-checked-background-color: #ffebbc !default;
|
|
38
|
+
$vxe-ui-table-row-checkbox-checked-background-color: #fff3e0 !default;
|
|
39
|
+
$vxe-ui-table-row-hover-checkbox-checked-background-color: #ffebbc !default;
|
|
40
|
+
$vxe-ui-table-row-current-background-color: #e6f7ff !default;
|
|
41
|
+
$vxe-ui-table-row-hover-current-background-color: #d7effb !default;
|
|
42
|
+
$vxe-ui-table-fixed-scrolling-box-shadow-color: rgba(0, 0, 0, 0.12) !default;
|
|
43
|
+
$vxe-ui-table-drag-over-background-color:rgba(255,255,200,0.3) !default;
|
|
44
44
|
|
package/types/all.d.ts
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import { App } from 'vue'
|
|
2
|
-
import { VxeUIExport, VxeGlobalConfig } from 'vxe-pc-ui'
|
|
3
|
-
|
|
4
|
-
declare global {
|
|
5
|
-
interface Window {
|
|
6
|
-
VxeUITable: VxeUIExport
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* @deprecated
|
|
10
|
-
*/
|
|
11
|
-
VXETable: VxeUIExport
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 已废弃,请使用 VxeUI
|
|
17
|
-
* @deprecated
|
|
18
|
-
*/
|
|
19
|
-
export const VXETable: VxeUIExport
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* 已废弃,请使用 VxeUIExport
|
|
23
|
-
* @deprecated
|
|
24
|
-
*/
|
|
25
|
-
export type VXETableCore = VxeUIExport
|
|
26
|
-
|
|
27
|
-
export function install (app: App, options?: VxeGlobalConfig): void
|
|
28
|
-
|
|
29
|
-
// Vxe core
|
|
30
|
-
export * from 'vxe-pc-ui/types/ui'
|
|
31
|
-
|
|
32
|
-
// Vxe Table
|
|
33
|
-
export * from 'vxe-pc-ui/types/components/column'
|
|
34
|
-
export * from 'vxe-pc-ui/types/components/colgroup'
|
|
35
|
-
export * from 'vxe-pc-ui/types/components/table'
|
|
36
|
-
export * from 'vxe-pc-ui/types/components/grid'
|
|
37
|
-
export * from 'vxe-pc-ui/types/components/toolbar'
|
|
1
|
+
import { App } from 'vue'
|
|
2
|
+
import { VxeUIExport, VxeGlobalConfig } from 'vxe-pc-ui'
|
|
3
|
+
|
|
4
|
+
declare global {
|
|
5
|
+
interface Window {
|
|
6
|
+
VxeUITable: VxeUIExport
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated
|
|
10
|
+
*/
|
|
11
|
+
VXETable: VxeUIExport
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* 已废弃,请使用 VxeUI
|
|
17
|
+
* @deprecated
|
|
18
|
+
*/
|
|
19
|
+
export const VXETable: VxeUIExport
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* 已废弃,请使用 VxeUIExport
|
|
23
|
+
* @deprecated
|
|
24
|
+
*/
|
|
25
|
+
export type VXETableCore = VxeUIExport
|
|
26
|
+
|
|
27
|
+
export function install (app: App, options?: VxeGlobalConfig): void
|
|
28
|
+
|
|
29
|
+
// Vxe core
|
|
30
|
+
export * from 'vxe-pc-ui/types/ui'
|
|
31
|
+
|
|
32
|
+
// Vxe Table
|
|
33
|
+
export * from 'vxe-pc-ui/types/components/column'
|
|
34
|
+
export * from 'vxe-pc-ui/types/components/colgroup'
|
|
35
|
+
export * from 'vxe-pc-ui/types/components/table'
|
|
36
|
+
export * from 'vxe-pc-ui/types/components/grid'
|
|
37
|
+
export * from 'vxe-pc-ui/types/components/toolbar'
|
package/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as VxeUITable from './all'
|
|
2
|
-
|
|
3
|
-
export * from './all'
|
|
4
|
-
export default VxeUITable
|
|
1
|
+
import * as VxeUITable from './all'
|
|
2
|
+
|
|
3
|
+
export * from './all'
|
|
4
|
+
export default VxeUITable
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|