@design.estate/dees-catalog 3.46.0 → 3.47.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/dist_bundle/bundle.js +1301 -368
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/00group-appui/dees-appui/dees-appui.js +3 -1
- package/dist_ts_web/elements/00group-dataview/dees-statsgrid/dees-statsgrid.js +30 -3
- package/dist_watch/bundle.js +1326 -384
- package/dist_watch/bundle.js.map +4 -4
- package/package.json +2 -2
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/00group-appui/dees-appui/dees-appui.ts +2 -0
- package/ts_web/elements/00group-dataview/dees-statsgrid/dees-statsgrid.ts +29 -0
package/dist_bundle/bundle.js
CHANGED
|
@@ -6250,9 +6250,9 @@ var init_property2 = __esm({
|
|
|
6250
6250
|
}
|
|
6251
6251
|
});
|
|
6252
6252
|
|
|
6253
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
6253
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.colors.js
|
|
6254
6254
|
var init_domtools_colors = __esm({
|
|
6255
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
6255
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.colors.js"() {
|
|
6256
6256
|
}
|
|
6257
6257
|
});
|
|
6258
6258
|
|
|
@@ -50332,10 +50332,10 @@ var require_sweet_scroll = __commonJS({
|
|
|
50332
50332
|
};
|
|
50333
50333
|
var CONTAINER_CLICK_EVENT = "click";
|
|
50334
50334
|
var CONTAINER_STOP_EVENT = "wheel touchstart touchmove";
|
|
50335
|
-
var
|
|
50335
|
+
var SweetScroll5 = (
|
|
50336
50336
|
/** @class */
|
|
50337
50337
|
(function() {
|
|
50338
|
-
function
|
|
50338
|
+
function SweetScroll6(options, container) {
|
|
50339
50339
|
var _this = this;
|
|
50340
50340
|
this.$el = null;
|
|
50341
50341
|
this.ctx = {
|
|
@@ -50379,7 +50379,7 @@ var require_sweet_scroll = __commonJS({
|
|
|
50379
50379
|
});
|
|
50380
50380
|
if (timeElapsed <= duration) {
|
|
50381
50381
|
_this.hook(options2, "step", t9);
|
|
50382
|
-
ctx.id =
|
|
50382
|
+
ctx.id = SweetScroll6.raf(_this.loop);
|
|
50383
50383
|
} else {
|
|
50384
50384
|
_this.stop(true);
|
|
50385
50385
|
}
|
|
@@ -50439,10 +50439,10 @@ var require_sweet_scroll = __commonJS({
|
|
|
50439
50439
|
this.bind(true, false);
|
|
50440
50440
|
}
|
|
50441
50441
|
}
|
|
50442
|
-
|
|
50443
|
-
return new
|
|
50442
|
+
SweetScroll6.create = function(options, container) {
|
|
50443
|
+
return new SweetScroll6(options, container);
|
|
50444
50444
|
};
|
|
50445
|
-
|
|
50445
|
+
SweetScroll6.prototype.to = function(distance, options) {
|
|
50446
50446
|
if (!canUseDOM) {
|
|
50447
50447
|
return;
|
|
50448
50448
|
}
|
|
@@ -50496,20 +50496,20 @@ var require_sweet_scroll = __commonJS({
|
|
|
50496
50496
|
this.start(opts);
|
|
50497
50497
|
this.bind(false, true);
|
|
50498
50498
|
};
|
|
50499
|
-
|
|
50499
|
+
SweetScroll6.prototype.toTop = function(distance, options) {
|
|
50500
50500
|
this.to(distance, __assign2({}, options || {}, { vertical: true, horizontal: false }));
|
|
50501
50501
|
};
|
|
50502
|
-
|
|
50502
|
+
SweetScroll6.prototype.toLeft = function(distance, options) {
|
|
50503
50503
|
this.to(distance, __assign2({}, options || {}, { vertical: false, horizontal: true }));
|
|
50504
50504
|
};
|
|
50505
|
-
|
|
50505
|
+
SweetScroll6.prototype.toElement = function($element, options) {
|
|
50506
50506
|
var $el = this.$el;
|
|
50507
50507
|
if (!canUseDOM || !$el) {
|
|
50508
50508
|
return;
|
|
50509
50509
|
}
|
|
50510
50510
|
this.to(getOffset($element, $el), options || {});
|
|
50511
50511
|
};
|
|
50512
|
-
|
|
50512
|
+
SweetScroll6.prototype.stop = function(gotoEnd) {
|
|
50513
50513
|
if (gotoEnd === void 0) {
|
|
50514
50514
|
gotoEnd = false;
|
|
50515
50515
|
}
|
|
@@ -50518,7 +50518,7 @@ var require_sweet_scroll = __commonJS({
|
|
|
50518
50518
|
if (!$el || !ctx.progress) {
|
|
50519
50519
|
return;
|
|
50520
50520
|
}
|
|
50521
|
-
|
|
50521
|
+
SweetScroll6.caf(ctx.id);
|
|
50522
50522
|
ctx.progress = false;
|
|
50523
50523
|
ctx.start = 0;
|
|
50524
50524
|
ctx.id = 0;
|
|
@@ -50528,7 +50528,7 @@ var require_sweet_scroll = __commonJS({
|
|
|
50528
50528
|
}
|
|
50529
50529
|
this.complete();
|
|
50530
50530
|
};
|
|
50531
|
-
|
|
50531
|
+
SweetScroll6.prototype.update = function(options) {
|
|
50532
50532
|
if (this.$el) {
|
|
50533
50533
|
var opts = __assign2({}, this.opts, options);
|
|
50534
50534
|
this.stop();
|
|
@@ -50537,25 +50537,25 @@ var require_sweet_scroll = __commonJS({
|
|
|
50537
50537
|
this.bind(true, false);
|
|
50538
50538
|
}
|
|
50539
50539
|
};
|
|
50540
|
-
|
|
50540
|
+
SweetScroll6.prototype.destroy = function() {
|
|
50541
50541
|
if (this.$el) {
|
|
50542
50542
|
this.stop();
|
|
50543
50543
|
this.unbind(true, true);
|
|
50544
50544
|
this.$el = null;
|
|
50545
50545
|
}
|
|
50546
50546
|
};
|
|
50547
|
-
|
|
50547
|
+
SweetScroll6.prototype.onBefore = function(_4, __) {
|
|
50548
50548
|
return true;
|
|
50549
50549
|
};
|
|
50550
|
-
|
|
50550
|
+
SweetScroll6.prototype.onStep = function(_4) {
|
|
50551
50551
|
};
|
|
50552
|
-
|
|
50552
|
+
SweetScroll6.prototype.onAfter = function(_4, __) {
|
|
50553
50553
|
};
|
|
50554
|
-
|
|
50554
|
+
SweetScroll6.prototype.onCancel = function() {
|
|
50555
50555
|
};
|
|
50556
|
-
|
|
50556
|
+
SweetScroll6.prototype.onComplete = function(_4) {
|
|
50557
50557
|
};
|
|
50558
|
-
|
|
50558
|
+
SweetScroll6.prototype.start = function(opts) {
|
|
50559
50559
|
var ctx = this.ctx;
|
|
50560
50560
|
ctx.opts = opts;
|
|
50561
50561
|
ctx.progress = true;
|
|
@@ -50566,9 +50566,9 @@ var require_sweet_scroll = __commonJS({
|
|
|
50566
50566
|
left: getScroll($container, "x")
|
|
50567
50567
|
};
|
|
50568
50568
|
ctx.startPos = start;
|
|
50569
|
-
ctx.id =
|
|
50569
|
+
ctx.id = SweetScroll6.raf(this.loop);
|
|
50570
50570
|
};
|
|
50571
|
-
|
|
50571
|
+
SweetScroll6.prototype.complete = function() {
|
|
50572
50572
|
var _a97 = this, $el = _a97.$el, ctx = _a97.ctx;
|
|
50573
50573
|
var hash = ctx.hash, cancel = ctx.cancel, opts = ctx.opts, pos = ctx.pos, $trigger = ctx.$trigger;
|
|
50574
50574
|
if (!$el || !opts) {
|
|
@@ -50590,7 +50590,7 @@ var require_sweet_scroll = __commonJS({
|
|
|
50590
50590
|
}
|
|
50591
50591
|
this.hook(opts, "complete", cancel);
|
|
50592
50592
|
};
|
|
50593
|
-
|
|
50593
|
+
SweetScroll6.prototype.hook = function(options, type5) {
|
|
50594
50594
|
var args = [];
|
|
50595
50595
|
for (var _i = 2; _i < arguments.length; _i++) {
|
|
50596
50596
|
args[_i - 2] = arguments[_i];
|
|
@@ -50605,7 +50605,7 @@ var require_sweet_scroll = __commonJS({
|
|
|
50605
50605
|
methodResult = (_a97 = this)["on" + (type5[0].toUpperCase() + type5.slice(1))].apply(_a97, args);
|
|
50606
50606
|
return callbackResult !== void 0 ? callbackResult : methodResult;
|
|
50607
50607
|
};
|
|
50608
|
-
|
|
50608
|
+
SweetScroll6.prototype.bind = function(click, stop) {
|
|
50609
50609
|
var _a97 = this, $el = _a97.$el, opts = _a97.ctx.opts;
|
|
50610
50610
|
if ($el) {
|
|
50611
50611
|
if (click) {
|
|
@@ -50616,7 +50616,7 @@ var require_sweet_scroll = __commonJS({
|
|
|
50616
50616
|
}
|
|
50617
50617
|
}
|
|
50618
50618
|
};
|
|
50619
|
-
|
|
50619
|
+
SweetScroll6.prototype.unbind = function(click, stop) {
|
|
50620
50620
|
var _a97 = this, $el = _a97.$el, opts = _a97.ctx.opts;
|
|
50621
50621
|
if ($el) {
|
|
50622
50622
|
if (click) {
|
|
@@ -50627,20 +50627,20 @@ var require_sweet_scroll = __commonJS({
|
|
|
50627
50627
|
}
|
|
50628
50628
|
}
|
|
50629
50629
|
};
|
|
50630
|
-
|
|
50631
|
-
|
|
50632
|
-
return
|
|
50630
|
+
SweetScroll6.raf = raf;
|
|
50631
|
+
SweetScroll6.caf = caf;
|
|
50632
|
+
return SweetScroll6;
|
|
50633
50633
|
})()
|
|
50634
50634
|
);
|
|
50635
|
-
return
|
|
50635
|
+
return SweetScroll5;
|
|
50636
50636
|
});
|
|
50637
50637
|
}
|
|
50638
50638
|
});
|
|
50639
50639
|
|
|
50640
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50640
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.plugins.js
|
|
50641
50641
|
var import_sweet_scroll, lik;
|
|
50642
50642
|
var init_domtools_plugins = __esm({
|
|
50643
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50643
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.plugins.js"() {
|
|
50644
50644
|
init_dist_ts18();
|
|
50645
50645
|
init_dist_ts17();
|
|
50646
50646
|
init_dist_ts3();
|
|
@@ -50668,23 +50668,28 @@ var init_domtools_plugins = __esm({
|
|
|
50668
50668
|
}
|
|
50669
50669
|
});
|
|
50670
50670
|
|
|
50671
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50671
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.breakpoints.js
|
|
50672
50672
|
var domtools_css_breakpoints_exports = {};
|
|
50673
50673
|
__export(domtools_css_breakpoints_exports, {
|
|
50674
|
+
containerContextStyles: () => containerContextStyles,
|
|
50675
|
+
cssForConstraint: () => cssForConstraint,
|
|
50676
|
+
cssForConstraintContainer: () => cssForConstraintContainer,
|
|
50677
|
+
cssForContainer: () => cssForContainer,
|
|
50674
50678
|
cssForDesktop: () => cssForDesktop,
|
|
50675
50679
|
cssForNotebook: () => cssForNotebook,
|
|
50676
50680
|
cssForPhablet: () => cssForPhablet,
|
|
50677
50681
|
cssForPhone: () => cssForPhone,
|
|
50678
50682
|
cssForTablet: () => cssForTablet,
|
|
50683
|
+
cssForViewport: () => cssForViewport,
|
|
50679
50684
|
desktop: () => desktop,
|
|
50680
50685
|
notebook: () => notebook,
|
|
50681
50686
|
phablet: () => phablet,
|
|
50682
50687
|
phone: () => phone,
|
|
50683
50688
|
tablet: () => tablet
|
|
50684
50689
|
});
|
|
50685
|
-
var desktop, notebook, tablet, phablet, phone, cssForDesktop, cssForNotebook, cssForTablet, cssForPhablet, cssForPhone;
|
|
50690
|
+
var desktop, notebook, tablet, phablet, phone, buildCondition, cssForViewport, cssForContainer, cssForConstraint, cssForConstraintContainer, containerContextStyles, cssForDesktop, cssForNotebook, cssForTablet, cssForPhablet, cssForPhone;
|
|
50686
50691
|
var init_domtools_css_breakpoints = __esm({
|
|
50687
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50692
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.breakpoints.js"() {
|
|
50688
50693
|
init_domtools_classes_domtools();
|
|
50689
50694
|
init_lit();
|
|
50690
50695
|
desktop = 1600;
|
|
@@ -50692,63 +50697,61 @@ var init_domtools_css_breakpoints = __esm({
|
|
|
50692
50697
|
tablet = 1024;
|
|
50693
50698
|
phablet = 600;
|
|
50694
50699
|
phone = 400;
|
|
50695
|
-
|
|
50700
|
+
buildCondition = (constraints) => {
|
|
50701
|
+
const parts = [];
|
|
50702
|
+
if (constraints.minWidth)
|
|
50703
|
+
parts.push(`(min-width: ${constraints.minWidth}px)`);
|
|
50704
|
+
if (constraints.maxWidth)
|
|
50705
|
+
parts.push(`(max-width: ${constraints.maxWidth}px)`);
|
|
50706
|
+
return parts.join(" and ");
|
|
50707
|
+
};
|
|
50708
|
+
cssForViewport = (cssArg, condition) => {
|
|
50696
50709
|
return r(`
|
|
50697
|
-
@container wccToolsViewport
|
|
50710
|
+
@container wccToolsViewport ${condition} {
|
|
50698
50711
|
${cssArg.cssText}
|
|
50699
50712
|
}
|
|
50700
|
-
@media
|
|
50713
|
+
@media ${condition} {
|
|
50701
50714
|
${cssArg.cssText}
|
|
50702
50715
|
}
|
|
50703
50716
|
`);
|
|
50704
50717
|
};
|
|
50705
|
-
|
|
50718
|
+
cssForContainer = (cssArg, condition, containerName) => {
|
|
50706
50719
|
return r(`
|
|
50707
|
-
@container
|
|
50708
|
-
${cssArg.cssText}
|
|
50709
|
-
}
|
|
50710
|
-
@media (max-width: ${notebook}px) {
|
|
50720
|
+
@container ${containerName} ${condition} {
|
|
50711
50721
|
${cssArg.cssText}
|
|
50712
50722
|
}
|
|
50713
50723
|
`);
|
|
50714
50724
|
};
|
|
50725
|
+
cssForConstraint = (constraints) => (cssArg) => cssForViewport(cssArg, buildCondition(constraints));
|
|
50726
|
+
cssForConstraintContainer = (constraints, containerName) => (cssArg) => cssForContainer(cssArg, buildCondition(constraints), containerName);
|
|
50727
|
+
containerContextStyles = (containerName) => i`
|
|
50728
|
+
:host {
|
|
50729
|
+
container-type: inline-size;
|
|
50730
|
+
container-name: ${r(containerName)};
|
|
50731
|
+
}
|
|
50732
|
+
`;
|
|
50733
|
+
cssForDesktop = (cssArg) => {
|
|
50734
|
+
return cssForViewport(cssArg, `(min-width: ${desktop}px)`);
|
|
50735
|
+
};
|
|
50736
|
+
cssForNotebook = (cssArg) => {
|
|
50737
|
+
return cssForViewport(cssArg, `(max-width: ${notebook}px)`);
|
|
50738
|
+
};
|
|
50715
50739
|
cssForTablet = (cssArg) => {
|
|
50716
|
-
return
|
|
50717
|
-
@container wccToolsViewport (max-width: ${tablet}px) {
|
|
50718
|
-
${cssArg.cssText}
|
|
50719
|
-
}
|
|
50720
|
-
@media (max-width: ${tablet}px) {
|
|
50721
|
-
${cssArg.cssText}
|
|
50722
|
-
}
|
|
50723
|
-
`);
|
|
50740
|
+
return cssForViewport(cssArg, `(max-width: ${tablet}px)`);
|
|
50724
50741
|
};
|
|
50725
50742
|
cssForPhablet = (cssArg) => {
|
|
50726
|
-
return
|
|
50727
|
-
@container wccToolsViewport (max-width: ${phablet}px) {
|
|
50728
|
-
${cssArg.cssText}
|
|
50729
|
-
}
|
|
50730
|
-
@media (max-width: ${phablet}px) {
|
|
50731
|
-
${cssArg.cssText}
|
|
50732
|
-
}
|
|
50733
|
-
`);
|
|
50743
|
+
return cssForViewport(cssArg, `(max-width: ${phablet}px)`);
|
|
50734
50744
|
};
|
|
50735
50745
|
cssForPhone = (cssArg) => {
|
|
50736
|
-
return
|
|
50737
|
-
@container wccToolsViewport (max-width: ${phone}px) {
|
|
50738
|
-
${cssArg.cssText}
|
|
50739
|
-
}
|
|
50740
|
-
@media (max-width: ${phone}px) {
|
|
50741
|
-
${cssArg.cssText}
|
|
50742
|
-
}
|
|
50743
|
-
`);
|
|
50746
|
+
return cssForViewport(cssArg, `(max-width: ${phone}px)`);
|
|
50744
50747
|
};
|
|
50745
50748
|
}
|
|
50746
50749
|
});
|
|
50747
50750
|
|
|
50748
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50751
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.scroller.js
|
|
50749
50752
|
var Scroller;
|
|
50750
50753
|
var init_domtools_classes_scroller = __esm({
|
|
50751
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50754
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.scroller.js"() {
|
|
50752
50755
|
init_domtools_plugins();
|
|
50753
50756
|
Scroller = class {
|
|
50754
50757
|
domtoolsInstance;
|
|
@@ -50889,10 +50892,10 @@ var init_domtools_classes_scroller = __esm({
|
|
|
50889
50892
|
}
|
|
50890
50893
|
});
|
|
50891
50894
|
|
|
50892
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50895
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.thememanager.js
|
|
50893
50896
|
var ThemeManager;
|
|
50894
50897
|
var init_domtools_classes_thememanager = __esm({
|
|
50895
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50898
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.thememanager.js"() {
|
|
50896
50899
|
init_domtools_classes_domtools();
|
|
50897
50900
|
init_domtools_plugins();
|
|
50898
50901
|
ThemeManager = class {
|
|
@@ -50946,126 +50949,126 @@ var init_domtools_classes_thememanager = __esm({
|
|
|
50946
50949
|
}
|
|
50947
50950
|
});
|
|
50948
50951
|
|
|
50949
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50952
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.keyboard.js
|
|
50950
50953
|
var Key, Keyboard;
|
|
50951
50954
|
var init_domtools_classes_keyboard = __esm({
|
|
50952
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
50955
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.keyboard.js"() {
|
|
50953
50956
|
init_domtools_plugins();
|
|
50954
|
-
(function(
|
|
50955
|
-
|
|
50956
|
-
|
|
50957
|
-
|
|
50958
|
-
|
|
50959
|
-
|
|
50960
|
-
|
|
50961
|
-
|
|
50962
|
-
|
|
50963
|
-
|
|
50964
|
-
|
|
50965
|
-
|
|
50966
|
-
|
|
50967
|
-
|
|
50968
|
-
|
|
50969
|
-
|
|
50970
|
-
|
|
50971
|
-
|
|
50972
|
-
|
|
50973
|
-
|
|
50974
|
-
|
|
50975
|
-
|
|
50976
|
-
|
|
50977
|
-
|
|
50978
|
-
|
|
50979
|
-
|
|
50980
|
-
|
|
50981
|
-
|
|
50982
|
-
|
|
50983
|
-
|
|
50984
|
-
|
|
50985
|
-
|
|
50986
|
-
|
|
50987
|
-
|
|
50988
|
-
|
|
50989
|
-
|
|
50990
|
-
|
|
50991
|
-
|
|
50992
|
-
|
|
50993
|
-
|
|
50994
|
-
|
|
50995
|
-
|
|
50996
|
-
|
|
50997
|
-
|
|
50998
|
-
|
|
50999
|
-
|
|
51000
|
-
|
|
51001
|
-
|
|
51002
|
-
|
|
51003
|
-
|
|
51004
|
-
|
|
51005
|
-
|
|
51006
|
-
|
|
51007
|
-
|
|
51008
|
-
|
|
51009
|
-
|
|
51010
|
-
|
|
51011
|
-
|
|
51012
|
-
|
|
51013
|
-
|
|
51014
|
-
|
|
51015
|
-
|
|
51016
|
-
|
|
51017
|
-
|
|
51018
|
-
|
|
51019
|
-
|
|
51020
|
-
|
|
51021
|
-
|
|
51022
|
-
|
|
51023
|
-
|
|
51024
|
-
|
|
51025
|
-
|
|
51026
|
-
|
|
51027
|
-
|
|
51028
|
-
|
|
51029
|
-
|
|
51030
|
-
|
|
51031
|
-
|
|
51032
|
-
|
|
51033
|
-
|
|
51034
|
-
|
|
51035
|
-
|
|
51036
|
-
|
|
51037
|
-
|
|
51038
|
-
|
|
51039
|
-
|
|
51040
|
-
|
|
51041
|
-
|
|
51042
|
-
|
|
51043
|
-
|
|
51044
|
-
|
|
51045
|
-
|
|
51046
|
-
|
|
51047
|
-
|
|
51048
|
-
|
|
51049
|
-
|
|
51050
|
-
|
|
51051
|
-
|
|
51052
|
-
|
|
51053
|
-
|
|
51054
|
-
|
|
51055
|
-
|
|
51056
|
-
|
|
51057
|
-
|
|
51058
|
-
|
|
51059
|
-
|
|
51060
|
-
|
|
51061
|
-
|
|
51062
|
-
|
|
51063
|
-
|
|
51064
|
-
|
|
51065
|
-
|
|
51066
|
-
|
|
51067
|
-
|
|
51068
|
-
|
|
50957
|
+
(function(Key4) {
|
|
50958
|
+
Key4[Key4["Backspace"] = 8] = "Backspace";
|
|
50959
|
+
Key4[Key4["Tab"] = 9] = "Tab";
|
|
50960
|
+
Key4[Key4["Enter"] = 13] = "Enter";
|
|
50961
|
+
Key4[Key4["Shift"] = 16] = "Shift";
|
|
50962
|
+
Key4[Key4["Ctrl"] = 17] = "Ctrl";
|
|
50963
|
+
Key4[Key4["Alt"] = 18] = "Alt";
|
|
50964
|
+
Key4[Key4["PauseBreak"] = 19] = "PauseBreak";
|
|
50965
|
+
Key4[Key4["CapsLock"] = 20] = "CapsLock";
|
|
50966
|
+
Key4[Key4["Escape"] = 27] = "Escape";
|
|
50967
|
+
Key4[Key4["Space"] = 32] = "Space";
|
|
50968
|
+
Key4[Key4["PageUp"] = 33] = "PageUp";
|
|
50969
|
+
Key4[Key4["PageDown"] = 34] = "PageDown";
|
|
50970
|
+
Key4[Key4["End"] = 35] = "End";
|
|
50971
|
+
Key4[Key4["Home"] = 36] = "Home";
|
|
50972
|
+
Key4[Key4["LeftArrow"] = 37] = "LeftArrow";
|
|
50973
|
+
Key4[Key4["UpArrow"] = 38] = "UpArrow";
|
|
50974
|
+
Key4[Key4["RightArrow"] = 39] = "RightArrow";
|
|
50975
|
+
Key4[Key4["DownArrow"] = 40] = "DownArrow";
|
|
50976
|
+
Key4[Key4["Insert"] = 45] = "Insert";
|
|
50977
|
+
Key4[Key4["Delete"] = 46] = "Delete";
|
|
50978
|
+
Key4[Key4["Zero"] = 48] = "Zero";
|
|
50979
|
+
Key4[Key4["ClosedParen"] = 48] = "ClosedParen";
|
|
50980
|
+
Key4[Key4["One"] = 49] = "One";
|
|
50981
|
+
Key4[Key4["ExclamationMark"] = 49] = "ExclamationMark";
|
|
50982
|
+
Key4[Key4["Two"] = 50] = "Two";
|
|
50983
|
+
Key4[Key4["AtSign"] = 50] = "AtSign";
|
|
50984
|
+
Key4[Key4["Three"] = 51] = "Three";
|
|
50985
|
+
Key4[Key4["PoundSign"] = 51] = "PoundSign";
|
|
50986
|
+
Key4[Key4["Hash"] = 51] = "Hash";
|
|
50987
|
+
Key4[Key4["Four"] = 52] = "Four";
|
|
50988
|
+
Key4[Key4["DollarSign"] = 52] = "DollarSign";
|
|
50989
|
+
Key4[Key4["Five"] = 53] = "Five";
|
|
50990
|
+
Key4[Key4["PercentSign"] = 53] = "PercentSign";
|
|
50991
|
+
Key4[Key4["Six"] = 54] = "Six";
|
|
50992
|
+
Key4[Key4["Caret"] = 54] = "Caret";
|
|
50993
|
+
Key4[Key4["Hat"] = 54] = "Hat";
|
|
50994
|
+
Key4[Key4["Seven"] = 55] = "Seven";
|
|
50995
|
+
Key4[Key4["Ampersand"] = 55] = "Ampersand";
|
|
50996
|
+
Key4[Key4["Eight"] = 56] = "Eight";
|
|
50997
|
+
Key4[Key4["Star"] = 56] = "Star";
|
|
50998
|
+
Key4[Key4["Asterik"] = 56] = "Asterik";
|
|
50999
|
+
Key4[Key4["Nine"] = 57] = "Nine";
|
|
51000
|
+
Key4[Key4["OpenParen"] = 57] = "OpenParen";
|
|
51001
|
+
Key4[Key4["A"] = 65] = "A";
|
|
51002
|
+
Key4[Key4["B"] = 66] = "B";
|
|
51003
|
+
Key4[Key4["C"] = 67] = "C";
|
|
51004
|
+
Key4[Key4["D"] = 68] = "D";
|
|
51005
|
+
Key4[Key4["E"] = 69] = "E";
|
|
51006
|
+
Key4[Key4["F"] = 70] = "F";
|
|
51007
|
+
Key4[Key4["G"] = 71] = "G";
|
|
51008
|
+
Key4[Key4["H"] = 72] = "H";
|
|
51009
|
+
Key4[Key4["I"] = 73] = "I";
|
|
51010
|
+
Key4[Key4["J"] = 74] = "J";
|
|
51011
|
+
Key4[Key4["K"] = 75] = "K";
|
|
51012
|
+
Key4[Key4["L"] = 76] = "L";
|
|
51013
|
+
Key4[Key4["M"] = 77] = "M";
|
|
51014
|
+
Key4[Key4["N"] = 78] = "N";
|
|
51015
|
+
Key4[Key4["O"] = 79] = "O";
|
|
51016
|
+
Key4[Key4["P"] = 80] = "P";
|
|
51017
|
+
Key4[Key4["Q"] = 81] = "Q";
|
|
51018
|
+
Key4[Key4["R"] = 82] = "R";
|
|
51019
|
+
Key4[Key4["S"] = 83] = "S";
|
|
51020
|
+
Key4[Key4["T"] = 84] = "T";
|
|
51021
|
+
Key4[Key4["U"] = 85] = "U";
|
|
51022
|
+
Key4[Key4["V"] = 86] = "V";
|
|
51023
|
+
Key4[Key4["W"] = 87] = "W";
|
|
51024
|
+
Key4[Key4["X"] = 88] = "X";
|
|
51025
|
+
Key4[Key4["Y"] = 89] = "Y";
|
|
51026
|
+
Key4[Key4["Z"] = 90] = "Z";
|
|
51027
|
+
Key4[Key4["LeftWindowKey"] = 91] = "LeftWindowKey";
|
|
51028
|
+
Key4[Key4["RightWindowKey"] = 92] = "RightWindowKey";
|
|
51029
|
+
Key4[Key4["SelectKey"] = 93] = "SelectKey";
|
|
51030
|
+
Key4[Key4["Numpad0"] = 96] = "Numpad0";
|
|
51031
|
+
Key4[Key4["Numpad1"] = 97] = "Numpad1";
|
|
51032
|
+
Key4[Key4["Numpad2"] = 98] = "Numpad2";
|
|
51033
|
+
Key4[Key4["Numpad3"] = 99] = "Numpad3";
|
|
51034
|
+
Key4[Key4["Numpad4"] = 100] = "Numpad4";
|
|
51035
|
+
Key4[Key4["Numpad5"] = 101] = "Numpad5";
|
|
51036
|
+
Key4[Key4["Numpad6"] = 102] = "Numpad6";
|
|
51037
|
+
Key4[Key4["Numpad7"] = 103] = "Numpad7";
|
|
51038
|
+
Key4[Key4["Numpad8"] = 104] = "Numpad8";
|
|
51039
|
+
Key4[Key4["Numpad9"] = 105] = "Numpad9";
|
|
51040
|
+
Key4[Key4["Multiply"] = 106] = "Multiply";
|
|
51041
|
+
Key4[Key4["Add"] = 107] = "Add";
|
|
51042
|
+
Key4[Key4["Subtract"] = 109] = "Subtract";
|
|
51043
|
+
Key4[Key4["DecimalPoint"] = 110] = "DecimalPoint";
|
|
51044
|
+
Key4[Key4["Divide"] = 111] = "Divide";
|
|
51045
|
+
Key4[Key4["F1"] = 112] = "F1";
|
|
51046
|
+
Key4[Key4["F2"] = 113] = "F2";
|
|
51047
|
+
Key4[Key4["F3"] = 114] = "F3";
|
|
51048
|
+
Key4[Key4["F4"] = 115] = "F4";
|
|
51049
|
+
Key4[Key4["F5"] = 116] = "F5";
|
|
51050
|
+
Key4[Key4["F6"] = 117] = "F6";
|
|
51051
|
+
Key4[Key4["F7"] = 118] = "F7";
|
|
51052
|
+
Key4[Key4["F8"] = 119] = "F8";
|
|
51053
|
+
Key4[Key4["F9"] = 120] = "F9";
|
|
51054
|
+
Key4[Key4["F10"] = 121] = "F10";
|
|
51055
|
+
Key4[Key4["F11"] = 122] = "F11";
|
|
51056
|
+
Key4[Key4["F12"] = 123] = "F12";
|
|
51057
|
+
Key4[Key4["NumLock"] = 144] = "NumLock";
|
|
51058
|
+
Key4[Key4["ScrollLock"] = 145] = "ScrollLock";
|
|
51059
|
+
Key4[Key4["SemiColon"] = 186] = "SemiColon";
|
|
51060
|
+
Key4[Key4["Equals"] = 187] = "Equals";
|
|
51061
|
+
Key4[Key4["Comma"] = 188] = "Comma";
|
|
51062
|
+
Key4[Key4["Dash"] = 189] = "Dash";
|
|
51063
|
+
Key4[Key4["Period"] = 190] = "Period";
|
|
51064
|
+
Key4[Key4["UnderScore"] = 189] = "UnderScore";
|
|
51065
|
+
Key4[Key4["PlusSign"] = 187] = "PlusSign";
|
|
51066
|
+
Key4[Key4["ForwardSlash"] = 191] = "ForwardSlash";
|
|
51067
|
+
Key4[Key4["Tilde"] = 192] = "Tilde";
|
|
51068
|
+
Key4[Key4["GraveAccent"] = 192] = "GraveAccent";
|
|
51069
|
+
Key4[Key4["OpenBracket"] = 219] = "OpenBracket";
|
|
51070
|
+
Key4[Key4["ClosedBracket"] = 221] = "ClosedBracket";
|
|
51071
|
+
Key4[Key4["Quote"] = 222] = "Quote";
|
|
51069
51072
|
})(Key || (Key = {}));
|
|
51070
51073
|
Keyboard = class {
|
|
51071
51074
|
domNode;
|
|
@@ -51138,10 +51141,10 @@ var init_domtools_classes_keyboard = __esm({
|
|
|
51138
51141
|
}
|
|
51139
51142
|
});
|
|
51140
51143
|
|
|
51141
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51144
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.domtools.js
|
|
51142
51145
|
var DomTools;
|
|
51143
51146
|
var init_domtools_classes_domtools = __esm({
|
|
51144
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51147
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.domtools.js"() {
|
|
51145
51148
|
init_domtools_plugins();
|
|
51146
51149
|
init_domtools_css_breakpoints();
|
|
51147
51150
|
init_domtools_classes_scroller();
|
|
@@ -51322,10 +51325,10 @@ var init_domtools_classes_domtools = __esm({
|
|
|
51322
51325
|
}
|
|
51323
51326
|
});
|
|
51324
51327
|
|
|
51325
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51328
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.basestyles.js
|
|
51326
51329
|
var scrollBarStyles, globalBaseStyles;
|
|
51327
51330
|
var init_domtools_css_basestyles = __esm({
|
|
51328
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51331
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.basestyles.js"() {
|
|
51329
51332
|
init_domtools_classes_domtools();
|
|
51330
51333
|
init_lit();
|
|
51331
51334
|
scrollBarStyles = (() => {
|
|
@@ -51364,7 +51367,7 @@ var init_domtools_css_basestyles = __esm({
|
|
|
51364
51367
|
}
|
|
51365
51368
|
});
|
|
51366
51369
|
|
|
51367
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51370
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js
|
|
51368
51371
|
var domtools_elementbasic_exports = {};
|
|
51369
51372
|
__export(domtools_elementbasic_exports, {
|
|
51370
51373
|
setup: () => setup,
|
|
@@ -51373,7 +51376,7 @@ __export(domtools_elementbasic_exports, {
|
|
|
51373
51376
|
});
|
|
51374
51377
|
var staticStyles, styles, setup;
|
|
51375
51378
|
var init_domtools_elementbasic = __esm({
|
|
51376
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51379
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js"() {
|
|
51377
51380
|
init_domtools_plugins();
|
|
51378
51381
|
init_domtools_classes_domtools();
|
|
51379
51382
|
init_domtools_css_basestyles();
|
|
@@ -51417,14 +51420,14 @@ var init_domtools_elementbasic = __esm({
|
|
|
51417
51420
|
}
|
|
51418
51421
|
});
|
|
51419
51422
|
|
|
51420
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51423
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.js
|
|
51421
51424
|
var domtools_css_exports = {};
|
|
51422
51425
|
__export(domtools_css_exports, {
|
|
51423
51426
|
cssGridColumns: () => cssGridColumns
|
|
51424
51427
|
});
|
|
51425
51428
|
var cssGridColumns;
|
|
51426
51429
|
var init_domtools_css = __esm({
|
|
51427
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51430
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.js"() {
|
|
51428
51431
|
cssGridColumns = (amountOfColumnsArg, gapSizeArg) => {
|
|
51429
51432
|
let returnString = ``;
|
|
51430
51433
|
for (let i11 = 0; i11 < amountOfColumnsArg; i11++) {
|
|
@@ -51435,7 +51438,7 @@ var init_domtools_css = __esm({
|
|
|
51435
51438
|
}
|
|
51436
51439
|
});
|
|
51437
51440
|
|
|
51438
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51441
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.pluginexports.js
|
|
51439
51442
|
var domtools_pluginexports_exports = {};
|
|
51440
51443
|
__export(domtools_pluginexports_exports, {
|
|
51441
51444
|
SweetScroll: () => import_sweet_scroll2.default,
|
|
@@ -51451,7 +51454,7 @@ __export(domtools_pluginexports_exports, {
|
|
|
51451
51454
|
});
|
|
51452
51455
|
var import_sweet_scroll2;
|
|
51453
51456
|
var init_domtools_pluginexports = __esm({
|
|
51454
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51457
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/domtools.pluginexports.js"() {
|
|
51455
51458
|
init_dist_ts3();
|
|
51456
51459
|
init_dist_ts19();
|
|
51457
51460
|
init_dist_ts();
|
|
@@ -51465,7 +51468,7 @@ var init_domtools_pluginexports = __esm({
|
|
|
51465
51468
|
}
|
|
51466
51469
|
});
|
|
51467
51470
|
|
|
51468
|
-
// node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51471
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/index.js
|
|
51469
51472
|
var dist_ts_exports27 = {};
|
|
51470
51473
|
__export(dist_ts_exports27, {
|
|
51471
51474
|
DomTools: () => DomTools,
|
|
@@ -51476,7 +51479,7 @@ __export(dist_ts_exports27, {
|
|
|
51476
51479
|
plugins: () => domtools_pluginexports_exports
|
|
51477
51480
|
});
|
|
51478
51481
|
var init_dist_ts27 = __esm({
|
|
51479
|
-
"node_modules/.pnpm/@design.estate+dees-domtools@2.
|
|
51482
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.5.1/node_modules/@design.estate/dees-domtools/dist_ts/index.js"() {
|
|
51480
51483
|
init_domtools_colors();
|
|
51481
51484
|
init_domtools_elementbasic();
|
|
51482
51485
|
init_domtools_css_breakpoints();
|
|
@@ -51488,10 +51491,10 @@ var init_dist_ts27 = __esm({
|
|
|
51488
51491
|
}
|
|
51489
51492
|
});
|
|
51490
51493
|
|
|
51491
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
51494
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/plugins.js
|
|
51492
51495
|
var isounique3, lit;
|
|
51493
51496
|
var init_plugins3 = __esm({
|
|
51494
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
51497
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/plugins.js"() {
|
|
51495
51498
|
isounique3 = __toESM(require_dist_ts(), 1);
|
|
51496
51499
|
init_dist_ts2();
|
|
51497
51500
|
init_lit();
|
|
@@ -51506,10 +51509,10 @@ var init_plugins3 = __esm({
|
|
|
51506
51509
|
}
|
|
51507
51510
|
});
|
|
51508
51511
|
|
|
51509
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
51512
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/classes.cssmanager.js
|
|
51510
51513
|
var CssManager;
|
|
51511
51514
|
var init_classes_cssmanager = __esm({
|
|
51512
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
51515
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/classes.cssmanager.js"() {
|
|
51513
51516
|
init_lit();
|
|
51514
51517
|
init_plugins3();
|
|
51515
51518
|
init_dist_ts27();
|
|
@@ -51543,21 +51546,42 @@ var init_classes_cssmanager = __esm({
|
|
|
51543
51546
|
get defaultStyles() {
|
|
51544
51547
|
return domtools_elementbasic_exports.staticStyles;
|
|
51545
51548
|
}
|
|
51546
|
-
|
|
51549
|
+
getContainerNameFromClass(elementClass) {
|
|
51550
|
+
return elementClass.is || elementClass.name.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase();
|
|
51551
|
+
}
|
|
51552
|
+
cssForDesktop(contentArg, elementClass) {
|
|
51553
|
+
if (elementClass) {
|
|
51554
|
+
return r(domtools_css_breakpoints_exports.cssForContainer(contentArg, `(min-width: ${domtools_css_breakpoints_exports.desktop}px)`, this.getContainerNameFromClass(elementClass)));
|
|
51555
|
+
}
|
|
51547
51556
|
return r(domtools_css_breakpoints_exports.cssForDesktop(contentArg));
|
|
51548
51557
|
}
|
|
51549
|
-
cssForNotebook(contentArg) {
|
|
51558
|
+
cssForNotebook(contentArg, elementClass) {
|
|
51559
|
+
if (elementClass) {
|
|
51560
|
+
return r(domtools_css_breakpoints_exports.cssForContainer(contentArg, `(max-width: ${domtools_css_breakpoints_exports.notebook}px)`, this.getContainerNameFromClass(elementClass)));
|
|
51561
|
+
}
|
|
51550
51562
|
return r(domtools_css_breakpoints_exports.cssForNotebook(contentArg));
|
|
51551
51563
|
}
|
|
51552
|
-
cssForTablet(contentArg) {
|
|
51564
|
+
cssForTablet(contentArg, elementClass) {
|
|
51565
|
+
if (elementClass) {
|
|
51566
|
+
return r(domtools_css_breakpoints_exports.cssForContainer(contentArg, `(max-width: ${domtools_css_breakpoints_exports.tablet}px)`, this.getContainerNameFromClass(elementClass)));
|
|
51567
|
+
}
|
|
51553
51568
|
return r(domtools_css_breakpoints_exports.cssForTablet(contentArg));
|
|
51554
51569
|
}
|
|
51555
|
-
cssForPhablet(contentArg) {
|
|
51570
|
+
cssForPhablet(contentArg, elementClass) {
|
|
51571
|
+
if (elementClass) {
|
|
51572
|
+
return r(domtools_css_breakpoints_exports.cssForContainer(contentArg, `(max-width: ${domtools_css_breakpoints_exports.phablet}px)`, this.getContainerNameFromClass(elementClass)));
|
|
51573
|
+
}
|
|
51556
51574
|
return r(domtools_css_breakpoints_exports.cssForPhablet(contentArg));
|
|
51557
51575
|
}
|
|
51558
|
-
cssForPhone(contentArg) {
|
|
51576
|
+
cssForPhone(contentArg, elementClass) {
|
|
51577
|
+
if (elementClass) {
|
|
51578
|
+
return r(domtools_css_breakpoints_exports.cssForContainer(contentArg, `(max-width: ${domtools_css_breakpoints_exports.phone}px)`, this.getContainerNameFromClass(elementClass)));
|
|
51579
|
+
}
|
|
51559
51580
|
return r(domtools_css_breakpoints_exports.cssForPhone(contentArg));
|
|
51560
51581
|
}
|
|
51582
|
+
cssForConstraint(constraints) {
|
|
51583
|
+
return (contentArg) => r(domtools_css_breakpoints_exports.cssForConstraint(constraints)(contentArg));
|
|
51584
|
+
}
|
|
51561
51585
|
bdTheme(brightValueArg, darkValueArg) {
|
|
51562
51586
|
let returnCssVar;
|
|
51563
51587
|
let defaultValue;
|
|
@@ -51837,11 +51861,12 @@ var init_decorators = __esm({
|
|
|
51837
51861
|
}
|
|
51838
51862
|
});
|
|
51839
51863
|
|
|
51840
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
51864
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/classes.dees-element.js
|
|
51841
51865
|
var __esDecorate2, __runInitializers3, DeesElement;
|
|
51842
51866
|
var init_classes_dees_element = __esm({
|
|
51843
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
51867
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/classes.dees-element.js"() {
|
|
51844
51868
|
init_plugins3();
|
|
51869
|
+
init_lit();
|
|
51845
51870
|
__esDecorate2 = function(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
51846
51871
|
function accept(f7) {
|
|
51847
51872
|
if (f7 !== void 0 && typeof f7 !== "function") throw new TypeError("Function expected");
|
|
@@ -51902,6 +51927,13 @@ var init_classes_dees_element = __esm({
|
|
|
51902
51927
|
} }, metadata: _metadata }, _domtools_initializers, _domtools_extraInitializers);
|
|
51903
51928
|
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
51904
51929
|
}
|
|
51930
|
+
// STATIC — component-level constraint helper (use in `static styles = [...]`)
|
|
51931
|
+
static getContainerName() {
|
|
51932
|
+
return this.is || this.name.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase();
|
|
51933
|
+
}
|
|
51934
|
+
static cssForConstraint(constraints) {
|
|
51935
|
+
return (cssArg) => dist_ts_exports27.breakpoints.cssForConstraintContainer(constraints, this.getContainerName())(cssArg);
|
|
51936
|
+
}
|
|
51905
51937
|
#goBright_accessor_storage = __runInitializers3(this, _goBright_initializers, false);
|
|
51906
51938
|
// INSTANCE
|
|
51907
51939
|
get goBright() {
|
|
@@ -51973,6 +52005,28 @@ var init_classes_dees_element = __esm({
|
|
|
51973
52005
|
}
|
|
51974
52006
|
});
|
|
51975
52007
|
|
|
52008
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/decorators.containerresponsive.js
|
|
52009
|
+
function containerResponsive() {
|
|
52010
|
+
return function(target) {
|
|
52011
|
+
const tagName = target.is || target.name.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase();
|
|
52012
|
+
const containerStyles = domtools_css_breakpoints_exports.containerContextStyles(tagName);
|
|
52013
|
+
const original = target.styles;
|
|
52014
|
+
if (Array.isArray(original)) {
|
|
52015
|
+
target.styles = [...original, containerStyles];
|
|
52016
|
+
} else if (original) {
|
|
52017
|
+
target.styles = [original, containerStyles];
|
|
52018
|
+
} else {
|
|
52019
|
+
target.styles = [containerStyles];
|
|
52020
|
+
}
|
|
52021
|
+
return target;
|
|
52022
|
+
};
|
|
52023
|
+
}
|
|
52024
|
+
var init_decorators_containerresponsive = __esm({
|
|
52025
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/decorators.containerresponsive.js"() {
|
|
52026
|
+
init_dist_ts27();
|
|
52027
|
+
}
|
|
52028
|
+
});
|
|
52029
|
+
|
|
51976
52030
|
// node_modules/.pnpm/lit-html@3.3.2/node_modules/lit-html/directive-helpers.js
|
|
51977
52031
|
var t6, i7, n8, e9, l4, d3, c5, f4, r8, s6, v3, u4, m3, p5, M2, h3, j2;
|
|
51978
52032
|
var init_directive_helpers = __esm({
|
|
@@ -52076,10 +52130,10 @@ var init_async_directive2 = __esm({
|
|
|
52076
52130
|
}
|
|
52077
52131
|
});
|
|
52078
52132
|
|
|
52079
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52133
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/classes.resolvedirective.js
|
|
52080
52134
|
var ResolveDirective, resolve, resolveExec;
|
|
52081
52135
|
var init_classes_resolvedirective = __esm({
|
|
52082
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52136
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/classes.resolvedirective.js"() {
|
|
52083
52137
|
init_lit();
|
|
52084
52138
|
init_async_directive2();
|
|
52085
52139
|
ResolveDirective = class extends f5 {
|
|
@@ -52124,10 +52178,10 @@ var init_classes_resolvedirective = __esm({
|
|
|
52124
52178
|
}
|
|
52125
52179
|
});
|
|
52126
52180
|
|
|
52127
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52181
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/classes.subscribedirective.js
|
|
52128
52182
|
var SubscribeDirective, subscribe;
|
|
52129
52183
|
var init_classes_subscribedirective = __esm({
|
|
52130
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52184
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/classes.subscribedirective.js"() {
|
|
52131
52185
|
init_lit();
|
|
52132
52186
|
init_async_directive2();
|
|
52133
52187
|
init_dist_ts2();
|
|
@@ -52160,10 +52214,10 @@ var init_classes_subscribedirective = __esm({
|
|
|
52160
52214
|
}
|
|
52161
52215
|
});
|
|
52162
52216
|
|
|
52163
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52217
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/classes.subscribewithtemplate.js
|
|
52164
52218
|
var SubscribeWithTemplateDirective, subscribeWithTemplate;
|
|
52165
52219
|
var init_classes_subscribewithtemplate = __esm({
|
|
52166
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52220
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/classes.subscribewithtemplate.js"() {
|
|
52167
52221
|
init_lit();
|
|
52168
52222
|
init_async_directive2();
|
|
52169
52223
|
init_dist_ts2();
|
|
@@ -52462,7 +52516,7 @@ var init_repeat3 = __esm({
|
|
|
52462
52516
|
}
|
|
52463
52517
|
});
|
|
52464
52518
|
|
|
52465
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52519
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/index.js
|
|
52466
52520
|
var directives_exports = {};
|
|
52467
52521
|
__export(directives_exports, {
|
|
52468
52522
|
asyncAppend: () => c8,
|
|
@@ -52475,7 +52529,7 @@ __export(directives_exports, {
|
|
|
52475
52529
|
until: () => m4
|
|
52476
52530
|
});
|
|
52477
52531
|
var init_directives = __esm({
|
|
52478
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52532
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/directives/index.js"() {
|
|
52479
52533
|
init_classes_resolvedirective();
|
|
52480
52534
|
init_classes_subscribedirective();
|
|
52481
52535
|
init_classes_subscribewithtemplate();
|
|
@@ -52486,10 +52540,10 @@ var init_directives = __esm({
|
|
|
52486
52540
|
}
|
|
52487
52541
|
});
|
|
52488
52542
|
|
|
52489
|
-
// node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52543
|
+
// node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/index.js
|
|
52490
52544
|
var cssManager;
|
|
52491
52545
|
var init_dist_ts28 = __esm({
|
|
52492
|
-
"node_modules/.pnpm/@design.estate+dees-element@2.1
|
|
52546
|
+
"node_modules/.pnpm/@design.estate+dees-element@2.2.1/node_modules/@design.estate/dees-element/dist_ts/index.js"() {
|
|
52493
52547
|
init_classes_cssmanager();
|
|
52494
52548
|
init_lit();
|
|
52495
52549
|
init_static_html();
|
|
@@ -52498,6 +52552,7 @@ var init_dist_ts28 = __esm({
|
|
|
52498
52552
|
init_decorators();
|
|
52499
52553
|
init_dist_ts27();
|
|
52500
52554
|
init_classes_dees_element();
|
|
52555
|
+
init_decorators_containerresponsive();
|
|
52501
52556
|
init_directives();
|
|
52502
52557
|
cssManager = CssManager.getSingleton();
|
|
52503
52558
|
}
|
|
@@ -52628,6 +52683,854 @@ var init_theme = __esm({
|
|
|
52628
52683
|
}
|
|
52629
52684
|
});
|
|
52630
52685
|
|
|
52686
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.colors.js
|
|
52687
|
+
var init_domtools_colors2 = __esm({
|
|
52688
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.colors.js"() {
|
|
52689
|
+
}
|
|
52690
|
+
});
|
|
52691
|
+
|
|
52692
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.plugins.js
|
|
52693
|
+
var import_sweet_scroll3, lik2;
|
|
52694
|
+
var init_domtools_plugins2 = __esm({
|
|
52695
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.plugins.js"() {
|
|
52696
|
+
init_dist_ts18();
|
|
52697
|
+
init_dist_ts17();
|
|
52698
|
+
init_dist_ts3();
|
|
52699
|
+
init_dist_ts12();
|
|
52700
|
+
init_dist_ts19();
|
|
52701
|
+
init_dist_ts();
|
|
52702
|
+
init_dist_ts20();
|
|
52703
|
+
init_dist_ts2();
|
|
52704
|
+
init_dist_ts21();
|
|
52705
|
+
init_dist_ts11();
|
|
52706
|
+
init_dist_ts22();
|
|
52707
|
+
init_dist_ts16();
|
|
52708
|
+
init_dist_ts26();
|
|
52709
|
+
init_dist_ts15();
|
|
52710
|
+
init_classes_objectmap();
|
|
52711
|
+
init_classes_stringmap();
|
|
52712
|
+
init_classes_fastmap();
|
|
52713
|
+
init_lenis();
|
|
52714
|
+
import_sweet_scroll3 = __toESM(require_sweet_scroll(), 1);
|
|
52715
|
+
lik2 = {
|
|
52716
|
+
ObjectMap,
|
|
52717
|
+
Stringmap,
|
|
52718
|
+
FastMap
|
|
52719
|
+
};
|
|
52720
|
+
}
|
|
52721
|
+
});
|
|
52722
|
+
|
|
52723
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.breakpoints.js
|
|
52724
|
+
var domtools_css_breakpoints_exports2 = {};
|
|
52725
|
+
__export(domtools_css_breakpoints_exports2, {
|
|
52726
|
+
cssForDesktop: () => cssForDesktop2,
|
|
52727
|
+
cssForNotebook: () => cssForNotebook2,
|
|
52728
|
+
cssForPhablet: () => cssForPhablet2,
|
|
52729
|
+
cssForPhone: () => cssForPhone2,
|
|
52730
|
+
cssForTablet: () => cssForTablet2,
|
|
52731
|
+
desktop: () => desktop2,
|
|
52732
|
+
notebook: () => notebook2,
|
|
52733
|
+
phablet: () => phablet2,
|
|
52734
|
+
phone: () => phone2,
|
|
52735
|
+
tablet: () => tablet2
|
|
52736
|
+
});
|
|
52737
|
+
var desktop2, notebook2, tablet2, phablet2, phone2, cssForDesktop2, cssForNotebook2, cssForTablet2, cssForPhablet2, cssForPhone2;
|
|
52738
|
+
var init_domtools_css_breakpoints2 = __esm({
|
|
52739
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.breakpoints.js"() {
|
|
52740
|
+
init_domtools_classes_domtools2();
|
|
52741
|
+
init_lit();
|
|
52742
|
+
desktop2 = 1600;
|
|
52743
|
+
notebook2 = 1240;
|
|
52744
|
+
tablet2 = 1024;
|
|
52745
|
+
phablet2 = 600;
|
|
52746
|
+
phone2 = 400;
|
|
52747
|
+
cssForDesktop2 = (cssArg) => {
|
|
52748
|
+
return r(`
|
|
52749
|
+
@container wccToolsViewport (min-width: ${desktop2}px) {
|
|
52750
|
+
${cssArg.cssText}
|
|
52751
|
+
}
|
|
52752
|
+
@media (min-width: ${desktop2}px) {
|
|
52753
|
+
${cssArg.cssText}
|
|
52754
|
+
}
|
|
52755
|
+
`);
|
|
52756
|
+
};
|
|
52757
|
+
cssForNotebook2 = (cssArg) => {
|
|
52758
|
+
return r(`
|
|
52759
|
+
@container wccToolsViewport (max-width: ${notebook2}px) {
|
|
52760
|
+
${cssArg.cssText}
|
|
52761
|
+
}
|
|
52762
|
+
@media (max-width: ${notebook2}px) {
|
|
52763
|
+
${cssArg.cssText}
|
|
52764
|
+
}
|
|
52765
|
+
`);
|
|
52766
|
+
};
|
|
52767
|
+
cssForTablet2 = (cssArg) => {
|
|
52768
|
+
return r(`
|
|
52769
|
+
@container wccToolsViewport (max-width: ${tablet2}px) {
|
|
52770
|
+
${cssArg.cssText}
|
|
52771
|
+
}
|
|
52772
|
+
@media (max-width: ${tablet2}px) {
|
|
52773
|
+
${cssArg.cssText}
|
|
52774
|
+
}
|
|
52775
|
+
`);
|
|
52776
|
+
};
|
|
52777
|
+
cssForPhablet2 = (cssArg) => {
|
|
52778
|
+
return r(`
|
|
52779
|
+
@container wccToolsViewport (max-width: ${phablet2}px) {
|
|
52780
|
+
${cssArg.cssText}
|
|
52781
|
+
}
|
|
52782
|
+
@media (max-width: ${phablet2}px) {
|
|
52783
|
+
${cssArg.cssText}
|
|
52784
|
+
}
|
|
52785
|
+
`);
|
|
52786
|
+
};
|
|
52787
|
+
cssForPhone2 = (cssArg) => {
|
|
52788
|
+
return r(`
|
|
52789
|
+
@container wccToolsViewport (max-width: ${phone2}px) {
|
|
52790
|
+
${cssArg.cssText}
|
|
52791
|
+
}
|
|
52792
|
+
@media (max-width: ${phone2}px) {
|
|
52793
|
+
${cssArg.cssText}
|
|
52794
|
+
}
|
|
52795
|
+
`);
|
|
52796
|
+
};
|
|
52797
|
+
}
|
|
52798
|
+
});
|
|
52799
|
+
|
|
52800
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.scroller.js
|
|
52801
|
+
var Scroller2;
|
|
52802
|
+
var init_domtools_classes_scroller2 = __esm({
|
|
52803
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.scroller.js"() {
|
|
52804
|
+
init_domtools_plugins2();
|
|
52805
|
+
Scroller2 = class {
|
|
52806
|
+
domtoolsInstance;
|
|
52807
|
+
// Array to store scroll callback functions.
|
|
52808
|
+
scrollCallbacks = [];
|
|
52809
|
+
// Lenis instance (if activated) or null.
|
|
52810
|
+
lenisInstance = null;
|
|
52811
|
+
// Bound handlers to allow removal from event listeners.
|
|
52812
|
+
handleNativeScroll = (event) => {
|
|
52813
|
+
this.executeScrollCallbacks();
|
|
52814
|
+
};
|
|
52815
|
+
handleLenisScroll = (info) => {
|
|
52816
|
+
this.executeScrollCallbacks();
|
|
52817
|
+
};
|
|
52818
|
+
constructor(domtoolsInstanceArg) {
|
|
52819
|
+
this.domtoolsInstance = domtoolsInstanceArg;
|
|
52820
|
+
this.attachNativeScrollListener();
|
|
52821
|
+
}
|
|
52822
|
+
sweetScroller = new import_sweet_scroll3.default({});
|
|
52823
|
+
/**
|
|
52824
|
+
* Scrolls to a given element with options.
|
|
52825
|
+
*/
|
|
52826
|
+
async toElement(elementArg, optionsArg) {
|
|
52827
|
+
this.sweetScroller.toElement(elementArg, optionsArg);
|
|
52828
|
+
await dist_ts_exports3.delayFor(optionsArg.duration);
|
|
52829
|
+
}
|
|
52830
|
+
/**
|
|
52831
|
+
* Detects whether native smooth scrolling is enabled.
|
|
52832
|
+
*/
|
|
52833
|
+
async detectNativeSmoothScroll() {
|
|
52834
|
+
const done = dist_ts_exports.defer();
|
|
52835
|
+
const sampleSize = 100;
|
|
52836
|
+
const acceptableDeltaDifference = 3;
|
|
52837
|
+
const minimumSmoothRatio = 0.75;
|
|
52838
|
+
const eventDeltas = [];
|
|
52839
|
+
function onWheel(event) {
|
|
52840
|
+
eventDeltas.push(event.deltaY);
|
|
52841
|
+
if (eventDeltas.length >= sampleSize) {
|
|
52842
|
+
window.removeEventListener("wheel", onWheel);
|
|
52843
|
+
analyzeEvents();
|
|
52844
|
+
}
|
|
52845
|
+
}
|
|
52846
|
+
function analyzeEvents() {
|
|
52847
|
+
const totalDiffs = eventDeltas.length - 1;
|
|
52848
|
+
let smallDiffCount = 0;
|
|
52849
|
+
for (let i11 = 0; i11 < totalDiffs; i11++) {
|
|
52850
|
+
const diff = Math.abs(eventDeltas[i11 + 1] - eventDeltas[i11]);
|
|
52851
|
+
if (diff <= acceptableDeltaDifference) {
|
|
52852
|
+
smallDiffCount++;
|
|
52853
|
+
}
|
|
52854
|
+
}
|
|
52855
|
+
const smoothRatio = smallDiffCount / totalDiffs;
|
|
52856
|
+
if (smoothRatio >= minimumSmoothRatio) {
|
|
52857
|
+
console.log("Smooth scrolling detected.");
|
|
52858
|
+
done.resolve(true);
|
|
52859
|
+
} else {
|
|
52860
|
+
console.log("Smooth scrolling NOT detected.");
|
|
52861
|
+
done.resolve(false);
|
|
52862
|
+
}
|
|
52863
|
+
}
|
|
52864
|
+
window.addEventListener("wheel", onWheel);
|
|
52865
|
+
return done.promise;
|
|
52866
|
+
}
|
|
52867
|
+
/**
|
|
52868
|
+
* Enables Lenis scrolling.
|
|
52869
|
+
* If optionsArg.disableOnNativeSmoothScroll is true and native smooth scrolling is detected,
|
|
52870
|
+
* Lenis will be destroyed immediately.
|
|
52871
|
+
*/
|
|
52872
|
+
async enableLenisScroll(optionsArg) {
|
|
52873
|
+
const lenis = new Lenis({
|
|
52874
|
+
autoRaf: true
|
|
52875
|
+
});
|
|
52876
|
+
if (optionsArg?.disableOnNativeSmoothScroll) {
|
|
52877
|
+
if (await this.detectNativeSmoothScroll()) {
|
|
52878
|
+
lenis.destroy();
|
|
52879
|
+
return;
|
|
52880
|
+
}
|
|
52881
|
+
}
|
|
52882
|
+
this.lenisInstance = lenis;
|
|
52883
|
+
this.detachNativeScrollListener();
|
|
52884
|
+
this.attachLenisScrollListener();
|
|
52885
|
+
const originalDestroy = lenis.destroy.bind(lenis);
|
|
52886
|
+
lenis.destroy = () => {
|
|
52887
|
+
originalDestroy();
|
|
52888
|
+
this.detachLenisScrollListener();
|
|
52889
|
+
this.attachNativeScrollListener();
|
|
52890
|
+
this.lenisInstance = null;
|
|
52891
|
+
};
|
|
52892
|
+
}
|
|
52893
|
+
/**
|
|
52894
|
+
* Registers a callback to be executed on scroll.
|
|
52895
|
+
* @param callback A function to execute on each scroll event.
|
|
52896
|
+
*/
|
|
52897
|
+
onScroll(callback) {
|
|
52898
|
+
this.scrollCallbacks.push(callback);
|
|
52899
|
+
}
|
|
52900
|
+
/**
|
|
52901
|
+
* Executes all registered scroll callbacks concurrently.
|
|
52902
|
+
*/
|
|
52903
|
+
executeScrollCallbacks() {
|
|
52904
|
+
this.scrollCallbacks.forEach((callback) => {
|
|
52905
|
+
try {
|
|
52906
|
+
callback();
|
|
52907
|
+
} catch (error) {
|
|
52908
|
+
console.error("Error in scroll callback:", error);
|
|
52909
|
+
}
|
|
52910
|
+
});
|
|
52911
|
+
}
|
|
52912
|
+
/**
|
|
52913
|
+
* Attaches the native scroll event listener.
|
|
52914
|
+
*/
|
|
52915
|
+
attachNativeScrollListener() {
|
|
52916
|
+
window.addEventListener("scroll", this.handleNativeScroll);
|
|
52917
|
+
}
|
|
52918
|
+
/**
|
|
52919
|
+
* Detaches the native scroll event listener.
|
|
52920
|
+
*/
|
|
52921
|
+
detachNativeScrollListener() {
|
|
52922
|
+
window.removeEventListener("scroll", this.handleNativeScroll);
|
|
52923
|
+
}
|
|
52924
|
+
/**
|
|
52925
|
+
* Attaches the Lenis scroll event listener.
|
|
52926
|
+
*/
|
|
52927
|
+
attachLenisScrollListener() {
|
|
52928
|
+
if (this.lenisInstance) {
|
|
52929
|
+
this.lenisInstance.on("scroll", this.handleLenisScroll);
|
|
52930
|
+
}
|
|
52931
|
+
}
|
|
52932
|
+
/**
|
|
52933
|
+
* Detaches the Lenis scroll event listener.
|
|
52934
|
+
*/
|
|
52935
|
+
detachLenisScrollListener() {
|
|
52936
|
+
if (this.lenisInstance) {
|
|
52937
|
+
this.lenisInstance.off("scroll", this.handleLenisScroll);
|
|
52938
|
+
}
|
|
52939
|
+
}
|
|
52940
|
+
};
|
|
52941
|
+
}
|
|
52942
|
+
});
|
|
52943
|
+
|
|
52944
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.thememanager.js
|
|
52945
|
+
var ThemeManager2;
|
|
52946
|
+
var init_domtools_classes_thememanager2 = __esm({
|
|
52947
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.thememanager.js"() {
|
|
52948
|
+
init_domtools_classes_domtools2();
|
|
52949
|
+
init_domtools_plugins2();
|
|
52950
|
+
ThemeManager2 = class {
|
|
52951
|
+
domtoolsRef;
|
|
52952
|
+
goBrightBoolean = false;
|
|
52953
|
+
preferredColorSchemeMediaMatch = window.matchMedia("(prefers-color-scheme: light)");
|
|
52954
|
+
themeObservable = new dist_ts_exports2.rxjs.ReplaySubject(1);
|
|
52955
|
+
constructor(domtoolsRefArg) {
|
|
52956
|
+
this.domtoolsRef = domtoolsRefArg;
|
|
52957
|
+
this.goBrightBoolean = this.preferredColorSchemeMediaMatch.matches;
|
|
52958
|
+
this.preferredColorSchemeMediaMatch.addEventListener("change", (eventArg) => {
|
|
52959
|
+
this.goBrightBoolean = eventArg.matches;
|
|
52960
|
+
this.updateAllConnectedElements();
|
|
52961
|
+
});
|
|
52962
|
+
this.updateAllConnectedElements();
|
|
52963
|
+
}
|
|
52964
|
+
async enableAutomaticGlobalThemeChange() {
|
|
52965
|
+
if (document.body && document.body.style) {
|
|
52966
|
+
this.themeObservable.subscribe({
|
|
52967
|
+
next: (goBright) => {
|
|
52968
|
+
document.body.style.background = goBright ? "#fff" : "#000";
|
|
52969
|
+
}
|
|
52970
|
+
});
|
|
52971
|
+
}
|
|
52972
|
+
}
|
|
52973
|
+
async updateAllConnectedElements() {
|
|
52974
|
+
this.themeObservable.next(this.goBrightBoolean);
|
|
52975
|
+
}
|
|
52976
|
+
/**
|
|
52977
|
+
* set the theme of the website to bright
|
|
52978
|
+
*/
|
|
52979
|
+
goBright() {
|
|
52980
|
+
this.goBrightBoolean = true;
|
|
52981
|
+
this.updateAllConnectedElements();
|
|
52982
|
+
}
|
|
52983
|
+
/**
|
|
52984
|
+
* set the theme of the website to dark
|
|
52985
|
+
*/
|
|
52986
|
+
goDark() {
|
|
52987
|
+
this.goBrightBoolean = false;
|
|
52988
|
+
this.updateAllConnectedElements();
|
|
52989
|
+
}
|
|
52990
|
+
/**
|
|
52991
|
+
* simply toggle between bright and dark
|
|
52992
|
+
*/
|
|
52993
|
+
toggleDarkBright() {
|
|
52994
|
+
this.goBrightBoolean = !this.goBrightBoolean;
|
|
52995
|
+
this.updateAllConnectedElements();
|
|
52996
|
+
}
|
|
52997
|
+
};
|
|
52998
|
+
}
|
|
52999
|
+
});
|
|
53000
|
+
|
|
53001
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.keyboard.js
|
|
53002
|
+
var Key2, Keyboard2;
|
|
53003
|
+
var init_domtools_classes_keyboard2 = __esm({
|
|
53004
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.keyboard.js"() {
|
|
53005
|
+
init_domtools_plugins2();
|
|
53006
|
+
(function(Key4) {
|
|
53007
|
+
Key4[Key4["Backspace"] = 8] = "Backspace";
|
|
53008
|
+
Key4[Key4["Tab"] = 9] = "Tab";
|
|
53009
|
+
Key4[Key4["Enter"] = 13] = "Enter";
|
|
53010
|
+
Key4[Key4["Shift"] = 16] = "Shift";
|
|
53011
|
+
Key4[Key4["Ctrl"] = 17] = "Ctrl";
|
|
53012
|
+
Key4[Key4["Alt"] = 18] = "Alt";
|
|
53013
|
+
Key4[Key4["PauseBreak"] = 19] = "PauseBreak";
|
|
53014
|
+
Key4[Key4["CapsLock"] = 20] = "CapsLock";
|
|
53015
|
+
Key4[Key4["Escape"] = 27] = "Escape";
|
|
53016
|
+
Key4[Key4["Space"] = 32] = "Space";
|
|
53017
|
+
Key4[Key4["PageUp"] = 33] = "PageUp";
|
|
53018
|
+
Key4[Key4["PageDown"] = 34] = "PageDown";
|
|
53019
|
+
Key4[Key4["End"] = 35] = "End";
|
|
53020
|
+
Key4[Key4["Home"] = 36] = "Home";
|
|
53021
|
+
Key4[Key4["LeftArrow"] = 37] = "LeftArrow";
|
|
53022
|
+
Key4[Key4["UpArrow"] = 38] = "UpArrow";
|
|
53023
|
+
Key4[Key4["RightArrow"] = 39] = "RightArrow";
|
|
53024
|
+
Key4[Key4["DownArrow"] = 40] = "DownArrow";
|
|
53025
|
+
Key4[Key4["Insert"] = 45] = "Insert";
|
|
53026
|
+
Key4[Key4["Delete"] = 46] = "Delete";
|
|
53027
|
+
Key4[Key4["Zero"] = 48] = "Zero";
|
|
53028
|
+
Key4[Key4["ClosedParen"] = 48] = "ClosedParen";
|
|
53029
|
+
Key4[Key4["One"] = 49] = "One";
|
|
53030
|
+
Key4[Key4["ExclamationMark"] = 49] = "ExclamationMark";
|
|
53031
|
+
Key4[Key4["Two"] = 50] = "Two";
|
|
53032
|
+
Key4[Key4["AtSign"] = 50] = "AtSign";
|
|
53033
|
+
Key4[Key4["Three"] = 51] = "Three";
|
|
53034
|
+
Key4[Key4["PoundSign"] = 51] = "PoundSign";
|
|
53035
|
+
Key4[Key4["Hash"] = 51] = "Hash";
|
|
53036
|
+
Key4[Key4["Four"] = 52] = "Four";
|
|
53037
|
+
Key4[Key4["DollarSign"] = 52] = "DollarSign";
|
|
53038
|
+
Key4[Key4["Five"] = 53] = "Five";
|
|
53039
|
+
Key4[Key4["PercentSign"] = 53] = "PercentSign";
|
|
53040
|
+
Key4[Key4["Six"] = 54] = "Six";
|
|
53041
|
+
Key4[Key4["Caret"] = 54] = "Caret";
|
|
53042
|
+
Key4[Key4["Hat"] = 54] = "Hat";
|
|
53043
|
+
Key4[Key4["Seven"] = 55] = "Seven";
|
|
53044
|
+
Key4[Key4["Ampersand"] = 55] = "Ampersand";
|
|
53045
|
+
Key4[Key4["Eight"] = 56] = "Eight";
|
|
53046
|
+
Key4[Key4["Star"] = 56] = "Star";
|
|
53047
|
+
Key4[Key4["Asterik"] = 56] = "Asterik";
|
|
53048
|
+
Key4[Key4["Nine"] = 57] = "Nine";
|
|
53049
|
+
Key4[Key4["OpenParen"] = 57] = "OpenParen";
|
|
53050
|
+
Key4[Key4["A"] = 65] = "A";
|
|
53051
|
+
Key4[Key4["B"] = 66] = "B";
|
|
53052
|
+
Key4[Key4["C"] = 67] = "C";
|
|
53053
|
+
Key4[Key4["D"] = 68] = "D";
|
|
53054
|
+
Key4[Key4["E"] = 69] = "E";
|
|
53055
|
+
Key4[Key4["F"] = 70] = "F";
|
|
53056
|
+
Key4[Key4["G"] = 71] = "G";
|
|
53057
|
+
Key4[Key4["H"] = 72] = "H";
|
|
53058
|
+
Key4[Key4["I"] = 73] = "I";
|
|
53059
|
+
Key4[Key4["J"] = 74] = "J";
|
|
53060
|
+
Key4[Key4["K"] = 75] = "K";
|
|
53061
|
+
Key4[Key4["L"] = 76] = "L";
|
|
53062
|
+
Key4[Key4["M"] = 77] = "M";
|
|
53063
|
+
Key4[Key4["N"] = 78] = "N";
|
|
53064
|
+
Key4[Key4["O"] = 79] = "O";
|
|
53065
|
+
Key4[Key4["P"] = 80] = "P";
|
|
53066
|
+
Key4[Key4["Q"] = 81] = "Q";
|
|
53067
|
+
Key4[Key4["R"] = 82] = "R";
|
|
53068
|
+
Key4[Key4["S"] = 83] = "S";
|
|
53069
|
+
Key4[Key4["T"] = 84] = "T";
|
|
53070
|
+
Key4[Key4["U"] = 85] = "U";
|
|
53071
|
+
Key4[Key4["V"] = 86] = "V";
|
|
53072
|
+
Key4[Key4["W"] = 87] = "W";
|
|
53073
|
+
Key4[Key4["X"] = 88] = "X";
|
|
53074
|
+
Key4[Key4["Y"] = 89] = "Y";
|
|
53075
|
+
Key4[Key4["Z"] = 90] = "Z";
|
|
53076
|
+
Key4[Key4["LeftWindowKey"] = 91] = "LeftWindowKey";
|
|
53077
|
+
Key4[Key4["RightWindowKey"] = 92] = "RightWindowKey";
|
|
53078
|
+
Key4[Key4["SelectKey"] = 93] = "SelectKey";
|
|
53079
|
+
Key4[Key4["Numpad0"] = 96] = "Numpad0";
|
|
53080
|
+
Key4[Key4["Numpad1"] = 97] = "Numpad1";
|
|
53081
|
+
Key4[Key4["Numpad2"] = 98] = "Numpad2";
|
|
53082
|
+
Key4[Key4["Numpad3"] = 99] = "Numpad3";
|
|
53083
|
+
Key4[Key4["Numpad4"] = 100] = "Numpad4";
|
|
53084
|
+
Key4[Key4["Numpad5"] = 101] = "Numpad5";
|
|
53085
|
+
Key4[Key4["Numpad6"] = 102] = "Numpad6";
|
|
53086
|
+
Key4[Key4["Numpad7"] = 103] = "Numpad7";
|
|
53087
|
+
Key4[Key4["Numpad8"] = 104] = "Numpad8";
|
|
53088
|
+
Key4[Key4["Numpad9"] = 105] = "Numpad9";
|
|
53089
|
+
Key4[Key4["Multiply"] = 106] = "Multiply";
|
|
53090
|
+
Key4[Key4["Add"] = 107] = "Add";
|
|
53091
|
+
Key4[Key4["Subtract"] = 109] = "Subtract";
|
|
53092
|
+
Key4[Key4["DecimalPoint"] = 110] = "DecimalPoint";
|
|
53093
|
+
Key4[Key4["Divide"] = 111] = "Divide";
|
|
53094
|
+
Key4[Key4["F1"] = 112] = "F1";
|
|
53095
|
+
Key4[Key4["F2"] = 113] = "F2";
|
|
53096
|
+
Key4[Key4["F3"] = 114] = "F3";
|
|
53097
|
+
Key4[Key4["F4"] = 115] = "F4";
|
|
53098
|
+
Key4[Key4["F5"] = 116] = "F5";
|
|
53099
|
+
Key4[Key4["F6"] = 117] = "F6";
|
|
53100
|
+
Key4[Key4["F7"] = 118] = "F7";
|
|
53101
|
+
Key4[Key4["F8"] = 119] = "F8";
|
|
53102
|
+
Key4[Key4["F9"] = 120] = "F9";
|
|
53103
|
+
Key4[Key4["F10"] = 121] = "F10";
|
|
53104
|
+
Key4[Key4["F11"] = 122] = "F11";
|
|
53105
|
+
Key4[Key4["F12"] = 123] = "F12";
|
|
53106
|
+
Key4[Key4["NumLock"] = 144] = "NumLock";
|
|
53107
|
+
Key4[Key4["ScrollLock"] = 145] = "ScrollLock";
|
|
53108
|
+
Key4[Key4["SemiColon"] = 186] = "SemiColon";
|
|
53109
|
+
Key4[Key4["Equals"] = 187] = "Equals";
|
|
53110
|
+
Key4[Key4["Comma"] = 188] = "Comma";
|
|
53111
|
+
Key4[Key4["Dash"] = 189] = "Dash";
|
|
53112
|
+
Key4[Key4["Period"] = 190] = "Period";
|
|
53113
|
+
Key4[Key4["UnderScore"] = 189] = "UnderScore";
|
|
53114
|
+
Key4[Key4["PlusSign"] = 187] = "PlusSign";
|
|
53115
|
+
Key4[Key4["ForwardSlash"] = 191] = "ForwardSlash";
|
|
53116
|
+
Key4[Key4["Tilde"] = 192] = "Tilde";
|
|
53117
|
+
Key4[Key4["GraveAccent"] = 192] = "GraveAccent";
|
|
53118
|
+
Key4[Key4["OpenBracket"] = 219] = "OpenBracket";
|
|
53119
|
+
Key4[Key4["ClosedBracket"] = 221] = "ClosedBracket";
|
|
53120
|
+
Key4[Key4["Quote"] = 222] = "Quote";
|
|
53121
|
+
})(Key2 || (Key2 = {}));
|
|
53122
|
+
Keyboard2 = class {
|
|
53123
|
+
domNode;
|
|
53124
|
+
mapCombosToHandlers = /* @__PURE__ */ new Map();
|
|
53125
|
+
pressedKeys = /* @__PURE__ */ new Set();
|
|
53126
|
+
constructor(domNode) {
|
|
53127
|
+
this.domNode = domNode;
|
|
53128
|
+
this.startListening();
|
|
53129
|
+
}
|
|
53130
|
+
keyEnum = Key2;
|
|
53131
|
+
on(keys2) {
|
|
53132
|
+
const subject = new dist_ts_exports2.rxjs.Subject();
|
|
53133
|
+
this.registerKeys(keys2, subject);
|
|
53134
|
+
return subject;
|
|
53135
|
+
}
|
|
53136
|
+
triggerKeyPress(keysArg) {
|
|
53137
|
+
for (const key2 of keysArg) {
|
|
53138
|
+
this.pressedKeys.add(key2);
|
|
53139
|
+
}
|
|
53140
|
+
this.checkMatchingKeyboardSubjects();
|
|
53141
|
+
for (const key2 of keysArg) {
|
|
53142
|
+
this.pressedKeys.delete(key2);
|
|
53143
|
+
}
|
|
53144
|
+
}
|
|
53145
|
+
startListening() {
|
|
53146
|
+
this.domNode.addEventListener("keydown", this.handleKeyDown);
|
|
53147
|
+
this.domNode.addEventListener("keyup", this.handleKeyUp);
|
|
53148
|
+
}
|
|
53149
|
+
stopListening() {
|
|
53150
|
+
this.domNode.removeEventListener("keydown", this.handleKeyDown);
|
|
53151
|
+
this.domNode.removeEventListener("keyup", this.handleKeyUp);
|
|
53152
|
+
}
|
|
53153
|
+
clear() {
|
|
53154
|
+
this.stopListening();
|
|
53155
|
+
this.mapCombosToHandlers.clear();
|
|
53156
|
+
this.pressedKeys.clear();
|
|
53157
|
+
}
|
|
53158
|
+
handleKeyDown = (event) => {
|
|
53159
|
+
this.pressedKeys.add(event.keyCode);
|
|
53160
|
+
this.checkMatchingKeyboardSubjects(event);
|
|
53161
|
+
};
|
|
53162
|
+
checkMatchingKeyboardSubjects(payloadArg) {
|
|
53163
|
+
this.mapCombosToHandlers.forEach((subjectArg, keysArg) => {
|
|
53164
|
+
if (this.areAllKeysPressed(keysArg)) {
|
|
53165
|
+
subjectArg.next(payloadArg);
|
|
53166
|
+
}
|
|
53167
|
+
});
|
|
53168
|
+
}
|
|
53169
|
+
handleKeyUp = (event) => {
|
|
53170
|
+
this.pressedKeys.delete(event.keyCode);
|
|
53171
|
+
};
|
|
53172
|
+
areAllKeysPressed(keysArg) {
|
|
53173
|
+
let result = true;
|
|
53174
|
+
keysArg.forEach((key2) => {
|
|
53175
|
+
if (!this.pressedKeys.has(key2)) {
|
|
53176
|
+
result = false;
|
|
53177
|
+
}
|
|
53178
|
+
});
|
|
53179
|
+
return result;
|
|
53180
|
+
}
|
|
53181
|
+
registerKeys(keysArg, subjectArg) {
|
|
53182
|
+
if (!this.mapCombosToHandlers.has(keysArg)) {
|
|
53183
|
+
this.mapCombosToHandlers.set(keysArg, subjectArg);
|
|
53184
|
+
} else {
|
|
53185
|
+
const subject = this.mapCombosToHandlers.get(keysArg);
|
|
53186
|
+
return subject;
|
|
53187
|
+
}
|
|
53188
|
+
}
|
|
53189
|
+
};
|
|
53190
|
+
}
|
|
53191
|
+
});
|
|
53192
|
+
|
|
53193
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.domtools.js
|
|
53194
|
+
var DomTools2;
|
|
53195
|
+
var init_domtools_classes_domtools2 = __esm({
|
|
53196
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.classes.domtools.js"() {
|
|
53197
|
+
init_domtools_plugins2();
|
|
53198
|
+
init_domtools_css_breakpoints2();
|
|
53199
|
+
init_domtools_classes_scroller2();
|
|
53200
|
+
init_dist_ts26();
|
|
53201
|
+
init_domtools_classes_thememanager2();
|
|
53202
|
+
init_domtools_classes_keyboard2();
|
|
53203
|
+
DomTools2 = class _DomTools {
|
|
53204
|
+
// ======
|
|
53205
|
+
// STATIC
|
|
53206
|
+
// ======
|
|
53207
|
+
static initializationPromise = null;
|
|
53208
|
+
/**
|
|
53209
|
+
* setups domtools
|
|
53210
|
+
*/
|
|
53211
|
+
static async setupDomTools(optionsArg = {}) {
|
|
53212
|
+
if (!optionsArg.ignoreGlobal && _DomTools.initializationPromise) {
|
|
53213
|
+
return await _DomTools.initializationPromise;
|
|
53214
|
+
}
|
|
53215
|
+
if (!optionsArg.ignoreGlobal) {
|
|
53216
|
+
_DomTools.initializationPromise = (async () => {
|
|
53217
|
+
let domToolsInstance;
|
|
53218
|
+
if (!globalThis.deesDomTools) {
|
|
53219
|
+
globalThis.deesDomTools = new _DomTools(optionsArg);
|
|
53220
|
+
domToolsInstance = globalThis.deesDomTools;
|
|
53221
|
+
const readyStateChangedFunc = () => {
|
|
53222
|
+
if (document.readyState === "interactive" || document.readyState === "complete") {
|
|
53223
|
+
domToolsInstance.elements.headElement = document.querySelector("head");
|
|
53224
|
+
domToolsInstance.elements.bodyElement = document.querySelector("body");
|
|
53225
|
+
domToolsInstance.keyboard = new Keyboard2(document.body);
|
|
53226
|
+
domToolsInstance.domReady.resolve();
|
|
53227
|
+
}
|
|
53228
|
+
};
|
|
53229
|
+
if (document.readyState === "interactive" || document.readyState === "complete") {
|
|
53230
|
+
readyStateChangedFunc();
|
|
53231
|
+
} else {
|
|
53232
|
+
document.addEventListener("readystatechange", readyStateChangedFunc);
|
|
53233
|
+
}
|
|
53234
|
+
domToolsInstance.domToolsReady.resolve();
|
|
53235
|
+
} else {
|
|
53236
|
+
domToolsInstance = globalThis.deesDomTools;
|
|
53237
|
+
}
|
|
53238
|
+
await domToolsInstance.domToolsReady.promise;
|
|
53239
|
+
return domToolsInstance;
|
|
53240
|
+
})();
|
|
53241
|
+
return await _DomTools.initializationPromise;
|
|
53242
|
+
} else {
|
|
53243
|
+
const domToolsInstance = new _DomTools(optionsArg);
|
|
53244
|
+
return domToolsInstance;
|
|
53245
|
+
}
|
|
53246
|
+
}
|
|
53247
|
+
/**
|
|
53248
|
+
* if you can, use the static asysnc .setupDomTools() function instead since it is safer to use.
|
|
53249
|
+
*/
|
|
53250
|
+
static getGlobalDomToolsSync() {
|
|
53251
|
+
const globalDomTools = globalThis.deesDomTools;
|
|
53252
|
+
if (!globalDomTools) {
|
|
53253
|
+
throw new Error("You tried to access domtools synchronously too early");
|
|
53254
|
+
}
|
|
53255
|
+
return globalThis.deesDomTools;
|
|
53256
|
+
}
|
|
53257
|
+
// ========
|
|
53258
|
+
// INSTANCE
|
|
53259
|
+
// ========
|
|
53260
|
+
// elements
|
|
53261
|
+
elements = {
|
|
53262
|
+
headElement: null,
|
|
53263
|
+
bodyElement: null
|
|
53264
|
+
};
|
|
53265
|
+
websetup = new WebSetup({
|
|
53266
|
+
metaObject: {
|
|
53267
|
+
title: ""
|
|
53268
|
+
}
|
|
53269
|
+
});
|
|
53270
|
+
smartstate = new dist_ts_exports21.Smartstate();
|
|
53271
|
+
domToolsStatePart = this.smartstate.getStatePart("domtools", {
|
|
53272
|
+
virtualViewport: "native",
|
|
53273
|
+
jwt: null
|
|
53274
|
+
});
|
|
53275
|
+
router = new dist_ts_exports20.SmartRouter({
|
|
53276
|
+
debug: false
|
|
53277
|
+
});
|
|
53278
|
+
convenience = {
|
|
53279
|
+
typedrequest: dist_ts_exports17,
|
|
53280
|
+
smartdelay: dist_ts_exports3,
|
|
53281
|
+
smartjson: dist_ts_exports12,
|
|
53282
|
+
smarturl: dist_ts_exports22
|
|
53283
|
+
};
|
|
53284
|
+
deesComms = new dist_ts_exports18.DeesComms();
|
|
53285
|
+
scroller = new Scroller2(this);
|
|
53286
|
+
themeManager = new ThemeManager2(this);
|
|
53287
|
+
keyboard = null;
|
|
53288
|
+
// Initialized after DOM ready to avoid accessing document.body before it exists
|
|
53289
|
+
domToolsReady = dist_ts_exports.defer();
|
|
53290
|
+
domReady = dist_ts_exports.defer();
|
|
53291
|
+
globalStylesReady = dist_ts_exports.defer();
|
|
53292
|
+
constructor(optionsArg) {
|
|
53293
|
+
}
|
|
53294
|
+
runOnceTrackerStringMap = new lik2.Stringmap();
|
|
53295
|
+
runOnceResultMap = new lik2.FastMap();
|
|
53296
|
+
runOnceErrorMap = new lik2.FastMap();
|
|
53297
|
+
/**
|
|
53298
|
+
* run a function once and always get the Promise of the first execution
|
|
53299
|
+
* @param identifierArg the indentifier arg identifies functions. functions with the same identifier are considered equal
|
|
53300
|
+
* @param funcArg the actual func arg to run
|
|
53301
|
+
*/
|
|
53302
|
+
async runOnce(identifierArg, funcArg) {
|
|
53303
|
+
const runningId = `${identifierArg}+runningCheck`;
|
|
53304
|
+
if (!this.runOnceTrackerStringMap.checkString(identifierArg)) {
|
|
53305
|
+
this.runOnceTrackerStringMap.addString(identifierArg);
|
|
53306
|
+
this.runOnceTrackerStringMap.addString(runningId);
|
|
53307
|
+
try {
|
|
53308
|
+
const result = await funcArg();
|
|
53309
|
+
this.runOnceResultMap.addToMap(identifierArg, result);
|
|
53310
|
+
} catch (error) {
|
|
53311
|
+
this.runOnceErrorMap.addToMap(identifierArg, error);
|
|
53312
|
+
} finally {
|
|
53313
|
+
this.runOnceTrackerStringMap.removeString(runningId);
|
|
53314
|
+
}
|
|
53315
|
+
}
|
|
53316
|
+
return await this.runOnceTrackerStringMap.registerUntilTrue((stringMap) => {
|
|
53317
|
+
return !stringMap.includes(runningId);
|
|
53318
|
+
}, () => {
|
|
53319
|
+
const error = this.runOnceErrorMap.getByKey(identifierArg);
|
|
53320
|
+
if (error) {
|
|
53321
|
+
throw error;
|
|
53322
|
+
}
|
|
53323
|
+
return this.runOnceResultMap.getByKey(identifierArg);
|
|
53324
|
+
});
|
|
53325
|
+
}
|
|
53326
|
+
// setStuff
|
|
53327
|
+
/**
|
|
53328
|
+
* allows to set global styles
|
|
53329
|
+
* @param stylesText the css text you want to set
|
|
53330
|
+
*/
|
|
53331
|
+
async setGlobalStyles(stylesText) {
|
|
53332
|
+
await this.domReady.promise;
|
|
53333
|
+
const styleElement = document.createElement("style");
|
|
53334
|
+
styleElement.type = "text/css";
|
|
53335
|
+
styleElement.appendChild(document.createTextNode(stylesText));
|
|
53336
|
+
this.elements.headElement.appendChild(styleElement);
|
|
53337
|
+
}
|
|
53338
|
+
/**
|
|
53339
|
+
* allows to set global styles
|
|
53340
|
+
* @param stylesText the css text you want to set
|
|
53341
|
+
*/
|
|
53342
|
+
async setExternalScript(scriptLinkArg) {
|
|
53343
|
+
await this.domReady.promise;
|
|
53344
|
+
const done = dist_ts_exports.defer();
|
|
53345
|
+
const script = document.createElement("script");
|
|
53346
|
+
script.src = scriptLinkArg;
|
|
53347
|
+
script.addEventListener("load", function() {
|
|
53348
|
+
done.resolve();
|
|
53349
|
+
});
|
|
53350
|
+
const parentNode = document.head || document.body;
|
|
53351
|
+
parentNode.append(script);
|
|
53352
|
+
await done.promise;
|
|
53353
|
+
}
|
|
53354
|
+
/**
|
|
53355
|
+
* allows setting external css files
|
|
53356
|
+
* @param cssLinkArg a url to an external stylesheet
|
|
53357
|
+
*/
|
|
53358
|
+
async setExternalCss(cssLinkArg) {
|
|
53359
|
+
const cssTag = document.createElement("link");
|
|
53360
|
+
cssTag.rel = "stylesheet";
|
|
53361
|
+
cssTag.crossOrigin = "anonymous";
|
|
53362
|
+
cssTag.href = cssLinkArg;
|
|
53363
|
+
document.head.append(cssTag);
|
|
53364
|
+
}
|
|
53365
|
+
/**
|
|
53366
|
+
* allows setting of website infos
|
|
53367
|
+
* @param optionsArg the website info
|
|
53368
|
+
*/
|
|
53369
|
+
async setWebsiteInfo(optionsArg) {
|
|
53370
|
+
await this.websetup.setup(optionsArg);
|
|
53371
|
+
await this.websetup.readyPromise;
|
|
53372
|
+
}
|
|
53373
|
+
};
|
|
53374
|
+
}
|
|
53375
|
+
});
|
|
53376
|
+
|
|
53377
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.basestyles.js
|
|
53378
|
+
var scrollBarStyles2, globalBaseStyles2;
|
|
53379
|
+
var init_domtools_css_basestyles2 = __esm({
|
|
53380
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.basestyles.js"() {
|
|
53381
|
+
init_domtools_classes_domtools2();
|
|
53382
|
+
init_lit();
|
|
53383
|
+
scrollBarStyles2 = (() => {
|
|
53384
|
+
const returnStylesOld = navigator.userAgent.indexOf("Mac OS X") === -1 ? i``.cssText : ``;
|
|
53385
|
+
const returnStyles = i`
|
|
53386
|
+
/* width */
|
|
53387
|
+
::-webkit-scrollbar {
|
|
53388
|
+
width: 0px;
|
|
53389
|
+
}
|
|
53390
|
+
body {
|
|
53391
|
+
scrollbar-width: none;
|
|
53392
|
+
}
|
|
53393
|
+
`.cssText;
|
|
53394
|
+
return returnStyles;
|
|
53395
|
+
})();
|
|
53396
|
+
globalBaseStyles2 = i`
|
|
53397
|
+
/*
|
|
53398
|
+
@font-face {
|
|
53399
|
+
font-family: 'Material Icons';
|
|
53400
|
+
font-style: normal;
|
|
53401
|
+
font-weight: 400;
|
|
53402
|
+
src: url(https://fonts.gstatic.com/s/materialicons/v42/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2)
|
|
53403
|
+
format('woff2');
|
|
53404
|
+
} */
|
|
53405
|
+
|
|
53406
|
+
/* global body styles */
|
|
53407
|
+
body {
|
|
53408
|
+
margin: 0px;
|
|
53409
|
+
font-family: 'Geist Sans', 'Inter', sans-serif;
|
|
53410
|
+
box-sizing: border-box;
|
|
53411
|
+
}
|
|
53412
|
+
|
|
53413
|
+
/* scroll bar styles */
|
|
53414
|
+
${r(scrollBarStyles2)}
|
|
53415
|
+
`.cssText;
|
|
53416
|
+
}
|
|
53417
|
+
});
|
|
53418
|
+
|
|
53419
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js
|
|
53420
|
+
var domtools_elementbasic_exports2 = {};
|
|
53421
|
+
__export(domtools_elementbasic_exports2, {
|
|
53422
|
+
setup: () => setup2,
|
|
53423
|
+
staticStyles: () => staticStyles2,
|
|
53424
|
+
styles: () => styles2
|
|
53425
|
+
});
|
|
53426
|
+
var staticStyles2, styles2, setup2;
|
|
53427
|
+
var init_domtools_elementbasic2 = __esm({
|
|
53428
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.elementbasic.js"() {
|
|
53429
|
+
init_domtools_plugins2();
|
|
53430
|
+
init_domtools_classes_domtools2();
|
|
53431
|
+
init_domtools_css_basestyles2();
|
|
53432
|
+
init_lit();
|
|
53433
|
+
staticStyles2 = i`
|
|
53434
|
+
* {
|
|
53435
|
+
transition: background 0.1s, color 0.1s;
|
|
53436
|
+
box-sizing: border-box;
|
|
53437
|
+
}
|
|
53438
|
+
|
|
53439
|
+
:host {
|
|
53440
|
+
box-sizing: border-box;
|
|
53441
|
+
font-family: 'Geist Sans', 'Inter', sans-serif;
|
|
53442
|
+
}
|
|
53443
|
+
|
|
53444
|
+
${r(scrollBarStyles2)}
|
|
53445
|
+
`;
|
|
53446
|
+
styles2 = b2`
|
|
53447
|
+
<style>
|
|
53448
|
+
* {
|
|
53449
|
+
transition: background 0.1s, color 0.1s;
|
|
53450
|
+
box-sizing: border-box;
|
|
53451
|
+
}
|
|
53452
|
+
|
|
53453
|
+
:host {
|
|
53454
|
+
font-family: 'Geist Sans', 'Inter', sans-serif;
|
|
53455
|
+
}
|
|
53456
|
+
|
|
53457
|
+
${scrollBarStyles2}
|
|
53458
|
+
</style>
|
|
53459
|
+
`;
|
|
53460
|
+
setup2 = async (elementArg, optionsArg = {}) => {
|
|
53461
|
+
const domTools = await DomTools2.setupDomTools(optionsArg);
|
|
53462
|
+
if (elementArg) {
|
|
53463
|
+
}
|
|
53464
|
+
domTools.runOnce("elementBasicSetup", async () => {
|
|
53465
|
+
domTools.setGlobalStyles(globalBaseStyles2);
|
|
53466
|
+
});
|
|
53467
|
+
return domTools;
|
|
53468
|
+
};
|
|
53469
|
+
}
|
|
53470
|
+
});
|
|
53471
|
+
|
|
53472
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.js
|
|
53473
|
+
var domtools_css_exports2 = {};
|
|
53474
|
+
__export(domtools_css_exports2, {
|
|
53475
|
+
cssGridColumns: () => cssGridColumns2
|
|
53476
|
+
});
|
|
53477
|
+
var cssGridColumns2;
|
|
53478
|
+
var init_domtools_css2 = __esm({
|
|
53479
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.css.js"() {
|
|
53480
|
+
cssGridColumns2 = (amountOfColumnsArg, gapSizeArg) => {
|
|
53481
|
+
let returnString = ``;
|
|
53482
|
+
for (let i11 = 0; i11 < amountOfColumnsArg; i11++) {
|
|
53483
|
+
returnString += ` calc((100%/${amountOfColumnsArg}) - (${gapSizeArg * (amountOfColumnsArg - 1)}px/${amountOfColumnsArg}))`;
|
|
53484
|
+
}
|
|
53485
|
+
return returnString;
|
|
53486
|
+
};
|
|
53487
|
+
}
|
|
53488
|
+
});
|
|
53489
|
+
|
|
53490
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.pluginexports.js
|
|
53491
|
+
var domtools_pluginexports_exports2 = {};
|
|
53492
|
+
__export(domtools_pluginexports_exports2, {
|
|
53493
|
+
SweetScroll: () => import_sweet_scroll4.default,
|
|
53494
|
+
smartdelay: () => dist_ts_exports3,
|
|
53495
|
+
smartmarkdown: () => dist_ts_exports19,
|
|
53496
|
+
smartpromise: () => dist_ts_exports,
|
|
53497
|
+
smartrouter: () => dist_ts_exports20,
|
|
53498
|
+
smartrx: () => dist_ts_exports2,
|
|
53499
|
+
smartstate: () => dist_ts_exports21,
|
|
53500
|
+
smartstring: () => dist_ts_exports11,
|
|
53501
|
+
smarturl: () => dist_ts_exports22,
|
|
53502
|
+
typedrequest: () => dist_ts_exports17
|
|
53503
|
+
});
|
|
53504
|
+
var import_sweet_scroll4;
|
|
53505
|
+
var init_domtools_pluginexports2 = __esm({
|
|
53506
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/domtools.pluginexports.js"() {
|
|
53507
|
+
init_dist_ts3();
|
|
53508
|
+
init_dist_ts19();
|
|
53509
|
+
init_dist_ts();
|
|
53510
|
+
import_sweet_scroll4 = __toESM(require_sweet_scroll(), 1);
|
|
53511
|
+
init_dist_ts21();
|
|
53512
|
+
init_dist_ts20();
|
|
53513
|
+
init_dist_ts2();
|
|
53514
|
+
init_dist_ts11();
|
|
53515
|
+
init_dist_ts22();
|
|
53516
|
+
init_dist_ts17();
|
|
53517
|
+
}
|
|
53518
|
+
});
|
|
53519
|
+
|
|
53520
|
+
// node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/index.js
|
|
53521
|
+
var init_dist_ts29 = __esm({
|
|
53522
|
+
"node_modules/.pnpm/@design.estate+dees-domtools@2.3.9/node_modules/@design.estate/dees-domtools/dist_ts/index.js"() {
|
|
53523
|
+
init_domtools_colors2();
|
|
53524
|
+
init_domtools_elementbasic2();
|
|
53525
|
+
init_domtools_css_breakpoints2();
|
|
53526
|
+
init_domtools_css2();
|
|
53527
|
+
init_domtools_classes_domtools2();
|
|
53528
|
+
init_dist_ts17();
|
|
53529
|
+
init_dist_ts26();
|
|
53530
|
+
init_domtools_pluginexports2();
|
|
53531
|
+
}
|
|
53532
|
+
});
|
|
53533
|
+
|
|
52631
53534
|
// node_modules/.pnpm/@fortawesome+fontawesome-svg-core@7.2.0/node_modules/@fortawesome/fontawesome-svg-core/index.mjs
|
|
52632
53535
|
function _arrayLikeToArray(r11, a5) {
|
|
52633
53536
|
(null == a5 || a5 > r11.length) && (a5 = r11.length);
|
|
@@ -52935,9 +53838,9 @@ function joinAttributes(attributes) {
|
|
|
52935
53838
|
return acc + "".concat(attributeName, '="').concat(htmlEscape(attributes[attributeName]), '" ');
|
|
52936
53839
|
}, "").trim();
|
|
52937
53840
|
}
|
|
52938
|
-
function joinStyles(
|
|
52939
|
-
return Object.keys(
|
|
52940
|
-
return acc + "".concat(styleName, ": ").concat(
|
|
53841
|
+
function joinStyles(styles4) {
|
|
53842
|
+
return Object.keys(styles4 || {}).reduce(function(acc, styleName) {
|
|
53843
|
+
return acc + "".concat(styleName, ": ").concat(styles4[styleName].trim(), ";");
|
|
52941
53844
|
}, "");
|
|
52942
53845
|
}
|
|
52943
53846
|
function transformIsMeaningful(transform2) {
|
|
@@ -53161,7 +54064,7 @@ function getCanonicalIcon(values) {
|
|
|
53161
54064
|
return _objectSpread2(_objectSpread2(_objectSpread2({}, canonical), getDefaultCanonicalPrefix({
|
|
53162
54065
|
values,
|
|
53163
54066
|
family,
|
|
53164
|
-
styles:
|
|
54067
|
+
styles: styles3,
|
|
53165
54068
|
config: config2,
|
|
53166
54069
|
canonical,
|
|
53167
54070
|
givenPrefix
|
|
@@ -53179,7 +54082,7 @@ function applyShimAndAlias(skipLookups, givenPrefix, canonical) {
|
|
|
53179
54082
|
var aliasIconName = byAlias(prefix4, iconName);
|
|
53180
54083
|
iconName = shim.iconName || aliasIconName || iconName;
|
|
53181
54084
|
prefix4 = shim.prefix || prefix4;
|
|
53182
|
-
if (prefix4 === "far" && !
|
|
54085
|
+
if (prefix4 === "far" && !styles3["far"] && styles3["fas"] && !config2.autoFetchSvg) {
|
|
53183
54086
|
prefix4 = "fas";
|
|
53184
54087
|
}
|
|
53185
54088
|
return {
|
|
@@ -53188,7 +54091,7 @@ function applyShimAndAlias(skipLookups, givenPrefix, canonical) {
|
|
|
53188
54091
|
};
|
|
53189
54092
|
}
|
|
53190
54093
|
function getDefaultCanonicalPrefix(prefixOptions) {
|
|
53191
|
-
var values = prefixOptions.values, family = prefixOptions.family, canonical = prefixOptions.canonical, _prefixOptions$givenP = prefixOptions.givenPrefix, givenPrefix = _prefixOptions$givenP === void 0 ? "" : _prefixOptions$givenP, _prefixOptions$styles = prefixOptions.styles,
|
|
54094
|
+
var values = prefixOptions.values, family = prefixOptions.family, canonical = prefixOptions.canonical, _prefixOptions$givenP = prefixOptions.givenPrefix, givenPrefix = _prefixOptions$givenP === void 0 ? "" : _prefixOptions$givenP, _prefixOptions$styles = prefixOptions.styles, styles4 = _prefixOptions$styles === void 0 ? {} : _prefixOptions$styles, _prefixOptions$config = prefixOptions.config, config$$1 = _prefixOptions$config === void 0 ? {} : _prefixOptions$config;
|
|
53192
54095
|
var isDuotoneFamily = family === t8;
|
|
53193
54096
|
var valuesHasDuotone = values.includes("fa-duotone") || values.includes("fad");
|
|
53194
54097
|
var defaultFamilyIsDuotone = config$$1.familyDefault === "duotone";
|
|
@@ -53200,7 +54103,7 @@ function getDefaultCanonicalPrefix(prefixOptions) {
|
|
|
53200
54103
|
canonical.prefix = "fab";
|
|
53201
54104
|
}
|
|
53202
54105
|
if (!canonical.prefix && newCanonicalFamilies.includes(family)) {
|
|
53203
|
-
var validPrefix = Object.keys(
|
|
54106
|
+
var validPrefix = Object.keys(styles4).find(function(key2) {
|
|
53204
54107
|
return newCanonicalStyles.includes(key2);
|
|
53205
54108
|
});
|
|
53206
54109
|
if (validPrefix || config$$1.autoFetchSvg) {
|
|
@@ -53310,14 +54213,14 @@ function domVariants(val, abstractCreator) {
|
|
|
53310
54213
|
return val;
|
|
53311
54214
|
}
|
|
53312
54215
|
function asIcon(_ref2) {
|
|
53313
|
-
var children2 = _ref2.children, main = _ref2.main, mask = _ref2.mask, attributes = _ref2.attributes,
|
|
54216
|
+
var children2 = _ref2.children, main = _ref2.main, mask = _ref2.mask, attributes = _ref2.attributes, styles4 = _ref2.styles, transform2 = _ref2.transform;
|
|
53314
54217
|
if (transformIsMeaningful(transform2) && main.found && !mask.found) {
|
|
53315
54218
|
var width = main.width, height = main.height;
|
|
53316
54219
|
var offset = {
|
|
53317
54220
|
x: width / height / 2,
|
|
53318
54221
|
y: 0.5
|
|
53319
54222
|
};
|
|
53320
|
-
attributes["style"] = joinStyles(_objectSpread2(_objectSpread2({},
|
|
54223
|
+
attributes["style"] = joinStyles(_objectSpread2(_objectSpread2({}, styles4), {}, {
|
|
53321
54224
|
"transform-origin": "".concat(offset.x + transform2.x / 16, "em ").concat(offset.y + transform2.y / 16, "em")
|
|
53322
54225
|
}));
|
|
53323
54226
|
}
|
|
@@ -53407,17 +54310,17 @@ function makeLayersTextAbstract(params2) {
|
|
|
53407
54310
|
if (watchable) {
|
|
53408
54311
|
attributes[DATA_FA_I2SVG] = "";
|
|
53409
54312
|
}
|
|
53410
|
-
var
|
|
54313
|
+
var styles4 = _objectSpread2({}, extra.styles);
|
|
53411
54314
|
if (transformIsMeaningful(transform2)) {
|
|
53412
|
-
|
|
54315
|
+
styles4["transform"] = transformForCss({
|
|
53413
54316
|
transform: transform2,
|
|
53414
54317
|
startCentered: true,
|
|
53415
54318
|
width,
|
|
53416
54319
|
height
|
|
53417
54320
|
});
|
|
53418
|
-
|
|
54321
|
+
styles4["-webkit-transform"] = styles4["transform"];
|
|
53419
54322
|
}
|
|
53420
|
-
var styleString = joinStyles(
|
|
54323
|
+
var styleString = joinStyles(styles4);
|
|
53421
54324
|
if (styleString.length > 0) {
|
|
53422
54325
|
attributes["style"] = styleString;
|
|
53423
54326
|
}
|
|
@@ -53639,9 +54542,9 @@ function styleParser(node2) {
|
|
|
53639
54542
|
var val = [];
|
|
53640
54543
|
if (style) {
|
|
53641
54544
|
val = style.split(";").reduce(function(acc, style2) {
|
|
53642
|
-
var
|
|
53643
|
-
var prop =
|
|
53644
|
-
var value2 =
|
|
54545
|
+
var styles4 = style2.split(":");
|
|
54546
|
+
var prop = styles4[0];
|
|
54547
|
+
var value2 = styles4.slice(1);
|
|
53645
54548
|
if (prop && value2.length > 0) {
|
|
53646
54549
|
acc[prop] = value2.join(":").trim();
|
|
53647
54550
|
}
|
|
@@ -53828,9 +54731,9 @@ function hexValueFromContent(content3) {
|
|
|
53828
54731
|
var cleaned = content3.replace(CLEAN_CONTENT_PATTERN, "");
|
|
53829
54732
|
return toHex(_toConsumableArray(cleaned)[0] || "");
|
|
53830
54733
|
}
|
|
53831
|
-
function isSecondaryLayer(
|
|
53832
|
-
var hasStylisticSet =
|
|
53833
|
-
var content3 =
|
|
54734
|
+
function isSecondaryLayer(styles4) {
|
|
54735
|
+
var hasStylisticSet = styles4.getPropertyValue("font-feature-settings").includes("ss01");
|
|
54736
|
+
var content3 = styles4.getPropertyValue("content");
|
|
53834
54737
|
var cleaned = content3.replace(CLEAN_CONTENT_PATTERN, "");
|
|
53835
54738
|
var codePoint = cleaned.codePointAt(0);
|
|
53836
54739
|
var isPrependTen = codePoint >= SECONDARY_UNICODE_RANGE[0] && codePoint <= SECONDARY_UNICODE_RANGE[1];
|
|
@@ -53853,20 +54756,20 @@ function replaceForPosition(node2, position3) {
|
|
|
53853
54756
|
var alreadyProcessedPseudoElement = children2.filter(function(c$$1) {
|
|
53854
54757
|
return c$$1.getAttribute(DATA_FA_PSEUDO_ELEMENT) === position3;
|
|
53855
54758
|
})[0];
|
|
53856
|
-
var
|
|
53857
|
-
var fontFamily =
|
|
54759
|
+
var styles4 = WINDOW.getComputedStyle(node2, position3);
|
|
54760
|
+
var fontFamily = styles4.getPropertyValue("font-family");
|
|
53858
54761
|
var fontFamilyMatch = fontFamily.match(FONT_FAMILY_PATTERN);
|
|
53859
|
-
var fontWeight =
|
|
53860
|
-
var content3 =
|
|
54762
|
+
var fontWeight = styles4.getPropertyValue("font-weight");
|
|
54763
|
+
var content3 = styles4.getPropertyValue("content");
|
|
53861
54764
|
if (alreadyProcessedPseudoElement && !fontFamilyMatch) {
|
|
53862
54765
|
node2.removeChild(alreadyProcessedPseudoElement);
|
|
53863
54766
|
return resolve2();
|
|
53864
54767
|
} else if (fontFamilyMatch && content3 !== "none" && content3 !== "") {
|
|
53865
|
-
var _content4 =
|
|
54768
|
+
var _content4 = styles4.getPropertyValue("content");
|
|
53866
54769
|
var prefix4 = getPrefix(fontFamily, fontWeight);
|
|
53867
54770
|
var hexValue = hexValueFromContent(_content4);
|
|
53868
54771
|
var isV4 = fontFamilyMatch[0].startsWith("FontAwesome");
|
|
53869
|
-
var isSecondary = isSecondaryLayer(
|
|
54772
|
+
var isSecondary = isSecondaryLayer(styles4);
|
|
53870
54773
|
var iconName = byUnicode(prefix4, hexValue);
|
|
53871
54774
|
var iconIdentifier = iconName;
|
|
53872
54775
|
if (isV4) {
|
|
@@ -54005,7 +54908,7 @@ function deGroup(abstract) {
|
|
|
54005
54908
|
return [abstract];
|
|
54006
54909
|
}
|
|
54007
54910
|
}
|
|
54008
|
-
var noop2, _WINDOW, _DOCUMENT, _MUTATION_OBSERVER, _PERFORMANCE, _ref, _ref$userAgent, userAgent, WINDOW, DOCUMENT, MUTATION_OBSERVER, PERFORMANCE, IS_BROWSER, IS_DOM, IS_IE, _ht, G, M3, Q, X, Z2, i10, t8, d4, l5, f6, h7, n11, g3, o12, u6, m5, e10, y3, p6, s9, w3, a4, x3, b4, c10, I2, F, v4, S3, A3, P3, j3, B2, N2, k3, D3, T3, C3, W2, K2, R3, L2, U, dt2, ht, yt, Kt, Et, Mt, Ht, Qt, Xt, J, r10, E3, _3, ll, sl, hl, nl, ml, _wt, t$1, f$1, h$1, o$1, n$1, s$1, u$1, g$1, y$1, m$1, a$1, p$1, w$1, e$1, b$1, c$1, r$1, x$1, i$1, I$1, F$1, v$1, S$1, A$1, P$1, j$1, B$1, N$1, k$1, D$1, C$1, T$1, L$1, W$1, R$1, K$1, U$1, J$1, E$1, _$1, wt$1, G$1, d$1, M$1, O2, dl$1, Hl, Y$1, Xl, V$1, lo, $3, z$1, q$1, H$1, so, fo, NAMESPACE_IDENTIFIER, UNITS_IN_GRID, DEFAULT_CSS_PREFIX, DEFAULT_REPLACEMENT_CLASS, DATA_FA_I2SVG, DATA_FA_PSEUDO_ELEMENT, DATA_FA_PSEUDO_ELEMENT_PENDING, DATA_PREFIX, DATA_ICON, HTML_CLASS_I2SVG_BASE_CLASS, MUTATION_APPROACH_ASYNC, TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS, PSEUDO_ELEMENTS, PRODUCTION, _PREFIX_TO_STYLE, PREFIX_TO_STYLE, _STYLE_TO_PREFIX, STYLE_TO_PREFIX, _PREFIX_TO_LONG_STYLE, PREFIX_TO_LONG_STYLE, _LONG_STYLE_TO_PREFIX, LONG_STYLE_TO_PREFIX, ICON_SELECTION_SYNTAX_PATTERN, LAYERS_TEXT_CLASSNAME, FONT_FAMILY_PATTERN, _FONT_WEIGHT_TO_PREFIX, FONT_WEIGHT_TO_PREFIX, ATTRIBUTES_WATCHED_FOR_MUTATION, DUOTONE_CLASSES, RESERVED_CLASSES, initial, _default, _config, config2, _onChangeCb, d$2, meaninglessTransform, idPool, baseStyles, _cssInserted, InjectCSS, w$2, namespace, functions, _listener, loaded, bindInternal4, reduce3, MONO, DUO, modernMatches, legacyMatches,
|
|
54911
|
+
var noop2, _WINDOW, _DOCUMENT, _MUTATION_OBSERVER, _PERFORMANCE, _ref, _ref$userAgent, userAgent, WINDOW, DOCUMENT, MUTATION_OBSERVER, PERFORMANCE, IS_BROWSER, IS_DOM, IS_IE, _ht, G, M3, Q, X, Z2, i10, t8, d4, l5, f6, h7, n11, g3, o12, u6, m5, e10, y3, p6, s9, w3, a4, x3, b4, c10, I2, F, v4, S3, A3, P3, j3, B2, N2, k3, D3, T3, C3, W2, K2, R3, L2, U, dt2, ht, yt, Kt, Et, Mt, Ht, Qt, Xt, J, r10, E3, _3, ll, sl, hl, nl, ml, _wt, t$1, f$1, h$1, o$1, n$1, s$1, u$1, g$1, y$1, m$1, a$1, p$1, w$1, e$1, b$1, c$1, r$1, x$1, i$1, I$1, F$1, v$1, S$1, A$1, P$1, j$1, B$1, N$1, k$1, D$1, C$1, T$1, L$1, W$1, R$1, K$1, U$1, J$1, E$1, _$1, wt$1, G$1, d$1, M$1, O2, dl$1, Hl, Y$1, Xl, V$1, lo, $3, z$1, q$1, H$1, so, fo, NAMESPACE_IDENTIFIER, UNITS_IN_GRID, DEFAULT_CSS_PREFIX, DEFAULT_REPLACEMENT_CLASS, DATA_FA_I2SVG, DATA_FA_PSEUDO_ELEMENT, DATA_FA_PSEUDO_ELEMENT_PENDING, DATA_PREFIX, DATA_ICON, HTML_CLASS_I2SVG_BASE_CLASS, MUTATION_APPROACH_ASYNC, TAGNAMES_TO_SKIP_FOR_PSEUDOELEMENTS, PSEUDO_ELEMENTS, PRODUCTION, _PREFIX_TO_STYLE, PREFIX_TO_STYLE, _STYLE_TO_PREFIX, STYLE_TO_PREFIX, _PREFIX_TO_LONG_STYLE, PREFIX_TO_LONG_STYLE, _LONG_STYLE_TO_PREFIX, LONG_STYLE_TO_PREFIX, ICON_SELECTION_SYNTAX_PATTERN, LAYERS_TEXT_CLASSNAME, FONT_FAMILY_PATTERN, _FONT_WEIGHT_TO_PREFIX, FONT_WEIGHT_TO_PREFIX, ATTRIBUTES_WATCHED_FOR_MUTATION, DUOTONE_CLASSES, RESERVED_CLASSES, initial, _default, _config, config2, _onChangeCb, d$2, meaninglessTransform, idPool, baseStyles, _cssInserted, InjectCSS, w$2, namespace, functions, _listener, loaded, bindInternal4, reduce3, MONO, DUO, modernMatches, legacyMatches, styles3, shims, FAMILY_NAMES, PREFIXES_FOR_FAMILY, _defaultUsablePrefix, _byUnicode, _byLigature, _byOldName, _byOldUnicode, _byAlias, build, emptyCanonicalIcon, _faCombinedClasses, newCanonicalFamilies, newCanonicalStyles, Library, _plugins, _hooks, providers, defaultProviderKeys, library, noAuto, dom, parse9, api, autoReplace, styles$1, missingIconResolutionMixin, noop$1, p$2, preamble, begin, end, perf, noop$2, mutators, disabled, mo, styles$2, render, ReplaceElements, Layers, LayersCounter, LayersText, CLEAN_CONTENT_PATTERN, SECONDARY_UNICODE_RANGE, _FONT_FAMILY_WEIGHT_TO_PREFIX, FONT_FAMILY_WEIGHT_TO_PREFIX, FONT_FAMILY_WEIGHT_FALLBACK, hasPseudoElement, parseCSSRuleForPseudos, PseudoElements, _unwatched, MutationObserver$1, parseTransformString, PowerTransforms, ALL_SPACE, Masks, MissingIconIndicator, SvgSymbols, plugins2, noAuto$1, config$1, library$1, dom$1, parse$1, findIconDefinition$1, toHtml$1, icon2, layer, text8, counter, attrs;
|
|
54009
54912
|
var init_fontawesome_svg_core = __esm({
|
|
54010
54913
|
"node_modules/.pnpm/@fortawesome+fontawesome-svg-core@7.2.0/node_modules/@fortawesome/fontawesome-svg-core/index.mjs"() {
|
|
54011
54914
|
noop2 = function noop3() {
|
|
@@ -54969,7 +55872,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
54969
55872
|
attr1: 1,
|
|
54970
55873
|
d1: 2
|
|
54971
55874
|
})]];
|
|
54972
|
-
|
|
55875
|
+
styles3 = namespace.styles, shims = namespace.shims;
|
|
54973
55876
|
FAMILY_NAMES = Object.keys(PREFIX_TO_LONG_STYLE);
|
|
54974
55877
|
PREFIXES_FOR_FAMILY = FAMILY_NAMES.reduce(function(acc, familyId) {
|
|
54975
55878
|
acc[familyId] = Object.keys(PREFIX_TO_LONG_STYLE[familyId]);
|
|
@@ -54983,7 +55886,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
54983
55886
|
_byAlias = {};
|
|
54984
55887
|
build = function build2() {
|
|
54985
55888
|
var lookup = function lookup2(reducer) {
|
|
54986
|
-
return reduce3(
|
|
55889
|
+
return reduce3(styles3, function(o$$1, style, prefix4) {
|
|
54987
55890
|
o$$1[prefix4] = reduce3(style, reducer, {});
|
|
54988
55891
|
return o$$1;
|
|
54989
55892
|
}, {});
|
|
@@ -55022,7 +55925,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55022
55925
|
});
|
|
55023
55926
|
return acc;
|
|
55024
55927
|
});
|
|
55025
|
-
var hasRegular = "far" in
|
|
55928
|
+
var hasRegular = "far" in styles3 || config2.autoFetchSvg;
|
|
55026
55929
|
var shimLookups = reduce3(shims, function(acc, shim) {
|
|
55027
55930
|
var maybeNameMaybeUnicode = shim[0];
|
|
55028
55931
|
var prefix4 = shim[1];
|
|
@@ -55296,7 +56199,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55296
56199
|
styles$2 = namespace.styles;
|
|
55297
56200
|
render = function render2(iconDefinition) {
|
|
55298
56201
|
var params2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
55299
|
-
var _params$transform = params2.transform, transform2 = _params$transform === void 0 ? meaninglessTransform : _params$transform, _params$symbol = params2.symbol, symbol = _params$symbol === void 0 ? false : _params$symbol, _params$mask = params2.mask, mask = _params$mask === void 0 ? null : _params$mask, _params$maskId = params2.maskId, maskId = _params$maskId === void 0 ? null : _params$maskId, _params$classes = params2.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params2.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params2.styles,
|
|
56202
|
+
var _params$transform = params2.transform, transform2 = _params$transform === void 0 ? meaninglessTransform : _params$transform, _params$symbol = params2.symbol, symbol = _params$symbol === void 0 ? false : _params$symbol, _params$mask = params2.mask, mask = _params$mask === void 0 ? null : _params$mask, _params$maskId = params2.maskId, maskId = _params$maskId === void 0 ? null : _params$maskId, _params$classes = params2.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params2.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params2.styles, styles4 = _params$styles === void 0 ? {} : _params$styles;
|
|
55300
56203
|
if (!iconDefinition) return;
|
|
55301
56204
|
var prefix4 = iconDefinition.prefix, iconName = iconDefinition.iconName, icon3 = iconDefinition.icon;
|
|
55302
56205
|
return domVariants(_objectSpread2({
|
|
@@ -55323,7 +56226,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55323
56226
|
maskId,
|
|
55324
56227
|
extra: {
|
|
55325
56228
|
attributes,
|
|
55326
|
-
styles:
|
|
56229
|
+
styles: styles4,
|
|
55327
56230
|
classes
|
|
55328
56231
|
}
|
|
55329
56232
|
});
|
|
@@ -55377,8 +56280,8 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55377
56280
|
});
|
|
55378
56281
|
};
|
|
55379
56282
|
providers$$1.generateAbstractIcon = function(_ref3) {
|
|
55380
|
-
var children2 = _ref3.children, attributes = _ref3.attributes, main = _ref3.main, transform2 = _ref3.transform,
|
|
55381
|
-
var styleString = joinStyles(
|
|
56283
|
+
var children2 = _ref3.children, attributes = _ref3.attributes, main = _ref3.main, transform2 = _ref3.transform, styles4 = _ref3.styles;
|
|
56284
|
+
var styleString = joinStyles(styles4);
|
|
55382
56285
|
if (styleString.length > 0) {
|
|
55383
56286
|
attributes["style"] = styleString;
|
|
55384
56287
|
}
|
|
@@ -55435,7 +56338,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55435
56338
|
return {
|
|
55436
56339
|
counter: function counter2(content3) {
|
|
55437
56340
|
var params2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
55438
|
-
var _params$title = params2.title, title = _params$title === void 0 ? null : _params$title, _params$classes = params2.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params2.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params2.styles,
|
|
56341
|
+
var _params$title = params2.title, title = _params$title === void 0 ? null : _params$title, _params$classes = params2.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params2.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params2.styles, styles4 = _params$styles === void 0 ? {} : _params$styles;
|
|
55439
56342
|
return domVariants({
|
|
55440
56343
|
type: "counter",
|
|
55441
56344
|
content: content3
|
|
@@ -55449,7 +56352,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55449
56352
|
title,
|
|
55450
56353
|
extra: {
|
|
55451
56354
|
attributes,
|
|
55452
|
-
styles:
|
|
56355
|
+
styles: styles4,
|
|
55453
56356
|
classes: ["".concat(config2.cssPrefix, "-layers-counter")].concat(_toConsumableArray(classes))
|
|
55454
56357
|
}
|
|
55455
56358
|
});
|
|
@@ -55463,7 +56366,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55463
56366
|
return {
|
|
55464
56367
|
text: function text9(content3) {
|
|
55465
56368
|
var params2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
55466
|
-
var _params$transform = params2.transform, transform2 = _params$transform === void 0 ? meaninglessTransform : _params$transform, _params$classes = params2.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params2.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params2.styles,
|
|
56369
|
+
var _params$transform = params2.transform, transform2 = _params$transform === void 0 ? meaninglessTransform : _params$transform, _params$classes = params2.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params2.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params2.styles, styles4 = _params$styles === void 0 ? {} : _params$styles;
|
|
55467
56370
|
return domVariants({
|
|
55468
56371
|
type: "text",
|
|
55469
56372
|
content: content3
|
|
@@ -55477,7 +56380,7 @@ var init_fontawesome_svg_core = __esm({
|
|
|
55477
56380
|
transform: _objectSpread2(_objectSpread2({}, meaninglessTransform), transform2),
|
|
55478
56381
|
extra: {
|
|
55479
56382
|
attributes,
|
|
55480
|
-
styles:
|
|
56383
|
+
styles: styles4,
|
|
55481
56384
|
classes: ["".concat(config2.cssPrefix, "-layers-text")].concat(_toConsumableArray(classes))
|
|
55482
56385
|
}
|
|
55483
56386
|
});
|
|
@@ -83106,10 +84009,10 @@ var init_key_round = __esm({
|
|
|
83106
84009
|
});
|
|
83107
84010
|
|
|
83108
84011
|
// node_modules/.pnpm/lucide@0.577.0/node_modules/lucide/dist/esm/icons/key.js
|
|
83109
|
-
var
|
|
84012
|
+
var Key3;
|
|
83110
84013
|
var init_key = __esm({
|
|
83111
84014
|
"node_modules/.pnpm/lucide@0.577.0/node_modules/lucide/dist/esm/icons/key.js"() {
|
|
83112
|
-
|
|
84015
|
+
Key3 = [
|
|
83113
84016
|
["path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" }],
|
|
83114
84017
|
["path", { d: "m21 2-9.6 9.6" }],
|
|
83115
84018
|
["circle", { cx: "7.5", cy: "15.5", r: "5.5" }]
|
|
@@ -83137,10 +84040,10 @@ var init_keyboard_off = __esm({
|
|
|
83137
84040
|
});
|
|
83138
84041
|
|
|
83139
84042
|
// node_modules/.pnpm/lucide@0.577.0/node_modules/lucide/dist/esm/icons/keyboard.js
|
|
83140
|
-
var
|
|
84043
|
+
var Keyboard3;
|
|
83141
84044
|
var init_keyboard = __esm({
|
|
83142
84045
|
"node_modules/.pnpm/lucide@0.577.0/node_modules/lucide/dist/esm/icons/keyboard.js"() {
|
|
83143
|
-
|
|
84046
|
+
Keyboard3 = [
|
|
83144
84047
|
["path", { d: "M10 8h.01" }],
|
|
83145
84048
|
["path", { d: "M12 12h.01" }],
|
|
83146
84049
|
["path", { d: "M14 8h.01" }],
|
|
@@ -96846,10 +97749,10 @@ __export(iconsAndAliases_exports, {
|
|
|
96846
97749
|
KanbanSquare: () => SquareKanban,
|
|
96847
97750
|
KanbanSquareDashed: () => SquareDashedKanban,
|
|
96848
97751
|
Kayak: () => Kayak,
|
|
96849
|
-
Key: () =>
|
|
97752
|
+
Key: () => Key3,
|
|
96850
97753
|
KeyRound: () => KeyRound,
|
|
96851
97754
|
KeySquare: () => KeySquare,
|
|
96852
|
-
Keyboard: () =>
|
|
97755
|
+
Keyboard: () => Keyboard3,
|
|
96853
97756
|
KeyboardMusic: () => KeyboardMusic,
|
|
96854
97757
|
KeyboardOff: () => KeyboardOff,
|
|
96855
97758
|
Lamp: () => Lamp,
|
|
@@ -100505,10 +101408,10 @@ __export(lucide_exports, {
|
|
|
100505
101408
|
KanbanSquare: () => SquareKanban,
|
|
100506
101409
|
KanbanSquareDashed: () => SquareDashedKanban,
|
|
100507
101410
|
Kayak: () => Kayak,
|
|
100508
|
-
Key: () =>
|
|
101411
|
+
Key: () => Key3,
|
|
100509
101412
|
KeyRound: () => KeyRound,
|
|
100510
101413
|
KeySquare: () => KeySquare,
|
|
100511
|
-
Keyboard: () =>
|
|
101414
|
+
Keyboard: () => Keyboard3,
|
|
100512
101415
|
KeyboardMusic: () => KeyboardMusic,
|
|
100513
101416
|
KeyboardOff: () => KeyboardOff,
|
|
100514
101417
|
Lamp: () => Lamp,
|
|
@@ -103533,7 +104436,7 @@ var _strokeWidth_dec, _color_dec, _iconSize_dec, _icon_dec, _iconFA_dec, _a2, _D
|
|
|
103533
104436
|
var init_dees_icon = __esm({
|
|
103534
104437
|
"ts_web/elements/00group-utility/dees-icon/dees-icon.ts"() {
|
|
103535
104438
|
init_dist_ts28();
|
|
103536
|
-
|
|
104439
|
+
init_dist_ts29();
|
|
103537
104440
|
init_theme();
|
|
103538
104441
|
init_fontawesome_svg_core();
|
|
103539
104442
|
init_free_brands_svg_icons();
|
|
@@ -103635,7 +104538,7 @@ var init_dees_icon = __esm({
|
|
|
103635
104538
|
__publicField(this, "lastIconSize", null);
|
|
103636
104539
|
__publicField(this, "lastColor", null);
|
|
103637
104540
|
__publicField(this, "lastStrokeWidth", null);
|
|
103638
|
-
|
|
104541
|
+
domtools_elementbasic_exports2.setup();
|
|
103639
104542
|
}
|
|
103640
104543
|
/**
|
|
103641
104544
|
* Gets the effective icon value, supporting both the new `icon` property
|
|
@@ -103713,7 +104616,7 @@ var init_dees_icon = __esm({
|
|
|
103713
104616
|
}
|
|
103714
104617
|
render() {
|
|
103715
104618
|
return b2`
|
|
103716
|
-
${
|
|
104619
|
+
${domtools_elementbasic_exports2.styles}
|
|
103717
104620
|
<style>
|
|
103718
104621
|
#iconContainer {
|
|
103719
104622
|
width: ${this.iconSize}px;
|
|
@@ -106419,7 +107322,7 @@ var _activeTabId_dec, _tabs_dec6, _showTabBar_dec, _tabBarWidth_dec, _environmen
|
|
|
106419
107322
|
var init_dees_workspace_terminal = __esm({
|
|
106420
107323
|
"ts_web/elements/00group-workspace/dees-workspace-terminal/dees-workspace-terminal.ts"() {
|
|
106421
107324
|
init_dist_ts28();
|
|
106422
|
-
|
|
107325
|
+
init_dist_ts29();
|
|
106423
107326
|
init_theme();
|
|
106424
107327
|
init_group_runtime();
|
|
106425
107328
|
init_dees_icon();
|
|
@@ -106449,7 +107352,7 @@ var init_dees_workspace_terminal = __esm({
|
|
|
106449
107352
|
* Promise that resolves when the environment is ready.
|
|
106450
107353
|
* @deprecated Use executionEnvironment directly
|
|
106451
107354
|
*/
|
|
106452
|
-
__publicField(this, "environmentDeferred", new
|
|
107355
|
+
__publicField(this, "environmentDeferred", new domtools_pluginexports_exports2.smartpromise.Deferred());
|
|
106453
107356
|
__publicField(this, "environmentPromise", this.environmentDeferred.promise);
|
|
106454
107357
|
this.tabManager = new TerminalTabManager();
|
|
106455
107358
|
this.resizeObserver = new ResizeObserver(() => {
|
|
@@ -107760,7 +108663,7 @@ var DeesWindowLayer = _DeesWindowLayer;
|
|
|
107760
108663
|
|
|
107761
108664
|
// ts_web/elements/00group-overlay/dees-contextmenu/dees-contextmenu.ts
|
|
107762
108665
|
init_dist_ts28();
|
|
107763
|
-
|
|
108666
|
+
init_dist_ts29();
|
|
107764
108667
|
init_dees_icon();
|
|
107765
108668
|
init_theme();
|
|
107766
108669
|
var _menuItems_dec, _a3, _DeesContextmenu_decorators, _init3, _menuItems;
|
|
@@ -107849,7 +108752,7 @@ var _DeesContextmenu = class _DeesContextmenu extends (_a3 = DeesElement, _menuI
|
|
|
107849
108752
|
}
|
|
107850
108753
|
});
|
|
107851
108754
|
document.body.append(contextMenu);
|
|
107852
|
-
await
|
|
108755
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(0);
|
|
107853
108756
|
const rect = contextMenu.getBoundingClientRect();
|
|
107854
108757
|
const windowWidth = window.innerWidth;
|
|
107855
108758
|
const windowHeight = window.innerHeight;
|
|
@@ -107866,7 +108769,7 @@ var _DeesContextmenu = class _DeesContextmenu extends (_a3 = DeesElement, _menuI
|
|
|
107866
108769
|
contextMenu.style.top = `${top}px`;
|
|
107867
108770
|
contextMenu.style.left = `${left}px`;
|
|
107868
108771
|
contextMenu.style.transformOrigin = "top left";
|
|
107869
|
-
await
|
|
108772
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(0);
|
|
107870
108773
|
contextMenu.style.opacity = "1";
|
|
107871
108774
|
contextMenu.style.transform = "scale(1) translateY(0)";
|
|
107872
108775
|
}
|
|
@@ -107953,7 +108856,7 @@ var _DeesContextmenu = class _DeesContextmenu extends (_a3 = DeesElement, _menuI
|
|
|
107953
108856
|
this.submenu.style.opacity = "0";
|
|
107954
108857
|
this.submenu.style.transform = "scale(0.95)";
|
|
107955
108858
|
document.body.append(this.submenu);
|
|
107956
|
-
await
|
|
108859
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(0);
|
|
107957
108860
|
const itemRect = menuItemElement.getBoundingClientRect();
|
|
107958
108861
|
const menuRect = this.getBoundingClientRect();
|
|
107959
108862
|
const submenuRect = this.submenu.getBoundingClientRect();
|
|
@@ -107968,7 +108871,7 @@ var _DeesContextmenu = class _DeesContextmenu extends (_a3 = DeesElement, _menuI
|
|
|
107968
108871
|
}
|
|
107969
108872
|
this.submenu.style.left = `${left}px`;
|
|
107970
108873
|
this.submenu.style.top = `${top}px`;
|
|
107971
|
-
await
|
|
108874
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(0);
|
|
107972
108875
|
this.submenu.style.opacity = "1";
|
|
107973
108876
|
this.submenu.style.transform = "scale(1)";
|
|
107974
108877
|
this.submenu.addEventListener("mouseenter", () => {
|
|
@@ -108004,7 +108907,7 @@ var _DeesContextmenu = class _DeesContextmenu extends (_a3 = DeesElement, _menuI
|
|
|
108004
108907
|
}
|
|
108005
108908
|
this.style.opacity = "0";
|
|
108006
108909
|
this.style.transform = "scale(0.95) translateY(-10px)";
|
|
108007
|
-
await
|
|
108910
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(100);
|
|
108008
108911
|
if (this.parentElement) {
|
|
108009
108912
|
this.parentElement.removeChild(this);
|
|
108010
108913
|
}
|
|
@@ -108266,7 +109169,7 @@ var demoFunc3 = () => {
|
|
|
108266
109169
|
|
|
108267
109170
|
// ts_web/elements/00group-appui/dees-appui-activitylog/dees-appui-activitylog.ts
|
|
108268
109171
|
init_dist_ts28();
|
|
108269
|
-
|
|
109172
|
+
init_dist_ts29();
|
|
108270
109173
|
init_dees_icon();
|
|
108271
109174
|
init_theme();
|
|
108272
109175
|
var _filterCriteria_dec, _searchQuery_dec, _entries_dec, _a4, _DeesAppuiActivitylog_decorators, _init4, _entries, _searchQuery, _filterCriteria;
|
|
@@ -108278,14 +109181,14 @@ var DeesAppuiActivitylog = class extends (_a4 = DeesElement, _entries_dec = [r5(
|
|
|
108278
109181
|
__privateAdd(this, _searchQuery, __runInitializers(_init4, 12, this, "")), __runInitializers(_init4, 15, this);
|
|
108279
109182
|
__privateAdd(this, _filterCriteria, __runInitializers(_init4, 16, this, {})), __runInitializers(_init4, 19, this);
|
|
108280
109183
|
// RxJS Subject for reactive updates
|
|
108281
|
-
__publicField(this, "entries$", new
|
|
109184
|
+
__publicField(this, "entries$", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
108282
109185
|
}
|
|
108283
109186
|
// RENDER
|
|
108284
109187
|
render() {
|
|
108285
109188
|
const filteredEntries = this.getFilteredEntries();
|
|
108286
109189
|
const groupedEntries = this.groupEntriesByDate(filteredEntries);
|
|
108287
109190
|
return b2`
|
|
108288
|
-
${
|
|
109191
|
+
${domtools_elementbasic_exports2.styles}
|
|
108289
109192
|
<style></style>
|
|
108290
109193
|
<div class="maincontainer">
|
|
108291
109194
|
<div class="topbar">
|
|
@@ -109781,7 +110684,7 @@ __runInitializers(_init6, 1, DeesAppuiProfileDropdown);
|
|
|
109781
110684
|
|
|
109782
110685
|
// ts_web/elements/00group-appui/dees-appui-appbar/component.ts
|
|
109783
110686
|
init_dist_ts28();
|
|
109784
|
-
|
|
110687
|
+
init_dist_ts29();
|
|
109785
110688
|
init_dees_icon();
|
|
109786
110689
|
var _isProfileDropdownOpen_dec, _focusedDropdownItem_dec, _focusedItem_dec, _openDropdowns_dec, _activeMenu_dec, _activityLogActive_dec, _activityLogCount_dec, _showActivityLogToggle_dec, _showSearch_dec, _profileMenuItems_dec, _user_dec2, _showWindowControls_dec, _breadcrumbSeparator_dec, _breadcrumbs_dec, _menuItems_dec3, _a7, _DeesAppuiBar_decorators, _init7, _menuItems3, _breadcrumbs, _breadcrumbSeparator, _showWindowControls, _user2, _profileMenuItems, _showSearch, _showActivityLogToggle, _activityLogCount, _activityLogActive, _activeMenu, _openDropdowns, _focusedItem, _focusedDropdownItem, _isProfileDropdownOpen;
|
|
109787
110690
|
_DeesAppuiBar_decorators = [t4("dees-appui-appbar")];
|
|
@@ -111707,7 +112610,7 @@ html\`
|
|
|
111707
112610
|
|
|
111708
112611
|
// ts_web/elements/00group-input/dees-input-base/dees-input-base.ts
|
|
111709
112612
|
init_dist_ts28();
|
|
111710
|
-
|
|
112613
|
+
init_dist_ts29();
|
|
111711
112614
|
var _description_dec, _disabled_dec, _required_dec, _label_dec, _key_dec, _labelPosition_dec, _layoutMode_dec, _a12, _init10, _layoutMode, _labelPosition, _key, _label, _required, _disabled, _description;
|
|
111712
112615
|
var DeesInputBase = class extends (_a12 = DeesElement, _layoutMode_dec = [n5({ type: String })], _labelPosition_dec = [n5({ type: String })], _key_dec = [n5({ type: String })], _label_dec = [n5({ type: String })], _required_dec = [n5({ type: Boolean })], _disabled_dec = [n5({ type: Boolean })], _description_dec = [n5({ type: String })], _a12) {
|
|
111713
112616
|
constructor() {
|
|
@@ -111722,7 +112625,7 @@ var DeesInputBase = class extends (_a12 = DeesElement, _layoutMode_dec = [n5({ t
|
|
|
111722
112625
|
/**
|
|
111723
112626
|
* Subject for value changes that all inputs should implement
|
|
111724
112627
|
*/
|
|
111725
|
-
__publicField(this, "changeSubject", new
|
|
112628
|
+
__publicField(this, "changeSubject", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
111726
112629
|
}
|
|
111727
112630
|
/**
|
|
111728
112631
|
* Common styles for all input components
|
|
@@ -112717,7 +113620,7 @@ var demoFunc9 = () => b2`
|
|
|
112717
113620
|
|
|
112718
113621
|
// ts_web/elements/00group-overlay/dees-modal/dees-modal.ts
|
|
112719
113622
|
init_dist_ts28();
|
|
112720
|
-
|
|
113623
|
+
init_dist_ts29();
|
|
112721
113624
|
init_dees_icon();
|
|
112722
113625
|
init_theme();
|
|
112723
113626
|
var _modalZIndex_dec, _contentPadding_dec, _mobileFullscreen_dec, _onHelp_dec, _showHelpButton_dec, _showCloseButton_dec, _minWidth_dec, _maxWidth_dec, _width_dec, _menuOptions_dec, _content_dec, _heading_dec, _a14, _DeesModal_decorators, _init12, _heading, _content, _menuOptions, _width, _maxWidth, _minWidth, _showCloseButton, _showHelpButton, _onHelp, _mobileFullscreen, _contentPadding, _modalZIndex;
|
|
@@ -113184,7 +114087,7 @@ var MONACO_VERSION = "0.55.1";
|
|
|
113184
114087
|
|
|
113185
114088
|
// ts_web/elements/00group-workspace/dees-workspace-monaco/dees-workspace-monaco.ts
|
|
113186
114089
|
init_dist_ts28();
|
|
113187
|
-
|
|
114090
|
+
init_dist_ts29();
|
|
113188
114091
|
init_theme();
|
|
113189
114092
|
var _wordWrap_dec, _contentSubject_dec, _filePath_dec, _language_dec, _content_dec2, _a16, _DeesWorkspaceMonaco_decorators, _init14, _content2, _language, _filePath, _contentSubject, _wordWrap;
|
|
113190
114093
|
_DeesWorkspaceMonaco_decorators = [t4("dees-workspace-monaco")];
|
|
@@ -113202,15 +114105,15 @@ var _DeesWorkspaceMonaco = class _DeesWorkspaceMonaco extends (_a16 = DeesElemen
|
|
|
113202
114105
|
constructor() {
|
|
113203
114106
|
super();
|
|
113204
114107
|
// INSTANCE
|
|
113205
|
-
__publicField(this, "editorDeferred",
|
|
114108
|
+
__publicField(this, "editorDeferred", domtools_pluginexports_exports2.smartpromise.defer());
|
|
113206
114109
|
__privateAdd(this, _content2, __runInitializers(_init14, 8, this, "function hello() {\n alert('Hello world!');\n}")), __runInitializers(_init14, 11, this);
|
|
113207
114110
|
__privateAdd(this, _language, __runInitializers(_init14, 12, this, "typescript")), __runInitializers(_init14, 15, this);
|
|
113208
114111
|
__privateAdd(this, _filePath, __runInitializers(_init14, 16, this, "")), __runInitializers(_init14, 19, this);
|
|
113209
|
-
__privateAdd(this, _contentSubject, __runInitializers(_init14, 20, this, new
|
|
114112
|
+
__privateAdd(this, _contentSubject, __runInitializers(_init14, 20, this, new domtools_pluginexports_exports2.smartrx.rxjs.Subject())), __runInitializers(_init14, 23, this);
|
|
113210
114113
|
__privateAdd(this, _wordWrap, __runInitializers(_init14, 24, this, "off")), __runInitializers(_init14, 27, this);
|
|
113211
114114
|
__publicField(this, "monacoThemeSubscription", null);
|
|
113212
114115
|
__publicField(this, "isUpdatingFromExternal", false);
|
|
113213
|
-
|
|
114116
|
+
DomTools2.setupDomTools();
|
|
113214
114117
|
}
|
|
113215
114118
|
render() {
|
|
113216
114119
|
return b2`
|
|
@@ -113224,7 +114127,7 @@ var _DeesWorkspaceMonaco = class _DeesWorkspaceMonaco extends (_a16 = DeesElemen
|
|
|
113224
114127
|
const container = this.shadowRoot.getElementById("container");
|
|
113225
114128
|
const monacoCdnBase = `https://cdn.jsdelivr.net/npm/monaco-editor@${MONACO_VERSION}`;
|
|
113226
114129
|
if (!_DeesWorkspaceMonaco.monacoDeferred) {
|
|
113227
|
-
_DeesWorkspaceMonaco.monacoDeferred =
|
|
114130
|
+
_DeesWorkspaceMonaco.monacoDeferred = domtools_pluginexports_exports2.smartpromise.defer();
|
|
113228
114131
|
const scriptUrl = `${monacoCdnBase}/min/vs/loader.js`;
|
|
113229
114132
|
const script = document.createElement("script");
|
|
113230
114133
|
script.src = scriptUrl;
|
|
@@ -117064,7 +117967,7 @@ var demoFunc14 = () => b2`
|
|
|
117064
117967
|
|
|
117065
117968
|
// ts_web/elements/00group-input/dees-input-quantityselector/dees-input-quantityselector.ts
|
|
117066
117969
|
init_dist_ts28();
|
|
117067
|
-
|
|
117970
|
+
init_dist_ts29();
|
|
117068
117971
|
init_theme();
|
|
117069
117972
|
var _value_dec5, _a21, _DeesInputQuantitySelector_decorators, _init19, _value5;
|
|
117070
117973
|
_DeesInputQuantitySelector_decorators = [t4("dees-input-quantityselector")];
|
|
@@ -118250,7 +119153,7 @@ var demoFunc17 = () => b2`
|
|
|
118250
119153
|
|
|
118251
119154
|
// ts_web/elements/00group-input/dees-input-dropdown/dees-input-dropdown.ts
|
|
118252
119155
|
init_dist_ts28();
|
|
118253
|
-
|
|
119156
|
+
init_dist_ts29();
|
|
118254
119157
|
init_theme();
|
|
118255
119158
|
var _searchValue_dec, _isOpened_dec2, _highlightedIndex_dec, _filteredOptions_dec, _opensToTop_dec2, _enableSearch_dec, _selectedOption_dec2, _options_dec3, _a24, _DeesInputDropdown_decorators, _init22, _options3, _selectedOption2, _enableSearch, _opensToTop2, _filteredOptions, _highlightedIndex, _isOpened2, _searchValue;
|
|
118256
119159
|
_DeesInputDropdown_decorators = [t4("dees-input-dropdown")];
|
|
@@ -121144,7 +122047,7 @@ var demoFunc19 = () => b2`
|
|
|
121144
122047
|
|
|
121145
122048
|
// ts_web/elements/00group-input/dees-input-iban/dees-input-iban.ts
|
|
121146
122049
|
init_dist_ts28();
|
|
121147
|
-
|
|
122050
|
+
init_dist_ts29();
|
|
121148
122051
|
init_theme();
|
|
121149
122052
|
var _value_dec7, _enteredIbanIsValid_dec, _enteredString_dec, _a26, _DeesInputIban_decorators, _init24, _enteredString, _enteredIbanIsValid, _value7;
|
|
121150
122053
|
_DeesInputIban_decorators = [t4("dees-input-iban")];
|
|
@@ -121709,7 +122612,7 @@ var demoFunc21 = () => b2`
|
|
|
121709
122612
|
|
|
121710
122613
|
// ts_web/elements/00group-input/dees-input-phone/dees-input-phone.ts
|
|
121711
122614
|
init_dist_ts28();
|
|
121712
|
-
|
|
122615
|
+
init_dist_ts29();
|
|
121713
122616
|
init_theme();
|
|
121714
122617
|
var _placeholder_dec2, _value_dec8, _formattedPhone_dec, _a28, _DeesInputPhone_decorators, _init26, _formattedPhone, _value8, _placeholder2;
|
|
121715
122618
|
_DeesInputPhone_decorators = [t4("dees-input-phone")];
|
|
@@ -122117,7 +123020,7 @@ var demoFunc22 = () => b2`
|
|
|
122117
123020
|
|
|
122118
123021
|
// ts_web/elements/00group-input/dees-input-toggle/dees-input-toggle.ts
|
|
122119
123022
|
init_dist_ts28();
|
|
122120
|
-
|
|
123023
|
+
init_dist_ts29();
|
|
122121
123024
|
init_theme();
|
|
122122
123025
|
var _value_dec9, _a29, _DeesInputToggle_decorators, _init27, _value9;
|
|
122123
123026
|
_DeesInputToggle_decorators = [t4("dees-input-toggle")];
|
|
@@ -122196,7 +123099,7 @@ var DeesInputToggle = class extends (_a29 = DeesInputBase, _value_dec9 = [n5({ t
|
|
|
122196
123099
|
await new Promise((r11) => setTimeout(r11, 10));
|
|
122197
123100
|
this.currentX = this.maxTravel - 3;
|
|
122198
123101
|
this.requestUpdate();
|
|
122199
|
-
await
|
|
123102
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(150);
|
|
122200
123103
|
this.currentX = this.maxTravel;
|
|
122201
123104
|
this.requestUpdate();
|
|
122202
123105
|
return;
|
|
@@ -122213,7 +123116,7 @@ var DeesInputToggle = class extends (_a29 = DeesInputBase, _value_dec9 = [n5({ t
|
|
|
122213
123116
|
})
|
|
122214
123117
|
);
|
|
122215
123118
|
this.changeSubject.next(this);
|
|
122216
|
-
|
|
123119
|
+
domtools_pluginexports_exports2.smartdelay.delayFor(0).then(() => {
|
|
122217
123120
|
this.hasDragged = false;
|
|
122218
123121
|
});
|
|
122219
123122
|
}
|
|
@@ -122267,7 +123170,7 @@ var DeesInputToggle = class extends (_a29 = DeesInputBase, _value_dec9 = [n5({ t
|
|
|
122267
123170
|
})
|
|
122268
123171
|
);
|
|
122269
123172
|
this.changeSubject.next(this);
|
|
122270
|
-
|
|
123173
|
+
domtools_pluginexports_exports2.smartdelay.delayFor(0).then(() => {
|
|
122271
123174
|
this.hasDragged = false;
|
|
122272
123175
|
});
|
|
122273
123176
|
}
|
|
@@ -122571,7 +123474,7 @@ var demoFunc23 = () => b2`
|
|
|
122571
123474
|
|
|
122572
123475
|
// ts_web/elements/00group-input/dees-input-typelist/dees-input-typelist.ts
|
|
122573
123476
|
init_dist_ts28();
|
|
122574
|
-
|
|
123477
|
+
init_dist_ts29();
|
|
122575
123478
|
init_theme();
|
|
122576
123479
|
var _inputValue_dec, _value_dec10, _a30, _DeesInputTypelist_decorators, _init28, _value10, _inputValue;
|
|
122577
123480
|
_DeesInputTypelist_decorators = [t4("dees-input-typelist")];
|
|
@@ -133097,17 +134000,17 @@ var _DeesWysiwygBlock = class _DeesWysiwygBlock extends (_a36 = DeesElement, _bl
|
|
|
133097
134000
|
injectHandlerStyles() {
|
|
133098
134001
|
if (this.handlerStylesInjected) return;
|
|
133099
134002
|
this.handlerStylesInjected = true;
|
|
133100
|
-
let
|
|
134003
|
+
let styles4 = "";
|
|
133101
134004
|
const blockTypes = BlockRegistry.getAllTypes();
|
|
133102
134005
|
for (const type5 of blockTypes) {
|
|
133103
134006
|
const handler2 = BlockRegistry.getHandler(type5);
|
|
133104
134007
|
if (handler2) {
|
|
133105
|
-
|
|
134008
|
+
styles4 += handler2.getStyles();
|
|
133106
134009
|
}
|
|
133107
134010
|
}
|
|
133108
|
-
if (
|
|
134011
|
+
if (styles4) {
|
|
133109
134012
|
const styleElement = document.createElement("style");
|
|
133110
|
-
styleElement.textContent =
|
|
134013
|
+
styleElement.textContent = styles4;
|
|
133111
134014
|
this.shadowRoot?.appendChild(styleElement);
|
|
133112
134015
|
}
|
|
133113
134016
|
}
|
|
@@ -136669,7 +137572,7 @@ function compileLucenePredicate(input, mode, columns) {
|
|
|
136669
137572
|
|
|
136670
137573
|
// ts_web/elements/00group-dataview/dees-table/dees-table.ts
|
|
136671
137574
|
init_dist_ts28();
|
|
136672
|
-
|
|
137575
|
+
init_dist_ts29();
|
|
136673
137576
|
init_theme();
|
|
136674
137577
|
var _selectedIds_dec, _selectionMode_dec, _searchMode_dec, _stickyHeader_dec, _showColumnFilters_dec, _columnFilters_dec, _filterText_dec, _sortDir_dec, _sortKey_dec, _showGrid_dec, _showHorizontalLines_dec, _showVerticalLines_dec, _editableFields_dec, _selectedDataRow_dec, _reverseDisplayFunction_dec, _displayFunction_dec, _augmentFromDisplayFunction_dec, _rowKey_dec, _columns_dec, _dataActions_dec, _searchable_dec, _dataName_dec, _required_dec3, _disabled_dec3, _label_dec3, _key_dec2, _data_dec, _heading2_dec, _heading1_dec, _a39, _DeesTable_decorators, _init36, _heading1, _heading2, _data, _key2, _label3, _disabled3, _required3, _dataName, _searchable, _dataActions, _columns, _rowKey, _augmentFromDisplayFunction, _displayFunction, _reverseDisplayFunction, _selectedDataRow, _editableFields, _showVerticalLines, _showHorizontalLines, _showGrid, _sortKey, _sortDir, _filterText, _columnFilters, _showColumnFilters, _stickyHeader, _searchMode, _selectionMode, _selectedIds;
|
|
136675
137578
|
_DeesTable_decorators = [t4("dees-table")];
|
|
@@ -136724,7 +137627,7 @@ var DeesTable = class extends (_a39 = DeesElement, _heading1_dec = [n5({
|
|
|
136724
137627
|
__privateAdd(this, _label3, __runInitializers(_init36, 24, this)), __runInitializers(_init36, 27, this);
|
|
136725
137628
|
__privateAdd(this, _disabled3, __runInitializers(_init36, 28, this, false)), __runInitializers(_init36, 31, this);
|
|
136726
137629
|
__privateAdd(this, _required3, __runInitializers(_init36, 32, this, false)), __runInitializers(_init36, 35, this);
|
|
136727
|
-
__publicField(this, "changeSubject", new
|
|
137630
|
+
__publicField(this, "changeSubject", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
136728
137631
|
__privateAdd(this, _dataName, __runInitializers(_init36, 36, this)), __runInitializers(_init36, 39, this);
|
|
136729
137632
|
__privateAdd(this, _searchable, __runInitializers(_init36, 40, this, true)), __runInitializers(_init36, 43, this);
|
|
136730
137633
|
__privateAdd(this, _dataActions, __runInitializers(_init36, 44, this, [])), __runInitializers(_init36, 47, this);
|
|
@@ -136740,7 +137643,7 @@ var DeesTable = class extends (_a39 = DeesElement, _heading1_dec = [n5({
|
|
|
136740
137643
|
__privateAdd(this, _showGrid, __runInitializers(_init36, 84, this, true)), __runInitializers(_init36, 87, this);
|
|
136741
137644
|
__publicField(this, "files", []);
|
|
136742
137645
|
__publicField(this, "fileWeakMap", /* @__PURE__ */ new WeakMap());
|
|
136743
|
-
__publicField(this, "dataChangeSubject", new
|
|
137646
|
+
__publicField(this, "dataChangeSubject", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
136744
137647
|
__privateAdd(this, _sortKey, __runInitializers(_init36, 88, this)), __runInitializers(_init36, 91, this);
|
|
136745
137648
|
__privateAdd(this, _sortDir, __runInitializers(_init36, 92, this, null)), __runInitializers(_init36, 95, this);
|
|
136746
137649
|
__privateAdd(this, _filterText, __runInitializers(_init36, 96, this, "")), __runInitializers(_init36, 99, this);
|
|
@@ -137683,7 +138586,7 @@ ${JSON.stringify(data, null, 2)}`;
|
|
|
137683
138586
|
|
|
137684
138587
|
// ts_web/elements/00group-form/dees-form/dees-form.ts
|
|
137685
138588
|
init_dist_ts28();
|
|
137686
|
-
|
|
138589
|
+
init_dist_ts29();
|
|
137687
138590
|
var _horizontalLayout_dec, _a40, _DeesForm_decorators, _init37, _horizontalLayout;
|
|
137688
138591
|
var FORM_INPUT_TYPES = [
|
|
137689
138592
|
DeesInputCheckbox,
|
|
@@ -137710,8 +138613,8 @@ var DeesForm = class extends (_a40 = DeesElement, _horizontalLayout_dec = [n5({
|
|
|
137710
138613
|
constructor() {
|
|
137711
138614
|
super(...arguments);
|
|
137712
138615
|
__publicField(this, "name", "myform");
|
|
137713
|
-
__publicField(this, "changeSubject", new
|
|
137714
|
-
__publicField(this, "readyDeferred",
|
|
138616
|
+
__publicField(this, "changeSubject", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
138617
|
+
__publicField(this, "readyDeferred", domtools_pluginexports_exports2.smartpromise.defer());
|
|
137715
138618
|
__privateAdd(this, _horizontalLayout, __runInitializers(_init37, 8, this, false)), __runInitializers(_init37, 11, this);
|
|
137716
138619
|
}
|
|
137717
138620
|
render() {
|
|
@@ -138324,7 +139227,7 @@ var demoFunc30 = () => b2`
|
|
|
138324
139227
|
|
|
138325
139228
|
// ts_web/elements/00group-button/dees-button/dees-button.ts
|
|
138326
139229
|
init_dist_ts28();
|
|
138327
|
-
|
|
139230
|
+
init_dist_ts29();
|
|
138328
139231
|
init_theme();
|
|
138329
139232
|
var _iconPosition_dec2, _icon_dec3, _insideForm_dec, _status_dec2, _size_dec3, _type_dec4, _isHidden_dec, _disabled_dec4, _eventDetailData_dec, _text_dec2, _a41, _DeesButton_decorators, _init38, _text2, _eventDetailData, _disabled4, _isHidden, _type4, _size3, _status2, _insideForm, _icon3, _iconPosition2;
|
|
138330
139233
|
_DeesButton_decorators = [t4("dees-button")];
|
|
@@ -138741,8 +139644,8 @@ init_dist_ts28();
|
|
|
138741
139644
|
init_dees_icon();
|
|
138742
139645
|
init_theme();
|
|
138743
139646
|
var _contextMenuActions_dec, _contextMenuPosition_dec, _contextMenuVisible_dec, _gridActions_dec, _gap_dec, _minTileWidth_dec, _tiles_dec, _a42, _DeesStatsGrid_decorators, _init39, _tiles, _minTileWidth, _gap, _gridActions, _contextMenuVisible, _contextMenuPosition, _contextMenuActions;
|
|
138744
|
-
_DeesStatsGrid_decorators = [t4("dees-statsgrid")];
|
|
138745
|
-
var
|
|
139647
|
+
_DeesStatsGrid_decorators = [containerResponsive(), t4("dees-statsgrid")];
|
|
139648
|
+
var _DeesStatsGrid = class _DeesStatsGrid extends (_a42 = DeesElement, _tiles_dec = [n5({ type: Array })], _minTileWidth_dec = [n5({ type: Number })], _gap_dec = [n5({ type: Number })], _gridActions_dec = [n5({ type: Array })], _contextMenuVisible_dec = [r5()], _contextMenuPosition_dec = [r5()], _contextMenuActions_dec = [r5()], _a42) {
|
|
138746
139649
|
constructor() {
|
|
138747
139650
|
super();
|
|
138748
139651
|
__privateAdd(this, _tiles, __runInitializers(_init39, 8, this, [])), __runInitializers(_init39, 11, this);
|
|
@@ -139153,17 +140056,17 @@ _gridActions = new WeakMap();
|
|
|
139153
140056
|
_contextMenuVisible = new WeakMap();
|
|
139154
140057
|
_contextMenuPosition = new WeakMap();
|
|
139155
140058
|
_contextMenuActions = new WeakMap();
|
|
139156
|
-
__decorateElement(_init39, 4, "tiles", _tiles_dec,
|
|
139157
|
-
__decorateElement(_init39, 4, "minTileWidth", _minTileWidth_dec,
|
|
139158
|
-
__decorateElement(_init39, 4, "gap", _gap_dec,
|
|
139159
|
-
__decorateElement(_init39, 4, "gridActions", _gridActions_dec,
|
|
139160
|
-
__decorateElement(_init39, 4, "contextMenuVisible", _contextMenuVisible_dec,
|
|
139161
|
-
__decorateElement(_init39, 4, "contextMenuPosition", _contextMenuPosition_dec,
|
|
139162
|
-
__decorateElement(_init39, 4, "contextMenuActions", _contextMenuActions_dec,
|
|
139163
|
-
|
|
139164
|
-
__publicField(
|
|
139165
|
-
__publicField(
|
|
139166
|
-
__publicField(
|
|
140059
|
+
__decorateElement(_init39, 4, "tiles", _tiles_dec, _DeesStatsGrid, _tiles);
|
|
140060
|
+
__decorateElement(_init39, 4, "minTileWidth", _minTileWidth_dec, _DeesStatsGrid, _minTileWidth);
|
|
140061
|
+
__decorateElement(_init39, 4, "gap", _gap_dec, _DeesStatsGrid, _gap);
|
|
140062
|
+
__decorateElement(_init39, 4, "gridActions", _gridActions_dec, _DeesStatsGrid, _gridActions);
|
|
140063
|
+
__decorateElement(_init39, 4, "contextMenuVisible", _contextMenuVisible_dec, _DeesStatsGrid, _contextMenuVisible);
|
|
140064
|
+
__decorateElement(_init39, 4, "contextMenuPosition", _contextMenuPosition_dec, _DeesStatsGrid, _contextMenuPosition);
|
|
140065
|
+
__decorateElement(_init39, 4, "contextMenuActions", _contextMenuActions_dec, _DeesStatsGrid, _contextMenuActions);
|
|
140066
|
+
_DeesStatsGrid = __decorateElement(_init39, 0, "DeesStatsGrid", _DeesStatsGrid_decorators, _DeesStatsGrid);
|
|
140067
|
+
__publicField(_DeesStatsGrid, "demo", demoFunc7);
|
|
140068
|
+
__publicField(_DeesStatsGrid, "demoGroups", ["Data View"]);
|
|
140069
|
+
__publicField(_DeesStatsGrid, "styles", [
|
|
139167
140070
|
themeDefaultStyles,
|
|
139168
140071
|
cssManager.defaultStyles,
|
|
139169
140072
|
i`
|
|
@@ -139844,9 +140747,37 @@ __publicField(DeesStatsGrid, "styles", [
|
|
|
139844
140747
|
position: fixed;
|
|
139845
140748
|
z-index: 1000;
|
|
139846
140749
|
}
|
|
139847
|
-
|
|
140750
|
+
`,
|
|
140751
|
+
// Container-responsive: when this statsgrid is narrow
|
|
140752
|
+
cssManager.cssForPhablet(i`
|
|
140753
|
+
:host {
|
|
140754
|
+
--tile-padding: 12px;
|
|
140755
|
+
--value-font-size: 22px;
|
|
140756
|
+
--title-font-size: 12px;
|
|
140757
|
+
--grid-gap: 8px;
|
|
140758
|
+
}
|
|
140759
|
+
.stats-grid {
|
|
140760
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
140761
|
+
gap: 8px;
|
|
140762
|
+
}
|
|
140763
|
+
.stats-tile {
|
|
140764
|
+
grid-column: span 1 !important;
|
|
140765
|
+
}
|
|
140766
|
+
`, _DeesStatsGrid),
|
|
140767
|
+
cssManager.cssForPhone(i`
|
|
140768
|
+
:host {
|
|
140769
|
+
--tile-padding: 10px;
|
|
140770
|
+
--value-font-size: 20px;
|
|
140771
|
+
--header-spacing: 8px;
|
|
140772
|
+
}
|
|
140773
|
+
.stats-grid {
|
|
140774
|
+
grid-template-columns: 1fr;
|
|
140775
|
+
gap: 6px;
|
|
140776
|
+
}
|
|
140777
|
+
`, _DeesStatsGrid)
|
|
139848
140778
|
]);
|
|
139849
|
-
__runInitializers(_init39, 1,
|
|
140779
|
+
__runInitializers(_init39, 1, _DeesStatsGrid);
|
|
140780
|
+
var DeesStatsGrid = _DeesStatsGrid;
|
|
139850
140781
|
|
|
139851
140782
|
// ts_web/elements/00group-appui/dees-appui/dees-appui.demo.ts
|
|
139852
140783
|
init_dist_ts28();
|
|
@@ -142914,7 +143845,7 @@ var demoFunc34 = () => {
|
|
|
142914
143845
|
|
|
142915
143846
|
// ts_web/elements/00group-appui/dees-appui-tabs/dees-appui-tabs.ts
|
|
142916
143847
|
init_dist_ts28();
|
|
142917
|
-
|
|
143848
|
+
init_dist_ts29();
|
|
142918
143849
|
init_theme();
|
|
142919
143850
|
var _canScrollRight_dec, _canScrollLeft_dec, _actionsRight_dec, _actionsLeft_dec, _autoHideThreshold_dec, _autoHide_dec2, _tabStyle_dec, _showTabIndicator_dec, _selectedTab_dec2, _tabs_dec4, _a47, _DeesAppuiTabs_decorators, _init48, _tabs4, _selectedTab2, _showTabIndicator, _tabStyle, _autoHide2, _autoHideThreshold, _actionsLeft, _actionsRight, _canScrollLeft, _canScrollRight;
|
|
142920
143851
|
_DeesAppuiTabs_decorators = [t4("dees-appui-tabs")];
|
|
@@ -143548,7 +144479,7 @@ __runInitializers(_init48, 1, DeesAppuiTabs);
|
|
|
143548
144479
|
|
|
143549
144480
|
// ts_web/elements/00group-appui/dees-appui-maincontent/dees-appui-maincontent.ts
|
|
143550
144481
|
init_dist_ts28();
|
|
143551
|
-
|
|
144482
|
+
init_dist_ts29();
|
|
143552
144483
|
init_theme();
|
|
143553
144484
|
var _tabActionsRight_dec, _tabActionsLeft_dec, _tabsAutoHideThreshold_dec, _tabsAutoHide_dec, _showTabs_dec, _selectedTab_dec3, _tabs_dec5, _a48, _DeesAppuiMaincontent_decorators, _init49, _tabs5, _selectedTab3, _showTabs, _tabsAutoHide, _tabsAutoHideThreshold, _tabActionsLeft, _tabActionsRight;
|
|
143554
144485
|
_DeesAppuiMaincontent_decorators = [t4("dees-appui-maincontent")];
|
|
@@ -143703,7 +144634,7 @@ __runInitializers(_init49, 1, DeesAppuiMaincontent);
|
|
|
143703
144634
|
|
|
143704
144635
|
// ts_web/elements/00group-appui/dees-appui/dees-appui.ts
|
|
143705
144636
|
init_dist_ts28();
|
|
143706
|
-
|
|
144637
|
+
init_dist_ts29();
|
|
143707
144638
|
init_theme();
|
|
143708
144639
|
var _currentView_dec, _bottombarVisible_dec, _bottombarElement_dec, _activitylogElement_dec, _maincontent_dec, _secondarymenu_dec, _mainmenu_dec, _appbar_dec, _contentTabActionsRight_dec, _contentTabActionsLeft_dec, _maincontentSelectedTab_dec, _maincontentTabs_dec, _activityLogCount_dec2, _activityLogVisible_dec, _contentTabsAutoHideThreshold_dec, _contentTabsAutoHide_dec, _maincontentTabsVisible_dec, _secondarymenuVisible_dec, _mainmenuVisible_dec, _secondarymenuCollapsed_dec, _mainmenuCollapsed_dec, _secondarymenuSelectedItem_dec, _secondarymenuGroups_dec, _secondarymenuHeading_dec, _mainmenuSelectedTab_dec, _mainmenuTabs_dec, _mainmenuBottomTabs_dec, _mainmenuGroups_dec, _mainmenuLogoText_dec, _mainmenuLogoIcon_dec, _appbarShowSearch_dec, _appbarProfileMenuItems_dec, _appbarUser_dec, _appbarShowWindowControls_dec, _appbarBreadcrumbSeparator_dec, _appbarBreadcrumbs_dec, _appbarMenuItems_dec, _a49, _DeesAppui_decorators, _init50, _appbarMenuItems, _appbarBreadcrumbs, _appbarBreadcrumbSeparator, _appbarShowWindowControls, _appbarUser, _appbarProfileMenuItems, _appbarShowSearch, _mainmenuLogoIcon, _mainmenuLogoText, _mainmenuGroups, _mainmenuBottomTabs, _mainmenuTabs, _mainmenuSelectedTab, _secondarymenuHeading, _secondarymenuGroups, _secondarymenuSelectedItem, _mainmenuCollapsed, _secondarymenuCollapsed, _mainmenuVisible, _secondarymenuVisible, _maincontentTabsVisible, _contentTabsAutoHide, _contentTabsAutoHideThreshold, _activityLogVisible, _activityLogCount2, _maincontentTabs, _maincontentSelectedTab, _contentTabActionsLeft, _contentTabActionsRight, _appbar, _mainmenu, _secondarymenu, _maincontent, _activitylogElement, _bottombarElement, _bottombarVisible, _currentView;
|
|
143709
144640
|
_DeesAppui_decorators = [t4("dees-appui")];
|
|
@@ -143714,9 +144645,9 @@ var DeesAppui = class extends (_a49 = DeesElement, _appbarMenuItems_dec = [n5({
|
|
|
143714
144645
|
// REACTIVE OBSERVABLES (RxJS Subjects)
|
|
143715
144646
|
// ==========================================
|
|
143716
144647
|
/** Observable stream of view lifecycle events */
|
|
143717
|
-
__publicField(this, "viewLifecycle$", new
|
|
144648
|
+
__publicField(this, "viewLifecycle$", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
143718
144649
|
/** Observable stream of view change events */
|
|
143719
|
-
__publicField(this, "viewChanged$", new
|
|
144650
|
+
__publicField(this, "viewChanged$", new domtools_pluginexports_exports2.smartrx.rxjs.Subject());
|
|
143720
144651
|
__privateAdd(this, _appbarMenuItems, __runInitializers(_init50, 8, this, [])), __runInitializers(_init50, 11, this);
|
|
143721
144652
|
__privateAdd(this, _appbarBreadcrumbs, __runInitializers(_init50, 12, this, "")), __runInitializers(_init50, 15, this);
|
|
143722
144653
|
__privateAdd(this, _appbarBreadcrumbSeparator, __runInitializers(_init50, 16, this, " > ")), __runInitializers(_init50, 19, this);
|
|
@@ -144706,11 +145637,13 @@ __publicField(DeesAppui, "styles", [
|
|
|
144706
145637
|
.maingrid > dees-appui-mainmenu {
|
|
144707
145638
|
position: relative;
|
|
144708
145639
|
z-index: 3;
|
|
145640
|
+
min-height: 0;
|
|
144709
145641
|
}
|
|
144710
145642
|
|
|
144711
145643
|
.maingrid > dees-appui-secondarymenu {
|
|
144712
145644
|
position: relative;
|
|
144713
145645
|
z-index: 2;
|
|
145646
|
+
min-height: 0;
|
|
144714
145647
|
}
|
|
144715
145648
|
|
|
144716
145649
|
.maingrid > dees-appui-maincontent {
|
|
@@ -145237,7 +146170,7 @@ var demoFunc35 = () => {
|
|
|
145237
146170
|
|
|
145238
146171
|
// ts_web/elements/00group-button/dees-button-group/dees-button-group.ts
|
|
145239
146172
|
init_dist_ts28();
|
|
145240
|
-
|
|
146173
|
+
init_dist_ts29();
|
|
145241
146174
|
init_theme();
|
|
145242
146175
|
var _direction_dec2, _label_dec4, _a52, _DeesButtonGroup_decorators, _init53, _label4, _direction2;
|
|
145243
146176
|
_DeesButtonGroup_decorators = [t4("dees-button-group")];
|
|
@@ -145246,7 +146179,7 @@ var DeesButtonGroup = class extends (_a52 = DeesElement, _label_dec4 = [n5()], _
|
|
|
145246
146179
|
super();
|
|
145247
146180
|
__privateAdd(this, _label4, __runInitializers(_init53, 8, this, "")), __runInitializers(_init53, 11, this);
|
|
145248
146181
|
__privateAdd(this, _direction2, __runInitializers(_init53, 12, this, "horizontal")), __runInitializers(_init53, 15, this);
|
|
145249
|
-
|
|
146182
|
+
domtools_elementbasic_exports2.setup();
|
|
145250
146183
|
}
|
|
145251
146184
|
render() {
|
|
145252
146185
|
return b2`
|
|
@@ -145769,7 +146702,7 @@ var renderChartArea = (component) => {
|
|
|
145769
146702
|
|
|
145770
146703
|
// ts_web/elements/00group-chart/dees-chart-area/component.ts
|
|
145771
146704
|
init_dist_ts28();
|
|
145772
|
-
|
|
146705
|
+
init_dist_ts29();
|
|
145773
146706
|
init_services();
|
|
145774
146707
|
var _autoScrollInterval_dec, _yAxisMax_dec, _yAxisScaling_dec, _realtimeMode_dec, _rollingWindow_dec, _yAxisFormatter_dec, _series_dec, _label_dec5, _chart_dec, _a53, _DeesChartArea_decorators, _init54, _chart, _label5, _series, _yAxisFormatter, _rollingWindow, _realtimeMode, _yAxisScaling, _yAxisMax, _autoScrollInterval;
|
|
145775
146708
|
_DeesChartArea_decorators = [t4("dees-chart-area")];
|
|
@@ -145815,7 +146748,7 @@ var DeesChartArea = class extends (_a53 = DeesElement, _chart_dec = [r5()], _lab
|
|
|
145815
146748
|
// Orange (shadcn destructive variant)
|
|
145816
146749
|
]
|
|
145817
146750
|
});
|
|
145818
|
-
|
|
146751
|
+
domtools_elementbasic_exports2.setup();
|
|
145819
146752
|
this.resizeObserver = new ResizeObserver((entries) => {
|
|
145820
146753
|
if (this.resizeTimeout) {
|
|
145821
146754
|
clearTimeout(this.resizeTimeout);
|
|
@@ -146575,7 +147508,7 @@ var demoFunc37 = () => {
|
|
|
146575
147508
|
|
|
146576
147509
|
// ts_web/elements/00group-chart/dees-chart-log/dees-chart-log.ts
|
|
146577
147510
|
init_dist_ts28();
|
|
146578
|
-
|
|
147511
|
+
init_dist_ts29();
|
|
146579
147512
|
init_theme();
|
|
146580
147513
|
init_services();
|
|
146581
147514
|
var _terminalReady_dec, _metrics_dec, _filterMode_dec, _searchQuery_dec2, _showMetrics_dec, _highlightKeywords_dec, _maxEntries_dec, _autoScroll_dec, _logEntries_dec, _mode_dec, _label_dec6, _a54, _DeesChartLog_decorators, _init55, _label6, _mode, _logEntries, _autoScroll, _maxEntries, _highlightKeywords, _showMetrics, _searchQuery2, _filterMode, _metrics, _terminalReady;
|
|
@@ -146608,7 +147541,7 @@ var DeesChartLog = class extends (_a54 = DeesElement, _label_dec6 = [n5()], _mod
|
|
|
146608
147541
|
// Rate calculation
|
|
146609
147542
|
__publicField(this, "rateBuffer", []);
|
|
146610
147543
|
__publicField(this, "rateInterval", null);
|
|
146611
|
-
|
|
147544
|
+
domtools_elementbasic_exports2.setup();
|
|
146612
147545
|
}
|
|
146613
147546
|
render() {
|
|
146614
147547
|
return b2`
|
|
@@ -147583,7 +148516,7 @@ data = await processor.process_data([{'id': 1}, {'id': 2}])
|
|
|
147583
148516
|
// ts_web/elements/00group-dataview/dees-dataview-codebox/dees-dataview-codebox.ts
|
|
147584
148517
|
init_dist_ts28();
|
|
147585
148518
|
init_dist_ts11();
|
|
147586
|
-
|
|
148519
|
+
init_dist_ts29();
|
|
147587
148520
|
init_services();
|
|
147588
148521
|
var _codeToDisplay_dec, _progLang_dec, _a55, _DeesDataviewCodebox_decorators, _init56, _progLang, _codeToDisplay;
|
|
147589
148522
|
_DeesDataviewCodebox_decorators = [t4("dees-dataview-codebox")];
|
|
@@ -147600,7 +148533,7 @@ var DeesDataviewCodebox = class extends (_a55 = DeesElement, _progLang_dec = [n5
|
|
|
147600
148533
|
}
|
|
147601
148534
|
render() {
|
|
147602
148535
|
return b2`
|
|
147603
|
-
${
|
|
148536
|
+
${domtools_elementbasic_exports2.styles}
|
|
147604
148537
|
<style>
|
|
147605
148538
|
:host {
|
|
147606
148539
|
position: relative;
|
|
@@ -147810,7 +148743,7 @@ var DeesDataviewCodebox = class extends (_a55 = DeesElement, _progLang_dec = [n5
|
|
|
147810
148743
|
this.codeToDisplayStore = smartstring_indent_exports.normalize(slottedCodeNodes[0].wholeText).trimStart();
|
|
147811
148744
|
this.codeToDisplay = this.codeToDisplayStore;
|
|
147812
148745
|
}
|
|
147813
|
-
await
|
|
148746
|
+
await domtools_pluginexports_exports2.smartdelay.delayFor(0);
|
|
147814
148747
|
if (!this.highlightJs) {
|
|
147815
148748
|
this.highlightJs = await DeesServiceLibLoader.getInstance().loadHighlightJs();
|
|
147816
148749
|
}
|
|
@@ -148244,7 +149177,7 @@ var demoFunc40 = () => b2`
|
|
|
148244
149177
|
|
|
148245
149178
|
// ts_web/elements/00group-feedback/dees-badge/dees-badge.ts
|
|
148246
149179
|
init_dist_ts28();
|
|
148247
|
-
|
|
149180
|
+
init_dist_ts29();
|
|
148248
149181
|
init_theme();
|
|
148249
149182
|
var _rounded_dec, _text_dec3, _type_dec5, _a58, _DeesBadge_decorators, _init59, _type5, _text3, _rounded;
|
|
148250
149183
|
_DeesBadge_decorators = [t4("dees-badge")];
|
|
@@ -148254,7 +149187,7 @@ var DeesBadge = class extends (_a58 = DeesElement, _type_dec5 = [n5({ type: Stri
|
|
|
148254
149187
|
__privateAdd(this, _type5, __runInitializers(_init59, 8, this, "default")), __runInitializers(_init59, 11, this);
|
|
148255
149188
|
__privateAdd(this, _text3, __runInitializers(_init59, 12, this, "")), __runInitializers(_init59, 15, this);
|
|
148256
149189
|
__privateAdd(this, _rounded, __runInitializers(_init59, 16, this, false)), __runInitializers(_init59, 19, this);
|
|
148257
|
-
|
|
149190
|
+
domtools_elementbasic_exports2.setup();
|
|
148258
149191
|
}
|
|
148259
149192
|
render() {
|
|
148260
149193
|
return b2`
|
|
@@ -148335,7 +149268,7 @@ var demoFunc41 = () => b2`
|
|
|
148335
149268
|
|
|
148336
149269
|
// ts_web/elements/00group-feedback/dees-hint/dees-hint.ts
|
|
148337
149270
|
init_dist_ts28();
|
|
148338
|
-
|
|
149271
|
+
init_dist_ts29();
|
|
148339
149272
|
init_theme();
|
|
148340
149273
|
var _type_dec6, _a59, _DeesHint_decorators, _init60, _type6;
|
|
148341
149274
|
_DeesHint_decorators = [t4("dees-hint")];
|
|
@@ -148343,7 +149276,7 @@ var DeesHint = class extends (_a59 = DeesElement, _type_dec6 = [n5({ type: Strin
|
|
|
148343
149276
|
constructor() {
|
|
148344
149277
|
super();
|
|
148345
149278
|
__privateAdd(this, _type6, __runInitializers(_init60, 8, this, "info")), __runInitializers(_init60, 11, this);
|
|
148346
|
-
|
|
149279
|
+
domtools_elementbasic_exports2.setup();
|
|
148347
149280
|
}
|
|
148348
149281
|
render() {
|
|
148349
149282
|
return b2` <div class="mainbox"></div> `;
|
|
@@ -148372,7 +149305,7 @@ var demoFunc42 = () => {
|
|
|
148372
149305
|
|
|
148373
149306
|
// ts_web/elements/00group-feedback/dees-progressbar/dees-progressbar.ts
|
|
148374
149307
|
init_dist_ts28();
|
|
148375
|
-
|
|
149308
|
+
init_dist_ts29();
|
|
148376
149309
|
init_theme();
|
|
148377
149310
|
var _percentage_dec, _a60, _DeesProgressbar_decorators, _init61, _percentage;
|
|
148378
149311
|
_DeesProgressbar_decorators = [t4("dees-progressbar")];
|
|
@@ -148457,7 +149390,7 @@ __runInitializers(_init61, 1, DeesProgressbar2);
|
|
|
148457
149390
|
|
|
148458
149391
|
// ts_web/elements/00group-feedback/dees-spinner/dees-spinner.ts
|
|
148459
149392
|
init_dist_ts28();
|
|
148460
|
-
|
|
149393
|
+
init_dist_ts29();
|
|
148461
149394
|
init_theme();
|
|
148462
149395
|
var _status_dec3, _bnw_dec, _size_dec5, _a61, _DeesSpinner_decorators, _init62, _size5, _bnw, _status3;
|
|
148463
149396
|
_DeesSpinner_decorators = [t4("dees-spinner")];
|
|
@@ -148832,7 +149765,7 @@ var demoFunc43 = () => b2`
|
|
|
148832
149765
|
|
|
148833
149766
|
// ts_web/elements/00group-feedback/dees-toast/dees-toast.ts
|
|
148834
149767
|
init_dist_ts28();
|
|
148835
|
-
|
|
149768
|
+
init_dist_ts29();
|
|
148836
149769
|
init_theme();
|
|
148837
149770
|
var _isVisible_dec2, _duration_dec, _type_dec7, _message_dec, _a62, _DeesToast_decorators, _init63, _message, _type7, _duration, _isVisible2;
|
|
148838
149771
|
_DeesToast_decorators = [t4("dees-toast")];
|
|
@@ -148843,7 +149776,7 @@ var _DeesToast = class _DeesToast extends (_a62 = DeesElement, _message_dec = [n
|
|
|
148843
149776
|
__privateAdd(this, _type7, __runInitializers(_init63, 12, this, "info")), __runInitializers(_init63, 15, this);
|
|
148844
149777
|
__privateAdd(this, _duration, __runInitializers(_init63, 16, this, 3e3)), __runInitializers(_init63, 19, this);
|
|
148845
149778
|
__privateAdd(this, _isVisible2, __runInitializers(_init63, 20, this, false)), __runInitializers(_init63, 23, this);
|
|
148846
|
-
|
|
149779
|
+
domtools_elementbasic_exports2.setup();
|
|
148847
149780
|
}
|
|
148848
149781
|
static getOrCreateContainer(position3) {
|
|
148849
149782
|
if (!this.toastContainers.has(position3)) {
|
|
@@ -150558,7 +151491,7 @@ var demoFunc45 = () => b2`
|
|
|
150558
151491
|
|
|
150559
151492
|
// ts_web/elements/00group-layout/dees-chips/dees-chips.ts
|
|
150560
151493
|
init_dist_ts28();
|
|
150561
|
-
|
|
151494
|
+
init_dist_ts29();
|
|
150562
151495
|
init_theme();
|
|
150563
151496
|
var _selectedChips_dec, _selectedChip_dec, _selectableChips_dec, _chipsAreRemovable_dec, _selectionMode_dec2, _a65, _DeesChips_decorators, _init66, _selectionMode2, _chipsAreRemovable, _selectableChips, _selectedChip, _selectedChips;
|
|
150564
151497
|
_DeesChips_decorators = [t4("dees-chips")];
|
|
@@ -152643,7 +153576,7 @@ var stepperDemo = () => b2`
|
|
|
152643
153576
|
|
|
152644
153577
|
// ts_web/elements/00group-layout/dees-stepper/dees-stepper.ts
|
|
152645
153578
|
init_dist_ts28();
|
|
152646
|
-
|
|
153579
|
+
init_dist_ts29();
|
|
152647
153580
|
init_theme();
|
|
152648
153581
|
var _selectedStep_dec, _steps_dec, _a69, _DeesStepper_decorators, _init70, _steps, _selectedStep;
|
|
152649
153582
|
_DeesStepper_decorators = [t4("dees-stepper")];
|
|
@@ -152705,9 +153638,9 @@ var DeesStepper = class extends (_a69 = DeesElement, _steps_dec = [n5({
|
|
|
152705
153638
|
console.log(selectedStepElement);
|
|
152706
153639
|
const scrollPosition = selectedStepElement.offsetTop - stepperContainer.offsetHeight / 2 + selectedStepElement.offsetHeight / 2;
|
|
152707
153640
|
console.log(scrollPosition);
|
|
152708
|
-
const domtoolsInstance = await
|
|
153641
|
+
const domtoolsInstance = await DomTools2.setupDomTools();
|
|
152709
153642
|
if (!this.scroller) {
|
|
152710
|
-
this.scroller = new
|
|
153643
|
+
this.scroller = new domtools_pluginexports_exports2.SweetScroll(
|
|
152711
153644
|
{
|
|
152712
153645
|
vertical: true,
|
|
152713
153646
|
horizontal: false,
|
|
@@ -155816,9 +156749,9 @@ var DeesPdfViewer = class extends (_a73 = DeesElement, _pdfUrl_dec = [n5({ type:
|
|
|
155816
156749
|
this.viewportDimensions = { width: 0, height: 0 };
|
|
155817
156750
|
return;
|
|
155818
156751
|
}
|
|
155819
|
-
const
|
|
155820
|
-
const paddingX = parseFloat(
|
|
155821
|
-
const paddingY = parseFloat(
|
|
156752
|
+
const styles4 = getComputedStyle(this.viewerMain);
|
|
156753
|
+
const paddingX = parseFloat(styles4.paddingLeft || "0") + parseFloat(styles4.paddingRight || "0");
|
|
156754
|
+
const paddingY = parseFloat(styles4.paddingTop || "0") + parseFloat(styles4.paddingBottom || "0");
|
|
155822
156755
|
const width = Math.max(this.viewerMain.clientWidth - paddingX, 0);
|
|
155823
156756
|
const height = Math.max(this.viewerMain.clientHeight - paddingY, 0);
|
|
155824
156757
|
this.viewportDimensions = { width, height };
|
|
@@ -160757,25 +161690,25 @@ var DeesTheme = class extends (_a88 = DeesElement, _customSpacing_dec = [n5({ ty
|
|
|
160757
161690
|
// Private Methods
|
|
160758
161691
|
// ============================================
|
|
160759
161692
|
generateCustomStyles() {
|
|
160760
|
-
const
|
|
161693
|
+
const styles4 = [":host {"];
|
|
160761
161694
|
if (this.customSpacing) {
|
|
160762
161695
|
for (const [key2, value2] of Object.entries(this.customSpacing)) {
|
|
160763
161696
|
if (value2) {
|
|
160764
|
-
|
|
161697
|
+
styles4.push(` --dees-spacing-${key2}: ${value2};`);
|
|
160765
161698
|
}
|
|
160766
161699
|
}
|
|
160767
161700
|
}
|
|
160768
161701
|
if (this.customRadius) {
|
|
160769
161702
|
for (const [key2, value2] of Object.entries(this.customRadius)) {
|
|
160770
161703
|
if (value2) {
|
|
160771
|
-
|
|
161704
|
+
styles4.push(` --dees-radius-${key2}: ${value2};`);
|
|
160772
161705
|
}
|
|
160773
161706
|
}
|
|
160774
161707
|
}
|
|
160775
161708
|
if (this.customShadows) {
|
|
160776
161709
|
for (const [key2, value2] of Object.entries(this.customShadows)) {
|
|
160777
161710
|
if (value2) {
|
|
160778
|
-
|
|
161711
|
+
styles4.push(` --dees-shadow-${key2}: ${value2};`);
|
|
160779
161712
|
}
|
|
160780
161713
|
}
|
|
160781
161714
|
}
|
|
@@ -160783,19 +161716,19 @@ var DeesTheme = class extends (_a88 = DeesElement, _customSpacing_dec = [n5({ ty
|
|
|
160783
161716
|
for (const [key2, value2] of Object.entries(this.customTransitions)) {
|
|
160784
161717
|
if (value2) {
|
|
160785
161718
|
const cssKey = key2 === "default" ? "default" : key2;
|
|
160786
|
-
|
|
161719
|
+
styles4.push(` --dees-transition-${cssKey}: ${value2};`);
|
|
160787
161720
|
}
|
|
160788
161721
|
}
|
|
160789
161722
|
}
|
|
160790
161723
|
if (this.customControlHeights) {
|
|
160791
161724
|
for (const [key2, value2] of Object.entries(this.customControlHeights)) {
|
|
160792
161725
|
if (value2) {
|
|
160793
|
-
|
|
161726
|
+
styles4.push(` --dees-control-height-${key2}: ${value2};`);
|
|
160794
161727
|
}
|
|
160795
161728
|
}
|
|
160796
161729
|
}
|
|
160797
|
-
|
|
160798
|
-
return
|
|
161730
|
+
styles4.push("}");
|
|
161731
|
+
return styles4.join("\n");
|
|
160799
161732
|
}
|
|
160800
161733
|
// ============================================
|
|
160801
161734
|
// Public API Methods
|
|
@@ -161001,7 +161934,7 @@ var DeesUpdater = _DeesUpdater;
|
|
|
161001
161934
|
|
|
161002
161935
|
// ts_web/elements/00group-workspace/dees-workspace-filetree/dees-workspace-filetree.ts
|
|
161003
161936
|
init_dist_ts28();
|
|
161004
|
-
|
|
161937
|
+
init_dist_ts29();
|
|
161005
161938
|
init_theme();
|
|
161006
161939
|
init_dees_icon();
|
|
161007
161940
|
var _errorMessage_dec, _isLoading_dec3, _treeData_dec, _selectedPath_dec, _rootPath_dec, _executionEnvironment_dec2, _a90, _DeesWorkspaceFiletree_decorators, _init93, _executionEnvironment2, _rootPath, _selectedPath, _treeData, _isLoading3, _errorMessage;
|
|
@@ -162929,7 +163862,7 @@ var TypeScriptIntelliSenseManager = class {
|
|
|
162929
163862
|
|
|
162930
163863
|
// ts_web/elements/00group-workspace/dees-workspace-diff-editor/dees-workspace-diff-editor.ts
|
|
162931
163864
|
init_dist_ts28();
|
|
162932
|
-
|
|
163865
|
+
init_dist_ts29();
|
|
162933
163866
|
init_theme();
|
|
162934
163867
|
var _filePath_dec2, _language_dec5, _modifiedLabel_dec, _originalLabel_dec, _modifiedContent_dec, _originalContent_dec, _a93, _DeesWorkspaceDiffEditor_decorators, _init96, _originalContent, _modifiedContent, _originalLabel, _modifiedLabel, _language5, _filePath2;
|
|
162935
163868
|
_DeesWorkspaceDiffEditor_decorators = [t4("dees-workspace-diff-editor")];
|
|
@@ -162937,7 +163870,7 @@ var DeesWorkspaceDiffEditor = class extends (_a93 = DeesElement, _originalConten
|
|
|
162937
163870
|
constructor() {
|
|
162938
163871
|
super();
|
|
162939
163872
|
// INSTANCE
|
|
162940
|
-
__publicField(this, "diffEditorDeferred",
|
|
163873
|
+
__publicField(this, "diffEditorDeferred", domtools_pluginexports_exports2.smartpromise.defer());
|
|
162941
163874
|
__privateAdd(this, _originalContent, __runInitializers(_init96, 8, this, "")), __runInitializers(_init96, 11, this);
|
|
162942
163875
|
__privateAdd(this, _modifiedContent, __runInitializers(_init96, 12, this, "")), __runInitializers(_init96, 15, this);
|
|
162943
163876
|
__privateAdd(this, _originalLabel, __runInitializers(_init96, 16, this, "Disk Version")), __runInitializers(_init96, 19, this);
|
|
@@ -162948,7 +163881,7 @@ var DeesWorkspaceDiffEditor = class extends (_a93 = DeesElement, _originalConten
|
|
|
162948
163881
|
__publicField(this, "monacoThemeSubscription", null);
|
|
162949
163882
|
__publicField(this, "originalModel", null);
|
|
162950
163883
|
__publicField(this, "modifiedModel", null);
|
|
162951
|
-
|
|
163884
|
+
DomTools2.setupDomTools();
|
|
162952
163885
|
}
|
|
162953
163886
|
render() {
|
|
162954
163887
|
const fileName = this.filePath.split("/").pop() || "file";
|
|
@@ -163231,7 +164164,7 @@ __runInitializers(_init96, 1, DeesWorkspaceDiffEditor);
|
|
|
163231
164164
|
|
|
163232
164165
|
// ts_web/elements/00group-workspace/dees-workspace/dees-workspace.ts
|
|
163233
164166
|
init_dist_ts28();
|
|
163234
|
-
|
|
164167
|
+
init_dist_ts29();
|
|
163235
164168
|
init_theme();
|
|
163236
164169
|
init_group_runtime();
|
|
163237
164170
|
init_dees_workspace_terminal();
|
|
@@ -165674,7 +166607,7 @@ init_group_runtime();
|
|
|
165674
166607
|
// ts_web/00_commitinfo_data.ts
|
|
165675
166608
|
var commitinfo = {
|
|
165676
166609
|
name: "@design.estate/dees-catalog",
|
|
165677
|
-
version: "3.
|
|
166610
|
+
version: "3.47.0",
|
|
165678
166611
|
description: "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."
|
|
165679
166612
|
};
|
|
165680
166613
|
export {
|
|
@@ -167628,4 +168561,4 @@ ibantools/jsnext/ibantools.js:
|
|
|
167628
168561
|
* @preferred
|
|
167629
168562
|
*)
|
|
167630
168563
|
*/
|
|
167631
|
-
//# sourceMappingURL=bundle-
|
|
168564
|
+
//# sourceMappingURL=bundle-1773218966164.js.map
|