@symbo.ls/create 2.11.373 → 2.11.375
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/cjs/bundle/index.js +1 -2
- package/package.json +2 -2
package/dist/cjs/bundle/index.js
CHANGED
|
@@ -14676,12 +14676,11 @@ var init_devFocus = __esm({
|
|
|
14676
14676
|
return (0, import_utils8.isString)(extend) ? extend : (0, import_utils8.isArray)(extend) ? extend.find((extItem) => (0, import_utils8.isString)(extItem)) : "";
|
|
14677
14677
|
};
|
|
14678
14678
|
getComponentKey = (el) => {
|
|
14679
|
-
var _a, _b;
|
|
14680
14679
|
if (!el)
|
|
14681
14680
|
return;
|
|
14682
14681
|
const __componentKey = el.__ref.__componentKey;
|
|
14683
14682
|
const extendStr = el.extend && returnStringExtend(el.extend);
|
|
14684
|
-
const parentChildExtendStr =
|
|
14683
|
+
const parentChildExtendStr = el.parent && el.parent.childExtend && returnStringExtend(el.parent.childExtend);
|
|
14685
14684
|
return (__componentKey || extendStr || parentChildExtendStr || "").split("_")[0].split(".")[0].split("+")[0];
|
|
14686
14685
|
};
|
|
14687
14686
|
DevFocus = {
|
package/package.json
CHANGED