@design.estate/dees-catalog 3.101.0 → 3.103.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.
Files changed (21) hide show
  1. package/dist_bundle/bundle.js +1558 -979
  2. package/dist_ts_web/00_commitinfo_data.js +1 -1
  3. package/dist_ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.d.ts +30 -1
  4. package/dist_ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.js +330 -9
  5. package/dist_ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.d.ts +50 -0
  6. package/dist_ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.demo.d.ts +1 -0
  7. package/dist_ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.demo.js +26 -0
  8. package/dist_ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.js +347 -0
  9. package/dist_ts_web/elements/00group-harness/dees-terminal-view/index.d.ts +1 -0
  10. package/dist_ts_web/elements/00group-harness/dees-terminal-view/index.js +2 -0
  11. package/dist_ts_web/elements/00group-harness/index.d.ts +1 -0
  12. package/dist_ts_web/elements/00group-harness/index.js +2 -1
  13. package/dist_ts_web/elements/00group-harness/interfaces.d.ts +23 -0
  14. package/package.json +1 -1
  15. package/ts_web/00_commitinfo_data.ts +1 -1
  16. package/ts_web/elements/00group-harness/dees-harness-session-list/dees-harness-session-list.ts +336 -7
  17. package/ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.demo.ts +26 -0
  18. package/ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.ts +317 -0
  19. package/ts_web/elements/00group-harness/dees-terminal-view/index.ts +1 -0
  20. package/ts_web/elements/00group-harness/index.ts +1 -0
  21. package/ts_web/elements/00group-harness/interfaces.ts +26 -0
@@ -1637,7 +1637,7 @@ var init_Subscription = __esm({
1637
1637
  }
1638
1638
  __name(Subscription2, "Subscription");
1639
1639
  Subscription2.prototype.unsubscribe = function() {
1640
- var e_1, _a127, e_2, _b4;
1640
+ var e_1, _a128, e_2, _b4;
1641
1641
  var errors;
1642
1642
  if (!this.closed) {
1643
1643
  this.closed = true;
@@ -1654,7 +1654,7 @@ var init_Subscription = __esm({
1654
1654
  e_1 = { error: e_1_1 };
1655
1655
  } finally {
1656
1656
  try {
1657
- if (_parentage_1_1 && !_parentage_1_1.done && (_a127 = _parentage_1.return)) _a127.call(_parentage_1);
1657
+ if (_parentage_1_1 && !_parentage_1_1.done && (_a128 = _parentage_1.return)) _a128.call(_parentage_1);
1658
1658
  } finally {
1659
1659
  if (e_1) throw e_1.error;
1660
1660
  }
@@ -1704,7 +1704,7 @@ var init_Subscription = __esm({
1704
1704
  }
1705
1705
  };
1706
1706
  Subscription2.prototype.add = function(teardown) {
1707
- var _a127;
1707
+ var _a128;
1708
1708
  if (teardown && teardown !== this) {
1709
1709
  if (this.closed) {
1710
1710
  execFinalizer(teardown);
@@ -1715,7 +1715,7 @@ var init_Subscription = __esm({
1715
1715
  }
1716
1716
  teardown._addParent(this);
1717
1717
  }
1718
- (this._finalizers = (_a127 = this._finalizers) !== null && _a127 !== void 0 ? _a127 : []).push(teardown);
1718
+ (this._finalizers = (_a128 = this._finalizers) !== null && _a128 !== void 0 ? _a128 : []).push(teardown);
1719
1719
  }
1720
1720
  }
1721
1721
  };
@@ -1858,7 +1858,7 @@ function errorContext(cb) {
1858
1858
  }
1859
1859
  cb();
1860
1860
  if (isRoot) {
1861
- var _a127 = context, errorThrown = _a127.errorThrown, error = _a127.error;
1861
+ var _a128 = context, errorThrown = _a128.errorThrown, error = _a128.error;
1862
1862
  context = null;
1863
1863
  if (errorThrown) {
1864
1864
  throw error;
@@ -2121,8 +2121,8 @@ var init_pipe = __esm({
2121
2121
 
2122
2122
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Observable.js
2123
2123
  function getPromiseCtor(promiseCtor) {
2124
- var _a127;
2125
- return (_a127 = promiseCtor !== null && promiseCtor !== void 0 ? promiseCtor : config.Promise) !== null && _a127 !== void 0 ? _a127 : Promise;
2124
+ var _a128;
2125
+ return (_a128 = promiseCtor !== null && promiseCtor !== void 0 ? promiseCtor : config.Promise) !== null && _a128 !== void 0 ? _a128 : Promise;
2126
2126
  }
2127
2127
  function isObserver(value2) {
2128
2128
  return value2 && isFunction(value2.next) && isFunction(value2.error) && isFunction(value2.complete);
@@ -2157,7 +2157,7 @@ var init_Observable = __esm({
2157
2157
  var _this = this;
2158
2158
  var subscriber = isSubscriber(observerOrNext) ? observerOrNext : new SafeSubscriber(observerOrNext, error, complete);
2159
2159
  errorContext(function() {
2160
- var _a127 = _this, operator = _a127.operator, source = _a127.source;
2160
+ var _a128 = _this, operator = _a128.operator, source = _a128.source;
2161
2161
  subscriber.add(operator ? operator.call(subscriber, source) : source ? _this._subscribe(subscriber) : _this._trySubscribe(subscriber));
2162
2162
  });
2163
2163
  return subscriber;
@@ -2189,8 +2189,8 @@ var init_Observable = __esm({
2189
2189
  });
2190
2190
  };
2191
2191
  Observable2.prototype._subscribe = function(subscriber) {
2192
- var _a127;
2193
- return (_a127 = this.source) === null || _a127 === void 0 ? void 0 : _a127.subscribe(subscriber);
2192
+ var _a128;
2193
+ return (_a128 = this.source) === null || _a128 === void 0 ? void 0 : _a128.subscribe(subscriber);
2194
2194
  };
2195
2195
  Observable2.prototype[observable] = function() {
2196
2196
  return this;
@@ -2298,11 +2298,11 @@ var init_OperatorSubscriber = __esm({
2298
2298
  }
2299
2299
  __name(OperatorSubscriber2, "OperatorSubscriber");
2300
2300
  OperatorSubscriber2.prototype.unsubscribe = function() {
2301
- var _a127;
2301
+ var _a128;
2302
2302
  if (!this.shouldUnsubscribe || this.shouldUnsubscribe()) {
2303
2303
  var closed_1 = this.closed;
2304
2304
  _super.prototype.unsubscribe.call(this);
2305
- !closed_1 && ((_a127 = this.onFinalize) === null || _a127 === void 0 ? void 0 : _a127.call(this));
2305
+ !closed_1 && ((_a128 = this.onFinalize) === null || _a128 === void 0 ? void 0 : _a128.call(this));
2306
2306
  }
2307
2307
  };
2308
2308
  return OperatorSubscriber2;
@@ -2563,7 +2563,7 @@ var init_Subject = __esm({
2563
2563
  Subject2.prototype.next = function(value2) {
2564
2564
  var _this = this;
2565
2565
  errorContext(function() {
2566
- var e_1, _a127;
2566
+ var e_1, _a128;
2567
2567
  _this._throwIfClosed();
2568
2568
  if (!_this.isStopped) {
2569
2569
  if (!_this.currentObservers) {
@@ -2578,7 +2578,7 @@ var init_Subject = __esm({
2578
2578
  e_1 = { error: e_1_1 };
2579
2579
  } finally {
2580
2580
  try {
2581
- if (_c3 && !_c3.done && (_a127 = _b4.return)) _a127.call(_b4);
2581
+ if (_c3 && !_c3.done && (_a128 = _b4.return)) _a128.call(_b4);
2582
2582
  } finally {
2583
2583
  if (e_1) throw e_1.error;
2584
2584
  }
@@ -2619,8 +2619,8 @@ var init_Subject = __esm({
2619
2619
  };
2620
2620
  Object.defineProperty(Subject2.prototype, "observed", {
2621
2621
  get: /* @__PURE__ */ __name(function() {
2622
- var _a127;
2623
- return ((_a127 = this.observers) === null || _a127 === void 0 ? void 0 : _a127.length) > 0;
2622
+ var _a128;
2623
+ return ((_a128 = this.observers) === null || _a128 === void 0 ? void 0 : _a128.length) > 0;
2624
2624
  }, "get"),
2625
2625
  enumerable: false,
2626
2626
  configurable: true
@@ -2636,7 +2636,7 @@ var init_Subject = __esm({
2636
2636
  };
2637
2637
  Subject2.prototype._innerSubscribe = function(subscriber) {
2638
2638
  var _this = this;
2639
- var _a127 = this, hasError = _a127.hasError, isStopped = _a127.isStopped, observers = _a127.observers;
2639
+ var _a128 = this, hasError = _a128.hasError, isStopped = _a128.isStopped, observers = _a128.observers;
2640
2640
  if (hasError || isStopped) {
2641
2641
  return EMPTY_SUBSCRIPTION;
2642
2642
  }
@@ -2648,7 +2648,7 @@ var init_Subject = __esm({
2648
2648
  });
2649
2649
  };
2650
2650
  Subject2.prototype._checkFinalizedStatuses = function(subscriber) {
2651
- var _a127 = this, hasError = _a127.hasError, thrownError = _a127.thrownError, isStopped = _a127.isStopped;
2651
+ var _a128 = this, hasError = _a128.hasError, thrownError = _a128.thrownError, isStopped = _a128.isStopped;
2652
2652
  if (hasError) {
2653
2653
  subscriber.error(thrownError);
2654
2654
  } else if (isStopped) {
@@ -2675,20 +2675,20 @@ var init_Subject = __esm({
2675
2675
  }
2676
2676
  __name(AnonymousSubject2, "AnonymousSubject");
2677
2677
  AnonymousSubject2.prototype.next = function(value2) {
2678
- var _a127, _b4;
2679
- (_b4 = (_a127 = this.destination) === null || _a127 === void 0 ? void 0 : _a127.next) === null || _b4 === void 0 ? void 0 : _b4.call(_a127, value2);
2678
+ var _a128, _b4;
2679
+ (_b4 = (_a128 = this.destination) === null || _a128 === void 0 ? void 0 : _a128.next) === null || _b4 === void 0 ? void 0 : _b4.call(_a128, value2);
2680
2680
  };
2681
2681
  AnonymousSubject2.prototype.error = function(err) {
2682
- var _a127, _b4;
2683
- (_b4 = (_a127 = this.destination) === null || _a127 === void 0 ? void 0 : _a127.error) === null || _b4 === void 0 ? void 0 : _b4.call(_a127, err);
2682
+ var _a128, _b4;
2683
+ (_b4 = (_a128 = this.destination) === null || _a128 === void 0 ? void 0 : _a128.error) === null || _b4 === void 0 ? void 0 : _b4.call(_a128, err);
2684
2684
  };
2685
2685
  AnonymousSubject2.prototype.complete = function() {
2686
- var _a127, _b4;
2687
- (_b4 = (_a127 = this.destination) === null || _a127 === void 0 ? void 0 : _a127.complete) === null || _b4 === void 0 ? void 0 : _b4.call(_a127);
2686
+ var _a128, _b4;
2687
+ (_b4 = (_a128 = this.destination) === null || _a128 === void 0 ? void 0 : _a128.complete) === null || _b4 === void 0 ? void 0 : _b4.call(_a128);
2688
2688
  };
2689
2689
  AnonymousSubject2.prototype._subscribe = function(subscriber) {
2690
- var _a127, _b4;
2691
- return (_b4 = (_a127 = this.source) === null || _a127 === void 0 ? void 0 : _a127.subscribe(subscriber)) !== null && _b4 !== void 0 ? _b4 : EMPTY_SUBSCRIPTION;
2690
+ var _a128, _b4;
2691
+ return (_b4 = (_a128 = this.source) === null || _a128 === void 0 ? void 0 : _a128.subscribe(subscriber)) !== null && _b4 !== void 0 ? _b4 : EMPTY_SUBSCRIPTION;
2692
2692
  };
2693
2693
  return AnonymousSubject2;
2694
2694
  })(Subject);
@@ -2722,7 +2722,7 @@ var init_BehaviorSubject = __esm({
2722
2722
  return subscription;
2723
2723
  };
2724
2724
  BehaviorSubject2.prototype.getValue = function() {
2725
- var _a127 = this, hasError = _a127.hasError, thrownError = _a127.thrownError, _value19 = _a127._value;
2725
+ var _a128 = this, hasError = _a128.hasError, thrownError = _a128.thrownError, _value19 = _a128._value;
2726
2726
  if (hasError) {
2727
2727
  throw thrownError;
2728
2728
  }
@@ -2782,7 +2782,7 @@ var init_ReplaySubject = __esm({
2782
2782
  }
2783
2783
  __name(ReplaySubject2, "ReplaySubject");
2784
2784
  ReplaySubject2.prototype.next = function(value2) {
2785
- var _a127 = this, isStopped = _a127.isStopped, _buffer = _a127._buffer, _infiniteTimeWindow = _a127._infiniteTimeWindow, _timestampProvider = _a127._timestampProvider, _windowTime = _a127._windowTime;
2785
+ var _a128 = this, isStopped = _a128.isStopped, _buffer = _a128._buffer, _infiniteTimeWindow = _a128._infiniteTimeWindow, _timestampProvider = _a128._timestampProvider, _windowTime = _a128._windowTime;
2786
2786
  if (!isStopped) {
2787
2787
  _buffer.push(value2);
2788
2788
  !_infiniteTimeWindow && _buffer.push(_timestampProvider.now() + _windowTime);
@@ -2794,7 +2794,7 @@ var init_ReplaySubject = __esm({
2794
2794
  this._throwIfClosed();
2795
2795
  this._trimBuffer();
2796
2796
  var subscription = this._innerSubscribe(subscriber);
2797
- var _a127 = this, _infiniteTimeWindow = _a127._infiniteTimeWindow, _buffer = _a127._buffer;
2797
+ var _a128 = this, _infiniteTimeWindow = _a128._infiniteTimeWindow, _buffer = _a128._buffer;
2798
2798
  var copy2 = _buffer.slice();
2799
2799
  for (var i11 = 0; i11 < copy2.length && !subscriber.closed; i11 += _infiniteTimeWindow ? 1 : 2) {
2800
2800
  subscriber.next(copy2[i11]);
@@ -2803,7 +2803,7 @@ var init_ReplaySubject = __esm({
2803
2803
  return subscription;
2804
2804
  };
2805
2805
  ReplaySubject2.prototype._trimBuffer = function() {
2806
- var _a127 = this, _bufferSize = _a127._bufferSize, _timestampProvider = _a127._timestampProvider, _buffer = _a127._buffer, _infiniteTimeWindow = _a127._infiniteTimeWindow;
2806
+ var _a128 = this, _bufferSize = _a128._bufferSize, _timestampProvider = _a128._timestampProvider, _buffer = _a128._buffer, _infiniteTimeWindow = _a128._infiniteTimeWindow;
2807
2807
  var adjustedBufferSize = (_infiniteTimeWindow ? 1 : 2) * _bufferSize;
2808
2808
  _bufferSize < Infinity && adjustedBufferSize < _buffer.length && _buffer.splice(0, _buffer.length - adjustedBufferSize);
2809
2809
  if (!_infiniteTimeWindow) {
@@ -2837,7 +2837,7 @@ var init_AsyncSubject = __esm({
2837
2837
  }
2838
2838
  __name(AsyncSubject2, "AsyncSubject");
2839
2839
  AsyncSubject2.prototype._checkFinalizedStatuses = function(subscriber) {
2840
- var _a127 = this, hasError = _a127.hasError, _hasValue = _a127._hasValue, _value19 = _a127._value, thrownError = _a127.thrownError, isStopped = _a127.isStopped, _isComplete = _a127._isComplete;
2840
+ var _a128 = this, hasError = _a128.hasError, _hasValue = _a128._hasValue, _value19 = _a128._value, thrownError = _a128.thrownError, isStopped = _a128.isStopped, _isComplete = _a128._isComplete;
2841
2841
  if (hasError) {
2842
2842
  subscriber.error(thrownError);
2843
2843
  } else if (isStopped || _isComplete) {
@@ -2852,7 +2852,7 @@ var init_AsyncSubject = __esm({
2852
2852
  }
2853
2853
  };
2854
2854
  AsyncSubject2.prototype.complete = function() {
2855
- var _a127 = this, _hasValue = _a127._hasValue, _value19 = _a127._value, _isComplete = _a127._isComplete;
2855
+ var _a128 = this, _hasValue = _a128._hasValue, _value19 = _a128._value, _isComplete = _a128._isComplete;
2856
2856
  if (!_isComplete) {
2857
2857
  this._isComplete = true;
2858
2858
  _hasValue && _super.prototype.next.call(this, _value19);
@@ -2932,7 +2932,7 @@ var init_AsyncAction = __esm({
2932
2932
  }
2933
2933
  __name(AsyncAction2, "AsyncAction");
2934
2934
  AsyncAction2.prototype.schedule = function(state5, delay3) {
2935
- var _a127;
2935
+ var _a128;
2936
2936
  if (delay3 === void 0) {
2937
2937
  delay3 = 0;
2938
2938
  }
@@ -2947,7 +2947,7 @@ var init_AsyncAction = __esm({
2947
2947
  }
2948
2948
  this.pending = true;
2949
2949
  this.delay = delay3;
2950
- this.id = (_a127 = this.id) !== null && _a127 !== void 0 ? _a127 : this.requestAsyncId(scheduler, this.id, delay3);
2950
+ this.id = (_a128 = this.id) !== null && _a128 !== void 0 ? _a128 : this.requestAsyncId(scheduler, this.id, delay3);
2951
2951
  return this;
2952
2952
  };
2953
2953
  AsyncAction2.prototype.requestAsyncId = function(scheduler, _id, delay3) {
@@ -2996,7 +2996,7 @@ var init_AsyncAction = __esm({
2996
2996
  };
2997
2997
  AsyncAction2.prototype.unsubscribe = function() {
2998
2998
  if (!this.closed) {
2999
- var _a127 = this, id = _a127.id, scheduler = _a127.scheduler;
2999
+ var _a128 = this, id = _a128.id, scheduler = _a128.scheduler;
3000
3000
  var actions = scheduler.actions;
3001
3001
  this.work = this.state = this.scheduler = null;
3002
3002
  this.pending = false;
@@ -3103,7 +3103,7 @@ var init_AsapAction = __esm({
3103
3103
  return scheduler._scheduled || (scheduler._scheduled = immediateProvider.setImmediate(scheduler.flush.bind(scheduler, void 0)));
3104
3104
  };
3105
3105
  AsapAction2.prototype.recycleAsyncId = function(scheduler, id, delay3) {
3106
- var _a127;
3106
+ var _a128;
3107
3107
  if (delay3 === void 0) {
3108
3108
  delay3 = 0;
3109
3109
  }
@@ -3111,7 +3111,7 @@ var init_AsapAction = __esm({
3111
3111
  return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay3);
3112
3112
  }
3113
3113
  var actions = scheduler.actions;
3114
- if (id != null && ((_a127 = actions[actions.length - 1]) === null || _a127 === void 0 ? void 0 : _a127.id) !== id) {
3114
+ if (id != null && ((_a128 = actions[actions.length - 1]) === null || _a128 === void 0 ? void 0 : _a128.id) !== id) {
3115
3115
  immediateProvider.clearImmediate(id);
3116
3116
  if (scheduler._scheduled === id) {
3117
3117
  scheduler._scheduled = void 0;
@@ -3355,7 +3355,7 @@ var init_AnimationFrameAction = __esm({
3355
3355
  }));
3356
3356
  };
3357
3357
  AnimationFrameAction2.prototype.recycleAsyncId = function(scheduler, id, delay3) {
3358
- var _a127;
3358
+ var _a128;
3359
3359
  if (delay3 === void 0) {
3360
3360
  delay3 = 0;
3361
3361
  }
@@ -3363,7 +3363,7 @@ var init_AnimationFrameAction = __esm({
3363
3363
  return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay3);
3364
3364
  }
3365
3365
  var actions = scheduler.actions;
3366
- if (id != null && id === scheduler._scheduled && ((_a127 = actions[actions.length - 1]) === null || _a127 === void 0 ? void 0 : _a127.id) !== id) {
3366
+ if (id != null && id === scheduler._scheduled && ((_a128 = actions[actions.length - 1]) === null || _a128 === void 0 ? void 0 : _a128.id) !== id) {
3367
3367
  animationFrameProvider.cancelAnimationFrame(id);
3368
3368
  scheduler._scheduled = void 0;
3369
3369
  }
@@ -3454,7 +3454,7 @@ var init_VirtualTimeScheduler = __esm({
3454
3454
  }
3455
3455
  __name(VirtualTimeScheduler2, "VirtualTimeScheduler");
3456
3456
  VirtualTimeScheduler2.prototype.flush = function() {
3457
- var _a127 = this, actions = _a127.actions, maxFrames = _a127.maxFrames;
3457
+ var _a128 = this, actions = _a128.actions, maxFrames = _a128.maxFrames;
3458
3458
  var error;
3459
3459
  var action;
3460
3460
  while ((action = actions[0]) && action.delay <= maxFrames) {
@@ -3688,7 +3688,7 @@ var init_isIterable = __esm({
3688
3688
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.js
3689
3689
  function readableStreamLikeToAsyncGenerator(readableStream) {
3690
3690
  return __asyncGenerator(this, arguments, /* @__PURE__ */ __name(function readableStreamLikeToAsyncGenerator_1() {
3691
- var reader, _a127, value2, done;
3691
+ var reader, _a128, value2, done;
3692
3692
  return __generator(this, function(_b4) {
3693
3693
  switch (_b4.label) {
3694
3694
  case 0:
@@ -3701,7 +3701,7 @@ function readableStreamLikeToAsyncGenerator(readableStream) {
3701
3701
  if (false) return [3, 8];
3702
3702
  return [4, __await(reader.read())];
3703
3703
  case 3:
3704
- _a127 = _b4.sent(), value2 = _a127.value, done = _a127.done;
3704
+ _a128 = _b4.sent(), value2 = _a128.value, done = _a128.done;
3705
3705
  if (!done) return [3, 5];
3706
3706
  return [4, __await(void 0)];
3707
3707
  case 4:
@@ -3794,7 +3794,7 @@ function fromPromise(promise) {
3794
3794
  }
3795
3795
  function fromIterable(iterable) {
3796
3796
  return new Observable(function(subscriber) {
3797
- var e_1, _a127;
3797
+ var e_1, _a128;
3798
3798
  try {
3799
3799
  for (var iterable_1 = __values(iterable), iterable_1_1 = iterable_1.next(); !iterable_1_1.done; iterable_1_1 = iterable_1.next()) {
3800
3800
  var value2 = iterable_1_1.value;
@@ -3807,7 +3807,7 @@ function fromIterable(iterable) {
3807
3807
  e_1 = { error: e_1_1 };
3808
3808
  } finally {
3809
3809
  try {
3810
- if (iterable_1_1 && !iterable_1_1.done && (_a127 = iterable_1.return)) _a127.call(iterable_1);
3810
+ if (iterable_1_1 && !iterable_1_1.done && (_a128 = iterable_1.return)) _a128.call(iterable_1);
3811
3811
  } finally {
3812
3812
  if (e_1) throw e_1.error;
3813
3813
  }
@@ -3827,7 +3827,7 @@ function fromReadableStreamLike(readableStream) {
3827
3827
  }
3828
3828
  function process2(asyncIterable, subscriber) {
3829
3829
  var asyncIterable_1, asyncIterable_1_1;
3830
- var e_2, _a127;
3830
+ var e_2, _a128;
3831
3831
  return __awaiter(this, void 0, void 0, function() {
3832
3832
  var value2, e_2_1;
3833
3833
  return __generator(this, function(_b4) {
@@ -3856,8 +3856,8 @@ function process2(asyncIterable, subscriber) {
3856
3856
  return [3, 11];
3857
3857
  case 6:
3858
3858
  _b4.trys.push([6, , 9, 10]);
3859
- if (!(asyncIterable_1_1 && !asyncIterable_1_1.done && (_a127 = asyncIterable_1.return))) return [3, 8];
3860
- return [4, _a127.call(asyncIterable_1)];
3859
+ if (!(asyncIterable_1_1 && !asyncIterable_1_1.done && (_a128 = asyncIterable_1.return))) return [3, 8];
3860
+ return [4, _a128.call(asyncIterable_1)];
3861
3861
  case 7:
3862
3862
  _b4.sent();
3863
3863
  _b4.label = 8;
@@ -4031,11 +4031,11 @@ function scheduleIterable(input, scheduler) {
4031
4031
  executeSchedule(subscriber, scheduler, function() {
4032
4032
  iterator2 = input[iterator]();
4033
4033
  executeSchedule(subscriber, scheduler, function() {
4034
- var _a127;
4034
+ var _a128;
4035
4035
  var value2;
4036
4036
  var done;
4037
4037
  try {
4038
- _a127 = iterator2.next(), value2 = _a127.value, done = _a127.done;
4038
+ _a128 = iterator2.next(), value2 = _a128.value, done = _a128.done;
4039
4039
  } catch (err) {
4040
4040
  subscriber.error(err);
4041
4041
  return;
@@ -4196,12 +4196,12 @@ var init_throwError = __esm({
4196
4196
 
4197
4197
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Notification.js
4198
4198
  function observeNotification(notification, observer) {
4199
- var _a127, _b4, _c3;
4199
+ var _a128, _b4, _c3;
4200
4200
  var _d2 = notification, kind = _d2.kind, value2 = _d2.value, error = _d2.error;
4201
4201
  if (typeof kind !== "string") {
4202
4202
  throw new TypeError('Invalid notification, missing "kind"');
4203
4203
  }
4204
- kind === "N" ? (_a127 = observer.next) === null || _a127 === void 0 ? void 0 : _a127.call(observer, value2) : kind === "E" ? (_b4 = observer.error) === null || _b4 === void 0 ? void 0 : _b4.call(observer, error) : (_c3 = observer.complete) === null || _c3 === void 0 ? void 0 : _c3.call(observer);
4204
+ kind === "N" ? (_a128 = observer.next) === null || _a128 === void 0 ? void 0 : _a128.call(observer, value2) : kind === "E" ? (_b4 = observer.error) === null || _b4 === void 0 ? void 0 : _b4.call(observer, error) : (_c3 = observer.complete) === null || _c3 === void 0 ? void 0 : _c3.call(observer);
4205
4205
  }
4206
4206
  var NotificationKind, Notification;
4207
4207
  var init_Notification = __esm({
@@ -4227,15 +4227,15 @@ var init_Notification = __esm({
4227
4227
  return observeNotification(this, observer);
4228
4228
  };
4229
4229
  Notification2.prototype.do = function(nextHandler, errorHandler, completeHandler) {
4230
- var _a127 = this, kind = _a127.kind, value2 = _a127.value, error = _a127.error;
4230
+ var _a128 = this, kind = _a128.kind, value2 = _a128.value, error = _a128.error;
4231
4231
  return kind === "N" ? nextHandler === null || nextHandler === void 0 ? void 0 : nextHandler(value2) : kind === "E" ? errorHandler === null || errorHandler === void 0 ? void 0 : errorHandler(error) : completeHandler === null || completeHandler === void 0 ? void 0 : completeHandler();
4232
4232
  };
4233
4233
  Notification2.prototype.accept = function(nextOrObserver, error, complete) {
4234
- var _a127;
4235
- return isFunction((_a127 = nextOrObserver) === null || _a127 === void 0 ? void 0 : _a127.next) ? this.observe(nextOrObserver) : this.do(nextOrObserver, error, complete);
4234
+ var _a128;
4235
+ return isFunction((_a128 = nextOrObserver) === null || _a128 === void 0 ? void 0 : _a128.next) ? this.observe(nextOrObserver) : this.do(nextOrObserver, error, complete);
4236
4236
  };
4237
4237
  Notification2.prototype.toObservable = function() {
4238
- var _a127 = this, kind = _a127.kind, value2 = _a127.value, error = _a127.error;
4238
+ var _a128 = this, kind = _a128.kind, value2 = _a128.value, error = _a128.error;
4239
4239
  var result = kind === "N" ? of(value2) : kind === "E" ? throwError(function() {
4240
4240
  return error;
4241
4241
  }) : kind === "C" ? EMPTY : 0;
@@ -4350,7 +4350,7 @@ var init_isDate = __esm({
4350
4350
 
4351
4351
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/timeout.js
4352
4352
  function timeout(config2, schedulerArg) {
4353
- var _a127 = isValidDate(config2) ? { first: config2 } : typeof config2 === "number" ? { each: config2 } : config2, first3 = _a127.first, each = _a127.each, _b4 = _a127.with, _with = _b4 === void 0 ? timeoutErrorFactory : _b4, _c3 = _a127.scheduler, scheduler = _c3 === void 0 ? schedulerArg !== null && schedulerArg !== void 0 ? schedulerArg : asyncScheduler : _c3, _d2 = _a127.meta, meta = _d2 === void 0 ? null : _d2;
4353
+ var _a128 = isValidDate(config2) ? { first: config2 } : typeof config2 === "number" ? { each: config2 } : config2, first3 = _a128.first, each = _a128.each, _b4 = _a128.with, _with = _b4 === void 0 ? timeoutErrorFactory : _b4, _c3 = _a128.scheduler, scheduler = _c3 === void 0 ? schedulerArg !== null && schedulerArg !== void 0 ? schedulerArg : asyncScheduler : _c3, _d2 = _a128.meta, meta = _d2 === void 0 ? null : _d2;
4354
4354
  if (first3 == null && each == null) {
4355
4355
  throw new TypeError("No timeout provided.");
4356
4356
  }
@@ -4517,7 +4517,7 @@ function combineLatest() {
4517
4517
  }
4518
4518
  var scheduler = popScheduler(args);
4519
4519
  var resultSelector = popResultSelector(args);
4520
- var _a127 = argsArgArrayOrObject(args), observables = _a127.args, keys3 = _a127.keys;
4520
+ var _a128 = argsArgArrayOrObject(args), observables = _a128.args, keys3 = _a128.keys;
4521
4521
  if (observables.length === 0) {
4522
4522
  return from([], scheduler);
4523
4523
  }
@@ -4753,11 +4753,11 @@ function fromEvent(target, eventName, options2, resultSelector) {
4753
4753
  if (resultSelector) {
4754
4754
  return fromEvent(target, eventName, options2).pipe(mapOneOrManyArgs(resultSelector));
4755
4755
  }
4756
- var _a127 = __read(isEventTarget(target) ? eventTargetMethods.map(function(methodName) {
4756
+ var _a128 = __read(isEventTarget(target) ? eventTargetMethods.map(function(methodName) {
4757
4757
  return function(handler2) {
4758
4758
  return target[methodName](eventName, handler2, options2);
4759
4759
  };
4760
- }) : isNodeStyleEventEmitter(target) ? nodeEventEmitterMethods.map(toCommonHandlerRegistry(target, eventName)) : isJQueryStyleEventEmitter(target) ? jqueryMethods.map(toCommonHandlerRegistry(target, eventName)) : [], 2), add4 = _a127[0], remove2 = _a127[1];
4760
+ }) : isNodeStyleEventEmitter(target) ? nodeEventEmitterMethods.map(toCommonHandlerRegistry(target, eventName)) : isJQueryStyleEventEmitter(target) ? jqueryMethods.map(toCommonHandlerRegistry(target, eventName)) : [], 2), add4 = _a128[0], remove2 = _a128[1];
4761
4761
  if (!add4) {
4762
4762
  if (isArrayLike(target)) {
4763
4763
  return mergeMap(function(subTarget) {
@@ -5039,7 +5039,7 @@ function bufferCount(bufferSize, startBufferEvery) {
5039
5039
  var buffers = [];
5040
5040
  var count2 = 0;
5041
5041
  source.subscribe(createOperatorSubscriber(subscriber, function(value2) {
5042
- var e_1, _a127, e_2, _b4;
5042
+ var e_1, _a128, e_2, _b4;
5043
5043
  var toEmit = null;
5044
5044
  if (count2++ % startBufferEvery === 0) {
5045
5045
  buffers.push([]);
@@ -5057,7 +5057,7 @@ function bufferCount(bufferSize, startBufferEvery) {
5057
5057
  e_1 = { error: e_1_1 };
5058
5058
  } finally {
5059
5059
  try {
5060
- if (buffers_1_1 && !buffers_1_1.done && (_a127 = buffers_1.return)) _a127.call(buffers_1);
5060
+ if (buffers_1_1 && !buffers_1_1.done && (_a128 = buffers_1.return)) _a128.call(buffers_1);
5061
5061
  } finally {
5062
5062
  if (e_1) throw e_1.error;
5063
5063
  }
@@ -5080,7 +5080,7 @@ function bufferCount(bufferSize, startBufferEvery) {
5080
5080
  }
5081
5081
  }
5082
5082
  }, function() {
5083
- var e_3, _a127;
5083
+ var e_3, _a128;
5084
5084
  try {
5085
5085
  for (var buffers_2 = __values(buffers), buffers_2_1 = buffers_2.next(); !buffers_2_1.done; buffers_2_1 = buffers_2.next()) {
5086
5086
  var buffer2 = buffers_2_1.value;
@@ -5090,7 +5090,7 @@ function bufferCount(bufferSize, startBufferEvery) {
5090
5090
  e_3 = { error: e_3_1 };
5091
5091
  } finally {
5092
5092
  try {
5093
- if (buffers_2_1 && !buffers_2_1.done && (_a127 = buffers_2.return)) _a127.call(buffers_2);
5093
+ if (buffers_2_1 && !buffers_2_1.done && (_a128 = buffers_2.return)) _a128.call(buffers_2);
5094
5094
  } finally {
5095
5095
  if (e_3) throw e_3.error;
5096
5096
  }
@@ -5113,12 +5113,12 @@ var init_bufferCount = __esm({
5113
5113
 
5114
5114
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/bufferTime.js
5115
5115
  function bufferTime(bufferTimeSpan) {
5116
- var _a127, _b4;
5116
+ var _a128, _b4;
5117
5117
  var otherArgs = [];
5118
5118
  for (var _i = 1; _i < arguments.length; _i++) {
5119
5119
  otherArgs[_i - 1] = arguments[_i];
5120
5120
  }
5121
- var scheduler = (_a127 = popScheduler(otherArgs)) !== null && _a127 !== void 0 ? _a127 : asyncScheduler;
5121
+ var scheduler = (_a128 = popScheduler(otherArgs)) !== null && _a128 !== void 0 ? _a128 : asyncScheduler;
5122
5122
  var bufferCreationInterval = (_b4 = otherArgs[0]) !== null && _b4 !== void 0 ? _b4 : null;
5123
5123
  var maxBufferSize = otherArgs[1] || Infinity;
5124
5124
  return operate(function(source, subscriber) {
@@ -5153,7 +5153,7 @@ function bufferTime(bufferTimeSpan) {
5153
5153
  }
5154
5154
  startBuffer();
5155
5155
  var bufferTimeSubscriber = createOperatorSubscriber(subscriber, function(value2) {
5156
- var e_1, _a128;
5156
+ var e_1, _a129;
5157
5157
  var recordsCopy = bufferRecords.slice();
5158
5158
  try {
5159
5159
  for (var recordsCopy_1 = __values(recordsCopy), recordsCopy_1_1 = recordsCopy_1.next(); !recordsCopy_1_1.done; recordsCopy_1_1 = recordsCopy_1.next()) {
@@ -5166,7 +5166,7 @@ function bufferTime(bufferTimeSpan) {
5166
5166
  e_1 = { error: e_1_1 };
5167
5167
  } finally {
5168
5168
  try {
5169
- if (recordsCopy_1_1 && !recordsCopy_1_1.done && (_a128 = recordsCopy_1.return)) _a128.call(recordsCopy_1);
5169
+ if (recordsCopy_1_1 && !recordsCopy_1_1.done && (_a129 = recordsCopy_1.return)) _a129.call(recordsCopy_1);
5170
5170
  } finally {
5171
5171
  if (e_1) throw e_1.error;
5172
5172
  }
@@ -5718,9 +5718,9 @@ function share(options2) {
5718
5718
  if (options2 === void 0) {
5719
5719
  options2 = {};
5720
5720
  }
5721
- var _a127 = options2.connector, connector = _a127 === void 0 ? function() {
5721
+ var _a128 = options2.connector, connector = _a128 === void 0 ? function() {
5722
5722
  return new Subject();
5723
- } : _a127, _b4 = options2.resetOnError, resetOnError = _b4 === void 0 ? true : _b4, _c3 = options2.resetOnComplete, resetOnComplete = _c3 === void 0 ? true : _c3, _d2 = options2.resetOnRefCountZero, resetOnRefCountZero = _d2 === void 0 ? true : _d2;
5723
+ } : _a128, _b4 = options2.resetOnError, resetOnError = _b4 === void 0 ? true : _b4, _c3 = options2.resetOnComplete, resetOnComplete = _c3 === void 0 ? true : _c3, _d2 = options2.resetOnRefCountZero, resetOnRefCountZero = _d2 === void 0 ? true : _d2;
5724
5724
  return function(wrapperSource) {
5725
5725
  var connection;
5726
5726
  var resetConnection;
@@ -5812,11 +5812,11 @@ var init_share = __esm({
5812
5812
 
5813
5813
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/shareReplay.js
5814
5814
  function shareReplay(configOrBufferSize, windowTime2, scheduler) {
5815
- var _a127, _b4, _c3;
5815
+ var _a128, _b4, _c3;
5816
5816
  var bufferSize;
5817
5817
  var refCount2 = false;
5818
5818
  if (configOrBufferSize && typeof configOrBufferSize === "object") {
5819
- _a127 = configOrBufferSize.bufferSize, bufferSize = _a127 === void 0 ? Infinity : _a127, _b4 = configOrBufferSize.windowTime, windowTime2 = _b4 === void 0 ? Infinity : _b4, _c3 = configOrBufferSize.refCount, refCount2 = _c3 === void 0 ? false : _c3, scheduler = configOrBufferSize.scheduler;
5819
+ _a128 = configOrBufferSize.bufferSize, bufferSize = _a128 === void 0 ? Infinity : _a128, _b4 = configOrBufferSize.windowTime, windowTime2 = _b4 === void 0 ? Infinity : _b4, _c3 = configOrBufferSize.refCount, refCount2 = _c3 === void 0 ? false : _c3, scheduler = configOrBufferSize.scheduler;
5820
5820
  } else {
5821
5821
  bufferSize = configOrBufferSize !== null && configOrBufferSize !== void 0 ? configOrBufferSize : Infinity;
5822
5822
  }
@@ -5945,7 +5945,7 @@ var init_tap = __esm({
5945
5945
  // node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttle.js
5946
5946
  function throttle(durationSelector, config2) {
5947
5947
  return operate(function(source, subscriber) {
5948
- var _a127 = config2 !== null && config2 !== void 0 ? config2 : {}, _b4 = _a127.leading, leading = _b4 === void 0 ? true : _b4, _c3 = _a127.trailing, trailing = _c3 === void 0 ? false : _c3;
5948
+ var _a128 = config2 !== null && config2 !== void 0 ? config2 : {}, _b4 = _a128.leading, leading = _b4 === void 0 ? true : _b4, _c3 = _a128.trailing, trailing = _c3 === void 0 ? false : _c3;
5949
5949
  var hasValue = false;
5950
5950
  var sendValue = null;
5951
5951
  var throttled = null;
@@ -56273,7 +56273,7 @@ var require_sweet_scroll = __commonJS({
56273
56273
  hash: null
56274
56274
  };
56275
56275
  this.loop = function(time) {
56276
- var _a127 = _this, $el = _a127.$el, ctx = _a127.ctx;
56276
+ var _a128 = _this, $el = _a128.$el, ctx = _a128.ctx;
56277
56277
  if (!ctx.start) {
56278
56278
  ctx.start = time;
56279
56279
  }
@@ -56369,7 +56369,7 @@ var require_sweet_scroll = __commonJS({
56369
56369
  if (!canUseDOM) {
56370
56370
  return;
56371
56371
  }
56372
- var _a127 = this, $el = _a127.$el, ctx = _a127.ctx, currentOptions = _a127.opts;
56372
+ var _a128 = this, $el = _a128.$el, ctx = _a128.ctx, currentOptions = _a128.opts;
56373
56373
  var $trigger = ctx.$trigger;
56374
56374
  var opts = __assign2({}, currentOptions, options2 || {});
56375
56375
  var optOffset = opts.offset, vertical = opts.vertical, horizontal = opts.horizontal;
@@ -56436,7 +56436,7 @@ var require_sweet_scroll = __commonJS({
56436
56436
  if (gotoEnd === void 0) {
56437
56437
  gotoEnd = false;
56438
56438
  }
56439
- var _a127 = this, $el = _a127.$el, ctx = _a127.ctx;
56439
+ var _a128 = this, $el = _a128.$el, ctx = _a128.ctx;
56440
56440
  var pos = ctx.pos;
56441
56441
  if (!$el || !ctx.progress) {
56442
56442
  return;
@@ -56492,7 +56492,7 @@ var require_sweet_scroll = __commonJS({
56492
56492
  ctx.id = SweetScroll3.raf(this.loop);
56493
56493
  };
56494
56494
  SweetScroll3.prototype.complete = function() {
56495
- var _a127 = this, $el = _a127.$el, ctx = _a127.ctx;
56495
+ var _a128 = this, $el = _a128.$el, ctx = _a128.ctx;
56496
56496
  var hash = ctx.hash, cancel = ctx.cancel, opts = ctx.opts, pos = ctx.pos, $trigger = ctx.$trigger;
56497
56497
  if (!$el || !opts) {
56498
56498
  return;
@@ -56518,18 +56518,18 @@ var require_sweet_scroll = __commonJS({
56518
56518
  for (var _i = 2; _i < arguments.length; _i++) {
56519
56519
  args[_i - 2] = arguments[_i];
56520
56520
  }
56521
- var _a127;
56521
+ var _a128;
56522
56522
  var callback = options2[type5];
56523
56523
  var callbackResult;
56524
56524
  var methodResult;
56525
56525
  if (isFunction3(callback)) {
56526
56526
  callbackResult = callback.apply(this, args.concat([this]));
56527
56527
  }
56528
- methodResult = (_a127 = this)["on" + (type5[0].toUpperCase() + type5.slice(1))].apply(_a127, args);
56528
+ methodResult = (_a128 = this)["on" + (type5[0].toUpperCase() + type5.slice(1))].apply(_a128, args);
56529
56529
  return callbackResult !== void 0 ? callbackResult : methodResult;
56530
56530
  };
56531
56531
  SweetScroll3.prototype.bind = function(click, stop) {
56532
- var _a127 = this, $el = _a127.$el, opts = _a127.ctx.opts;
56532
+ var _a128 = this, $el = _a128.$el, opts = _a128.ctx.opts;
56533
56533
  if ($el) {
56534
56534
  if (click) {
56535
56535
  addEvent($el, CONTAINER_CLICK_EVENT, this.handleClick, false);
@@ -56540,7 +56540,7 @@ var require_sweet_scroll = __commonJS({
56540
56540
  }
56541
56541
  };
56542
56542
  SweetScroll3.prototype.unbind = function(click, stop) {
56543
- var _a127 = this, $el = _a127.$el, opts = _a127.ctx.opts;
56543
+ var _a128 = this, $el = _a128.$el, opts = _a128.ctx.opts;
56544
56544
  if ($el) {
56545
56545
  if (click) {
56546
56546
  removeEvent($el, CONTAINER_CLICK_EVENT, this.handleClick, false);
@@ -100553,7 +100553,7 @@ var init_dist6 = __esm({
100553
100553
 
100554
100554
  // node_modules/.pnpm/prosemirror-view@1.41.6/node_modules/prosemirror-view/dist/index.js
100555
100555
  function scanFor(node2, off, targetNode, targetOff, dir) {
100556
- var _a127;
100556
+ var _a128;
100557
100557
  for (; ; ) {
100558
100558
  if (node2 == targetNode && off == targetOff)
100559
100559
  return true;
@@ -100566,7 +100566,7 @@ function scanFor(node2, off, targetNode, targetOff, dir) {
100566
100566
  } else if (node2.nodeType == 1) {
100567
100567
  let child = node2.childNodes[off + (dir < 0 ? -1 : 0)];
100568
100568
  if (child.nodeType == 1 && child.contentEditable == "false") {
100569
- if ((_a127 = child.pmViewDesc) === null || _a127 === void 0 ? void 0 : _a127.ignoreForSelection)
100569
+ if ((_a128 = child.pmViewDesc) === null || _a128 === void 0 ? void 0 : _a128.ignoreForSelection)
100570
100570
  off += dir;
100571
100571
  else
100572
100572
  return false;
@@ -102734,10 +102734,10 @@ function blockParent(view, node2) {
102734
102734
  return null;
102735
102735
  }
102736
102736
  function fixUpBadSafariComposition(view, addedNodes) {
102737
- var _a127;
102737
+ var _a128;
102738
102738
  let { focusNode, focusOffset } = view.domSelectionRange();
102739
102739
  for (let node2 of addedNodes) {
102740
- if (((_a127 = node2.parentNode) === null || _a127 === void 0 ? void 0 : _a127.nodeName) == "TR") {
102740
+ if (((_a128 = node2.parentNode) === null || _a128 === void 0 ? void 0 : _a128.nodeName) == "TR") {
102741
102741
  let nextCell = node2.nextSibling;
102742
102742
  while (nextCell && (nextCell.nodeName != "TD" && nextCell.nodeName != "TH"))
102743
102743
  nextCell = nextCell.nextSibling;
@@ -105650,7 +105650,7 @@ var init_dist7 = __esm({
105650
105650
  this.updateStateInner(state5, this._props);
105651
105651
  }
105652
105652
  updateStateInner(state5, prevProps) {
105653
- var _a127;
105653
+ var _a128;
105654
105654
  let prev = this.state, redraw = false, updateSel = false;
105655
105655
  if (state5.storedMarks && this.composing) {
105656
105656
  clearComposition(this);
@@ -105700,7 +105700,7 @@ var init_dist7 = __esm({
105700
105700
  this.domObserver.start();
105701
105701
  }
105702
105702
  this.updatePluginViews(prev);
105703
- if (((_a127 = this.dragging) === null || _a127 === void 0 ? void 0 : _a127.node) && !prev.doc.eq(state5.doc))
105703
+ if (((_a128 = this.dragging) === null || _a128 === void 0 ? void 0 : _a128.node) && !prev.doc.eq(state5.doc))
105704
105704
  this.updateDraggedNode(this.dragging, prev);
105705
105705
  if (scroll == "reset") {
105706
105706
  this.dom.scrollTop = 0;
@@ -107505,10 +107505,10 @@ function cleanUpSchemaItem(data) {
107505
107505
  );
107506
107506
  }
107507
107507
  function getSchemaByResolvedExtensions(extensions, editor) {
107508
- var _a127;
107508
+ var _a128;
107509
107509
  const allAttributes = getAttributesFromExtensions(extensions);
107510
107510
  const { nodeExtensions, markExtensions } = splitExtensions(extensions);
107511
- const topNode = (_a127 = nodeExtensions.find((extension2) => getExtensionField(extension2, "topNode"))) === null || _a127 === void 0 ? void 0 : _a127.name;
107511
+ const topNode = (_a128 = nodeExtensions.find((extension2) => getExtensionField(extension2, "topNode"))) === null || _a128 === void 0 ? void 0 : _a128.name;
107512
107512
  const nodes = Object.fromEntries(nodeExtensions.map((extension2) => {
107513
107513
  const extensionAttributes = allAttributes.filter((attribute) => attribute.type === extension2.name);
107514
107514
  const context2 = {
@@ -107539,8 +107539,8 @@ function getSchemaByResolvedExtensions(extensions, editor) {
107539
107539
  defining: callOrReturn(getExtensionField(extension2, "defining", context2)),
107540
107540
  isolating: callOrReturn(getExtensionField(extension2, "isolating", context2)),
107541
107541
  attrs: Object.fromEntries(extensionAttributes.map((extensionAttribute) => {
107542
- var _a128;
107543
- return [extensionAttribute.name, { default: (_a128 = extensionAttribute === null || extensionAttribute === void 0 ? void 0 : extensionAttribute.attribute) === null || _a128 === void 0 ? void 0 : _a128.default }];
107542
+ var _a129;
107543
+ return [extensionAttribute.name, { default: (_a129 = extensionAttribute === null || extensionAttribute === void 0 ? void 0 : extensionAttribute.attribute) === null || _a129 === void 0 ? void 0 : _a129.default }];
107544
107544
  }))
107545
107545
  });
107546
107546
  const parseHTML = callOrReturn(getExtensionField(extension2, "parseHTML", context2));
@@ -107583,8 +107583,8 @@ function getSchemaByResolvedExtensions(extensions, editor) {
107583
107583
  spanning: callOrReturn(getExtensionField(extension2, "spanning", context2)),
107584
107584
  code: callOrReturn(getExtensionField(extension2, "code", context2)),
107585
107585
  attrs: Object.fromEntries(extensionAttributes.map((extensionAttribute) => {
107586
- var _a128;
107587
- return [extensionAttribute.name, { default: (_a128 = extensionAttribute === null || extensionAttribute === void 0 ? void 0 : extensionAttribute.attribute) === null || _a128 === void 0 ? void 0 : _a128.default }];
107586
+ var _a129;
107587
+ return [extensionAttribute.name, { default: (_a129 = extensionAttribute === null || extensionAttribute === void 0 ? void 0 : extensionAttribute.attribute) === null || _a129 === void 0 ? void 0 : _a129.default }];
107588
107588
  }))
107589
107589
  });
107590
107590
  const parseHTML = callOrReturn(getExtensionField(extension2, "parseHTML", context2));
@@ -107629,7 +107629,7 @@ function isRegExp(value2) {
107629
107629
  return Object.prototype.toString.call(value2) === "[object RegExp]";
107630
107630
  }
107631
107631
  function run$1(config2) {
107632
- var _a127;
107632
+ var _a128;
107633
107633
  const { editor, from: from3, to, text: text8, rules: rules3, plugin } = config2;
107634
107634
  const { view } = editor;
107635
107635
  if (view.composing) {
@@ -107638,7 +107638,7 @@ function run$1(config2) {
107638
107638
  const $from = view.state.doc.resolve(from3);
107639
107639
  if (
107640
107640
  // check for code node
107641
- $from.parent.type.spec.code || !!((_a127 = $from.nodeBefore || $from.nodeAfter) === null || _a127 === void 0 ? void 0 : _a127.marks.find((mark2) => mark2.type.spec.code))
107641
+ $from.parent.type.spec.code || !!((_a128 = $from.nodeBefore || $from.nodeAfter) === null || _a128 === void 0 ? void 0 : _a128.marks.find((mark2) => mark2.type.spec.code))
107642
107642
  ) {
107643
107643
  return false;
107644
107644
  }
@@ -107887,8 +107887,8 @@ function pasteRulesPlugin(props) {
107887
107887
  // we register a global drag handler to track the current drag source element
107888
107888
  view(view) {
107889
107889
  const handleDragstart = /* @__PURE__ */ __name((event) => {
107890
- var _a127;
107891
- dragSourceElement = ((_a127 = view.dom.parentElement) === null || _a127 === void 0 ? void 0 : _a127.contains(event.target)) ? view.dom.parentElement : null;
107890
+ var _a128;
107891
+ dragSourceElement = ((_a128 = view.dom.parentElement) === null || _a128 === void 0 ? void 0 : _a128.contains(event.target)) ? view.dom.parentElement : null;
107892
107892
  if (dragSourceElement) {
107893
107893
  tiptapDragFromOtherEditor = editor;
107894
107894
  }
@@ -107926,8 +107926,8 @@ function pasteRulesPlugin(props) {
107926
107926
  return false;
107927
107927
  }, "drop"),
107928
107928
  paste: /* @__PURE__ */ __name((_view, event) => {
107929
- var _a127;
107930
- const html8 = (_a127 = event.clipboardData) === null || _a127 === void 0 ? void 0 : _a127.getData("text/html");
107929
+ var _a128;
107930
+ const html8 = (_a128 = event.clipboardData) === null || _a128 === void 0 ? void 0 : _a128.getData("text/html");
107931
107931
  pasteEvent = event;
107932
107932
  isPastedFromProseMirror = !!(html8 === null || html8 === void 0 ? void 0 : html8.includes("data-pm-slice"));
107933
107933
  return false;
@@ -107987,7 +107987,7 @@ function getTextBetween(startNode, range2, options2) {
107987
107987
  const { blockSeparator = "\n\n", textSerializers = {} } = options2 || {};
107988
107988
  let text8 = "";
107989
107989
  startNode.nodesBetween(from3, to, (node2, pos, parent, index3) => {
107990
- var _a127;
107990
+ var _a128;
107991
107991
  if (node2.isBlock && pos > from3) {
107992
107992
  text8 += blockSeparator;
107993
107993
  }
@@ -108005,7 +108005,7 @@ function getTextBetween(startNode, range2, options2) {
108005
108005
  return false;
108006
108006
  }
108007
108007
  if (node2.isText) {
108008
- text8 += (_a127 = node2 === null || node2 === void 0 ? void 0 : node2.text) === null || _a127 === void 0 ? void 0 : _a127.slice(Math.max(from3, pos) - pos, to - pos);
108008
+ text8 += (_a128 = node2 === null || node2 === void 0 ? void 0 : node2.text) === null || _a128 === void 0 ? void 0 : _a128.slice(Math.max(from3, pos) - pos, to - pos);
108009
108009
  }
108010
108010
  });
108011
108011
  return text8;
@@ -108041,7 +108041,7 @@ function isMarkInSet(marks, type5, attributes = {}) {
108041
108041
  return !!findMarkInSet(marks, type5, attributes);
108042
108042
  }
108043
108043
  function getMarkRange($pos, type5, attributes) {
108044
- var _a127;
108044
+ var _a128;
108045
108045
  if (!$pos || !type5) {
108046
108046
  return;
108047
108047
  }
@@ -108052,7 +108052,7 @@ function getMarkRange($pos, type5, attributes) {
108052
108052
  if (!start.node || !start.node.marks.some((mark3) => mark3.type === type5)) {
108053
108053
  return;
108054
108054
  }
108055
- attributes = attributes || ((_a127 = start.node.marks[0]) === null || _a127 === void 0 ? void 0 : _a127.attrs);
108055
+ attributes = attributes || ((_a128 = start.node.marks[0]) === null || _a128 === void 0 ? void 0 : _a128.attrs);
108056
108056
  const mark2 = findMarkInSet([...start.node.marks], type5, attributes);
108057
108057
  if (!mark2) {
108058
108058
  return;
@@ -108535,8 +108535,8 @@ function getDebugJSON(node2, startOffset = 0) {
108535
108535
  if (node2.content.childCount) {
108536
108536
  output.content = [];
108537
108537
  node2.forEach((child, offset) => {
108538
- var _a127;
108539
- (_a127 = output.content) === null || _a127 === void 0 ? void 0 : _a127.push(getDebugJSON(child, startOffset + offset + increment2));
108538
+ var _a128;
108539
+ (_a128 = output.content) === null || _a128 === void 0 ? void 0 : _a128.push(getDebugJSON(child, startOffset + offset + increment2));
108540
108540
  });
108541
108541
  }
108542
108542
  if (node2.text) {
@@ -108663,13 +108663,13 @@ function isList(name, extensions) {
108663
108663
  return group.split(" ").includes("list");
108664
108664
  }
108665
108665
  function isNodeEmpty(node2, { checkChildren = true, ignoreWhitespace = false } = {}) {
108666
- var _a127;
108666
+ var _a128;
108667
108667
  if (ignoreWhitespace) {
108668
108668
  if (node2.type.name === "hardBreak") {
108669
108669
  return true;
108670
108670
  }
108671
108671
  if (node2.isText) {
108672
- return /^\s*$/m.test((_a127 = node2.text) !== null && _a127 !== void 0 ? _a127 : "");
108672
+ return /^\s*$/m.test((_a128 = node2.text) !== null && _a128 !== void 0 ? _a128 : "");
108673
108673
  }
108674
108674
  }
108675
108675
  if (node2.isText) {
@@ -108779,14 +108779,14 @@ function rewriteUnknownContent(json, schema4, options2) {
108779
108779
  });
108780
108780
  }
108781
108781
  function canSetMark(state5, tr3, newMarkType) {
108782
- var _a127;
108782
+ var _a128;
108783
108783
  const { selection } = tr3;
108784
108784
  let cursor = null;
108785
108785
  if (isTextSelection(selection)) {
108786
108786
  cursor = selection.$cursor;
108787
108787
  }
108788
108788
  if (cursor) {
108789
- const currentMarks = (_a127 = state5.storedMarks) !== null && _a127 !== void 0 ? _a127 : cursor.marks();
108789
+ const currentMarks = (_a128 = state5.storedMarks) !== null && _a128 !== void 0 ? _a128 : cursor.marks();
108790
108790
  return !!newMarkType.isInSet(currentMarks) || !currentMarks.some((mark2) => mark2.type.excludes(newMarkType));
108791
108791
  }
108792
108792
  const { ranges } = selection;
@@ -109232,8 +109232,8 @@ var init_dist17 = __esm({
109232
109232
  let textBefore = "";
109233
109233
  const sliceEndPos = $from.parentOffset;
109234
109234
  $from.parent.nodesBetween(Math.max(0, sliceEndPos - maxMatch), sliceEndPos, (node2, pos, parent, index3) => {
109235
- var _a127, _b4;
109236
- const chunk = ((_b4 = (_a127 = node2.type.spec).toText) === null || _b4 === void 0 ? void 0 : _b4.call(_a127, {
109235
+ var _a128, _b4;
109236
+ const chunk = ((_b4 = (_a128 = node2.type.spec).toText) === null || _b4 === void 0 ? void 0 : _b4.call(_a128, {
109237
109237
  node: node2,
109238
109238
  pos,
109239
109239
  parent,
@@ -109397,11 +109397,11 @@ var init_dist17 = __esm({
109397
109397
  __name(run, "run");
109398
109398
  tiptapDragFromOtherEditor = null;
109399
109399
  createClipboardPasteEvent = /* @__PURE__ */ __name((text8) => {
109400
- var _a127;
109400
+ var _a128;
109401
109401
  const event = new ClipboardEvent("paste", {
109402
109402
  clipboardData: new DataTransfer()
109403
109403
  });
109404
- (_a127 = event.clipboardData) === null || _a127 === void 0 ? void 0 : _a127.setData("text/html", text8);
109404
+ (_a128 = event.clipboardData) === null || _a128 === void 0 ? void 0 : _a128.setData("text/html", text8);
109405
109405
  return event;
109406
109406
  }, "createClipboardPasteEvent");
109407
109407
  __name(pasteRulesPlugin, "pasteRulesPlugin");
@@ -109601,7 +109601,7 @@ var init_dist17 = __esm({
109601
109601
  */
109602
109602
  setupExtensions() {
109603
109603
  this.extensions.forEach((extension2) => {
109604
- var _a127;
109604
+ var _a128;
109605
109605
  this.editor.extensionStorage[extension2.name] = extension2.storage;
109606
109606
  const context2 = {
109607
109607
  name: extension2.name,
@@ -109611,7 +109611,7 @@ var init_dist17 = __esm({
109611
109611
  type: getSchemaTypeByName(extension2.name, this.schema)
109612
109612
  };
109613
109613
  if (extension2.type === "mark") {
109614
- const keepOnSplit = (_a127 = callOrReturn(getExtensionField(extension2, "keepOnSplit", context2))) !== null && _a127 !== void 0 ? _a127 : true;
109614
+ const keepOnSplit = (_a128 = callOrReturn(getExtensionField(extension2, "keepOnSplit", context2))) !== null && _a128 !== void 0 ? _a128 : true;
109615
109615
  if (keepOnSplit) {
109616
109616
  this.splittableMarks.push(extension2.name);
109617
109617
  }
@@ -109750,10 +109750,10 @@ var init_dist17 = __esm({
109750
109750
  });
109751
109751
  blur = /* @__PURE__ */ __name(() => ({ editor, view }) => {
109752
109752
  requestAnimationFrame(() => {
109753
- var _a127;
109753
+ var _a128;
109754
109754
  if (!editor.isDestroyed) {
109755
109755
  view.dom.blur();
109756
- (_a127 = window === null || window === void 0 ? void 0 : window.getSelection()) === null || _a127 === void 0 ? void 0 : _a127.removeAllRanges();
109756
+ (_a128 = window === null || window === void 0 ? void 0 : window.getSelection()) === null || _a128 === void 0 ? void 0 : _a128.removeAllRanges();
109757
109757
  }
109758
109758
  });
109759
109759
  return true;
@@ -109954,7 +109954,7 @@ var init_dist17 = __esm({
109954
109954
  return !("type" in nodeOrFragment);
109955
109955
  }, "isFragment");
109956
109956
  insertContentAt = /* @__PURE__ */ __name((position3, value2, options2) => ({ tr: tr3, dispatch, editor }) => {
109957
- var _a127;
109957
+ var _a128;
109958
109958
  if (dispatch) {
109959
109959
  options2 = {
109960
109960
  parseOptions: editor.options.parseOptions,
@@ -109992,7 +109992,7 @@ var init_dist17 = __esm({
109992
109992
  try {
109993
109993
  content3 = createNodeFromContent(value2, editor.schema, {
109994
109994
  parseOptions: parseOptions2,
109995
- errorOnInvalidContent: (_a127 = options2.errorOnInvalidContent) !== null && _a127 !== void 0 ? _a127 : editor.options.enableContentCheck
109995
+ errorOnInvalidContent: (_a128 = options2.errorOnInvalidContent) !== null && _a128 !== void 0 ? _a128 : editor.options.enableContentCheck
109996
109996
  });
109997
109997
  } catch (e10) {
109998
109998
  emitContentError(e10);
@@ -110204,11 +110204,11 @@ var init_dist17 = __esm({
110204
110204
  }, "selectTextblockStart");
110205
110205
  __name(createDocument, "createDocument");
110206
110206
  setContent = /* @__PURE__ */ __name((content3, emitUpdate = false, parseOptions2 = {}, options2 = {}) => ({ editor, tr: tr3, dispatch, commands: commands2 }) => {
110207
- var _a127, _b4;
110207
+ var _a128, _b4;
110208
110208
  const { doc: doc3 } = tr3;
110209
110209
  if (parseOptions2.preserveWhitespace !== "full") {
110210
110210
  const document4 = createDocument(content3, editor.schema, parseOptions2, {
110211
- errorOnInvalidContent: (_a127 = options2.errorOnInvalidContent) !== null && _a127 !== void 0 ? _a127 : editor.options.enableContentCheck
110211
+ errorOnInvalidContent: (_a128 = options2.errorOnInvalidContent) !== null && _a128 !== void 0 ? _a128 : editor.options.enableContentCheck
110212
110212
  });
110213
110213
  if (dispatch) {
110214
110214
  tr3.replaceWith(0, doc3.content.size, document4).setMeta("preventUpdate", !emitUpdate);
@@ -110439,7 +110439,7 @@ var init_dist17 = __esm({
110439
110439
  return can;
110440
110440
  }, "splitBlock");
110441
110441
  splitListItem2 = /* @__PURE__ */ __name((typeOrName, overrideAttrs = {}) => ({ tr: tr3, state: state5, dispatch, editor }) => {
110442
- var _a127;
110442
+ var _a128;
110443
110443
  const type5 = getNodeType(typeOrName, state5.schema);
110444
110444
  const { $from, $to } = state5.selection;
110445
110445
  const node2 = state5.selection.node;
@@ -110466,7 +110466,7 @@ var init_dist17 = __esm({
110466
110466
  ...getSplittedAttributes(extensionAttributes, $from.node().type.name, $from.node().attrs),
110467
110467
  ...overrideAttrs
110468
110468
  };
110469
- const nextType2 = ((_a127 = type5.contentMatch.defaultType) === null || _a127 === void 0 ? void 0 : _a127.createAndFill(newNextTypeAttributes2)) || void 0;
110469
+ const nextType2 = ((_a128 = type5.contentMatch.defaultType) === null || _a128 === void 0 ? void 0 : _a128.createAndFill(newNextTypeAttributes2)) || void 0;
110470
110470
  wrap6 = wrap6.append(Fragment.from(type5.createAndFill(null, nextType2) || void 0));
110471
110471
  const start = $from.before($from.depth - (depthBefore - 1));
110472
110472
  tr3.replace(start, $from.after(-depthAfter), new Slice2(wrap6, 4 - depthBefore, 0));
@@ -110660,7 +110660,7 @@ var init_dist17 = __esm({
110660
110660
  return true;
110661
110661
  }, "unsetAllMarks");
110662
110662
  unsetMark = /* @__PURE__ */ __name((typeOrName, options2 = {}) => ({ tr: tr3, state: state5, dispatch }) => {
110663
- var _a127;
110663
+ var _a128;
110664
110664
  const { extendEmptyMarkRange = false } = options2;
110665
110665
  const { selection } = tr3;
110666
110666
  const type5 = getMarkType(typeOrName, state5.schema);
@@ -110670,7 +110670,7 @@ var init_dist17 = __esm({
110670
110670
  }
110671
110671
  if (empty5 && extendEmptyMarkRange) {
110672
110672
  let { from: from3, to } = selection;
110673
- const attrs = (_a127 = $from.marks().find((mark2) => mark2.type === type5)) === null || _a127 === void 0 ? void 0 : _a127.attrs;
110673
+ const attrs = (_a128 = $from.marks().find((mark2) => mark2.type === type5)) === null || _a128 === void 0 ? void 0 : _a128.attrs;
110674
110674
  const range2 = getMarkRange($from, type5, attrs);
110675
110675
  if (range2) {
110676
110676
  from3 = range2.from;
@@ -111083,8 +111083,8 @@ var init_dist17 = __esm({
111083
111083
  return this.editor.view.domAtPos(this.pos).node;
111084
111084
  }
111085
111085
  get depth() {
111086
- var _a127;
111087
- return (_a127 = this.actualDepth) !== null && _a127 !== void 0 ? _a127 : this.resolvedPos.depth;
111086
+ var _a128;
111087
+ return (_a128 = this.actualDepth) !== null && _a128 !== void 0 ? _a128 : this.resolvedPos.depth;
111088
111088
  }
111089
111089
  get pos() {
111090
111090
  return this.resolvedPos.pos;
@@ -111496,11 +111496,11 @@ img.ProseMirror-separator {
111496
111496
  * Creates an extension manager.
111497
111497
  */
111498
111498
  createExtensionManager() {
111499
- var _a127, _b4;
111499
+ var _a128, _b4;
111500
111500
  const coreExtensions = this.options.enableCoreExtensions ? [
111501
111501
  Editable,
111502
111502
  ClipboardTextSerializer.configure({
111503
- blockSeparator: (_b4 = (_a127 = this.options.coreExtensionOptions) === null || _a127 === void 0 ? void 0 : _a127.clipboardTextSerializer) === null || _b4 === void 0 ? void 0 : _b4.blockSeparator
111503
+ blockSeparator: (_b4 = (_a128 = this.options.coreExtensionOptions) === null || _a128 === void 0 ? void 0 : _a128.clipboardTextSerializer) === null || _b4 === void 0 ? void 0 : _b4.blockSeparator
111504
111504
  }),
111505
111505
  Commands,
111506
111506
  FocusEvents,
@@ -111537,7 +111537,7 @@ img.ProseMirror-separator {
111537
111537
  * Creates a ProseMirror view.
111538
111538
  */
111539
111539
  createView() {
111540
- var _a127;
111540
+ var _a128;
111541
111541
  let doc3;
111542
111542
  try {
111543
111543
  doc3 = createDocument(this.options.content, this.schema, this.options.parseOptions, { errorOnInvalidContent: this.options.enableContentCheck });
@@ -111564,7 +111564,7 @@ img.ProseMirror-separator {
111564
111564
  attributes: {
111565
111565
  // add `role="textbox"` to the editor element
111566
111566
  role: "textbox",
111567
- ...(_a127 = this.options.editorProps) === null || _a127 === void 0 ? void 0 : _a127.attributes
111567
+ ...(_a128 = this.options.editorProps) === null || _a128 === void 0 ? void 0 : _a128.attributes
111568
111568
  },
111569
111569
  dispatchTransaction: this.dispatchTransaction.bind(this),
111570
111570
  state: EditorState.create({
@@ -111621,8 +111621,8 @@ img.ProseMirror-separator {
111621
111621
  return;
111622
111622
  }
111623
111623
  transaction.steps.forEach((step) => {
111624
- var _a127;
111625
- return (_a127 = this.capturedTransaction) === null || _a127 === void 0 ? void 0 : _a127.step(step);
111624
+ var _a128;
111625
+ return (_a128 = this.capturedTransaction) === null || _a128 === void 0 ? void 0 : _a128.step(step);
111626
111626
  });
111627
111627
  return;
111628
111628
  }
@@ -111737,16 +111737,16 @@ img.ProseMirror-separator {
111737
111737
  * Check if the editor is already destroyed.
111738
111738
  */
111739
111739
  get isDestroyed() {
111740
- var _a127;
111741
- return !((_a127 = this.view) === null || _a127 === void 0 ? void 0 : _a127.docView);
111740
+ var _a128;
111741
+ return !((_a128 = this.view) === null || _a128 === void 0 ? void 0 : _a128.docView);
111742
111742
  }
111743
111743
  $node(selector, attributes) {
111744
- var _a127;
111745
- return ((_a127 = this.$doc) === null || _a127 === void 0 ? void 0 : _a127.querySelector(selector, attributes)) || null;
111744
+ var _a128;
111745
+ return ((_a128 = this.$doc) === null || _a128 === void 0 ? void 0 : _a128.querySelector(selector, attributes)) || null;
111746
111746
  }
111747
111747
  $nodes(selector, attributes) {
111748
- var _a127;
111749
- return ((_a127 = this.$doc) === null || _a127 === void 0 ? void 0 : _a127.querySelectorAll(selector, attributes)) || null;
111748
+ var _a128;
111749
+ return ((_a128 = this.$doc) === null || _a128 === void 0 ? void 0 : _a128.querySelectorAll(selector, attributes)) || null;
111750
111750
  }
111751
111751
  $pos(pos) {
111752
111752
  const $pos = this.state.doc.resolve(pos);
@@ -111857,10 +111857,10 @@ img.ProseMirror-separator {
111857
111857
  return null;
111858
111858
  }
111859
111859
  onDragStart(event) {
111860
- var _a127, _b4, _c3, _d2, _e, _f, _g;
111860
+ var _a128, _b4, _c3, _d2, _e, _f, _g;
111861
111861
  const { view } = this.editor;
111862
111862
  const target = event.target;
111863
- const dragHandle = target.nodeType === 3 ? (_a127 = target.parentElement) === null || _a127 === void 0 ? void 0 : _a127.closest("[data-drag-handle]") : target.closest("[data-drag-handle]");
111863
+ const dragHandle = target.nodeType === 3 ? (_a128 = target.parentElement) === null || _a128 === void 0 ? void 0 : _a128.closest("[data-drag-handle]") : target.closest("[data-drag-handle]");
111864
111864
  if (!this.dom || ((_b4 = this.contentDOM) === null || _b4 === void 0 ? void 0 : _b4.contains(target)) || !dragHandle) {
111865
111865
  return;
111866
111866
  }
@@ -111885,7 +111885,7 @@ img.ProseMirror-separator {
111885
111885
  view.dispatch(transaction);
111886
111886
  }
111887
111887
  stopEvent(event) {
111888
- var _a127;
111888
+ var _a128;
111889
111889
  if (!this.dom) {
111890
111890
  return false;
111891
111891
  }
@@ -111893,7 +111893,7 @@ img.ProseMirror-separator {
111893
111893
  return this.options.stopEvent({ event });
111894
111894
  }
111895
111895
  const target = event.target;
111896
- const isInElement = this.dom.contains(target) && !((_a127 = this.contentDOM) === null || _a127 === void 0 ? void 0 : _a127.contains(target));
111896
+ const isInElement = this.dom.contains(target) && !((_a128 = this.contentDOM) === null || _a128 === void 0 ? void 0 : _a128.contains(target));
111897
111897
  if (!isInElement) {
111898
111898
  return false;
111899
111899
  }
@@ -112335,9 +112335,9 @@ var init_dist22 = __esm({
112335
112335
  language: {
112336
112336
  default: this.options.defaultLanguage,
112337
112337
  parseHTML: /* @__PURE__ */ __name((element4) => {
112338
- var _a127;
112338
+ var _a128;
112339
112339
  const { languageClassPrefix } = this.options;
112340
- const classNames = [...((_a127 = element4.firstElementChild) === null || _a127 === void 0 ? void 0 : _a127.classList) || []];
112340
+ const classNames = [...((_a128 = element4.firstElementChild) === null || _a128 === void 0 ? void 0 : _a128.classList) || []];
112341
112341
  const languages = classNames.filter((className) => className.startsWith(languageClassPrefix)).map((className) => className.replace(languageClassPrefix, ""));
112342
112342
  const language = languages[0];
112343
112343
  if (!language) {
@@ -112535,12 +112535,12 @@ var init_dist24 = __esm({
112535
112535
  __name(this, "DropCursorView");
112536
112536
  }
112537
112537
  constructor(editorView, options2) {
112538
- var _a127;
112538
+ var _a128;
112539
112539
  this.editorView = editorView;
112540
112540
  this.cursorPos = null;
112541
112541
  this.element = null;
112542
112542
  this.timeout = -1;
112543
- this.width = (_a127 = options2.width) !== null && _a127 !== void 0 ? _a127 : 1;
112543
+ this.width = (_a128 = options2.width) !== null && _a128 !== void 0 ? _a128 : 1;
112544
112544
  this.color = options2.color === false ? void 0 : options2.color || "black";
112545
112545
  this.class = options2.class;
112546
112546
  this.handlers = ["dragover", "dragend", "drop", "dragleave"].map((name) => {
@@ -112949,14 +112949,14 @@ var init_dist29 = __esm({
112949
112949
  ];
112950
112950
  },
112951
112951
  extendNodeSchema(extension2) {
112952
- var _a127;
112952
+ var _a128;
112953
112953
  const context2 = {
112954
112954
  name: extension2.name,
112955
112955
  options: extension2.options,
112956
112956
  storage: extension2.storage
112957
112957
  };
112958
112958
  return {
112959
- allowGapCursor: (_a127 = callOrReturn(getExtensionField(extension2, "allowGapCursor", context2))) !== null && _a127 !== void 0 ? _a127 : null
112959
+ allowGapCursor: (_a128 = callOrReturn(getExtensionField(extension2, "allowGapCursor", context2))) !== null && _a128 !== void 0 ? _a128 : null
112960
112960
  };
112961
112961
  }
112962
112962
  });
@@ -113780,7 +113780,7 @@ var init_dist36 = __esm({
113780
113780
  currentChain.insertContent({ type: this.name });
113781
113781
  }
113782
113782
  return currentChain.command(({ tr: tr3, dispatch }) => {
113783
- var _a127;
113783
+ var _a128;
113784
113784
  if (dispatch) {
113785
113785
  const { $to } = tr3.selection;
113786
113786
  const posAfter = $to.end();
@@ -113793,7 +113793,7 @@ var init_dist36 = __esm({
113793
113793
  tr3.setSelection(TextSelection.create(tr3.doc, $to.pos));
113794
113794
  }
113795
113795
  } else {
113796
- const node2 = (_a127 = $to.parent.type.contentMatch.defaultType) === null || _a127 === void 0 ? void 0 : _a127.create();
113796
+ const node2 = (_a128 = $to.parent.type.contentMatch.defaultType) === null || _a128 === void 0 ? void 0 : _a128.create();
113797
113797
  if (node2) {
113798
113798
  tr3.insert(posAfter, node2);
113799
113799
  tr3.setSelection(TextSelection.create(tr3.doc, posAfter + 1));
@@ -115703,7 +115703,7 @@ function clickHandler(options2) {
115703
115703
  key: new PluginKey("handleClickLink"),
115704
115704
  props: {
115705
115705
  handleClick: /* @__PURE__ */ __name((view, pos, event) => {
115706
- var _a127, _b4;
115706
+ var _a128, _b4;
115707
115707
  if (event.button !== 0) {
115708
115708
  return false;
115709
115709
  }
@@ -115721,7 +115721,7 @@ function clickHandler(options2) {
115721
115721
  }
115722
115722
  const attrs = getAttributes(view.state, options2.type.name);
115723
115723
  const link3 = event.target;
115724
- const href = (_a127 = link3 === null || link3 === void 0 ? void 0 : link3.href) !== null && _a127 !== void 0 ? _a127 : attrs.href;
115724
+ const href = (_a128 = link3 === null || link3 === void 0 ? void 0 : link3.href) !== null && _a128 !== void 0 ? _a128 : attrs.href;
115725
115725
  const target = (_b4 = link3 === null || link3 === void 0 ? void 0 : link3.target) !== null && _b4 !== void 0 ? _b4 : attrs.target;
115726
115726
  if (link3 && href) {
115727
115727
  window.open(href, target);
@@ -115948,9 +115948,9 @@ var init_dist46 = __esm({
115948
115948
  }, "find"),
115949
115949
  type: this.type,
115950
115950
  getAttributes: /* @__PURE__ */ __name((match2) => {
115951
- var _a127;
115951
+ var _a128;
115952
115952
  return {
115953
- href: (_a127 = match2.data) === null || _a127 === void 0 ? void 0 : _a127.href
115953
+ href: (_a128 = match2.data) === null || _a128 === void 0 ? void 0 : _a128.href
115954
115954
  };
115955
115955
  }, "getAttributes")
115956
115956
  })
@@ -118963,7 +118963,7 @@ var dees_workspace_terminal_exports = {};
118963
118963
  __export(dees_workspace_terminal_exports, {
118964
118964
  DeesWorkspaceTerminal: () => DeesWorkspaceTerminal
118965
118965
  });
118966
- var _activeTabId_dec, _tabs_dec6, _showTabBar_dec, _tabBarWidth_dec, _environmentVariables_dec, _setupCommand_dec, _executionEnvironment_dec, _a112, _DeesWorkspaceTerminal_decorators, _init113, _executionEnvironment, _setupCommand, _environmentVariables, _tabBarWidth, _showTabBar, _tabs6, _activeTabId, _DeesWorkspaceTerminal, DeesWorkspaceTerminal;
118966
+ var _activeTabId_dec, _tabs_dec6, _showTabBar_dec, _tabBarWidth_dec, _environmentVariables_dec, _setupCommand_dec, _executionEnvironment_dec, _a113, _DeesWorkspaceTerminal_decorators, _init114, _executionEnvironment, _setupCommand, _environmentVariables, _tabBarWidth, _showTabBar, _tabs6, _activeTabId, _DeesWorkspaceTerminal, DeesWorkspaceTerminal;
118967
118967
  var init_dees_workspace_terminal = __esm({
118968
118968
  "ts_web/elements/00group-workspace/dees-workspace-terminal/dees-workspace-terminal.ts"() {
118969
118969
  init_dist_ts25();
@@ -118975,19 +118975,19 @@ var init_dees_workspace_terminal = __esm({
118975
118975
  init_terminal_tab_manager();
118976
118976
  init_services();
118977
118977
  _DeesWorkspaceTerminal_decorators = [customElement("dees-workspace-terminal")];
118978
- _DeesWorkspaceTerminal = class _DeesWorkspaceTerminal extends (_a112 = DeesElement, _executionEnvironment_dec = [n5({ type: Object })], _setupCommand_dec = [n5()], _environmentVariables_dec = [n5()], _tabBarWidth_dec = [n5({ type: Number })], _showTabBar_dec = [n5({ type: Boolean })], _tabs_dec6 = [r5()], _activeTabId_dec = [r5()], _a112) {
118978
+ _DeesWorkspaceTerminal = class _DeesWorkspaceTerminal extends (_a113 = DeesElement, _executionEnvironment_dec = [n5({ type: Object })], _setupCommand_dec = [n5()], _environmentVariables_dec = [n5()], _tabBarWidth_dec = [n5({ type: Number })], _showTabBar_dec = [n5({ type: Boolean })], _tabs_dec6 = [r5()], _activeTabId_dec = [r5()], _a113) {
118979
118979
  constructor() {
118980
118980
  super();
118981
118981
  // INSTANCE
118982
118982
  __publicField(this, "resizeObserver");
118983
118983
  __publicField(this, "tabManager");
118984
- __privateAdd(this, _executionEnvironment, __runInitializers(_init113, 8, this, null)), __runInitializers(_init113, 11, this);
118985
- __privateAdd(this, _setupCommand, __runInitializers(_init113, 12, this, "")), __runInitializers(_init113, 15, this);
118986
- __privateAdd(this, _environmentVariables, __runInitializers(_init113, 16, this, {})), __runInitializers(_init113, 19, this);
118987
- __privateAdd(this, _tabBarWidth, __runInitializers(_init113, 20, this, 160)), __runInitializers(_init113, 23, this);
118988
- __privateAdd(this, _showTabBar, __runInitializers(_init113, 24, this, true)), __runInitializers(_init113, 27, this);
118989
- __privateAdd(this, _tabs6, __runInitializers(_init113, 28, this, [])), __runInitializers(_init113, 31, this);
118990
- __privateAdd(this, _activeTabId, __runInitializers(_init113, 32, this, null)), __runInitializers(_init113, 35, this);
118984
+ __privateAdd(this, _executionEnvironment, __runInitializers(_init114, 8, this, null)), __runInitializers(_init114, 11, this);
118985
+ __privateAdd(this, _setupCommand, __runInitializers(_init114, 12, this, "")), __runInitializers(_init114, 15, this);
118986
+ __privateAdd(this, _environmentVariables, __runInitializers(_init114, 16, this, {})), __runInitializers(_init114, 19, this);
118987
+ __privateAdd(this, _tabBarWidth, __runInitializers(_init114, 20, this, 160)), __runInitializers(_init114, 23, this);
118988
+ __privateAdd(this, _showTabBar, __runInitializers(_init114, 24, this, true)), __runInitializers(_init114, 27, this);
118989
+ __privateAdd(this, _tabs6, __runInitializers(_init114, 28, this, [])), __runInitializers(_init114, 31, this);
118990
+ __privateAdd(this, _activeTabId, __runInitializers(_init114, 32, this, null)), __runInitializers(_init114, 35, this);
118991
118991
  // Theme subscription for dynamic theme updates
118992
118992
  __publicField(this, "terminalThemeSubscription", null);
118993
118993
  __publicField(this, "isBright", false);
@@ -119484,7 +119484,7 @@ var init_dees_workspace_terminal = __esm({
119484
119484
  return this.executionEnvironment;
119485
119485
  }
119486
119486
  };
119487
- _init113 = __decoratorStart(_a112);
119487
+ _init114 = __decoratorStart(_a113);
119488
119488
  _executionEnvironment = new WeakMap();
119489
119489
  _setupCommand = new WeakMap();
119490
119490
  _environmentVariables = new WeakMap();
@@ -119492,14 +119492,14 @@ var init_dees_workspace_terminal = __esm({
119492
119492
  _showTabBar = new WeakMap();
119493
119493
  _tabs6 = new WeakMap();
119494
119494
  _activeTabId = new WeakMap();
119495
- __decorateElement(_init113, 4, "executionEnvironment", _executionEnvironment_dec, _DeesWorkspaceTerminal, _executionEnvironment);
119496
- __decorateElement(_init113, 4, "setupCommand", _setupCommand_dec, _DeesWorkspaceTerminal, _setupCommand);
119497
- __decorateElement(_init113, 4, "environmentVariables", _environmentVariables_dec, _DeesWorkspaceTerminal, _environmentVariables);
119498
- __decorateElement(_init113, 4, "tabBarWidth", _tabBarWidth_dec, _DeesWorkspaceTerminal, _tabBarWidth);
119499
- __decorateElement(_init113, 4, "showTabBar", _showTabBar_dec, _DeesWorkspaceTerminal, _showTabBar);
119500
- __decorateElement(_init113, 4, "tabs", _tabs_dec6, _DeesWorkspaceTerminal, _tabs6);
119501
- __decorateElement(_init113, 4, "activeTabId", _activeTabId_dec, _DeesWorkspaceTerminal, _activeTabId);
119502
- _DeesWorkspaceTerminal = __decorateElement(_init113, 0, "DeesWorkspaceTerminal", _DeesWorkspaceTerminal_decorators, _DeesWorkspaceTerminal);
119495
+ __decorateElement(_init114, 4, "executionEnvironment", _executionEnvironment_dec, _DeesWorkspaceTerminal, _executionEnvironment);
119496
+ __decorateElement(_init114, 4, "setupCommand", _setupCommand_dec, _DeesWorkspaceTerminal, _setupCommand);
119497
+ __decorateElement(_init114, 4, "environmentVariables", _environmentVariables_dec, _DeesWorkspaceTerminal, _environmentVariables);
119498
+ __decorateElement(_init114, 4, "tabBarWidth", _tabBarWidth_dec, _DeesWorkspaceTerminal, _tabBarWidth);
119499
+ __decorateElement(_init114, 4, "showTabBar", _showTabBar_dec, _DeesWorkspaceTerminal, _showTabBar);
119500
+ __decorateElement(_init114, 4, "tabs", _tabs_dec6, _DeesWorkspaceTerminal, _tabs6);
119501
+ __decorateElement(_init114, 4, "activeTabId", _activeTabId_dec, _DeesWorkspaceTerminal, _activeTabId);
119502
+ _DeesWorkspaceTerminal = __decorateElement(_init114, 0, "DeesWorkspaceTerminal", _DeesWorkspaceTerminal_decorators, _DeesWorkspaceTerminal);
119503
119503
  __name(_DeesWorkspaceTerminal, "DeesWorkspaceTerminal");
119504
119504
  __publicField(_DeesWorkspaceTerminal, "demo", /* @__PURE__ */ __name(() => {
119505
119505
  const env2 = new WebContainerEnvironment();
@@ -119838,7 +119838,7 @@ var init_dees_workspace_terminal = __esm({
119838
119838
  }
119839
119839
  `
119840
119840
  ]);
119841
- __runInitializers(_init113, 1, _DeesWorkspaceTerminal);
119841
+ __runInitializers(_init114, 1, _DeesWorkspaceTerminal);
119842
119842
  DeesWorkspaceTerminal = _DeesWorkspaceTerminal;
119843
119843
  }
119844
119844
  });
@@ -176423,16 +176423,38 @@ var demoFunc63 = /* @__PURE__ */ __name(() => b2`
176423
176423
  init_dist_ts25();
176424
176424
  init_theme();
176425
176425
  init_dees_icon();
176426
- var _search_dec, _emptyText_dec2, _loading_dec4, _selectedSessionId_dec, _sessions_dec, _a88, _DeesHarnessSessionList_decorators, _init89, _sessions, _selectedSessionId, _loading4, _emptyText2, _search;
176426
+ var _collapsedGroupIds_dec, _dropSlot_dec, _draggingSessionId_dec, _search_dec, _enableGrouping_dec, _groups_dec2, _emptyText_dec2, _loading_dec4, _selectedSessionId_dec, _sessions_dec, _a88, _DeesHarnessSessionList_decorators, _init89, _sessions, _selectedSessionId, _loading4, _emptyText2, _groups2, _enableGrouping, _search, _draggingSessionId, _dropSlot, _collapsedGroupIds;
176427
176427
  _DeesHarnessSessionList_decorators = [customElement("dees-harness-session-list")];
176428
- var _DeesHarnessSessionList = class _DeesHarnessSessionList extends (_a88 = DeesElement, _sessions_dec = [n5({ attribute: false })], _selectedSessionId_dec = [n5()], _loading_dec4 = [n5({ type: Boolean })], _emptyText_dec2 = [n5()], _search_dec = [r5()], _a88) {
176428
+ var _DeesHarnessSessionList = class _DeesHarnessSessionList extends (_a88 = DeesElement, _sessions_dec = [n5({ attribute: false })], _selectedSessionId_dec = [n5()], _loading_dec4 = [n5({ type: Boolean })], _emptyText_dec2 = [n5()], _groups_dec2 = [n5({ attribute: false })], _enableGrouping_dec = [n5({ type: Boolean })], _search_dec = [r5()], _draggingSessionId_dec = [r5()], _dropSlot_dec = [r5()], _collapsedGroupIds_dec = [r5()], _a88) {
176429
176429
  constructor() {
176430
176430
  super(...arguments);
176431
176431
  __privateAdd(this, _sessions, __runInitializers(_init89, 8, this, [])), __runInitializers(_init89, 11, this);
176432
176432
  __privateAdd(this, _selectedSessionId, __runInitializers(_init89, 12, this, "")), __runInitializers(_init89, 15, this);
176433
176433
  __privateAdd(this, _loading4, __runInitializers(_init89, 16, this, false)), __runInitializers(_init89, 19, this);
176434
176434
  __privateAdd(this, _emptyText2, __runInitializers(_init89, 20, this, "No conversations yet.")), __runInitializers(_init89, 23, this);
176435
- __privateAdd(this, _search, __runInitializers(_init89, 24, this, "")), __runInitializers(_init89, 27, this);
176435
+ __privateAdd(this, _groups2, __runInitializers(_init89, 24, this, [])), __runInitializers(_init89, 27, this);
176436
+ __privateAdd(this, _enableGrouping, __runInitializers(_init89, 28, this, false)), __runInitializers(_init89, 31, this);
176437
+ __privateAdd(this, _search, __runInitializers(_init89, 32, this, "")), __runInitializers(_init89, 35, this);
176438
+ __privateAdd(this, _draggingSessionId, __runInitializers(_init89, 36, this, "")), __runInitializers(_init89, 39, this);
176439
+ __privateAdd(this, _dropSlot, __runInitializers(_init89, 40, this)), __runInitializers(_init89, 43, this);
176440
+ __privateAdd(this, _collapsedGroupIds, __runInitializers(_init89, 44, this, /* @__PURE__ */ new Set())), __runInitializers(_init89, 47, this);
176441
+ }
176442
+ get sessionsById() {
176443
+ return new Map(this.sessions.map((session) => [session.id, session]));
176444
+ }
176445
+ get groupedSessionIds() {
176446
+ const ids = /* @__PURE__ */ new Set();
176447
+ for (const group of this.groups) {
176448
+ for (const id of group.sessionIds) ids.add(id);
176449
+ }
176450
+ return ids;
176451
+ }
176452
+ /** Ungrouped sessions, most recent first. */
176453
+ get ungroupedSessions() {
176454
+ const grouped = this.groupedSessionIds;
176455
+ return [...this.sessions].filter((session) => !grouped.has(session.id)).sort(
176456
+ (left, right) => (right.updatedAt ?? right.createdAt ?? 0) - (left.updatedAt ?? left.createdAt ?? 0)
176457
+ );
176436
176458
  }
176437
176459
  get filteredSessions() {
176438
176460
  const query3 = this.search.trim().toLowerCase();
@@ -176448,7 +176470,7 @@ var _DeesHarnessSessionList = class _DeesHarnessSessionList extends (_a88 = Dees
176448
176470
  this.shadowRoot?.querySelector(".searchRow input")?.focus();
176449
176471
  }
176450
176472
  render() {
176451
- const sessions = this.filteredSessions;
176473
+ const groupingActive = this.enableGrouping && !this.search.trim();
176452
176474
  return b2`
176453
176475
  <div class="searchRow">
176454
176476
  <input
@@ -176460,15 +176482,110 @@ var _DeesHarnessSessionList = class _DeesHarnessSessionList extends (_a88 = Dees
176460
176482
  />
176461
176483
  </div>
176462
176484
  <div class="list">
176463
- ${this.loading ? b2`<div class="emptyNote">Loading conversations…</div>` : sessions.length ? sessions.map((session) => this.renderItem(session)) : b2`<div class="emptyNote">${this.sessions.length ? "No conversations match this search." : this.emptyText}</div>`}
176485
+ ${this.loading ? b2`<div class="emptyNote">Loading conversations…</div>` : groupingActive ? this.renderGroupedList() : this.renderFlatList()}
176464
176486
  </div>
176487
+ ${groupingActive ? b2`
176488
+ <div class="newGroupRow">
176489
+ <button
176490
+ class="newGroupButton"
176491
+ type="button"
176492
+ @click=${() => {
176493
+ this.dispatchEvent(
176494
+ new CustomEvent("harness-group-create-request", {
176495
+ bubbles: true,
176496
+ composed: true
176497
+ })
176498
+ );
176499
+ }}
176500
+ >
176501
+ <dees-icon icon="lucide:FolderPlus" iconSize="13"></dees-icon>
176502
+ New group
176503
+ </button>
176504
+ </div>
176505
+ ` : ""}
176465
176506
  `;
176466
176507
  }
176467
- renderItem(session) {
176508
+ renderFlatList() {
176509
+ const sessions = this.filteredSessions;
176510
+ if (!sessions.length) {
176511
+ return b2`<div class="emptyNote">
176512
+ ${this.sessions.length ? "No conversations match this search." : this.emptyText}
176513
+ </div>`;
176514
+ }
176515
+ return b2`${sessions.map((session) => this.renderItem(session, null, -1))}`;
176516
+ }
176517
+ renderGroupedList() {
176518
+ const byId = this.sessionsById;
176519
+ const ungrouped = this.ungroupedSessions;
176520
+ if (!this.sessions.length && !this.groups.length) {
176521
+ return b2`<div class="emptyNote">${this.emptyText}</div>`;
176522
+ }
176523
+ return b2`
176524
+ ${this.groups.map((group) => {
176525
+ const members = group.sessionIds.map((id) => byId.get(id)).filter((session) => session !== void 0);
176526
+ const collapsed = this.collapsedGroupIds.has(group.id);
176527
+ const isHeaderDrop = this.dropSlot?.groupId === group.id && this.dropSlot.index === members.length && collapsed;
176528
+ return b2`
176529
+ <button
176530
+ class="groupHeader ${collapsed ? "collapsed" : ""} ${isHeaderDrop ? "dropTarget" : ""}"
176531
+ type="button"
176532
+ @click=${() => this.toggleGroupCollapsed(group.id)}
176533
+ @contextmenu=${(event) => {
176534
+ event.preventDefault();
176535
+ const detail = {
176536
+ group,
176537
+ clientX: event.clientX,
176538
+ clientY: event.clientY,
176539
+ originalEvent: event
176540
+ };
176541
+ this.dispatchEvent(
176542
+ new CustomEvent("harness-group-context", { detail, bubbles: true, composed: true })
176543
+ );
176544
+ }}
176545
+ @dragover=${(event) => this.handleDragOverSlot(event, group.id, members.length)}
176546
+ @drop=${(event) => this.handleDrop(event, group.id, members.length)}
176547
+ >
176548
+ <dees-icon class="chevron" icon="lucide:ChevronDown" iconSize="12"></dees-icon>
176549
+ <span>${group.name}</span>
176550
+ <span class="groupCount">${members.length}</span>
176551
+ </button>
176552
+ ${collapsed ? "" : this.renderSection(members, group.id)}
176553
+ `;
176554
+ })}
176555
+ ${this.groups.length && ungrouped.length ? b2`
176556
+ <button
176557
+ class="groupHeader"
176558
+ type="button"
176559
+ tabindex="-1"
176560
+ @dragover=${(event) => this.handleDragOverSlot(event, null, 0)}
176561
+ @drop=${(event) => this.handleDrop(event, null, 0)}
176562
+ >
176563
+ <span>Ungrouped</span>
176564
+ <span class="groupCount">${ungrouped.length}</span>
176565
+ </button>
176566
+ ` : ""}
176567
+ ${this.renderSection(ungrouped, null)}
176568
+ `;
176569
+ }
176570
+ renderSection(sessions, groupId) {
176571
+ const slot = this.dropSlot;
176572
+ return b2`
176573
+ ${sessions.map(
176574
+ (session, index3) => b2`
176575
+ ${slot && slot.groupId === groupId && slot.index === index3 ? b2`<div class="dropLine"></div>` : ""}
176576
+ ${this.renderItem(session, groupId, index3)}
176577
+ `
176578
+ )}
176579
+ ${slot && slot.groupId === groupId && slot.index === sessions.length ? b2`<div class="dropLine"></div>` : ""}
176580
+ `;
176581
+ }
176582
+ renderItem(session, groupId, index3) {
176583
+ const draggable = this.enableGrouping && index3 >= 0;
176468
176584
  return b2`
176469
176585
  <button
176470
- class="item ${session.id === this.selectedSessionId ? "selected" : ""}"
176586
+ class="item ${session.id === this.selectedSessionId ? "selected" : ""} ${this.draggingSessionId === session.id ? "dragging" : ""}"
176471
176587
  type="button"
176588
+ draggable=${draggable ? "true" : "false"}
176472
176589
  @click=${() => this.emit("harness-session-select", session)}
176473
176590
  @dblclick=${() => this.emit("harness-session-open", session)}
176474
176591
  @keydown=${(event) => {
@@ -176485,9 +176602,33 @@ var _DeesHarnessSessionList = class _DeesHarnessSessionList extends (_a88 = Dees
176485
176602
  this.dispatchEvent(
176486
176603
  new CustomEvent("harness-session-context", { detail, bubbles: true, composed: true })
176487
176604
  );
176605
+ }}
176606
+ @dragstart=${(event) => {
176607
+ if (!draggable) return;
176608
+ this.draggingSessionId = session.id;
176609
+ event.dataTransfer?.setData("text/plain", session.id);
176610
+ if (event.dataTransfer) event.dataTransfer.effectAllowed = "move";
176611
+ }}
176612
+ @dragend=${() => {
176613
+ this.draggingSessionId = "";
176614
+ this.dropSlot = void 0;
176615
+ }}
176616
+ @dragover=${(event) => {
176617
+ if (!this.draggingSessionId || index3 < 0) return;
176618
+ event.preventDefault();
176619
+ const rect = event.currentTarget.getBoundingClientRect();
176620
+ const before = event.clientY < rect.top + rect.height / 2;
176621
+ this.setDropSlot(groupId, before ? index3 : index3 + 1);
176622
+ }}
176623
+ @drop=${(event) => {
176624
+ if (index3 < 0) return;
176625
+ const rect = event.currentTarget.getBoundingClientRect();
176626
+ const before = event.clientY < rect.top + rect.height / 2;
176627
+ this.handleDrop(event, groupId, before ? index3 : index3 + 1);
176488
176628
  }}
176489
176629
  >
176490
176630
  <span class="itemTitle">
176631
+ ${session.icon ? b2`<dees-icon class="itemIcon" icon=${session.icon} iconSize="12"></dees-icon>` : ""}
176491
176632
  <span class="titleText">${session.title || session.id}</span>
176492
176633
  <span class="itemTime">${harnessFormatRelativeTime(session.updatedAt ?? session.createdAt)}</span>
176493
176634
  </span>
@@ -176495,6 +176636,41 @@ var _DeesHarnessSessionList = class _DeesHarnessSessionList extends (_a88 = Dees
176495
176636
  </button>
176496
176637
  `;
176497
176638
  }
176639
+ toggleGroupCollapsed(groupIdArg) {
176640
+ const next2 = new Set(this.collapsedGroupIds);
176641
+ if (next2.has(groupIdArg)) {
176642
+ next2.delete(groupIdArg);
176643
+ } else {
176644
+ next2.add(groupIdArg);
176645
+ }
176646
+ this.collapsedGroupIds = next2;
176647
+ }
176648
+ setDropSlot(groupIdArg, indexArg) {
176649
+ const current = this.dropSlot;
176650
+ if (current && current.groupId === groupIdArg && current.index === indexArg) return;
176651
+ this.dropSlot = { groupId: groupIdArg, index: indexArg };
176652
+ }
176653
+ handleDragOverSlot(event, groupIdArg, indexArg) {
176654
+ if (!this.draggingSessionId) return;
176655
+ event.preventDefault();
176656
+ this.setDropSlot(groupIdArg, indexArg);
176657
+ }
176658
+ handleDrop(event, groupIdArg, indexArg) {
176659
+ event.preventDefault();
176660
+ event.stopPropagation();
176661
+ const sessionId = this.draggingSessionId || event.dataTransfer?.getData("text/plain") || "";
176662
+ this.draggingSessionId = "";
176663
+ this.dropSlot = void 0;
176664
+ if (!sessionId) return;
176665
+ const detail = {
176666
+ sessionId,
176667
+ groupId: groupIdArg,
176668
+ index: Math.max(0, indexArg)
176669
+ };
176670
+ this.dispatchEvent(
176671
+ new CustomEvent("harness-session-move", { detail, bubbles: true, composed: true })
176672
+ );
176673
+ }
176498
176674
  emit(name, session) {
176499
176675
  this.dispatchEvent(new CustomEvent(name, { detail: { session }, bubbles: true, composed: true }));
176500
176676
  }
@@ -176504,12 +176680,22 @@ _sessions = new WeakMap();
176504
176680
  _selectedSessionId = new WeakMap();
176505
176681
  _loading4 = new WeakMap();
176506
176682
  _emptyText2 = new WeakMap();
176683
+ _groups2 = new WeakMap();
176684
+ _enableGrouping = new WeakMap();
176507
176685
  _search = new WeakMap();
176686
+ _draggingSessionId = new WeakMap();
176687
+ _dropSlot = new WeakMap();
176688
+ _collapsedGroupIds = new WeakMap();
176508
176689
  __decorateElement(_init89, 4, "sessions", _sessions_dec, _DeesHarnessSessionList, _sessions);
176509
176690
  __decorateElement(_init89, 4, "selectedSessionId", _selectedSessionId_dec, _DeesHarnessSessionList, _selectedSessionId);
176510
176691
  __decorateElement(_init89, 4, "loading", _loading_dec4, _DeesHarnessSessionList, _loading4);
176511
176692
  __decorateElement(_init89, 4, "emptyText", _emptyText_dec2, _DeesHarnessSessionList, _emptyText2);
176693
+ __decorateElement(_init89, 4, "groups", _groups_dec2, _DeesHarnessSessionList, _groups2);
176694
+ __decorateElement(_init89, 4, "enableGrouping", _enableGrouping_dec, _DeesHarnessSessionList, _enableGrouping);
176512
176695
  __decorateElement(_init89, 4, "search", _search_dec, _DeesHarnessSessionList, _search);
176696
+ __decorateElement(_init89, 4, "draggingSessionId", _draggingSessionId_dec, _DeesHarnessSessionList, _draggingSessionId);
176697
+ __decorateElement(_init89, 4, "dropSlot", _dropSlot_dec, _DeesHarnessSessionList, _dropSlot);
176698
+ __decorateElement(_init89, 4, "collapsedGroupIds", _collapsedGroupIds_dec, _DeesHarnessSessionList, _collapsedGroupIds);
176513
176699
  _DeesHarnessSessionList = __decorateElement(_init89, 0, "DeesHarnessSessionList", _DeesHarnessSessionList_decorators, _DeesHarnessSessionList);
176514
176700
  __name(_DeesHarnessSessionList, "DeesHarnessSessionList");
176515
176701
  __publicField(_DeesHarnessSessionList, "demo", demoFunc63);
@@ -176586,6 +176772,10 @@ __publicField(_DeesHarnessSessionList, "styles", [
176586
176772
  box-shadow: inset 2px 0 0 var(--dees-color-accent-primary);
176587
176773
  }
176588
176774
 
176775
+ .item.dragging {
176776
+ opacity: 0.4;
176777
+ }
176778
+
176589
176779
  .itemTitle {
176590
176780
  display: flex;
176591
176781
  align-items: baseline;
@@ -176601,6 +176791,12 @@ __publicField(_DeesHarnessSessionList, "styles", [
176601
176791
  white-space: nowrap;
176602
176792
  }
176603
176793
 
176794
+ .itemTitle .itemIcon {
176795
+ flex: 0 0 auto;
176796
+ align-self: center;
176797
+ color: var(--dees-color-text-secondary);
176798
+ }
176799
+
176604
176800
  .itemTime {
176605
176801
  margin-left: auto;
176606
176802
  flex: 0 0 auto;
@@ -176623,11 +176819,393 @@ __publicField(_DeesHarnessSessionList, "styles", [
176623
176819
  font-size: var(--dees-font-control-size-sm, 12px);
176624
176820
  text-align: center;
176625
176821
  }
176822
+
176823
+ .groupHeader {
176824
+ display: flex;
176825
+ align-items: center;
176826
+ gap: var(--dees-spacing-xs);
176827
+ width: 100%;
176828
+ margin-top: var(--dees-spacing-xs);
176829
+ padding: 2px var(--dees-spacing-sm);
176830
+ border: 0;
176831
+ border-radius: var(--dees-radius-md);
176832
+ background: transparent;
176833
+ color: var(--dees-color-text-secondary);
176834
+ cursor: pointer;
176835
+ font-family: inherit;
176836
+ font-size: var(--dees-font-caption1-size, 11px);
176837
+ font-weight: 650;
176838
+ text-transform: uppercase;
176839
+ letter-spacing: 0.05em;
176840
+ text-align: left;
176841
+ }
176842
+
176843
+ .groupHeader:hover {
176844
+ background: var(--dees-color-hover);
176845
+ }
176846
+
176847
+ .groupHeader .chevron {
176848
+ transition: transform var(--dees-transition-fast) var(--dees-ease-standard);
176849
+ }
176850
+
176851
+ .groupHeader.collapsed .chevron {
176852
+ transform: rotate(-90deg);
176853
+ }
176854
+
176855
+ .groupHeader .groupCount {
176856
+ margin-left: auto;
176857
+ font-weight: 500;
176858
+ text-transform: none;
176859
+ letter-spacing: normal;
176860
+ color: var(--dees-color-text-muted);
176861
+ }
176862
+
176863
+ .groupHeader.dropTarget {
176864
+ outline: 1px dashed var(--dees-color-accent-primary);
176865
+ outline-offset: -1px;
176866
+ }
176867
+
176868
+ .dropLine {
176869
+ height: 2px;
176870
+ margin: 0 var(--dees-spacing-sm);
176871
+ border-radius: 1px;
176872
+ background: var(--dees-color-accent-primary);
176873
+ }
176874
+
176875
+ .newGroupRow {
176876
+ flex: 0 0 auto;
176877
+ padding: var(--dees-spacing-xs) var(--dees-spacing-sm) var(--dees-spacing-sm);
176878
+ }
176879
+
176880
+ .newGroupButton {
176881
+ display: flex;
176882
+ align-items: center;
176883
+ gap: var(--dees-spacing-xs);
176884
+ width: 100%;
176885
+ padding: var(--dees-spacing-xs) var(--dees-spacing-sm);
176886
+ border: 1px dashed var(--dees-color-border-default);
176887
+ border-radius: var(--dees-radius-md);
176888
+ background: transparent;
176889
+ color: var(--dees-color-text-secondary);
176890
+ cursor: pointer;
176891
+ font-family: inherit;
176892
+ font-size: var(--dees-font-control-size-sm, 12px);
176893
+ }
176894
+
176895
+ .newGroupButton:hover {
176896
+ border-color: var(--dees-color-accent-primary);
176897
+ color: var(--dees-color-text-primary);
176898
+ }
176626
176899
  `
176627
176900
  ]);
176628
176901
  __runInitializers(_init89, 1, _DeesHarnessSessionList);
176629
176902
  var DeesHarnessSessionList = _DeesHarnessSessionList;
176630
176903
 
176904
+ // ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.demo.ts
176905
+ init_dist_ts25();
176906
+ var demoFunc64 = /* @__PURE__ */ __name(() => b2`
176907
+ <style>
176908
+ .terminalDemo {
176909
+ height: 380px;
176910
+ border: 1px solid var(--dees-color-border-default);
176911
+ border-radius: 8px;
176912
+ overflow: hidden;
176913
+ }
176914
+ </style>
176915
+ <div class="terminalDemo">
176916
+ <dees-terminal-view
176917
+ @terminal-input=${(event) => {
176918
+ const view = event.currentTarget;
176919
+ const data = event.detail.data;
176920
+ view.write(data === "\r" ? "\r\n" : data);
176921
+ }}
176922
+ @terminal-resize=${(event) => {
176923
+ console.log("terminal size", event.detail);
176924
+ }}
176925
+ ></dees-terminal-view>
176926
+ </div>
176927
+ `, "demoFunc");
176928
+
176929
+ // ts_web/elements/00group-harness/dees-terminal-view/dees-terminal-view.ts
176930
+ init_dist_ts25();
176931
+ init_theme();
176932
+ init_services();
176933
+ var _disabled_dec7, _fontSize_dec, _a89, _DeesTerminalView_decorators, _init90, _fontSize, _disabled7;
176934
+ _DeesTerminalView_decorators = [customElement("dees-terminal-view")];
176935
+ var _DeesTerminalView = class _DeesTerminalView extends (_a89 = DeesElement, _fontSize_dec = [n5({ type: Number })], _disabled_dec7 = [n5({ type: Boolean })], _a89) {
176936
+ constructor() {
176937
+ super(...arguments);
176938
+ __privateAdd(this, _fontSize, __runInitializers(_init90, 8, this, 13)), __runInitializers(_init90, 11, this);
176939
+ __privateAdd(this, _disabled7, __runInitializers(_init90, 12, this, false)), __runInitializers(_init90, 15, this);
176940
+ __publicField(this, "terminal");
176941
+ __publicField(this, "fitAddon");
176942
+ __publicField(this, "resizeObserver");
176943
+ __publicField(this, "inputDisposable");
176944
+ __publicField(this, "lastReportedSize", "");
176945
+ // Output that arrives before xterm finished loading is replayed in order.
176946
+ __publicField(this, "pendingWrites", []);
176947
+ __publicField(this, "setupPromise");
176948
+ }
176949
+ render() {
176950
+ return b2`<div class="terminalHost"></div>`;
176951
+ }
176952
+ async firstUpdated() {
176953
+ this.setupPromise = this.setupTerminal();
176954
+ await this.setupPromise;
176955
+ }
176956
+ /** Feed remote output into the terminal; safe to call before setup finishes. */
176957
+ write(dataArg) {
176958
+ if (this.terminal) {
176959
+ this.terminal.write(dataArg);
176960
+ } else {
176961
+ this.pendingWrites.push(dataArg);
176962
+ }
176963
+ }
176964
+ /** Reset the screen and scrollback, e.g. before a full replay. */
176965
+ clear() {
176966
+ this.pendingWrites = [];
176967
+ this.terminal?.reset();
176968
+ }
176969
+ focus() {
176970
+ this.terminal?.focus();
176971
+ }
176972
+ /** Current grid size, or undefined while xterm is still loading. */
176973
+ get currentSize() {
176974
+ if (!this.terminal) return void 0;
176975
+ return { rows: this.terminal.rows, cols: this.terminal.cols };
176976
+ }
176977
+ async setupTerminal() {
176978
+ const libLoader = DeesServiceLibLoader.getInstance();
176979
+ const [xterm, fit] = await Promise.all([
176980
+ libLoader.loadXterm(),
176981
+ libLoader.loadXtermFitAddon()
176982
+ ]);
176983
+ if (!this.isConnected) return;
176984
+ const host = this.shadowRoot?.querySelector(".terminalHost");
176985
+ if (!host) return;
176986
+ const computed2 = getComputedStyle(this);
176987
+ const themeColor = /* @__PURE__ */ __name((nameArg, fallbackArg) => {
176988
+ const value2 = computed2.getPropertyValue(nameArg).trim();
176989
+ return value2 || fallbackArg;
176990
+ }, "themeColor");
176991
+ const terminal = new xterm.Terminal({
176992
+ fontSize: this.fontSize,
176993
+ fontFamily: themeColor("--dees-font-family-mono", "monospace"),
176994
+ cursorBlink: true,
176995
+ allowProposedApi: true,
176996
+ scrollback: 1e4,
176997
+ theme: {
176998
+ background: themeColor("--dees-color-bg-primary", "#111111"),
176999
+ foreground: themeColor("--dees-color-text-primary", "#e6e6e6"),
177000
+ cursor: themeColor("--dees-color-accent-primary", "#e6e6e6")
177001
+ }
177002
+ });
177003
+ const fitAddon = new fit.FitAddon();
177004
+ terminal.loadAddon(fitAddon);
177005
+ terminal.open(host);
177006
+ this.terminal = terminal;
177007
+ this.fitAddon = fitAddon;
177008
+ this.inputDisposable = terminal.onData((dataArg) => {
177009
+ if (this.disabled) return;
177010
+ const detail = { data: dataArg };
177011
+ this.dispatchEvent(
177012
+ new CustomEvent("terminal-input", { detail, bubbles: true, composed: true })
177013
+ );
177014
+ });
177015
+ for (const pending of this.pendingWrites) terminal.write(pending);
177016
+ this.pendingWrites = [];
177017
+ this.refit();
177018
+ this.resizeObserver = new ResizeObserver(() => this.refit());
177019
+ this.resizeObserver.observe(host);
177020
+ }
177021
+ refit() {
177022
+ if (!this.terminal || !this.fitAddon) return;
177023
+ try {
177024
+ this.fitAddon.fit();
177025
+ } catch {
177026
+ return;
177027
+ }
177028
+ const size = `${this.terminal.rows}x${this.terminal.cols}`;
177029
+ if (size === this.lastReportedSize) return;
177030
+ this.lastReportedSize = size;
177031
+ const detail = {
177032
+ rows: this.terminal.rows,
177033
+ cols: this.terminal.cols
177034
+ };
177035
+ this.dispatchEvent(
177036
+ new CustomEvent("terminal-resize", { detail, bubbles: true, composed: true })
177037
+ );
177038
+ }
177039
+ async disconnectedCallback() {
177040
+ await super.disconnectedCallback();
177041
+ this.resizeObserver?.disconnect();
177042
+ this.resizeObserver = void 0;
177043
+ this.inputDisposable?.dispose();
177044
+ this.inputDisposable = void 0;
177045
+ this.terminal?.dispose();
177046
+ this.terminal = void 0;
177047
+ this.fitAddon = void 0;
177048
+ this.pendingWrites = [];
177049
+ }
177050
+ };
177051
+ _init90 = __decoratorStart(_a89);
177052
+ _fontSize = new WeakMap();
177053
+ _disabled7 = new WeakMap();
177054
+ __decorateElement(_init90, 4, "fontSize", _fontSize_dec, _DeesTerminalView, _fontSize);
177055
+ __decorateElement(_init90, 4, "disabled", _disabled_dec7, _DeesTerminalView, _disabled7);
177056
+ _DeesTerminalView = __decorateElement(_init90, 0, "DeesTerminalView", _DeesTerminalView_decorators, _DeesTerminalView);
177057
+ __name(_DeesTerminalView, "DeesTerminalView");
177058
+ __publicField(_DeesTerminalView, "demo", demoFunc64);
177059
+ __publicField(_DeesTerminalView, "demoGroups", ["Agent Chat"]);
177060
+ __publicField(_DeesTerminalView, "styles", [
177061
+ themeDefaultStyles,
177062
+ i`
177063
+ :host {
177064
+ display: block;
177065
+ min-height: 0;
177066
+ height: 100%;
177067
+ background: var(--dees-color-bg-primary);
177068
+ }
177069
+
177070
+ .terminalHost {
177071
+ width: 100%;
177072
+ height: 100%;
177073
+ padding: var(--dees-spacing-xs);
177074
+ box-sizing: border-box;
177075
+ }
177076
+
177077
+ /* xterm.js styles (shadow DOM needs them locally) */
177078
+ .xterm {
177079
+ font-feature-settings: 'liga' 0;
177080
+ position: relative;
177081
+ user-select: none;
177082
+ -ms-user-select: none;
177083
+ -webkit-user-select: none;
177084
+ }
177085
+
177086
+ .xterm.focus,
177087
+ .xterm:focus {
177088
+ outline: none;
177089
+ }
177090
+
177091
+ .xterm .xterm-helpers {
177092
+ position: absolute;
177093
+ top: 0;
177094
+ z-index: 5;
177095
+ }
177096
+
177097
+ .xterm .xterm-helper-textarea {
177098
+ padding: 0;
177099
+ border: 0;
177100
+ margin: 0;
177101
+ position: absolute;
177102
+ opacity: 0;
177103
+ left: -9999em;
177104
+ top: 0;
177105
+ width: 0;
177106
+ height: 0;
177107
+ z-index: -5;
177108
+ white-space: nowrap;
177109
+ overflow: hidden;
177110
+ resize: none;
177111
+ }
177112
+
177113
+ .xterm .composition-view {
177114
+ background: var(--dees-color-bg-primary);
177115
+ color: var(--dees-color-text-primary);
177116
+ display: none;
177117
+ position: absolute;
177118
+ white-space: nowrap;
177119
+ z-index: 1;
177120
+ }
177121
+
177122
+ .xterm .composition-view.active {
177123
+ display: block;
177124
+ }
177125
+
177126
+ .xterm .xterm-viewport {
177127
+ background-color: var(--dees-color-bg-primary);
177128
+ overflow-y: scroll;
177129
+ cursor: default;
177130
+ position: absolute;
177131
+ right: 0;
177132
+ left: 0;
177133
+ top: 0;
177134
+ bottom: 0;
177135
+ scrollbar-width: thin;
177136
+ scrollbar-color: var(--dees-color-scrollbar-thumb) transparent;
177137
+ }
177138
+
177139
+ .xterm .xterm-screen {
177140
+ position: relative;
177141
+ }
177142
+
177143
+ .xterm .xterm-screen canvas {
177144
+ position: absolute;
177145
+ left: 0;
177146
+ top: 0;
177147
+ }
177148
+
177149
+ .xterm .xterm-scroll-area {
177150
+ visibility: hidden;
177151
+ }
177152
+
177153
+ .xterm-char-measure-element {
177154
+ display: inline-block;
177155
+ visibility: hidden;
177156
+ position: absolute;
177157
+ top: 0;
177158
+ left: -9999em;
177159
+ line-height: normal;
177160
+ }
177161
+
177162
+ .xterm {
177163
+ cursor: text;
177164
+ }
177165
+
177166
+ .xterm.enable-mouse-events {
177167
+ cursor: default;
177168
+ }
177169
+
177170
+ .xterm.xterm-cursor-pointer {
177171
+ cursor: pointer;
177172
+ }
177173
+
177174
+ .xterm.column-select.focus {
177175
+ cursor: crosshair;
177176
+ }
177177
+
177178
+ .xterm .xterm-accessibility,
177179
+ .xterm .xterm-message {
177180
+ position: absolute;
177181
+ left: 0;
177182
+ top: 0;
177183
+ bottom: 0;
177184
+ right: 0;
177185
+ z-index: 10;
177186
+ color: transparent;
177187
+ }
177188
+
177189
+ .xterm .live-region {
177190
+ position: absolute;
177191
+ left: -9999px;
177192
+ width: 1px;
177193
+ height: 1px;
177194
+ overflow: hidden;
177195
+ }
177196
+
177197
+ .xterm-dim {
177198
+ opacity: 0.5;
177199
+ }
177200
+
177201
+ .xterm-underline {
177202
+ text-decoration: underline;
177203
+ }
177204
+ `
177205
+ ]);
177206
+ __runInitializers(_init90, 1, _DeesTerminalView);
177207
+ var DeesTerminalView = _DeesTerminalView;
177208
+
176631
177209
  // ts_web/elements/00group-input/profilepicture/profilepicture.cropper.ts
176632
177210
  var ImageCropper = class {
176633
177211
  static {
@@ -176995,18 +177573,18 @@ init_dees_icon();
176995
177573
  init_dees_windowlayer();
176996
177574
  init_dees_windowlayer();
176997
177575
  init_theme();
176998
- var _isProcessing_dec, _croppedImage_dec, _currentStep_dec, _outputQuality_dec, _outputSize_dec, _shape_dec2, _initialImage_dec, _a89, _ProfilePictureModal_decorators, _init90, _initialImage, _shape2, _outputSize, _outputQuality, _currentStep, _croppedImage, _isProcessing;
177576
+ var _isProcessing_dec, _croppedImage_dec, _currentStep_dec, _outputQuality_dec, _outputSize_dec, _shape_dec2, _initialImage_dec, _a90, _ProfilePictureModal_decorators, _init91, _initialImage, _shape2, _outputSize, _outputQuality, _currentStep, _croppedImage, _isProcessing;
176999
177577
  _ProfilePictureModal_decorators = [customElement("dees-profilepicture-modal")];
177000
- var _ProfilePictureModal = class _ProfilePictureModal extends (_a89 = DeesElement, _initialImage_dec = [n5({ type: String })], _shape_dec2 = [n5({ type: String })], _outputSize_dec = [n5({ type: Number })], _outputQuality_dec = [n5({ type: Number })], _currentStep_dec = [r5()], _croppedImage_dec = [r5()], _isProcessing_dec = [r5()], _a89) {
177578
+ var _ProfilePictureModal = class _ProfilePictureModal extends (_a90 = DeesElement, _initialImage_dec = [n5({ type: String })], _shape_dec2 = [n5({ type: String })], _outputSize_dec = [n5({ type: Number })], _outputQuality_dec = [n5({ type: Number })], _currentStep_dec = [r5()], _croppedImage_dec = [r5()], _isProcessing_dec = [r5()], _a90) {
177001
177579
  constructor() {
177002
177580
  super(...arguments);
177003
- __privateAdd(this, _initialImage, __runInitializers(_init90, 8, this, "")), __runInitializers(_init90, 11, this);
177004
- __privateAdd(this, _shape2, __runInitializers(_init90, 12, this, "round")), __runInitializers(_init90, 15, this);
177005
- __privateAdd(this, _outputSize, __runInitializers(_init90, 16, this, 800)), __runInitializers(_init90, 19, this);
177006
- __privateAdd(this, _outputQuality, __runInitializers(_init90, 20, this, 0.95)), __runInitializers(_init90, 23, this);
177007
- __privateAdd(this, _currentStep, __runInitializers(_init90, 24, this, "crop")), __runInitializers(_init90, 27, this);
177008
- __privateAdd(this, _croppedImage, __runInitializers(_init90, 28, this, "")), __runInitializers(_init90, 31, this);
177009
- __privateAdd(this, _isProcessing, __runInitializers(_init90, 32, this, false)), __runInitializers(_init90, 35, this);
177581
+ __privateAdd(this, _initialImage, __runInitializers(_init91, 8, this, "")), __runInitializers(_init91, 11, this);
177582
+ __privateAdd(this, _shape2, __runInitializers(_init91, 12, this, "round")), __runInitializers(_init91, 15, this);
177583
+ __privateAdd(this, _outputSize, __runInitializers(_init91, 16, this, 800)), __runInitializers(_init91, 19, this);
177584
+ __privateAdd(this, _outputQuality, __runInitializers(_init91, 20, this, 0.95)), __runInitializers(_init91, 23, this);
177585
+ __privateAdd(this, _currentStep, __runInitializers(_init91, 24, this, "crop")), __runInitializers(_init91, 27, this);
177586
+ __privateAdd(this, _croppedImage, __runInitializers(_init91, 28, this, "")), __runInitializers(_init91, 31, this);
177587
+ __privateAdd(this, _isProcessing, __runInitializers(_init91, 32, this, false)), __runInitializers(_init91, 35, this);
177010
177588
  __publicField(this, "cropper", null);
177011
177589
  __publicField(this, "windowLayer");
177012
177590
  __publicField(this, "zIndex", 0);
@@ -177128,7 +177706,7 @@ var _ProfilePictureModal = class _ProfilePictureModal extends (_a89 = DeesElemen
177128
177706
  this.remove();
177129
177707
  }
177130
177708
  };
177131
- _init90 = __decoratorStart(_a89);
177709
+ _init91 = __decoratorStart(_a90);
177132
177710
  _initialImage = new WeakMap();
177133
177711
  _shape2 = new WeakMap();
177134
177712
  _outputSize = new WeakMap();
@@ -177136,14 +177714,14 @@ _outputQuality = new WeakMap();
177136
177714
  _currentStep = new WeakMap();
177137
177715
  _croppedImage = new WeakMap();
177138
177716
  _isProcessing = new WeakMap();
177139
- __decorateElement(_init90, 4, "initialImage", _initialImage_dec, _ProfilePictureModal, _initialImage);
177140
- __decorateElement(_init90, 4, "shape", _shape_dec2, _ProfilePictureModal, _shape2);
177141
- __decorateElement(_init90, 4, "outputSize", _outputSize_dec, _ProfilePictureModal, _outputSize);
177142
- __decorateElement(_init90, 4, "outputQuality", _outputQuality_dec, _ProfilePictureModal, _outputQuality);
177143
- __decorateElement(_init90, 4, "currentStep", _currentStep_dec, _ProfilePictureModal, _currentStep);
177144
- __decorateElement(_init90, 4, "croppedImage", _croppedImage_dec, _ProfilePictureModal, _croppedImage);
177145
- __decorateElement(_init90, 4, "isProcessing", _isProcessing_dec, _ProfilePictureModal, _isProcessing);
177146
- _ProfilePictureModal = __decorateElement(_init90, 0, "ProfilePictureModal", _ProfilePictureModal_decorators, _ProfilePictureModal);
177717
+ __decorateElement(_init91, 4, "initialImage", _initialImage_dec, _ProfilePictureModal, _initialImage);
177718
+ __decorateElement(_init91, 4, "shape", _shape_dec2, _ProfilePictureModal, _shape2);
177719
+ __decorateElement(_init91, 4, "outputSize", _outputSize_dec, _ProfilePictureModal, _outputSize);
177720
+ __decorateElement(_init91, 4, "outputQuality", _outputQuality_dec, _ProfilePictureModal, _outputQuality);
177721
+ __decorateElement(_init91, 4, "currentStep", _currentStep_dec, _ProfilePictureModal, _currentStep);
177722
+ __decorateElement(_init91, 4, "croppedImage", _croppedImage_dec, _ProfilePictureModal, _croppedImage);
177723
+ __decorateElement(_init91, 4, "isProcessing", _isProcessing_dec, _ProfilePictureModal, _isProcessing);
177724
+ _ProfilePictureModal = __decorateElement(_init91, 0, "ProfilePictureModal", _ProfilePictureModal_decorators, _ProfilePictureModal);
177147
177725
  __name(_ProfilePictureModal, "ProfilePictureModal");
177148
177726
  __publicField(_ProfilePictureModal, "styles", [
177149
177727
  themeDefaultStyles,
@@ -177337,12 +177915,12 @@ __publicField(_ProfilePictureModal, "styles", [
177337
177915
  }
177338
177916
  `
177339
177917
  ]);
177340
- __runInitializers(_init90, 1, _ProfilePictureModal);
177918
+ __runInitializers(_init91, 1, _ProfilePictureModal);
177341
177919
  var ProfilePictureModal = _ProfilePictureModal;
177342
177920
 
177343
177921
  // ts_web/elements/00group-input/profilepicture/dees-input-profilepicture.demo.ts
177344
177922
  init_dist_ts25();
177345
- var demoFunc64 = /* @__PURE__ */ __name(() => b2`
177923
+ var demoFunc65 = /* @__PURE__ */ __name(() => b2`
177346
177924
  <style>
177347
177925
  ${i`
177348
177926
  .demo-container {
@@ -177540,24 +178118,24 @@ var demoFunc64 = /* @__PURE__ */ __name(() => b2`
177540
178118
  init_dist_ts25();
177541
178119
  init_dees_icon();
177542
178120
  init_theme();
177543
- var _isLoading_dec2, _isDragging_dec, _isHovered_dec, _outputQuality_dec2, _outputSize_dec2, _acceptedFormats_dec, _maxFileSize_dec, _allowDelete_dec, _allowUpload_dec, _placeholder_dec7, _size_dec6, _shape_dec3, _value_dec18, _a90, _DeesInputProfilePicture_decorators, _init91, _value18, _shape3, _size6, _placeholder7, _allowUpload, _allowDelete, _maxFileSize, _acceptedFormats, _outputSize2, _outputQuality2, _isHovered, _isDragging, _isLoading2;
178121
+ var _isLoading_dec2, _isDragging_dec, _isHovered_dec, _outputQuality_dec2, _outputSize_dec2, _acceptedFormats_dec, _maxFileSize_dec, _allowDelete_dec, _allowUpload_dec, _placeholder_dec7, _size_dec6, _shape_dec3, _value_dec18, _a91, _DeesInputProfilePicture_decorators, _init92, _value18, _shape3, _size6, _placeholder7, _allowUpload, _allowDelete, _maxFileSize, _acceptedFormats, _outputSize2, _outputQuality2, _isHovered, _isDragging, _isLoading2;
177544
178122
  _DeesInputProfilePicture_decorators = [customElement("dees-input-profilepicture")];
177545
- var _DeesInputProfilePicture = class _DeesInputProfilePicture extends (_a90 = DeesInputBase, _value_dec18 = [n5({ type: String })], _shape_dec3 = [n5({ type: String })], _size_dec6 = [n5({ type: Number })], _placeholder_dec7 = [n5({ type: String })], _allowUpload_dec = [n5({ type: Boolean })], _allowDelete_dec = [n5({ type: Boolean })], _maxFileSize_dec = [n5({ type: Number })], _acceptedFormats_dec = [n5({ type: Array })], _outputSize_dec2 = [n5({ type: Number })], _outputQuality_dec2 = [n5({ type: Number })], _isHovered_dec = [r5()], _isDragging_dec = [r5()], _isLoading_dec2 = [r5()], _a90) {
178123
+ var _DeesInputProfilePicture = class _DeesInputProfilePicture extends (_a91 = DeesInputBase, _value_dec18 = [n5({ type: String })], _shape_dec3 = [n5({ type: String })], _size_dec6 = [n5({ type: Number })], _placeholder_dec7 = [n5({ type: String })], _allowUpload_dec = [n5({ type: Boolean })], _allowDelete_dec = [n5({ type: Boolean })], _maxFileSize_dec = [n5({ type: Number })], _acceptedFormats_dec = [n5({ type: Array })], _outputSize_dec2 = [n5({ type: Number })], _outputQuality_dec2 = [n5({ type: Number })], _isHovered_dec = [r5()], _isDragging_dec = [r5()], _isLoading_dec2 = [r5()], _a91) {
177546
178124
  constructor() {
177547
178125
  super(...arguments);
177548
- __privateAdd(this, _value18, __runInitializers(_init91, 8, this, "")), __runInitializers(_init91, 11, this);
177549
- __privateAdd(this, _shape3, __runInitializers(_init91, 12, this, "round")), __runInitializers(_init91, 15, this);
177550
- __privateAdd(this, _size6, __runInitializers(_init91, 16, this, 120)), __runInitializers(_init91, 19, this);
177551
- __privateAdd(this, _placeholder7, __runInitializers(_init91, 20, this, "")), __runInitializers(_init91, 23, this);
177552
- __privateAdd(this, _allowUpload, __runInitializers(_init91, 24, this, true)), __runInitializers(_init91, 27, this);
177553
- __privateAdd(this, _allowDelete, __runInitializers(_init91, 28, this, true)), __runInitializers(_init91, 31, this);
177554
- __privateAdd(this, _maxFileSize, __runInitializers(_init91, 32, this, 5 * 1024 * 1024)), __runInitializers(_init91, 35, this);
177555
- __privateAdd(this, _acceptedFormats, __runInitializers(_init91, 36, this, ["image/jpeg", "image/png", "image/webp"])), __runInitializers(_init91, 39, this);
177556
- __privateAdd(this, _outputSize2, __runInitializers(_init91, 40, this, 800)), __runInitializers(_init91, 43, this);
177557
- __privateAdd(this, _outputQuality2, __runInitializers(_init91, 44, this, 0.95)), __runInitializers(_init91, 47, this);
177558
- __privateAdd(this, _isHovered, __runInitializers(_init91, 48, this, false)), __runInitializers(_init91, 51, this);
177559
- __privateAdd(this, _isDragging, __runInitializers(_init91, 52, this, false)), __runInitializers(_init91, 55, this);
177560
- __privateAdd(this, _isLoading2, __runInitializers(_init91, 56, this, false)), __runInitializers(_init91, 59, this);
178126
+ __privateAdd(this, _value18, __runInitializers(_init92, 8, this, "")), __runInitializers(_init92, 11, this);
178127
+ __privateAdd(this, _shape3, __runInitializers(_init92, 12, this, "round")), __runInitializers(_init92, 15, this);
178128
+ __privateAdd(this, _size6, __runInitializers(_init92, 16, this, 120)), __runInitializers(_init92, 19, this);
178129
+ __privateAdd(this, _placeholder7, __runInitializers(_init92, 20, this, "")), __runInitializers(_init92, 23, this);
178130
+ __privateAdd(this, _allowUpload, __runInitializers(_init92, 24, this, true)), __runInitializers(_init92, 27, this);
178131
+ __privateAdd(this, _allowDelete, __runInitializers(_init92, 28, this, true)), __runInitializers(_init92, 31, this);
178132
+ __privateAdd(this, _maxFileSize, __runInitializers(_init92, 32, this, 5 * 1024 * 1024)), __runInitializers(_init92, 35, this);
178133
+ __privateAdd(this, _acceptedFormats, __runInitializers(_init92, 36, this, ["image/jpeg", "image/png", "image/webp"])), __runInitializers(_init92, 39, this);
178134
+ __privateAdd(this, _outputSize2, __runInitializers(_init92, 40, this, 800)), __runInitializers(_init92, 43, this);
178135
+ __privateAdd(this, _outputQuality2, __runInitializers(_init92, 44, this, 0.95)), __runInitializers(_init92, 47, this);
178136
+ __privateAdd(this, _isHovered, __runInitializers(_init92, 48, this, false)), __runInitializers(_init92, 51, this);
178137
+ __privateAdd(this, _isDragging, __runInitializers(_init92, 52, this, false)), __runInitializers(_init92, 55, this);
178138
+ __privateAdd(this, _isLoading2, __runInitializers(_init92, 56, this, false)), __runInitializers(_init92, 59, this);
177561
178139
  __publicField(this, "modalInstance", null);
177562
178140
  }
177563
178141
  render() {
@@ -177718,7 +178296,7 @@ var _DeesInputProfilePicture = class _DeesInputProfilePicture extends (_a90 = De
177718
178296
  this.value = value2;
177719
178297
  }
177720
178298
  };
177721
- _init91 = __decoratorStart(_a90);
178299
+ _init92 = __decoratorStart(_a91);
177722
178300
  _value18 = new WeakMap();
177723
178301
  _shape3 = new WeakMap();
177724
178302
  _size6 = new WeakMap();
@@ -177732,22 +178310,22 @@ _outputQuality2 = new WeakMap();
177732
178310
  _isHovered = new WeakMap();
177733
178311
  _isDragging = new WeakMap();
177734
178312
  _isLoading2 = new WeakMap();
177735
- __decorateElement(_init91, 4, "value", _value_dec18, _DeesInputProfilePicture, _value18);
177736
- __decorateElement(_init91, 4, "shape", _shape_dec3, _DeesInputProfilePicture, _shape3);
177737
- __decorateElement(_init91, 4, "size", _size_dec6, _DeesInputProfilePicture, _size6);
177738
- __decorateElement(_init91, 4, "placeholder", _placeholder_dec7, _DeesInputProfilePicture, _placeholder7);
177739
- __decorateElement(_init91, 4, "allowUpload", _allowUpload_dec, _DeesInputProfilePicture, _allowUpload);
177740
- __decorateElement(_init91, 4, "allowDelete", _allowDelete_dec, _DeesInputProfilePicture, _allowDelete);
177741
- __decorateElement(_init91, 4, "maxFileSize", _maxFileSize_dec, _DeesInputProfilePicture, _maxFileSize);
177742
- __decorateElement(_init91, 4, "acceptedFormats", _acceptedFormats_dec, _DeesInputProfilePicture, _acceptedFormats);
177743
- __decorateElement(_init91, 4, "outputSize", _outputSize_dec2, _DeesInputProfilePicture, _outputSize2);
177744
- __decorateElement(_init91, 4, "outputQuality", _outputQuality_dec2, _DeesInputProfilePicture, _outputQuality2);
177745
- __decorateElement(_init91, 4, "isHovered", _isHovered_dec, _DeesInputProfilePicture, _isHovered);
177746
- __decorateElement(_init91, 4, "isDragging", _isDragging_dec, _DeesInputProfilePicture, _isDragging);
177747
- __decorateElement(_init91, 4, "isLoading", _isLoading_dec2, _DeesInputProfilePicture, _isLoading2);
177748
- _DeesInputProfilePicture = __decorateElement(_init91, 0, "DeesInputProfilePicture", _DeesInputProfilePicture_decorators, _DeesInputProfilePicture);
178313
+ __decorateElement(_init92, 4, "value", _value_dec18, _DeesInputProfilePicture, _value18);
178314
+ __decorateElement(_init92, 4, "shape", _shape_dec3, _DeesInputProfilePicture, _shape3);
178315
+ __decorateElement(_init92, 4, "size", _size_dec6, _DeesInputProfilePicture, _size6);
178316
+ __decorateElement(_init92, 4, "placeholder", _placeholder_dec7, _DeesInputProfilePicture, _placeholder7);
178317
+ __decorateElement(_init92, 4, "allowUpload", _allowUpload_dec, _DeesInputProfilePicture, _allowUpload);
178318
+ __decorateElement(_init92, 4, "allowDelete", _allowDelete_dec, _DeesInputProfilePicture, _allowDelete);
178319
+ __decorateElement(_init92, 4, "maxFileSize", _maxFileSize_dec, _DeesInputProfilePicture, _maxFileSize);
178320
+ __decorateElement(_init92, 4, "acceptedFormats", _acceptedFormats_dec, _DeesInputProfilePicture, _acceptedFormats);
178321
+ __decorateElement(_init92, 4, "outputSize", _outputSize_dec2, _DeesInputProfilePicture, _outputSize2);
178322
+ __decorateElement(_init92, 4, "outputQuality", _outputQuality_dec2, _DeesInputProfilePicture, _outputQuality2);
178323
+ __decorateElement(_init92, 4, "isHovered", _isHovered_dec, _DeesInputProfilePicture, _isHovered);
178324
+ __decorateElement(_init92, 4, "isDragging", _isDragging_dec, _DeesInputProfilePicture, _isDragging);
178325
+ __decorateElement(_init92, 4, "isLoading", _isLoading_dec2, _DeesInputProfilePicture, _isLoading2);
178326
+ _DeesInputProfilePicture = __decorateElement(_init92, 0, "DeesInputProfilePicture", _DeesInputProfilePicture_decorators, _DeesInputProfilePicture);
177749
178327
  __name(_DeesInputProfilePicture, "DeesInputProfilePicture");
177750
- __publicField(_DeesInputProfilePicture, "demo", demoFunc64);
178328
+ __publicField(_DeesInputProfilePicture, "demo", demoFunc65);
177751
178329
  __publicField(_DeesInputProfilePicture, "demoGroups", ["Input"]);
177752
178330
  __publicField(_DeesInputProfilePicture, "styles", [
177753
178331
  themeDefaultStyles,
@@ -177950,12 +178528,12 @@ __publicField(_DeesInputProfilePicture, "styles", [
177950
178528
  }
177951
178529
  `
177952
178530
  ]);
177953
- __runInitializers(_init91, 1, _DeesInputProfilePicture);
178531
+ __runInitializers(_init92, 1, _DeesInputProfilePicture);
177954
178532
  var DeesInputProfilePicture = _DeesInputProfilePicture;
177955
178533
 
177956
178534
  // ts_web/elements/00group-layout/dees-chips/dees-chips.demo.ts
177957
178535
  init_dist_ts25();
177958
- var demoFunc65 = /* @__PURE__ */ __name(() => b2`
178536
+ var demoFunc66 = /* @__PURE__ */ __name(() => b2`
177959
178537
  <style>
177960
178538
  .demoContainer {
177961
178539
  display: flex;
@@ -178070,22 +178648,22 @@ var demoFunc65 = /* @__PURE__ */ __name(() => b2`
178070
178648
  init_dist_ts25();
178071
178649
  init_dist_ts24();
178072
178650
  init_theme();
178073
- var _selectedChips_dec, _selectedChip_dec, _selectableChips_dec, _chipsAreRemovable_dec, _selectionMode_dec2, _a91, _DeesChips_decorators, _init92, _selectionMode2, _chipsAreRemovable, _selectableChips, _selectedChip, _selectedChips;
178651
+ var _selectedChips_dec, _selectedChip_dec, _selectableChips_dec, _chipsAreRemovable_dec, _selectionMode_dec2, _a92, _DeesChips_decorators, _init93, _selectionMode2, _chipsAreRemovable, _selectableChips, _selectedChip, _selectedChips;
178074
178652
  _DeesChips_decorators = [customElement("dees-chips")];
178075
- var _DeesChips = class _DeesChips extends (_a91 = DeesElement, _selectionMode_dec2 = [n5()], _chipsAreRemovable_dec = [n5({
178653
+ var _DeesChips = class _DeesChips extends (_a92 = DeesElement, _selectionMode_dec2 = [n5()], _chipsAreRemovable_dec = [n5({
178076
178654
  type: Boolean
178077
178655
  })], _selectableChips_dec = [n5({
178078
178656
  type: Array
178079
178657
  })], _selectedChip_dec = [n5()], _selectedChips_dec = [n5({
178080
178658
  type: Array
178081
- })], _a91) {
178659
+ })], _a92) {
178082
178660
  constructor() {
178083
178661
  super();
178084
- __privateAdd(this, _selectionMode2, __runInitializers(_init92, 8, this, "single")), __runInitializers(_init92, 11, this);
178085
- __privateAdd(this, _chipsAreRemovable, __runInitializers(_init92, 12, this, false)), __runInitializers(_init92, 15, this);
178086
- __privateAdd(this, _selectableChips, __runInitializers(_init92, 16, this, [])), __runInitializers(_init92, 19, this);
178087
- __privateAdd(this, _selectedChip, __runInitializers(_init92, 20, this, null)), __runInitializers(_init92, 23, this);
178088
- __privateAdd(this, _selectedChips, __runInitializers(_init92, 24, this, [])), __runInitializers(_init92, 27, this);
178662
+ __privateAdd(this, _selectionMode2, __runInitializers(_init93, 8, this, "single")), __runInitializers(_init93, 11, this);
178663
+ __privateAdd(this, _chipsAreRemovable, __runInitializers(_init93, 12, this, false)), __runInitializers(_init93, 15, this);
178664
+ __privateAdd(this, _selectableChips, __runInitializers(_init93, 16, this, [])), __runInitializers(_init93, 19, this);
178665
+ __privateAdd(this, _selectedChip, __runInitializers(_init93, 20, this, null)), __runInitializers(_init93, 23, this);
178666
+ __privateAdd(this, _selectedChips, __runInitializers(_init93, 24, this, [])), __runInitializers(_init93, 27, this);
178089
178667
  }
178090
178668
  render() {
178091
178669
  return b2`
@@ -178158,20 +178736,20 @@ var _DeesChips = class _DeesChips extends (_a91 = DeesElement, _selectionMode_de
178158
178736
  this.requestUpdate();
178159
178737
  }
178160
178738
  };
178161
- _init92 = __decoratorStart(_a91);
178739
+ _init93 = __decoratorStart(_a92);
178162
178740
  _selectionMode2 = new WeakMap();
178163
178741
  _chipsAreRemovable = new WeakMap();
178164
178742
  _selectableChips = new WeakMap();
178165
178743
  _selectedChip = new WeakMap();
178166
178744
  _selectedChips = new WeakMap();
178167
- __decorateElement(_init92, 4, "selectionMode", _selectionMode_dec2, _DeesChips, _selectionMode2);
178168
- __decorateElement(_init92, 4, "chipsAreRemovable", _chipsAreRemovable_dec, _DeesChips, _chipsAreRemovable);
178169
- __decorateElement(_init92, 4, "selectableChips", _selectableChips_dec, _DeesChips, _selectableChips);
178170
- __decorateElement(_init92, 4, "selectedChip", _selectedChip_dec, _DeesChips, _selectedChip);
178171
- __decorateElement(_init92, 4, "selectedChips", _selectedChips_dec, _DeesChips, _selectedChips);
178172
- _DeesChips = __decorateElement(_init92, 0, "DeesChips", _DeesChips_decorators, _DeesChips);
178745
+ __decorateElement(_init93, 4, "selectionMode", _selectionMode_dec2, _DeesChips, _selectionMode2);
178746
+ __decorateElement(_init93, 4, "chipsAreRemovable", _chipsAreRemovable_dec, _DeesChips, _chipsAreRemovable);
178747
+ __decorateElement(_init93, 4, "selectableChips", _selectableChips_dec, _DeesChips, _selectableChips);
178748
+ __decorateElement(_init93, 4, "selectedChip", _selectedChip_dec, _DeesChips, _selectedChip);
178749
+ __decorateElement(_init93, 4, "selectedChips", _selectedChips_dec, _DeesChips, _selectedChips);
178750
+ _DeesChips = __decorateElement(_init93, 0, "DeesChips", _DeesChips_decorators, _DeesChips);
178173
178751
  __name(_DeesChips, "DeesChips");
178174
- __publicField(_DeesChips, "demo", demoFunc65);
178752
+ __publicField(_DeesChips, "demo", demoFunc66);
178175
178753
  __publicField(_DeesChips, "demoGroups", ["Layout"]);
178176
178754
  __publicField(_DeesChips, "styles", [
178177
178755
  themeDefaultStyles,
@@ -178275,12 +178853,12 @@ __publicField(_DeesChips, "styles", [
178275
178853
  }
178276
178854
  `
178277
178855
  ]);
178278
- __runInitializers(_init92, 1, _DeesChips);
178856
+ __runInitializers(_init93, 1, _DeesChips);
178279
178857
  var DeesChips = _DeesChips;
178280
178858
 
178281
178859
  // ts_web/elements/00group-layout/dees-dashboardgrid/dees-dashboardgrid.demo.ts
178282
178860
  init_dist_ts25();
178283
- var demoFunc66 = /* @__PURE__ */ __name(() => {
178861
+ var demoFunc67 = /* @__PURE__ */ __name(() => {
178284
178862
  return b2`
178285
178863
  <dees-demowrapper .runAfterRender=${async (elementArg) => {
178286
178864
  const grid = elementArg.querySelector("#dashboardGrid");
@@ -179132,26 +179710,26 @@ var openWidgetContextMenu = /* @__PURE__ */ __name(({
179132
179710
  // ts_web/elements/00group-layout/dees-dashboardgrid/dees-dashboardgrid.ts
179133
179711
  init_dist_ts25();
179134
179712
  init_dees_icon();
179135
- var _previewWidgets_dec, _resolvedMargins_dec, _metrics_dec2, _placeholderPosition_dec, _activeBreakpoint_dec, _layouts_dec, _showGridLines_dec, _rtl_dec, _cellHeightUnit_dec, _enableAnimation_dec, _editable_dec, _columns_dec3, _margin_dec, _cellHeight_dec, _widgets_dec2, _a92, _DeesDashboardgrid_decorators, _init93, _widgets2, _cellHeight, _margin, _columns3, _editable, _enableAnimation, _cellHeightUnit, _rtl, _showGridLines, _layouts, _activeBreakpoint, _placeholderPosition, _metrics2, _resolvedMargins, _previewWidgets;
179713
+ var _previewWidgets_dec, _resolvedMargins_dec, _metrics_dec2, _placeholderPosition_dec, _activeBreakpoint_dec, _layouts_dec, _showGridLines_dec, _rtl_dec, _cellHeightUnit_dec, _enableAnimation_dec, _editable_dec, _columns_dec3, _margin_dec, _cellHeight_dec, _widgets_dec2, _a93, _DeesDashboardgrid_decorators, _init94, _widgets2, _cellHeight, _margin, _columns3, _editable, _enableAnimation, _cellHeightUnit, _rtl, _showGridLines, _layouts, _activeBreakpoint, _placeholderPosition, _metrics2, _resolvedMargins, _previewWidgets;
179136
179714
  _DeesDashboardgrid_decorators = [customElement("dees-dashboardgrid")];
179137
- var _DeesDashboardgrid = class _DeesDashboardgrid extends (_a92 = DeesElement, _widgets_dec2 = [n5({ type: Array })], _cellHeight_dec = [n5({ type: Number })], _margin_dec = [n5({ type: Object })], _columns_dec3 = [n5({ type: Number })], _editable_dec = [n5({ type: Boolean })], _enableAnimation_dec = [n5({ type: Boolean, reflect: true })], _cellHeightUnit_dec = [n5({ type: String })], _rtl_dec = [n5({ type: Boolean })], _showGridLines_dec = [n5({ type: Boolean })], _layouts_dec = [n5({ attribute: false })], _activeBreakpoint_dec = [n5({ type: String })], _placeholderPosition_dec = [r5()], _metrics_dec2 = [r5()], _resolvedMargins_dec = [r5()], _previewWidgets_dec = [r5()], _a92) {
179715
+ var _DeesDashboardgrid = class _DeesDashboardgrid extends (_a93 = DeesElement, _widgets_dec2 = [n5({ type: Array })], _cellHeight_dec = [n5({ type: Number })], _margin_dec = [n5({ type: Object })], _columns_dec3 = [n5({ type: Number })], _editable_dec = [n5({ type: Boolean })], _enableAnimation_dec = [n5({ type: Boolean, reflect: true })], _cellHeightUnit_dec = [n5({ type: String })], _rtl_dec = [n5({ type: Boolean })], _showGridLines_dec = [n5({ type: Boolean })], _layouts_dec = [n5({ attribute: false })], _activeBreakpoint_dec = [n5({ type: String })], _placeholderPosition_dec = [r5()], _metrics_dec2 = [r5()], _resolvedMargins_dec = [r5()], _previewWidgets_dec = [r5()], _a93) {
179138
179716
  constructor() {
179139
179717
  super(...arguments);
179140
- __privateAdd(this, _widgets2, __runInitializers(_init93, 8, this, [])), __runInitializers(_init93, 11, this);
179141
- __privateAdd(this, _cellHeight, __runInitializers(_init93, 12, this, 80)), __runInitializers(_init93, 15, this);
179142
- __privateAdd(this, _margin, __runInitializers(_init93, 16, this, 10)), __runInitializers(_init93, 19, this);
179143
- __privateAdd(this, _columns3, __runInitializers(_init93, 20, this, 12)), __runInitializers(_init93, 23, this);
179144
- __privateAdd(this, _editable, __runInitializers(_init93, 24, this, true)), __runInitializers(_init93, 27, this);
179145
- __privateAdd(this, _enableAnimation, __runInitializers(_init93, 28, this, true)), __runInitializers(_init93, 31, this);
179146
- __privateAdd(this, _cellHeightUnit, __runInitializers(_init93, 32, this, "px")), __runInitializers(_init93, 35, this);
179147
- __privateAdd(this, _rtl, __runInitializers(_init93, 36, this, false)), __runInitializers(_init93, 39, this);
179148
- __privateAdd(this, _showGridLines, __runInitializers(_init93, 40, this, false)), __runInitializers(_init93, 43, this);
179149
- __privateAdd(this, _layouts, __runInitializers(_init93, 44, this)), __runInitializers(_init93, 47, this);
179150
- __privateAdd(this, _activeBreakpoint, __runInitializers(_init93, 48, this, "base")), __runInitializers(_init93, 51, this);
179151
- __privateAdd(this, _placeholderPosition, __runInitializers(_init93, 52, this, null)), __runInitializers(_init93, 55, this);
179152
- __privateAdd(this, _metrics2, __runInitializers(_init93, 56, this, null)), __runInitializers(_init93, 59, this);
179153
- __privateAdd(this, _resolvedMargins, __runInitializers(_init93, 60, this, null)), __runInitializers(_init93, 63, this);
179154
- __privateAdd(this, _previewWidgets, __runInitializers(_init93, 64, this, null)), __runInitializers(_init93, 67, this);
179718
+ __privateAdd(this, _widgets2, __runInitializers(_init94, 8, this, [])), __runInitializers(_init94, 11, this);
179719
+ __privateAdd(this, _cellHeight, __runInitializers(_init94, 12, this, 80)), __runInitializers(_init94, 15, this);
179720
+ __privateAdd(this, _margin, __runInitializers(_init94, 16, this, 10)), __runInitializers(_init94, 19, this);
179721
+ __privateAdd(this, _columns3, __runInitializers(_init94, 20, this, 12)), __runInitializers(_init94, 23, this);
179722
+ __privateAdd(this, _editable, __runInitializers(_init94, 24, this, true)), __runInitializers(_init94, 27, this);
179723
+ __privateAdd(this, _enableAnimation, __runInitializers(_init94, 28, this, true)), __runInitializers(_init94, 31, this);
179724
+ __privateAdd(this, _cellHeightUnit, __runInitializers(_init94, 32, this, "px")), __runInitializers(_init94, 35, this);
179725
+ __privateAdd(this, _rtl, __runInitializers(_init94, 36, this, false)), __runInitializers(_init94, 39, this);
179726
+ __privateAdd(this, _showGridLines, __runInitializers(_init94, 40, this, false)), __runInitializers(_init94, 43, this);
179727
+ __privateAdd(this, _layouts, __runInitializers(_init94, 44, this)), __runInitializers(_init94, 47, this);
179728
+ __privateAdd(this, _activeBreakpoint, __runInitializers(_init94, 48, this, "base")), __runInitializers(_init94, 51, this);
179729
+ __privateAdd(this, _placeholderPosition, __runInitializers(_init94, 52, this, null)), __runInitializers(_init94, 55, this);
179730
+ __privateAdd(this, _metrics2, __runInitializers(_init94, 56, this, null)), __runInitializers(_init94, 59, this);
179731
+ __privateAdd(this, _resolvedMargins, __runInitializers(_init94, 60, this, null)), __runInitializers(_init94, 63, this);
179732
+ __privateAdd(this, _previewWidgets, __runInitializers(_init94, 64, this, null)), __runInitializers(_init94, 67, this);
179155
179733
  __publicField(this, "containerBounds", null);
179156
179734
  __publicField(this, "dragState", null);
179157
179735
  __publicField(this, "resizeState", null);
@@ -179713,7 +180291,7 @@ var _DeesDashboardgrid = class _DeesDashboardgrid extends (_a92 = DeesElement, _
179713
180291
  return { left, top, width, height };
179714
180292
  }
179715
180293
  };
179716
- _init93 = __decoratorStart(_a92);
180294
+ _init94 = __decoratorStart(_a93);
179717
180295
  _widgets2 = new WeakMap();
179718
180296
  _cellHeight = new WeakMap();
179719
180297
  _margin = new WeakMap();
@@ -179729,32 +180307,32 @@ _placeholderPosition = new WeakMap();
179729
180307
  _metrics2 = new WeakMap();
179730
180308
  _resolvedMargins = new WeakMap();
179731
180309
  _previewWidgets = new WeakMap();
179732
- __decorateElement(_init93, 4, "widgets", _widgets_dec2, _DeesDashboardgrid, _widgets2);
179733
- __decorateElement(_init93, 4, "cellHeight", _cellHeight_dec, _DeesDashboardgrid, _cellHeight);
179734
- __decorateElement(_init93, 4, "margin", _margin_dec, _DeesDashboardgrid, _margin);
179735
- __decorateElement(_init93, 4, "columns", _columns_dec3, _DeesDashboardgrid, _columns3);
179736
- __decorateElement(_init93, 4, "editable", _editable_dec, _DeesDashboardgrid, _editable);
179737
- __decorateElement(_init93, 4, "enableAnimation", _enableAnimation_dec, _DeesDashboardgrid, _enableAnimation);
179738
- __decorateElement(_init93, 4, "cellHeightUnit", _cellHeightUnit_dec, _DeesDashboardgrid, _cellHeightUnit);
179739
- __decorateElement(_init93, 4, "rtl", _rtl_dec, _DeesDashboardgrid, _rtl);
179740
- __decorateElement(_init93, 4, "showGridLines", _showGridLines_dec, _DeesDashboardgrid, _showGridLines);
179741
- __decorateElement(_init93, 4, "layouts", _layouts_dec, _DeesDashboardgrid, _layouts);
179742
- __decorateElement(_init93, 4, "activeBreakpoint", _activeBreakpoint_dec, _DeesDashboardgrid, _activeBreakpoint);
179743
- __decorateElement(_init93, 4, "placeholderPosition", _placeholderPosition_dec, _DeesDashboardgrid, _placeholderPosition);
179744
- __decorateElement(_init93, 4, "metrics", _metrics_dec2, _DeesDashboardgrid, _metrics2);
179745
- __decorateElement(_init93, 4, "resolvedMargins", _resolvedMargins_dec, _DeesDashboardgrid, _resolvedMargins);
179746
- __decorateElement(_init93, 4, "previewWidgets", _previewWidgets_dec, _DeesDashboardgrid, _previewWidgets);
179747
- _DeesDashboardgrid = __decorateElement(_init93, 0, "DeesDashboardgrid", _DeesDashboardgrid_decorators, _DeesDashboardgrid);
180310
+ __decorateElement(_init94, 4, "widgets", _widgets_dec2, _DeesDashboardgrid, _widgets2);
180311
+ __decorateElement(_init94, 4, "cellHeight", _cellHeight_dec, _DeesDashboardgrid, _cellHeight);
180312
+ __decorateElement(_init94, 4, "margin", _margin_dec, _DeesDashboardgrid, _margin);
180313
+ __decorateElement(_init94, 4, "columns", _columns_dec3, _DeesDashboardgrid, _columns3);
180314
+ __decorateElement(_init94, 4, "editable", _editable_dec, _DeesDashboardgrid, _editable);
180315
+ __decorateElement(_init94, 4, "enableAnimation", _enableAnimation_dec, _DeesDashboardgrid, _enableAnimation);
180316
+ __decorateElement(_init94, 4, "cellHeightUnit", _cellHeightUnit_dec, _DeesDashboardgrid, _cellHeightUnit);
180317
+ __decorateElement(_init94, 4, "rtl", _rtl_dec, _DeesDashboardgrid, _rtl);
180318
+ __decorateElement(_init94, 4, "showGridLines", _showGridLines_dec, _DeesDashboardgrid, _showGridLines);
180319
+ __decorateElement(_init94, 4, "layouts", _layouts_dec, _DeesDashboardgrid, _layouts);
180320
+ __decorateElement(_init94, 4, "activeBreakpoint", _activeBreakpoint_dec, _DeesDashboardgrid, _activeBreakpoint);
180321
+ __decorateElement(_init94, 4, "placeholderPosition", _placeholderPosition_dec, _DeesDashboardgrid, _placeholderPosition);
180322
+ __decorateElement(_init94, 4, "metrics", _metrics_dec2, _DeesDashboardgrid, _metrics2);
180323
+ __decorateElement(_init94, 4, "resolvedMargins", _resolvedMargins_dec, _DeesDashboardgrid, _resolvedMargins);
180324
+ __decorateElement(_init94, 4, "previewWidgets", _previewWidgets_dec, _DeesDashboardgrid, _previewWidgets);
180325
+ _DeesDashboardgrid = __decorateElement(_init94, 0, "DeesDashboardgrid", _DeesDashboardgrid_decorators, _DeesDashboardgrid);
179748
180326
  __name(_DeesDashboardgrid, "DeesDashboardgrid");
179749
- __publicField(_DeesDashboardgrid, "demo", demoFunc66);
180327
+ __publicField(_DeesDashboardgrid, "demo", demoFunc67);
179750
180328
  __publicField(_DeesDashboardgrid, "demoGroups", ["Layout"]);
179751
180329
  __publicField(_DeesDashboardgrid, "styles", dashboardGridStyles);
179752
- __runInitializers(_init93, 1, _DeesDashboardgrid);
180330
+ __runInitializers(_init94, 1, _DeesDashboardgrid);
179753
180331
  var DeesDashboardgrid = _DeesDashboardgrid;
179754
180332
 
179755
180333
  // ts_web/elements/00group-layout/dees-heading/dees-heading.demo.ts
179756
180334
  init_dist_ts25();
179757
- function demoFunc67() {
180335
+ function demoFunc68() {
179758
180336
  return b2`
179759
180337
  <dees-heading level="1">This is a H1 heading</dees-heading>
179760
180338
  <dees-heading level="2">This is a H2 heading</dees-heading>
@@ -179768,18 +180346,18 @@ function demoFunc67() {
179768
180346
  <dees-heading level="8">This is an hr-small heading (level="8")</dees-heading>
179769
180347
  `;
179770
180348
  }
179771
- __name(demoFunc67, "demoFunc");
180349
+ __name(demoFunc68, "demoFunc");
179772
180350
 
179773
180351
  // ts_web/elements/00group-layout/dees-heading/dees-heading.ts
179774
180352
  init_dist_ts25();
179775
180353
  init_fonts();
179776
180354
  init_theme();
179777
- var _level_dec, _a93, _DeesHeading_decorators, _init94, _level;
180355
+ var _level_dec, _a94, _DeesHeading_decorators, _init95, _level;
179778
180356
  _DeesHeading_decorators = [customElement("dees-heading")];
179779
- var _DeesHeading = class _DeesHeading extends (_a93 = DeesElement, _level_dec = [n5({ type: String, reflect: true })], _a93) {
180357
+ var _DeesHeading = class _DeesHeading extends (_a94 = DeesElement, _level_dec = [n5({ type: String, reflect: true })], _a94) {
179780
180358
  constructor() {
179781
180359
  super(...arguments);
179782
- __privateAdd(this, _level, __runInitializers(_init94, 8, this, "1")), __runInitializers(_init94, 11, this);
180360
+ __privateAdd(this, _level, __runInitializers(_init95, 8, this, "1")), __runInitializers(_init95, 11, this);
179783
180361
  }
179784
180362
  // INSTANCE
179785
180363
  render() {
@@ -179807,13 +180385,13 @@ var _DeesHeading = class _DeesHeading extends (_a93 = DeesElement, _level_dec =
179807
180385
  }
179808
180386
  }
179809
180387
  };
179810
- _init94 = __decoratorStart(_a93);
180388
+ _init95 = __decoratorStart(_a94);
179811
180389
  _level = new WeakMap();
179812
- __decorateElement(_init94, 4, "level", _level_dec, _DeesHeading, _level);
179813
- _DeesHeading = __decorateElement(_init94, 0, "DeesHeading", _DeesHeading_decorators, _DeesHeading);
180390
+ __decorateElement(_init95, 4, "level", _level_dec, _DeesHeading, _level);
180391
+ _DeesHeading = __decorateElement(_init95, 0, "DeesHeading", _DeesHeading_decorators, _DeesHeading);
179814
180392
  __name(_DeesHeading, "DeesHeading");
179815
180393
  // demo
179816
- __publicField(_DeesHeading, "demo", demoFunc67);
180394
+ __publicField(_DeesHeading, "demo", demoFunc68);
179817
180395
  __publicField(_DeesHeading, "demoGroups", ["Layout"]);
179818
180396
  // STATIC STYLES
179819
180397
  __publicField(_DeesHeading, "styles", [
@@ -179908,12 +180486,12 @@ __publicField(_DeesHeading, "styles", [
179908
180486
  }
179909
180487
  `
179910
180488
  ]);
179911
- __runInitializers(_init94, 1, _DeesHeading);
180489
+ __runInitializers(_init95, 1, _DeesHeading);
179912
180490
  var DeesHeading = _DeesHeading;
179913
180491
 
179914
180492
  // ts_web/elements/00group-layout/dees-pagination/dees-pagination.demo.ts
179915
180493
  init_dist_ts25();
179916
- var demoFunc68 = /* @__PURE__ */ __name(() => b2`
180494
+ var demoFunc69 = /* @__PURE__ */ __name(() => b2`
179917
180495
  <div style="display: flex; align-items: center; gap: 16px;">
179918
180496
  <!-- Small set of pages -->
179919
180497
  <div style="display: flex; flex-direction: column; gap: 4px;">
@@ -179940,13 +180518,13 @@ var demoFunc68 = /* @__PURE__ */ __name(() => b2`
179940
180518
  // ts_web/elements/00group-layout/dees-pagination/dees-pagination.ts
179941
180519
  init_dist_ts25();
179942
180520
  init_theme();
179943
- var _total_dec, _page_dec, _a94, _DeesPagination_decorators, _init95, _page, _total;
180521
+ var _total_dec, _page_dec, _a95, _DeesPagination_decorators, _init96, _page, _total;
179944
180522
  _DeesPagination_decorators = [customElement("dees-pagination")];
179945
- var _DeesPagination = class _DeesPagination extends (_a94 = DeesElement, _page_dec = [n5({ type: Number, reflect: true })], _total_dec = [n5({ type: Number, reflect: true })], _a94) {
180523
+ var _DeesPagination = class _DeesPagination extends (_a95 = DeesElement, _page_dec = [n5({ type: Number, reflect: true })], _total_dec = [n5({ type: Number, reflect: true })], _a95) {
179946
180524
  constructor() {
179947
180525
  super(...arguments);
179948
- __privateAdd(this, _page, __runInitializers(_init95, 8, this, 1)), __runInitializers(_init95, 11, this);
179949
- __privateAdd(this, _total, __runInitializers(_init95, 12, this, 1)), __runInitializers(_init95, 15, this);
180526
+ __privateAdd(this, _page, __runInitializers(_init96, 8, this, 1)), __runInitializers(_init96, 11, this);
180527
+ __privateAdd(this, _total, __runInitializers(_init96, 12, this, 1)), __runInitializers(_init96, 15, this);
179950
180528
  }
179951
180529
  get pages() {
179952
180530
  const pages = [];
@@ -180016,14 +180594,14 @@ var _DeesPagination = class _DeesPagination extends (_a94 = DeesElement, _page_d
180016
180594
  );
180017
180595
  }
180018
180596
  };
180019
- _init95 = __decoratorStart(_a94);
180597
+ _init96 = __decoratorStart(_a95);
180020
180598
  _page = new WeakMap();
180021
180599
  _total = new WeakMap();
180022
- __decorateElement(_init95, 4, "page", _page_dec, _DeesPagination, _page);
180023
- __decorateElement(_init95, 4, "total", _total_dec, _DeesPagination, _total);
180024
- _DeesPagination = __decorateElement(_init95, 0, "DeesPagination", _DeesPagination_decorators, _DeesPagination);
180600
+ __decorateElement(_init96, 4, "page", _page_dec, _DeesPagination, _page);
180601
+ __decorateElement(_init96, 4, "total", _total_dec, _DeesPagination, _total);
180602
+ _DeesPagination = __decorateElement(_init96, 0, "DeesPagination", _DeesPagination_decorators, _DeesPagination);
180025
180603
  __name(_DeesPagination, "DeesPagination");
180026
- __publicField(_DeesPagination, "demo", demoFunc68);
180604
+ __publicField(_DeesPagination, "demo", demoFunc69);
180027
180605
  __publicField(_DeesPagination, "demoGroups", ["Layout"]);
180028
180606
  __publicField(_DeesPagination, "styles", [
180029
180607
  themeDefaultStyles,
@@ -180078,7 +180656,7 @@ __publicField(_DeesPagination, "styles", [
180078
180656
  }
180079
180657
  `
180080
180658
  ]);
180081
- __runInitializers(_init95, 1, _DeesPagination);
180659
+ __runInitializers(_init96, 1, _DeesPagination);
180082
180660
  var DeesPagination = _DeesPagination;
180083
180661
 
180084
180662
  // ts_web/elements/00group-layout/dees-mosaic/tree.ts
@@ -180269,7 +180847,7 @@ var addBrowserTile = /* @__PURE__ */ __name((event) => {
180269
180847
  const leaf = createMosaicLeaf("browser", `leaf-browser-${tileCounter}`);
180270
180848
  mosaic.layout = mosaicInsert(mosaic.layout, "leaf-chat", "bottom", leaf);
180271
180849
  }, "addBrowserTile");
180272
- var demoFunc69 = /* @__PURE__ */ __name(() => b2`
180850
+ var demoFunc70 = /* @__PURE__ */ __name(() => b2`
180273
180851
  <style>
180274
180852
  .mosaicDemo {
180275
180853
  display: grid;
@@ -180495,20 +181073,20 @@ var MosaicDragController = class {
180495
181073
  init_dist_ts25();
180496
181074
  init_theme();
180497
181075
  init_dees_icon();
180498
- var _dropTarget_dec, _dragEnabled_dec, _resizeEnabled_dec, _tilebarHeight_dec, _minTileHeight_dec, _minTileWidth_dec2, _focusedLeafId_dec, _surfaces_dec, _layout_dec, _a95, _DeesMosaic_decorators, _init96, _layout, _surfaces, _focusedLeafId, _minTileWidth2, _minTileHeight, _tilebarHeight, _resizeEnabled, _dragEnabled, _dropTarget;
181076
+ var _dropTarget_dec, _dragEnabled_dec, _resizeEnabled_dec, _tilebarHeight_dec, _minTileHeight_dec, _minTileWidth_dec2, _focusedLeafId_dec, _surfaces_dec, _layout_dec, _a96, _DeesMosaic_decorators, _init97, _layout, _surfaces, _focusedLeafId, _minTileWidth2, _minTileHeight, _tilebarHeight, _resizeEnabled, _dragEnabled, _dropTarget;
180499
181077
  _DeesMosaic_decorators = [customElement("dees-mosaic")];
180500
- var _DeesMosaic = class _DeesMosaic extends (_a95 = DeesElement, _layout_dec = [n5({ attribute: false })], _surfaces_dec = [n5({ attribute: false })], _focusedLeafId_dec = [n5()], _minTileWidth_dec2 = [n5({ type: Number })], _minTileHeight_dec = [n5({ type: Number })], _tilebarHeight_dec = [n5({ type: Number })], _resizeEnabled_dec = [n5({ type: Boolean })], _dragEnabled_dec = [n5({ type: Boolean })], _dropTarget_dec = [r5()], _a95) {
181078
+ var _DeesMosaic = class _DeesMosaic extends (_a96 = DeesElement, _layout_dec = [n5({ attribute: false })], _surfaces_dec = [n5({ attribute: false })], _focusedLeafId_dec = [n5()], _minTileWidth_dec2 = [n5({ type: Number })], _minTileHeight_dec = [n5({ type: Number })], _tilebarHeight_dec = [n5({ type: Number })], _resizeEnabled_dec = [n5({ type: Boolean })], _dragEnabled_dec = [n5({ type: Boolean })], _dropTarget_dec = [r5()], _a96) {
180501
181079
  constructor() {
180502
181080
  super(...arguments);
180503
- __privateAdd(this, _layout, __runInitializers(_init96, 8, this, { root: null })), __runInitializers(_init96, 11, this);
180504
- __privateAdd(this, _surfaces, __runInitializers(_init96, 12, this, {})), __runInitializers(_init96, 15, this);
180505
- __privateAdd(this, _focusedLeafId, __runInitializers(_init96, 16, this, "")), __runInitializers(_init96, 19, this);
180506
- __privateAdd(this, _minTileWidth2, __runInitializers(_init96, 20, this, 160)), __runInitializers(_init96, 23, this);
180507
- __privateAdd(this, _minTileHeight, __runInitializers(_init96, 24, this, 100)), __runInitializers(_init96, 27, this);
180508
- __privateAdd(this, _tilebarHeight, __runInitializers(_init96, 28, this, 26)), __runInitializers(_init96, 31, this);
180509
- __privateAdd(this, _resizeEnabled, __runInitializers(_init96, 32, this, true)), __runInitializers(_init96, 35, this);
180510
- __privateAdd(this, _dragEnabled, __runInitializers(_init96, 36, this, true)), __runInitializers(_init96, 39, this);
180511
- __privateAdd(this, _dropTarget, __runInitializers(_init96, 40, this, null)), __runInitializers(_init96, 43, this);
181081
+ __privateAdd(this, _layout, __runInitializers(_init97, 8, this, { root: null })), __runInitializers(_init97, 11, this);
181082
+ __privateAdd(this, _surfaces, __runInitializers(_init97, 12, this, {})), __runInitializers(_init97, 15, this);
181083
+ __privateAdd(this, _focusedLeafId, __runInitializers(_init97, 16, this, "")), __runInitializers(_init97, 19, this);
181084
+ __privateAdd(this, _minTileWidth2, __runInitializers(_init97, 20, this, 160)), __runInitializers(_init97, 23, this);
181085
+ __privateAdd(this, _minTileHeight, __runInitializers(_init97, 24, this, 100)), __runInitializers(_init97, 27, this);
181086
+ __privateAdd(this, _tilebarHeight, __runInitializers(_init97, 28, this, 26)), __runInitializers(_init97, 31, this);
181087
+ __privateAdd(this, _resizeEnabled, __runInitializers(_init97, 32, this, true)), __runInitializers(_init97, 35, this);
181088
+ __privateAdd(this, _dragEnabled, __runInitializers(_init97, 36, this, true)), __runInitializers(_init97, 39, this);
181089
+ __privateAdd(this, _dropTarget, __runInitializers(_init97, 40, this, null)), __runInitializers(_init97, 43, this);
180512
181090
  __publicField(this, "dragController", new MosaicDragController(this));
180513
181091
  /** cancels an in-flight divider drag when the host disconnects mid-gesture */
180514
181092
  __publicField(this, "activeDividerCancel", null);
@@ -180734,7 +181312,7 @@ var _DeesMosaic = class _DeesMosaic extends (_a95 = DeesElement, _layout_dec = [
180734
181312
  this.commitLayout(mosaicResize(this.layout, split2.id, dividerIndex, step), "resize");
180735
181313
  }
180736
181314
  };
180737
- _init96 = __decoratorStart(_a95);
181315
+ _init97 = __decoratorStart(_a96);
180738
181316
  _layout = new WeakMap();
180739
181317
  _surfaces = new WeakMap();
180740
181318
  _focusedLeafId = new WeakMap();
@@ -180744,18 +181322,18 @@ _tilebarHeight = new WeakMap();
180744
181322
  _resizeEnabled = new WeakMap();
180745
181323
  _dragEnabled = new WeakMap();
180746
181324
  _dropTarget = new WeakMap();
180747
- __decorateElement(_init96, 4, "layout", _layout_dec, _DeesMosaic, _layout);
180748
- __decorateElement(_init96, 4, "surfaces", _surfaces_dec, _DeesMosaic, _surfaces);
180749
- __decorateElement(_init96, 4, "focusedLeafId", _focusedLeafId_dec, _DeesMosaic, _focusedLeafId);
180750
- __decorateElement(_init96, 4, "minTileWidth", _minTileWidth_dec2, _DeesMosaic, _minTileWidth2);
180751
- __decorateElement(_init96, 4, "minTileHeight", _minTileHeight_dec, _DeesMosaic, _minTileHeight);
180752
- __decorateElement(_init96, 4, "tilebarHeight", _tilebarHeight_dec, _DeesMosaic, _tilebarHeight);
180753
- __decorateElement(_init96, 4, "resizeEnabled", _resizeEnabled_dec, _DeesMosaic, _resizeEnabled);
180754
- __decorateElement(_init96, 4, "dragEnabled", _dragEnabled_dec, _DeesMosaic, _dragEnabled);
180755
- __decorateElement(_init96, 4, "dropTarget", _dropTarget_dec, _DeesMosaic, _dropTarget);
180756
- _DeesMosaic = __decorateElement(_init96, 0, "DeesMosaic", _DeesMosaic_decorators, _DeesMosaic);
181325
+ __decorateElement(_init97, 4, "layout", _layout_dec, _DeesMosaic, _layout);
181326
+ __decorateElement(_init97, 4, "surfaces", _surfaces_dec, _DeesMosaic, _surfaces);
181327
+ __decorateElement(_init97, 4, "focusedLeafId", _focusedLeafId_dec, _DeesMosaic, _focusedLeafId);
181328
+ __decorateElement(_init97, 4, "minTileWidth", _minTileWidth_dec2, _DeesMosaic, _minTileWidth2);
181329
+ __decorateElement(_init97, 4, "minTileHeight", _minTileHeight_dec, _DeesMosaic, _minTileHeight);
181330
+ __decorateElement(_init97, 4, "tilebarHeight", _tilebarHeight_dec, _DeesMosaic, _tilebarHeight);
181331
+ __decorateElement(_init97, 4, "resizeEnabled", _resizeEnabled_dec, _DeesMosaic, _resizeEnabled);
181332
+ __decorateElement(_init97, 4, "dragEnabled", _dragEnabled_dec, _DeesMosaic, _dragEnabled);
181333
+ __decorateElement(_init97, 4, "dropTarget", _dropTarget_dec, _DeesMosaic, _dropTarget);
181334
+ _DeesMosaic = __decorateElement(_init97, 0, "DeesMosaic", _DeesMosaic_decorators, _DeesMosaic);
180757
181335
  __name(_DeesMosaic, "DeesMosaic");
180758
- __publicField(_DeesMosaic, "demo", demoFunc69);
181336
+ __publicField(_DeesMosaic, "demo", demoFunc70);
180759
181337
  __publicField(_DeesMosaic, "demoGroups", ["Layout"]);
180760
181338
  __publicField(_DeesMosaic, "styles", [
180761
181339
  themeDefaultStyles,
@@ -180998,12 +181576,12 @@ __publicField(_DeesMosaic, "styles", [
180998
181576
  }
180999
181577
  `
181000
181578
  ]);
181001
- __runInitializers(_init96, 1, _DeesMosaic);
181579
+ __runInitializers(_init97, 1, _DeesMosaic);
181002
181580
  var DeesMosaic = _DeesMosaic;
181003
181581
 
181004
181582
  // ts_web/elements/00group-layout/dees-settings/dees-settings.demo.ts
181005
181583
  init_dist_ts25();
181006
- var demoFunc70 = /* @__PURE__ */ __name(() => {
181584
+ var demoFunc71 = /* @__PURE__ */ __name(() => {
181007
181585
  const acmeFields = [
181008
181586
  { key: "email", label: "Account email", value: "admin@example.com" },
181009
181587
  { key: "status", label: "Status", value: "enabled" },
@@ -181066,15 +181644,15 @@ init_dist_ts25();
181066
181644
  init_fonts();
181067
181645
  init_theme();
181068
181646
  init_dees_tile();
181069
- var _actions_dec2, _settingsFields_dec, _description_dec2, _heading_dec7, _a96, _DeesSettings_decorators, _init97, _heading7, _description2, _settingsFields, _actions2;
181647
+ var _actions_dec2, _settingsFields_dec, _description_dec2, _heading_dec7, _a97, _DeesSettings_decorators, _init98, _heading7, _description2, _settingsFields, _actions2;
181070
181648
  _DeesSettings_decorators = [customElement("dees-settings")];
181071
- var _DeesSettings = class _DeesSettings extends (_a96 = DeesElement, _heading_dec7 = [n5({ type: String })], _description_dec2 = [n5({ type: String })], _settingsFields_dec = [n5({ attribute: false })], _actions_dec2 = [n5({ attribute: false })], _a96) {
181649
+ var _DeesSettings = class _DeesSettings extends (_a97 = DeesElement, _heading_dec7 = [n5({ type: String })], _description_dec2 = [n5({ type: String })], _settingsFields_dec = [n5({ attribute: false })], _actions_dec2 = [n5({ attribute: false })], _a97) {
181072
181650
  constructor() {
181073
181651
  super(...arguments);
181074
- __privateAdd(this, _heading7, __runInitializers(_init97, 8, this, "")), __runInitializers(_init97, 11, this);
181075
- __privateAdd(this, _description2, __runInitializers(_init97, 12, this, "")), __runInitializers(_init97, 15, this);
181076
- __privateAdd(this, _settingsFields, __runInitializers(_init97, 16, this, [])), __runInitializers(_init97, 19, this);
181077
- __privateAdd(this, _actions2, __runInitializers(_init97, 20, this, [])), __runInitializers(_init97, 23, this);
181652
+ __privateAdd(this, _heading7, __runInitializers(_init98, 8, this, "")), __runInitializers(_init98, 11, this);
181653
+ __privateAdd(this, _description2, __runInitializers(_init98, 12, this, "")), __runInitializers(_init98, 15, this);
181654
+ __privateAdd(this, _settingsFields, __runInitializers(_init98, 16, this, [])), __runInitializers(_init98, 19, this);
181655
+ __privateAdd(this, _actions2, __runInitializers(_init98, 20, this, [])), __runInitializers(_init98, 23, this);
181078
181656
  }
181079
181657
  render() {
181080
181658
  const hasFields = this.settingsFields.length > 0;
@@ -181113,18 +181691,18 @@ var _DeesSettings = class _DeesSettings extends (_a96 = DeesElement, _heading_de
181113
181691
  `;
181114
181692
  }
181115
181693
  };
181116
- _init97 = __decoratorStart(_a96);
181694
+ _init98 = __decoratorStart(_a97);
181117
181695
  _heading7 = new WeakMap();
181118
181696
  _description2 = new WeakMap();
181119
181697
  _settingsFields = new WeakMap();
181120
181698
  _actions2 = new WeakMap();
181121
- __decorateElement(_init97, 4, "heading", _heading_dec7, _DeesSettings, _heading7);
181122
- __decorateElement(_init97, 4, "description", _description_dec2, _DeesSettings, _description2);
181123
- __decorateElement(_init97, 4, "settingsFields", _settingsFields_dec, _DeesSettings, _settingsFields);
181124
- __decorateElement(_init97, 4, "actions", _actions_dec2, _DeesSettings, _actions2);
181125
- _DeesSettings = __decorateElement(_init97, 0, "DeesSettings", _DeesSettings_decorators, _DeesSettings);
181699
+ __decorateElement(_init98, 4, "heading", _heading_dec7, _DeesSettings, _heading7);
181700
+ __decorateElement(_init98, 4, "description", _description_dec2, _DeesSettings, _description2);
181701
+ __decorateElement(_init98, 4, "settingsFields", _settingsFields_dec, _DeesSettings, _settingsFields);
181702
+ __decorateElement(_init98, 4, "actions", _actions_dec2, _DeesSettings, _actions2);
181703
+ _DeesSettings = __decorateElement(_init98, 0, "DeesSettings", _DeesSettings_decorators, _DeesSettings);
181126
181704
  __name(_DeesSettings, "DeesSettings");
181127
- __publicField(_DeesSettings, "demo", demoFunc70);
181705
+ __publicField(_DeesSettings, "demo", demoFunc71);
181128
181706
  __publicField(_DeesSettings, "demoGroups", ["Layout"]);
181129
181707
  __publicField(_DeesSettings, "styles", [
181130
181708
  themeDefaultStyles,
@@ -181224,7 +181802,7 @@ __publicField(_DeesSettings, "styles", [
181224
181802
  }
181225
181803
  `
181226
181804
  ]);
181227
- __runInitializers(_init97, 1, _DeesSettings);
181805
+ __runInitializers(_init98, 1, _DeesSettings);
181228
181806
  var DeesSettings = _DeesSettings;
181229
181807
 
181230
181808
  // ts_web/elements/00group-layout/dees-sparklebox/dees-sparklebox.engine.ts
@@ -181405,7 +181983,7 @@ var SparkleField = class {
181405
181983
 
181406
181984
  // ts_web/elements/00group-layout/dees-sparklebox/dees-sparklebox.demo.ts
181407
181985
  init_dist_ts25();
181408
- function demoFunc71() {
181986
+ function demoFunc72() {
181409
181987
  return b2`
181410
181988
  <style>
181411
181989
  .sparklebox-demo {
@@ -181489,22 +182067,22 @@ function demoFunc71() {
181489
182067
  </div>
181490
182068
  `;
181491
182069
  }
181492
- __name(demoFunc71, "demoFunc");
182070
+ __name(demoFunc72, "demoFunc");
181493
182071
 
181494
182072
  // ts_web/elements/00group-layout/dees-sparklebox/dees-sparklebox.ts
181495
182073
  init_dist_ts25();
181496
182074
  init_theme();
181497
- var _vignette_dec, _speed_dec, _gap_dec2, _colors_dec, _a97, _DeesSparklebox_decorators, _init98, _colors, _gap2, _speed, _vignette;
182075
+ var _vignette_dec, _speed_dec, _gap_dec2, _colors_dec, _a98, _DeesSparklebox_decorators, _init99, _colors, _gap2, _speed, _vignette;
181498
182076
  var DEFAULT_COLORS_DARK = ["#fef08a", "#fde047", "#eab308"];
181499
182077
  var DEFAULT_COLORS_BRIGHT = ["#555555", "#999999", "#cccccc"];
181500
182078
  _DeesSparklebox_decorators = [customElement("dees-sparklebox")];
181501
- var _DeesSparklebox = class _DeesSparklebox extends (_a97 = DeesElement, _colors_dec = [n5({ type: String })], _gap_dec2 = [n5({ type: Number })], _speed_dec = [n5({ type: Number })], _vignette_dec = [n5({ type: Boolean })], _a97) {
182079
+ var _DeesSparklebox = class _DeesSparklebox extends (_a98 = DeesElement, _colors_dec = [n5({ type: String })], _gap_dec2 = [n5({ type: Number })], _speed_dec = [n5({ type: Number })], _vignette_dec = [n5({ type: Boolean })], _a98) {
181502
182080
  constructor() {
181503
182081
  super(...arguments);
181504
- __privateAdd(this, _colors, __runInitializers(_init98, 8, this, "")), __runInitializers(_init98, 11, this);
181505
- __privateAdd(this, _gap2, __runInitializers(_init98, 12, this, 4)), __runInitializers(_init98, 15, this);
181506
- __privateAdd(this, _speed, __runInitializers(_init98, 16, this, 35)), __runInitializers(_init98, 19, this);
181507
- __privateAdd(this, _vignette, __runInitializers(_init98, 20, this, true)), __runInitializers(_init98, 23, this);
182082
+ __privateAdd(this, _colors, __runInitializers(_init99, 8, this, "")), __runInitializers(_init99, 11, this);
182083
+ __privateAdd(this, _gap2, __runInitializers(_init99, 12, this, 4)), __runInitializers(_init99, 15, this);
182084
+ __privateAdd(this, _speed, __runInitializers(_init99, 16, this, 35)), __runInitializers(_init99, 19, this);
182085
+ __privateAdd(this, _vignette, __runInitializers(_init99, 20, this, true)), __runInitializers(_init99, 23, this);
181508
182086
  __publicField(this, "canvasEl");
181509
182087
  __publicField(this, "field");
181510
182088
  __publicField(this, "resizeObserver");
@@ -181595,18 +182173,18 @@ var _DeesSparklebox = class _DeesSparklebox extends (_a97 = DeesElement, _colors
181595
182173
  this.field.play(this.isVisible ? "appear" : "disappear");
181596
182174
  }
181597
182175
  };
181598
- _init98 = __decoratorStart(_a97);
182176
+ _init99 = __decoratorStart(_a98);
181599
182177
  _colors = new WeakMap();
181600
182178
  _gap2 = new WeakMap();
181601
182179
  _speed = new WeakMap();
181602
182180
  _vignette = new WeakMap();
181603
- __decorateElement(_init98, 4, "colors", _colors_dec, _DeesSparklebox, _colors);
181604
- __decorateElement(_init98, 4, "gap", _gap_dec2, _DeesSparklebox, _gap2);
181605
- __decorateElement(_init98, 4, "speed", _speed_dec, _DeesSparklebox, _speed);
181606
- __decorateElement(_init98, 4, "vignette", _vignette_dec, _DeesSparklebox, _vignette);
181607
- _DeesSparklebox = __decorateElement(_init98, 0, "DeesSparklebox", _DeesSparklebox_decorators, _DeesSparklebox);
182181
+ __decorateElement(_init99, 4, "colors", _colors_dec, _DeesSparklebox, _colors);
182182
+ __decorateElement(_init99, 4, "gap", _gap_dec2, _DeesSparklebox, _gap2);
182183
+ __decorateElement(_init99, 4, "speed", _speed_dec, _DeesSparklebox, _speed);
182184
+ __decorateElement(_init99, 4, "vignette", _vignette_dec, _DeesSparklebox, _vignette);
182185
+ _DeesSparklebox = __decorateElement(_init99, 0, "DeesSparklebox", _DeesSparklebox_decorators, _DeesSparklebox);
181608
182186
  __name(_DeesSparklebox, "DeesSparklebox");
181609
- __publicField(_DeesSparklebox, "demo", demoFunc71);
182187
+ __publicField(_DeesSparklebox, "demo", demoFunc72);
181610
182188
  __publicField(_DeesSparklebox, "demoGroups", ["Layout"]);
181611
182189
  __publicField(_DeesSparklebox, "styles", [
181612
182190
  themeDefaultStyles,
@@ -181663,7 +182241,7 @@ __publicField(_DeesSparklebox, "styles", [
181663
182241
  }
181664
182242
  `
181665
182243
  ]);
181666
- __runInitializers(_init98, 1, _DeesSparklebox);
182244
+ __runInitializers(_init99, 1, _DeesSparklebox);
181667
182245
  var DeesSparklebox = _DeesSparklebox;
181668
182246
 
181669
182247
  // ts_web/elements/00group-layout/dees-stepper/dees-stepper.demo.ts
@@ -181874,9 +182452,9 @@ init_zindex();
181874
182452
  init_dees_windowlayer();
181875
182453
  init_dees_modal();
181876
182454
  init_dees_tile();
181877
- var _activeFormValid_dec, _activeForm_dec, _stepperZIndex_dec, _cancelable_dec, _overlay_dec, _selectedStep_dec, _steps_dec, _a98, _DeesStepper_decorators, _init99, _steps, _selectedStep, _overlay, _cancelable, _stepperZIndex, _activeForm, _activeFormValid;
182455
+ var _activeFormValid_dec, _activeForm_dec, _stepperZIndex_dec, _cancelable_dec, _overlay_dec, _selectedStep_dec, _steps_dec, _a99, _DeesStepper_decorators, _init100, _steps, _selectedStep, _overlay, _cancelable, _stepperZIndex, _activeForm, _activeFormValid;
181878
182456
  _DeesStepper_decorators = [customElement("dees-stepper")];
181879
- var _DeesStepper = class _DeesStepper extends (_a98 = DeesElement, _steps_dec = [n5({
182457
+ var _DeesStepper = class _DeesStepper extends (_a99 = DeesElement, _steps_dec = [n5({
181880
182458
  type: Array
181881
182459
  })], _selectedStep_dec = [n5({
181882
182460
  type: Object
@@ -181886,16 +182464,16 @@ var _DeesStepper = class _DeesStepper extends (_a98 = DeesElement, _steps_dec =
181886
182464
  })], _cancelable_dec = [n5({
181887
182465
  type: Boolean,
181888
182466
  reflect: true
181889
- })], _stepperZIndex_dec = [n5({ type: Number, attribute: false })], _activeForm_dec = [n5({ type: Object, attribute: false })], _activeFormValid_dec = [n5({ type: Boolean, attribute: false })], _a98) {
182467
+ })], _stepperZIndex_dec = [n5({ type: Number, attribute: false })], _activeForm_dec = [n5({ type: Object, attribute: false })], _activeFormValid_dec = [n5({ type: Boolean, attribute: false })], _a99) {
181890
182468
  constructor() {
181891
182469
  super();
181892
- __privateAdd(this, _steps, __runInitializers(_init99, 8, this, [])), __runInitializers(_init99, 11, this);
181893
- __privateAdd(this, _selectedStep, __runInitializers(_init99, 12, this)), __runInitializers(_init99, 15, this);
181894
- __privateAdd(this, _overlay, __runInitializers(_init99, 16, this, false)), __runInitializers(_init99, 19, this);
181895
- __privateAdd(this, _cancelable, __runInitializers(_init99, 20, this, true)), __runInitializers(_init99, 23, this);
181896
- __privateAdd(this, _stepperZIndex, __runInitializers(_init99, 24, this, 1e3)), __runInitializers(_init99, 27, this);
181897
- __privateAdd(this, _activeForm, __runInitializers(_init99, 28, this, null)), __runInitializers(_init99, 31, this);
181898
- __privateAdd(this, _activeFormValid, __runInitializers(_init99, 32, this, true)), __runInitializers(_init99, 35, this);
182470
+ __privateAdd(this, _steps, __runInitializers(_init100, 8, this, [])), __runInitializers(_init100, 11, this);
182471
+ __privateAdd(this, _selectedStep, __runInitializers(_init100, 12, this)), __runInitializers(_init100, 15, this);
182472
+ __privateAdd(this, _overlay, __runInitializers(_init100, 16, this, false)), __runInitializers(_init100, 19, this);
182473
+ __privateAdd(this, _cancelable, __runInitializers(_init100, 20, this, true)), __runInitializers(_init100, 23, this);
182474
+ __privateAdd(this, _stepperZIndex, __runInitializers(_init100, 24, this, 1e3)), __runInitializers(_init100, 27, this);
182475
+ __privateAdd(this, _activeForm, __runInitializers(_init100, 28, this, null)), __runInitializers(_init100, 31, this);
182476
+ __privateAdd(this, _activeFormValid, __runInitializers(_init100, 32, this, true)), __runInitializers(_init100, 35, this);
181899
182477
  __publicField(this, "activeFormSubscription");
181900
182478
  __publicField(this, "windowLayer");
181901
182479
  __publicField(this, "getIndexOfStep", /* @__PURE__ */ __name((stepArg) => {
@@ -182301,7 +182879,7 @@ var _DeesStepper = class _DeesStepper extends (_a98 = DeesElement, _steps_dec =
182301
182879
  zIndexRegistry.unregister(this);
182302
182880
  }
182303
182881
  };
182304
- _init99 = __decoratorStart(_a98);
182882
+ _init100 = __decoratorStart(_a99);
182305
182883
  _steps = new WeakMap();
182306
182884
  _selectedStep = new WeakMap();
182307
182885
  _overlay = new WeakMap();
@@ -182309,14 +182887,14 @@ _cancelable = new WeakMap();
182309
182887
  _stepperZIndex = new WeakMap();
182310
182888
  _activeForm = new WeakMap();
182311
182889
  _activeFormValid = new WeakMap();
182312
- __decorateElement(_init99, 4, "steps", _steps_dec, _DeesStepper, _steps);
182313
- __decorateElement(_init99, 4, "selectedStep", _selectedStep_dec, _DeesStepper, _selectedStep);
182314
- __decorateElement(_init99, 4, "overlay", _overlay_dec, _DeesStepper, _overlay);
182315
- __decorateElement(_init99, 4, "cancelable", _cancelable_dec, _DeesStepper, _cancelable);
182316
- __decorateElement(_init99, 4, "stepperZIndex", _stepperZIndex_dec, _DeesStepper, _stepperZIndex);
182317
- __decorateElement(_init99, 4, "activeForm", _activeForm_dec, _DeesStepper, _activeForm);
182318
- __decorateElement(_init99, 4, "activeFormValid", _activeFormValid_dec, _DeesStepper, _activeFormValid);
182319
- _DeesStepper = __decorateElement(_init99, 0, "DeesStepper", _DeesStepper_decorators, _DeesStepper);
182890
+ __decorateElement(_init100, 4, "steps", _steps_dec, _DeesStepper, _steps);
182891
+ __decorateElement(_init100, 4, "selectedStep", _selectedStep_dec, _DeesStepper, _selectedStep);
182892
+ __decorateElement(_init100, 4, "overlay", _overlay_dec, _DeesStepper, _overlay);
182893
+ __decorateElement(_init100, 4, "cancelable", _cancelable_dec, _DeesStepper, _cancelable);
182894
+ __decorateElement(_init100, 4, "stepperZIndex", _stepperZIndex_dec, _DeesStepper, _stepperZIndex);
182895
+ __decorateElement(_init100, 4, "activeForm", _activeForm_dec, _DeesStepper, _activeForm);
182896
+ __decorateElement(_init100, 4, "activeFormValid", _activeFormValid_dec, _DeesStepper, _activeFormValid);
182897
+ _DeesStepper = __decorateElement(_init100, 0, "DeesStepper", _DeesStepper_decorators, _DeesStepper);
182320
182898
  __name(_DeesStepper, "DeesStepper");
182321
182899
  // STATIC
182322
182900
  __publicField(_DeesStepper, "demo", stepperDemo);
@@ -182591,7 +183169,7 @@ __publicField(_DeesStepper, "styles", [
182591
183169
  }
182592
183170
  `
182593
183171
  ]);
182594
- __runInitializers(_init99, 1, _DeesStepper);
183172
+ __runInitializers(_init100, 1, _DeesStepper);
182595
183173
  var DeesStepper = _DeesStepper;
182596
183174
 
182597
183175
  // ts_web/elements/00group-layout/dees-tile/index.ts
@@ -182686,23 +183264,23 @@ var demo = /* @__PURE__ */ __name(() => b2`
182686
183264
  init_dist_ts25();
182687
183265
  init_theme();
182688
183266
  init_dees_icon();
182689
- var _imageNaturalHeight_dec, _imageNaturalWidth_dec, _error_dec2, _loading_dec5, _isDragging_dec2, _panY_dec, _panX_dec, _zoom_dec, _showToolbar_dec2, _fit_dec, _alt_dec, _src_dec, _a99, _DeesImageViewer_decorators, _init100, _src, _alt, _fit, _showToolbar2, _zoom, _panX, _panY, _isDragging2, _loading5, _error2, _imageNaturalWidth, _imageNaturalHeight;
183267
+ var _imageNaturalHeight_dec, _imageNaturalWidth_dec, _error_dec2, _loading_dec5, _isDragging_dec2, _panY_dec, _panX_dec, _zoom_dec, _showToolbar_dec2, _fit_dec, _alt_dec, _src_dec, _a100, _DeesImageViewer_decorators, _init101, _src, _alt, _fit, _showToolbar2, _zoom, _panX, _panY, _isDragging2, _loading5, _error2, _imageNaturalWidth, _imageNaturalHeight;
182690
183268
  _DeesImageViewer_decorators = [customElement("dees-image-viewer")];
182691
- var _DeesImageViewer = class _DeesImageViewer extends (_a99 = DeesElement, _src_dec = [n5()], _alt_dec = [n5()], _fit_dec = [n5()], _showToolbar_dec2 = [n5({ type: Boolean })], _zoom_dec = [r5()], _panX_dec = [r5()], _panY_dec = [r5()], _isDragging_dec2 = [r5()], _loading_dec5 = [r5()], _error_dec2 = [r5()], _imageNaturalWidth_dec = [r5()], _imageNaturalHeight_dec = [r5()], _a99) {
183269
+ var _DeesImageViewer = class _DeesImageViewer extends (_a100 = DeesElement, _src_dec = [n5()], _alt_dec = [n5()], _fit_dec = [n5()], _showToolbar_dec2 = [n5({ type: Boolean })], _zoom_dec = [r5()], _panX_dec = [r5()], _panY_dec = [r5()], _isDragging_dec2 = [r5()], _loading_dec5 = [r5()], _error_dec2 = [r5()], _imageNaturalWidth_dec = [r5()], _imageNaturalHeight_dec = [r5()], _a100) {
182692
183270
  constructor() {
182693
183271
  super(...arguments);
182694
- __privateAdd(this, _src, __runInitializers(_init100, 8, this, "")), __runInitializers(_init100, 11, this);
182695
- __privateAdd(this, _alt, __runInitializers(_init100, 12, this, "")), __runInitializers(_init100, 15, this);
182696
- __privateAdd(this, _fit, __runInitializers(_init100, 16, this, "contain")), __runInitializers(_init100, 19, this);
182697
- __privateAdd(this, _showToolbar2, __runInitializers(_init100, 20, this, true)), __runInitializers(_init100, 23, this);
182698
- __privateAdd(this, _zoom, __runInitializers(_init100, 24, this, 1)), __runInitializers(_init100, 27, this);
182699
- __privateAdd(this, _panX, __runInitializers(_init100, 28, this, 0)), __runInitializers(_init100, 31, this);
182700
- __privateAdd(this, _panY, __runInitializers(_init100, 32, this, 0)), __runInitializers(_init100, 35, this);
182701
- __privateAdd(this, _isDragging2, __runInitializers(_init100, 36, this, false)), __runInitializers(_init100, 39, this);
182702
- __privateAdd(this, _loading5, __runInitializers(_init100, 40, this, true)), __runInitializers(_init100, 43, this);
182703
- __privateAdd(this, _error2, __runInitializers(_init100, 44, this, "")), __runInitializers(_init100, 47, this);
182704
- __privateAdd(this, _imageNaturalWidth, __runInitializers(_init100, 48, this, 0)), __runInitializers(_init100, 51, this);
182705
- __privateAdd(this, _imageNaturalHeight, __runInitializers(_init100, 52, this, 0)), __runInitializers(_init100, 55, this);
183272
+ __privateAdd(this, _src, __runInitializers(_init101, 8, this, "")), __runInitializers(_init101, 11, this);
183273
+ __privateAdd(this, _alt, __runInitializers(_init101, 12, this, "")), __runInitializers(_init101, 15, this);
183274
+ __privateAdd(this, _fit, __runInitializers(_init101, 16, this, "contain")), __runInitializers(_init101, 19, this);
183275
+ __privateAdd(this, _showToolbar2, __runInitializers(_init101, 20, this, true)), __runInitializers(_init101, 23, this);
183276
+ __privateAdd(this, _zoom, __runInitializers(_init101, 24, this, 1)), __runInitializers(_init101, 27, this);
183277
+ __privateAdd(this, _panX, __runInitializers(_init101, 28, this, 0)), __runInitializers(_init101, 31, this);
183278
+ __privateAdd(this, _panY, __runInitializers(_init101, 32, this, 0)), __runInitializers(_init101, 35, this);
183279
+ __privateAdd(this, _isDragging2, __runInitializers(_init101, 36, this, false)), __runInitializers(_init101, 39, this);
183280
+ __privateAdd(this, _loading5, __runInitializers(_init101, 40, this, true)), __runInitializers(_init101, 43, this);
183281
+ __privateAdd(this, _error2, __runInitializers(_init101, 44, this, "")), __runInitializers(_init101, 47, this);
183282
+ __privateAdd(this, _imageNaturalWidth, __runInitializers(_init101, 48, this, 0)), __runInitializers(_init101, 51, this);
183283
+ __privateAdd(this, _imageNaturalHeight, __runInitializers(_init101, 52, this, 0)), __runInitializers(_init101, 55, this);
182706
183284
  __publicField(this, "dragStartX", 0);
182707
183285
  __publicField(this, "dragStartY", 0);
182708
183286
  __publicField(this, "dragStartPanX", 0);
@@ -183040,7 +183618,7 @@ var _DeesImageViewer = class _DeesImageViewer extends (_a99 = DeesElement, _src_
183040
183618
  }
183041
183619
  }
183042
183620
  };
183043
- _init100 = __decoratorStart(_a99);
183621
+ _init101 = __decoratorStart(_a100);
183044
183622
  _src = new WeakMap();
183045
183623
  _alt = new WeakMap();
183046
183624
  _fit = new WeakMap();
@@ -183053,24 +183631,24 @@ _loading5 = new WeakMap();
183053
183631
  _error2 = new WeakMap();
183054
183632
  _imageNaturalWidth = new WeakMap();
183055
183633
  _imageNaturalHeight = new WeakMap();
183056
- __decorateElement(_init100, 4, "src", _src_dec, _DeesImageViewer, _src);
183057
- __decorateElement(_init100, 4, "alt", _alt_dec, _DeesImageViewer, _alt);
183058
- __decorateElement(_init100, 4, "fit", _fit_dec, _DeesImageViewer, _fit);
183059
- __decorateElement(_init100, 4, "showToolbar", _showToolbar_dec2, _DeesImageViewer, _showToolbar2);
183060
- __decorateElement(_init100, 4, "zoom", _zoom_dec, _DeesImageViewer, _zoom);
183061
- __decorateElement(_init100, 4, "panX", _panX_dec, _DeesImageViewer, _panX);
183062
- __decorateElement(_init100, 4, "panY", _panY_dec, _DeesImageViewer, _panY);
183063
- __decorateElement(_init100, 4, "isDragging", _isDragging_dec2, _DeesImageViewer, _isDragging2);
183064
- __decorateElement(_init100, 4, "loading", _loading_dec5, _DeesImageViewer, _loading5);
183065
- __decorateElement(_init100, 4, "error", _error_dec2, _DeesImageViewer, _error2);
183066
- __decorateElement(_init100, 4, "imageNaturalWidth", _imageNaturalWidth_dec, _DeesImageViewer, _imageNaturalWidth);
183067
- __decorateElement(_init100, 4, "imageNaturalHeight", _imageNaturalHeight_dec, _DeesImageViewer, _imageNaturalHeight);
183068
- _DeesImageViewer = __decorateElement(_init100, 0, "DeesImageViewer", _DeesImageViewer_decorators, _DeesImageViewer);
183634
+ __decorateElement(_init101, 4, "src", _src_dec, _DeesImageViewer, _src);
183635
+ __decorateElement(_init101, 4, "alt", _alt_dec, _DeesImageViewer, _alt);
183636
+ __decorateElement(_init101, 4, "fit", _fit_dec, _DeesImageViewer, _fit);
183637
+ __decorateElement(_init101, 4, "showToolbar", _showToolbar_dec2, _DeesImageViewer, _showToolbar2);
183638
+ __decorateElement(_init101, 4, "zoom", _zoom_dec, _DeesImageViewer, _zoom);
183639
+ __decorateElement(_init101, 4, "panX", _panX_dec, _DeesImageViewer, _panX);
183640
+ __decorateElement(_init101, 4, "panY", _panY_dec, _DeesImageViewer, _panY);
183641
+ __decorateElement(_init101, 4, "isDragging", _isDragging_dec2, _DeesImageViewer, _isDragging2);
183642
+ __decorateElement(_init101, 4, "loading", _loading_dec5, _DeesImageViewer, _loading5);
183643
+ __decorateElement(_init101, 4, "error", _error_dec2, _DeesImageViewer, _error2);
183644
+ __decorateElement(_init101, 4, "imageNaturalWidth", _imageNaturalWidth_dec, _DeesImageViewer, _imageNaturalWidth);
183645
+ __decorateElement(_init101, 4, "imageNaturalHeight", _imageNaturalHeight_dec, _DeesImageViewer, _imageNaturalHeight);
183646
+ _DeesImageViewer = __decorateElement(_init101, 0, "DeesImageViewer", _DeesImageViewer_decorators, _DeesImageViewer);
183069
183647
  __name(_DeesImageViewer, "DeesImageViewer");
183070
183648
  __publicField(_DeesImageViewer, "styles", [themeDefaultStyles]);
183071
183649
  __publicField(_DeesImageViewer, "demo", demo);
183072
183650
  __publicField(_DeesImageViewer, "demoGroups", ["Media"]);
183073
- __runInitializers(_init100, 1, _DeesImageViewer);
183651
+ __runInitializers(_init101, 1, _DeesImageViewer);
183074
183652
  var DeesImageViewer = _DeesImageViewer;
183075
183653
 
183076
183654
  // ts_web/elements/00group-media/dees-audio-viewer/demo.ts
@@ -183147,26 +183725,26 @@ var demo2 = /* @__PURE__ */ __name(() => b2`
183147
183725
  init_dist_ts25();
183148
183726
  init_theme();
183149
183727
  init_dees_icon();
183150
- var _waveformReady_dec, _waveformData_dec, _error_dec3, _loading_dec6, _isMuted_dec, _volume_dec, _duration_dec2, _currentTime_dec, _isPlaying_dec, _loop_dec, _autoplay_dec, _showWaveform_dec, _artist_dec, _title_dec2, _src_dec2, _a100, _DeesAudioViewer_decorators, _init101, _src2, _title2, _artist, _showWaveform, _autoplay, _loop, _isPlaying, _currentTime, _duration2, _volume, _isMuted, _loading6, _error3, _waveformData, _waveformReady;
183728
+ var _waveformReady_dec, _waveformData_dec, _error_dec3, _loading_dec6, _isMuted_dec, _volume_dec, _duration_dec2, _currentTime_dec, _isPlaying_dec, _loop_dec, _autoplay_dec, _showWaveform_dec, _artist_dec, _title_dec2, _src_dec2, _a101, _DeesAudioViewer_decorators, _init102, _src2, _title2, _artist, _showWaveform, _autoplay, _loop, _isPlaying, _currentTime, _duration2, _volume, _isMuted, _loading6, _error3, _waveformData, _waveformReady;
183151
183729
  _DeesAudioViewer_decorators = [customElement("dees-audio-viewer")];
183152
- var _DeesAudioViewer = class _DeesAudioViewer extends (_a100 = DeesElement, _src_dec2 = [n5()], _title_dec2 = [n5()], _artist_dec = [n5()], _showWaveform_dec = [n5({ type: Boolean })], _autoplay_dec = [n5({ type: Boolean })], _loop_dec = [n5({ type: Boolean })], _isPlaying_dec = [r5()], _currentTime_dec = [r5()], _duration_dec2 = [r5()], _volume_dec = [r5()], _isMuted_dec = [r5()], _loading_dec6 = [r5()], _error_dec3 = [r5()], _waveformData_dec = [r5()], _waveformReady_dec = [r5()], _a100) {
183730
+ var _DeesAudioViewer = class _DeesAudioViewer extends (_a101 = DeesElement, _src_dec2 = [n5()], _title_dec2 = [n5()], _artist_dec = [n5()], _showWaveform_dec = [n5({ type: Boolean })], _autoplay_dec = [n5({ type: Boolean })], _loop_dec = [n5({ type: Boolean })], _isPlaying_dec = [r5()], _currentTime_dec = [r5()], _duration_dec2 = [r5()], _volume_dec = [r5()], _isMuted_dec = [r5()], _loading_dec6 = [r5()], _error_dec3 = [r5()], _waveformData_dec = [r5()], _waveformReady_dec = [r5()], _a101) {
183153
183731
  constructor() {
183154
183732
  super(...arguments);
183155
- __privateAdd(this, _src2, __runInitializers(_init101, 8, this, "")), __runInitializers(_init101, 11, this);
183156
- __privateAdd(this, _title2, __runInitializers(_init101, 12, this, "")), __runInitializers(_init101, 15, this);
183157
- __privateAdd(this, _artist, __runInitializers(_init101, 16, this, "")), __runInitializers(_init101, 19, this);
183158
- __privateAdd(this, _showWaveform, __runInitializers(_init101, 20, this, true)), __runInitializers(_init101, 23, this);
183159
- __privateAdd(this, _autoplay, __runInitializers(_init101, 24, this, false)), __runInitializers(_init101, 27, this);
183160
- __privateAdd(this, _loop, __runInitializers(_init101, 28, this, false)), __runInitializers(_init101, 31, this);
183161
- __privateAdd(this, _isPlaying, __runInitializers(_init101, 32, this, false)), __runInitializers(_init101, 35, this);
183162
- __privateAdd(this, _currentTime, __runInitializers(_init101, 36, this, 0)), __runInitializers(_init101, 39, this);
183163
- __privateAdd(this, _duration2, __runInitializers(_init101, 40, this, 0)), __runInitializers(_init101, 43, this);
183164
- __privateAdd(this, _volume, __runInitializers(_init101, 44, this, 1)), __runInitializers(_init101, 47, this);
183165
- __privateAdd(this, _isMuted, __runInitializers(_init101, 48, this, false)), __runInitializers(_init101, 51, this);
183166
- __privateAdd(this, _loading6, __runInitializers(_init101, 52, this, false)), __runInitializers(_init101, 55, this);
183167
- __privateAdd(this, _error3, __runInitializers(_init101, 56, this, "")), __runInitializers(_init101, 59, this);
183168
- __privateAdd(this, _waveformData, __runInitializers(_init101, 60, this, [])), __runInitializers(_init101, 63, this);
183169
- __privateAdd(this, _waveformReady, __runInitializers(_init101, 64, this, false)), __runInitializers(_init101, 67, this);
183733
+ __privateAdd(this, _src2, __runInitializers(_init102, 8, this, "")), __runInitializers(_init102, 11, this);
183734
+ __privateAdd(this, _title2, __runInitializers(_init102, 12, this, "")), __runInitializers(_init102, 15, this);
183735
+ __privateAdd(this, _artist, __runInitializers(_init102, 16, this, "")), __runInitializers(_init102, 19, this);
183736
+ __privateAdd(this, _showWaveform, __runInitializers(_init102, 20, this, true)), __runInitializers(_init102, 23, this);
183737
+ __privateAdd(this, _autoplay, __runInitializers(_init102, 24, this, false)), __runInitializers(_init102, 27, this);
183738
+ __privateAdd(this, _loop, __runInitializers(_init102, 28, this, false)), __runInitializers(_init102, 31, this);
183739
+ __privateAdd(this, _isPlaying, __runInitializers(_init102, 32, this, false)), __runInitializers(_init102, 35, this);
183740
+ __privateAdd(this, _currentTime, __runInitializers(_init102, 36, this, 0)), __runInitializers(_init102, 39, this);
183741
+ __privateAdd(this, _duration2, __runInitializers(_init102, 40, this, 0)), __runInitializers(_init102, 43, this);
183742
+ __privateAdd(this, _volume, __runInitializers(_init102, 44, this, 1)), __runInitializers(_init102, 47, this);
183743
+ __privateAdd(this, _isMuted, __runInitializers(_init102, 48, this, false)), __runInitializers(_init102, 51, this);
183744
+ __privateAdd(this, _loading6, __runInitializers(_init102, 52, this, false)), __runInitializers(_init102, 55, this);
183745
+ __privateAdd(this, _error3, __runInitializers(_init102, 56, this, "")), __runInitializers(_init102, 59, this);
183746
+ __privateAdd(this, _waveformData, __runInitializers(_init102, 60, this, [])), __runInitializers(_init102, 63, this);
183747
+ __privateAdd(this, _waveformReady, __runInitializers(_init102, 64, this, false)), __runInitializers(_init102, 67, this);
183170
183748
  __publicField(this, "audioElement", null);
183171
183749
  __publicField(this, "canvasElement", null);
183172
183750
  __publicField(this, "animFrameId", 0);
@@ -183662,7 +184240,7 @@ var _DeesAudioViewer = class _DeesAudioViewer extends (_a100 = DeesElement, _src
183662
184240
  this.waveformReady = false;
183663
184241
  }
183664
184242
  };
183665
- _init101 = __decoratorStart(_a100);
184243
+ _init102 = __decoratorStart(_a101);
183666
184244
  _src2 = new WeakMap();
183667
184245
  _title2 = new WeakMap();
183668
184246
  _artist = new WeakMap();
@@ -183678,27 +184256,27 @@ _loading6 = new WeakMap();
183678
184256
  _error3 = new WeakMap();
183679
184257
  _waveformData = new WeakMap();
183680
184258
  _waveformReady = new WeakMap();
183681
- __decorateElement(_init101, 4, "src", _src_dec2, _DeesAudioViewer, _src2);
183682
- __decorateElement(_init101, 4, "title", _title_dec2, _DeesAudioViewer, _title2);
183683
- __decorateElement(_init101, 4, "artist", _artist_dec, _DeesAudioViewer, _artist);
183684
- __decorateElement(_init101, 4, "showWaveform", _showWaveform_dec, _DeesAudioViewer, _showWaveform);
183685
- __decorateElement(_init101, 4, "autoplay", _autoplay_dec, _DeesAudioViewer, _autoplay);
183686
- __decorateElement(_init101, 4, "loop", _loop_dec, _DeesAudioViewer, _loop);
183687
- __decorateElement(_init101, 4, "isPlaying", _isPlaying_dec, _DeesAudioViewer, _isPlaying);
183688
- __decorateElement(_init101, 4, "currentTime", _currentTime_dec, _DeesAudioViewer, _currentTime);
183689
- __decorateElement(_init101, 4, "duration", _duration_dec2, _DeesAudioViewer, _duration2);
183690
- __decorateElement(_init101, 4, "volume", _volume_dec, _DeesAudioViewer, _volume);
183691
- __decorateElement(_init101, 4, "isMuted", _isMuted_dec, _DeesAudioViewer, _isMuted);
183692
- __decorateElement(_init101, 4, "loading", _loading_dec6, _DeesAudioViewer, _loading6);
183693
- __decorateElement(_init101, 4, "error", _error_dec3, _DeesAudioViewer, _error3);
183694
- __decorateElement(_init101, 4, "waveformData", _waveformData_dec, _DeesAudioViewer, _waveformData);
183695
- __decorateElement(_init101, 4, "waveformReady", _waveformReady_dec, _DeesAudioViewer, _waveformReady);
183696
- _DeesAudioViewer = __decorateElement(_init101, 0, "DeesAudioViewer", _DeesAudioViewer_decorators, _DeesAudioViewer);
184259
+ __decorateElement(_init102, 4, "src", _src_dec2, _DeesAudioViewer, _src2);
184260
+ __decorateElement(_init102, 4, "title", _title_dec2, _DeesAudioViewer, _title2);
184261
+ __decorateElement(_init102, 4, "artist", _artist_dec, _DeesAudioViewer, _artist);
184262
+ __decorateElement(_init102, 4, "showWaveform", _showWaveform_dec, _DeesAudioViewer, _showWaveform);
184263
+ __decorateElement(_init102, 4, "autoplay", _autoplay_dec, _DeesAudioViewer, _autoplay);
184264
+ __decorateElement(_init102, 4, "loop", _loop_dec, _DeesAudioViewer, _loop);
184265
+ __decorateElement(_init102, 4, "isPlaying", _isPlaying_dec, _DeesAudioViewer, _isPlaying);
184266
+ __decorateElement(_init102, 4, "currentTime", _currentTime_dec, _DeesAudioViewer, _currentTime);
184267
+ __decorateElement(_init102, 4, "duration", _duration_dec2, _DeesAudioViewer, _duration2);
184268
+ __decorateElement(_init102, 4, "volume", _volume_dec, _DeesAudioViewer, _volume);
184269
+ __decorateElement(_init102, 4, "isMuted", _isMuted_dec, _DeesAudioViewer, _isMuted);
184270
+ __decorateElement(_init102, 4, "loading", _loading_dec6, _DeesAudioViewer, _loading6);
184271
+ __decorateElement(_init102, 4, "error", _error_dec3, _DeesAudioViewer, _error3);
184272
+ __decorateElement(_init102, 4, "waveformData", _waveformData_dec, _DeesAudioViewer, _waveformData);
184273
+ __decorateElement(_init102, 4, "waveformReady", _waveformReady_dec, _DeesAudioViewer, _waveformReady);
184274
+ _DeesAudioViewer = __decorateElement(_init102, 0, "DeesAudioViewer", _DeesAudioViewer_decorators, _DeesAudioViewer);
183697
184275
  __name(_DeesAudioViewer, "DeesAudioViewer");
183698
184276
  __publicField(_DeesAudioViewer, "styles", [themeDefaultStyles]);
183699
184277
  __publicField(_DeesAudioViewer, "demo", demo2);
183700
184278
  __publicField(_DeesAudioViewer, "demoGroups", ["Media"]);
183701
- __runInitializers(_init101, 1, _DeesAudioViewer);
184279
+ __runInitializers(_init102, 1, _DeesAudioViewer);
183702
184280
  var DeesAudioViewer = _DeesAudioViewer;
183703
184281
 
183704
184282
  // ts_web/elements/00group-media/dees-video-viewer/demo.ts
@@ -183769,25 +184347,25 @@ var demo3 = /* @__PURE__ */ __name(() => b2`
183769
184347
  init_dist_ts25();
183770
184348
  init_theme();
183771
184349
  init_dees_icon();
183772
- var _controlsVisible_dec, _isFullscreen_dec, _error_dec4, _loading_dec7, _volume_dec2, _duration_dec3, _currentTime_dec2, _isPlaying_dec2, _muted_dec, _loop_dec2, _autoplay_dec2, _showControls_dec, _poster_dec, _src_dec3, _a101, _DeesVideoViewer_decorators, _init102, _src3, _poster, _showControls, _autoplay2, _loop2, _muted, _isPlaying2, _currentTime2, _duration3, _volume2, _loading7, _error4, _isFullscreen, _controlsVisible;
184350
+ var _controlsVisible_dec, _isFullscreen_dec, _error_dec4, _loading_dec7, _volume_dec2, _duration_dec3, _currentTime_dec2, _isPlaying_dec2, _muted_dec, _loop_dec2, _autoplay_dec2, _showControls_dec, _poster_dec, _src_dec3, _a102, _DeesVideoViewer_decorators, _init103, _src3, _poster, _showControls, _autoplay2, _loop2, _muted, _isPlaying2, _currentTime2, _duration3, _volume2, _loading7, _error4, _isFullscreen, _controlsVisible;
183773
184351
  _DeesVideoViewer_decorators = [customElement("dees-video-viewer")];
183774
- var _DeesVideoViewer = class _DeesVideoViewer extends (_a101 = DeesElement, _src_dec3 = [n5()], _poster_dec = [n5()], _showControls_dec = [n5({ type: Boolean })], _autoplay_dec2 = [n5({ type: Boolean })], _loop_dec2 = [n5({ type: Boolean })], _muted_dec = [n5({ type: Boolean })], _isPlaying_dec2 = [r5()], _currentTime_dec2 = [r5()], _duration_dec3 = [r5()], _volume_dec2 = [r5()], _loading_dec7 = [r5()], _error_dec4 = [r5()], _isFullscreen_dec = [r5()], _controlsVisible_dec = [r5()], _a101) {
184352
+ var _DeesVideoViewer = class _DeesVideoViewer extends (_a102 = DeesElement, _src_dec3 = [n5()], _poster_dec = [n5()], _showControls_dec = [n5({ type: Boolean })], _autoplay_dec2 = [n5({ type: Boolean })], _loop_dec2 = [n5({ type: Boolean })], _muted_dec = [n5({ type: Boolean })], _isPlaying_dec2 = [r5()], _currentTime_dec2 = [r5()], _duration_dec3 = [r5()], _volume_dec2 = [r5()], _loading_dec7 = [r5()], _error_dec4 = [r5()], _isFullscreen_dec = [r5()], _controlsVisible_dec = [r5()], _a102) {
183775
184353
  constructor() {
183776
184354
  super(...arguments);
183777
- __privateAdd(this, _src3, __runInitializers(_init102, 8, this, "")), __runInitializers(_init102, 11, this);
183778
- __privateAdd(this, _poster, __runInitializers(_init102, 12, this, "")), __runInitializers(_init102, 15, this);
183779
- __privateAdd(this, _showControls, __runInitializers(_init102, 16, this, true)), __runInitializers(_init102, 19, this);
183780
- __privateAdd(this, _autoplay2, __runInitializers(_init102, 20, this, false)), __runInitializers(_init102, 23, this);
183781
- __privateAdd(this, _loop2, __runInitializers(_init102, 24, this, false)), __runInitializers(_init102, 27, this);
183782
- __privateAdd(this, _muted, __runInitializers(_init102, 28, this, false)), __runInitializers(_init102, 31, this);
183783
- __privateAdd(this, _isPlaying2, __runInitializers(_init102, 32, this, false)), __runInitializers(_init102, 35, this);
183784
- __privateAdd(this, _currentTime2, __runInitializers(_init102, 36, this, 0)), __runInitializers(_init102, 39, this);
183785
- __privateAdd(this, _duration3, __runInitializers(_init102, 40, this, 0)), __runInitializers(_init102, 43, this);
183786
- __privateAdd(this, _volume2, __runInitializers(_init102, 44, this, 1)), __runInitializers(_init102, 47, this);
183787
- __privateAdd(this, _loading7, __runInitializers(_init102, 48, this, true)), __runInitializers(_init102, 51, this);
183788
- __privateAdd(this, _error4, __runInitializers(_init102, 52, this, "")), __runInitializers(_init102, 55, this);
183789
- __privateAdd(this, _isFullscreen, __runInitializers(_init102, 56, this, false)), __runInitializers(_init102, 59, this);
183790
- __privateAdd(this, _controlsVisible, __runInitializers(_init102, 60, this, true)), __runInitializers(_init102, 63, this);
184355
+ __privateAdd(this, _src3, __runInitializers(_init103, 8, this, "")), __runInitializers(_init103, 11, this);
184356
+ __privateAdd(this, _poster, __runInitializers(_init103, 12, this, "")), __runInitializers(_init103, 15, this);
184357
+ __privateAdd(this, _showControls, __runInitializers(_init103, 16, this, true)), __runInitializers(_init103, 19, this);
184358
+ __privateAdd(this, _autoplay2, __runInitializers(_init103, 20, this, false)), __runInitializers(_init103, 23, this);
184359
+ __privateAdd(this, _loop2, __runInitializers(_init103, 24, this, false)), __runInitializers(_init103, 27, this);
184360
+ __privateAdd(this, _muted, __runInitializers(_init103, 28, this, false)), __runInitializers(_init103, 31, this);
184361
+ __privateAdd(this, _isPlaying2, __runInitializers(_init103, 32, this, false)), __runInitializers(_init103, 35, this);
184362
+ __privateAdd(this, _currentTime2, __runInitializers(_init103, 36, this, 0)), __runInitializers(_init103, 39, this);
184363
+ __privateAdd(this, _duration3, __runInitializers(_init103, 40, this, 0)), __runInitializers(_init103, 43, this);
184364
+ __privateAdd(this, _volume2, __runInitializers(_init103, 44, this, 1)), __runInitializers(_init103, 47, this);
184365
+ __privateAdd(this, _loading7, __runInitializers(_init103, 48, this, true)), __runInitializers(_init103, 51, this);
184366
+ __privateAdd(this, _error4, __runInitializers(_init103, 52, this, "")), __runInitializers(_init103, 55, this);
184367
+ __privateAdd(this, _isFullscreen, __runInitializers(_init103, 56, this, false)), __runInitializers(_init103, 59, this);
184368
+ __privateAdd(this, _controlsVisible, __runInitializers(_init103, 60, this, true)), __runInitializers(_init103, 63, this);
183791
184369
  __publicField(this, "hideControlsTimer", null);
183792
184370
  __publicField(this, "videoElement", null);
183793
184371
  __publicField(this, "handleFullscreenChange", /* @__PURE__ */ __name(() => {
@@ -184209,7 +184787,7 @@ var _DeesVideoViewer = class _DeesVideoViewer extends (_a101 = DeesElement, _src
184209
184787
  return `${mins}:${secs.toString().padStart(2, "0")}`;
184210
184788
  }
184211
184789
  };
184212
- _init102 = __decoratorStart(_a101);
184790
+ _init103 = __decoratorStart(_a102);
184213
184791
  _src3 = new WeakMap();
184214
184792
  _poster = new WeakMap();
184215
184793
  _showControls = new WeakMap();
@@ -184224,26 +184802,26 @@ _loading7 = new WeakMap();
184224
184802
  _error4 = new WeakMap();
184225
184803
  _isFullscreen = new WeakMap();
184226
184804
  _controlsVisible = new WeakMap();
184227
- __decorateElement(_init102, 4, "src", _src_dec3, _DeesVideoViewer, _src3);
184228
- __decorateElement(_init102, 4, "poster", _poster_dec, _DeesVideoViewer, _poster);
184229
- __decorateElement(_init102, 4, "showControls", _showControls_dec, _DeesVideoViewer, _showControls);
184230
- __decorateElement(_init102, 4, "autoplay", _autoplay_dec2, _DeesVideoViewer, _autoplay2);
184231
- __decorateElement(_init102, 4, "loop", _loop_dec2, _DeesVideoViewer, _loop2);
184232
- __decorateElement(_init102, 4, "muted", _muted_dec, _DeesVideoViewer, _muted);
184233
- __decorateElement(_init102, 4, "isPlaying", _isPlaying_dec2, _DeesVideoViewer, _isPlaying2);
184234
- __decorateElement(_init102, 4, "currentTime", _currentTime_dec2, _DeesVideoViewer, _currentTime2);
184235
- __decorateElement(_init102, 4, "duration", _duration_dec3, _DeesVideoViewer, _duration3);
184236
- __decorateElement(_init102, 4, "volume", _volume_dec2, _DeesVideoViewer, _volume2);
184237
- __decorateElement(_init102, 4, "loading", _loading_dec7, _DeesVideoViewer, _loading7);
184238
- __decorateElement(_init102, 4, "error", _error_dec4, _DeesVideoViewer, _error4);
184239
- __decorateElement(_init102, 4, "isFullscreen", _isFullscreen_dec, _DeesVideoViewer, _isFullscreen);
184240
- __decorateElement(_init102, 4, "controlsVisible", _controlsVisible_dec, _DeesVideoViewer, _controlsVisible);
184241
- _DeesVideoViewer = __decorateElement(_init102, 0, "DeesVideoViewer", _DeesVideoViewer_decorators, _DeesVideoViewer);
184805
+ __decorateElement(_init103, 4, "src", _src_dec3, _DeesVideoViewer, _src3);
184806
+ __decorateElement(_init103, 4, "poster", _poster_dec, _DeesVideoViewer, _poster);
184807
+ __decorateElement(_init103, 4, "showControls", _showControls_dec, _DeesVideoViewer, _showControls);
184808
+ __decorateElement(_init103, 4, "autoplay", _autoplay_dec2, _DeesVideoViewer, _autoplay2);
184809
+ __decorateElement(_init103, 4, "loop", _loop_dec2, _DeesVideoViewer, _loop2);
184810
+ __decorateElement(_init103, 4, "muted", _muted_dec, _DeesVideoViewer, _muted);
184811
+ __decorateElement(_init103, 4, "isPlaying", _isPlaying_dec2, _DeesVideoViewer, _isPlaying2);
184812
+ __decorateElement(_init103, 4, "currentTime", _currentTime_dec2, _DeesVideoViewer, _currentTime2);
184813
+ __decorateElement(_init103, 4, "duration", _duration_dec3, _DeesVideoViewer, _duration3);
184814
+ __decorateElement(_init103, 4, "volume", _volume_dec2, _DeesVideoViewer, _volume2);
184815
+ __decorateElement(_init103, 4, "loading", _loading_dec7, _DeesVideoViewer, _loading7);
184816
+ __decorateElement(_init103, 4, "error", _error_dec4, _DeesVideoViewer, _error4);
184817
+ __decorateElement(_init103, 4, "isFullscreen", _isFullscreen_dec, _DeesVideoViewer, _isFullscreen);
184818
+ __decorateElement(_init103, 4, "controlsVisible", _controlsVisible_dec, _DeesVideoViewer, _controlsVisible);
184819
+ _DeesVideoViewer = __decorateElement(_init103, 0, "DeesVideoViewer", _DeesVideoViewer_decorators, _DeesVideoViewer);
184242
184820
  __name(_DeesVideoViewer, "DeesVideoViewer");
184243
184821
  __publicField(_DeesVideoViewer, "styles", [themeDefaultStyles]);
184244
184822
  __publicField(_DeesVideoViewer, "demo", demo3);
184245
184823
  __publicField(_DeesVideoViewer, "demoGroups", ["Media"]);
184246
- __runInitializers(_init102, 1, _DeesVideoViewer);
184824
+ __runInitializers(_init103, 1, _DeesVideoViewer);
184247
184825
  var DeesVideoViewer = _DeesVideoViewer;
184248
184826
 
184249
184827
  // ts_web/elements/00group-media/dees-pdf-shared/PdfManager.ts
@@ -184771,25 +185349,25 @@ var demo4 = /* @__PURE__ */ __name(() => b2`
184771
185349
  init_dist_ts25();
184772
185350
  init_dees_icon();
184773
185351
  init_dees_tile();
184774
- var _pdfFileSize_dec, _pageData_dec, _thumbnailData_dec, _documentId_dec, _loading_dec8, _currentZoom_dec, _totalPages_dec, _currentPage_dec, _sidebarPosition_dec, _showSidebar_dec, _showToolbar_dec3, _initialZoom_dec, _initialPage_dec, _pdfUrl_dec, _a102, _DeesPdfViewer_decorators, _init103, _pdfUrl, _initialPage, _initialZoom, _showToolbar3, _showSidebar, _sidebarPosition, _currentPage, _totalPages, _currentZoom, _loading8, _documentId, _thumbnailData, _pageData, _pdfFileSize;
185352
+ var _pdfFileSize_dec, _pageData_dec, _thumbnailData_dec, _documentId_dec, _loading_dec8, _currentZoom_dec, _totalPages_dec, _currentPage_dec, _sidebarPosition_dec, _showSidebar_dec, _showToolbar_dec3, _initialZoom_dec, _initialPage_dec, _pdfUrl_dec, _a103, _DeesPdfViewer_decorators, _init104, _pdfUrl, _initialPage, _initialZoom, _showToolbar3, _showSidebar, _sidebarPosition, _currentPage, _totalPages, _currentZoom, _loading8, _documentId, _thumbnailData, _pageData, _pdfFileSize;
184775
185353
  _DeesPdfViewer_decorators = [customElement("dees-pdf-viewer")];
184776
- var _DeesPdfViewer = class _DeesPdfViewer extends (_a102 = DeesElement, _pdfUrl_dec = [n5({ type: String })], _initialPage_dec = [n5({ type: Number })], _initialZoom_dec = [n5({ type: String })], _showToolbar_dec3 = [n5({ type: Boolean })], _showSidebar_dec = [n5({ type: Boolean })], _sidebarPosition_dec = [n5({ type: String })], _currentPage_dec = [n5({ type: Number })], _totalPages_dec = [n5({ type: Number })], _currentZoom_dec = [n5({ type: Number })], _loading_dec8 = [n5({ type: Boolean })], _documentId_dec = [n5({ type: String })], _thumbnailData_dec = [n5({ type: Array })], _pageData_dec = [n5({ type: Array })], _pdfFileSize_dec = [n5({ type: Number })], _a102) {
185354
+ var _DeesPdfViewer = class _DeesPdfViewer extends (_a103 = DeesElement, _pdfUrl_dec = [n5({ type: String })], _initialPage_dec = [n5({ type: Number })], _initialZoom_dec = [n5({ type: String })], _showToolbar_dec3 = [n5({ type: Boolean })], _showSidebar_dec = [n5({ type: Boolean })], _sidebarPosition_dec = [n5({ type: String })], _currentPage_dec = [n5({ type: Number })], _totalPages_dec = [n5({ type: Number })], _currentZoom_dec = [n5({ type: Number })], _loading_dec8 = [n5({ type: Boolean })], _documentId_dec = [n5({ type: String })], _thumbnailData_dec = [n5({ type: Array })], _pageData_dec = [n5({ type: Array })], _pdfFileSize_dec = [n5({ type: Number })], _a103) {
184777
185355
  constructor() {
184778
185356
  super();
184779
- __privateAdd(this, _pdfUrl, __runInitializers(_init103, 8, this, "")), __runInitializers(_init103, 11, this);
184780
- __privateAdd(this, _initialPage, __runInitializers(_init103, 12, this, 1)), __runInitializers(_init103, 15, this);
184781
- __privateAdd(this, _initialZoom, __runInitializers(_init103, 16, this, "auto")), __runInitializers(_init103, 19, this);
184782
- __privateAdd(this, _showToolbar3, __runInitializers(_init103, 20, this, true)), __runInitializers(_init103, 23, this);
184783
- __privateAdd(this, _showSidebar, __runInitializers(_init103, 24, this, false)), __runInitializers(_init103, 27, this);
184784
- __privateAdd(this, _sidebarPosition, __runInitializers(_init103, 28, this, "left")), __runInitializers(_init103, 31, this);
184785
- __privateAdd(this, _currentPage, __runInitializers(_init103, 32, this, 1)), __runInitializers(_init103, 35, this);
184786
- __privateAdd(this, _totalPages, __runInitializers(_init103, 36, this, 1)), __runInitializers(_init103, 39, this);
184787
- __privateAdd(this, _currentZoom, __runInitializers(_init103, 40, this, 1)), __runInitializers(_init103, 43, this);
184788
- __privateAdd(this, _loading8, __runInitializers(_init103, 44, this, false)), __runInitializers(_init103, 47, this);
184789
- __privateAdd(this, _documentId, __runInitializers(_init103, 48, this, "")), __runInitializers(_init103, 51, this);
184790
- __privateAdd(this, _thumbnailData, __runInitializers(_init103, 52, this, [])), __runInitializers(_init103, 55, this);
184791
- __privateAdd(this, _pageData, __runInitializers(_init103, 56, this, [])), __runInitializers(_init103, 59, this);
184792
- __privateAdd(this, _pdfFileSize, __runInitializers(_init103, 60, this, 0)), __runInitializers(_init103, 63, this);
185357
+ __privateAdd(this, _pdfUrl, __runInitializers(_init104, 8, this, "")), __runInitializers(_init104, 11, this);
185358
+ __privateAdd(this, _initialPage, __runInitializers(_init104, 12, this, 1)), __runInitializers(_init104, 15, this);
185359
+ __privateAdd(this, _initialZoom, __runInitializers(_init104, 16, this, "auto")), __runInitializers(_init104, 19, this);
185360
+ __privateAdd(this, _showToolbar3, __runInitializers(_init104, 20, this, true)), __runInitializers(_init104, 23, this);
185361
+ __privateAdd(this, _showSidebar, __runInitializers(_init104, 24, this, false)), __runInitializers(_init104, 27, this);
185362
+ __privateAdd(this, _sidebarPosition, __runInitializers(_init104, 28, this, "left")), __runInitializers(_init104, 31, this);
185363
+ __privateAdd(this, _currentPage, __runInitializers(_init104, 32, this, 1)), __runInitializers(_init104, 35, this);
185364
+ __privateAdd(this, _totalPages, __runInitializers(_init104, 36, this, 1)), __runInitializers(_init104, 39, this);
185365
+ __privateAdd(this, _currentZoom, __runInitializers(_init104, 40, this, 1)), __runInitializers(_init104, 43, this);
185366
+ __privateAdd(this, _loading8, __runInitializers(_init104, 44, this, false)), __runInitializers(_init104, 47, this);
185367
+ __privateAdd(this, _documentId, __runInitializers(_init104, 48, this, "")), __runInitializers(_init104, 51, this);
185368
+ __privateAdd(this, _thumbnailData, __runInitializers(_init104, 52, this, [])), __runInitializers(_init104, 55, this);
185369
+ __privateAdd(this, _pageData, __runInitializers(_init104, 56, this, [])), __runInitializers(_init104, 59, this);
185370
+ __privateAdd(this, _pdfFileSize, __runInitializers(_init104, 60, this, 0)), __runInitializers(_init104, 63, this);
184793
185371
  __publicField(this, "pdfDocument");
184794
185372
  __publicField(this, "renderState", "idle");
184795
185373
  __publicField(this, "renderAbortController", null);
@@ -185769,7 +186347,7 @@ var _DeesPdfViewer = class _DeesPdfViewer extends (_a102 = DeesElement, _pdfUrl_
185769
186347
  this.requestUpdate();
185770
186348
  }
185771
186349
  };
185772
- _init103 = __decoratorStart(_a102);
186350
+ _init104 = __decoratorStart(_a103);
185773
186351
  _pdfUrl = new WeakMap();
185774
186352
  _initialPage = new WeakMap();
185775
186353
  _initialZoom = new WeakMap();
@@ -185784,31 +186362,31 @@ _documentId = new WeakMap();
185784
186362
  _thumbnailData = new WeakMap();
185785
186363
  _pageData = new WeakMap();
185786
186364
  _pdfFileSize = new WeakMap();
185787
- __decorateElement(_init103, 4, "pdfUrl", _pdfUrl_dec, _DeesPdfViewer, _pdfUrl);
185788
- __decorateElement(_init103, 4, "initialPage", _initialPage_dec, _DeesPdfViewer, _initialPage);
185789
- __decorateElement(_init103, 4, "initialZoom", _initialZoom_dec, _DeesPdfViewer, _initialZoom);
185790
- __decorateElement(_init103, 4, "showToolbar", _showToolbar_dec3, _DeesPdfViewer, _showToolbar3);
185791
- __decorateElement(_init103, 4, "showSidebar", _showSidebar_dec, _DeesPdfViewer, _showSidebar);
185792
- __decorateElement(_init103, 4, "sidebarPosition", _sidebarPosition_dec, _DeesPdfViewer, _sidebarPosition);
185793
- __decorateElement(_init103, 4, "currentPage", _currentPage_dec, _DeesPdfViewer, _currentPage);
185794
- __decorateElement(_init103, 4, "totalPages", _totalPages_dec, _DeesPdfViewer, _totalPages);
185795
- __decorateElement(_init103, 4, "currentZoom", _currentZoom_dec, _DeesPdfViewer, _currentZoom);
185796
- __decorateElement(_init103, 4, "loading", _loading_dec8, _DeesPdfViewer, _loading8);
185797
- __decorateElement(_init103, 4, "documentId", _documentId_dec, _DeesPdfViewer, _documentId);
185798
- __decorateElement(_init103, 4, "thumbnailData", _thumbnailData_dec, _DeesPdfViewer, _thumbnailData);
185799
- __decorateElement(_init103, 4, "pageData", _pageData_dec, _DeesPdfViewer, _pageData);
185800
- __decorateElement(_init103, 4, "pdfFileSize", _pdfFileSize_dec, _DeesPdfViewer, _pdfFileSize);
185801
- _DeesPdfViewer = __decorateElement(_init103, 0, "DeesPdfViewer", _DeesPdfViewer_decorators, _DeesPdfViewer);
186365
+ __decorateElement(_init104, 4, "pdfUrl", _pdfUrl_dec, _DeesPdfViewer, _pdfUrl);
186366
+ __decorateElement(_init104, 4, "initialPage", _initialPage_dec, _DeesPdfViewer, _initialPage);
186367
+ __decorateElement(_init104, 4, "initialZoom", _initialZoom_dec, _DeesPdfViewer, _initialZoom);
186368
+ __decorateElement(_init104, 4, "showToolbar", _showToolbar_dec3, _DeesPdfViewer, _showToolbar3);
186369
+ __decorateElement(_init104, 4, "showSidebar", _showSidebar_dec, _DeesPdfViewer, _showSidebar);
186370
+ __decorateElement(_init104, 4, "sidebarPosition", _sidebarPosition_dec, _DeesPdfViewer, _sidebarPosition);
186371
+ __decorateElement(_init104, 4, "currentPage", _currentPage_dec, _DeesPdfViewer, _currentPage);
186372
+ __decorateElement(_init104, 4, "totalPages", _totalPages_dec, _DeesPdfViewer, _totalPages);
186373
+ __decorateElement(_init104, 4, "currentZoom", _currentZoom_dec, _DeesPdfViewer, _currentZoom);
186374
+ __decorateElement(_init104, 4, "loading", _loading_dec8, _DeesPdfViewer, _loading8);
186375
+ __decorateElement(_init104, 4, "documentId", _documentId_dec, _DeesPdfViewer, _documentId);
186376
+ __decorateElement(_init104, 4, "thumbnailData", _thumbnailData_dec, _DeesPdfViewer, _thumbnailData);
186377
+ __decorateElement(_init104, 4, "pageData", _pageData_dec, _DeesPdfViewer, _pageData);
186378
+ __decorateElement(_init104, 4, "pdfFileSize", _pdfFileSize_dec, _DeesPdfViewer, _pdfFileSize);
186379
+ _DeesPdfViewer = __decorateElement(_init104, 0, "DeesPdfViewer", _DeesPdfViewer_decorators, _DeesPdfViewer);
185802
186380
  __name(_DeesPdfViewer, "DeesPdfViewer");
185803
186381
  __publicField(_DeesPdfViewer, "demo", demo4);
185804
186382
  __publicField(_DeesPdfViewer, "demoGroups", ["Media", "PDF"]);
185805
186383
  __publicField(_DeesPdfViewer, "styles", viewerStyles);
185806
- __runInitializers(_init103, 1, _DeesPdfViewer);
186384
+ __runInitializers(_init104, 1, _DeesPdfViewer);
185807
186385
  var DeesPdfViewer = _DeesPdfViewer;
185808
186386
 
185809
186387
  // ts_web/elements/00group-media/dees-preview/dees-preview.demo.ts
185810
186388
  init_dist_ts25();
185811
- var demoFunc72 = /* @__PURE__ */ __name(() => b2`
186389
+ var demoFunc73 = /* @__PURE__ */ __name(() => b2`
185812
186390
  <style>
185813
186391
  .demo-container {
185814
186392
  padding: 48px;
@@ -185933,7 +186511,7 @@ export class MyComponent extends LitElement {
185933
186511
  init_dist_ts25();
185934
186512
  init_theme();
185935
186513
  init_dees_icon();
185936
- var _error_dec5, _loading_dec9, _resolvedLang_dec, _resolvedText_dec, _resolvedSrc_dec, _resolvedType_dec, _showFilename_dec, _showToolbar_dec4, _filename_dec2, _mimeType_dec, _language_dec3, _contentType_dec2, _textContent_dec, _base64_dec, _file_dec, _url_dec, _a103, _DeesPreview_decorators, _init104, _url, _file, _base64, _textContent, _contentType2, _language3, _mimeType, _filename2, _showToolbar4, _showFilename, _resolvedType, _resolvedSrc, _resolvedText, _resolvedLang, _loading9, _error5;
186514
+ var _error_dec5, _loading_dec9, _resolvedLang_dec, _resolvedText_dec, _resolvedSrc_dec, _resolvedType_dec, _showFilename_dec, _showToolbar_dec4, _filename_dec2, _mimeType_dec, _language_dec3, _contentType_dec2, _textContent_dec, _base64_dec, _file_dec, _url_dec, _a104, _DeesPreview_decorators, _init105, _url, _file, _base64, _textContent, _contentType2, _language3, _mimeType, _filename2, _showToolbar4, _showFilename, _resolvedType, _resolvedSrc, _resolvedText, _resolvedLang, _loading9, _error5;
185937
186515
  var EXTENSION_MAP = {
185938
186516
  // Image
185939
186517
  jpg: "image",
@@ -186046,25 +186624,25 @@ var TYPE_ICONS = {
186046
186624
  unknown: "lucide:File"
186047
186625
  };
186048
186626
  _DeesPreview_decorators = [customElement("dees-preview")];
186049
- var _DeesPreview = class _DeesPreview extends (_a103 = DeesElement, _url_dec = [n5()], _file_dec = [n5({ attribute: false })], _base64_dec = [n5()], _textContent_dec = [n5()], _contentType_dec2 = [n5()], _language_dec3 = [n5()], _mimeType_dec = [n5()], _filename_dec2 = [n5()], _showToolbar_dec4 = [n5({ type: Boolean })], _showFilename_dec = [n5({ type: Boolean })], _resolvedType_dec = [r5()], _resolvedSrc_dec = [r5()], _resolvedText_dec = [r5()], _resolvedLang_dec = [r5()], _loading_dec9 = [r5()], _error_dec5 = [r5()], _a103) {
186627
+ var _DeesPreview = class _DeesPreview extends (_a104 = DeesElement, _url_dec = [n5()], _file_dec = [n5({ attribute: false })], _base64_dec = [n5()], _textContent_dec = [n5()], _contentType_dec2 = [n5()], _language_dec3 = [n5()], _mimeType_dec = [n5()], _filename_dec2 = [n5()], _showToolbar_dec4 = [n5({ type: Boolean })], _showFilename_dec = [n5({ type: Boolean })], _resolvedType_dec = [r5()], _resolvedSrc_dec = [r5()], _resolvedText_dec = [r5()], _resolvedLang_dec = [r5()], _loading_dec9 = [r5()], _error_dec5 = [r5()], _a104) {
186050
186628
  constructor() {
186051
186629
  super(...arguments);
186052
- __privateAdd(this, _url, __runInitializers(_init104, 8, this, "")), __runInitializers(_init104, 11, this);
186053
- __privateAdd(this, _file, __runInitializers(_init104, 12, this)), __runInitializers(_init104, 15, this);
186054
- __privateAdd(this, _base64, __runInitializers(_init104, 16, this, "")), __runInitializers(_init104, 19, this);
186055
- __privateAdd(this, _textContent, __runInitializers(_init104, 20, this, "")), __runInitializers(_init104, 23, this);
186056
- __privateAdd(this, _contentType2, __runInitializers(_init104, 24, this)), __runInitializers(_init104, 27, this);
186057
- __privateAdd(this, _language3, __runInitializers(_init104, 28, this, "")), __runInitializers(_init104, 31, this);
186058
- __privateAdd(this, _mimeType, __runInitializers(_init104, 32, this, "")), __runInitializers(_init104, 35, this);
186059
- __privateAdd(this, _filename2, __runInitializers(_init104, 36, this, "")), __runInitializers(_init104, 39, this);
186060
- __privateAdd(this, _showToolbar4, __runInitializers(_init104, 40, this, true)), __runInitializers(_init104, 43, this);
186061
- __privateAdd(this, _showFilename, __runInitializers(_init104, 44, this, true)), __runInitializers(_init104, 47, this);
186062
- __privateAdd(this, _resolvedType, __runInitializers(_init104, 48, this, "unknown")), __runInitializers(_init104, 51, this);
186063
- __privateAdd(this, _resolvedSrc, __runInitializers(_init104, 52, this, "")), __runInitializers(_init104, 55, this);
186064
- __privateAdd(this, _resolvedText, __runInitializers(_init104, 56, this, "")), __runInitializers(_init104, 59, this);
186065
- __privateAdd(this, _resolvedLang, __runInitializers(_init104, 60, this, "text")), __runInitializers(_init104, 63, this);
186066
- __privateAdd(this, _loading9, __runInitializers(_init104, 64, this, false)), __runInitializers(_init104, 67, this);
186067
- __privateAdd(this, _error5, __runInitializers(_init104, 68, this, "")), __runInitializers(_init104, 71, this);
186630
+ __privateAdd(this, _url, __runInitializers(_init105, 8, this, "")), __runInitializers(_init105, 11, this);
186631
+ __privateAdd(this, _file, __runInitializers(_init105, 12, this)), __runInitializers(_init105, 15, this);
186632
+ __privateAdd(this, _base64, __runInitializers(_init105, 16, this, "")), __runInitializers(_init105, 19, this);
186633
+ __privateAdd(this, _textContent, __runInitializers(_init105, 20, this, "")), __runInitializers(_init105, 23, this);
186634
+ __privateAdd(this, _contentType2, __runInitializers(_init105, 24, this)), __runInitializers(_init105, 27, this);
186635
+ __privateAdd(this, _language3, __runInitializers(_init105, 28, this, "")), __runInitializers(_init105, 31, this);
186636
+ __privateAdd(this, _mimeType, __runInitializers(_init105, 32, this, "")), __runInitializers(_init105, 35, this);
186637
+ __privateAdd(this, _filename2, __runInitializers(_init105, 36, this, "")), __runInitializers(_init105, 39, this);
186638
+ __privateAdd(this, _showToolbar4, __runInitializers(_init105, 40, this, true)), __runInitializers(_init105, 43, this);
186639
+ __privateAdd(this, _showFilename, __runInitializers(_init105, 44, this, true)), __runInitializers(_init105, 47, this);
186640
+ __privateAdd(this, _resolvedType, __runInitializers(_init105, 48, this, "unknown")), __runInitializers(_init105, 51, this);
186641
+ __privateAdd(this, _resolvedSrc, __runInitializers(_init105, 52, this, "")), __runInitializers(_init105, 55, this);
186642
+ __privateAdd(this, _resolvedText, __runInitializers(_init105, 56, this, "")), __runInitializers(_init105, 59, this);
186643
+ __privateAdd(this, _resolvedLang, __runInitializers(_init105, 60, this, "text")), __runInitializers(_init105, 63, this);
186644
+ __privateAdd(this, _loading9, __runInitializers(_init105, 64, this, false)), __runInitializers(_init105, 67, this);
186645
+ __privateAdd(this, _error5, __runInitializers(_init105, 68, this, "")), __runInitializers(_init105, 71, this);
186068
186646
  __publicField(this, "objectUrl", "");
186069
186647
  }
186070
186648
  render() {
@@ -186411,7 +186989,7 @@ var _DeesPreview = class _DeesPreview extends (_a103 = DeesElement, _url_dec = [
186411
186989
  }
186412
186990
  }
186413
186991
  };
186414
- _init104 = __decoratorStart(_a103);
186992
+ _init105 = __decoratorStart(_a104);
186415
186993
  _url = new WeakMap();
186416
186994
  _file = new WeakMap();
186417
186995
  _base64 = new WeakMap();
@@ -186428,28 +187006,28 @@ _resolvedText = new WeakMap();
186428
187006
  _resolvedLang = new WeakMap();
186429
187007
  _loading9 = new WeakMap();
186430
187008
  _error5 = new WeakMap();
186431
- __decorateElement(_init104, 4, "url", _url_dec, _DeesPreview, _url);
186432
- __decorateElement(_init104, 4, "file", _file_dec, _DeesPreview, _file);
186433
- __decorateElement(_init104, 4, "base64", _base64_dec, _DeesPreview, _base64);
186434
- __decorateElement(_init104, 4, "textContent", _textContent_dec, _DeesPreview, _textContent);
186435
- __decorateElement(_init104, 4, "contentType", _contentType_dec2, _DeesPreview, _contentType2);
186436
- __decorateElement(_init104, 4, "language", _language_dec3, _DeesPreview, _language3);
186437
- __decorateElement(_init104, 4, "mimeType", _mimeType_dec, _DeesPreview, _mimeType);
186438
- __decorateElement(_init104, 4, "filename", _filename_dec2, _DeesPreview, _filename2);
186439
- __decorateElement(_init104, 4, "showToolbar", _showToolbar_dec4, _DeesPreview, _showToolbar4);
186440
- __decorateElement(_init104, 4, "showFilename", _showFilename_dec, _DeesPreview, _showFilename);
186441
- __decorateElement(_init104, 4, "resolvedType", _resolvedType_dec, _DeesPreview, _resolvedType);
186442
- __decorateElement(_init104, 4, "resolvedSrc", _resolvedSrc_dec, _DeesPreview, _resolvedSrc);
186443
- __decorateElement(_init104, 4, "resolvedText", _resolvedText_dec, _DeesPreview, _resolvedText);
186444
- __decorateElement(_init104, 4, "resolvedLang", _resolvedLang_dec, _DeesPreview, _resolvedLang);
186445
- __decorateElement(_init104, 4, "loading", _loading_dec9, _DeesPreview, _loading9);
186446
- __decorateElement(_init104, 4, "error", _error_dec5, _DeesPreview, _error5);
186447
- _DeesPreview = __decorateElement(_init104, 0, "DeesPreview", _DeesPreview_decorators, _DeesPreview);
187009
+ __decorateElement(_init105, 4, "url", _url_dec, _DeesPreview, _url);
187010
+ __decorateElement(_init105, 4, "file", _file_dec, _DeesPreview, _file);
187011
+ __decorateElement(_init105, 4, "base64", _base64_dec, _DeesPreview, _base64);
187012
+ __decorateElement(_init105, 4, "textContent", _textContent_dec, _DeesPreview, _textContent);
187013
+ __decorateElement(_init105, 4, "contentType", _contentType_dec2, _DeesPreview, _contentType2);
187014
+ __decorateElement(_init105, 4, "language", _language_dec3, _DeesPreview, _language3);
187015
+ __decorateElement(_init105, 4, "mimeType", _mimeType_dec, _DeesPreview, _mimeType);
187016
+ __decorateElement(_init105, 4, "filename", _filename_dec2, _DeesPreview, _filename2);
187017
+ __decorateElement(_init105, 4, "showToolbar", _showToolbar_dec4, _DeesPreview, _showToolbar4);
187018
+ __decorateElement(_init105, 4, "showFilename", _showFilename_dec, _DeesPreview, _showFilename);
187019
+ __decorateElement(_init105, 4, "resolvedType", _resolvedType_dec, _DeesPreview, _resolvedType);
187020
+ __decorateElement(_init105, 4, "resolvedSrc", _resolvedSrc_dec, _DeesPreview, _resolvedSrc);
187021
+ __decorateElement(_init105, 4, "resolvedText", _resolvedText_dec, _DeesPreview, _resolvedText);
187022
+ __decorateElement(_init105, 4, "resolvedLang", _resolvedLang_dec, _DeesPreview, _resolvedLang);
187023
+ __decorateElement(_init105, 4, "loading", _loading_dec9, _DeesPreview, _loading9);
187024
+ __decorateElement(_init105, 4, "error", _error_dec5, _DeesPreview, _error5);
187025
+ _DeesPreview = __decorateElement(_init105, 0, "DeesPreview", _DeesPreview_decorators, _DeesPreview);
186448
187026
  __name(_DeesPreview, "DeesPreview");
186449
187027
  __publicField(_DeesPreview, "styles", [themeDefaultStyles]);
186450
- __publicField(_DeesPreview, "demo", demoFunc72);
187028
+ __publicField(_DeesPreview, "demo", demoFunc73);
186451
187029
  __publicField(_DeesPreview, "demoGroups", ["Media", "Data View"]);
186452
- __runInitializers(_init104, 1, _DeesPreview);
187030
+ __runInitializers(_init105, 1, _DeesPreview);
186453
187031
  var DeesPreview = _DeesPreview;
186454
187032
 
186455
187033
  // ts_web/elements/00group-media/dees-pdf-shared/CanvasPool.ts
@@ -186811,15 +187389,15 @@ var thumbnailBaseStyles = [
186811
187389
  // ts_web/elements/00group-media/dees-thumbnail-shared/DeesThumbnailBase.ts
186812
187390
  init_dist_ts25();
186813
187391
  init_dees_icon();
186814
- var _label_dec9, _size_dec7, _error_dec6, _loading_dec10, _clickable_dec, _a104, _init105, _clickable, _loading10, _error6, _size7, _label9;
186815
- var _DeesThumbnailBase = class _DeesThumbnailBase extends (_a104 = DeesElement, _clickable_dec = [n5({ type: Boolean })], _loading_dec10 = [n5({ type: Boolean })], _error_dec6 = [n5({ type: Boolean })], _size_dec7 = [n5({ type: String, reflect: true })], _label_dec9 = [n5({ type: String })], _a104) {
187392
+ var _label_dec9, _size_dec7, _error_dec6, _loading_dec10, _clickable_dec, _a105, _init106, _clickable, _loading10, _error6, _size7, _label9;
187393
+ var _DeesThumbnailBase = class _DeesThumbnailBase extends (_a105 = DeesElement, _clickable_dec = [n5({ type: Boolean })], _loading_dec10 = [n5({ type: Boolean })], _error_dec6 = [n5({ type: Boolean })], _size_dec7 = [n5({ type: String, reflect: true })], _label_dec9 = [n5({ type: String })], _a105) {
186816
187394
  constructor() {
186817
187395
  super(...arguments);
186818
- __privateAdd(this, _clickable, __runInitializers(_init105, 8, this, true)), __runInitializers(_init105, 11, this);
186819
- __privateAdd(this, _loading10, __runInitializers(_init105, 12, this, false)), __runInitializers(_init105, 15, this);
186820
- __privateAdd(this, _error6, __runInitializers(_init105, 16, this, false)), __runInitializers(_init105, 19, this);
186821
- __privateAdd(this, _size7, __runInitializers(_init105, 20, this, "default")), __runInitializers(_init105, 23, this);
186822
- __privateAdd(this, _label9, __runInitializers(_init105, 24, this, "")), __runInitializers(_init105, 27, this);
187396
+ __privateAdd(this, _clickable, __runInitializers(_init106, 8, this, true)), __runInitializers(_init106, 11, this);
187397
+ __privateAdd(this, _loading10, __runInitializers(_init106, 12, this, false)), __runInitializers(_init106, 15, this);
187398
+ __privateAdd(this, _error6, __runInitializers(_init106, 16, this, false)), __runInitializers(_init106, 19, this);
187399
+ __privateAdd(this, _size7, __runInitializers(_init106, 20, this, "default")), __runInitializers(_init106, 23, this);
187400
+ __privateAdd(this, _label9, __runInitializers(_init106, 24, this, "")), __runInitializers(_init106, 27, this);
186823
187401
  __publicField(this, "observer");
186824
187402
  __publicField(this, "_visible", false);
186825
187403
  }
@@ -186913,18 +187491,18 @@ var _DeesThumbnailBase = class _DeesThumbnailBase extends (_a104 = DeesElement,
186913
187491
  return {};
186914
187492
  }
186915
187493
  };
186916
- _init105 = __decoratorStart(_a104);
187494
+ _init106 = __decoratorStart(_a105);
186917
187495
  _clickable = new WeakMap();
186918
187496
  _loading10 = new WeakMap();
186919
187497
  _error6 = new WeakMap();
186920
187498
  _size7 = new WeakMap();
186921
187499
  _label9 = new WeakMap();
186922
- __decorateElement(_init105, 4, "clickable", _clickable_dec, _DeesThumbnailBase, _clickable);
186923
- __decorateElement(_init105, 4, "loading", _loading_dec10, _DeesThumbnailBase, _loading10);
186924
- __decorateElement(_init105, 4, "error", _error_dec6, _DeesThumbnailBase, _error6);
186925
- __decorateElement(_init105, 4, "size", _size_dec7, _DeesThumbnailBase, _size7);
186926
- __decorateElement(_init105, 4, "label", _label_dec9, _DeesThumbnailBase, _label9);
186927
- __decoratorMetadata(_init105, _DeesThumbnailBase);
187500
+ __decorateElement(_init106, 4, "clickable", _clickable_dec, _DeesThumbnailBase, _clickable);
187501
+ __decorateElement(_init106, 4, "loading", _loading_dec10, _DeesThumbnailBase, _loading10);
187502
+ __decorateElement(_init106, 4, "error", _error_dec6, _DeesThumbnailBase, _error6);
187503
+ __decorateElement(_init106, 4, "size", _size_dec7, _DeesThumbnailBase, _size7);
187504
+ __decorateElement(_init106, 4, "label", _label_dec9, _DeesThumbnailBase, _label9);
187505
+ __decoratorMetadata(_init106, _DeesThumbnailBase);
186928
187506
  __name(_DeesThumbnailBase, "DeesThumbnailBase");
186929
187507
  __publicField(_DeesThumbnailBase, "styles", thumbnailBaseStyles);
186930
187508
  var DeesThumbnailBase = _DeesThumbnailBase;
@@ -187105,18 +187683,18 @@ var demo5 = /* @__PURE__ */ __name(() => {
187105
187683
 
187106
187684
  // ts_web/elements/00group-media/dees-thumbnail-pdf/component.ts
187107
187685
  init_dist_ts25();
187108
- var _fileSize_dec2, _isA4Format_dec, _isHovering_dec, _rendered_dec, _pageCount_dec, _currentPreviewPage_dec, _pdfUrl_dec2, _a105, _DeesThumbnailPdf_decorators, _init106, _pdfUrl2, _currentPreviewPage, _pageCount, _rendered, _isHovering, _isA4Format, _fileSize2;
187686
+ var _fileSize_dec2, _isA4Format_dec, _isHovering_dec, _rendered_dec, _pageCount_dec, _currentPreviewPage_dec, _pdfUrl_dec2, _a106, _DeesThumbnailPdf_decorators, _init107, _pdfUrl2, _currentPreviewPage, _pageCount, _rendered, _isHovering, _isA4Format, _fileSize2;
187109
187687
  _DeesThumbnailPdf_decorators = [customElement("dees-thumbnail-pdf")];
187110
- var _DeesThumbnailPdf = class _DeesThumbnailPdf extends (_a105 = DeesThumbnailBase, _pdfUrl_dec2 = [n5({ type: String })], _currentPreviewPage_dec = [n5({ type: Number })], _pageCount_dec = [n5({ type: Number })], _rendered_dec = [n5({ type: Boolean })], _isHovering_dec = [n5({ type: Boolean })], _isA4Format_dec = [n5({ type: Boolean })], _fileSize_dec2 = [r5()], _a105) {
187688
+ var _DeesThumbnailPdf = class _DeesThumbnailPdf extends (_a106 = DeesThumbnailBase, _pdfUrl_dec2 = [n5({ type: String })], _currentPreviewPage_dec = [n5({ type: Number })], _pageCount_dec = [n5({ type: Number })], _rendered_dec = [n5({ type: Boolean })], _isHovering_dec = [n5({ type: Boolean })], _isA4Format_dec = [n5({ type: Boolean })], _fileSize_dec2 = [r5()], _a106) {
187111
187689
  constructor() {
187112
187690
  super(...arguments);
187113
- __privateAdd(this, _pdfUrl2, __runInitializers(_init106, 8, this, "")), __runInitializers(_init106, 11, this);
187114
- __privateAdd(this, _currentPreviewPage, __runInitializers(_init106, 12, this, 1)), __runInitializers(_init106, 15, this);
187115
- __privateAdd(this, _pageCount, __runInitializers(_init106, 16, this, 0)), __runInitializers(_init106, 19, this);
187116
- __privateAdd(this, _rendered, __runInitializers(_init106, 20, this, false)), __runInitializers(_init106, 23, this);
187117
- __privateAdd(this, _isHovering, __runInitializers(_init106, 24, this, false)), __runInitializers(_init106, 27, this);
187118
- __privateAdd(this, _isA4Format, __runInitializers(_init106, 28, this, true)), __runInitializers(_init106, 31, this);
187119
- __privateAdd(this, _fileSize2, __runInitializers(_init106, 32, this, 0)), __runInitializers(_init106, 35, this);
187691
+ __privateAdd(this, _pdfUrl2, __runInitializers(_init107, 8, this, "")), __runInitializers(_init107, 11, this);
187692
+ __privateAdd(this, _currentPreviewPage, __runInitializers(_init107, 12, this, 1)), __runInitializers(_init107, 15, this);
187693
+ __privateAdd(this, _pageCount, __runInitializers(_init107, 16, this, 0)), __runInitializers(_init107, 19, this);
187694
+ __privateAdd(this, _rendered, __runInitializers(_init107, 20, this, false)), __runInitializers(_init107, 23, this);
187695
+ __privateAdd(this, _isHovering, __runInitializers(_init107, 24, this, false)), __runInitializers(_init107, 27, this);
187696
+ __privateAdd(this, _isA4Format, __runInitializers(_init107, 28, this, true)), __runInitializers(_init107, 31, this);
187697
+ __privateAdd(this, _fileSize2, __runInitializers(_init107, 32, this, 0)), __runInitializers(_init107, 35, this);
187120
187698
  __publicField(this, "renderPagesTask", null);
187121
187699
  __publicField(this, "renderPagesQueued", false);
187122
187700
  __publicField(this, "pdfDocument");
@@ -187440,7 +188018,7 @@ var _DeesThumbnailPdf = class _DeesThumbnailPdf extends (_a105 = DeesThumbnailBa
187440
188018
  return { availableWidth, availableHeight };
187441
188019
  }
187442
188020
  };
187443
- _init106 = __decoratorStart(_a105);
188021
+ _init107 = __decoratorStart(_a106);
187444
188022
  _pdfUrl2 = new WeakMap();
187445
188023
  _currentPreviewPage = new WeakMap();
187446
188024
  _pageCount = new WeakMap();
@@ -187448,19 +188026,19 @@ _rendered = new WeakMap();
187448
188026
  _isHovering = new WeakMap();
187449
188027
  _isA4Format = new WeakMap();
187450
188028
  _fileSize2 = new WeakMap();
187451
- __decorateElement(_init106, 4, "pdfUrl", _pdfUrl_dec2, _DeesThumbnailPdf, _pdfUrl2);
187452
- __decorateElement(_init106, 4, "currentPreviewPage", _currentPreviewPage_dec, _DeesThumbnailPdf, _currentPreviewPage);
187453
- __decorateElement(_init106, 4, "pageCount", _pageCount_dec, _DeesThumbnailPdf, _pageCount);
187454
- __decorateElement(_init106, 4, "rendered", _rendered_dec, _DeesThumbnailPdf, _rendered);
187455
- __decorateElement(_init106, 4, "isHovering", _isHovering_dec, _DeesThumbnailPdf, _isHovering);
187456
- __decorateElement(_init106, 4, "isA4Format", _isA4Format_dec, _DeesThumbnailPdf, _isA4Format);
187457
- __decorateElement(_init106, 4, "fileSize", _fileSize_dec2, _DeesThumbnailPdf, _fileSize2);
187458
- _DeesThumbnailPdf = __decorateElement(_init106, 0, "DeesThumbnailPdf", _DeesThumbnailPdf_decorators, _DeesThumbnailPdf);
188029
+ __decorateElement(_init107, 4, "pdfUrl", _pdfUrl_dec2, _DeesThumbnailPdf, _pdfUrl2);
188030
+ __decorateElement(_init107, 4, "currentPreviewPage", _currentPreviewPage_dec, _DeesThumbnailPdf, _currentPreviewPage);
188031
+ __decorateElement(_init107, 4, "pageCount", _pageCount_dec, _DeesThumbnailPdf, _pageCount);
188032
+ __decorateElement(_init107, 4, "rendered", _rendered_dec, _DeesThumbnailPdf, _rendered);
188033
+ __decorateElement(_init107, 4, "isHovering", _isHovering_dec, _DeesThumbnailPdf, _isHovering);
188034
+ __decorateElement(_init107, 4, "isA4Format", _isA4Format_dec, _DeesThumbnailPdf, _isA4Format);
188035
+ __decorateElement(_init107, 4, "fileSize", _fileSize_dec2, _DeesThumbnailPdf, _fileSize2);
188036
+ _DeesThumbnailPdf = __decorateElement(_init107, 0, "DeesThumbnailPdf", _DeesThumbnailPdf_decorators, _DeesThumbnailPdf);
187459
188037
  __name(_DeesThumbnailPdf, "DeesThumbnailPdf");
187460
188038
  __publicField(_DeesThumbnailPdf, "demo", demo5);
187461
188039
  __publicField(_DeesThumbnailPdf, "demoGroups", ["Media", "PDF"]);
187462
188040
  __publicField(_DeesThumbnailPdf, "styles", [...thumbnailBaseStyles, tilePdfStyles]);
187463
- __runInitializers(_init106, 1, _DeesThumbnailPdf);
188041
+ __runInitializers(_init107, 1, _DeesThumbnailPdf);
187464
188042
  var DeesThumbnailPdf = _DeesThumbnailPdf;
187465
188043
 
187466
188044
  // ts_web/elements/00group-media/dees-thumbnail-image/demo.ts
@@ -187550,16 +188128,16 @@ var demo6 = /* @__PURE__ */ __name(() => b2`
187550
188128
 
187551
188129
  // ts_web/elements/00group-media/dees-thumbnail-image/component.ts
187552
188130
  init_dist_ts25();
187553
- var _imageHeight_dec, _imageWidth_dec, _imageLoaded_dec, _alt_dec2, _src_dec4, _a106, _DeesThumbnailImage_decorators, _init107, _src4, _alt2, _imageLoaded, _imageWidth, _imageHeight;
188131
+ var _imageHeight_dec, _imageWidth_dec, _imageLoaded_dec, _alt_dec2, _src_dec4, _a107, _DeesThumbnailImage_decorators, _init108, _src4, _alt2, _imageLoaded, _imageWidth, _imageHeight;
187554
188132
  _DeesThumbnailImage_decorators = [customElement("dees-thumbnail-image")];
187555
- var _DeesThumbnailImage = class _DeesThumbnailImage extends (_a106 = DeesThumbnailBase, _src_dec4 = [n5({ type: String })], _alt_dec2 = [n5({ type: String })], _imageLoaded_dec = [r5()], _imageWidth_dec = [r5()], _imageHeight_dec = [r5()], _a106) {
188133
+ var _DeesThumbnailImage = class _DeesThumbnailImage extends (_a107 = DeesThumbnailBase, _src_dec4 = [n5({ type: String })], _alt_dec2 = [n5({ type: String })], _imageLoaded_dec = [r5()], _imageWidth_dec = [r5()], _imageHeight_dec = [r5()], _a107) {
187556
188134
  constructor() {
187557
188135
  super(...arguments);
187558
- __privateAdd(this, _src4, __runInitializers(_init107, 8, this, "")), __runInitializers(_init107, 11, this);
187559
- __privateAdd(this, _alt2, __runInitializers(_init107, 12, this, "")), __runInitializers(_init107, 15, this);
187560
- __privateAdd(this, _imageLoaded, __runInitializers(_init107, 16, this, false)), __runInitializers(_init107, 19, this);
187561
- __privateAdd(this, _imageWidth, __runInitializers(_init107, 20, this, 0)), __runInitializers(_init107, 23, this);
187562
- __privateAdd(this, _imageHeight, __runInitializers(_init107, 24, this, 0)), __runInitializers(_init107, 27, this);
188136
+ __privateAdd(this, _src4, __runInitializers(_init108, 8, this, "")), __runInitializers(_init108, 11, this);
188137
+ __privateAdd(this, _alt2, __runInitializers(_init108, 12, this, "")), __runInitializers(_init108, 15, this);
188138
+ __privateAdd(this, _imageLoaded, __runInitializers(_init108, 16, this, false)), __runInitializers(_init108, 19, this);
188139
+ __privateAdd(this, _imageWidth, __runInitializers(_init108, 20, this, 0)), __runInitializers(_init108, 23, this);
188140
+ __privateAdd(this, _imageHeight, __runInitializers(_init108, 24, this, 0)), __runInitializers(_init108, 27, this);
187563
188141
  __publicField(this, "hasStartedLoading", false);
187564
188142
  }
187565
188143
  renderTileContent() {
@@ -187629,18 +188207,18 @@ var _DeesThumbnailImage = class _DeesThumbnailImage extends (_a106 = DeesThumbna
187629
188207
  }
187630
188208
  }
187631
188209
  };
187632
- _init107 = __decoratorStart(_a106);
188210
+ _init108 = __decoratorStart(_a107);
187633
188211
  _src4 = new WeakMap();
187634
188212
  _alt2 = new WeakMap();
187635
188213
  _imageLoaded = new WeakMap();
187636
188214
  _imageWidth = new WeakMap();
187637
188215
  _imageHeight = new WeakMap();
187638
- __decorateElement(_init107, 4, "src", _src_dec4, _DeesThumbnailImage, _src4);
187639
- __decorateElement(_init107, 4, "alt", _alt_dec2, _DeesThumbnailImage, _alt2);
187640
- __decorateElement(_init107, 4, "imageLoaded", _imageLoaded_dec, _DeesThumbnailImage, _imageLoaded);
187641
- __decorateElement(_init107, 4, "imageWidth", _imageWidth_dec, _DeesThumbnailImage, _imageWidth);
187642
- __decorateElement(_init107, 4, "imageHeight", _imageHeight_dec, _DeesThumbnailImage, _imageHeight);
187643
- _DeesThumbnailImage = __decorateElement(_init107, 0, "DeesThumbnailImage", _DeesThumbnailImage_decorators, _DeesThumbnailImage);
188216
+ __decorateElement(_init108, 4, "src", _src_dec4, _DeesThumbnailImage, _src4);
188217
+ __decorateElement(_init108, 4, "alt", _alt_dec2, _DeesThumbnailImage, _alt2);
188218
+ __decorateElement(_init108, 4, "imageLoaded", _imageLoaded_dec, _DeesThumbnailImage, _imageLoaded);
188219
+ __decorateElement(_init108, 4, "imageWidth", _imageWidth_dec, _DeesThumbnailImage, _imageWidth);
188220
+ __decorateElement(_init108, 4, "imageHeight", _imageHeight_dec, _DeesThumbnailImage, _imageHeight);
188221
+ _DeesThumbnailImage = __decorateElement(_init108, 0, "DeesThumbnailImage", _DeesThumbnailImage_decorators, _DeesThumbnailImage);
187644
188222
  __name(_DeesThumbnailImage, "DeesThumbnailImage");
187645
188223
  __publicField(_DeesThumbnailImage, "demo", demo6);
187646
188224
  __publicField(_DeesThumbnailImage, "demoGroups", ["Media"]);
@@ -187684,7 +188262,7 @@ __publicField(_DeesThumbnailImage, "styles", [
187684
188262
 
187685
188263
  `
187686
188264
  ]);
187687
- __runInitializers(_init107, 1, _DeesThumbnailImage);
188265
+ __runInitializers(_init108, 1, _DeesThumbnailImage);
187688
188266
  var DeesThumbnailImage = _DeesThumbnailImage;
187689
188267
 
187690
188268
  // ts_web/elements/00group-media/dees-thumbnail-audio/demo.ts
@@ -187767,18 +188345,18 @@ var demo7 = /* @__PURE__ */ __name(() => b2`
187767
188345
 
187768
188346
  // ts_web/elements/00group-media/dees-thumbnail-audio/component.ts
187769
188347
  init_dist_ts25();
187770
- var _isPreviewPlaying_dec, _waveformReady_dec2, _waveformData_dec2, _duration_dec4, _artist_dec2, _title_dec3, _src_dec5, _a107, _DeesThumbnailAudio_decorators, _init108, _src5, _title3, _artist2, _duration4, _waveformData2, _waveformReady2, _isPreviewPlaying;
188348
+ var _isPreviewPlaying_dec, _waveformReady_dec2, _waveformData_dec2, _duration_dec4, _artist_dec2, _title_dec3, _src_dec5, _a108, _DeesThumbnailAudio_decorators, _init109, _src5, _title3, _artist2, _duration4, _waveformData2, _waveformReady2, _isPreviewPlaying;
187771
188349
  _DeesThumbnailAudio_decorators = [customElement("dees-thumbnail-audio")];
187772
- var _DeesThumbnailAudio = class _DeesThumbnailAudio extends (_a107 = DeesThumbnailBase, _src_dec5 = [n5({ type: String })], _title_dec3 = [n5({ type: String })], _artist_dec2 = [n5({ type: String })], _duration_dec4 = [r5()], _waveformData_dec2 = [r5()], _waveformReady_dec2 = [r5()], _isPreviewPlaying_dec = [r5()], _a107) {
188350
+ var _DeesThumbnailAudio = class _DeesThumbnailAudio extends (_a108 = DeesThumbnailBase, _src_dec5 = [n5({ type: String })], _title_dec3 = [n5({ type: String })], _artist_dec2 = [n5({ type: String })], _duration_dec4 = [r5()], _waveformData_dec2 = [r5()], _waveformReady_dec2 = [r5()], _isPreviewPlaying_dec = [r5()], _a108) {
187773
188351
  constructor() {
187774
188352
  super(...arguments);
187775
- __privateAdd(this, _src5, __runInitializers(_init108, 8, this, "")), __runInitializers(_init108, 11, this);
187776
- __privateAdd(this, _title3, __runInitializers(_init108, 12, this, "")), __runInitializers(_init108, 15, this);
187777
- __privateAdd(this, _artist2, __runInitializers(_init108, 16, this, "")), __runInitializers(_init108, 19, this);
187778
- __privateAdd(this, _duration4, __runInitializers(_init108, 20, this, 0)), __runInitializers(_init108, 23, this);
187779
- __privateAdd(this, _waveformData2, __runInitializers(_init108, 24, this, [])), __runInitializers(_init108, 27, this);
187780
- __privateAdd(this, _waveformReady2, __runInitializers(_init108, 28, this, false)), __runInitializers(_init108, 31, this);
187781
- __privateAdd(this, _isPreviewPlaying, __runInitializers(_init108, 32, this, false)), __runInitializers(_init108, 35, this);
188353
+ __privateAdd(this, _src5, __runInitializers(_init109, 8, this, "")), __runInitializers(_init109, 11, this);
188354
+ __privateAdd(this, _title3, __runInitializers(_init109, 12, this, "")), __runInitializers(_init109, 15, this);
188355
+ __privateAdd(this, _artist2, __runInitializers(_init109, 16, this, "")), __runInitializers(_init109, 19, this);
188356
+ __privateAdd(this, _duration4, __runInitializers(_init109, 20, this, 0)), __runInitializers(_init109, 23, this);
188357
+ __privateAdd(this, _waveformData2, __runInitializers(_init109, 24, this, [])), __runInitializers(_init109, 27, this);
188358
+ __privateAdd(this, _waveformReady2, __runInitializers(_init109, 28, this, false)), __runInitializers(_init109, 31, this);
188359
+ __privateAdd(this, _isPreviewPlaying, __runInitializers(_init109, 32, this, false)), __runInitializers(_init109, 35, this);
187782
188360
  __publicField(this, "audioElement", null);
187783
188361
  __publicField(this, "previewTimeout", null);
187784
188362
  __publicField(this, "hasLoadedWaveform", false);
@@ -187942,7 +188520,7 @@ var _DeesThumbnailAudio = class _DeesThumbnailAudio extends (_a107 = DeesThumbna
187942
188520
  return `${mins}:${secs.toString().padStart(2, "0")}`;
187943
188521
  }
187944
188522
  };
187945
- _init108 = __decoratorStart(_a107);
188523
+ _init109 = __decoratorStart(_a108);
187946
188524
  _src5 = new WeakMap();
187947
188525
  _title3 = new WeakMap();
187948
188526
  _artist2 = new WeakMap();
@@ -187950,14 +188528,14 @@ _duration4 = new WeakMap();
187950
188528
  _waveformData2 = new WeakMap();
187951
188529
  _waveformReady2 = new WeakMap();
187952
188530
  _isPreviewPlaying = new WeakMap();
187953
- __decorateElement(_init108, 4, "src", _src_dec5, _DeesThumbnailAudio, _src5);
187954
- __decorateElement(_init108, 4, "title", _title_dec3, _DeesThumbnailAudio, _title3);
187955
- __decorateElement(_init108, 4, "artist", _artist_dec2, _DeesThumbnailAudio, _artist2);
187956
- __decorateElement(_init108, 4, "duration", _duration_dec4, _DeesThumbnailAudio, _duration4);
187957
- __decorateElement(_init108, 4, "waveformData", _waveformData_dec2, _DeesThumbnailAudio, _waveformData2);
187958
- __decorateElement(_init108, 4, "waveformReady", _waveformReady_dec2, _DeesThumbnailAudio, _waveformReady2);
187959
- __decorateElement(_init108, 4, "isPreviewPlaying", _isPreviewPlaying_dec, _DeesThumbnailAudio, _isPreviewPlaying);
187960
- _DeesThumbnailAudio = __decorateElement(_init108, 0, "DeesThumbnailAudio", _DeesThumbnailAudio_decorators, _DeesThumbnailAudio);
188531
+ __decorateElement(_init109, 4, "src", _src_dec5, _DeesThumbnailAudio, _src5);
188532
+ __decorateElement(_init109, 4, "title", _title_dec3, _DeesThumbnailAudio, _title3);
188533
+ __decorateElement(_init109, 4, "artist", _artist_dec2, _DeesThumbnailAudio, _artist2);
188534
+ __decorateElement(_init109, 4, "duration", _duration_dec4, _DeesThumbnailAudio, _duration4);
188535
+ __decorateElement(_init109, 4, "waveformData", _waveformData_dec2, _DeesThumbnailAudio, _waveformData2);
188536
+ __decorateElement(_init109, 4, "waveformReady", _waveformReady_dec2, _DeesThumbnailAudio, _waveformReady2);
188537
+ __decorateElement(_init109, 4, "isPreviewPlaying", _isPreviewPlaying_dec, _DeesThumbnailAudio, _isPreviewPlaying);
188538
+ _DeesThumbnailAudio = __decorateElement(_init109, 0, "DeesThumbnailAudio", _DeesThumbnailAudio_decorators, _DeesThumbnailAudio);
187961
188539
  __name(_DeesThumbnailAudio, "DeesThumbnailAudio");
187962
188540
  __publicField(_DeesThumbnailAudio, "demo", demo7);
187963
188541
  __publicField(_DeesThumbnailAudio, "demoGroups", ["Media"]);
@@ -188069,7 +188647,7 @@ __publicField(_DeesThumbnailAudio, "styles", [
188069
188647
  }
188070
188648
  `
188071
188649
  ]);
188072
- __runInitializers(_init108, 1, _DeesThumbnailAudio);
188650
+ __runInitializers(_init109, 1, _DeesThumbnailAudio);
188073
188651
  var DeesThumbnailAudio = _DeesThumbnailAudio;
188074
188652
 
188075
188653
  // ts_web/elements/00group-media/dees-thumbnail-video/demo.ts
@@ -188154,16 +188732,16 @@ var demo8 = /* @__PURE__ */ __name(() => b2`
188154
188732
 
188155
188733
  // ts_web/elements/00group-media/dees-thumbnail-video/component.ts
188156
188734
  init_dist_ts25();
188157
- var _isHovering_dec2, _thumbnailCaptured_dec, _duration_dec5, _poster_dec2, _src_dec6, _a108, _DeesThumbnailVideo_decorators, _init109, _src6, _poster2, _duration5, _thumbnailCaptured, _isHovering2;
188735
+ var _isHovering_dec2, _thumbnailCaptured_dec, _duration_dec5, _poster_dec2, _src_dec6, _a109, _DeesThumbnailVideo_decorators, _init110, _src6, _poster2, _duration5, _thumbnailCaptured, _isHovering2;
188158
188736
  _DeesThumbnailVideo_decorators = [customElement("dees-thumbnail-video")];
188159
- var _DeesThumbnailVideo = class _DeesThumbnailVideo extends (_a108 = DeesThumbnailBase, _src_dec6 = [n5({ type: String })], _poster_dec2 = [n5({ type: String })], _duration_dec5 = [r5()], _thumbnailCaptured_dec = [r5()], _isHovering_dec2 = [r5()], _a108) {
188737
+ var _DeesThumbnailVideo = class _DeesThumbnailVideo extends (_a109 = DeesThumbnailBase, _src_dec6 = [n5({ type: String })], _poster_dec2 = [n5({ type: String })], _duration_dec5 = [r5()], _thumbnailCaptured_dec = [r5()], _isHovering_dec2 = [r5()], _a109) {
188160
188738
  constructor() {
188161
188739
  super(...arguments);
188162
- __privateAdd(this, _src6, __runInitializers(_init109, 8, this, "")), __runInitializers(_init109, 11, this);
188163
- __privateAdd(this, _poster2, __runInitializers(_init109, 12, this, "")), __runInitializers(_init109, 15, this);
188164
- __privateAdd(this, _duration5, __runInitializers(_init109, 16, this, 0)), __runInitializers(_init109, 19, this);
188165
- __privateAdd(this, _thumbnailCaptured, __runInitializers(_init109, 20, this, false)), __runInitializers(_init109, 23, this);
188166
- __privateAdd(this, _isHovering2, __runInitializers(_init109, 24, this, false)), __runInitializers(_init109, 27, this);
188740
+ __privateAdd(this, _src6, __runInitializers(_init110, 8, this, "")), __runInitializers(_init110, 11, this);
188741
+ __privateAdd(this, _poster2, __runInitializers(_init110, 12, this, "")), __runInitializers(_init110, 15, this);
188742
+ __privateAdd(this, _duration5, __runInitializers(_init110, 16, this, 0)), __runInitializers(_init110, 19, this);
188743
+ __privateAdd(this, _thumbnailCaptured, __runInitializers(_init110, 20, this, false)), __runInitializers(_init110, 23, this);
188744
+ __privateAdd(this, _isHovering2, __runInitializers(_init110, 24, this, false)), __runInitializers(_init110, 27, this);
188167
188745
  __publicField(this, "thumbnailCanvas", null);
188168
188746
  __publicField(this, "hoverVideo", null);
188169
188747
  __publicField(this, "hasStartedLoading", false);
@@ -188330,18 +188908,18 @@ var _DeesThumbnailVideo = class _DeesThumbnailVideo extends (_a108 = DeesThumbna
188330
188908
  return `${mins}:${secs.toString().padStart(2, "0")}`;
188331
188909
  }
188332
188910
  };
188333
- _init109 = __decoratorStart(_a108);
188911
+ _init110 = __decoratorStart(_a109);
188334
188912
  _src6 = new WeakMap();
188335
188913
  _poster2 = new WeakMap();
188336
188914
  _duration5 = new WeakMap();
188337
188915
  _thumbnailCaptured = new WeakMap();
188338
188916
  _isHovering2 = new WeakMap();
188339
- __decorateElement(_init109, 4, "src", _src_dec6, _DeesThumbnailVideo, _src6);
188340
- __decorateElement(_init109, 4, "poster", _poster_dec2, _DeesThumbnailVideo, _poster2);
188341
- __decorateElement(_init109, 4, "duration", _duration_dec5, _DeesThumbnailVideo, _duration5);
188342
- __decorateElement(_init109, 4, "thumbnailCaptured", _thumbnailCaptured_dec, _DeesThumbnailVideo, _thumbnailCaptured);
188343
- __decorateElement(_init109, 4, "isHovering", _isHovering_dec2, _DeesThumbnailVideo, _isHovering2);
188344
- _DeesThumbnailVideo = __decorateElement(_init109, 0, "DeesThumbnailVideo", _DeesThumbnailVideo_decorators, _DeesThumbnailVideo);
188917
+ __decorateElement(_init110, 4, "src", _src_dec6, _DeesThumbnailVideo, _src6);
188918
+ __decorateElement(_init110, 4, "poster", _poster_dec2, _DeesThumbnailVideo, _poster2);
188919
+ __decorateElement(_init110, 4, "duration", _duration_dec5, _DeesThumbnailVideo, _duration5);
188920
+ __decorateElement(_init110, 4, "thumbnailCaptured", _thumbnailCaptured_dec, _DeesThumbnailVideo, _thumbnailCaptured);
188921
+ __decorateElement(_init110, 4, "isHovering", _isHovering_dec2, _DeesThumbnailVideo, _isHovering2);
188922
+ _DeesThumbnailVideo = __decorateElement(_init110, 0, "DeesThumbnailVideo", _DeesThumbnailVideo_decorators, _DeesThumbnailVideo);
188345
188923
  __name(_DeesThumbnailVideo, "DeesThumbnailVideo");
188346
188924
  __publicField(_DeesThumbnailVideo, "demo", demo8);
188347
188925
  __publicField(_DeesThumbnailVideo, "demoGroups", ["Media"]);
@@ -188421,7 +188999,7 @@ __publicField(_DeesThumbnailVideo, "styles", [
188421
188999
  }
188422
189000
  `
188423
189001
  ]);
188424
- __runInitializers(_init109, 1, _DeesThumbnailVideo);
189002
+ __runInitializers(_init110, 1, _DeesThumbnailVideo);
188425
189003
  var DeesThumbnailVideo = _DeesThumbnailVideo;
188426
189004
 
188427
189005
  // ts_web/elements/00group-media/dees-thumbnail-note/demo.ts
@@ -188559,15 +189137,15 @@ Action Items:
188559
189137
 
188560
189138
  // ts_web/elements/00group-media/dees-thumbnail-note/component.ts
188561
189139
  init_dist_ts25();
188562
- var _isHovering_dec3, _language_dec4, _content_dec4, _title_dec4, _a109, _DeesThumbnailNote_decorators, _init110, _title4, _content4, _language4, _isHovering3;
189140
+ var _isHovering_dec3, _language_dec4, _content_dec4, _title_dec4, _a110, _DeesThumbnailNote_decorators, _init111, _title4, _content4, _language4, _isHovering3;
188563
189141
  _DeesThumbnailNote_decorators = [customElement("dees-thumbnail-note")];
188564
- var _DeesThumbnailNote = class _DeesThumbnailNote extends (_a109 = DeesThumbnailBase, _title_dec4 = [n5({ type: String })], _content_dec4 = [n5({ type: String })], _language_dec4 = [n5({ type: String })], _isHovering_dec3 = [r5()], _a109) {
189142
+ var _DeesThumbnailNote = class _DeesThumbnailNote extends (_a110 = DeesThumbnailBase, _title_dec4 = [n5({ type: String })], _content_dec4 = [n5({ type: String })], _language_dec4 = [n5({ type: String })], _isHovering_dec3 = [r5()], _a110) {
188565
189143
  constructor() {
188566
189144
  super(...arguments);
188567
- __privateAdd(this, _title4, __runInitializers(_init110, 8, this, "")), __runInitializers(_init110, 11, this);
188568
- __privateAdd(this, _content4, __runInitializers(_init110, 12, this, "")), __runInitializers(_init110, 15, this);
188569
- __privateAdd(this, _language4, __runInitializers(_init110, 16, this, "")), __runInitializers(_init110, 19, this);
188570
- __privateAdd(this, _isHovering3, __runInitializers(_init110, 20, this, false)), __runInitializers(_init110, 23, this);
189145
+ __privateAdd(this, _title4, __runInitializers(_init111, 8, this, "")), __runInitializers(_init111, 11, this);
189146
+ __privateAdd(this, _content4, __runInitializers(_init111, 12, this, "")), __runInitializers(_init111, 15, this);
189147
+ __privateAdd(this, _language4, __runInitializers(_init111, 16, this, "")), __runInitializers(_init111, 19, this);
189148
+ __privateAdd(this, _isHovering3, __runInitializers(_init111, 20, this, false)), __runInitializers(_init111, 23, this);
188571
189149
  __publicField(this, "noteBodyElement", null);
188572
189150
  }
188573
189151
  renderTileContent() {
@@ -188645,16 +189223,16 @@ var _DeesThumbnailNote = class _DeesThumbnailNote extends (_a109 = DeesThumbnail
188645
189223
  return `${firstLine}\u2013${lastLine} of ${totalLines}`;
188646
189224
  }
188647
189225
  };
188648
- _init110 = __decoratorStart(_a109);
189226
+ _init111 = __decoratorStart(_a110);
188649
189227
  _title4 = new WeakMap();
188650
189228
  _content4 = new WeakMap();
188651
189229
  _language4 = new WeakMap();
188652
189230
  _isHovering3 = new WeakMap();
188653
- __decorateElement(_init110, 4, "title", _title_dec4, _DeesThumbnailNote, _title4);
188654
- __decorateElement(_init110, 4, "content", _content_dec4, _DeesThumbnailNote, _content4);
188655
- __decorateElement(_init110, 4, "language", _language_dec4, _DeesThumbnailNote, _language4);
188656
- __decorateElement(_init110, 4, "isHovering", _isHovering_dec3, _DeesThumbnailNote, _isHovering3);
188657
- _DeesThumbnailNote = __decorateElement(_init110, 0, "DeesThumbnailNote", _DeesThumbnailNote_decorators, _DeesThumbnailNote);
189231
+ __decorateElement(_init111, 4, "title", _title_dec4, _DeesThumbnailNote, _title4);
189232
+ __decorateElement(_init111, 4, "content", _content_dec4, _DeesThumbnailNote, _content4);
189233
+ __decorateElement(_init111, 4, "language", _language_dec4, _DeesThumbnailNote, _language4);
189234
+ __decorateElement(_init111, 4, "isHovering", _isHovering_dec3, _DeesThumbnailNote, _isHovering3);
189235
+ _DeesThumbnailNote = __decorateElement(_init111, 0, "DeesThumbnailNote", _DeesThumbnailNote_decorators, _DeesThumbnailNote);
188658
189236
  __name(_DeesThumbnailNote, "DeesThumbnailNote");
188659
189237
  __publicField(_DeesThumbnailNote, "demo", demo9);
188660
189238
  __publicField(_DeesThumbnailNote, "demoGroups", ["Media"]);
@@ -188740,7 +189318,7 @@ __publicField(_DeesThumbnailNote, "styles", [
188740
189318
 
188741
189319
  `
188742
189320
  ]);
188743
- __runInitializers(_init110, 1, _DeesThumbnailNote);
189321
+ __runInitializers(_init111, 1, _DeesThumbnailNote);
188744
189322
  var DeesThumbnailNote = _DeesThumbnailNote;
188745
189323
 
188746
189324
  // ts_web/elements/00group-media/dees-thumbnail-folder/demo.ts
@@ -188862,7 +189440,7 @@ var demo10 = /* @__PURE__ */ __name(() => {
188862
189440
 
188863
189441
  // ts_web/elements/00group-media/dees-thumbnail-folder/component.ts
188864
189442
  init_dist_ts25();
188865
- var _items_dec, _name_dec, _a110, _DeesThumbnailFolder_decorators, _init111, _name, _items;
189443
+ var _items_dec, _name_dec, _a111, _DeesThumbnailFolder_decorators, _init112, _name, _items;
188866
189444
  var TYPE_ICON_MAP = {
188867
189445
  pdf: "lucide:FileText",
188868
189446
  image: "lucide:Image",
@@ -188873,11 +189451,11 @@ var TYPE_ICON_MAP = {
188873
189451
  unknown: "lucide:File"
188874
189452
  };
188875
189453
  _DeesThumbnailFolder_decorators = [customElement("dees-thumbnail-folder")];
188876
- var _DeesThumbnailFolder = class _DeesThumbnailFolder extends (_a110 = DeesThumbnailBase, _name_dec = [n5({ type: String })], _items_dec = [n5({ attribute: false })], _a110) {
189454
+ var _DeesThumbnailFolder = class _DeesThumbnailFolder extends (_a111 = DeesThumbnailBase, _name_dec = [n5({ type: String })], _items_dec = [n5({ attribute: false })], _a111) {
188877
189455
  constructor() {
188878
189456
  super(...arguments);
188879
- __privateAdd(this, _name, __runInitializers(_init111, 8, this, "")), __runInitializers(_init111, 11, this);
188880
- __privateAdd(this, _items, __runInitializers(_init111, 12, this, [])), __runInitializers(_init111, 15, this);
189457
+ __privateAdd(this, _name, __runInitializers(_init112, 8, this, "")), __runInitializers(_init112, 11, this);
189458
+ __privateAdd(this, _items, __runInitializers(_init112, 12, this, [])), __runInitializers(_init112, 15, this);
188881
189459
  }
188882
189460
  renderTileContent() {
188883
189461
  const previewItems = this.items.slice(0, 4);
@@ -188931,12 +189509,12 @@ var _DeesThumbnailFolder = class _DeesThumbnailFolder extends (_a110 = DeesThumb
188931
189509
  };
188932
189510
  }
188933
189511
  };
188934
- _init111 = __decoratorStart(_a110);
189512
+ _init112 = __decoratorStart(_a111);
188935
189513
  _name = new WeakMap();
188936
189514
  _items = new WeakMap();
188937
- __decorateElement(_init111, 4, "name", _name_dec, _DeesThumbnailFolder, _name);
188938
- __decorateElement(_init111, 4, "items", _items_dec, _DeesThumbnailFolder, _items);
188939
- _DeesThumbnailFolder = __decorateElement(_init111, 0, "DeesThumbnailFolder", _DeesThumbnailFolder_decorators, _DeesThumbnailFolder);
189515
+ __decorateElement(_init112, 4, "name", _name_dec, _DeesThumbnailFolder, _name);
189516
+ __decorateElement(_init112, 4, "items", _items_dec, _DeesThumbnailFolder, _items);
189517
+ _DeesThumbnailFolder = __decorateElement(_init112, 0, "DeesThumbnailFolder", _DeesThumbnailFolder_decorators, _DeesThumbnailFolder);
188940
189518
  __name(_DeesThumbnailFolder, "DeesThumbnailFolder");
188941
189519
  __publicField(_DeesThumbnailFolder, "demo", demo10);
188942
189520
  __publicField(_DeesThumbnailFolder, "demoGroups", ["Media"]);
@@ -189014,7 +189592,7 @@ __publicField(_DeesThumbnailFolder, "styles", [
189014
189592
 
189015
189593
  `
189016
189594
  ]);
189017
- __runInitializers(_init111, 1, _DeesThumbnailFolder);
189595
+ __runInitializers(_init112, 1, _DeesThumbnailFolder);
189018
189596
  var DeesThumbnailFolder = _DeesThumbnailFolder;
189019
189597
 
189020
189598
  // ts_web/elements/00group-overlay/dees-modal/index.ts
@@ -189022,7 +189600,7 @@ init_dees_modal();
189022
189600
 
189023
189601
  // ts_web/elements/00group-overlay/dees-speechbubble/dees-speechbubble.demo.ts
189024
189602
  init_dist_ts25();
189025
- var demoFunc73 = /* @__PURE__ */ __name(() => {
189603
+ var demoFunc74 = /* @__PURE__ */ __name(() => {
189026
189604
  return b2`
189027
189605
  <style>
189028
189606
  .ref1 {
@@ -189050,9 +189628,9 @@ init_plugins4();
189050
189628
  init_dist_ts25();
189051
189629
  init_dees_windowlayer();
189052
189630
  init_theme();
189053
- var _status_dec7, _manifested_dec, _wave_dec, _text_dec4, _reffedElement_dec, _a111, _DeesSpeechbubble_decorators, _init112, _reffedElement, _text4, _wave, _manifested, _status7;
189631
+ var _status_dec7, _manifested_dec, _wave_dec, _text_dec4, _reffedElement_dec, _a112, _DeesSpeechbubble_decorators, _init113, _reffedElement, _text4, _wave, _manifested, _status7;
189054
189632
  _DeesSpeechbubble_decorators = [customElement("dees-speechbubble")];
189055
- var _DeesSpeechbubble = class _DeesSpeechbubble extends (_a111 = DeesElement, _reffedElement_dec = [n5({
189633
+ var _DeesSpeechbubble = class _DeesSpeechbubble extends (_a112 = DeesElement, _reffedElement_dec = [n5({
189056
189634
  type: Object
189057
189635
  })], _text_dec4 = [n5({
189058
189636
  type: String,
@@ -189063,14 +189641,14 @@ var _DeesSpeechbubble = class _DeesSpeechbubble extends (_a111 = DeesElement, _r
189063
189641
  type: Boolean
189064
189642
  })], _status_dec7 = [n5({
189065
189643
  type: String
189066
- })], _a111) {
189644
+ })], _a112) {
189067
189645
  constructor() {
189068
189646
  super();
189069
- __privateAdd(this, _reffedElement, __runInitializers(_init112, 8, this)), __runInitializers(_init112, 11, this);
189070
- __privateAdd(this, _text4, __runInitializers(_init112, 12, this)), __runInitializers(_init112, 15, this);
189071
- __privateAdd(this, _wave, __runInitializers(_init112, 16, this, false)), __runInitializers(_init112, 19, this);
189072
- __privateAdd(this, _manifested, __runInitializers(_init112, 20, this, false)), __runInitializers(_init112, 23, this);
189073
- __privateAdd(this, _status7, __runInitializers(_init112, 24, this, "normal")), __runInitializers(_init112, 27, this);
189647
+ __privateAdd(this, _reffedElement, __runInitializers(_init113, 8, this)), __runInitializers(_init113, 11, this);
189648
+ __privateAdd(this, _text4, __runInitializers(_init113, 12, this)), __runInitializers(_init113, 15, this);
189649
+ __privateAdd(this, _wave, __runInitializers(_init113, 16, this, false)), __runInitializers(_init113, 19, this);
189650
+ __privateAdd(this, _manifested, __runInitializers(_init113, 20, this, false)), __runInitializers(_init113, 23, this);
189651
+ __privateAdd(this, _status7, __runInitializers(_init113, 24, this, "normal")), __runInitializers(_init113, 27, this);
189074
189652
  __publicField(this, "windowLayer");
189075
189653
  }
189076
189654
  // STATIC
@@ -189148,20 +189726,20 @@ var _DeesSpeechbubble = class _DeesSpeechbubble extends (_a111 = DeesElement, _r
189148
189726
  this.windowLayer.destroy();
189149
189727
  }
189150
189728
  };
189151
- _init112 = __decoratorStart(_a111);
189729
+ _init113 = __decoratorStart(_a112);
189152
189730
  _reffedElement = new WeakMap();
189153
189731
  _text4 = new WeakMap();
189154
189732
  _wave = new WeakMap();
189155
189733
  _manifested = new WeakMap();
189156
189734
  _status7 = new WeakMap();
189157
- __decorateElement(_init112, 4, "reffedElement", _reffedElement_dec, _DeesSpeechbubble, _reffedElement);
189158
- __decorateElement(_init112, 4, "text", _text_dec4, _DeesSpeechbubble, _text4);
189159
- __decorateElement(_init112, 4, "wave", _wave_dec, _DeesSpeechbubble, _wave);
189160
- __decorateElement(_init112, 4, "manifested", _manifested_dec, _DeesSpeechbubble, _manifested);
189161
- __decorateElement(_init112, 4, "status", _status_dec7, _DeesSpeechbubble, _status7);
189162
- _DeesSpeechbubble = __decorateElement(_init112, 0, "DeesSpeechbubble", _DeesSpeechbubble_decorators, _DeesSpeechbubble);
189735
+ __decorateElement(_init113, 4, "reffedElement", _reffedElement_dec, _DeesSpeechbubble, _reffedElement);
189736
+ __decorateElement(_init113, 4, "text", _text_dec4, _DeesSpeechbubble, _text4);
189737
+ __decorateElement(_init113, 4, "wave", _wave_dec, _DeesSpeechbubble, _wave);
189738
+ __decorateElement(_init113, 4, "manifested", _manifested_dec, _DeesSpeechbubble, _manifested);
189739
+ __decorateElement(_init113, 4, "status", _status_dec7, _DeesSpeechbubble, _status7);
189740
+ _DeesSpeechbubble = __decorateElement(_init113, 0, "DeesSpeechbubble", _DeesSpeechbubble_decorators, _DeesSpeechbubble);
189163
189741
  __name(_DeesSpeechbubble, "DeesSpeechbubble");
189164
- __publicField(_DeesSpeechbubble, "demo", demoFunc73);
189742
+ __publicField(_DeesSpeechbubble, "demo", demoFunc74);
189165
189743
  __publicField(_DeesSpeechbubble, "demoGroups", ["Overlay"]);
189166
189744
  __publicField(_DeesSpeechbubble, "styles", [
189167
189745
  themeDefaultStyles,
@@ -189279,7 +189857,7 @@ __publicField(_DeesSpeechbubble, "styles", [
189279
189857
  }
189280
189858
  `
189281
189859
  ]);
189282
- __runInitializers(_init112, 1, _DeesSpeechbubble);
189860
+ __runInitializers(_init113, 1, _DeesSpeechbubble);
189283
189861
  var DeesSpeechbubble = _DeesSpeechbubble;
189284
189862
 
189285
189863
  // ts_web/elements/00group-overlay/dees-windowlayer/index.ts
@@ -189287,9 +189865,9 @@ init_dees_windowlayer();
189287
189865
 
189288
189866
  // ts_web/elements/00group-simple/dees-simple-appdash/dees-simple-appdash.demo.ts
189289
189867
  init_dist_ts25();
189290
- var _DemoViewDashboard_decorators, _init114, _a113, _DemoViewAnalytics_decorators, _init115, _b3, _DemoViewSettings_decorators, _init116, _c2;
189868
+ var _DemoViewDashboard_decorators, _init115, _a114, _DemoViewAnalytics_decorators, _init116, _b3, _DemoViewSettings_decorators, _init117, _c2;
189291
189869
  _DemoViewDashboard_decorators = [customElement("demo-view-dashboard")];
189292
- var DemoViewDashboard = class extends (_a113 = DeesElement) {
189870
+ var DemoViewDashboard = class extends (_a114 = DeesElement) {
189293
189871
  static {
189294
189872
  __name(this, "DemoViewDashboard");
189295
189873
  }
@@ -189431,9 +190009,9 @@ var DemoViewDashboard = class extends (_a113 = DeesElement) {
189431
190009
  `;
189432
190010
  }
189433
190011
  };
189434
- _init114 = __decoratorStart(_a113);
189435
- DemoViewDashboard = __decorateElement(_init114, 0, "DemoViewDashboard", _DemoViewDashboard_decorators, DemoViewDashboard);
189436
- __runInitializers(_init114, 1, DemoViewDashboard);
190012
+ _init115 = __decoratorStart(_a114);
190013
+ DemoViewDashboard = __decorateElement(_init115, 0, "DemoViewDashboard", _DemoViewDashboard_decorators, DemoViewDashboard);
190014
+ __runInitializers(_init115, 1, DemoViewDashboard);
189437
190015
  _DemoViewAnalytics_decorators = [customElement("demo-view-analytics")];
189438
190016
  var DemoViewAnalytics = class extends (_b3 = DeesElement) {
189439
190017
  static {
@@ -189459,9 +190037,9 @@ var DemoViewAnalytics = class extends (_b3 = DeesElement) {
189459
190037
  `;
189460
190038
  }
189461
190039
  };
189462
- _init115 = __decoratorStart(_b3);
189463
- DemoViewAnalytics = __decorateElement(_init115, 0, "DemoViewAnalytics", _DemoViewAnalytics_decorators, DemoViewAnalytics);
189464
- __runInitializers(_init115, 1, DemoViewAnalytics);
190040
+ _init116 = __decoratorStart(_b3);
190041
+ DemoViewAnalytics = __decorateElement(_init116, 0, "DemoViewAnalytics", _DemoViewAnalytics_decorators, DemoViewAnalytics);
190042
+ __runInitializers(_init116, 1, DemoViewAnalytics);
189465
190043
  _DemoViewSettings_decorators = [customElement("demo-view-settings")];
189466
190044
  var DemoViewSettings = class extends (_c2 = DeesElement) {
189467
190045
  static {
@@ -189570,10 +190148,10 @@ var DemoViewSettings = class extends (_c2 = DeesElement) {
189570
190148
  `;
189571
190149
  }
189572
190150
  };
189573
- _init116 = __decoratorStart(_c2);
189574
- DemoViewSettings = __decorateElement(_init116, 0, "DemoViewSettings", _DemoViewSettings_decorators, DemoViewSettings);
189575
- __runInitializers(_init116, 1, DemoViewSettings);
189576
- var demoFunc74 = /* @__PURE__ */ __name(() => b2`
190151
+ _init117 = __decoratorStart(_c2);
190152
+ DemoViewSettings = __decorateElement(_init117, 0, "DemoViewSettings", _DemoViewSettings_decorators, DemoViewSettings);
190153
+ __runInitializers(_init117, 1, DemoViewSettings);
190154
+ var demoFunc75 = /* @__PURE__ */ __name(() => b2`
189577
190155
  <style>
189578
190156
  body {
189579
190157
  margin: 0;
@@ -189684,17 +190262,17 @@ var demoFunc74 = /* @__PURE__ */ __name(() => b2`
189684
190262
  init_dist_ts25();
189685
190263
  init_dees_icon();
189686
190264
  init_theme();
189687
- var __activeMessages_dec, _selectedView_dec, _globalMessages_dec, _terminalSetupCommand_dec, _viewTabs_dec, _name_dec2, _a114, _DeesSimpleAppDash_decorators, _init117, _name2, _viewTabs, _terminalSetupCommand, _globalMessages, _selectedView, __activeMessages;
190265
+ var __activeMessages_dec, _selectedView_dec, _globalMessages_dec, _terminalSetupCommand_dec, _viewTabs_dec, _name_dec2, _a115, _DeesSimpleAppDash_decorators, _init118, _name2, _viewTabs, _terminalSetupCommand, _globalMessages, _selectedView, __activeMessages;
189688
190266
  _DeesSimpleAppDash_decorators = [customElement("dees-simple-appdash")];
189689
- var _DeesSimpleAppDash = class _DeesSimpleAppDash extends (_a114 = DeesElement, _name_dec2 = [n5()], _viewTabs_dec = [n5({ type: Array })], _terminalSetupCommand_dec = [n5({ type: String })], _globalMessages_dec = [n5({ type: Array })], _selectedView_dec = [r5()], __activeMessages_dec = [r5()], _a114) {
190267
+ var _DeesSimpleAppDash = class _DeesSimpleAppDash extends (_a115 = DeesElement, _name_dec2 = [n5()], _viewTabs_dec = [n5({ type: Array })], _terminalSetupCommand_dec = [n5({ type: String })], _globalMessages_dec = [n5({ type: Array })], _selectedView_dec = [r5()], __activeMessages_dec = [r5()], _a115) {
189690
190268
  constructor() {
189691
190269
  super(...arguments);
189692
- __privateAdd(this, _name2, __runInitializers(_init117, 8, this, "Application Dashboard")), __runInitializers(_init117, 11, this);
189693
- __privateAdd(this, _viewTabs, __runInitializers(_init117, 12, this, [])), __runInitializers(_init117, 15, this);
189694
- __privateAdd(this, _terminalSetupCommand, __runInitializers(_init117, 16, this, `echo "Terminal ready"`)), __runInitializers(_init117, 19, this);
189695
- __privateAdd(this, _globalMessages, __runInitializers(_init117, 20, this, [])), __runInitializers(_init117, 23, this);
189696
- __privateAdd(this, _selectedView, __runInitializers(_init117, 24, this)), __runInitializers(_init117, 27, this);
189697
- __privateAdd(this, __activeMessages, __runInitializers(_init117, 28, this, [])), __runInitializers(_init117, 31, this);
190270
+ __privateAdd(this, _name2, __runInitializers(_init118, 8, this, "Application Dashboard")), __runInitializers(_init118, 11, this);
190271
+ __privateAdd(this, _viewTabs, __runInitializers(_init118, 12, this, [])), __runInitializers(_init118, 15, this);
190272
+ __privateAdd(this, _terminalSetupCommand, __runInitializers(_init118, 16, this, `echo "Terminal ready"`)), __runInitializers(_init118, 19, this);
190273
+ __privateAdd(this, _globalMessages, __runInitializers(_init118, 20, this, [])), __runInitializers(_init118, 23, this);
190274
+ __privateAdd(this, _selectedView, __runInitializers(_init118, 24, this)), __runInitializers(_init118, 27, this);
190275
+ __privateAdd(this, __activeMessages, __runInitializers(_init118, 28, this, [])), __runInitializers(_init118, 31, this);
189698
190276
  __publicField(this, "currentTerminal", null);
189699
190277
  __publicField(this, "currentView");
189700
190278
  }
@@ -189953,23 +190531,23 @@ var _DeesSimpleAppDash = class _DeesSimpleAppDash extends (_a114 = DeesElement,
189953
190531
  }));
189954
190532
  }
189955
190533
  };
189956
- _init117 = __decoratorStart(_a114);
190534
+ _init118 = __decoratorStart(_a115);
189957
190535
  _name2 = new WeakMap();
189958
190536
  _viewTabs = new WeakMap();
189959
190537
  _terminalSetupCommand = new WeakMap();
189960
190538
  _globalMessages = new WeakMap();
189961
190539
  _selectedView = new WeakMap();
189962
190540
  __activeMessages = new WeakMap();
189963
- __decorateElement(_init117, 4, "name", _name_dec2, _DeesSimpleAppDash, _name2);
189964
- __decorateElement(_init117, 4, "viewTabs", _viewTabs_dec, _DeesSimpleAppDash, _viewTabs);
189965
- __decorateElement(_init117, 4, "terminalSetupCommand", _terminalSetupCommand_dec, _DeesSimpleAppDash, _terminalSetupCommand);
189966
- __decorateElement(_init117, 4, "globalMessages", _globalMessages_dec, _DeesSimpleAppDash, _globalMessages);
189967
- __decorateElement(_init117, 4, "selectedView", _selectedView_dec, _DeesSimpleAppDash, _selectedView);
189968
- __decorateElement(_init117, 4, "_activeMessages", __activeMessages_dec, _DeesSimpleAppDash, __activeMessages);
189969
- _DeesSimpleAppDash = __decorateElement(_init117, 0, "DeesSimpleAppDash", _DeesSimpleAppDash_decorators, _DeesSimpleAppDash);
190541
+ __decorateElement(_init118, 4, "name", _name_dec2, _DeesSimpleAppDash, _name2);
190542
+ __decorateElement(_init118, 4, "viewTabs", _viewTabs_dec, _DeesSimpleAppDash, _viewTabs);
190543
+ __decorateElement(_init118, 4, "terminalSetupCommand", _terminalSetupCommand_dec, _DeesSimpleAppDash, _terminalSetupCommand);
190544
+ __decorateElement(_init118, 4, "globalMessages", _globalMessages_dec, _DeesSimpleAppDash, _globalMessages);
190545
+ __decorateElement(_init118, 4, "selectedView", _selectedView_dec, _DeesSimpleAppDash, _selectedView);
190546
+ __decorateElement(_init118, 4, "_activeMessages", __activeMessages_dec, _DeesSimpleAppDash, __activeMessages);
190547
+ _DeesSimpleAppDash = __decorateElement(_init118, 0, "DeesSimpleAppDash", _DeesSimpleAppDash_decorators, _DeesSimpleAppDash);
189970
190548
  __name(_DeesSimpleAppDash, "DeesSimpleAppDash");
189971
190549
  // STATIC
189972
- __publicField(_DeesSimpleAppDash, "demo", demoFunc74);
190550
+ __publicField(_DeesSimpleAppDash, "demo", demoFunc75);
189973
190551
  __publicField(_DeesSimpleAppDash, "demoGroups", ["Simple"]);
189974
190552
  __publicField(_DeesSimpleAppDash, "styles", [
189975
190553
  themeDefaultStyles,
@@ -190532,13 +191110,13 @@ __publicField(_DeesSimpleAppDash, "styles", [
190532
191110
  }
190533
191111
  `
190534
191112
  ]);
190535
- __runInitializers(_init117, 1, _DeesSimpleAppDash);
191113
+ __runInitializers(_init118, 1, _DeesSimpleAppDash);
190536
191114
  var DeesSimpleAppDash = _DeesSimpleAppDash;
190537
191115
 
190538
191116
  // ts_web/elements/00group-simple/dees-simple-login/dees-simple-login.demo.ts
190539
191117
  init_dist_ts25();
190540
191118
  init_theme();
190541
- var _log_dec, _variant_dec2, _a115, _DeesSimpleLoginDemo_decorators, _init118, _variant2, _log;
191119
+ var _log_dec, _variant_dec2, _a116, _DeesSimpleLoginDemo_decorators, _init119, _variant2, _log;
190542
191120
  var demoProviders = [
190543
191121
  { id: "idp-global", label: "idp.global", icon: "lucide:shieldCheck" },
190544
191122
  { id: "workspace", label: "Workspace SSO", icon: "lucide:building2" },
@@ -190589,11 +191167,11 @@ var variants = [
190589
191167
  }
190590
191168
  ];
190591
191169
  _DeesSimpleLoginDemo_decorators = [customElement("dees-simple-login-demo")];
190592
- var _DeesSimpleLoginDemo = class _DeesSimpleLoginDemo extends (_a115 = DeesElement, _variant_dec2 = [r5()], _log_dec = [r5()], _a115) {
191170
+ var _DeesSimpleLoginDemo = class _DeesSimpleLoginDemo extends (_a116 = DeesElement, _variant_dec2 = [r5()], _log_dec = [r5()], _a116) {
190593
191171
  constructor() {
190594
191172
  super(...arguments);
190595
- __privateAdd(this, _variant2, __runInitializers(_init118, 8, this, "full")), __runInitializers(_init118, 11, this);
190596
- __privateAdd(this, _log, __runInitializers(_init118, 12, this, [])), __runInitializers(_init118, 15, this);
191173
+ __privateAdd(this, _variant2, __runInitializers(_init119, 8, this, "full")), __runInitializers(_init119, 11, this);
191174
+ __privateAdd(this, _log, __runInitializers(_init119, 12, this, [])), __runInitializers(_init119, 15, this);
190597
191175
  }
190598
191176
  get loginElement() {
190599
191177
  return this.shadowRoot?.querySelector("dees-simple-login") || null;
@@ -190790,12 +191368,12 @@ var _DeesSimpleLoginDemo = class _DeesSimpleLoginDemo extends (_a115 = DeesEleme
190790
191368
  `;
190791
191369
  }
190792
191370
  };
190793
- _init118 = __decoratorStart(_a115);
191371
+ _init119 = __decoratorStart(_a116);
190794
191372
  _variant2 = new WeakMap();
190795
191373
  _log = new WeakMap();
190796
- __decorateElement(_init118, 4, "variant", _variant_dec2, _DeesSimpleLoginDemo, _variant2);
190797
- __decorateElement(_init118, 4, "log", _log_dec, _DeesSimpleLoginDemo, _log);
190798
- _DeesSimpleLoginDemo = __decorateElement(_init118, 0, "DeesSimpleLoginDemo", _DeesSimpleLoginDemo_decorators, _DeesSimpleLoginDemo);
191374
+ __decorateElement(_init119, 4, "variant", _variant_dec2, _DeesSimpleLoginDemo, _variant2);
191375
+ __decorateElement(_init119, 4, "log", _log_dec, _DeesSimpleLoginDemo, _log);
191376
+ _DeesSimpleLoginDemo = __decorateElement(_init119, 0, "DeesSimpleLoginDemo", _DeesSimpleLoginDemo_decorators, _DeesSimpleLoginDemo);
190799
191377
  __name(_DeesSimpleLoginDemo, "DeesSimpleLoginDemo");
190800
191378
  __publicField(_DeesSimpleLoginDemo, "styles", [
190801
191379
  themeDefaultStyles,
@@ -190905,9 +191483,9 @@ __publicField(_DeesSimpleLoginDemo, "styles", [
190905
191483
  }
190906
191484
  `
190907
191485
  ]);
190908
- __runInitializers(_init118, 1, _DeesSimpleLoginDemo);
191486
+ __runInitializers(_init119, 1, _DeesSimpleLoginDemo);
190909
191487
  var DeesSimpleLoginDemo = _DeesSimpleLoginDemo;
190910
- var demoFunc75 = /* @__PURE__ */ __name(() => b2`
191488
+ var demoFunc76 = /* @__PURE__ */ __name(() => b2`
190911
191489
  <style>
190912
191490
  body {
190913
191491
  margin: 0;
@@ -190931,32 +191509,32 @@ init_dist_ts25();
190931
191509
  init_theme();
190932
191510
  init_dees_tile();
190933
191511
  init_dees_icon();
190934
- var _errorMap_dec, _busyKeys_dec, _detectedPasskeySupport_dec, _passwordLoginHandler_dec, _providerLoginHandler_dec, _passkeyRegisterHandler_dec, _passkeyLoginHandler_dec, _labels_dec, _methodOrder_dec, _password_dec, _providers_dec, _passkeyAutofill_dec, _passkeyAvailable_dec, _passkeyIntents_dec, _passkey_dec, _name_dec3, _a116, _DeesSimpleLogin_decorators, _init119, _name3, _passkey, _passkeyIntents, _passkeyAvailable, _passkeyAutofill, _providers, _password, _methodOrder, _labels, _passkeyLoginHandler, _passkeyRegisterHandler, _providerLoginHandler, _passwordLoginHandler, _detectedPasskeySupport, _busyKeys, _errorMap;
191512
+ var _errorMap_dec, _busyKeys_dec, _detectedPasskeySupport_dec, _passwordLoginHandler_dec, _providerLoginHandler_dec, _passkeyRegisterHandler_dec, _passkeyLoginHandler_dec, _labels_dec, _methodOrder_dec, _password_dec, _providers_dec, _passkeyAutofill_dec, _passkeyAvailable_dec, _passkeyIntents_dec, _passkey_dec, _name_dec3, _a117, _DeesSimpleLogin_decorators, _init120, _name3, _passkey, _passkeyIntents, _passkeyAvailable, _passkeyAutofill, _providers, _password, _methodOrder, _labels, _passkeyLoginHandler, _passkeyRegisterHandler, _providerLoginHandler, _passwordLoginHandler, _detectedPasskeySupport, _busyKeys, _errorMap;
190935
191513
  var canonicalMethodOrder = ["passkey", "provider", "password"];
190936
191514
  _DeesSimpleLogin_decorators = [customElement("dees-simple-login")];
190937
- var _DeesSimpleLogin = class _DeesSimpleLogin extends (_a116 = DeesElement, _name_dec3 = [n5()], _passkey_dec = [n5({ type: Boolean })], _passkeyIntents_dec = [n5({ attribute: false })], _passkeyAvailable_dec = [n5({ attribute: false })], _passkeyAutofill_dec = [n5({ type: Boolean })], _providers_dec = [n5({ attribute: false })], _password_dec = [n5({ type: Boolean })], _methodOrder_dec = [n5({ attribute: false })], _labels_dec = [n5({ attribute: false })], _passkeyLoginHandler_dec = [n5({ attribute: false })], _passkeyRegisterHandler_dec = [n5({ attribute: false })], _providerLoginHandler_dec = [n5({ attribute: false })], _passwordLoginHandler_dec = [n5({ attribute: false })], _detectedPasskeySupport_dec = [r5()], _busyKeys_dec = [r5()], _errorMap_dec = [r5()], _a116) {
191515
+ var _DeesSimpleLogin = class _DeesSimpleLogin extends (_a117 = DeesElement, _name_dec3 = [n5()], _passkey_dec = [n5({ type: Boolean })], _passkeyIntents_dec = [n5({ attribute: false })], _passkeyAvailable_dec = [n5({ attribute: false })], _passkeyAutofill_dec = [n5({ type: Boolean })], _providers_dec = [n5({ attribute: false })], _password_dec = [n5({ type: Boolean })], _methodOrder_dec = [n5({ attribute: false })], _labels_dec = [n5({ attribute: false })], _passkeyLoginHandler_dec = [n5({ attribute: false })], _passkeyRegisterHandler_dec = [n5({ attribute: false })], _providerLoginHandler_dec = [n5({ attribute: false })], _passwordLoginHandler_dec = [n5({ attribute: false })], _detectedPasskeySupport_dec = [r5()], _busyKeys_dec = [r5()], _errorMap_dec = [r5()], _a117) {
190938
191516
  constructor() {
190939
191517
  super(...arguments);
190940
- __privateAdd(this, _name3, __runInitializers(_init119, 8, this, "Application")), __runInitializers(_init119, 11, this);
190941
- __privateAdd(this, _passkey, __runInitializers(_init119, 12, this, false)), __runInitializers(_init119, 15, this);
190942
- __privateAdd(this, _passkeyIntents, __runInitializers(_init119, 16, this, ["authenticate"])), __runInitializers(_init119, 19, this);
190943
- __privateAdd(this, _passkeyAvailable, __runInitializers(_init119, 20, this)), __runInitializers(_init119, 23, this);
190944
- __privateAdd(this, _passkeyAutofill, __runInitializers(_init119, 24, this, false)), __runInitializers(_init119, 27, this);
190945
- __privateAdd(this, _providers, __runInitializers(_init119, 28, this, [])), __runInitializers(_init119, 31, this);
190946
- __privateAdd(this, _password, __runInitializers(_init119, 32, this, true)), __runInitializers(_init119, 35, this);
190947
- __privateAdd(this, _methodOrder, __runInitializers(_init119, 36, this, ["passkey", "provider", "password"])), __runInitializers(_init119, 39, this);
190948
- __privateAdd(this, _labels, __runInitializers(_init119, 40, this, {})), __runInitializers(_init119, 43, this);
190949
- __privateAdd(this, _passkeyLoginHandler, __runInitializers(_init119, 44, this)), __runInitializers(_init119, 47, this);
190950
- __privateAdd(this, _passkeyRegisterHandler, __runInitializers(_init119, 48, this)), __runInitializers(_init119, 51, this);
190951
- __privateAdd(this, _providerLoginHandler, __runInitializers(_init119, 52, this)), __runInitializers(_init119, 55, this);
190952
- __privateAdd(this, _passwordLoginHandler, __runInitializers(_init119, 56, this)), __runInitializers(_init119, 59, this);
190953
- __privateAdd(this, _detectedPasskeySupport, __runInitializers(_init119, 60, this, {
191518
+ __privateAdd(this, _name3, __runInitializers(_init120, 8, this, "Application")), __runInitializers(_init120, 11, this);
191519
+ __privateAdd(this, _passkey, __runInitializers(_init120, 12, this, false)), __runInitializers(_init120, 15, this);
191520
+ __privateAdd(this, _passkeyIntents, __runInitializers(_init120, 16, this, ["authenticate"])), __runInitializers(_init120, 19, this);
191521
+ __privateAdd(this, _passkeyAvailable, __runInitializers(_init120, 20, this)), __runInitializers(_init120, 23, this);
191522
+ __privateAdd(this, _passkeyAutofill, __runInitializers(_init120, 24, this, false)), __runInitializers(_init120, 27, this);
191523
+ __privateAdd(this, _providers, __runInitializers(_init120, 28, this, [])), __runInitializers(_init120, 31, this);
191524
+ __privateAdd(this, _password, __runInitializers(_init120, 32, this, true)), __runInitializers(_init120, 35, this);
191525
+ __privateAdd(this, _methodOrder, __runInitializers(_init120, 36, this, ["passkey", "provider", "password"])), __runInitializers(_init120, 39, this);
191526
+ __privateAdd(this, _labels, __runInitializers(_init120, 40, this, {})), __runInitializers(_init120, 43, this);
191527
+ __privateAdd(this, _passkeyLoginHandler, __runInitializers(_init120, 44, this)), __runInitializers(_init120, 47, this);
191528
+ __privateAdd(this, _passkeyRegisterHandler, __runInitializers(_init120, 48, this)), __runInitializers(_init120, 51, this);
191529
+ __privateAdd(this, _providerLoginHandler, __runInitializers(_init120, 52, this)), __runInitializers(_init120, 55, this);
191530
+ __privateAdd(this, _passwordLoginHandler, __runInitializers(_init120, 56, this)), __runInitializers(_init120, 59, this);
191531
+ __privateAdd(this, _detectedPasskeySupport, __runInitializers(_init120, 60, this, {
190954
191532
  available: false,
190955
191533
  conditionalMediation: false,
190956
191534
  platformAuthenticator: false
190957
- })), __runInitializers(_init119, 63, this);
190958
- __privateAdd(this, _busyKeys, __runInitializers(_init119, 64, this, [])), __runInitializers(_init119, 67, this);
190959
- __privateAdd(this, _errorMap, __runInitializers(_init119, 68, this, {})), __runInitializers(_init119, 71, this);
191535
+ })), __runInitializers(_init120, 63, this);
191536
+ __privateAdd(this, _busyKeys, __runInitializers(_init120, 64, this, [])), __runInitializers(_init120, 67, this);
191537
+ __privateAdd(this, _errorMap, __runInitializers(_init120, 68, this, {})), __runInitializers(_init120, 71, this);
190960
191538
  __publicField(this, "ceremonyControllers", /* @__PURE__ */ new Map());
190961
191539
  __publicField(this, "autofillController");
190962
191540
  __publicField(this, "autofillStarted", false);
@@ -191530,7 +192108,7 @@ var _DeesSimpleLogin = class _DeesSimpleLogin extends (_a116 = DeesElement, _nam
191530
192108
  slotContainerDiv.style.pointerEvents = "all";
191531
192109
  }
191532
192110
  };
191533
- _init119 = __decoratorStart(_a116);
192111
+ _init120 = __decoratorStart(_a117);
191534
192112
  _name3 = new WeakMap();
191535
192113
  _passkey = new WeakMap();
191536
192114
  _passkeyIntents = new WeakMap();
@@ -191547,26 +192125,26 @@ _passwordLoginHandler = new WeakMap();
191547
192125
  _detectedPasskeySupport = new WeakMap();
191548
192126
  _busyKeys = new WeakMap();
191549
192127
  _errorMap = new WeakMap();
191550
- __decorateElement(_init119, 4, "name", _name_dec3, _DeesSimpleLogin, _name3);
191551
- __decorateElement(_init119, 4, "passkey", _passkey_dec, _DeesSimpleLogin, _passkey);
191552
- __decorateElement(_init119, 4, "passkeyIntents", _passkeyIntents_dec, _DeesSimpleLogin, _passkeyIntents);
191553
- __decorateElement(_init119, 4, "passkeyAvailable", _passkeyAvailable_dec, _DeesSimpleLogin, _passkeyAvailable);
191554
- __decorateElement(_init119, 4, "passkeyAutofill", _passkeyAutofill_dec, _DeesSimpleLogin, _passkeyAutofill);
191555
- __decorateElement(_init119, 4, "providers", _providers_dec, _DeesSimpleLogin, _providers);
191556
- __decorateElement(_init119, 4, "password", _password_dec, _DeesSimpleLogin, _password);
191557
- __decorateElement(_init119, 4, "methodOrder", _methodOrder_dec, _DeesSimpleLogin, _methodOrder);
191558
- __decorateElement(_init119, 4, "labels", _labels_dec, _DeesSimpleLogin, _labels);
191559
- __decorateElement(_init119, 4, "passkeyLoginHandler", _passkeyLoginHandler_dec, _DeesSimpleLogin, _passkeyLoginHandler);
191560
- __decorateElement(_init119, 4, "passkeyRegisterHandler", _passkeyRegisterHandler_dec, _DeesSimpleLogin, _passkeyRegisterHandler);
191561
- __decorateElement(_init119, 4, "providerLoginHandler", _providerLoginHandler_dec, _DeesSimpleLogin, _providerLoginHandler);
191562
- __decorateElement(_init119, 4, "passwordLoginHandler", _passwordLoginHandler_dec, _DeesSimpleLogin, _passwordLoginHandler);
191563
- __decorateElement(_init119, 4, "detectedPasskeySupport", _detectedPasskeySupport_dec, _DeesSimpleLogin, _detectedPasskeySupport);
191564
- __decorateElement(_init119, 4, "busyKeys", _busyKeys_dec, _DeesSimpleLogin, _busyKeys);
191565
- __decorateElement(_init119, 4, "errorMap", _errorMap_dec, _DeesSimpleLogin, _errorMap);
191566
- _DeesSimpleLogin = __decorateElement(_init119, 0, "DeesSimpleLogin", _DeesSimpleLogin_decorators, _DeesSimpleLogin);
192128
+ __decorateElement(_init120, 4, "name", _name_dec3, _DeesSimpleLogin, _name3);
192129
+ __decorateElement(_init120, 4, "passkey", _passkey_dec, _DeesSimpleLogin, _passkey);
192130
+ __decorateElement(_init120, 4, "passkeyIntents", _passkeyIntents_dec, _DeesSimpleLogin, _passkeyIntents);
192131
+ __decorateElement(_init120, 4, "passkeyAvailable", _passkeyAvailable_dec, _DeesSimpleLogin, _passkeyAvailable);
192132
+ __decorateElement(_init120, 4, "passkeyAutofill", _passkeyAutofill_dec, _DeesSimpleLogin, _passkeyAutofill);
192133
+ __decorateElement(_init120, 4, "providers", _providers_dec, _DeesSimpleLogin, _providers);
192134
+ __decorateElement(_init120, 4, "password", _password_dec, _DeesSimpleLogin, _password);
192135
+ __decorateElement(_init120, 4, "methodOrder", _methodOrder_dec, _DeesSimpleLogin, _methodOrder);
192136
+ __decorateElement(_init120, 4, "labels", _labels_dec, _DeesSimpleLogin, _labels);
192137
+ __decorateElement(_init120, 4, "passkeyLoginHandler", _passkeyLoginHandler_dec, _DeesSimpleLogin, _passkeyLoginHandler);
192138
+ __decorateElement(_init120, 4, "passkeyRegisterHandler", _passkeyRegisterHandler_dec, _DeesSimpleLogin, _passkeyRegisterHandler);
192139
+ __decorateElement(_init120, 4, "providerLoginHandler", _providerLoginHandler_dec, _DeesSimpleLogin, _providerLoginHandler);
192140
+ __decorateElement(_init120, 4, "passwordLoginHandler", _passwordLoginHandler_dec, _DeesSimpleLogin, _passwordLoginHandler);
192141
+ __decorateElement(_init120, 4, "detectedPasskeySupport", _detectedPasskeySupport_dec, _DeesSimpleLogin, _detectedPasskeySupport);
192142
+ __decorateElement(_init120, 4, "busyKeys", _busyKeys_dec, _DeesSimpleLogin, _busyKeys);
192143
+ __decorateElement(_init120, 4, "errorMap", _errorMap_dec, _DeesSimpleLogin, _errorMap);
192144
+ _DeesSimpleLogin = __decorateElement(_init120, 0, "DeesSimpleLogin", _DeesSimpleLogin_decorators, _DeesSimpleLogin);
191567
192145
  __name(_DeesSimpleLogin, "DeesSimpleLogin");
191568
192146
  // STATIC
191569
- __publicField(_DeesSimpleLogin, "demo", demoFunc75);
192147
+ __publicField(_DeesSimpleLogin, "demo", demoFunc76);
191570
192148
  __publicField(_DeesSimpleLogin, "demoGroups", ["Simple"]);
191571
192149
  __publicField(_DeesSimpleLogin, "styles", [
191572
192150
  themeDefaultStyles,
@@ -191769,7 +192347,7 @@ __publicField(_DeesSimpleLogin, "styles", [
191769
192347
  }
191770
192348
  `
191771
192349
  ]);
191772
- __runInitializers(_init119, 1, _DeesSimpleLogin);
192350
+ __runInitializers(_init120, 1, _DeesSimpleLogin);
191773
192351
  var DeesSimpleLogin = _DeesSimpleLogin;
191774
192352
 
191775
192353
  // ts_web/elements/00group-utility/dees-icon/index.ts
@@ -191777,7 +192355,7 @@ init_dees_icon();
191777
192355
 
191778
192356
  // ts_web/elements/00group-utility/dees-searchbar/dees-searchbar.demo.ts
191779
192357
  init_dist_ts25();
191780
- var demoFunc76 = /* @__PURE__ */ __name(() => {
192358
+ var demoFunc77 = /* @__PURE__ */ __name(() => {
191781
192359
  const onChanged = /* @__PURE__ */ __name((e10) => {
191782
192360
  const wrapper = e10.target.closest(".demoWrapper");
191783
192361
  const el = wrapper?.querySelector("#changed");
@@ -191823,14 +192401,14 @@ var demoFunc76 = /* @__PURE__ */ __name(() => {
191823
192401
  // ts_web/elements/00group-utility/dees-searchbar/dees-searchbar.ts
191824
192402
  init_dist_ts25();
191825
192403
  init_theme();
191826
- var _searchButton_dec, _searchInput_dec, _filters_dec, _a117, _DeesSearchbar_decorators, _init120, _filters, _searchInput, _searchButton;
192404
+ var _searchButton_dec, _searchInput_dec, _filters_dec, _a118, _DeesSearchbar_decorators, _init121, _filters, _searchInput, _searchButton;
191827
192405
  _DeesSearchbar_decorators = [customElement("dees-searchbar")];
191828
- var _DeesSearchbar = class _DeesSearchbar extends (_a117 = DeesElement, _filters_dec = [n5()], _searchInput_dec = [e7("input")], _searchButton_dec = [e7(".searchButton")], _a117) {
192406
+ var _DeesSearchbar = class _DeesSearchbar extends (_a118 = DeesElement, _filters_dec = [n5()], _searchInput_dec = [e7("input")], _searchButton_dec = [e7(".searchButton")], _a118) {
191829
192407
  constructor() {
191830
192408
  super();
191831
- __privateAdd(this, _filters, __runInitializers(_init120, 8, this, [])), __runInitializers(_init120, 11, this);
191832
- __privateAdd(this, _searchInput, __runInitializers(_init120, 12, this)), __runInitializers(_init120, 15, this);
191833
- __privateAdd(this, _searchButton, __runInitializers(_init120, 16, this)), __runInitializers(_init120, 19, this);
192409
+ __privateAdd(this, _filters, __runInitializers(_init121, 8, this, [])), __runInitializers(_init121, 11, this);
192410
+ __privateAdd(this, _searchInput, __runInitializers(_init121, 12, this)), __runInitializers(_init121, 15, this);
192411
+ __privateAdd(this, _searchButton, __runInitializers(_init121, 16, this)), __runInitializers(_init121, 19, this);
191834
192412
  }
191835
192413
  render() {
191836
192414
  return b2`
@@ -191875,17 +192453,17 @@ var _DeesSearchbar = class _DeesSearchbar extends (_a117 = DeesElement, _filters
191875
192453
  }));
191876
192454
  }
191877
192455
  };
191878
- _init120 = __decoratorStart(_a117);
192456
+ _init121 = __decoratorStart(_a118);
191879
192457
  _filters = new WeakMap();
191880
192458
  _searchInput = new WeakMap();
191881
192459
  _searchButton = new WeakMap();
191882
- __decorateElement(_init120, 4, "filters", _filters_dec, _DeesSearchbar, _filters);
191883
- __decorateElement(_init120, 4, "searchInput", _searchInput_dec, _DeesSearchbar, _searchInput);
191884
- __decorateElement(_init120, 4, "searchButton", _searchButton_dec, _DeesSearchbar, _searchButton);
191885
- _DeesSearchbar = __decorateElement(_init120, 0, "DeesSearchbar", _DeesSearchbar_decorators, _DeesSearchbar);
192460
+ __decorateElement(_init121, 4, "filters", _filters_dec, _DeesSearchbar, _filters);
192461
+ __decorateElement(_init121, 4, "searchInput", _searchInput_dec, _DeesSearchbar, _searchInput);
192462
+ __decorateElement(_init121, 4, "searchButton", _searchButton_dec, _DeesSearchbar, _searchButton);
192463
+ _DeesSearchbar = __decorateElement(_init121, 0, "DeesSearchbar", _DeesSearchbar_decorators, _DeesSearchbar);
191886
192464
  __name(_DeesSearchbar, "DeesSearchbar");
191887
192465
  // DEMO
191888
- __publicField(_DeesSearchbar, "demo", demoFunc76);
192466
+ __publicField(_DeesSearchbar, "demo", demoFunc77);
191889
192467
  __publicField(_DeesSearchbar, "demoGroups", ["Utility"]);
191890
192468
  // STATIC
191891
192469
  __publicField(_DeesSearchbar, "styles", [
@@ -191981,12 +192559,12 @@ __publicField(_DeesSearchbar, "styles", [
191981
192559
  }
191982
192560
  `
191983
192561
  ]);
191984
- __runInitializers(_init120, 1, _DeesSearchbar);
192562
+ __runInitializers(_init121, 1, _DeesSearchbar);
191985
192563
  var DeesSearchbar = _DeesSearchbar;
191986
192564
 
191987
192565
  // ts_web/elements/00group-utility/dees-theme/dees-theme.demo.ts
191988
192566
  init_dist_ts25();
191989
- var demoFunc77 = /* @__PURE__ */ __name(() => b2`
192567
+ var demoFunc78 = /* @__PURE__ */ __name(() => b2`
191990
192568
  <style>
191991
192569
  .demo-container {
191992
192570
  display: flex;
@@ -192263,20 +192841,20 @@ var demoFunc77 = /* @__PURE__ */ __name(() => b2`
192263
192841
  // ts_web/elements/00group-utility/dees-theme/dees-theme.ts
192264
192842
  init_dist_ts25();
192265
192843
  init_theme();
192266
- var _customControlHeights_dec, _customMaterials_dec, _customTypography_dec, _customEasings_dec, _customTransitions_dec, _customShadows_dec, _customRadius_dec, _customSpacing_dec, _a118, _DeesTheme_decorators, _init121, _customSpacing, _customRadius, _customShadows, _customTransitions, _customEasings, _customTypography, _customMaterials, _customControlHeights;
192844
+ var _customControlHeights_dec, _customMaterials_dec, _customTypography_dec, _customEasings_dec, _customTransitions_dec, _customShadows_dec, _customRadius_dec, _customSpacing_dec, _a119, _DeesTheme_decorators, _init122, _customSpacing, _customRadius, _customShadows, _customTransitions, _customEasings, _customTypography, _customMaterials, _customControlHeights;
192267
192845
  var typographyKeyToCssSegment = /* @__PURE__ */ __name((name) => name.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(), "typographyKeyToCssSegment");
192268
192846
  _DeesTheme_decorators = [customElement("dees-theme")];
192269
- var _DeesTheme = class _DeesTheme extends (_a118 = DeesElement, _customSpacing_dec = [n5({ type: Object })], _customRadius_dec = [n5({ type: Object })], _customShadows_dec = [n5({ type: Object })], _customTransitions_dec = [n5({ type: Object })], _customEasings_dec = [n5({ type: Object })], _customTypography_dec = [n5({ type: Object })], _customMaterials_dec = [n5({ type: Object })], _customControlHeights_dec = [n5({ type: Object })], _a118) {
192847
+ var _DeesTheme = class _DeesTheme extends (_a119 = DeesElement, _customSpacing_dec = [n5({ type: Object })], _customRadius_dec = [n5({ type: Object })], _customShadows_dec = [n5({ type: Object })], _customTransitions_dec = [n5({ type: Object })], _customEasings_dec = [n5({ type: Object })], _customTypography_dec = [n5({ type: Object })], _customMaterials_dec = [n5({ type: Object })], _customControlHeights_dec = [n5({ type: Object })], _a119) {
192270
192848
  constructor() {
192271
192849
  super(...arguments);
192272
- __privateAdd(this, _customSpacing, __runInitializers(_init121, 8, this, null)), __runInitializers(_init121, 11, this);
192273
- __privateAdd(this, _customRadius, __runInitializers(_init121, 12, this, null)), __runInitializers(_init121, 15, this);
192274
- __privateAdd(this, _customShadows, __runInitializers(_init121, 16, this, null)), __runInitializers(_init121, 19, this);
192275
- __privateAdd(this, _customTransitions, __runInitializers(_init121, 20, this, null)), __runInitializers(_init121, 23, this);
192276
- __privateAdd(this, _customEasings, __runInitializers(_init121, 24, this, null)), __runInitializers(_init121, 27, this);
192277
- __privateAdd(this, _customTypography, __runInitializers(_init121, 28, this, null)), __runInitializers(_init121, 31, this);
192278
- __privateAdd(this, _customMaterials, __runInitializers(_init121, 32, this, null)), __runInitializers(_init121, 35, this);
192279
- __privateAdd(this, _customControlHeights, __runInitializers(_init121, 36, this, null)), __runInitializers(_init121, 39, this);
192850
+ __privateAdd(this, _customSpacing, __runInitializers(_init122, 8, this, null)), __runInitializers(_init122, 11, this);
192851
+ __privateAdd(this, _customRadius, __runInitializers(_init122, 12, this, null)), __runInitializers(_init122, 15, this);
192852
+ __privateAdd(this, _customShadows, __runInitializers(_init122, 16, this, null)), __runInitializers(_init122, 19, this);
192853
+ __privateAdd(this, _customTransitions, __runInitializers(_init122, 20, this, null)), __runInitializers(_init122, 23, this);
192854
+ __privateAdd(this, _customEasings, __runInitializers(_init122, 24, this, null)), __runInitializers(_init122, 27, this);
192855
+ __privateAdd(this, _customTypography, __runInitializers(_init122, 28, this, null)), __runInitializers(_init122, 31, this);
192856
+ __privateAdd(this, _customMaterials, __runInitializers(_init122, 32, this, null)), __runInitializers(_init122, 35, this);
192857
+ __privateAdd(this, _customControlHeights, __runInitializers(_init122, 36, this, null)), __runInitializers(_init122, 39, this);
192280
192858
  }
192281
192859
  // ============================================
192282
192860
  // Render
@@ -192450,7 +193028,7 @@ var _DeesTheme = class _DeesTheme extends (_a118 = DeesElement, _customSpacing_d
192450
193028
  if (theme.controlHeights) this.customControlHeights = theme.controlHeights;
192451
193029
  }
192452
193030
  };
192453
- _init121 = __decoratorStart(_a118);
193031
+ _init122 = __decoratorStart(_a119);
192454
193032
  _customSpacing = new WeakMap();
192455
193033
  _customRadius = new WeakMap();
192456
193034
  _customShadows = new WeakMap();
@@ -192459,17 +193037,17 @@ _customEasings = new WeakMap();
192459
193037
  _customTypography = new WeakMap();
192460
193038
  _customMaterials = new WeakMap();
192461
193039
  _customControlHeights = new WeakMap();
192462
- __decorateElement(_init121, 4, "customSpacing", _customSpacing_dec, _DeesTheme, _customSpacing);
192463
- __decorateElement(_init121, 4, "customRadius", _customRadius_dec, _DeesTheme, _customRadius);
192464
- __decorateElement(_init121, 4, "customShadows", _customShadows_dec, _DeesTheme, _customShadows);
192465
- __decorateElement(_init121, 4, "customTransitions", _customTransitions_dec, _DeesTheme, _customTransitions);
192466
- __decorateElement(_init121, 4, "customEasings", _customEasings_dec, _DeesTheme, _customEasings);
192467
- __decorateElement(_init121, 4, "customTypography", _customTypography_dec, _DeesTheme, _customTypography);
192468
- __decorateElement(_init121, 4, "customMaterials", _customMaterials_dec, _DeesTheme, _customMaterials);
192469
- __decorateElement(_init121, 4, "customControlHeights", _customControlHeights_dec, _DeesTheme, _customControlHeights);
192470
- _DeesTheme = __decorateElement(_init121, 0, "DeesTheme", _DeesTheme_decorators, _DeesTheme);
193040
+ __decorateElement(_init122, 4, "customSpacing", _customSpacing_dec, _DeesTheme, _customSpacing);
193041
+ __decorateElement(_init122, 4, "customRadius", _customRadius_dec, _DeesTheme, _customRadius);
193042
+ __decorateElement(_init122, 4, "customShadows", _customShadows_dec, _DeesTheme, _customShadows);
193043
+ __decorateElement(_init122, 4, "customTransitions", _customTransitions_dec, _DeesTheme, _customTransitions);
193044
+ __decorateElement(_init122, 4, "customEasings", _customEasings_dec, _DeesTheme, _customEasings);
193045
+ __decorateElement(_init122, 4, "customTypography", _customTypography_dec, _DeesTheme, _customTypography);
193046
+ __decorateElement(_init122, 4, "customMaterials", _customMaterials_dec, _DeesTheme, _customMaterials);
193047
+ __decorateElement(_init122, 4, "customControlHeights", _customControlHeights_dec, _DeesTheme, _customControlHeights);
193048
+ _DeesTheme = __decorateElement(_init122, 0, "DeesTheme", _DeesTheme_decorators, _DeesTheme);
192471
193049
  __name(_DeesTheme, "DeesTheme");
192472
- __publicField(_DeesTheme, "demo", demoFunc77);
193050
+ __publicField(_DeesTheme, "demo", demoFunc78);
192473
193051
  __publicField(_DeesTheme, "demoGroups", ["Utility"]);
192474
193052
  // ============================================
192475
193053
  // Styles
@@ -192483,7 +193061,7 @@ __publicField(_DeesTheme, "styles", [
192483
193061
  }
192484
193062
  `
192485
193063
  ]);
192486
- __runInitializers(_init121, 1, _DeesTheme);
193064
+ __runInitializers(_init122, 1, _DeesTheme);
192487
193065
  var DeesTheme = _DeesTheme;
192488
193066
 
192489
193067
  // ts_web/elements/00group-utility/dees-updater/dees-updater.demo.ts
@@ -192493,7 +193071,7 @@ var waitForDemoStep = /* @__PURE__ */ __name(async (timeoutArg) => {
192493
193071
  window.setTimeout(() => resolve2(), timeoutArg);
192494
193072
  });
192495
193073
  }, "waitForDemoStep");
192496
- var demoFunc78 = /* @__PURE__ */ __name(() => {
193074
+ var demoFunc79 = /* @__PURE__ */ __name(() => {
192497
193075
  let updaterRunning = false;
192498
193076
  const runDemoFlow = /* @__PURE__ */ __name(async (outcomeArg) => {
192499
193077
  if (updaterRunning) {
@@ -192568,7 +193146,7 @@ init_dist_ts25();
192568
193146
  init_fonts();
192569
193147
  init_zindex();
192570
193148
  init_dees_icon();
192571
- var _backdropZIndex_dec2, _closing_dec, _visible_dec6, _allPhasesDone_dec, _countdownRemainingMs_dec, _detailsOpen_dec, _progressLines_dec, _outcomeMessage_dec, _statusLine_dec, _indeterminate_dec3, _withinPhaseFraction_dec, _activePhaseIndex_dec, _mode_dec4, _maxTerminalLines_dec, _successActionLabel_dec, _successDelayMs_dec, _successAction_dec, _changelogUrl_dec, _moreInfoUrl_dec, _phases_dec, _impactItems_dec, _updateSource_dec, _updatedVersion_dec, _currentVersion_dec, _appIcon_dec, _appName_dec, _a119, _DeesUpdater_decorators, _init122, _appName, _appIcon, _currentVersion, _updatedVersion, _updateSource, _impactItems, _phases, _moreInfoUrl, _changelogUrl, _successAction, _successDelayMs, _successActionLabel, _maxTerminalLines, _mode4, _activePhaseIndex, _withinPhaseFraction, _indeterminate3, _statusLine, _outcomeMessage, _progressLines, _detailsOpen, _countdownRemainingMs, _allPhasesDone, _visible6, _closing, _backdropZIndex2;
193149
+ var _backdropZIndex_dec2, _closing_dec, _visible_dec6, _allPhasesDone_dec, _countdownRemainingMs_dec, _detailsOpen_dec, _progressLines_dec, _outcomeMessage_dec, _statusLine_dec, _indeterminate_dec3, _withinPhaseFraction_dec, _activePhaseIndex_dec, _mode_dec4, _maxTerminalLines_dec, _successActionLabel_dec, _successDelayMs_dec, _successAction_dec, _changelogUrl_dec, _moreInfoUrl_dec, _phases_dec, _impactItems_dec, _updateSource_dec, _updatedVersion_dec, _currentVersion_dec, _appIcon_dec, _appName_dec, _a120, _DeesUpdater_decorators, _init123, _appName, _appIcon, _currentVersion, _updatedVersion, _updateSource, _impactItems, _phases, _moreInfoUrl, _changelogUrl, _successAction, _successDelayMs, _successActionLabel, _maxTerminalLines, _mode4, _activePhaseIndex, _withinPhaseFraction, _indeterminate3, _statusLine, _outcomeMessage, _progressLines, _detailsOpen, _countdownRemainingMs, _allPhasesDone, _visible6, _closing, _backdropZIndex2;
192572
193150
  var defaultPhaseDefinitions = [
192573
193151
  {
192574
193152
  id: "checking",
@@ -192607,35 +193185,35 @@ var defaultImpactItems = [
192607
193185
  "Do not close this browser tab until the updater reports a final state."
192608
193186
  ];
192609
193187
  _DeesUpdater_decorators = [customElement("dees-updater")];
192610
- var _DeesUpdater = class _DeesUpdater extends (_a119 = DeesElement, _appName_dec = [n5({ type: String })], _appIcon_dec = [n5({ type: String })], _currentVersion_dec = [n5({ type: String })], _updatedVersion_dec = [n5({ type: String })], _updateSource_dec = [n5({ type: String })], _impactItems_dec = [n5({ type: Array })], _phases_dec = [n5({ type: Array })], _moreInfoUrl_dec = [n5({ type: String })], _changelogUrl_dec = [n5({ type: String })], _successAction_dec = [n5({ type: String })], _successDelayMs_dec = [n5({ type: Number })], _successActionLabel_dec = [n5({ type: String })], _maxTerminalLines_dec = [n5({ type: Number })], _mode_dec4 = [r5()], _activePhaseIndex_dec = [r5()], _withinPhaseFraction_dec = [r5()], _indeterminate_dec3 = [r5()], _statusLine_dec = [r5()], _outcomeMessage_dec = [r5()], _progressLines_dec = [r5()], _detailsOpen_dec = [r5()], _countdownRemainingMs_dec = [r5()], _allPhasesDone_dec = [r5()], _visible_dec6 = [r5()], _closing_dec = [r5()], _backdropZIndex_dec2 = [r5()], _a119) {
193188
+ var _DeesUpdater = class _DeesUpdater extends (_a120 = DeesElement, _appName_dec = [n5({ type: String })], _appIcon_dec = [n5({ type: String })], _currentVersion_dec = [n5({ type: String })], _updatedVersion_dec = [n5({ type: String })], _updateSource_dec = [n5({ type: String })], _impactItems_dec = [n5({ type: Array })], _phases_dec = [n5({ type: Array })], _moreInfoUrl_dec = [n5({ type: String })], _changelogUrl_dec = [n5({ type: String })], _successAction_dec = [n5({ type: String })], _successDelayMs_dec = [n5({ type: Number })], _successActionLabel_dec = [n5({ type: String })], _maxTerminalLines_dec = [n5({ type: Number })], _mode_dec4 = [r5()], _activePhaseIndex_dec = [r5()], _withinPhaseFraction_dec = [r5()], _indeterminate_dec3 = [r5()], _statusLine_dec = [r5()], _outcomeMessage_dec = [r5()], _progressLines_dec = [r5()], _detailsOpen_dec = [r5()], _countdownRemainingMs_dec = [r5()], _allPhasesDone_dec = [r5()], _visible_dec6 = [r5()], _closing_dec = [r5()], _backdropZIndex_dec2 = [r5()], _a120) {
192611
193189
  constructor() {
192612
193190
  super(...arguments);
192613
- __privateAdd(this, _appName, __runInitializers(_init122, 8, this, "Application")), __runInitializers(_init122, 11, this);
192614
- __privateAdd(this, _appIcon, __runInitializers(_init122, 12, this, "")), __runInitializers(_init122, 15, this);
192615
- __privateAdd(this, _currentVersion, __runInitializers(_init122, 16, this, "")), __runInitializers(_init122, 19, this);
192616
- __privateAdd(this, _updatedVersion, __runInitializers(_init122, 20, this, "")), __runInitializers(_init122, 23, this);
192617
- __privateAdd(this, _updateSource, __runInitializers(_init122, 24, this, "")), __runInitializers(_init122, 27, this);
192618
- __privateAdd(this, _impactItems, __runInitializers(_init122, 28, this, [...defaultImpactItems])), __runInitializers(_init122, 31, this);
192619
- __privateAdd(this, _phases, __runInitializers(_init122, 32, this, [...defaultPhaseDefinitions])), __runInitializers(_init122, 35, this);
192620
- __privateAdd(this, _moreInfoUrl, __runInitializers(_init122, 36, this, "")), __runInitializers(_init122, 39, this);
192621
- __privateAdd(this, _changelogUrl, __runInitializers(_init122, 40, this, "")), __runInitializers(_init122, 43, this);
192622
- __privateAdd(this, _successAction, __runInitializers(_init122, 44, this, "close")), __runInitializers(_init122, 47, this);
192623
- __privateAdd(this, _successDelayMs, __runInitializers(_init122, 48, this, 1e4)), __runInitializers(_init122, 51, this);
192624
- __privateAdd(this, _successActionLabel, __runInitializers(_init122, 52, this, "")), __runInitializers(_init122, 55, this);
192625
- __privateAdd(this, _maxTerminalLines, __runInitializers(_init122, 56, this, 200)), __runInitializers(_init122, 59, this);
192626
- __privateAdd(this, _mode4, __runInitializers(_init122, 60, this, "progress")), __runInitializers(_init122, 63, this);
192627
- __privateAdd(this, _activePhaseIndex, __runInitializers(_init122, 64, this, 0)), __runInitializers(_init122, 67, this);
192628
- __privateAdd(this, _withinPhaseFraction, __runInitializers(_init122, 68, this, 0)), __runInitializers(_init122, 71, this);
192629
- __privateAdd(this, _indeterminate3, __runInitializers(_init122, 72, this, true)), __runInitializers(_init122, 75, this);
192630
- __privateAdd(this, _statusLine, __runInitializers(_init122, 76, this, "")), __runInitializers(_init122, 79, this);
192631
- __privateAdd(this, _outcomeMessage, __runInitializers(_init122, 80, this, "")), __runInitializers(_init122, 83, this);
192632
- __privateAdd(this, _progressLines, __runInitializers(_init122, 84, this, [])), __runInitializers(_init122, 87, this);
192633
- __privateAdd(this, _detailsOpen, __runInitializers(_init122, 88, this, false)), __runInitializers(_init122, 91, this);
192634
- __privateAdd(this, _countdownRemainingMs, __runInitializers(_init122, 92, this, 0)), __runInitializers(_init122, 95, this);
192635
- __privateAdd(this, _allPhasesDone, __runInitializers(_init122, 96, this, false)), __runInitializers(_init122, 99, this);
192636
- __privateAdd(this, _visible6, __runInitializers(_init122, 100, this, false)), __runInitializers(_init122, 103, this);
192637
- __privateAdd(this, _closing, __runInitializers(_init122, 104, this, false)), __runInitializers(_init122, 107, this);
192638
- __privateAdd(this, _backdropZIndex2, __runInitializers(_init122, 108, this, 1e3)), __runInitializers(_init122, 111, this);
193191
+ __privateAdd(this, _appName, __runInitializers(_init123, 8, this, "Application")), __runInitializers(_init123, 11, this);
193192
+ __privateAdd(this, _appIcon, __runInitializers(_init123, 12, this, "")), __runInitializers(_init123, 15, this);
193193
+ __privateAdd(this, _currentVersion, __runInitializers(_init123, 16, this, "")), __runInitializers(_init123, 19, this);
193194
+ __privateAdd(this, _updatedVersion, __runInitializers(_init123, 20, this, "")), __runInitializers(_init123, 23, this);
193195
+ __privateAdd(this, _updateSource, __runInitializers(_init123, 24, this, "")), __runInitializers(_init123, 27, this);
193196
+ __privateAdd(this, _impactItems, __runInitializers(_init123, 28, this, [...defaultImpactItems])), __runInitializers(_init123, 31, this);
193197
+ __privateAdd(this, _phases, __runInitializers(_init123, 32, this, [...defaultPhaseDefinitions])), __runInitializers(_init123, 35, this);
193198
+ __privateAdd(this, _moreInfoUrl, __runInitializers(_init123, 36, this, "")), __runInitializers(_init123, 39, this);
193199
+ __privateAdd(this, _changelogUrl, __runInitializers(_init123, 40, this, "")), __runInitializers(_init123, 43, this);
193200
+ __privateAdd(this, _successAction, __runInitializers(_init123, 44, this, "close")), __runInitializers(_init123, 47, this);
193201
+ __privateAdd(this, _successDelayMs, __runInitializers(_init123, 48, this, 1e4)), __runInitializers(_init123, 51, this);
193202
+ __privateAdd(this, _successActionLabel, __runInitializers(_init123, 52, this, "")), __runInitializers(_init123, 55, this);
193203
+ __privateAdd(this, _maxTerminalLines, __runInitializers(_init123, 56, this, 200)), __runInitializers(_init123, 59, this);
193204
+ __privateAdd(this, _mode4, __runInitializers(_init123, 60, this, "progress")), __runInitializers(_init123, 63, this);
193205
+ __privateAdd(this, _activePhaseIndex, __runInitializers(_init123, 64, this, 0)), __runInitializers(_init123, 67, this);
193206
+ __privateAdd(this, _withinPhaseFraction, __runInitializers(_init123, 68, this, 0)), __runInitializers(_init123, 71, this);
193207
+ __privateAdd(this, _indeterminate3, __runInitializers(_init123, 72, this, true)), __runInitializers(_init123, 75, this);
193208
+ __privateAdd(this, _statusLine, __runInitializers(_init123, 76, this, "")), __runInitializers(_init123, 79, this);
193209
+ __privateAdd(this, _outcomeMessage, __runInitializers(_init123, 80, this, "")), __runInitializers(_init123, 83, this);
193210
+ __privateAdd(this, _progressLines, __runInitializers(_init123, 84, this, [])), __runInitializers(_init123, 87, this);
193211
+ __privateAdd(this, _detailsOpen, __runInitializers(_init123, 88, this, false)), __runInitializers(_init123, 91, this);
193212
+ __privateAdd(this, _countdownRemainingMs, __runInitializers(_init123, 92, this, 0)), __runInitializers(_init123, 95, this);
193213
+ __privateAdd(this, _allPhasesDone, __runInitializers(_init123, 96, this, false)), __runInitializers(_init123, 99, this);
193214
+ __privateAdd(this, _visible6, __runInitializers(_init123, 100, this, false)), __runInitializers(_init123, 103, this);
193215
+ __privateAdd(this, _closing, __runInitializers(_init123, 104, this, false)), __runInitializers(_init123, 107, this);
193216
+ __privateAdd(this, _backdropZIndex2, __runInitializers(_init123, 108, this, 1e3)), __runInitializers(_init123, 111, this);
192639
193217
  __publicField(this, "showPromise", null);
192640
193218
  __publicField(this, "successActionStarted", false);
192641
193219
  __publicField(this, "countdownAbort", null);
@@ -193126,7 +193704,7 @@ var _DeesUpdater = class _DeesUpdater extends (_a119 = DeesElement, _appName_dec
193126
193704
  }));
193127
193705
  }
193128
193706
  };
193129
- _init122 = __decoratorStart(_a119);
193707
+ _init123 = __decoratorStart(_a120);
193130
193708
  _appName = new WeakMap();
193131
193709
  _appIcon = new WeakMap();
193132
193710
  _currentVersion = new WeakMap();
@@ -193153,35 +193731,35 @@ _allPhasesDone = new WeakMap();
193153
193731
  _visible6 = new WeakMap();
193154
193732
  _closing = new WeakMap();
193155
193733
  _backdropZIndex2 = new WeakMap();
193156
- __decorateElement(_init122, 4, "appName", _appName_dec, _DeesUpdater, _appName);
193157
- __decorateElement(_init122, 4, "appIcon", _appIcon_dec, _DeesUpdater, _appIcon);
193158
- __decorateElement(_init122, 4, "currentVersion", _currentVersion_dec, _DeesUpdater, _currentVersion);
193159
- __decorateElement(_init122, 4, "updatedVersion", _updatedVersion_dec, _DeesUpdater, _updatedVersion);
193160
- __decorateElement(_init122, 4, "updateSource", _updateSource_dec, _DeesUpdater, _updateSource);
193161
- __decorateElement(_init122, 4, "impactItems", _impactItems_dec, _DeesUpdater, _impactItems);
193162
- __decorateElement(_init122, 4, "phases", _phases_dec, _DeesUpdater, _phases);
193163
- __decorateElement(_init122, 4, "moreInfoUrl", _moreInfoUrl_dec, _DeesUpdater, _moreInfoUrl);
193164
- __decorateElement(_init122, 4, "changelogUrl", _changelogUrl_dec, _DeesUpdater, _changelogUrl);
193165
- __decorateElement(_init122, 4, "successAction", _successAction_dec, _DeesUpdater, _successAction);
193166
- __decorateElement(_init122, 4, "successDelayMs", _successDelayMs_dec, _DeesUpdater, _successDelayMs);
193167
- __decorateElement(_init122, 4, "successActionLabel", _successActionLabel_dec, _DeesUpdater, _successActionLabel);
193168
- __decorateElement(_init122, 4, "maxTerminalLines", _maxTerminalLines_dec, _DeesUpdater, _maxTerminalLines);
193169
- __decorateElement(_init122, 4, "mode", _mode_dec4, _DeesUpdater, _mode4);
193170
- __decorateElement(_init122, 4, "activePhaseIndex", _activePhaseIndex_dec, _DeesUpdater, _activePhaseIndex);
193171
- __decorateElement(_init122, 4, "withinPhaseFraction", _withinPhaseFraction_dec, _DeesUpdater, _withinPhaseFraction);
193172
- __decorateElement(_init122, 4, "indeterminate", _indeterminate_dec3, _DeesUpdater, _indeterminate3);
193173
- __decorateElement(_init122, 4, "statusLine", _statusLine_dec, _DeesUpdater, _statusLine);
193174
- __decorateElement(_init122, 4, "outcomeMessage", _outcomeMessage_dec, _DeesUpdater, _outcomeMessage);
193175
- __decorateElement(_init122, 4, "progressLines", _progressLines_dec, _DeesUpdater, _progressLines);
193176
- __decorateElement(_init122, 4, "detailsOpen", _detailsOpen_dec, _DeesUpdater, _detailsOpen);
193177
- __decorateElement(_init122, 4, "countdownRemainingMs", _countdownRemainingMs_dec, _DeesUpdater, _countdownRemainingMs);
193178
- __decorateElement(_init122, 4, "allPhasesDone", _allPhasesDone_dec, _DeesUpdater, _allPhasesDone);
193179
- __decorateElement(_init122, 4, "visible", _visible_dec6, _DeesUpdater, _visible6);
193180
- __decorateElement(_init122, 4, "closing", _closing_dec, _DeesUpdater, _closing);
193181
- __decorateElement(_init122, 4, "backdropZIndex", _backdropZIndex_dec2, _DeesUpdater, _backdropZIndex2);
193182
- _DeesUpdater = __decorateElement(_init122, 0, "DeesUpdater", _DeesUpdater_decorators, _DeesUpdater);
193734
+ __decorateElement(_init123, 4, "appName", _appName_dec, _DeesUpdater, _appName);
193735
+ __decorateElement(_init123, 4, "appIcon", _appIcon_dec, _DeesUpdater, _appIcon);
193736
+ __decorateElement(_init123, 4, "currentVersion", _currentVersion_dec, _DeesUpdater, _currentVersion);
193737
+ __decorateElement(_init123, 4, "updatedVersion", _updatedVersion_dec, _DeesUpdater, _updatedVersion);
193738
+ __decorateElement(_init123, 4, "updateSource", _updateSource_dec, _DeesUpdater, _updateSource);
193739
+ __decorateElement(_init123, 4, "impactItems", _impactItems_dec, _DeesUpdater, _impactItems);
193740
+ __decorateElement(_init123, 4, "phases", _phases_dec, _DeesUpdater, _phases);
193741
+ __decorateElement(_init123, 4, "moreInfoUrl", _moreInfoUrl_dec, _DeesUpdater, _moreInfoUrl);
193742
+ __decorateElement(_init123, 4, "changelogUrl", _changelogUrl_dec, _DeesUpdater, _changelogUrl);
193743
+ __decorateElement(_init123, 4, "successAction", _successAction_dec, _DeesUpdater, _successAction);
193744
+ __decorateElement(_init123, 4, "successDelayMs", _successDelayMs_dec, _DeesUpdater, _successDelayMs);
193745
+ __decorateElement(_init123, 4, "successActionLabel", _successActionLabel_dec, _DeesUpdater, _successActionLabel);
193746
+ __decorateElement(_init123, 4, "maxTerminalLines", _maxTerminalLines_dec, _DeesUpdater, _maxTerminalLines);
193747
+ __decorateElement(_init123, 4, "mode", _mode_dec4, _DeesUpdater, _mode4);
193748
+ __decorateElement(_init123, 4, "activePhaseIndex", _activePhaseIndex_dec, _DeesUpdater, _activePhaseIndex);
193749
+ __decorateElement(_init123, 4, "withinPhaseFraction", _withinPhaseFraction_dec, _DeesUpdater, _withinPhaseFraction);
193750
+ __decorateElement(_init123, 4, "indeterminate", _indeterminate_dec3, _DeesUpdater, _indeterminate3);
193751
+ __decorateElement(_init123, 4, "statusLine", _statusLine_dec, _DeesUpdater, _statusLine);
193752
+ __decorateElement(_init123, 4, "outcomeMessage", _outcomeMessage_dec, _DeesUpdater, _outcomeMessage);
193753
+ __decorateElement(_init123, 4, "progressLines", _progressLines_dec, _DeesUpdater, _progressLines);
193754
+ __decorateElement(_init123, 4, "detailsOpen", _detailsOpen_dec, _DeesUpdater, _detailsOpen);
193755
+ __decorateElement(_init123, 4, "countdownRemainingMs", _countdownRemainingMs_dec, _DeesUpdater, _countdownRemainingMs);
193756
+ __decorateElement(_init123, 4, "allPhasesDone", _allPhasesDone_dec, _DeesUpdater, _allPhasesDone);
193757
+ __decorateElement(_init123, 4, "visible", _visible_dec6, _DeesUpdater, _visible6);
193758
+ __decorateElement(_init123, 4, "closing", _closing_dec, _DeesUpdater, _closing);
193759
+ __decorateElement(_init123, 4, "backdropZIndex", _backdropZIndex_dec2, _DeesUpdater, _backdropZIndex2);
193760
+ _DeesUpdater = __decorateElement(_init123, 0, "DeesUpdater", _DeesUpdater_decorators, _DeesUpdater);
193183
193761
  __name(_DeesUpdater, "DeesUpdater");
193184
- __publicField(_DeesUpdater, "demo", demoFunc78);
193762
+ __publicField(_DeesUpdater, "demo", demoFunc79);
193185
193763
  __publicField(_DeesUpdater, "demoGroups", ["Utility"]);
193186
193764
  __publicField(_DeesUpdater, "styles", [
193187
193765
  cssManager.defaultStyles,
@@ -193597,7 +194175,7 @@ __publicField(_DeesUpdater, "styles", [
193597
194175
  }
193598
194176
  `
193599
194177
  ]);
193600
- __runInitializers(_init122, 1, _DeesUpdater);
194178
+ __runInitializers(_init123, 1, _DeesUpdater);
193601
194179
  var DeesUpdater = _DeesUpdater;
193602
194180
 
193603
194181
  // ts_web/elements/00group-workspace/dees-workspace-filetree/dees-workspace-filetree.ts
@@ -193606,17 +194184,17 @@ init_dist_ts24();
193606
194184
  init_theme();
193607
194185
  init_dees_icon();
193608
194186
  init_dees_modal();
193609
- var _errorMessage_dec, _isLoading_dec3, _treeData_dec, _selectedPath_dec, _rootPath_dec, _executionEnvironment_dec2, _a120, _DeesWorkspaceFiletree_decorators, _init123, _executionEnvironment2, _rootPath, _selectedPath, _treeData, _isLoading3, _errorMessage;
194187
+ var _errorMessage_dec, _isLoading_dec3, _treeData_dec, _selectedPath_dec, _rootPath_dec, _executionEnvironment_dec2, _a121, _DeesWorkspaceFiletree_decorators, _init124, _executionEnvironment2, _rootPath, _selectedPath, _treeData, _isLoading3, _errorMessage;
193610
194188
  _DeesWorkspaceFiletree_decorators = [customElement("dees-workspace-filetree")];
193611
- var _DeesWorkspaceFiletree = class _DeesWorkspaceFiletree extends (_a120 = DeesElement, _executionEnvironment_dec2 = [n5({ type: Object })], _rootPath_dec = [n5({ type: String })], _selectedPath_dec = [n5({ type: String })], _treeData_dec = [r5()], _isLoading_dec3 = [r5()], _errorMessage_dec = [r5()], _a120) {
194189
+ var _DeesWorkspaceFiletree = class _DeesWorkspaceFiletree extends (_a121 = DeesElement, _executionEnvironment_dec2 = [n5({ type: Object })], _rootPath_dec = [n5({ type: String })], _selectedPath_dec = [n5({ type: String })], _treeData_dec = [r5()], _isLoading_dec3 = [r5()], _errorMessage_dec = [r5()], _a121) {
193612
194190
  constructor() {
193613
194191
  super(...arguments);
193614
- __privateAdd(this, _executionEnvironment2, __runInitializers(_init123, 8, this, null)), __runInitializers(_init123, 11, this);
193615
- __privateAdd(this, _rootPath, __runInitializers(_init123, 12, this, "/")), __runInitializers(_init123, 15, this);
193616
- __privateAdd(this, _selectedPath, __runInitializers(_init123, 16, this, "")), __runInitializers(_init123, 19, this);
193617
- __privateAdd(this, _treeData, __runInitializers(_init123, 20, this, [])), __runInitializers(_init123, 23, this);
193618
- __privateAdd(this, _isLoading3, __runInitializers(_init123, 24, this, false)), __runInitializers(_init123, 27, this);
193619
- __privateAdd(this, _errorMessage, __runInitializers(_init123, 28, this, "")), __runInitializers(_init123, 31, this);
194192
+ __privateAdd(this, _executionEnvironment2, __runInitializers(_init124, 8, this, null)), __runInitializers(_init124, 11, this);
194193
+ __privateAdd(this, _rootPath, __runInitializers(_init124, 12, this, "/")), __runInitializers(_init124, 15, this);
194194
+ __privateAdd(this, _selectedPath, __runInitializers(_init124, 16, this, "")), __runInitializers(_init124, 19, this);
194195
+ __privateAdd(this, _treeData, __runInitializers(_init124, 20, this, [])), __runInitializers(_init124, 23, this);
194196
+ __privateAdd(this, _isLoading3, __runInitializers(_init124, 24, this, false)), __runInitializers(_init124, 27, this);
194197
+ __privateAdd(this, _errorMessage, __runInitializers(_init124, 28, this, "")), __runInitializers(_init124, 31, this);
193620
194198
  __publicField(this, "expandedPaths", /* @__PURE__ */ new Set());
193621
194199
  __publicField(this, "loadTreeStarted", false);
193622
194200
  // Clipboard state for copy/paste operations
@@ -194197,20 +194775,20 @@ var _DeesWorkspaceFiletree = class _DeesWorkspaceFiletree extends (_a120 = DeesE
194197
194775
  this.selectedPath = path2;
194198
194776
  }
194199
194777
  };
194200
- _init123 = __decoratorStart(_a120);
194778
+ _init124 = __decoratorStart(_a121);
194201
194779
  _executionEnvironment2 = new WeakMap();
194202
194780
  _rootPath = new WeakMap();
194203
194781
  _selectedPath = new WeakMap();
194204
194782
  _treeData = new WeakMap();
194205
194783
  _isLoading3 = new WeakMap();
194206
194784
  _errorMessage = new WeakMap();
194207
- __decorateElement(_init123, 4, "executionEnvironment", _executionEnvironment_dec2, _DeesWorkspaceFiletree, _executionEnvironment2);
194208
- __decorateElement(_init123, 4, "rootPath", _rootPath_dec, _DeesWorkspaceFiletree, _rootPath);
194209
- __decorateElement(_init123, 4, "selectedPath", _selectedPath_dec, _DeesWorkspaceFiletree, _selectedPath);
194210
- __decorateElement(_init123, 4, "treeData", _treeData_dec, _DeesWorkspaceFiletree, _treeData);
194211
- __decorateElement(_init123, 4, "isLoading", _isLoading_dec3, _DeesWorkspaceFiletree, _isLoading3);
194212
- __decorateElement(_init123, 4, "errorMessage", _errorMessage_dec, _DeesWorkspaceFiletree, _errorMessage);
194213
- _DeesWorkspaceFiletree = __decorateElement(_init123, 0, "DeesWorkspaceFiletree", _DeesWorkspaceFiletree_decorators, _DeesWorkspaceFiletree);
194785
+ __decorateElement(_init124, 4, "executionEnvironment", _executionEnvironment_dec2, _DeesWorkspaceFiletree, _executionEnvironment2);
194786
+ __decorateElement(_init124, 4, "rootPath", _rootPath_dec, _DeesWorkspaceFiletree, _rootPath);
194787
+ __decorateElement(_init124, 4, "selectedPath", _selectedPath_dec, _DeesWorkspaceFiletree, _selectedPath);
194788
+ __decorateElement(_init124, 4, "treeData", _treeData_dec, _DeesWorkspaceFiletree, _treeData);
194789
+ __decorateElement(_init124, 4, "isLoading", _isLoading_dec3, _DeesWorkspaceFiletree, _isLoading3);
194790
+ __decorateElement(_init124, 4, "errorMessage", _errorMessage_dec, _DeesWorkspaceFiletree, _errorMessage);
194791
+ _DeesWorkspaceFiletree = __decorateElement(_init124, 0, "DeesWorkspaceFiletree", _DeesWorkspaceFiletree_decorators, _DeesWorkspaceFiletree);
194214
194792
  __name(_DeesWorkspaceFiletree, "DeesWorkspaceFiletree");
194215
194793
  __publicField(_DeesWorkspaceFiletree, "demo", /* @__PURE__ */ __name(() => b2`
194216
194794
  <div style="width: 300px; height: 400px; position: relative;">
@@ -194405,7 +194983,7 @@ __publicField(_DeesWorkspaceFiletree, "styles", [
194405
194983
  }
194406
194984
  `
194407
194985
  ]);
194408
- __runInitializers(_init123, 1, _DeesWorkspaceFiletree);
194986
+ __runInitializers(_init124, 1, _DeesWorkspaceFiletree);
194409
194987
  var DeesWorkspaceFiletree = _DeesWorkspaceFiletree;
194410
194988
 
194411
194989
  // ts_web/elements/00group-workspace/dees-workspace-terminal-preview/dees-workspace-terminal-preview.ts
@@ -194413,13 +194991,13 @@ init_dist_ts25();
194413
194991
  init_theme();
194414
194992
  init_services();
194415
194993
  init_dees_tile();
194416
- var _lines_dec, _command_dec, _a121, _DeesWorkspaceTerminalPreview_decorators, _init124, _command, _lines;
194994
+ var _lines_dec, _command_dec, _a122, _DeesWorkspaceTerminalPreview_decorators, _init125, _command, _lines;
194417
194995
  _DeesWorkspaceTerminalPreview_decorators = [customElement("dees-workspace-terminal-preview")];
194418
- var _DeesWorkspaceTerminalPreview = class _DeesWorkspaceTerminalPreview extends (_a121 = DeesElement, _command_dec = [n5({ type: String })], _lines_dec = [n5({ type: Array })], _a121) {
194996
+ var _DeesWorkspaceTerminalPreview = class _DeesWorkspaceTerminalPreview extends (_a122 = DeesElement, _command_dec = [n5({ type: String })], _lines_dec = [n5({ type: Array })], _a122) {
194419
194997
  constructor() {
194420
194998
  super(...arguments);
194421
- __privateAdd(this, _command, __runInitializers(_init124, 8, this, "")), __runInitializers(_init124, 11, this);
194422
- __privateAdd(this, _lines, __runInitializers(_init124, 12, this, [])), __runInitializers(_init124, 15, this);
194999
+ __privateAdd(this, _command, __runInitializers(_init125, 8, this, "")), __runInitializers(_init125, 11, this);
195000
+ __privateAdd(this, _lines, __runInitializers(_init125, 12, this, [])), __runInitializers(_init125, 15, this);
194423
195001
  __publicField(this, "terminal", null);
194424
195002
  __publicField(this, "fitAddon", null);
194425
195003
  __publicField(this, "lastLineCount", 0);
@@ -194540,12 +195118,12 @@ var _DeesWorkspaceTerminalPreview = class _DeesWorkspaceTerminalPreview extends
194540
195118
  }
194541
195119
  }
194542
195120
  };
194543
- _init124 = __decoratorStart(_a121);
195121
+ _init125 = __decoratorStart(_a122);
194544
195122
  _command = new WeakMap();
194545
195123
  _lines = new WeakMap();
194546
- __decorateElement(_init124, 4, "command", _command_dec, _DeesWorkspaceTerminalPreview, _command);
194547
- __decorateElement(_init124, 4, "lines", _lines_dec, _DeesWorkspaceTerminalPreview, _lines);
194548
- _DeesWorkspaceTerminalPreview = __decorateElement(_init124, 0, "DeesWorkspaceTerminalPreview", _DeesWorkspaceTerminalPreview_decorators, _DeesWorkspaceTerminalPreview);
195124
+ __decorateElement(_init125, 4, "command", _command_dec, _DeesWorkspaceTerminalPreview, _command);
195125
+ __decorateElement(_init125, 4, "lines", _lines_dec, _DeesWorkspaceTerminalPreview, _lines);
195126
+ _DeesWorkspaceTerminalPreview = __decorateElement(_init125, 0, "DeesWorkspaceTerminalPreview", _DeesWorkspaceTerminalPreview_decorators, _DeesWorkspaceTerminalPreview);
194549
195127
  __name(_DeesWorkspaceTerminalPreview, "DeesWorkspaceTerminalPreview");
194550
195128
  __publicField(_DeesWorkspaceTerminalPreview, "demo", /* @__PURE__ */ __name(() => b2`
194551
195129
  <dees-workspace-terminal-preview
@@ -194755,7 +195333,7 @@ __publicField(_DeesWorkspaceTerminalPreview, "styles", [
194755
195333
  }
194756
195334
  `
194757
195335
  ]);
194758
- __runInitializers(_init124, 1, _DeesWorkspaceTerminalPreview);
195336
+ __runInitializers(_init125, 1, _DeesWorkspaceTerminalPreview);
194759
195337
  var DeesWorkspaceTerminalPreview = _DeesWorkspaceTerminalPreview;
194760
195338
 
194761
195339
  // ts_web/elements/00group-workspace/dees-workspace-bottombar/dees-workspace-bottombar.demo.ts
@@ -194842,7 +195420,7 @@ var upToDateEnvironment = createMockEnvironment({
194842
195420
  scripts: { build: "tsbuild", test: "tstest test/" },
194843
195421
  outdated: {}
194844
195422
  });
194845
- var demoFunc79 = /* @__PURE__ */ __name(() => b2`
195423
+ var demoFunc80 = /* @__PURE__ */ __name(() => b2`
194846
195424
  <style>
194847
195425
  ${i`
194848
195426
  .demo-container {
@@ -194911,16 +195489,16 @@ var demoFunc79 = /* @__PURE__ */ __name(() => b2`
194911
195489
  init_dist_ts25();
194912
195490
  init_theme();
194913
195491
  init_dees_icon();
194914
- var _isCheckingPackages_dec, _outdatedPackages_dec, _packageStatus_dec, _scripts_dec, _executionEnvironment_dec3, _a122, _DeesWorkspaceBottombar_decorators, _init125, _executionEnvironment3, _scripts, _packageStatus, _outdatedPackages, _isCheckingPackages;
195492
+ var _isCheckingPackages_dec, _outdatedPackages_dec, _packageStatus_dec, _scripts_dec, _executionEnvironment_dec3, _a123, _DeesWorkspaceBottombar_decorators, _init126, _executionEnvironment3, _scripts, _packageStatus, _outdatedPackages, _isCheckingPackages;
194915
195493
  _DeesWorkspaceBottombar_decorators = [customElement("dees-workspace-bottombar")];
194916
- var _DeesWorkspaceBottombar = class _DeesWorkspaceBottombar extends (_a122 = DeesElement, _executionEnvironment_dec3 = [n5({ type: Object })], _scripts_dec = [r5()], _packageStatus_dec = [r5()], _outdatedPackages_dec = [r5()], _isCheckingPackages_dec = [r5()], _a122) {
195494
+ var _DeesWorkspaceBottombar = class _DeesWorkspaceBottombar extends (_a123 = DeesElement, _executionEnvironment_dec3 = [n5({ type: Object })], _scripts_dec = [r5()], _packageStatus_dec = [r5()], _outdatedPackages_dec = [r5()], _isCheckingPackages_dec = [r5()], _a123) {
194917
195495
  constructor() {
194918
195496
  super(...arguments);
194919
- __privateAdd(this, _executionEnvironment3, __runInitializers(_init125, 8, this, null)), __runInitializers(_init125, 11, this);
194920
- __privateAdd(this, _scripts, __runInitializers(_init125, 12, this, {})), __runInitializers(_init125, 15, this);
194921
- __privateAdd(this, _packageStatus, __runInitializers(_init125, 16, this, "idle")), __runInitializers(_init125, 19, this);
194922
- __privateAdd(this, _outdatedPackages, __runInitializers(_init125, 20, this, [])), __runInitializers(_init125, 23, this);
194923
- __privateAdd(this, _isCheckingPackages, __runInitializers(_init125, 24, this, false)), __runInitializers(_init125, 27, this);
195497
+ __privateAdd(this, _executionEnvironment3, __runInitializers(_init126, 8, this, null)), __runInitializers(_init126, 11, this);
195498
+ __privateAdd(this, _scripts, __runInitializers(_init126, 12, this, {})), __runInitializers(_init126, 15, this);
195499
+ __privateAdd(this, _packageStatus, __runInitializers(_init126, 16, this, "idle")), __runInitializers(_init126, 19, this);
195500
+ __privateAdd(this, _outdatedPackages, __runInitializers(_init126, 20, this, [])), __runInitializers(_init126, 23, this);
195501
+ __privateAdd(this, _isCheckingPackages, __runInitializers(_init126, 24, this, false)), __runInitializers(_init126, 27, this);
194924
195502
  // Track if we have a pending package update that should trigger refresh
194925
195503
  __publicField(this, "pendingPackageUpdate", false);
194926
195504
  // Bound handler for process-complete events
@@ -195253,21 +195831,21 @@ var _DeesWorkspaceBottombar = class _DeesWorkspaceBottombar extends (_a122 = Dee
195253
195831
  await this.loadScripts();
195254
195832
  }
195255
195833
  };
195256
- _init125 = __decoratorStart(_a122);
195834
+ _init126 = __decoratorStart(_a123);
195257
195835
  _executionEnvironment3 = new WeakMap();
195258
195836
  _scripts = new WeakMap();
195259
195837
  _packageStatus = new WeakMap();
195260
195838
  _outdatedPackages = new WeakMap();
195261
195839
  _isCheckingPackages = new WeakMap();
195262
- __decorateElement(_init125, 4, "executionEnvironment", _executionEnvironment_dec3, _DeesWorkspaceBottombar, _executionEnvironment3);
195263
- __decorateElement(_init125, 4, "scripts", _scripts_dec, _DeesWorkspaceBottombar, _scripts);
195264
- __decorateElement(_init125, 4, "packageStatus", _packageStatus_dec, _DeesWorkspaceBottombar, _packageStatus);
195265
- __decorateElement(_init125, 4, "outdatedPackages", _outdatedPackages_dec, _DeesWorkspaceBottombar, _outdatedPackages);
195266
- __decorateElement(_init125, 4, "isCheckingPackages", _isCheckingPackages_dec, _DeesWorkspaceBottombar, _isCheckingPackages);
195267
- _DeesWorkspaceBottombar = __decorateElement(_init125, 0, "DeesWorkspaceBottombar", _DeesWorkspaceBottombar_decorators, _DeesWorkspaceBottombar);
195840
+ __decorateElement(_init126, 4, "executionEnvironment", _executionEnvironment_dec3, _DeesWorkspaceBottombar, _executionEnvironment3);
195841
+ __decorateElement(_init126, 4, "scripts", _scripts_dec, _DeesWorkspaceBottombar, _scripts);
195842
+ __decorateElement(_init126, 4, "packageStatus", _packageStatus_dec, _DeesWorkspaceBottombar, _packageStatus);
195843
+ __decorateElement(_init126, 4, "outdatedPackages", _outdatedPackages_dec, _DeesWorkspaceBottombar, _outdatedPackages);
195844
+ __decorateElement(_init126, 4, "isCheckingPackages", _isCheckingPackages_dec, _DeesWorkspaceBottombar, _isCheckingPackages);
195845
+ _DeesWorkspaceBottombar = __decorateElement(_init126, 0, "DeesWorkspaceBottombar", _DeesWorkspaceBottombar_decorators, _DeesWorkspaceBottombar);
195268
195846
  __name(_DeesWorkspaceBottombar, "DeesWorkspaceBottombar");
195269
195847
  // STATIC
195270
- __publicField(_DeesWorkspaceBottombar, "demo", demoFunc79);
195848
+ __publicField(_DeesWorkspaceBottombar, "demo", demoFunc80);
195271
195849
  __publicField(_DeesWorkspaceBottombar, "demoGroups", ["Workspace"]);
195272
195850
  __publicField(_DeesWorkspaceBottombar, "styles", [
195273
195851
  themeDefaultStyles,
@@ -195348,7 +195926,7 @@ __publicField(_DeesWorkspaceBottombar, "styles", [
195348
195926
  }
195349
195927
  `
195350
195928
  ]);
195351
- __runInitializers(_init125, 1, _DeesWorkspaceBottombar);
195929
+ __runInitializers(_init126, 1, _DeesWorkspaceBottombar);
195352
195930
  var DeesWorkspaceBottombar = _DeesWorkspaceBottombar;
195353
195931
 
195354
195932
  // ts_web/elements/00group-workspace/dees-workspace/typescript-intellisense.ts
@@ -195686,19 +196264,19 @@ var TypeScriptIntelliSenseManager = class {
195686
196264
  init_dist_ts25();
195687
196265
  init_dist_ts24();
195688
196266
  init_theme();
195689
- var _filePath_dec2, _language_dec5, _modifiedLabel_dec, _originalLabel_dec, _modifiedContent_dec, _originalContent_dec, _a123, _DeesWorkspaceDiffEditor_decorators, _init126, _originalContent, _modifiedContent, _originalLabel, _modifiedLabel, _language5, _filePath2;
196267
+ var _filePath_dec2, _language_dec5, _modifiedLabel_dec, _originalLabel_dec, _modifiedContent_dec, _originalContent_dec, _a124, _DeesWorkspaceDiffEditor_decorators, _init127, _originalContent, _modifiedContent, _originalLabel, _modifiedLabel, _language5, _filePath2;
195690
196268
  _DeesWorkspaceDiffEditor_decorators = [customElement("dees-workspace-diff-editor")];
195691
- var _DeesWorkspaceDiffEditor = class _DeesWorkspaceDiffEditor extends (_a123 = DeesElement, _originalContent_dec = [n5({ type: String })], _modifiedContent_dec = [n5({ type: String })], _originalLabel_dec = [n5({ type: String })], _modifiedLabel_dec = [n5({ type: String })], _language_dec5 = [n5({ type: String })], _filePath_dec2 = [n5({ type: String })], _a123) {
196269
+ var _DeesWorkspaceDiffEditor = class _DeesWorkspaceDiffEditor extends (_a124 = DeesElement, _originalContent_dec = [n5({ type: String })], _modifiedContent_dec = [n5({ type: String })], _originalLabel_dec = [n5({ type: String })], _modifiedLabel_dec = [n5({ type: String })], _language_dec5 = [n5({ type: String })], _filePath_dec2 = [n5({ type: String })], _a124) {
195692
196270
  constructor() {
195693
196271
  super();
195694
196272
  // INSTANCE
195695
196273
  __publicField(this, "diffEditorDeferred", domtools_pluginexports_exports.smartpromise.defer());
195696
- __privateAdd(this, _originalContent, __runInitializers(_init126, 8, this, "")), __runInitializers(_init126, 11, this);
195697
- __privateAdd(this, _modifiedContent, __runInitializers(_init126, 12, this, "")), __runInitializers(_init126, 15, this);
195698
- __privateAdd(this, _originalLabel, __runInitializers(_init126, 16, this, "Disk Version")), __runInitializers(_init126, 19, this);
195699
- __privateAdd(this, _modifiedLabel, __runInitializers(_init126, 20, this, "Local Version")), __runInitializers(_init126, 23, this);
195700
- __privateAdd(this, _language5, __runInitializers(_init126, 24, this, "typescript")), __runInitializers(_init126, 27, this);
195701
- __privateAdd(this, _filePath2, __runInitializers(_init126, 28, this, "")), __runInitializers(_init126, 31, this);
196274
+ __privateAdd(this, _originalContent, __runInitializers(_init127, 8, this, "")), __runInitializers(_init127, 11, this);
196275
+ __privateAdd(this, _modifiedContent, __runInitializers(_init127, 12, this, "")), __runInitializers(_init127, 15, this);
196276
+ __privateAdd(this, _originalLabel, __runInitializers(_init127, 16, this, "Disk Version")), __runInitializers(_init127, 19, this);
196277
+ __privateAdd(this, _modifiedLabel, __runInitializers(_init127, 20, this, "Local Version")), __runInitializers(_init127, 23, this);
196278
+ __privateAdd(this, _language5, __runInitializers(_init127, 24, this, "typescript")), __runInitializers(_init127, 27, this);
196279
+ __privateAdd(this, _filePath2, __runInitializers(_init127, 28, this, "")), __runInitializers(_init127, 31, this);
195702
196280
  __publicField(this, "diffEditor", null);
195703
196281
  __publicField(this, "monacoThemeSubscription", null);
195704
196282
  __publicField(this, "originalModel", null);
@@ -195881,20 +196459,20 @@ var _DeesWorkspaceDiffEditor = class _DeesWorkspaceDiffEditor extends (_a123 = D
195881
196459
  }
195882
196460
  }
195883
196461
  };
195884
- _init126 = __decoratorStart(_a123);
196462
+ _init127 = __decoratorStart(_a124);
195885
196463
  _originalContent = new WeakMap();
195886
196464
  _modifiedContent = new WeakMap();
195887
196465
  _originalLabel = new WeakMap();
195888
196466
  _modifiedLabel = new WeakMap();
195889
196467
  _language5 = new WeakMap();
195890
196468
  _filePath2 = new WeakMap();
195891
- __decorateElement(_init126, 4, "originalContent", _originalContent_dec, _DeesWorkspaceDiffEditor, _originalContent);
195892
- __decorateElement(_init126, 4, "modifiedContent", _modifiedContent_dec, _DeesWorkspaceDiffEditor, _modifiedContent);
195893
- __decorateElement(_init126, 4, "originalLabel", _originalLabel_dec, _DeesWorkspaceDiffEditor, _originalLabel);
195894
- __decorateElement(_init126, 4, "modifiedLabel", _modifiedLabel_dec, _DeesWorkspaceDiffEditor, _modifiedLabel);
195895
- __decorateElement(_init126, 4, "language", _language_dec5, _DeesWorkspaceDiffEditor, _language5);
195896
- __decorateElement(_init126, 4, "filePath", _filePath_dec2, _DeesWorkspaceDiffEditor, _filePath2);
195897
- _DeesWorkspaceDiffEditor = __decorateElement(_init126, 0, "DeesWorkspaceDiffEditor", _DeesWorkspaceDiffEditor_decorators, _DeesWorkspaceDiffEditor);
196469
+ __decorateElement(_init127, 4, "originalContent", _originalContent_dec, _DeesWorkspaceDiffEditor, _originalContent);
196470
+ __decorateElement(_init127, 4, "modifiedContent", _modifiedContent_dec, _DeesWorkspaceDiffEditor, _modifiedContent);
196471
+ __decorateElement(_init127, 4, "originalLabel", _originalLabel_dec, _DeesWorkspaceDiffEditor, _originalLabel);
196472
+ __decorateElement(_init127, 4, "modifiedLabel", _modifiedLabel_dec, _DeesWorkspaceDiffEditor, _modifiedLabel);
196473
+ __decorateElement(_init127, 4, "language", _language_dec5, _DeesWorkspaceDiffEditor, _language5);
196474
+ __decorateElement(_init127, 4, "filePath", _filePath_dec2, _DeesWorkspaceDiffEditor, _filePath2);
196475
+ _DeesWorkspaceDiffEditor = __decorateElement(_init127, 0, "DeesWorkspaceDiffEditor", _DeesWorkspaceDiffEditor_decorators, _DeesWorkspaceDiffEditor);
195898
196476
  __name(_DeesWorkspaceDiffEditor, "DeesWorkspaceDiffEditor");
195899
196477
  // DEMO
195900
196478
  __publicField(_DeesWorkspaceDiffEditor, "demo", /* @__PURE__ */ __name(() => b2`
@@ -195983,7 +196561,7 @@ __publicField(_DeesWorkspaceDiffEditor, "styles", [
195983
196561
  }
195984
196562
  `
195985
196563
  ]);
195986
- __runInitializers(_init126, 1, _DeesWorkspaceDiffEditor);
196564
+ __runInitializers(_init127, 1, _DeesWorkspaceDiffEditor);
195987
196565
  var DeesWorkspaceDiffEditor = _DeesWorkspaceDiffEditor;
195988
196566
 
195989
196567
  // ts_web/elements/00group-workspace/dees-workspace/dees-workspace.ts
@@ -195995,24 +196573,24 @@ init_dees_workspace_terminal();
195995
196573
  init_dees_workspace_terminal();
195996
196574
  init_dees_icon();
195997
196575
  init_dees_actionbar();
195998
- var _diffViewConfig_dec, _showDiffView_dec, _isDraggingTerminal_dec, _isDraggingFileTree_dec, _currentTerminalHeight_dec, _currentFileTreeWidth_dec, _initOutput_dec, _initCommand_dec, _autoSave_dec, _diagnosticMarkers_dec, _activeBottomPanel_dec, _isInitializing_dec, _isFileTreeCollapsed_dec, _isTerminalCollapsed_dec, _activeFilePath_dec, _openFiles_dec, _terminalHeight_dec, _fileTreeWidth_dec, _showTerminal_dec, _showFileTree_dec, _initializationPromise_dec, _executionEnvironment_dec4, _a124, _DeesWorkspace_decorators, _init127, _executionEnvironment4, _initializationPromise, _showFileTree, _showTerminal, _fileTreeWidth, _terminalHeight, _openFiles, _activeFilePath, _isTerminalCollapsed, _isFileTreeCollapsed, _isInitializing, _activeBottomPanel, _diagnosticMarkers, _autoSave, _initCommand, _initOutput, _currentFileTreeWidth, _currentTerminalHeight, _isDraggingFileTree, _isDraggingTerminal, _showDiffView, _diffViewConfig;
196576
+ var _diffViewConfig_dec, _showDiffView_dec, _isDraggingTerminal_dec, _isDraggingFileTree_dec, _currentTerminalHeight_dec, _currentFileTreeWidth_dec, _initOutput_dec, _initCommand_dec, _autoSave_dec, _diagnosticMarkers_dec, _activeBottomPanel_dec, _isInitializing_dec, _isFileTreeCollapsed_dec, _isTerminalCollapsed_dec, _activeFilePath_dec, _openFiles_dec, _terminalHeight_dec, _fileTreeWidth_dec, _showTerminal_dec, _showFileTree_dec, _initializationPromise_dec, _executionEnvironment_dec4, _a125, _DeesWorkspace_decorators, _init128, _executionEnvironment4, _initializationPromise, _showFileTree, _showTerminal, _fileTreeWidth, _terminalHeight, _openFiles, _activeFilePath, _isTerminalCollapsed, _isFileTreeCollapsed, _isInitializing, _activeBottomPanel, _diagnosticMarkers, _autoSave, _initCommand, _initOutput, _currentFileTreeWidth, _currentTerminalHeight, _isDraggingFileTree, _isDraggingTerminal, _showDiffView, _diffViewConfig;
195999
196577
  _DeesWorkspace_decorators = [customElement("dees-workspace")];
196000
- var _DeesWorkspace = class _DeesWorkspace extends (_a124 = DeesElement, _executionEnvironment_dec4 = [n5({ type: Object })], _initializationPromise_dec = [n5({ attribute: false })], _showFileTree_dec = [n5({ type: Boolean })], _showTerminal_dec = [n5({ type: Boolean })], _fileTreeWidth_dec = [n5({ type: Number })], _terminalHeight_dec = [n5({ type: Number })], _openFiles_dec = [r5()], _activeFilePath_dec = [r5()], _isTerminalCollapsed_dec = [r5()], _isFileTreeCollapsed_dec = [r5()], _isInitializing_dec = [r5()], _activeBottomPanel_dec = [r5()], _diagnosticMarkers_dec = [r5()], _autoSave_dec = [r5()], _initCommand_dec = [r5()], _initOutput_dec = [r5()], _currentFileTreeWidth_dec = [r5()], _currentTerminalHeight_dec = [r5()], _isDraggingFileTree_dec = [r5()], _isDraggingTerminal_dec = [r5()], _showDiffView_dec = [r5()], _diffViewConfig_dec = [r5()], _a124) {
196578
+ var _DeesWorkspace = class _DeesWorkspace extends (_a125 = DeesElement, _executionEnvironment_dec4 = [n5({ type: Object })], _initializationPromise_dec = [n5({ attribute: false })], _showFileTree_dec = [n5({ type: Boolean })], _showTerminal_dec = [n5({ type: Boolean })], _fileTreeWidth_dec = [n5({ type: Number })], _terminalHeight_dec = [n5({ type: Number })], _openFiles_dec = [r5()], _activeFilePath_dec = [r5()], _isTerminalCollapsed_dec = [r5()], _isFileTreeCollapsed_dec = [r5()], _isInitializing_dec = [r5()], _activeBottomPanel_dec = [r5()], _diagnosticMarkers_dec = [r5()], _autoSave_dec = [r5()], _initCommand_dec = [r5()], _initOutput_dec = [r5()], _currentFileTreeWidth_dec = [r5()], _currentTerminalHeight_dec = [r5()], _isDraggingFileTree_dec = [r5()], _isDraggingTerminal_dec = [r5()], _showDiffView_dec = [r5()], _diffViewConfig_dec = [r5()], _a125) {
196001
196579
  constructor() {
196002
196580
  super(...arguments);
196003
- __privateAdd(this, _executionEnvironment4, __runInitializers(_init127, 8, this, null)), __runInitializers(_init127, 11, this);
196004
- __privateAdd(this, _initializationPromise, __runInitializers(_init127, 12, this, null)), __runInitializers(_init127, 15, this);
196005
- __privateAdd(this, _showFileTree, __runInitializers(_init127, 16, this, true)), __runInitializers(_init127, 19, this);
196006
- __privateAdd(this, _showTerminal, __runInitializers(_init127, 20, this, true)), __runInitializers(_init127, 23, this);
196007
- __privateAdd(this, _fileTreeWidth, __runInitializers(_init127, 24, this, 250)), __runInitializers(_init127, 27, this);
196008
- __privateAdd(this, _terminalHeight, __runInitializers(_init127, 28, this, 200)), __runInitializers(_init127, 31, this);
196009
- __privateAdd(this, _openFiles, __runInitializers(_init127, 32, this, [])), __runInitializers(_init127, 35, this);
196010
- __privateAdd(this, _activeFilePath, __runInitializers(_init127, 36, this, "")), __runInitializers(_init127, 39, this);
196011
- __privateAdd(this, _isTerminalCollapsed, __runInitializers(_init127, 40, this, false)), __runInitializers(_init127, 43, this);
196012
- __privateAdd(this, _isFileTreeCollapsed, __runInitializers(_init127, 44, this, false)), __runInitializers(_init127, 47, this);
196013
- __privateAdd(this, _isInitializing, __runInitializers(_init127, 48, this, true)), __runInitializers(_init127, 51, this);
196014
- __privateAdd(this, _activeBottomPanel, __runInitializers(_init127, 52, this, "terminal")), __runInitializers(_init127, 55, this);
196015
- __privateAdd(this, _diagnosticMarkers, __runInitializers(_init127, 56, this, [])), __runInitializers(_init127, 59, this);
196581
+ __privateAdd(this, _executionEnvironment4, __runInitializers(_init128, 8, this, null)), __runInitializers(_init128, 11, this);
196582
+ __privateAdd(this, _initializationPromise, __runInitializers(_init128, 12, this, null)), __runInitializers(_init128, 15, this);
196583
+ __privateAdd(this, _showFileTree, __runInitializers(_init128, 16, this, true)), __runInitializers(_init128, 19, this);
196584
+ __privateAdd(this, _showTerminal, __runInitializers(_init128, 20, this, true)), __runInitializers(_init128, 23, this);
196585
+ __privateAdd(this, _fileTreeWidth, __runInitializers(_init128, 24, this, 250)), __runInitializers(_init128, 27, this);
196586
+ __privateAdd(this, _terminalHeight, __runInitializers(_init128, 28, this, 200)), __runInitializers(_init128, 31, this);
196587
+ __privateAdd(this, _openFiles, __runInitializers(_init128, 32, this, [])), __runInitializers(_init128, 35, this);
196588
+ __privateAdd(this, _activeFilePath, __runInitializers(_init128, 36, this, "")), __runInitializers(_init128, 39, this);
196589
+ __privateAdd(this, _isTerminalCollapsed, __runInitializers(_init128, 40, this, false)), __runInitializers(_init128, 43, this);
196590
+ __privateAdd(this, _isFileTreeCollapsed, __runInitializers(_init128, 44, this, false)), __runInitializers(_init128, 47, this);
196591
+ __privateAdd(this, _isInitializing, __runInitializers(_init128, 48, this, true)), __runInitializers(_init128, 51, this);
196592
+ __privateAdd(this, _activeBottomPanel, __runInitializers(_init128, 52, this, "terminal")), __runInitializers(_init128, 55, this);
196593
+ __privateAdd(this, _diagnosticMarkers, __runInitializers(_init128, 56, this, [])), __runInitializers(_init128, 59, this);
196016
196594
  __publicField(this, "editorElement", null);
196017
196595
  __publicField(this, "initializationStarted", false);
196018
196596
  __publicField(this, "intelliSenseManager", null);
@@ -196025,16 +196603,16 @@ var _DeesWorkspace = class _DeesWorkspace extends (_a124 = DeesElement, _executi
196025
196603
  __publicField(this, "openFileWatchers", /* @__PURE__ */ new Map());
196026
196604
  __publicField(this, "fileChangeDebounce", /* @__PURE__ */ new Map());
196027
196605
  __publicField(this, "actionbarElement", null);
196028
- __privateAdd(this, _autoSave, __runInitializers(_init127, 60, this, false)), __runInitializers(_init127, 63, this);
196606
+ __privateAdd(this, _autoSave, __runInitializers(_init128, 60, this, false)), __runInitializers(_init128, 63, this);
196029
196607
  __publicField(this, "autoSaveInterval", null);
196030
- __privateAdd(this, _initCommand, __runInitializers(_init127, 64, this, "")), __runInitializers(_init127, 67, this);
196031
- __privateAdd(this, _initOutput, __runInitializers(_init127, 68, this, [])), __runInitializers(_init127, 71, this);
196032
- __privateAdd(this, _currentFileTreeWidth, __runInitializers(_init127, 72, this, 250)), __runInitializers(_init127, 75, this);
196033
- __privateAdd(this, _currentTerminalHeight, __runInitializers(_init127, 76, this, 200)), __runInitializers(_init127, 79, this);
196034
- __privateAdd(this, _isDraggingFileTree, __runInitializers(_init127, 80, this, false)), __runInitializers(_init127, 83, this);
196035
- __privateAdd(this, _isDraggingTerminal, __runInitializers(_init127, 84, this, false)), __runInitializers(_init127, 87, this);
196036
- __privateAdd(this, _showDiffView, __runInitializers(_init127, 88, this, false)), __runInitializers(_init127, 91, this);
196037
- __privateAdd(this, _diffViewConfig, __runInitializers(_init127, 92, this, null)), __runInitializers(_init127, 95, this);
196608
+ __privateAdd(this, _initCommand, __runInitializers(_init128, 64, this, "")), __runInitializers(_init128, 67, this);
196609
+ __privateAdd(this, _initOutput, __runInitializers(_init128, 68, this, [])), __runInitializers(_init128, 71, this);
196610
+ __privateAdd(this, _currentFileTreeWidth, __runInitializers(_init128, 72, this, 250)), __runInitializers(_init128, 75, this);
196611
+ __privateAdd(this, _currentTerminalHeight, __runInitializers(_init128, 76, this, 200)), __runInitializers(_init128, 79, this);
196612
+ __privateAdd(this, _isDraggingFileTree, __runInitializers(_init128, 80, this, false)), __runInitializers(_init128, 83, this);
196613
+ __privateAdd(this, _isDraggingTerminal, __runInitializers(_init128, 84, this, false)), __runInitializers(_init128, 87, this);
196614
+ __privateAdd(this, _showDiffView, __runInitializers(_init128, 88, this, false)), __runInitializers(_init128, 91, this);
196615
+ __privateAdd(this, _diffViewConfig, __runInitializers(_init128, 92, this, null)), __runInitializers(_init128, 95, this);
196038
196616
  // Keyboard shortcut handler (bound for proper cleanup)
196039
196617
  __publicField(this, "keydownHandler", /* @__PURE__ */ __name((e10) => {
196040
196618
  if ((e10.metaKey || e10.ctrlKey) && e10.key === "s" && !e10.shiftKey) {
@@ -196848,7 +197426,7 @@ var _DeesWorkspace = class _DeesWorkspace extends (_a124 = DeesElement, _executi
196848
197426
  window.dispatchEvent(new Event("resize"));
196849
197427
  }
196850
197428
  };
196851
- _init127 = __decoratorStart(_a124);
197429
+ _init128 = __decoratorStart(_a125);
196852
197430
  _executionEnvironment4 = new WeakMap();
196853
197431
  _initializationPromise = new WeakMap();
196854
197432
  _showFileTree = new WeakMap();
@@ -196871,29 +197449,29 @@ _isDraggingFileTree = new WeakMap();
196871
197449
  _isDraggingTerminal = new WeakMap();
196872
197450
  _showDiffView = new WeakMap();
196873
197451
  _diffViewConfig = new WeakMap();
196874
- __decorateElement(_init127, 4, "executionEnvironment", _executionEnvironment_dec4, _DeesWorkspace, _executionEnvironment4);
196875
- __decorateElement(_init127, 4, "initializationPromise", _initializationPromise_dec, _DeesWorkspace, _initializationPromise);
196876
- __decorateElement(_init127, 4, "showFileTree", _showFileTree_dec, _DeesWorkspace, _showFileTree);
196877
- __decorateElement(_init127, 4, "showTerminal", _showTerminal_dec, _DeesWorkspace, _showTerminal);
196878
- __decorateElement(_init127, 4, "fileTreeWidth", _fileTreeWidth_dec, _DeesWorkspace, _fileTreeWidth);
196879
- __decorateElement(_init127, 4, "terminalHeight", _terminalHeight_dec, _DeesWorkspace, _terminalHeight);
196880
- __decorateElement(_init127, 4, "openFiles", _openFiles_dec, _DeesWorkspace, _openFiles);
196881
- __decorateElement(_init127, 4, "activeFilePath", _activeFilePath_dec, _DeesWorkspace, _activeFilePath);
196882
- __decorateElement(_init127, 4, "isTerminalCollapsed", _isTerminalCollapsed_dec, _DeesWorkspace, _isTerminalCollapsed);
196883
- __decorateElement(_init127, 4, "isFileTreeCollapsed", _isFileTreeCollapsed_dec, _DeesWorkspace, _isFileTreeCollapsed);
196884
- __decorateElement(_init127, 4, "isInitializing", _isInitializing_dec, _DeesWorkspace, _isInitializing);
196885
- __decorateElement(_init127, 4, "activeBottomPanel", _activeBottomPanel_dec, _DeesWorkspace, _activeBottomPanel);
196886
- __decorateElement(_init127, 4, "diagnosticMarkers", _diagnosticMarkers_dec, _DeesWorkspace, _diagnosticMarkers);
196887
- __decorateElement(_init127, 4, "autoSave", _autoSave_dec, _DeesWorkspace, _autoSave);
196888
- __decorateElement(_init127, 4, "initCommand", _initCommand_dec, _DeesWorkspace, _initCommand);
196889
- __decorateElement(_init127, 4, "initOutput", _initOutput_dec, _DeesWorkspace, _initOutput);
196890
- __decorateElement(_init127, 4, "currentFileTreeWidth", _currentFileTreeWidth_dec, _DeesWorkspace, _currentFileTreeWidth);
196891
- __decorateElement(_init127, 4, "currentTerminalHeight", _currentTerminalHeight_dec, _DeesWorkspace, _currentTerminalHeight);
196892
- __decorateElement(_init127, 4, "isDraggingFileTree", _isDraggingFileTree_dec, _DeesWorkspace, _isDraggingFileTree);
196893
- __decorateElement(_init127, 4, "isDraggingTerminal", _isDraggingTerminal_dec, _DeesWorkspace, _isDraggingTerminal);
196894
- __decorateElement(_init127, 4, "showDiffView", _showDiffView_dec, _DeesWorkspace, _showDiffView);
196895
- __decorateElement(_init127, 4, "diffViewConfig", _diffViewConfig_dec, _DeesWorkspace, _diffViewConfig);
196896
- _DeesWorkspace = __decorateElement(_init127, 0, "DeesWorkspace", _DeesWorkspace_decorators, _DeesWorkspace);
197452
+ __decorateElement(_init128, 4, "executionEnvironment", _executionEnvironment_dec4, _DeesWorkspace, _executionEnvironment4);
197453
+ __decorateElement(_init128, 4, "initializationPromise", _initializationPromise_dec, _DeesWorkspace, _initializationPromise);
197454
+ __decorateElement(_init128, 4, "showFileTree", _showFileTree_dec, _DeesWorkspace, _showFileTree);
197455
+ __decorateElement(_init128, 4, "showTerminal", _showTerminal_dec, _DeesWorkspace, _showTerminal);
197456
+ __decorateElement(_init128, 4, "fileTreeWidth", _fileTreeWidth_dec, _DeesWorkspace, _fileTreeWidth);
197457
+ __decorateElement(_init128, 4, "terminalHeight", _terminalHeight_dec, _DeesWorkspace, _terminalHeight);
197458
+ __decorateElement(_init128, 4, "openFiles", _openFiles_dec, _DeesWorkspace, _openFiles);
197459
+ __decorateElement(_init128, 4, "activeFilePath", _activeFilePath_dec, _DeesWorkspace, _activeFilePath);
197460
+ __decorateElement(_init128, 4, "isTerminalCollapsed", _isTerminalCollapsed_dec, _DeesWorkspace, _isTerminalCollapsed);
197461
+ __decorateElement(_init128, 4, "isFileTreeCollapsed", _isFileTreeCollapsed_dec, _DeesWorkspace, _isFileTreeCollapsed);
197462
+ __decorateElement(_init128, 4, "isInitializing", _isInitializing_dec, _DeesWorkspace, _isInitializing);
197463
+ __decorateElement(_init128, 4, "activeBottomPanel", _activeBottomPanel_dec, _DeesWorkspace, _activeBottomPanel);
197464
+ __decorateElement(_init128, 4, "diagnosticMarkers", _diagnosticMarkers_dec, _DeesWorkspace, _diagnosticMarkers);
197465
+ __decorateElement(_init128, 4, "autoSave", _autoSave_dec, _DeesWorkspace, _autoSave);
197466
+ __decorateElement(_init128, 4, "initCommand", _initCommand_dec, _DeesWorkspace, _initCommand);
197467
+ __decorateElement(_init128, 4, "initOutput", _initOutput_dec, _DeesWorkspace, _initOutput);
197468
+ __decorateElement(_init128, 4, "currentFileTreeWidth", _currentFileTreeWidth_dec, _DeesWorkspace, _currentFileTreeWidth);
197469
+ __decorateElement(_init128, 4, "currentTerminalHeight", _currentTerminalHeight_dec, _DeesWorkspace, _currentTerminalHeight);
197470
+ __decorateElement(_init128, 4, "isDraggingFileTree", _isDraggingFileTree_dec, _DeesWorkspace, _isDraggingFileTree);
197471
+ __decorateElement(_init128, 4, "isDraggingTerminal", _isDraggingTerminal_dec, _DeesWorkspace, _isDraggingTerminal);
197472
+ __decorateElement(_init128, 4, "showDiffView", _showDiffView_dec, _DeesWorkspace, _showDiffView);
197473
+ __decorateElement(_init128, 4, "diffViewConfig", _diffViewConfig_dec, _DeesWorkspace, _diffViewConfig);
197474
+ _DeesWorkspace = __decorateElement(_init128, 0, "DeesWorkspace", _DeesWorkspace_decorators, _DeesWorkspace);
196897
197475
  __name(_DeesWorkspace, "DeesWorkspace");
196898
197476
  __publicField(_DeesWorkspace, "demo", /* @__PURE__ */ __name(() => {
196899
197477
  const env2 = new WebContainerEnvironment();
@@ -197539,7 +198117,7 @@ __publicField(_DeesWorkspace, "styles", [
197539
198117
 
197540
198118
  `
197541
198119
  ]);
197542
- __runInitializers(_init127, 1, _DeesWorkspace);
198120
+ __runInitializers(_init128, 1, _DeesWorkspace);
197543
198121
  var DeesWorkspace = _DeesWorkspace;
197544
198122
 
197545
198123
  // ts_web/elements/00group-workspace/dees-workspace-terminal/index.ts
@@ -197549,16 +198127,16 @@ init_terminal_tab_manager();
197549
198127
  // ts_web/elements/00group-workspace/dees-workspace-markdown/dees-workspace-markdown.ts
197550
198128
  init_dist_ts25();
197551
198129
  init_theme();
197552
- var _isDragging_dec3, _currentSplitRatio_dec, _minPanelSize_dec, _splitRatio_dec, _a125, _DeesWorkspaceMarkdown_decorators, _init128, _splitRatio, _minPanelSize, _currentSplitRatio, _isDragging3;
198130
+ var _isDragging_dec3, _currentSplitRatio_dec, _minPanelSize_dec, _splitRatio_dec, _a126, _DeesWorkspaceMarkdown_decorators, _init129, _splitRatio, _minPanelSize, _currentSplitRatio, _isDragging3;
197553
198131
  var deferred = dist_ts_exports24.plugins.smartpromise.defer();
197554
198132
  _DeesWorkspaceMarkdown_decorators = [customElement("dees-workspace-markdown")];
197555
- var _DeesWorkspaceMarkdown = class _DeesWorkspaceMarkdown extends (_a125 = DeesElement, _splitRatio_dec = [n5({ type: Number })], _minPanelSize_dec = [n5({ type: Number })], _currentSplitRatio_dec = [r5()], _isDragging_dec3 = [r5()], _a125) {
198133
+ var _DeesWorkspaceMarkdown = class _DeesWorkspaceMarkdown extends (_a126 = DeesElement, _splitRatio_dec = [n5({ type: Number })], _minPanelSize_dec = [n5({ type: Number })], _currentSplitRatio_dec = [r5()], _isDragging_dec3 = [r5()], _a126) {
197556
198134
  constructor() {
197557
198135
  super(...arguments);
197558
- __privateAdd(this, _splitRatio, __runInitializers(_init128, 8, this, 50)), __runInitializers(_init128, 11, this);
197559
- __privateAdd(this, _minPanelSize, __runInitializers(_init128, 12, this, 10)), __runInitializers(_init128, 15, this);
197560
- __privateAdd(this, _currentSplitRatio, __runInitializers(_init128, 16, this, 50)), __runInitializers(_init128, 19, this);
197561
- __privateAdd(this, _isDragging3, __runInitializers(_init128, 20, this, false)), __runInitializers(_init128, 23, this);
198136
+ __privateAdd(this, _splitRatio, __runInitializers(_init129, 8, this, 50)), __runInitializers(_init129, 11, this);
198137
+ __privateAdd(this, _minPanelSize, __runInitializers(_init129, 12, this, 10)), __runInitializers(_init129, 15, this);
198138
+ __privateAdd(this, _currentSplitRatio, __runInitializers(_init129, 16, this, 50)), __runInitializers(_init129, 19, this);
198139
+ __privateAdd(this, _isDragging3, __runInitializers(_init129, 20, this, false)), __runInitializers(_init129, 23, this);
197562
198140
  __publicField(this, "resizeHandleElement");
197563
198141
  __publicField(this, "containerElement");
197564
198142
  __publicField(this, "handleMouseDown", /* @__PURE__ */ __name((e10) => {
@@ -197659,16 +198237,16 @@ const hello = 'yes'
197659
198237
  this.currentSplitRatio = this.splitRatio;
197660
198238
  }
197661
198239
  };
197662
- _init128 = __decoratorStart(_a125);
198240
+ _init129 = __decoratorStart(_a126);
197663
198241
  _splitRatio = new WeakMap();
197664
198242
  _minPanelSize = new WeakMap();
197665
198243
  _currentSplitRatio = new WeakMap();
197666
198244
  _isDragging3 = new WeakMap();
197667
- __decorateElement(_init128, 4, "splitRatio", _splitRatio_dec, _DeesWorkspaceMarkdown, _splitRatio);
197668
- __decorateElement(_init128, 4, "minPanelSize", _minPanelSize_dec, _DeesWorkspaceMarkdown, _minPanelSize);
197669
- __decorateElement(_init128, 4, "currentSplitRatio", _currentSplitRatio_dec, _DeesWorkspaceMarkdown, _currentSplitRatio);
197670
- __decorateElement(_init128, 4, "isDragging", _isDragging_dec3, _DeesWorkspaceMarkdown, _isDragging3);
197671
- _DeesWorkspaceMarkdown = __decorateElement(_init128, 0, "DeesWorkspaceMarkdown", _DeesWorkspaceMarkdown_decorators, _DeesWorkspaceMarkdown);
198245
+ __decorateElement(_init129, 4, "splitRatio", _splitRatio_dec, _DeesWorkspaceMarkdown, _splitRatio);
198246
+ __decorateElement(_init129, 4, "minPanelSize", _minPanelSize_dec, _DeesWorkspaceMarkdown, _minPanelSize);
198247
+ __decorateElement(_init129, 4, "currentSplitRatio", _currentSplitRatio_dec, _DeesWorkspaceMarkdown, _currentSplitRatio);
198248
+ __decorateElement(_init129, 4, "isDragging", _isDragging_dec3, _DeesWorkspaceMarkdown, _isDragging3);
198249
+ _DeesWorkspaceMarkdown = __decorateElement(_init129, 0, "DeesWorkspaceMarkdown", _DeesWorkspaceMarkdown_decorators, _DeesWorkspaceMarkdown);
197672
198250
  __name(_DeesWorkspaceMarkdown, "DeesWorkspaceMarkdown");
197673
198251
  __publicField(_DeesWorkspaceMarkdown, "demo", /* @__PURE__ */ __name(() => b2`<dees-workspace-markdown></dees-workspace-markdown>`, "demo"));
197674
198252
  __publicField(_DeesWorkspaceMarkdown, "demoGroups", ["Workspace"]);
@@ -197755,12 +198333,12 @@ __publicField(_DeesWorkspaceMarkdown, "styles", [
197755
198333
  }
197756
198334
  `
197757
198335
  ]);
197758
- __runInitializers(_init128, 1, _DeesWorkspaceMarkdown);
198336
+ __runInitializers(_init129, 1, _DeesWorkspaceMarkdown);
197759
198337
  var DeesWorkspaceMarkdown = _DeesWorkspaceMarkdown;
197760
198338
 
197761
198339
  // ts_web/elements/00group-workspace/dees-workspace-markdownoutlet/dees-workspace-markdownoutlet.demo.ts
197762
198340
  init_dist_ts25();
197763
- var demoFunc80 = /* @__PURE__ */ __name(() => b2`
198341
+ var demoFunc81 = /* @__PURE__ */ __name(() => b2`
197764
198342
  <dees-demowrapper>
197765
198343
  <style>
197766
198344
  ${i`
@@ -198048,14 +198626,14 @@ html\`&lt;dees-button&gt;Click me&lt;/dees-button&gt;\`</code></pre>
198048
198626
  // ts_web/elements/00group-workspace/dees-workspace-markdownoutlet/dees-workspace-markdownoutlet.ts
198049
198627
  init_dist_ts25();
198050
198628
  init_theme();
198051
- var _DeesWorkspaceMarkdownoutlet_decorators, _init129, _a126;
198629
+ var _DeesWorkspaceMarkdownoutlet_decorators, _init130, _a127;
198052
198630
  _DeesWorkspaceMarkdownoutlet_decorators = [customElement("dees-workspace-markdownoutlet")];
198053
- var DeesWorkspaceMarkdownoutlet = class extends (_a126 = DeesElement) {
198631
+ var DeesWorkspaceMarkdownoutlet = class extends (_a127 = DeesElement) {
198054
198632
  static {
198055
198633
  __name(this, "DeesWorkspaceMarkdownoutlet");
198056
198634
  }
198057
198635
  // DEMO
198058
- static demo = demoFunc80;
198636
+ static demo = demoFunc81;
198059
198637
  static demoGroups = ["Workspace"];
198060
198638
  static styles = [
198061
198639
  themeDefaultStyles,
@@ -198384,9 +198962,9 @@ var DeesWorkspaceMarkdownoutlet = class extends (_a126 = DeesElement) {
198384
198962
  this.outlet.innerHTML = htmlTextArg;
198385
198963
  }
198386
198964
  };
198387
- _init129 = __decoratorStart(_a126);
198388
- DeesWorkspaceMarkdownoutlet = __decorateElement(_init129, 0, "DeesWorkspaceMarkdownoutlet", _DeesWorkspaceMarkdownoutlet_decorators, DeesWorkspaceMarkdownoutlet);
198389
- __runInitializers(_init129, 1, DeesWorkspaceMarkdownoutlet);
198965
+ _init130 = __decoratorStart(_a127);
198966
+ DeesWorkspaceMarkdownoutlet = __decorateElement(_init130, 0, "DeesWorkspaceMarkdownoutlet", _DeesWorkspaceMarkdownoutlet_decorators, DeesWorkspaceMarkdownoutlet);
198967
+ __runInitializers(_init130, 1, DeesWorkspaceMarkdownoutlet);
198390
198968
 
198391
198969
  // ts_web/elements/dees-tooltip/dees-tooltip.ts
198392
198970
  init_dist_ts25();
@@ -198399,7 +198977,7 @@ init_group_runtime();
198399
198977
  // ts_web/00_commitinfo_data.ts
198400
198978
  var commitinfo = {
198401
198979
  name: "@design.estate/dees-catalog",
198402
- version: "3.101.0",
198980
+ version: "3.103.0",
198403
198981
  description: "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."
198404
198982
  };
198405
198983
 
@@ -198502,6 +199080,7 @@ export {
198502
199080
  DeesStorageKeys,
198503
199081
  DeesStoragePreview,
198504
199082
  DeesTable,
199083
+ DeesTerminalView,
198505
199084
  DeesTheme,
198506
199085
  DeesThumbnailAudio,
198507
199086
  DeesThumbnailBase,