lookbook 2.3.10 → 2.3.11
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.
- checksums.yaml +4 -4
- data/lib/lookbook/engine.rb +33 -34
- data/lib/lookbook/version.rb +1 -1
- data/public/lookbook-assets/js/index.js +154 -154
- data/public/lookbook-assets/js/index.js.map +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d91f464b804e371a0d679c23537e2d3f029a86c34df289ff8010332b64c6b4b7
|
4
|
+
data.tar.gz: '0938778b28ff37108e4918a528dcc138c424ffd9c824bb6ab60e51f6f27e1bc1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22a1dff1b1c1d2fcffe417e5afcedbd1c1e8999a9f8ec118b275f6a783656ace2d824fa1a42e0398a7b06b7b3c873dbb1b1b23a92818158b75c9eee37e351518
|
7
|
+
data.tar.gz: e3f76fda4b95ce57f7ce72928734282e95a3c0ba1ca8e46483fd6c5c773f3eca103f196663c717c46797f54e6c0f9bf18425a35ca3bb4fff70ca883b78cc1f74
|
data/lib/lookbook/engine.rb
CHANGED
@@ -37,51 +37,50 @@ module Lookbook
|
|
37
37
|
if opts.using_view_component
|
38
38
|
vc_config = Engine.host_config.view_component
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
vc_config.previews.paths
|
44
|
-
end
|
45
|
-
|
46
|
-
vc_config.preview_controller.present? ? vc_config.preview_controller : vc_config.previews.controller
|
40
|
+
if vc_config.key?(:previews)
|
41
|
+
# New config style (ViewComponent >= 4.0)
|
42
|
+
opts.preview_paths += vc_config.previews.paths
|
47
43
|
|
48
|
-
|
49
|
-
|
50
|
-
|
44
|
+
if opts.preview_controller == "Lookbook::PreviewController" ||
|
45
|
+
vc_config.previews.controller != "ViewComponentsController"
|
46
|
+
opts.preview_controller = vc_config.previews.controller
|
47
|
+
else
|
48
|
+
vc_config.previews.controller = opts.preview_controller
|
49
|
+
end
|
51
50
|
|
52
|
-
opts.
|
53
|
-
vc_config.
|
51
|
+
if opts.preview_layout.nil? || vc_config.previews.default_layout.present?
|
52
|
+
opts.preview_layout = vc_config.previews.default_layout
|
54
53
|
else
|
55
|
-
vc_config.previews.
|
54
|
+
vc_config.previews.default_layout = opts.preview_layout
|
55
|
+
end
|
56
|
+
|
57
|
+
vc_config.previews.enabled = true
|
58
|
+
|
59
|
+
if vc_config.generate.path.present?
|
60
|
+
opts.component_paths << vc_config.generate.path
|
56
61
|
end
|
57
|
-
elsif vc_config.preview_controller.present?
|
58
|
-
vc_config.preview_controller = opts.preview_controller
|
59
62
|
else
|
60
|
-
|
61
|
-
|
63
|
+
# Legacy config style (ViewComponent < 4.0)
|
64
|
+
opts.preview_paths += vc_config.preview_paths
|
62
65
|
|
63
|
-
|
64
|
-
|
65
|
-
vc_config.
|
66
|
+
if opts.preview_controller == "Lookbook::PreviewController" ||
|
67
|
+
vc_config.preview_controller != ViewComponent::Config.defaults.preview_controller
|
68
|
+
opts.preview_controller = vc_config.preview_controller
|
66
69
|
else
|
67
|
-
vc_config.
|
70
|
+
vc_config.preview_controller = opts.preview_controller
|
71
|
+
end
|
72
|
+
|
73
|
+
if opts.preview_layout.nil? || vc_config.default_preview_layout.present?
|
74
|
+
opts.preview_layout = vc_config.default_preview_layout
|
75
|
+
else
|
76
|
+
vc_config.default_preview_layout = opts.preview_layout
|
68
77
|
end
|
69
|
-
elsif vc_config.default_preview_layout.present?
|
70
|
-
vc_config.default_preview_layout = opts.preview_layout
|
71
|
-
else
|
72
|
-
vc_config.previews.default_layout = opts.preview_layout
|
73
|
-
end
|
74
78
|
|
75
|
-
if vc_config.show_previews.present?
|
76
79
|
vc_config.show_previews = true
|
77
|
-
else
|
78
|
-
vc_config.previews.enabled = true
|
79
|
-
end
|
80
80
|
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
opts.component_paths << vc_config.generate.path
|
81
|
+
if vc_config.view_component_path.present?
|
82
|
+
opts.component_paths << vc_config.view_component_path
|
83
|
+
end
|
85
84
|
end
|
86
85
|
|
87
86
|
ViewComponent::Preview.extend(Lookbook::PreviewAfterRender)
|
data/lib/lookbook/version.rb
CHANGED
@@ -8030,17 +8030,7 @@ function $12b7aa006b8a97e1$var$toCamel(s) {
|
|
8030
8030
|
}
|
8031
8031
|
|
8032
8032
|
|
8033
|
-
var $
|
8034
|
-
var $99486586f6691564$exports = {};
|
8035
|
-
|
8036
|
-
$parcel$defineInteropFlag($99486586f6691564$exports);
|
8037
|
-
|
8038
|
-
$parcel$export($99486586f6691564$exports, "default", () => $99486586f6691564$export$2e2bcd8739ae039);
|
8039
|
-
function $99486586f6691564$export$2e2bcd8739ae039() {
|
8040
|
-
return {};
|
8041
|
-
}
|
8042
|
-
|
8043
|
-
|
8033
|
+
var $c9dfaeb25bf110ce$exports = {};
|
8044
8034
|
var $cbd28b10fa9798c7$exports = {};
|
8045
8035
|
|
8046
8036
|
$parcel$defineInteropFlag($cbd28b10fa9798c7$exports);
|
@@ -11561,6 +11551,16 @@ function $cbd28b10fa9798c7$export$2e2bcd8739ae039() {
|
|
11561
11551
|
}
|
11562
11552
|
|
11563
11553
|
|
11554
|
+
var $99486586f6691564$exports = {};
|
11555
|
+
|
11556
|
+
$parcel$defineInteropFlag($99486586f6691564$exports);
|
11557
|
+
|
11558
|
+
$parcel$export($99486586f6691564$exports, "default", () => $99486586f6691564$export$2e2bcd8739ae039);
|
11559
|
+
function $99486586f6691564$export$2e2bcd8739ae039() {
|
11560
|
+
return {};
|
11561
|
+
}
|
11562
|
+
|
11563
|
+
|
11564
11564
|
var $47a1c62621be0c54$exports = {};
|
11565
11565
|
|
11566
11566
|
$parcel$defineInteropFlag($47a1c62621be0c54$exports);
|
@@ -11729,126 +11729,6 @@ function $d92d9d5253f84566$export$2e2bcd8739ae039(store) {
|
|
11729
11729
|
}
|
11730
11730
|
|
11731
11731
|
|
11732
|
-
var $a87dacf5139b5e2f$exports = {};
|
11733
|
-
|
11734
|
-
$parcel$defineInteropFlag($a87dacf5139b5e2f$exports);
|
11735
|
-
|
11736
|
-
$parcel$export($a87dacf5139b5e2f$exports, "default", () => $a87dacf5139b5e2f$export$2e2bcd8739ae039);
|
11737
|
-
function $a87dacf5139b5e2f$export$2e2bcd8739ae039(store) {
|
11738
|
-
return {
|
11739
|
-
get store () {
|
11740
|
-
return store || this;
|
11741
|
-
},
|
11742
|
-
get id () {
|
11743
|
-
return this.$root.id;
|
11744
|
-
},
|
11745
|
-
get panels () {
|
11746
|
-
return Array.from(this.$refs.panels.children);
|
11747
|
-
},
|
11748
|
-
isActive (el) {
|
11749
|
-
return this.store.activeTab === this._getRef(el);
|
11750
|
-
},
|
11751
|
-
// protected
|
11752
|
-
_getRef (el) {
|
11753
|
-
return el.getAttribute("x-ref");
|
11754
|
-
}
|
11755
|
-
};
|
11756
|
-
}
|
11757
|
-
|
11758
|
-
|
11759
|
-
var $0db07828cadc68e0$exports = {};
|
11760
|
-
|
11761
|
-
$parcel$defineInteropFlag($0db07828cadc68e0$exports);
|
11762
|
-
|
11763
|
-
$parcel$export($0db07828cadc68e0$exports, "default", () => $0db07828cadc68e0$export$2e2bcd8739ae039);
|
11764
|
-
|
11765
|
-
|
11766
|
-
|
11767
|
-
|
11768
|
-
function $0db07828cadc68e0$export$2e2bcd8739ae039(store) {
|
11769
|
-
const initial = store ? store.activeTab : null;
|
11770
|
-
let dropdown = null;
|
11771
|
-
return {
|
11772
|
-
visibleTabsCount: 0,
|
11773
|
-
triggerLeft: 0,
|
11774
|
-
get store () {
|
11775
|
-
return store || this;
|
11776
|
-
},
|
11777
|
-
get tabs () {
|
11778
|
-
return this.$refs.tabs ? Array.from(this.$refs.tabs.children) : [];
|
11779
|
-
},
|
11780
|
-
get dropdownTabs () {
|
11781
|
-
return Array.from(this.$refs.tabsDropdown ? this.$refs.tabsDropdown.children : []);
|
11782
|
-
},
|
11783
|
-
get tabWidths () {
|
11784
|
-
return this.tabs.map((tab)=>(0, $490552754c23ef6f$export$bdf7e699b242f476)(tab, {
|
11785
|
-
includeMargins: true
|
11786
|
-
}).width);
|
11787
|
-
},
|
11788
|
-
init () {
|
11789
|
-
this.$nextTick(()=>{
|
11790
|
-
if (this.$root.parentElement.offsetWidth === this.$root.offsetWidth) this.visibleTabsCount = this.tabs.length;
|
11791
|
-
dropdown = (0, $789b7d27a7c715a6$export$2e2bcd8739ae039)(this.$refs.dropdownTrigger, {
|
11792
|
-
content: this.$refs.tabsDropdown,
|
11793
|
-
theme: "menu",
|
11794
|
-
interactive: true,
|
11795
|
-
trigger: "click",
|
11796
|
-
placement: "bottom",
|
11797
|
-
appendTo: this.$root
|
11798
|
-
});
|
11799
|
-
const initialTab = initial ? this.tabs.find((t)=>this._getRef(t) === initial) : this.tabs[0];
|
11800
|
-
this.selectTab(initialTab || this.tabs[0], true);
|
11801
|
-
this.parentObserver = (0, $7ecd1fc3a6b35e5c$export$a2214cc2adb2dc44)(this.$root.parentElement, (0, $c5d017602d25d050$export$61fc7d43ac8f84b0)(10, this.handleResize.bind(this)));
|
11802
|
-
this.$watch("visibleTabsCount", (value)=>{
|
11803
|
-
this.debug(`'#${this.$root.id}' visible tabs count:`, value);
|
11804
|
-
});
|
11805
|
-
});
|
11806
|
-
},
|
11807
|
-
handleResize ({ width: width }) {
|
11808
|
-
if (width === this._lastMeasuredWidth) return;
|
11809
|
-
if (width === this.$root.offsetWidth) {
|
11810
|
-
this.visibleTabsCount = this.tabs.length;
|
11811
|
-
return;
|
11812
|
-
}
|
11813
|
-
let sumTabWidths = 60;
|
11814
|
-
let triggerLeft = 20;
|
11815
|
-
let visibleTabsCount = 0;
|
11816
|
-
this.tabWidths.forEach((tabWidth)=>{
|
11817
|
-
sumTabWidths += tabWidth;
|
11818
|
-
if (sumTabWidths < width) {
|
11819
|
-
triggerLeft += tabWidth;
|
11820
|
-
visibleTabsCount++;
|
11821
|
-
}
|
11822
|
-
});
|
11823
|
-
this.visibleTabsCount = visibleTabsCount;
|
11824
|
-
this.triggerLeft = triggerLeft;
|
11825
|
-
this._lastMeasuredWidth = width;
|
11826
|
-
},
|
11827
|
-
selectTab (el, initial = false) {
|
11828
|
-
this.store.activeTab = this._getRef(el);
|
11829
|
-
dropdown.hide();
|
11830
|
-
if (!initial) this.$dispatch("tabs:change", {
|
11831
|
-
tabs: this
|
11832
|
-
});
|
11833
|
-
},
|
11834
|
-
isSelected (el) {
|
11835
|
-
return this.store.activeTab === this._getRef(el);
|
11836
|
-
},
|
11837
|
-
isDisabled (el) {
|
11838
|
-
return el.getAttribute("data-disabled") == "true";
|
11839
|
-
},
|
11840
|
-
hasHiddenTabs () {
|
11841
|
-
return this.visibleTabsCount < this.tabs.length;
|
11842
|
-
},
|
11843
|
-
// protected
|
11844
|
-
_lastMeasuredWidth: 0,
|
11845
|
-
_getRef (el) {
|
11846
|
-
return el ? el.getAttribute("x-ref").replace("dropdown-", "") : null;
|
11847
|
-
}
|
11848
|
-
};
|
11849
|
-
}
|
11850
|
-
|
11851
|
-
|
11852
11732
|
var $506dabb2bf255b38$exports = {};
|
11853
11733
|
|
11854
11734
|
$parcel$defineInteropFlag($506dabb2bf255b38$exports);
|
@@ -12399,6 +12279,126 @@ function $506dabb2bf255b38$var$sizeSplits(sizes) {
|
|
12399
12279
|
}
|
12400
12280
|
|
12401
12281
|
|
12282
|
+
var $a87dacf5139b5e2f$exports = {};
|
12283
|
+
|
12284
|
+
$parcel$defineInteropFlag($a87dacf5139b5e2f$exports);
|
12285
|
+
|
12286
|
+
$parcel$export($a87dacf5139b5e2f$exports, "default", () => $a87dacf5139b5e2f$export$2e2bcd8739ae039);
|
12287
|
+
function $a87dacf5139b5e2f$export$2e2bcd8739ae039(store) {
|
12288
|
+
return {
|
12289
|
+
get store () {
|
12290
|
+
return store || this;
|
12291
|
+
},
|
12292
|
+
get id () {
|
12293
|
+
return this.$root.id;
|
12294
|
+
},
|
12295
|
+
get panels () {
|
12296
|
+
return Array.from(this.$refs.panels.children);
|
12297
|
+
},
|
12298
|
+
isActive (el) {
|
12299
|
+
return this.store.activeTab === this._getRef(el);
|
12300
|
+
},
|
12301
|
+
// protected
|
12302
|
+
_getRef (el) {
|
12303
|
+
return el.getAttribute("x-ref");
|
12304
|
+
}
|
12305
|
+
};
|
12306
|
+
}
|
12307
|
+
|
12308
|
+
|
12309
|
+
var $0db07828cadc68e0$exports = {};
|
12310
|
+
|
12311
|
+
$parcel$defineInteropFlag($0db07828cadc68e0$exports);
|
12312
|
+
|
12313
|
+
$parcel$export($0db07828cadc68e0$exports, "default", () => $0db07828cadc68e0$export$2e2bcd8739ae039);
|
12314
|
+
|
12315
|
+
|
12316
|
+
|
12317
|
+
|
12318
|
+
function $0db07828cadc68e0$export$2e2bcd8739ae039(store) {
|
12319
|
+
const initial = store ? store.activeTab : null;
|
12320
|
+
let dropdown = null;
|
12321
|
+
return {
|
12322
|
+
visibleTabsCount: 0,
|
12323
|
+
triggerLeft: 0,
|
12324
|
+
get store () {
|
12325
|
+
return store || this;
|
12326
|
+
},
|
12327
|
+
get tabs () {
|
12328
|
+
return this.$refs.tabs ? Array.from(this.$refs.tabs.children) : [];
|
12329
|
+
},
|
12330
|
+
get dropdownTabs () {
|
12331
|
+
return Array.from(this.$refs.tabsDropdown ? this.$refs.tabsDropdown.children : []);
|
12332
|
+
},
|
12333
|
+
get tabWidths () {
|
12334
|
+
return this.tabs.map((tab)=>(0, $490552754c23ef6f$export$bdf7e699b242f476)(tab, {
|
12335
|
+
includeMargins: true
|
12336
|
+
}).width);
|
12337
|
+
},
|
12338
|
+
init () {
|
12339
|
+
this.$nextTick(()=>{
|
12340
|
+
if (this.$root.parentElement.offsetWidth === this.$root.offsetWidth) this.visibleTabsCount = this.tabs.length;
|
12341
|
+
dropdown = (0, $789b7d27a7c715a6$export$2e2bcd8739ae039)(this.$refs.dropdownTrigger, {
|
12342
|
+
content: this.$refs.tabsDropdown,
|
12343
|
+
theme: "menu",
|
12344
|
+
interactive: true,
|
12345
|
+
trigger: "click",
|
12346
|
+
placement: "bottom",
|
12347
|
+
appendTo: this.$root
|
12348
|
+
});
|
12349
|
+
const initialTab = initial ? this.tabs.find((t)=>this._getRef(t) === initial) : this.tabs[0];
|
12350
|
+
this.selectTab(initialTab || this.tabs[0], true);
|
12351
|
+
this.parentObserver = (0, $7ecd1fc3a6b35e5c$export$a2214cc2adb2dc44)(this.$root.parentElement, (0, $c5d017602d25d050$export$61fc7d43ac8f84b0)(10, this.handleResize.bind(this)));
|
12352
|
+
this.$watch("visibleTabsCount", (value)=>{
|
12353
|
+
this.debug(`'#${this.$root.id}' visible tabs count:`, value);
|
12354
|
+
});
|
12355
|
+
});
|
12356
|
+
},
|
12357
|
+
handleResize ({ width: width }) {
|
12358
|
+
if (width === this._lastMeasuredWidth) return;
|
12359
|
+
if (width === this.$root.offsetWidth) {
|
12360
|
+
this.visibleTabsCount = this.tabs.length;
|
12361
|
+
return;
|
12362
|
+
}
|
12363
|
+
let sumTabWidths = 60;
|
12364
|
+
let triggerLeft = 20;
|
12365
|
+
let visibleTabsCount = 0;
|
12366
|
+
this.tabWidths.forEach((tabWidth)=>{
|
12367
|
+
sumTabWidths += tabWidth;
|
12368
|
+
if (sumTabWidths < width) {
|
12369
|
+
triggerLeft += tabWidth;
|
12370
|
+
visibleTabsCount++;
|
12371
|
+
}
|
12372
|
+
});
|
12373
|
+
this.visibleTabsCount = visibleTabsCount;
|
12374
|
+
this.triggerLeft = triggerLeft;
|
12375
|
+
this._lastMeasuredWidth = width;
|
12376
|
+
},
|
12377
|
+
selectTab (el, initial = false) {
|
12378
|
+
this.store.activeTab = this._getRef(el);
|
12379
|
+
dropdown.hide();
|
12380
|
+
if (!initial) this.$dispatch("tabs:change", {
|
12381
|
+
tabs: this
|
12382
|
+
});
|
12383
|
+
},
|
12384
|
+
isSelected (el) {
|
12385
|
+
return this.store.activeTab === this._getRef(el);
|
12386
|
+
},
|
12387
|
+
isDisabled (el) {
|
12388
|
+
return el.getAttribute("data-disabled") == "true";
|
12389
|
+
},
|
12390
|
+
hasHiddenTabs () {
|
12391
|
+
return this.visibleTabsCount < this.tabs.length;
|
12392
|
+
},
|
12393
|
+
// protected
|
12394
|
+
_lastMeasuredWidth: 0,
|
12395
|
+
_getRef (el) {
|
12396
|
+
return el ? el.getAttribute("x-ref").replace("dropdown-", "") : null;
|
12397
|
+
}
|
12398
|
+
};
|
12399
|
+
}
|
12400
|
+
|
12401
|
+
|
12402
12402
|
var $6d64716f0b34fdf4$exports = {};
|
12403
12403
|
|
12404
12404
|
$parcel$defineInteropFlag($6d64716f0b34fdf4$exports);
|
@@ -12526,22 +12526,22 @@ function $6d64716f0b34fdf4$export$2e2bcd8739ae039(store) {
|
|
12526
12526
|
}
|
12527
12527
|
|
12528
12528
|
|
12529
|
-
$
|
12530
|
-
"code": $99486586f6691564$exports,
|
12529
|
+
$c9dfaeb25bf110ce$exports = {
|
12531
12530
|
"button": $cbd28b10fa9798c7$exports,
|
12531
|
+
"code": $99486586f6691564$exports,
|
12532
12532
|
"copy_button": $47a1c62621be0c54$exports,
|
12533
12533
|
"dimensions_display": $e398acaded942bbe$exports,
|
12534
12534
|
"embed_code_dropdown": $216ef7001f59f21d$exports,
|
12535
12535
|
"filter": $e9904a14dabf652d$exports,
|
12536
12536
|
"nav": $d92d9d5253f84566$exports,
|
12537
|
+
"split_layout": $506dabb2bf255b38$exports,
|
12537
12538
|
"tab_panels": $a87dacf5139b5e2f$exports,
|
12538
12539
|
"tabs": $0db07828cadc68e0$exports,
|
12539
|
-
"split_layout": $506dabb2bf255b38$exports,
|
12540
12540
|
"viewport": $6d64716f0b34fdf4$exports
|
12541
12541
|
};
|
12542
12542
|
|
12543
12543
|
|
12544
|
-
var $
|
12544
|
+
var $6178ee12f80cbf68$exports = {};
|
12545
12545
|
var $6a9b69d9cc7f810f$exports = {};
|
12546
12546
|
|
12547
12547
|
$parcel$defineInteropFlag($6a9b69d9cc7f810f$exports);
|
@@ -13609,20 +13609,6 @@ function $9b24cbeb3a465447$export$2e2bcd8739ae039({ id: id, matchers: matchers }
|
|
13609
13609
|
}
|
13610
13610
|
|
13611
13611
|
|
13612
|
-
var $e773f8ef556b41ff$exports = {};
|
13613
|
-
|
13614
|
-
$parcel$defineInteropFlag($e773f8ef556b41ff$exports);
|
13615
|
-
|
13616
|
-
$parcel$export($e773f8ef556b41ff$exports, "default", () => $e773f8ef556b41ff$export$2e2bcd8739ae039);
|
13617
|
-
function $e773f8ef556b41ff$export$2e2bcd8739ae039() {
|
13618
|
-
return {
|
13619
|
-
get isNarrowLayout () {
|
13620
|
-
return this.narrow || false;
|
13621
|
-
}
|
13622
|
-
};
|
13623
|
-
}
|
13624
|
-
|
13625
|
-
|
13626
13612
|
var $1a7a7298eec5b755$exports = {};
|
13627
13613
|
|
13628
13614
|
$parcel$defineInteropFlag($1a7a7298eec5b755$exports);
|
@@ -13641,7 +13627,21 @@ function $1a7a7298eec5b755$export$2e2bcd8739ae039() {
|
|
13641
13627
|
}
|
13642
13628
|
|
13643
13629
|
|
13644
|
-
$
|
13630
|
+
var $e773f8ef556b41ff$exports = {};
|
13631
|
+
|
13632
|
+
$parcel$defineInteropFlag($e773f8ef556b41ff$exports);
|
13633
|
+
|
13634
|
+
$parcel$export($e773f8ef556b41ff$exports, "default", () => $e773f8ef556b41ff$export$2e2bcd8739ae039);
|
13635
|
+
function $e773f8ef556b41ff$export$2e2bcd8739ae039() {
|
13636
|
+
return {
|
13637
|
+
get isNarrowLayout () {
|
13638
|
+
return this.narrow || false;
|
13639
|
+
}
|
13640
|
+
};
|
13641
|
+
}
|
13642
|
+
|
13643
|
+
|
13644
|
+
$6178ee12f80cbf68$exports = {
|
13645
13645
|
"display_options": {
|
13646
13646
|
"field": $6a9b69d9cc7f810f$exports
|
13647
13647
|
},
|
@@ -13652,8 +13652,8 @@ $3821a3a183a9a321$exports = {
|
|
13652
13652
|
"item": $9b24cbeb3a465447$exports
|
13653
13653
|
},
|
13654
13654
|
"params": {
|
13655
|
-
"
|
13656
|
-
"
|
13655
|
+
"editor": $1a7a7298eec5b755$exports,
|
13656
|
+
"field": $e773f8ef556b41ff$exports
|
13657
13657
|
}
|
13658
13658
|
};
|
13659
13659
|
|
@@ -13721,8 +13721,8 @@ const $22969b543678f572$var$prefix = window.APP_NAME;
|
|
13721
13721
|
// Components
|
13722
13722
|
(0, $caa9439642c6336c$export$2e2bcd8739ae039).data("app", (0, $5792afa4170ed552$export$2e2bcd8739ae039));
|
13723
13723
|
[
|
13724
|
-
$
|
13725
|
-
$
|
13724
|
+
$c9dfaeb25bf110ce$exports,
|
13725
|
+
$6178ee12f80cbf68$exports,
|
13726
13726
|
$d56e5cced44001d2$exports
|
13727
13727
|
].forEach((scripts)=>{
|
13728
13728
|
const components = (0, $12b7aa006b8a97e1$export$4e811121b221213b)(scripts);
|