@steedos/standard-ui 2.5.12-beta.21 → 2.5.12-beta.22
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: 殷亮辉 yinlianghui@hotoa.com
|
|
3
3
|
* @Date: 2023-05-16 17:00:38
|
|
4
4
|
* @LastEditors: 殷亮辉 yinlianghui@hotoa.com
|
|
5
|
-
* @LastEditTime: 2023-08-
|
|
5
|
+
* @LastEditTime: 2023-08-22 10:41:40
|
|
6
6
|
*/
|
|
7
7
|
var buttonTriggerHistoryPathsChange;
|
|
8
8
|
; (function () {
|
|
@@ -212,10 +212,13 @@ function debounce(fn, delay) {
|
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
function getOpenerLevel(opener,level){
|
|
215
|
+
function getOpenerLevel(opener, level) {
|
|
216
|
+
if (level > 3) {
|
|
217
|
+
return level + 1;
|
|
218
|
+
}
|
|
216
219
|
if (!!opener['opener']) {
|
|
217
220
|
return getOpenerLevel(opener['opener'], level + 1);
|
|
218
|
-
}else{
|
|
219
|
-
|
|
221
|
+
} else {
|
|
222
|
+
return level;
|
|
220
223
|
}
|
|
221
224
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/standard-ui",
|
|
3
|
-
"version": "2.5.12-beta.
|
|
3
|
+
"version": "2.5.12-beta.22",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,5 +12,5 @@
|
|
|
12
12
|
"description": "steedos package",
|
|
13
13
|
"repository": {},
|
|
14
14
|
"license": "MIT",
|
|
15
|
-
"gitHead": "
|
|
15
|
+
"gitHead": "8061d9ea9c14717d8328a411a2ee6a3e943ebbdd"
|
|
16
16
|
}
|