@testid/antd-testid-runtime 1.0.5 → 1.0.6
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/dist/index.js +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +8 -2
package/dist/index.js
CHANGED
|
@@ -187,7 +187,12 @@ var POPUP_CLASS_SUFFIX_MAP = {
|
|
|
187
187
|
modal: ["-modal"],
|
|
188
188
|
drawer: ["-drawer"],
|
|
189
189
|
select: ["-select-dropdown"],
|
|
190
|
-
datePicker: [
|
|
190
|
+
datePicker: [
|
|
191
|
+
"-picker-dropdown",
|
|
192
|
+
// Ant Design Vue 4.x (新)
|
|
193
|
+
"-calendar-picker-container"
|
|
194
|
+
// Ant Design Vue 1.x (旧)
|
|
195
|
+
],
|
|
191
196
|
popconfirm: ["-popover", "-popconfirm"],
|
|
192
197
|
dropdown: ["-dropdown"],
|
|
193
198
|
tooltip: ["-tooltip"]
|
package/dist/index.mjs
CHANGED
|
@@ -145,7 +145,12 @@ var POPUP_CLASS_SUFFIX_MAP = {
|
|
|
145
145
|
modal: ["-modal"],
|
|
146
146
|
drawer: ["-drawer"],
|
|
147
147
|
select: ["-select-dropdown"],
|
|
148
|
-
datePicker: [
|
|
148
|
+
datePicker: [
|
|
149
|
+
"-picker-dropdown",
|
|
150
|
+
// Ant Design Vue 4.x (新)
|
|
151
|
+
"-calendar-picker-container"
|
|
152
|
+
// Ant Design Vue 1.x (旧)
|
|
153
|
+
],
|
|
149
154
|
popconfirm: ["-popover", "-popconfirm"],
|
|
150
155
|
dropdown: ["-dropdown"],
|
|
151
156
|
tooltip: ["-tooltip"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testid/antd-testid-runtime",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "运行时兜底打标模块 — MutationObserver + 锚点计数器 + 浮层计数器 + ID 重复检测",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/testid/testid-plugins.git",
|
|
21
|
+
"directory": "packages/antd-testid-runtime"
|
|
22
|
+
},
|
|
23
|
+
|
|
18
24
|
"scripts": {
|
|
19
25
|
"build": "tsup src/index.ts --dts --format esm,cjs --clean",
|
|
20
26
|
"dev": "tsup src/index.ts --dts --format esm,cjs --watch"
|
|
@@ -24,4 +30,4 @@
|
|
|
24
30
|
"tsup": "^8.0.0",
|
|
25
31
|
"typescript": "^5.3.0"
|
|
26
32
|
}
|
|
27
|
-
}
|
|
33
|
+
}
|