@antv/s2-vue 1.4.0-alpha.1 → 1.5.0
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 +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/style.min.css +1 -1
- package/esm/index.d.ts +302 -126
- package/esm/index.js +8 -2
- package/esm/index.js.map +1 -1
- package/esm/style.css +19 -2
- package/lib/index.js +8 -2
- package/lib/index.js.map +1 -1
- package/lib/style.css +19 -2
- package/package.json +3 -3
package/lib/style.css
CHANGED
|
@@ -37,10 +37,15 @@
|
|
|
37
37
|
font-size: 12px;
|
|
38
38
|
line-height: 32px;
|
|
39
39
|
padding: 0 12px;
|
|
40
|
-
color: rgba(0, 0, 0, 0.65);
|
|
41
40
|
border: 0;
|
|
42
41
|
margin: 0;
|
|
43
42
|
}
|
|
43
|
+
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-item:not(.ant-menu-item-active),
|
|
44
|
+
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-dropdown-menu-item:not(.ant-menu-item-active),
|
|
45
|
+
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-menu-item:not(.ant-menu-item-active),
|
|
46
|
+
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-menu-item:not(.ant-menu-item-active) {
|
|
47
|
+
color: rgba(0, 0, 0, 0.65);
|
|
48
|
+
}
|
|
44
49
|
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-submenu .ant-menu-submenu-title,
|
|
45
50
|
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-dropdown-menu-submenu .ant-menu-submenu-title,
|
|
46
51
|
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-submenu-vertical .ant-menu-submenu-title,
|
|
@@ -52,9 +57,18 @@
|
|
|
52
57
|
padding: 0 12px;
|
|
53
58
|
font-size: 12px;
|
|
54
59
|
line-height: 32px;
|
|
55
|
-
color: rgba(0, 0, 0, 0.65);
|
|
56
60
|
margin: 0;
|
|
57
61
|
}
|
|
62
|
+
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-submenu .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
63
|
+
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-dropdown-menu-submenu .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
64
|
+
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-submenu-vertical .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
65
|
+
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-dropdown-menu-submenu-vertical .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
66
|
+
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-menu-submenu .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
67
|
+
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-menu-submenu .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
68
|
+
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-menu-submenu-vertical .ant-menu-submenu-title:not(.ant-menu-item-active),
|
|
69
|
+
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-menu-submenu-vertical .ant-menu-submenu-title:not(.ant-menu-item-active) {
|
|
70
|
+
color: rgba(0, 0, 0, 0.65);
|
|
71
|
+
}
|
|
58
72
|
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-submenu .ant-menu-submenu-title .ant-dropdown-menu-title-content,
|
|
59
73
|
.antv-s2-tooltip-operator-menus.ant-menu-vertical .ant-dropdown-menu-submenu .ant-menu-submenu-title .ant-dropdown-menu-title-content,
|
|
60
74
|
.antv-s2-tooltip-operator-menus.ant-dropdown-menu-vertical .ant-dropdown-menu-submenu-vertical .ant-menu-submenu-title .ant-dropdown-menu-title-content,
|
|
@@ -78,6 +92,9 @@
|
|
|
78
92
|
font-size: 12px;
|
|
79
93
|
line-height: 32px;
|
|
80
94
|
padding: 0 12px;
|
|
95
|
+
}
|
|
96
|
+
.antv-s2-tooltip-operator-submenu-popup .ant-dropdown-menu-item:not(.ant-menu-item-active),
|
|
97
|
+
.antv-s2-tooltip-operator-submenu-popup .ant-menu-item:not(.ant-menu-item-active) {
|
|
81
98
|
color: rgba(0, 0, 0, 0.65);
|
|
82
99
|
}
|
|
83
100
|
.antv-s2-tooltip-operator-submenu-popup .ant-menu-vertical .ant-menu-item {
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@antv/s2-vue",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.5.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"unpkg": "dist/index.min.js",
|
|
7
7
|
"module": "esm/index.js",
|
|
8
8
|
"types": "esm/index.d.ts",
|
|
9
9
|
"description": "use S2 with vue",
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"homepage": "https://s2.antv.
|
|
11
|
+
"homepage": "https://s2.antv.antgroup.com",
|
|
12
12
|
"author": "https://github.com/orgs/antvis/people",
|
|
13
13
|
"directories": {
|
|
14
14
|
"lib": "lib",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"lodash": "^4.17.21"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@antv/s2": "
|
|
69
|
+
"@antv/s2": "*",
|
|
70
70
|
"@antv/s2-shared": "*",
|
|
71
71
|
"@testing-library/vue": "^6.5.1",
|
|
72
72
|
"@vue/tsconfig": "^0.1.3",
|