@benbraide/inlinejs-stripe 2.3.0 → 2.3.1

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.
@@ -20,6 +20,17 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
20
20
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
21
21
  return c > 3 && r && Object.defineProperty(target, key, r), r;
22
22
  };
23
+ var __rest = (undefined && undefined.__rest) || function (s, e) {
24
+ var t = {};
25
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
26
+ t[p] = s[p];
27
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
28
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
29
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
30
+ t[p[i]] = s[p[i]];
31
+ }
32
+ return t;
33
+ };
23
34
 
24
35
 
25
36
  class CustomElement extends HTMLElement {
@@ -45,19 +56,25 @@ class CustomElement extends HTMLElement {
45
56
  this.booleanAttributes_ = new Array();
46
57
  this.nonBooleanAttributes_ = new Array();
47
58
  (this.options_.isTemplate || this.options_.isHidden) && (this.style.display = 'none');
48
- const inlineGlobal = globalThis['InlineJS'];
49
- if (!this.options_.disableImplicitData && (!(0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.IsObject)(inlineGlobal) || !inlineGlobal['disableImplicitData'])) {
50
- const dataDirective = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.GetGlobal)().GetConfig().GetDirectiveName('data', false);
51
- const altDataDirective = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.GetGlobal)().GetConfig().GetDirectiveName('data', true);
52
- let farthestAncestor = null;
53
- for (let ancestor = this; ancestor; ancestor = ancestor.parentNode) {
54
- if ((ancestor instanceof Element) && (ancestor.hasAttribute(dataDirective) || ancestor.hasAttribute(altDataDirective))) {
55
- farthestAncestor = ancestor;
56
- break;
57
- }
59
+ setTimeout(() => {
60
+ if (this.componentId_)
61
+ return; // Initialized
62
+ if ((0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.InferComponent)(this))
63
+ return; // Contained inside a mounted element
64
+ const config = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.GetConfig)();
65
+ const dataDirectives = [config.GetDirectiveName('data', false), config.GetDirectiveName('data', true)];
66
+ const found = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.FindAncestor)(this, (el) => {
67
+ if ((0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.IsCustomElement)(el))
68
+ return true; // Contained inside another custom element
69
+ if (dataDirectives.some(directive => el.hasAttribute(directive)))
70
+ return true; // Contained inside element with a "hx-data" directive
71
+ return false;
72
+ });
73
+ if (!found) { // Not contained - add "hx-data" directive
74
+ this.setAttribute(dataDirectives[0], '');
75
+ (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.BootstrapAndAttach)(this);
58
76
  }
59
- !farthestAncestor && this.setAttribute(dataDirective, '');
60
- }
77
+ }, 0);
61
78
  }
62
79
  UpdateComponentProperty(value) {
63
80
  var _a;
@@ -156,11 +173,17 @@ class CustomElement extends HTMLElement {
156
173
  return null;
157
174
  }
158
175
  IsTemplate() {
159
- return this.options_.isTemplate;
176
+ return this.options_.isTemplate || false;
160
177
  }
161
178
  OnElementScopeCreated(params) {
162
179
  this.HandleElementScopeCreated_(params);
163
180
  }
181
+ OnElementScopeMarked(scope) {
182
+ this.HandleElementScopeMarked_(scope);
183
+ }
184
+ OnElementScopeDestroyed(scope) {
185
+ this.HandleElementScopeDestroyed_(scope);
186
+ }
164
187
  EvaluateExpression(expression, options) {
165
188
  return this.EvaluateWithStoredProxyAccessHandler((0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.EvaluateLater)({
166
189
  componentId: this.componentId_,
@@ -194,7 +217,18 @@ class CustomElement extends HTMLElement {
194
217
  }
195
218
  return props;
196
219
  }
197
- HandleElementScopeCreated_({ scope, componentId }, postAttributesCallback) {
220
+ HandleElementScopeCreated_(_a, postAttributesCallback) {
221
+ var { scope } = _a, rest = __rest(_a, ["scope"]);
222
+ this.HandleElementScopeCreatedPrefix_(Object.assign({ scope }, rest));
223
+ scope.AddPostAttributesProcessCallback(() => {
224
+ this.HandlePostAttributesProcess_();
225
+ postAttributesCallback === null || postAttributesCallback === void 0 ? void 0 : postAttributesCallback();
226
+ });
227
+ scope.AddPostProcessCallback(() => this.HandlePostProcess_());
228
+ scope.AddAttributeChangeCallback(name => (name && this.AttributeChanged_(name)));
229
+ this.HandleElementScopeCreatedPostfix_(Object.assign({ scope }, rest));
230
+ }
231
+ HandleElementScopeCreatedPrefix_({ componentId }) {
198
232
  this.componentId_ = componentId;
199
233
  this.propertyScopes_ = this.ComputePropertyScopes_();
200
234
  this.storedProxyAccessHandler_ = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.StoreProxyHandler)(componentId);
@@ -209,23 +243,28 @@ class CustomElement extends HTMLElement {
209
243
  }
210
244
  });
211
245
  this.instancePropertyNames_ = this.instanceProperties_.map(p => p.name);
212
- scope.AddPostAttributesProcessCallback(() => {
213
- //Set initial values from decorators, but only if the attribute is not already set
214
- this.instanceProperties_.forEach((property) => {
215
- if (property.initial !== undefined && property.setInitial && !this.hasAttribute(property.name)) {
216
- property.setInitial(this.EncodeValue_(property.initial, property.type), this);
217
- }
218
- });
219
- this.InitializeStateFromAttributes_();
220
- postAttributesCallback && postAttributesCallback();
221
- });
222
- scope.AddPostProcessCallback(() => (this.ShouldLoadResources_() && this.LoadResources()));
223
- scope.AddAttributeChangeCallback(name => (name && this.AttributeChanged_(name)));
224
- scope.AddUninitCallback(() => {
225
- this.nativeElement_ = null;
226
- this.storedProxyAccessHandler_ = null;
246
+ }
247
+ HandleElementScopeCreatedPostfix_(params) { }
248
+ HandleElementScopeMarked_(scope) { }
249
+ HandleElementScopeDestroyed_(scope) {
250
+ this.nativeElement_ = null;
251
+ this.storedProxyAccessHandler_ = null;
252
+ }
253
+ HandlePostProcess_() {
254
+ this.ShouldLoadResources_() && this.LoadResources();
255
+ }
256
+ HandlePostAttributesProcess_() {
257
+ this.HandlePostAttributesProcessPrefix_();
258
+ this.instanceProperties_.forEach((property) => {
259
+ if (property.initial !== undefined && property.setInitial && !this.hasAttribute(property.name)) {
260
+ property.setInitial(this.EncodeValue_(property.initial, property.type), this);
261
+ }
227
262
  });
263
+ this.InitializeStateFromAttributes_();
264
+ this.HandlePostAttributesProcessPostfix_();
228
265
  }
266
+ HandlePostAttributesProcessPrefix_() { }
267
+ HandlePostAttributesProcessPostfix_() { }
229
268
  InitializeStateFromAttributes_(whitelist) {
230
269
  let attributes = Array.from(this.attributes);
231
270
  whitelist && (attributes = attributes.filter(({ name }) => whitelist.includes(name)));
@@ -250,6 +289,9 @@ class CustomElement extends HTMLElement {
250
289
  return (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.ToString)(value);
251
290
  }
252
291
  DecodeValue_(value, type, delimiter) {
292
+ if (value === 'null' || value === 'undefined') {
293
+ return this.DecodeNullish_(type, value === 'null' ? null : undefined);
294
+ }
253
295
  if (type === 'string') {
254
296
  return (value || '');
255
297
  }
@@ -277,6 +319,18 @@ class CustomElement extends HTMLElement {
277
319
  }
278
320
  return value;
279
321
  }
322
+ DecodeNullish_(type, nullValue = null) {
323
+ if (type === 'string') {
324
+ return '';
325
+ }
326
+ if (type === 'boolean') {
327
+ return false;
328
+ }
329
+ if (type === 'number') {
330
+ return NaN;
331
+ }
332
+ return nullValue;
333
+ }
280
334
  SpreadValue_(value, keys) {
281
335
  let parts = value.split(' ');
282
336
  keys.forEach((key, index) => {
@@ -435,10 +489,10 @@ class NativeElement extends _element__WEBPACK_IMPORTED_MODULE_1__.CustomElement
435
489
  GetAttributes() {
436
490
  return this.attributes_;
437
491
  }
438
- HandleElementScopeCreated_(params, postAttributesCallback) {
492
+ HandleElementScopeCreatedPrefix_(params) {
439
493
  var _a;
440
494
  (_a = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.FindAncestor)(this, ancestor => ('AddNativeElement' in ancestor))) === null || _a === void 0 ? void 0 : _a.AddNativeElement(this);
441
- super.HandleElementScopeCreated_(params, postAttributesCallback);
495
+ super.HandleElementScopeCreatedPrefix_(params);
442
496
  }
443
497
  }
444
498
  function NativeElementCompact() {
@@ -508,12 +562,9 @@ class ResourceTargetElement extends _element__WEBPACK_IMPORTED_MODULE_2__.Custom
508
562
  LoadTargetResources() {
509
563
  return this.LoadResources();
510
564
  }
511
- HandleElementScopeCreated_(params, postAttributesCallback) {
512
- super.HandleElementScopeCreated_(params, () => {
513
- var _a;
514
- (_a = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.FindAncestor)(this, ancestor => ('AddResource' in ancestor))) === null || _a === void 0 ? void 0 : _a.AddResource(this);
515
- postAttributesCallback && postAttributesCallback();
516
- });
565
+ HandlePostAttributesProcessPostfix_() {
566
+ var _a;
567
+ (_a = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.FindAncestor)(this, ancestor => ('AddResource' in ancestor))) === null || _a === void 0 ? void 0 : _a.AddResource(this);
517
568
  }
518
569
  GetResourceLoadAttributes_() {
519
570
  return (this.attributes_ || undefined);
@@ -590,12 +641,9 @@ class ResourceElement extends _element__WEBPACK_IMPORTED_MODULE_2__.CustomElemen
590
641
  }
591
642
  return this.src;
592
643
  }
593
- HandleElementScopeCreated_(params, postAttributesCallback) {
594
- super.HandleElementScopeCreated_(params, () => {
595
- var _a;
596
- (_a = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.FindAncestor)(this, ancestor => ('AddResource' in ancestor))) === null || _a === void 0 ? void 0 : _a.AddResource(this);
597
- postAttributesCallback && postAttributesCallback();
598
- });
644
+ HandlePostAttributesProcessPostfix_() {
645
+ var _a;
646
+ (_a = (0,_benbraide_inlinejs__WEBPACK_IMPORTED_MODULE_0__.FindAncestor)(this, ancestor => ('AddResource' in ancestor))) === null || _a === void 0 ? void 0 : _a.AddResource(this);
599
647
  }
600
648
  ShouldLoadResources_() {
601
649
  return false;
@@ -651,7 +699,7 @@ function GetPropertyScope(target, name) {
651
699
  function Property(options) {
652
700
  return function (target, key, descriptor) {
653
701
  let name = '', setInitial = null;
654
- const initial = (options && 'initial' in options) ? options.initial : target[key];
702
+ const initial = (options && 'initial' in options) ? options.initial : undefined;
655
703
  if (initial !== undefined || (!descriptor && (options === null || options === void 0 ? void 0 : options.update))) {
656
704
  if ((options === null || options === void 0 ? void 0 : options.type) === 'boolean') {
657
705
  setInitial = (value, context) => {
@@ -934,27 +982,21 @@ __webpack_require__.r(__webpack_exports__);
934
982
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
935
983
  /* harmony export */ BaseComponent: () => (/* binding */ BaseComponent)
936
984
  /* harmony export */ });
937
- /* harmony import */ var _directive_create__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../directive/create */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/create.js");
938
- /* harmony import */ var _directive_dispatch__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../directive/dispatch */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/dispatch.js");
939
- /* harmony import */ var _directive_process__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../directive/process */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/process.js");
940
- /* harmony import */ var _global_get__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../global/get */ "./node_modules/@benbraide/inlinejs/lib/esm/global/get.js");
941
- /* harmony import */ var _journal_try__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../journal/try */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/try.js");
942
- /* harmony import */ var _proxy_root__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../proxy/root */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/root.js");
943
- /* harmony import */ var _stack__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../stack */ "./node_modules/@benbraide/inlinejs/lib/esm/stack.js");
944
- /* harmony import */ var _utilities_context_keys__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utilities/context-keys */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/context-keys.js");
945
- /* harmony import */ var _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../utilities/get-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-attribute.js");
946
- /* harmony import */ var _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../utilities/unique-markers */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/unique-markers.js");
947
- /* harmony import */ var _changes__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./changes */ "./node_modules/@benbraide/inlinejs/lib/esm/component/changes.js");
948
- /* harmony import */ var _changes_monitor__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./changes-monitor */ "./node_modules/@benbraide/inlinejs/lib/esm/component/changes-monitor.js");
949
- /* harmony import */ var _context__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./context */ "./node_modules/@benbraide/inlinejs/lib/esm/component/context.js");
950
- /* harmony import */ var _element_scope__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./element-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope.js");
951
- /* harmony import */ var _element_scope_id__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./element-scope-id */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope-id.js");
952
- /* harmony import */ var _find__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./find */ "./node_modules/@benbraide/inlinejs/lib/esm/component/find.js");
953
- /* harmony import */ var _get_config__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./get-config */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-config.js");
954
- /* harmony import */ var _scope__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/scope.js");
955
-
956
-
957
-
985
+ /* harmony import */ var _directive_process__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../directive/process */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/process.js");
986
+ /* harmony import */ var _global_get__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../global/get */ "./node_modules/@benbraide/inlinejs/lib/esm/global/get.js");
987
+ /* harmony import */ var _journal_try__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../journal/try */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/try.js");
988
+ /* harmony import */ var _proxy_root__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../proxy/root */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/root.js");
989
+ /* harmony import */ var _stack__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../stack */ "./node_modules/@benbraide/inlinejs/lib/esm/stack.js");
990
+ /* harmony import */ var _utilities_context_keys__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utilities/context-keys */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/context-keys.js");
991
+ /* harmony import */ var _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utilities/unique-markers */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/unique-markers.js");
992
+ /* harmony import */ var _changes__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./changes */ "./node_modules/@benbraide/inlinejs/lib/esm/component/changes.js");
993
+ /* harmony import */ var _changes_monitor__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./changes-monitor */ "./node_modules/@benbraide/inlinejs/lib/esm/component/changes-monitor.js");
994
+ /* harmony import */ var _context__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./context */ "./node_modules/@benbraide/inlinejs/lib/esm/component/context.js");
995
+ /* harmony import */ var _element_scope__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./element-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope.js");
996
+ /* harmony import */ var _element_scope_id__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./element-scope-id */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope-id.js");
997
+ /* harmony import */ var _find__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./find */ "./node_modules/@benbraide/inlinejs/lib/esm/component/find.js");
998
+ /* harmony import */ var _get_config__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./get-config */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-config.js");
999
+ /* harmony import */ var _scope__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/scope.js");
958
1000
 
959
1001
 
960
1002
 
@@ -970,7 +1012,7 @@ __webpack_require__.r(__webpack_exports__);
970
1012
 
971
1013
 
972
1014
 
973
- class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.ChangesMonitor {
1015
+ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_8__.ChangesMonitor {
974
1016
  constructor(id_, root_) {
975
1017
  super();
976
1018
  this.id_ = id_;
@@ -980,27 +1022,27 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
980
1022
  this.reactiveState_ = 'default';
981
1023
  this.name_ = '';
982
1024
  this.proxyAccessHandler_ = null;
983
- this.context_ = new _context__WEBPACK_IMPORTED_MODULE_12__.Context;
1025
+ this.context_ = new _context__WEBPACK_IMPORTED_MODULE_9__.Context;
984
1026
  this.scopes_ = {};
985
1027
  this.elementScopes_ = {};
986
1028
  this.proxies_ = {};
987
1029
  this.refs_ = {};
988
- this.currentScope_ = new _stack__WEBPACK_IMPORTED_MODULE_6__.Stack();
989
- this.selectionScopes_ = new _stack__WEBPACK_IMPORTED_MODULE_6__.Stack();
990
- this.uniqueMarkers_ = (0,_utilities_unique_markers__WEBPACK_IMPORTED_MODULE_9__.GetDefaultUniqueMarkers)();
1030
+ this.currentScope_ = new _stack__WEBPACK_IMPORTED_MODULE_4__.Stack();
1031
+ this.selectionScopes_ = new _stack__WEBPACK_IMPORTED_MODULE_4__.Stack();
1032
+ this.uniqueMarkers_ = (0,_utilities_unique_markers__WEBPACK_IMPORTED_MODULE_6__.GetDefaultUniqueMarkers)();
991
1033
  this.attributeObservers_ = new Array();
992
1034
  this.observers_ = {
993
1035
  intersections: {},
994
1036
  };
995
- this.changes_ = new _changes__WEBPACK_IMPORTED_MODULE_10__.Changes(this.id_);
996
- this.rootProxy_ = new _proxy_root__WEBPACK_IMPORTED_MODULE_5__.RootProxy(this.id_, {});
1037
+ this.changes_ = new _changes__WEBPACK_IMPORTED_MODULE_7__.Changes(this.id_);
1038
+ this.rootProxy_ = new _proxy_root__WEBPACK_IMPORTED_MODULE_3__.RootProxy(this.id_, {});
997
1039
  this.proxies_[this.rootProxy_.GetPath()] = this.rootProxy_;
998
- (0,_global_get__WEBPACK_IMPORTED_MODULE_3__.GetGlobal)().GetMutationObserver().Observe(this.root_, ({ added, removed, attributes }) => {
999
- const component = (0,_find__WEBPACK_IMPORTED_MODULE_15__.FindComponentById)(id_);
1040
+ (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().GetMutationObserver().Observe(this.root_, ({ added, removed, attributes }) => {
1041
+ const component = (0,_find__WEBPACK_IMPORTED_MODULE_12__.FindComponentById)(id_);
1000
1042
  if (!component) {
1001
1043
  return;
1002
1044
  }
1003
- const checklist = new Array(), dirRegex = (0,_global_get__WEBPACK_IMPORTED_MODULE_3__.GetGlobal)().GetConfig().GetDirectiveRegex();
1045
+ const checklist = new Array(), dirRegex = (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().GetConfig().GetDirectiveRegex();
1004
1046
  const filteredAttributes = attributes === null || attributes === void 0 ? void 0 : attributes.filter(attr => (attr.target instanceof HTMLElement));
1005
1047
  filteredAttributes === null || filteredAttributes === void 0 ? void 0 : filteredAttributes.forEach((attr) => {
1006
1048
  var _a;
@@ -1014,10 +1056,10 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1014
1056
  if (filteredAttributes) { //Alert listeners
1015
1057
  this.attributeObservers_.forEach((info) => {
1016
1058
  const list = filteredAttributes.filter(attr => (attr.target === info.element || info.element.contains(attr.target)));
1017
- (list.length != 0) && (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => info.callback(list));
1059
+ (list.length != 0) && (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => info.callback(list));
1018
1060
  });
1019
1061
  }
1020
- checklist.forEach(element => (0,_directive_process__WEBPACK_IMPORTED_MODULE_2__.ProcessDirectives)({ element,
1062
+ checklist.forEach(element => (0,_directive_process__WEBPACK_IMPORTED_MODULE_0__.ProcessDirectives)({ element,
1021
1063
  component: component,
1022
1064
  options: {
1023
1065
  checkTemplate: true,
@@ -1028,7 +1070,7 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1028
1070
  added === null || added === void 0 ? void 0 : added.filter(node => !(removed === null || removed === void 0 ? void 0 : removed.includes(node))).forEach((node) => {
1029
1071
  var _a;
1030
1072
  if (node instanceof HTMLElement && !component.FindElementScope(node)) {
1031
- (0,_directive_process__WEBPACK_IMPORTED_MODULE_2__.ProcessDirectives)({
1073
+ (0,_directive_process__WEBPACK_IMPORTED_MODULE_0__.ProcessDirectives)({
1032
1074
  component: component,
1033
1075
  element: node,
1034
1076
  options: {
@@ -1062,20 +1104,20 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1062
1104
  this.name_ = '';
1063
1105
  this.proxyAccessHandler_ = null;
1064
1106
  this.context_.Purge();
1065
- (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => this.changes_.Destroy());
1066
- Object.values(this.scopes_).forEach(scope => (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => scope.Destroy()));
1107
+ (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => this.changes_.Destroy());
1108
+ Object.values(this.scopes_).forEach(scope => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => scope.Destroy()));
1067
1109
  this.scopes_ = {};
1068
- Object.values(this.elementScopes_).forEach(scope => (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => scope.Destroy()));
1110
+ Object.values(this.elementScopes_).forEach(scope => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => scope.Destroy()));
1069
1111
  this.elementScopes_ = {};
1070
- (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => this.rootProxy_.Destroy());
1112
+ (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => this.rootProxy_.Destroy());
1071
1113
  this.refs_ = {};
1072
- Object.values(this.proxies_).forEach(proxy => (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => proxy.Destroy()));
1114
+ Object.values(this.proxies_).forEach(proxy => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => proxy.Destroy()));
1073
1115
  this.proxies_ = {};
1074
1116
  this.currentScope_.Purge();
1075
1117
  this.selectionScopes_.Purge();
1076
- this.uniqueMarkers_ = (0,_utilities_unique_markers__WEBPACK_IMPORTED_MODULE_9__.GetDefaultUniqueMarkers)();
1118
+ this.uniqueMarkers_ = (0,_utilities_unique_markers__WEBPACK_IMPORTED_MODULE_6__.GetDefaultUniqueMarkers)();
1077
1119
  this.attributeObservers_ = [];
1078
- Object.values(this.observers_.intersections).forEach(observer => (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => observer.Destroy()));
1120
+ Object.values(this.observers_.intersections).forEach(observer => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => observer.Destroy()));
1079
1121
  this.observers_.intersections = {};
1080
1122
  this.isDestroyed_ = true;
1081
1123
  this.isDestroying_ = false;
@@ -1088,13 +1130,13 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1088
1130
  this.NotifyListeners_('reactive-state', (this.reactiveState_ = state));
1089
1131
  }
1090
1132
  GetReactiveState() {
1091
- return ((this.reactiveState_ === 'default') ? (0,_get_config__WEBPACK_IMPORTED_MODULE_16__.GetConfig)().GetReactiveState() : this.reactiveState_);
1133
+ return ((this.reactiveState_ === 'default') ? (0,_get_config__WEBPACK_IMPORTED_MODULE_13__.GetConfig)().GetReactiveState() : this.reactiveState_);
1092
1134
  }
1093
1135
  GetId() {
1094
1136
  return this.id_;
1095
1137
  }
1096
1138
  GenerateUniqueId(prefix, suffix) {
1097
- const generated = (0,_utilities_unique_markers__WEBPACK_IMPORTED_MODULE_9__.GenerateUniqueId)(this.uniqueMarkers_, `Cmpnt<${this.id_}>.`, prefix, suffix);
1139
+ const generated = (0,_utilities_unique_markers__WEBPACK_IMPORTED_MODULE_6__.GenerateUniqueId)(this.uniqueMarkers_, `Cmpnt<${this.id_}>.`, prefix, suffix);
1098
1140
  this.NotifyListeners_('unique-markers', this.uniqueMarkers_);
1099
1141
  return generated;
1100
1142
  }
@@ -1121,7 +1163,7 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1121
1163
  if (root === this.root_ || !this.root_.contains(root)) {
1122
1164
  return null;
1123
1165
  }
1124
- const scope = new _scope__WEBPACK_IMPORTED_MODULE_17__.Scope(this.id_, this.GenerateUniqueId('scope_'), root);
1166
+ const scope = new _scope__WEBPACK_IMPORTED_MODULE_14__.Scope(this.id_, this.GenerateUniqueId('scope_'), root);
1125
1167
  this.scopes_[scope.GetId()] = scope;
1126
1168
  this.AddProxy(scope.GetProxy());
1127
1169
  this.NotifyListeners_('scopes', this.scopes_);
@@ -1157,7 +1199,7 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1157
1199
  return this.currentScope_.Peek();
1158
1200
  }
1159
1201
  InferScopeFrom(element) {
1160
- const scopeContext = (0,_global_get__WEBPACK_IMPORTED_MODULE_3__.GetGlobal)().PeekScopeContext();
1202
+ const scopeContext = (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().PeekScopeContext();
1161
1203
  if (scopeContext) {
1162
1204
  return scopeContext;
1163
1205
  }
@@ -1223,25 +1265,9 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1223
1265
  if (element !== this.root_ && !this.root_.contains(element)) {
1224
1266
  return null;
1225
1267
  }
1226
- const elementScope = new _element_scope__WEBPACK_IMPORTED_MODULE_13__.ElementScope(this.id_, this.GenerateUniqueId('elscope_'), element, (element === this.root_));
1227
- this.elementScopes_[elementScope.GetId()] = elementScope;
1228
- element[_element_scope_id__WEBPACK_IMPORTED_MODULE_14__.ElementScopeKey] = elementScope.GetId();
1229
- const processDirective = (name) => {
1230
- const info = (0,_utilities_get_attribute__WEBPACK_IMPORTED_MODULE_8__.FindFirstAttribute)(element, [(0,_get_config__WEBPACK_IMPORTED_MODULE_16__.GetConfig)().GetDirectiveName(name, false), (0,_get_config__WEBPACK_IMPORTED_MODULE_16__.GetConfig)().GetDirectiveName(name, true)]);
1231
- if (info) {
1232
- const directive = (0,_directive_create__WEBPACK_IMPORTED_MODULE_0__.CreateDirective)(info.name, info.value);
1233
- directive && (0,_directive_dispatch__WEBPACK_IMPORTED_MODULE_1__.DispatchDirective)(this, element, directive);
1234
- }
1235
- };
1236
- ['data', 'component', 'ref', 'locals', 'init'].forEach(dir => processDirective(dir));
1237
- elementScope.SetInitialized();
1238
- if ('OnElementScopeCreated' in element && typeof element.OnElementScopeCreated === 'function') {
1239
- (0,_journal_try__WEBPACK_IMPORTED_MODULE_4__.JournalTry)(() => element.OnElementScopeCreated({
1240
- componentId: this.id_,
1241
- component: this,
1242
- scope: elementScope,
1243
- }));
1244
- }
1268
+ const elementScope = new _element_scope__WEBPACK_IMPORTED_MODULE_10__.ElementScope(this.id_, this.GenerateUniqueId('elscope_'), element, element === this.root_, this, (scope) => {
1269
+ this.elementScopes_[scope.GetId()] = scope;
1270
+ });
1245
1271
  this.NotifyListeners_('element-scopes', this.elementScopes_);
1246
1272
  return elementScope;
1247
1273
  }
@@ -1253,9 +1279,9 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1253
1279
  if (typeof element === 'string') {
1254
1280
  return ((element in this.elementScopes_) ? this.elementScopes_[element] : null);
1255
1281
  }
1256
- const target = ((element === true) ? this.context_.Peek(_utilities_context_keys__WEBPACK_IMPORTED_MODULE_7__.ContextKeys.self) : ((element instanceof Node) ? element : this.root_));
1257
- if (target && _element_scope_id__WEBPACK_IMPORTED_MODULE_14__.ElementScopeKey in target && typeof target[_element_scope_id__WEBPACK_IMPORTED_MODULE_14__.ElementScopeKey] === 'string' && target[_element_scope_id__WEBPACK_IMPORTED_MODULE_14__.ElementScopeKey] in this.elementScopes_) {
1258
- return this.elementScopes_[target[_element_scope_id__WEBPACK_IMPORTED_MODULE_14__.ElementScopeKey]];
1282
+ const target = ((element === true) ? this.context_.Peek(_utilities_context_keys__WEBPACK_IMPORTED_MODULE_5__.ContextKeys.self) : ((element instanceof Node) ? element : this.root_));
1283
+ if (target && _element_scope_id__WEBPACK_IMPORTED_MODULE_11__.ElementScopeKey in target && typeof target[_element_scope_id__WEBPACK_IMPORTED_MODULE_11__.ElementScopeKey] === 'string' && target[_element_scope_id__WEBPACK_IMPORTED_MODULE_11__.ElementScopeKey] in this.elementScopes_) {
1284
+ return this.elementScopes_[target[_element_scope_id__WEBPACK_IMPORTED_MODULE_11__.ElementScopeKey]];
1259
1285
  }
1260
1286
  return null;
1261
1287
  }
@@ -1267,7 +1293,7 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1267
1293
  if (!shouldBubble || (!elementScope && typeof element === 'string')) {
1268
1294
  return null;
1269
1295
  }
1270
- const target = ((elementScope === null || elementScope === void 0 ? void 0 : elementScope.GetElement()) || ((element === true) ? this.context_.Peek(_utilities_context_keys__WEBPACK_IMPORTED_MODULE_7__.ContextKeys.self) : ((element instanceof Node) ? element : this.root_)));
1296
+ const target = ((elementScope === null || elementScope === void 0 ? void 0 : elementScope.GetElement()) || ((element === true) ? this.context_.Peek(_utilities_context_keys__WEBPACK_IMPORTED_MODULE_5__.ContextKeys.self) : ((element instanceof Node) ? element : this.root_)));
1271
1297
  if (!target) {
1272
1298
  return null;
1273
1299
  }
@@ -1275,11 +1301,11 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1275
1301
  return (ancestor ? this.FindElementLocal(ancestor, key, true) : null);
1276
1302
  }
1277
1303
  FindElementLocalValue(element, key, shouldBubble) {
1278
- const elementScope = this.FindElementScope(element), value = (elementScope ? elementScope.GetLocal(key) : (0,_global_get__WEBPACK_IMPORTED_MODULE_3__.GetGlobal)().CreateNothing());
1279
- if (!(0,_global_get__WEBPACK_IMPORTED_MODULE_3__.GetGlobal)().IsNothing(value) || !shouldBubble || (!elementScope && typeof element === 'string')) {
1304
+ const elementScope = this.FindElementScope(element), value = (elementScope ? elementScope.GetLocal(key) : (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().CreateNothing());
1305
+ if (!(0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().IsNothing(value) || !shouldBubble || (!elementScope && typeof element === 'string')) {
1280
1306
  return value;
1281
1307
  }
1282
- const target = ((elementScope === null || elementScope === void 0 ? void 0 : elementScope.GetElement()) || ((element === true) ? this.context_.Peek(_utilities_context_keys__WEBPACK_IMPORTED_MODULE_7__.ContextKeys.self) : ((element instanceof Node) ? element : this.root_)));
1308
+ const target = ((elementScope === null || elementScope === void 0 ? void 0 : elementScope.GetElement()) || ((element === true) ? this.context_.Peek(_utilities_context_keys__WEBPACK_IMPORTED_MODULE_5__.ContextKeys.self) : ((element instanceof Node) ? element : this.root_)));
1283
1309
  if (!target) {
1284
1310
  return value;
1285
1311
  }
@@ -1349,7 +1375,7 @@ class BaseComponent extends _changes_monitor__WEBPACK_IMPORTED_MODULE_11__.Chang
1349
1375
  };
1350
1376
  }
1351
1377
  GetGlobal() {
1352
- return (0,_global_get__WEBPACK_IMPORTED_MODULE_3__.GetGlobal)();
1378
+ return (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)();
1353
1379
  }
1354
1380
  }
1355
1381
 
@@ -1802,6 +1828,18 @@ __webpack_require__.r(__webpack_exports__);
1802
1828
  /* harmony import */ var _event__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./event */ "./node_modules/@benbraide/inlinejs/lib/esm/component/event.js");
1803
1829
  /* harmony import */ var _cache__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./cache */ "./node_modules/@benbraide/inlinejs/lib/esm/component/cache.js");
1804
1830
  /* harmony import */ var _find__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./find */ "./node_modules/@benbraide/inlinejs/lib/esm/component/find.js");
1831
+ /* harmony import */ var _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../utilities/get-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-attribute.js");
1832
+ /* harmony import */ var _get_config__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./get-config */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-config.js");
1833
+ /* harmony import */ var _directive_create__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../directive/create */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/create.js");
1834
+ /* harmony import */ var _directive_dispatch__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../directive/dispatch */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/dispatch.js");
1835
+ /* harmony import */ var _utilities_template__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../utilities/template */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/template.js");
1836
+ /* harmony import */ var _utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../utilities/is-custom-element */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js");
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+
1805
1843
 
1806
1844
 
1807
1845
 
@@ -1811,7 +1849,7 @@ __webpack_require__.r(__webpack_exports__);
1811
1849
 
1812
1850
 
1813
1851
  class ElementScope extends _changes_monitor__WEBPACK_IMPORTED_MODULE_3__.ChangesMonitor {
1814
- constructor(componentId_, id_, element_, isRoot_) {
1852
+ constructor(componentId_, id_, element_, isRoot_, component, callback) {
1815
1853
  super();
1816
1854
  this.componentId_ = componentId_;
1817
1855
  this.id_ = id_;
@@ -1837,6 +1875,26 @@ class ElementScope extends _changes_monitor__WEBPACK_IMPORTED_MODULE_3__.Changes
1837
1875
  isMarked: false,
1838
1876
  isDestroyed: false,
1839
1877
  };
1878
+ element_[_element_scope_id__WEBPACK_IMPORTED_MODULE_4__.ElementScopeKey] = id_;
1879
+ callback === null || callback === void 0 ? void 0 : callback(this);
1880
+ const processDirective = (names) => {
1881
+ const info = (0,_utilities_get_attribute__WEBPACK_IMPORTED_MODULE_8__.FindFirstAttribute)(element_, names);
1882
+ if (info) {
1883
+ const directive = (0,_directive_create__WEBPACK_IMPORTED_MODULE_10__.CreateDirective)(info.name, info.value);
1884
+ directive && (0,_directive_dispatch__WEBPACK_IMPORTED_MODULE_11__.DispatchDirective)(component || componentId_, element_, directive);
1885
+ }
1886
+ };
1887
+ const config = (0,_get_config__WEBPACK_IMPORTED_MODULE_9__.GetConfig)();
1888
+ const knownDirectives = ['data', 'component', 'ref', 'locals', 'init'].map(name => [config.GetDirectiveName(name, false), config.GetDirectiveName(name, true)]);
1889
+ knownDirectives.forEach(processDirective);
1890
+ this.isInitialized_ = true;
1891
+ if ((0,_utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_13__.IsCustomElement)(element_)) {
1892
+ (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => element_.OnElementScopeCreated({
1893
+ componentId: componentId_,
1894
+ component: component || null,
1895
+ scope: this,
1896
+ }));
1897
+ }
1840
1898
  }
1841
1899
  SetInitialized() {
1842
1900
  this.isInitialized_ = true;
@@ -2002,24 +2060,36 @@ class ElementScope extends _changes_monitor__WEBPACK_IMPORTED_MODULE_3__.Changes
2002
2060
  Destroy(markOnly) {
2003
2061
  if (this.state_.isDestroyed)
2004
2062
  return;
2005
- this.state_.isMarked = true;
2006
- this.callbacks_.marked.splice(0).forEach(callback => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(callback));
2007
- if (!(this.element_ instanceof HTMLTemplateElement)) {
2008
- const component = (0,_find__WEBPACK_IMPORTED_MODULE_7__.FindComponentById)(this.componentId_);
2009
- if (component) {
2010
- this.DestroyChildren_(component, this.element_, (markOnly || false));
2063
+ const isCustomElement = (0,_utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_13__.IsCustomElement)(this.element_);
2064
+ const isTemplate = (0,_utilities_template__WEBPACK_IMPORTED_MODULE_12__.IsTemplate)(this.element_);
2065
+ if (!this.state_.isMarked) {
2066
+ this.state_.isMarked = true;
2067
+ this.callbacks_.marked.splice(0).forEach(callback => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(callback));
2068
+ if (isCustomElement) {
2069
+ (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => this.element_.OnElementScopeMarked(this));
2070
+ }
2071
+ if (markOnly && !isTemplate) {
2072
+ const component = (0,_find__WEBPACK_IMPORTED_MODULE_7__.FindComponentById)(this.componentId_);
2073
+ component && this.DestroyChildren_(component, this.element_, true);
2011
2074
  }
2012
2075
  }
2013
2076
  if (markOnly)
2014
2077
  return;
2078
+ this.state_.isDestroyed = true;
2015
2079
  this.queuedAttributeChanges_ = null;
2016
2080
  this.callbacks_.uninit.splice(0).forEach(callback => (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(callback));
2081
+ if (isCustomElement) {
2082
+ (0,_journal_try__WEBPACK_IMPORTED_MODULE_2__.JournalTry)(() => this.element_.OnElementScopeDestroyed(this));
2083
+ }
2084
+ if (!isTemplate) {
2085
+ const component = (0,_find__WEBPACK_IMPORTED_MODULE_7__.FindComponentById)(this.componentId_);
2086
+ component && this.DestroyChildren_(component, this.element_, false);
2087
+ }
2017
2088
  this.callbacks_.post.splice(0);
2018
2089
  this.callbacks_.treeChange.splice(0);
2019
2090
  this.callbacks_.attributeChange.splice(0);
2020
2091
  this.data_ = {};
2021
2092
  this.locals_ = {};
2022
- this.state_.isDestroyed = true;
2023
2093
  (0,_event__WEBPACK_IMPORTED_MODULE_5__.UnbindOutsideEvent)(this.element_);
2024
2094
  (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().GetMutationObserver().Unobserve(this.element_);
2025
2095
  const component = (0,_find__WEBPACK_IMPORTED_MODULE_7__.FindComponentById)(this.componentId_);
@@ -3323,9 +3393,11 @@ __webpack_require__.r(__webpack_exports__);
3323
3393
  /* harmony import */ var _component_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../component/find */ "./node_modules/@benbraide/inlinejs/lib/esm/component/find.js");
3324
3394
  /* harmony import */ var _global_get__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../global/get */ "./node_modules/@benbraide/inlinejs/lib/esm/global/get.js");
3325
3395
  /* harmony import */ var _journal_error__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../journal/error */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/error.js");
3326
- /* harmony import */ var _utilities_template__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utilities/template */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/template.js");
3327
- /* harmony import */ var _dispatch__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./dispatch */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/dispatch.js");
3328
- /* harmony import */ var _traverse__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./traverse */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/traverse.js");
3396
+ /* harmony import */ var _utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utilities/is-custom-element */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js");
3397
+ /* harmony import */ var _utilities_template__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utilities/template */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/template.js");
3398
+ /* harmony import */ var _dispatch__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./dispatch */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/dispatch.js");
3399
+ /* harmony import */ var _traverse__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./traverse */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/traverse.js");
3400
+
3329
3401
 
3330
3402
 
3331
3403
 
@@ -3335,7 +3407,7 @@ __webpack_require__.r(__webpack_exports__);
3335
3407
  function CheckElement(element, { checkTemplate = true, checkDocument = true }) {
3336
3408
  return ((element === null || element === void 0 ? void 0 : element.nodeType) === 1 &&
3337
3409
  (!checkDocument || document.contains(element)) &&
3338
- (!checkTemplate || !(0,_utilities_template__WEBPACK_IMPORTED_MODULE_3__.IsInsideTemplate)(element)));
3410
+ (!checkTemplate || !(0,_utilities_template__WEBPACK_IMPORTED_MODULE_4__.IsInsideTemplate)(element)));
3339
3411
  }
3340
3412
  function ProcessDirectives({ component, element, options = {}, proxyAccessHandler }) {
3341
3413
  if (!CheckElement(element, options)) { //Check failed -- ignore
@@ -3346,10 +3418,14 @@ function ProcessDirectives({ component, element, options = {}, proxyAccessHandle
3346
3418
  (0,_journal_error__WEBPACK_IMPORTED_MODULE_2__.JournalError)('Failed to find component.', 'InlineJS.ProcessDirectives', element);
3347
3419
  return false;
3348
3420
  }
3421
+ if (resolvedComponent.IsDestroyed()) {
3422
+ (0,_journal_error__WEBPACK_IMPORTED_MODULE_2__.JournalError)('Component is destroyed.', 'InlineJS.ProcessDirectives', element);
3423
+ return false;
3424
+ }
3349
3425
  let repeats = 0;
3350
- (0,_traverse__WEBPACK_IMPORTED_MODULE_5__.TraverseDirectives)({ element, proxyAccessHandler,
3426
+ (0,_traverse__WEBPACK_IMPORTED_MODULE_6__.TraverseDirectives)({ element, proxyAccessHandler,
3351
3427
  callback: (directive) => {
3352
- if ((0,_dispatch__WEBPACK_IMPORTED_MODULE_4__.DispatchDirective)(component, element, directive, repeats)) {
3428
+ if ((0,_dispatch__WEBPACK_IMPORTED_MODULE_5__.DispatchDirective)(component, element, directive, repeats)) {
3353
3429
  element.removeAttribute(directive.meta.view.original);
3354
3430
  ++repeats; //Prevent multiple element scope initialization attempts
3355
3431
  }
@@ -3360,20 +3436,20 @@ function ProcessDirectives({ component, element, options = {}, proxyAccessHandle
3360
3436
  contextElement: element,
3361
3437
  }),
3362
3438
  });
3363
- (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().DispatchTextContentProcessing({
3439
+ !(0,_utilities_template__WEBPACK_IMPORTED_MODULE_4__.IsTemplate)(element) && (0,_global_get__WEBPACK_IMPORTED_MODULE_1__.GetGlobal)().DispatchTextContentProcessing({
3364
3440
  componentId: resolvedComponent.GetId(),
3365
3441
  component: resolvedComponent,
3366
3442
  contextElement: element,
3367
3443
  proxyAccessHandler,
3368
3444
  });
3369
- if ('OnElementScopeCreated' in element && typeof element.OnElementScopeCreated === 'function') {
3445
+ if ((0,_utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_3__.IsCustomElement)(element)) { // Element is defined as custom
3370
3446
  resolvedComponent.CreateElementScope(element);
3371
3447
  }
3372
3448
  const elementScope = resolvedComponent.FindElementScope(element);
3373
3449
  elementScope === null || elementScope === void 0 ? void 0 : elementScope.ExecutePostAttributesProcessCallbacks();
3374
3450
  const componentId = resolvedComponent.GetId(), processChildren = () => {
3375
3451
  const reResolvedComponent = (0,_component_find__WEBPACK_IMPORTED_MODULE_0__.FindComponentById)(componentId);
3376
- if (reResolvedComponent && !reResolvedComponent.IsDestroyed() && !options.ignoreChildren && !(0,_utilities_template__WEBPACK_IMPORTED_MODULE_3__.IsTemplate)(element)) { //Process children
3452
+ if (reResolvedComponent && !reResolvedComponent.IsDestroyed() && !options.ignoreChildren && !(0,_utilities_template__WEBPACK_IMPORTED_MODULE_4__.IsTemplate)(element)) { //Process children
3377
3453
  reResolvedComponent.PushSelectionScope();
3378
3454
  const childOptions = {
3379
3455
  checkTemplate: false,
@@ -3733,7 +3809,7 @@ function GenerateFunctionFromString({ componentId, contextElement, expression, d
3733
3809
  if (!func && !(func = GenerateVoidFunction(expression, componentId, true))) { //Failed to generate function
3734
3810
  return nullHandler;
3735
3811
  }
3736
- const runFunction = (handler, target, params, contexts, forwardSyntaxErrors = true, waitMessage) => {
3812
+ const runFunction = (target, handler, params, contexts, forwardSyntaxErrors = true, waitMessage) => {
3737
3813
  var _a;
3738
3814
  const component = (0,_component_find__WEBPACK_IMPORTED_MODULE_1__.FindComponentById)(componentId), proxy = component === null || component === void 0 ? void 0 : component.GetRootProxy().GetNative();
3739
3815
  if (!proxy || ((_a = component === null || component === void 0 ? void 0 : component.FindElementScope(contextElement)) === null || _a === void 0 ? void 0 : _a.IsDestroyed())) {
@@ -3780,8 +3856,16 @@ function GenerateFunctionFromString({ componentId, contextElement, expression, d
3780
3856
  }
3781
3857
  };
3782
3858
  return (handler, params = [], contexts, waitMessage) => {
3859
+ var _a;
3860
+ if (!func || (contextElement && !contextElement.isConnected)) {
3861
+ return nullHandler(handler);
3862
+ }
3863
+ const scope = (_a = (0,_component_find__WEBPACK_IMPORTED_MODULE_1__.FindComponentById)(componentId)) === null || _a === void 0 ? void 0 : _a.FindElementScope(contextElement);
3864
+ if (scope === null || scope === void 0 ? void 0 : scope.IsMarked()) {
3865
+ return nullHandler(handler);
3866
+ }
3783
3867
  try {
3784
- return runFunction(handler, func.bind(contextElement), (params || []), (contexts || {}), undefined, waitMessage);
3868
+ return runFunction(func.bind(contextElement), handler, (params || []), (contexts || {}), undefined, waitMessage);
3785
3869
  }
3786
3870
  catch (err) {
3787
3871
  if (err instanceof SyntaxError && !voidGenerated) {
@@ -3790,7 +3874,7 @@ function GenerateFunctionFromString({ componentId, contextElement, expression, d
3790
3874
  if (!func) {
3791
3875
  return nullHandler(handler);
3792
3876
  }
3793
- return runFunction(handler, func.bind(contextElement), (params || []), (contexts || {}), false);
3877
+ return runFunction(func.bind(contextElement), handler, (params || []), (contexts || {}), false);
3794
3878
  }
3795
3879
  else {
3796
3880
  (0,_journal_error__WEBPACK_IMPORTED_MODULE_3__.JournalError)(err, `InlineJs.Region<${componentId}>.RunFunction('${expression}')`);
@@ -4318,6 +4402,8 @@ class Config {
4318
4402
  this.booleanAttributes_ = new Array('allowfullscreen', 'allowpaymentrequest', 'async', 'autofocus', 'autoplay', 'checked', 'controls', 'default', 'defer', 'disabled', 'formnovalidate', 'hidden', 'ismap', 'itemscope', 'loop', 'multiple', 'muted', 'nomodule', 'novalidate', 'open', 'playsinline', 'readonly', 'required', 'reversed', 'selected');
4319
4403
  this.options_ = (0,_utilities_merge_objects__WEBPACK_IMPORTED_MODULE_1__.MergeObjects)(Object.assign({}, (0,_utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_0__.GetGlobalScope)('config', true)), (0,_utilities_merge_objects__WEBPACK_IMPORTED_MODULE_1__.MergeObjects)(this.options_, this.defaultOptions_));
4320
4404
  this.UpdateDirectiveRegex_();
4405
+ this.options_.directivePrefix && (this.options_.directivePrefix = this.options_.directivePrefix.replace(/\-/g, ''));
4406
+ this.options_.elementPrefix && (this.options_.directivePrefix = this.options_.elementPrefix.replace(/\-/g, ''));
4321
4407
  if (!this.options_.directiveNameBuilder) {
4322
4408
  const options = this.options_, defaultOptions = this.defaultOptions_;
4323
4409
  options.directiveNameBuilder = ((name, addDataPrefix = false) => {
@@ -4330,27 +4416,36 @@ class Config {
4330
4416
  return this.options_.appName || '';
4331
4417
  }
4332
4418
  SetDirectivePrefix(value) {
4333
- this.options_.directivePrefix = value;
4419
+ this.options_.directivePrefix = value.replace(/\-/g, '');
4334
4420
  this.UpdateDirectiveRegex_();
4335
4421
  }
4336
4422
  GetDirectivePrefix() {
4337
4423
  return this.options_.directivePrefix || this.defaultOptions_.directivePrefix || 'hx';
4338
4424
  }
4339
- SetElementPrefix(value) {
4340
- this.options_.elementPrefix = value;
4341
- }
4342
- GetElementPrefix() {
4343
- return this.options_.elementPrefix || this.GetDirectivePrefix();
4344
- }
4345
4425
  GetDirectiveRegex() {
4346
4426
  return this.options_.directiveRegex || this.UpdateDirectiveRegex_();
4347
4427
  }
4348
4428
  GetDirectiveName(name, addDataPrefix) {
4349
4429
  return (this.options_.directiveNameBuilder ? this.options_.directiveNameBuilder(name, addDataPrefix) : name);
4350
4430
  }
4431
+ MatchesDirective(name) {
4432
+ return this.GetDirectiveRegex().test(name);
4433
+ }
4434
+ SetElementPrefix(value) {
4435
+ this.options_.elementPrefix = value.replace(/\-/g, '');
4436
+ }
4437
+ GetElementPrefix() {
4438
+ return this.options_.elementPrefix || this.GetDirectivePrefix();
4439
+ }
4440
+ GetElementRegex() {
4441
+ return this.options_.elementRegex || this.UpdateElementRegex_();
4442
+ }
4351
4443
  GetElementName(name) {
4352
4444
  return `${this.GetElementPrefix()}-${name}`;
4353
4445
  }
4446
+ MatchesElement(name) {
4447
+ return this.GetElementRegex().test(name);
4448
+ }
4354
4449
  AddKeyEventMap(key, target) {
4355
4450
  this.keyMap_[key] = target;
4356
4451
  }
@@ -4381,15 +4476,18 @@ class Config {
4381
4476
  GetUseGlobalWindow() {
4382
4477
  return this.options_.useGlobalWindow || false;
4383
4478
  }
4384
- UpdateDirectiveRegex_() {
4385
- return (this.options_.directiveRegex = new RegExp(`^(data-)?${this.GetDirectivePrefix()}-(.+)$`));
4386
- }
4387
4479
  SetWrapScopedFunctions(value) {
4388
4480
  this.options_.wrapScopedFunctions = value;
4389
4481
  }
4390
4482
  GetWrapScopedFunctions() {
4391
4483
  return this.options_.wrapScopedFunctions || false;
4392
4484
  }
4485
+ UpdateDirectiveRegex_() {
4486
+ return (this.options_.directiveRegex = new RegExp(`^(data-)?${this.GetDirectivePrefix()}-(.+)$`));
4487
+ }
4488
+ UpdateElementRegex_() {
4489
+ return (this.options_.elementRegex = new RegExp(`^${this.GetElementPrefix()}-(.+)$`));
4490
+ }
4393
4491
  }
4394
4492
 
4395
4493
 
@@ -4672,191 +4770,192 @@ class NativeFetchConcept {
4672
4770
 
4673
4771
  __webpack_require__.r(__webpack_exports__);
4674
4772
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4675
- /* harmony export */ AddChanges: () => (/* reexport safe */ _proxy_add_changes__WEBPACK_IMPORTED_MODULE_62__.AddChanges),
4676
- /* harmony export */ AddDirectiveExpansionRule: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_115__.AddDirectiveExpansionRule),
4677
- /* harmony export */ AddDirectiveHandler: () => (/* reexport safe */ _directive_add__WEBPACK_IMPORTED_MODULE_110__.AddDirectiveHandler),
4678
- /* harmony export */ AddMagicHandler: () => (/* reexport safe */ _magic_add__WEBPACK_IMPORTED_MODULE_125__.AddMagicHandler),
4679
- /* harmony export */ AddOutsideEventExcept: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_87__.AddOutsideEventExcept),
4680
- /* harmony export */ AddOutsideEventListener: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_87__.AddOutsideEventListener),
4681
- /* harmony export */ ApplyDirectiveExpansionRules: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_115__.ApplyDirectiveExpansionRules),
4682
- /* harmony export */ AreObjects: () => (/* reexport safe */ _utilities_is_object__WEBPACK_IMPORTED_MODULE_47__.AreObjects),
4683
- /* harmony export */ AttributeInterpolator: () => (/* reexport safe */ _global_interpolation__WEBPACK_IMPORTED_MODULE_104__.AttributeInterpolator),
4684
- /* harmony export */ AutoBootstrap: () => (/* reexport safe */ _bootstrap_auto__WEBPACK_IMPORTED_MODULE_109__.AutoBootstrap),
4685
- /* harmony export */ BaseComponent: () => (/* reexport safe */ _component_base__WEBPACK_IMPORTED_MODULE_79__.BaseComponent),
4686
- /* harmony export */ BaseGlobal: () => (/* reexport safe */ _global_base__WEBPACK_IMPORTED_MODULE_100__.BaseGlobal),
4687
- /* harmony export */ BeginsWith: () => (/* reexport safe */ _utilities_begins_with__WEBPACK_IMPORTED_MODULE_31__.BeginsWith),
4688
- /* harmony export */ BindDirectiveExpansionRule: () => (/* reexport safe */ _expansion_bind__WEBPACK_IMPORTED_MODULE_129__.BindDirectiveExpansionRule),
4689
- /* harmony export */ BindEvent: () => (/* reexport safe */ _directive_event__WEBPACK_IMPORTED_MODULE_114__.BindEvent),
4690
- /* harmony export */ BootstrapAndAttach: () => (/* reexport safe */ _bootstrap_attach__WEBPACK_IMPORTED_MODULE_108__.BootstrapAndAttach),
4691
- /* harmony export */ BuildGetterProxyOptions: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_64__.BuildGetterProxyOptions),
4692
- /* harmony export */ BuildIntersectionOptions: () => (/* reexport safe */ _observers_intersection_options__WEBPACK_IMPORTED_MODULE_134__.BuildIntersectionOptions),
4693
- /* harmony export */ BuildProxyOptions: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_64__.BuildProxyOptions),
4694
- /* harmony export */ CallIfFunction: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_73__.CallIfFunction),
4695
- /* harmony export */ Changes: () => (/* reexport safe */ _component_changes__WEBPACK_IMPORTED_MODULE_81__.Changes),
4696
- /* harmony export */ ChildProxy: () => (/* reexport safe */ _proxy_child__WEBPACK_IMPORTED_MODULE_63__.ChildProxy),
4697
- /* harmony export */ ClassDirectiveExpansionRule: () => (/* reexport safe */ _expansion_class__WEBPACK_IMPORTED_MODULE_130__.ClassDirectiveExpansionRule),
4698
- /* harmony export */ ComponentCacheKey: () => (/* reexport safe */ _component_key__WEBPACK_IMPORTED_MODULE_94__.ComponentCacheKey),
4699
- /* harmony export */ Config: () => (/* reexport safe */ _global_config__WEBPACK_IMPORTED_MODULE_101__.Config),
4700
- /* harmony export */ ConsiderRange: () => (/* reexport safe */ _utilities_range__WEBPACK_IMPORTED_MODULE_54__.ConsiderRange),
4701
- /* harmony export */ Context: () => (/* reexport safe */ _component_context__WEBPACK_IMPORTED_MODULE_82__.Context),
4702
- /* harmony export */ ContextKeys: () => (/* reexport safe */ _utilities_context_keys__WEBPACK_IMPORTED_MODULE_34__.ContextKeys),
4703
- /* harmony export */ CreateAnimationLoop: () => (/* reexport safe */ _utilities_loop__WEBPACK_IMPORTED_MODULE_48__.CreateAnimationLoop),
4704
- /* harmony export */ CreateChildProxy: () => (/* reexport safe */ _proxy_create_child__WEBPACK_IMPORTED_MODULE_65__.CreateChildProxy),
4705
- /* harmony export */ CreateDirective: () => (/* reexport safe */ _directive_create__WEBPACK_IMPORTED_MODULE_112__.CreateDirective),
4706
- /* harmony export */ CreateDirectiveExpansionRule: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_115__.CreateDirectiveExpansionRule),
4707
- /* harmony export */ CreateDirectiveHandlerCallback: () => (/* reexport safe */ _directive_callback__WEBPACK_IMPORTED_MODULE_111__.CreateDirectiveHandlerCallback),
4708
- /* harmony export */ CreateGlobal: () => (/* reexport safe */ _global_create__WEBPACK_IMPORTED_MODULE_102__.CreateGlobal),
4709
- /* harmony export */ CreateInplaceProxy: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_64__.CreateInplaceProxy),
4710
- /* harmony export */ CreateLoop: () => (/* reexport safe */ _utilities_loop__WEBPACK_IMPORTED_MODULE_48__.CreateLoop),
4711
- /* harmony export */ CreateMagicHandlerCallback: () => (/* reexport safe */ _magic_callback__WEBPACK_IMPORTED_MODULE_126__.CreateMagicHandlerCallback),
4712
- /* harmony export */ CreateReadonlyProxy: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_64__.CreateReadonlyProxy),
4713
- /* harmony export */ DecodeAttribute: () => (/* reexport safe */ _utilities_decode_attribute__WEBPACK_IMPORTED_MODULE_35__.DecodeAttribute),
4714
- /* harmony export */ DecodeValue: () => (/* reexport safe */ _utilities_decode_value__WEBPACK_IMPORTED_MODULE_36__.DecodeValue),
4715
- /* harmony export */ DeepCopy: () => (/* reexport safe */ _utilities_deep_copy__WEBPACK_IMPORTED_MODULE_37__.DeepCopy),
4716
- /* harmony export */ DefaultTransitionDelay: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.DefaultTransitionDelay),
4717
- /* harmony export */ DefaultTransitionDuration: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.DefaultTransitionDuration),
4718
- /* harmony export */ DefaultTransitionInitialDelay: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.DefaultTransitionInitialDelay),
4719
- /* harmony export */ DefaultTransitionRepeats: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.DefaultTransitionRepeats),
4720
- /* harmony export */ DeleteProxyProp: () => (/* reexport safe */ _proxy_delete_prop__WEBPACK_IMPORTED_MODULE_66__.DeleteProxyProp),
4721
- /* harmony export */ DirectiveManager: () => (/* reexport safe */ _directive_manager__WEBPACK_IMPORTED_MODULE_120__.DirectiveManager),
4722
- /* harmony export */ DisableProxyAction: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_64__.DisableProxyAction),
4723
- /* harmony export */ DispatchDirective: () => (/* reexport safe */ _directive_dispatch__WEBPACK_IMPORTED_MODULE_113__.DispatchDirective),
4724
- /* harmony export */ ElementScope: () => (/* reexport safe */ _component_element_scope__WEBPACK_IMPORTED_MODULE_85__.ElementScope),
4725
- /* harmony export */ ElementScopeKey: () => (/* reexport safe */ _component_element_scope_id__WEBPACK_IMPORTED_MODULE_86__.ElementScopeKey),
4726
- /* harmony export */ EncodeAttribute: () => (/* reexport safe */ _utilities_encode_attribute__WEBPACK_IMPORTED_MODULE_38__.EncodeAttribute),
4727
- /* harmony export */ EncodeValue: () => (/* reexport safe */ _utilities_encode_value__WEBPACK_IMPORTED_MODULE_39__.EncodeValue),
4728
- /* harmony export */ EndsWith: () => (/* reexport safe */ _utilities_ends_with__WEBPACK_IMPORTED_MODULE_40__.EndsWith),
4729
- /* harmony export */ EvaluateLater: () => (/* reexport safe */ _evaluator_evaluate_later__WEBPACK_IMPORTED_MODULE_72__.EvaluateLater),
4730
- /* harmony export */ EvaluateMagicProperty: () => (/* reexport safe */ _magic_evaluate__WEBPACK_IMPORTED_MODULE_127__.EvaluateMagicProperty),
4731
- /* harmony export */ ExtractDuration: () => (/* reexport safe */ _directive_options__WEBPACK_IMPORTED_MODULE_121__.ExtractDuration),
4732
- /* harmony export */ FindAncestor: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_41__.FindAncestor),
4733
- /* harmony export */ FindAncestorByAttribute: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_41__.FindAncestorByAttribute),
4734
- /* harmony export */ FindAncestorByAttributeValue: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_41__.FindAncestorByAttributeValue),
4735
- /* harmony export */ FindAncestorByClass: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_41__.FindAncestorByClass),
4736
- /* harmony export */ FindAncestorByTagName: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_41__.FindAncestorByTagName),
4737
- /* harmony export */ FindCacheValue: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_32__.FindCacheValue),
4738
- /* harmony export */ FindComponentByCallback: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_88__.FindComponentByCallback),
4739
- /* harmony export */ FindComponentById: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_88__.FindComponentById),
4740
- /* harmony export */ FindComponentByName: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_88__.FindComponentByName),
4741
- /* harmony export */ FindComponentByRoot: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_88__.FindComponentByRoot),
4742
- /* harmony export */ FindFirstAttribute: () => (/* reexport safe */ _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_42__.FindFirstAttribute),
4743
- /* harmony export */ FindFirstAttributeValue: () => (/* reexport safe */ _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_42__.FindFirstAttributeValue),
4744
- /* harmony export */ FlattenDirective: () => (/* reexport safe */ _directive_flatten__WEBPACK_IMPORTED_MODULE_116__.FlattenDirective),
4745
- /* harmony export */ ForwardEvent: () => (/* reexport safe */ _directive_event__WEBPACK_IMPORTED_MODULE_114__.ForwardEvent),
4746
- /* harmony export */ Future: () => (/* reexport safe */ _values_future__WEBPACK_IMPORTED_MODULE_27__.Future),
4747
- /* harmony export */ GenerateFunctionFromString: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_73__.GenerateFunctionFromString),
4748
- /* harmony export */ GenerateUniqueId: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_61__.GenerateUniqueId),
4749
- /* harmony export */ GenerateValueReturningFunction: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_73__.GenerateValueReturningFunction),
4750
- /* harmony export */ GenerateVoidFunction: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_73__.GenerateVoidFunction),
4751
- /* harmony export */ GenericProxy: () => (/* reexport safe */ _proxy_generic__WEBPACK_IMPORTED_MODULE_67__.GenericProxy),
4752
- /* harmony export */ GetAttribute: () => (/* reexport safe */ _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_42__.GetAttribute),
4753
- /* harmony export */ GetCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_32__.GetCache),
4754
- /* harmony export */ GetConfig: () => (/* reexport safe */ _component_get_config__WEBPACK_IMPORTED_MODULE_89__.GetConfig),
4755
- /* harmony export */ GetDefaultCacheValue: () => (/* reexport safe */ _component_cache__WEBPACK_IMPORTED_MODULE_80__.GetDefaultCacheValue),
4756
- /* harmony export */ GetDefaultUniqueMarkers: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_61__.GetDefaultUniqueMarkers),
4757
- /* harmony export */ GetDirectiveValue: () => (/* reexport safe */ _directive_get_value__WEBPACK_IMPORTED_MODULE_117__.GetDirectiveValue),
4758
- /* harmony export */ GetElementScopeId: () => (/* reexport safe */ _component_element_scope_id__WEBPACK_IMPORTED_MODULE_86__.GetElementScopeId),
4759
- /* harmony export */ GetElementScopeIdWithElement: () => (/* reexport safe */ _component_element_scope_id__WEBPACK_IMPORTED_MODULE_86__.GetElementScopeIdWithElement),
4760
- /* harmony export */ GetGlobal: () => (/* reexport safe */ _global_get__WEBPACK_IMPORTED_MODULE_103__.GetGlobal),
4761
- /* harmony export */ GetGlobalScope: () => (/* reexport safe */ _utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_43__.GetGlobalScope),
4762
- /* harmony export */ GetLocal: () => (/* reexport safe */ _component_get_local__WEBPACK_IMPORTED_MODULE_90__.GetLocal),
4763
- /* harmony export */ GetOrCreateGlobal: () => (/* reexport safe */ _global_create__WEBPACK_IMPORTED_MODULE_102__.GetOrCreateGlobal),
4764
- /* harmony export */ GetProxyProp: () => (/* reexport safe */ _proxy_get_prop__WEBPACK_IMPORTED_MODULE_68__.GetProxyProp),
4765
- /* harmony export */ GetTarget: () => (/* reexport safe */ _utilities_get_target__WEBPACK_IMPORTED_MODULE_44__.GetTarget),
4766
- /* harmony export */ GetTargets: () => (/* reexport safe */ _utilities_get_target__WEBPACK_IMPORTED_MODULE_44__.GetTargets),
4767
- /* harmony export */ GlobalCreatedEvent: () => (/* reexport safe */ _global_key__WEBPACK_IMPORTED_MODULE_106__.GlobalCreatedEvent),
4768
- /* harmony export */ IncrementUniqueMarkers: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_61__.IncrementUniqueMarkers),
4769
- /* harmony export */ InferComponent: () => (/* reexport safe */ _component_infer__WEBPACK_IMPORTED_MODULE_92__.InferComponent),
4770
- /* harmony export */ InitCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_32__.InitCache),
4771
- /* harmony export */ InitComponentCache: () => (/* reexport safe */ _component_cache__WEBPACK_IMPORTED_MODULE_80__.InitComponentCache),
4772
- /* harmony export */ InitJITProxy: () => (/* reexport safe */ _proxy_jit__WEBPACK_IMPORTED_MODULE_69__.InitJITProxy),
4773
- /* harmony export */ InitializeDev: () => (/* reexport safe */ _initialization_dev__WEBPACK_IMPORTED_MODULE_141__.InitializeDev),
4774
- /* harmony export */ InitializeGlobal: () => (/* reexport safe */ _initialization_global__WEBPACK_IMPORTED_MODULE_142__.InitializeGlobal),
4775
- /* harmony export */ InitializeGlobalScope: () => (/* reexport safe */ _utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_43__.InitializeGlobalScope),
4776
- /* harmony export */ InitializeUtilities: () => (/* reexport safe */ _initialization_utilities__WEBPACK_IMPORTED_MODULE_143__.InitializeUtilities),
4777
- /* harmony export */ InitializeValues: () => (/* reexport safe */ _initialization_values__WEBPACK_IMPORTED_MODULE_144__.InitializeValues),
4778
- /* harmony export */ InitializeVersion: () => (/* reexport safe */ _initialization_version__WEBPACK_IMPORTED_MODULE_145__.InitializeVersion),
4779
- /* harmony export */ InlineJS: () => (/* reexport safe */ _entry__WEBPACK_IMPORTED_MODULE_146__.InlineJS),
4780
- /* harmony export */ InlineJSGlobalKey: () => (/* reexport safe */ _global_key__WEBPACK_IMPORTED_MODULE_106__.InlineJSGlobalKey),
4781
- /* harmony export */ InsertHtml: () => (/* reexport safe */ _component_insert_html__WEBPACK_IMPORTED_MODULE_93__.InsertHtml),
4782
- /* harmony export */ Interpolate: () => (/* reexport safe */ _global_interpolator__WEBPACK_IMPORTED_MODULE_105__.Interpolate),
4783
- /* harmony export */ InterpolateText: () => (/* reexport safe */ _global_interpolator__WEBPACK_IMPORTED_MODULE_105__.InterpolateText),
4784
- /* harmony export */ IntersectionObserver: () => (/* reexport safe */ _observers_intersection__WEBPACK_IMPORTED_MODULE_133__.IntersectionObserver),
4785
- /* harmony export */ InvalidateCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_32__.InvalidateCache),
4786
- /* harmony export */ InvalidateComponentCache: () => (/* reexport safe */ _component_cache__WEBPACK_IMPORTED_MODULE_80__.InvalidateComponentCache),
4787
- /* harmony export */ IsBooleanAttribute: () => (/* reexport safe */ _utilities_is_boolean_attribute__WEBPACK_IMPORTED_MODULE_45__.IsBooleanAttribute),
4788
- /* harmony export */ IsEqual: () => (/* reexport safe */ _utilities_is_equal__WEBPACK_IMPORTED_MODULE_46__.IsEqual),
4789
- /* harmony export */ IsInsideTemplate: () => (/* reexport safe */ _utilities_template__WEBPACK_IMPORTED_MODULE_59__.IsInsideTemplate),
4790
- /* harmony export */ IsObject: () => (/* reexport safe */ _utilities_is_object__WEBPACK_IMPORTED_MODULE_47__.IsObject),
4791
- /* harmony export */ IsTemplate: () => (/* reexport safe */ _utilities_template__WEBPACK_IMPORTED_MODULE_59__.IsTemplate),
4792
- /* harmony export */ JoinPath: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_51__.JoinPath),
4793
- /* harmony export */ JoinUniqueMarkers: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_61__.JoinUniqueMarkers),
4794
- /* harmony export */ JournalError: () => (/* reexport safe */ _journal_error__WEBPACK_IMPORTED_MODULE_136__.JournalError),
4795
- /* harmony export */ JournalLog: () => (/* reexport safe */ _journal_log__WEBPACK_IMPORTED_MODULE_137__.JournalLog),
4796
- /* harmony export */ JournalTry: () => (/* reexport safe */ _journal_try__WEBPACK_IMPORTED_MODULE_138__.JournalTry),
4797
- /* harmony export */ JournalWarn: () => (/* reexport safe */ _journal_warn__WEBPACK_IMPORTED_MODULE_139__.JournalWarn),
4798
- /* harmony export */ LazyCheck: () => (/* reexport safe */ _directive_lazy__WEBPACK_IMPORTED_MODULE_119__.LazyCheck),
4799
- /* harmony export */ Loop: () => (/* reexport safe */ _values_loop__WEBPACK_IMPORTED_MODULE_28__.Loop),
4800
- /* harmony export */ MagicManager: () => (/* reexport safe */ _magic_manager__WEBPACK_IMPORTED_MODULE_128__.MagicManager),
4801
- /* harmony export */ MeasureCallback: () => (/* reexport safe */ _utilities_measure_callback__WEBPACK_IMPORTED_MODULE_49__.MeasureCallback),
4802
- /* harmony export */ MergeObjects: () => (/* reexport safe */ _utilities_merge_objects__WEBPACK_IMPORTED_MODULE_50__.MergeObjects),
4803
- /* harmony export */ MutationObserver: () => (/* reexport safe */ _observers_mutation__WEBPACK_IMPORTED_MODULE_132__.MutationObserver),
4804
- /* harmony export */ NativeFetchConcept: () => (/* reexport safe */ _global_native_fetch__WEBPACK_IMPORTED_MODULE_107__.NativeFetchConcept),
4805
- /* harmony export */ NextIdle: () => (/* reexport safe */ _component_next_idle__WEBPACK_IMPORTED_MODULE_95__.NextIdle),
4806
- /* harmony export */ NextNonIdle: () => (/* reexport safe */ _component_next_non_idle__WEBPACK_IMPORTED_MODULE_96__.NextNonIdle),
4807
- /* harmony export */ NextTick: () => (/* reexport safe */ _component_next_tick__WEBPACK_IMPORTED_MODULE_97__.NextTick),
4808
- /* harmony export */ Nothing: () => (/* reexport safe */ _values_nothing__WEBPACK_IMPORTED_MODULE_29__.Nothing),
4809
- /* harmony export */ OnDirectiveExpansionRule: () => (/* reexport safe */ _expansion_on__WEBPACK_IMPORTED_MODULE_131__.OnDirectiveExpansionRule),
4810
- /* harmony export */ PathToRelative: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_51__.PathToRelative),
4811
- /* harmony export */ PeekCurrentComponent: () => (/* reexport safe */ _component_current__WEBPACK_IMPORTED_MODULE_83__.PeekCurrentComponent),
4812
- /* harmony export */ PeekCurrentScope: () => (/* reexport safe */ _component_current_scope__WEBPACK_IMPORTED_MODULE_84__.PeekCurrentScope),
4813
- /* harmony export */ PeekStoredObject: () => (/* reexport safe */ _utilities_stored_object__WEBPACK_IMPORTED_MODULE_57__.PeekStoredObject),
4814
- /* harmony export */ PopCurrentComponent: () => (/* reexport safe */ _component_current__WEBPACK_IMPORTED_MODULE_83__.PopCurrentComponent),
4815
- /* harmony export */ PopCurrentScope: () => (/* reexport safe */ _component_current_scope__WEBPACK_IMPORTED_MODULE_84__.PopCurrentScope),
4816
- /* harmony export */ ProcessDirectives: () => (/* reexport safe */ _directive_process__WEBPACK_IMPORTED_MODULE_122__.ProcessDirectives),
4817
- /* harmony export */ ProxyAccessStorage: () => (/* reexport safe */ _storage_get_access__WEBPACK_IMPORTED_MODULE_140__.ProxyAccessStorage),
4818
- /* harmony export */ ProxyKeys: () => (/* reexport safe */ _utilities_proxy_keys__WEBPACK_IMPORTED_MODULE_52__.ProxyKeys),
4819
- /* harmony export */ PushCurrentComponent: () => (/* reexport safe */ _component_current__WEBPACK_IMPORTED_MODULE_83__.PushCurrentComponent),
4820
- /* harmony export */ PushCurrentScope: () => (/* reexport safe */ _component_current_scope__WEBPACK_IMPORTED_MODULE_84__.PushCurrentScope),
4821
- /* harmony export */ QueryGlobalComponent: () => (/* reexport safe */ _component_global__WEBPACK_IMPORTED_MODULE_91__.QueryGlobalComponent),
4822
- /* harmony export */ RandomString: () => (/* reexport safe */ _utilities_random_string__WEBPACK_IMPORTED_MODULE_53__.RandomString),
4823
- /* harmony export */ Range: () => (/* reexport safe */ _values_range__WEBPACK_IMPORTED_MODULE_30__.Range),
4824
- /* harmony export */ RemoveDirectiveExpansionRule: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_115__.RemoveDirectiveExpansionRule),
4825
- /* harmony export */ RemoveOutsideEventListener: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_87__.RemoveOutsideEventListener),
4826
- /* harmony export */ ResizeObserver: () => (/* reexport safe */ _observers_resize__WEBPACK_IMPORTED_MODULE_135__.ResizeObserver),
4827
- /* harmony export */ ResolveKeyValue: () => (/* reexport safe */ _directive_key_value__WEBPACK_IMPORTED_MODULE_118__.ResolveKeyValue),
4828
- /* harmony export */ ResolveOptions: () => (/* reexport safe */ _directive_options__WEBPACK_IMPORTED_MODULE_121__.ResolveOptions),
4829
- /* harmony export */ ResolveTransition: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.ResolveTransition),
4830
- /* harmony export */ RetrieveStoredObject: () => (/* reexport safe */ _utilities_stored_object__WEBPACK_IMPORTED_MODULE_57__.RetrieveStoredObject),
4831
- /* harmony export */ RootProxy: () => (/* reexport safe */ _proxy_root__WEBPACK_IMPORTED_MODULE_70__.RootProxy),
4832
- /* harmony export */ Scope: () => (/* reexport safe */ _component_scope__WEBPACK_IMPORTED_MODULE_98__.Scope),
4833
- /* harmony export */ SetAttributeUtil: () => (/* reexport safe */ _utilities_set_attribute__WEBPACK_IMPORTED_MODULE_55__.SetAttributeUtil),
4834
- /* harmony export */ SetCacheValue: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_32__.SetCacheValue),
4835
- /* harmony export */ SetProxyAccessHandler: () => (/* reexport safe */ _component_set_proxy_access_handler__WEBPACK_IMPORTED_MODULE_99__.SetProxyAccessHandler),
4836
- /* harmony export */ SetProxyProp: () => (/* reexport safe */ _proxy_set_prop__WEBPACK_IMPORTED_MODULE_71__.SetProxyProp),
4837
- /* harmony export */ SplitPath: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_51__.SplitPath),
4838
- /* harmony export */ Stack: () => (/* reexport safe */ _stack__WEBPACK_IMPORTED_MODULE_26__.Stack),
4839
- /* harmony export */ StoreProxyHandler: () => (/* reexport safe */ _component_set_proxy_access_handler__WEBPACK_IMPORTED_MODULE_99__.StoreProxyHandler),
4840
- /* harmony export */ StreamData: () => (/* reexport safe */ _evaluator_stream_data__WEBPACK_IMPORTED_MODULE_74__.StreamData),
4841
- /* harmony export */ SubscribeToChanges: () => (/* reexport safe */ _reactive_subscribe__WEBPACK_IMPORTED_MODULE_78__.SubscribeToChanges),
4842
- /* harmony export */ SupportsAttributes: () => (/* reexport safe */ _utilities_supports_attributes__WEBPACK_IMPORTED_MODULE_58__.SupportsAttributes),
4843
- /* harmony export */ TextContentInterpolator: () => (/* reexport safe */ _global_interpolation__WEBPACK_IMPORTED_MODULE_104__.TextContentInterpolator),
4844
- /* harmony export */ TidyPath: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_51__.TidyPath),
4845
- /* harmony export */ TimedRange: () => (/* reexport safe */ _values_range__WEBPACK_IMPORTED_MODULE_30__.TimedRange),
4846
- /* harmony export */ ToCamelCase: () => (/* reexport safe */ _utilities_camel_case__WEBPACK_IMPORTED_MODULE_33__.ToCamelCase),
4847
- /* harmony export */ ToSnakeCase: () => (/* reexport safe */ _utilities_snake_case__WEBPACK_IMPORTED_MODULE_56__.ToSnakeCase),
4848
- /* harmony export */ ToString: () => (/* reexport safe */ _utilities_to_string__WEBPACK_IMPORTED_MODULE_60__.ToString),
4849
- /* harmony export */ TraverseDirectives: () => (/* reexport safe */ _directive_traverse__WEBPACK_IMPORTED_MODULE_124__.TraverseDirectives),
4850
- /* harmony export */ TraverseInterpolationReplacements: () => (/* reexport safe */ _global_interpolator__WEBPACK_IMPORTED_MODULE_105__.TraverseInterpolationReplacements),
4851
- /* harmony export */ UnbindOutsideEvent: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_87__.UnbindOutsideEvent),
4852
- /* harmony export */ UseCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_32__.UseCache),
4853
- /* harmony export */ UseEffect: () => (/* reexport safe */ _reactive_effect__WEBPACK_IMPORTED_MODULE_77__.UseEffect),
4854
- /* harmony export */ UseRange: () => (/* reexport safe */ _utilities_range__WEBPACK_IMPORTED_MODULE_54__.UseRange),
4855
- /* harmony export */ WaitAnimation: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.WaitAnimation),
4856
- /* harmony export */ WaitForGlobal: () => (/* reexport safe */ _global_get__WEBPACK_IMPORTED_MODULE_103__.WaitForGlobal),
4857
- /* harmony export */ WaitPromise: () => (/* reexport safe */ _evaluator_wait_promise__WEBPACK_IMPORTED_MODULE_75__.WaitPromise),
4858
- /* harmony export */ WaitTransition: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_123__.WaitTransition),
4859
- /* harmony export */ WaitWhile: () => (/* reexport safe */ _evaluator_wait_while__WEBPACK_IMPORTED_MODULE_76__.WaitWhile)
4773
+ /* harmony export */ AddChanges: () => (/* reexport safe */ _proxy_add_changes__WEBPACK_IMPORTED_MODULE_64__.AddChanges),
4774
+ /* harmony export */ AddDirectiveExpansionRule: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_117__.AddDirectiveExpansionRule),
4775
+ /* harmony export */ AddDirectiveHandler: () => (/* reexport safe */ _directive_add__WEBPACK_IMPORTED_MODULE_112__.AddDirectiveHandler),
4776
+ /* harmony export */ AddMagicHandler: () => (/* reexport safe */ _magic_add__WEBPACK_IMPORTED_MODULE_127__.AddMagicHandler),
4777
+ /* harmony export */ AddOutsideEventExcept: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_89__.AddOutsideEventExcept),
4778
+ /* harmony export */ AddOutsideEventListener: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_89__.AddOutsideEventListener),
4779
+ /* harmony export */ ApplyDirectiveExpansionRules: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_117__.ApplyDirectiveExpansionRules),
4780
+ /* harmony export */ AreObjects: () => (/* reexport safe */ _utilities_is_object__WEBPACK_IMPORTED_MODULE_49__.AreObjects),
4781
+ /* harmony export */ AttributeInterpolator: () => (/* reexport safe */ _global_interpolation__WEBPACK_IMPORTED_MODULE_106__.AttributeInterpolator),
4782
+ /* harmony export */ AutoBootstrap: () => (/* reexport safe */ _bootstrap_auto__WEBPACK_IMPORTED_MODULE_111__.AutoBootstrap),
4783
+ /* harmony export */ BaseComponent: () => (/* reexport safe */ _component_base__WEBPACK_IMPORTED_MODULE_81__.BaseComponent),
4784
+ /* harmony export */ BaseGlobal: () => (/* reexport safe */ _global_base__WEBPACK_IMPORTED_MODULE_102__.BaseGlobal),
4785
+ /* harmony export */ BeginsWith: () => (/* reexport safe */ _utilities_begins_with__WEBPACK_IMPORTED_MODULE_32__.BeginsWith),
4786
+ /* harmony export */ BindDirectiveExpansionRule: () => (/* reexport safe */ _expansion_bind__WEBPACK_IMPORTED_MODULE_131__.BindDirectiveExpansionRule),
4787
+ /* harmony export */ BindEvent: () => (/* reexport safe */ _directive_event__WEBPACK_IMPORTED_MODULE_116__.BindEvent),
4788
+ /* harmony export */ BootstrapAndAttach: () => (/* reexport safe */ _bootstrap_attach__WEBPACK_IMPORTED_MODULE_110__.BootstrapAndAttach),
4789
+ /* harmony export */ BuildGetterProxyOptions: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_66__.BuildGetterProxyOptions),
4790
+ /* harmony export */ BuildIntersectionOptions: () => (/* reexport safe */ _observers_intersection_options__WEBPACK_IMPORTED_MODULE_136__.BuildIntersectionOptions),
4791
+ /* harmony export */ BuildProxyOptions: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_66__.BuildProxyOptions),
4792
+ /* harmony export */ CallIfFunction: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_75__.CallIfFunction),
4793
+ /* harmony export */ Changes: () => (/* reexport safe */ _component_changes__WEBPACK_IMPORTED_MODULE_83__.Changes),
4794
+ /* harmony export */ ChildProxy: () => (/* reexport safe */ _proxy_child__WEBPACK_IMPORTED_MODULE_65__.ChildProxy),
4795
+ /* harmony export */ ClassDirectiveExpansionRule: () => (/* reexport safe */ _expansion_class__WEBPACK_IMPORTED_MODULE_132__.ClassDirectiveExpansionRule),
4796
+ /* harmony export */ ComponentCacheKey: () => (/* reexport safe */ _component_key__WEBPACK_IMPORTED_MODULE_96__.ComponentCacheKey),
4797
+ /* harmony export */ Config: () => (/* reexport safe */ _global_config__WEBPACK_IMPORTED_MODULE_103__.Config),
4798
+ /* harmony export */ ConsiderRange: () => (/* reexport safe */ _utilities_range__WEBPACK_IMPORTED_MODULE_56__.ConsiderRange),
4799
+ /* harmony export */ Context: () => (/* reexport safe */ _component_context__WEBPACK_IMPORTED_MODULE_84__.Context),
4800
+ /* harmony export */ ContextKeys: () => (/* reexport safe */ _utilities_context_keys__WEBPACK_IMPORTED_MODULE_35__.ContextKeys),
4801
+ /* harmony export */ CreateAnimationLoop: () => (/* reexport safe */ _utilities_loop__WEBPACK_IMPORTED_MODULE_50__.CreateAnimationLoop),
4802
+ /* harmony export */ CreateChildProxy: () => (/* reexport safe */ _proxy_create_child__WEBPACK_IMPORTED_MODULE_67__.CreateChildProxy),
4803
+ /* harmony export */ CreateDirective: () => (/* reexport safe */ _directive_create__WEBPACK_IMPORTED_MODULE_114__.CreateDirective),
4804
+ /* harmony export */ CreateDirectiveExpansionRule: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_117__.CreateDirectiveExpansionRule),
4805
+ /* harmony export */ CreateDirectiveHandlerCallback: () => (/* reexport safe */ _directive_callback__WEBPACK_IMPORTED_MODULE_113__.CreateDirectiveHandlerCallback),
4806
+ /* harmony export */ CreateGlobal: () => (/* reexport safe */ _global_create__WEBPACK_IMPORTED_MODULE_104__.CreateGlobal),
4807
+ /* harmony export */ CreateInplaceProxy: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_66__.CreateInplaceProxy),
4808
+ /* harmony export */ CreateLoop: () => (/* reexport safe */ _utilities_loop__WEBPACK_IMPORTED_MODULE_50__.CreateLoop),
4809
+ /* harmony export */ CreateMagicHandlerCallback: () => (/* reexport safe */ _magic_callback__WEBPACK_IMPORTED_MODULE_128__.CreateMagicHandlerCallback),
4810
+ /* harmony export */ CreateReadonlyProxy: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_66__.CreateReadonlyProxy),
4811
+ /* harmony export */ DecodeAttribute: () => (/* reexport safe */ _utilities_decode_attribute__WEBPACK_IMPORTED_MODULE_36__.DecodeAttribute),
4812
+ /* harmony export */ DecodeValue: () => (/* reexport safe */ _utilities_decode_value__WEBPACK_IMPORTED_MODULE_37__.DecodeValue),
4813
+ /* harmony export */ DeepCopy: () => (/* reexport safe */ _utilities_deep_copy__WEBPACK_IMPORTED_MODULE_38__.DeepCopy),
4814
+ /* harmony export */ DefaultTransitionDelay: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.DefaultTransitionDelay),
4815
+ /* harmony export */ DefaultTransitionDuration: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.DefaultTransitionDuration),
4816
+ /* harmony export */ DefaultTransitionInitialDelay: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.DefaultTransitionInitialDelay),
4817
+ /* harmony export */ DefaultTransitionRepeats: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.DefaultTransitionRepeats),
4818
+ /* harmony export */ DeleteProxyProp: () => (/* reexport safe */ _proxy_delete_prop__WEBPACK_IMPORTED_MODULE_68__.DeleteProxyProp),
4819
+ /* harmony export */ DirectiveManager: () => (/* reexport safe */ _directive_manager__WEBPACK_IMPORTED_MODULE_122__.DirectiveManager),
4820
+ /* harmony export */ DisableProxyAction: () => (/* reexport safe */ _proxy_create__WEBPACK_IMPORTED_MODULE_66__.DisableProxyAction),
4821
+ /* harmony export */ DispatchDirective: () => (/* reexport safe */ _directive_dispatch__WEBPACK_IMPORTED_MODULE_115__.DispatchDirective),
4822
+ /* harmony export */ ElementScope: () => (/* reexport safe */ _component_element_scope__WEBPACK_IMPORTED_MODULE_87__.ElementScope),
4823
+ /* harmony export */ ElementScopeKey: () => (/* reexport safe */ _component_element_scope_id__WEBPACK_IMPORTED_MODULE_88__.ElementScopeKey),
4824
+ /* harmony export */ EncodeAttribute: () => (/* reexport safe */ _utilities_encode_attribute__WEBPACK_IMPORTED_MODULE_39__.EncodeAttribute),
4825
+ /* harmony export */ EncodeValue: () => (/* reexport safe */ _utilities_encode_value__WEBPACK_IMPORTED_MODULE_40__.EncodeValue),
4826
+ /* harmony export */ EndsWith: () => (/* reexport safe */ _utilities_ends_with__WEBPACK_IMPORTED_MODULE_41__.EndsWith),
4827
+ /* harmony export */ EvaluateLater: () => (/* reexport safe */ _evaluator_evaluate_later__WEBPACK_IMPORTED_MODULE_74__.EvaluateLater),
4828
+ /* harmony export */ EvaluateMagicProperty: () => (/* reexport safe */ _magic_evaluate__WEBPACK_IMPORTED_MODULE_129__.EvaluateMagicProperty),
4829
+ /* harmony export */ ExtractDuration: () => (/* reexport safe */ _directive_options__WEBPACK_IMPORTED_MODULE_123__.ExtractDuration),
4830
+ /* harmony export */ FindAncestor: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_42__.FindAncestor),
4831
+ /* harmony export */ FindAncestorByAttribute: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_42__.FindAncestorByAttribute),
4832
+ /* harmony export */ FindAncestorByAttributeValue: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_42__.FindAncestorByAttributeValue),
4833
+ /* harmony export */ FindAncestorByClass: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_42__.FindAncestorByClass),
4834
+ /* harmony export */ FindAncestorByTagName: () => (/* reexport safe */ _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_42__.FindAncestorByTagName),
4835
+ /* harmony export */ FindCacheValue: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_33__.FindCacheValue),
4836
+ /* harmony export */ FindComponentByCallback: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_90__.FindComponentByCallback),
4837
+ /* harmony export */ FindComponentById: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_90__.FindComponentById),
4838
+ /* harmony export */ FindComponentByName: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_90__.FindComponentByName),
4839
+ /* harmony export */ FindComponentByRoot: () => (/* reexport safe */ _component_find__WEBPACK_IMPORTED_MODULE_90__.FindComponentByRoot),
4840
+ /* harmony export */ FindFirstAttribute: () => (/* reexport safe */ _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_43__.FindFirstAttribute),
4841
+ /* harmony export */ FindFirstAttributeValue: () => (/* reexport safe */ _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_43__.FindFirstAttributeValue),
4842
+ /* harmony export */ FlattenDirective: () => (/* reexport safe */ _directive_flatten__WEBPACK_IMPORTED_MODULE_118__.FlattenDirective),
4843
+ /* harmony export */ ForwardEvent: () => (/* reexport safe */ _directive_event__WEBPACK_IMPORTED_MODULE_116__.ForwardEvent),
4844
+ /* harmony export */ Future: () => (/* reexport safe */ _values_future__WEBPACK_IMPORTED_MODULE_28__.Future),
4845
+ /* harmony export */ GenerateFunctionFromString: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_75__.GenerateFunctionFromString),
4846
+ /* harmony export */ GenerateUniqueId: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_63__.GenerateUniqueId),
4847
+ /* harmony export */ GenerateValueReturningFunction: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_75__.GenerateValueReturningFunction),
4848
+ /* harmony export */ GenerateVoidFunction: () => (/* reexport safe */ _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_75__.GenerateVoidFunction),
4849
+ /* harmony export */ GenericProxy: () => (/* reexport safe */ _proxy_generic__WEBPACK_IMPORTED_MODULE_69__.GenericProxy),
4850
+ /* harmony export */ GetAttribute: () => (/* reexport safe */ _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_43__.GetAttribute),
4851
+ /* harmony export */ GetCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_33__.GetCache),
4852
+ /* harmony export */ GetConfig: () => (/* reexport safe */ _component_get_config__WEBPACK_IMPORTED_MODULE_91__.GetConfig),
4853
+ /* harmony export */ GetDefaultCacheValue: () => (/* reexport safe */ _component_cache__WEBPACK_IMPORTED_MODULE_82__.GetDefaultCacheValue),
4854
+ /* harmony export */ GetDefaultUniqueMarkers: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_63__.GetDefaultUniqueMarkers),
4855
+ /* harmony export */ GetDirectiveValue: () => (/* reexport safe */ _directive_get_value__WEBPACK_IMPORTED_MODULE_119__.GetDirectiveValue),
4856
+ /* harmony export */ GetElementScopeId: () => (/* reexport safe */ _component_element_scope_id__WEBPACK_IMPORTED_MODULE_88__.GetElementScopeId),
4857
+ /* harmony export */ GetElementScopeIdWithElement: () => (/* reexport safe */ _component_element_scope_id__WEBPACK_IMPORTED_MODULE_88__.GetElementScopeIdWithElement),
4858
+ /* harmony export */ GetGlobal: () => (/* reexport safe */ _global_get__WEBPACK_IMPORTED_MODULE_105__.GetGlobal),
4859
+ /* harmony export */ GetGlobalScope: () => (/* reexport safe */ _utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_44__.GetGlobalScope),
4860
+ /* harmony export */ GetLocal: () => (/* reexport safe */ _component_get_local__WEBPACK_IMPORTED_MODULE_92__.GetLocal),
4861
+ /* harmony export */ GetOrCreateGlobal: () => (/* reexport safe */ _global_create__WEBPACK_IMPORTED_MODULE_104__.GetOrCreateGlobal),
4862
+ /* harmony export */ GetProxyProp: () => (/* reexport safe */ _proxy_get_prop__WEBPACK_IMPORTED_MODULE_70__.GetProxyProp),
4863
+ /* harmony export */ GetTarget: () => (/* reexport safe */ _utilities_get_target__WEBPACK_IMPORTED_MODULE_45__.GetTarget),
4864
+ /* harmony export */ GetTargets: () => (/* reexport safe */ _utilities_get_target__WEBPACK_IMPORTED_MODULE_45__.GetTargets),
4865
+ /* harmony export */ GlobalCreatedEvent: () => (/* reexport safe */ _global_key__WEBPACK_IMPORTED_MODULE_108__.GlobalCreatedEvent),
4866
+ /* harmony export */ IncrementUniqueMarkers: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_63__.IncrementUniqueMarkers),
4867
+ /* harmony export */ InferComponent: () => (/* reexport safe */ _component_infer__WEBPACK_IMPORTED_MODULE_94__.InferComponent),
4868
+ /* harmony export */ InitCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_33__.InitCache),
4869
+ /* harmony export */ InitComponentCache: () => (/* reexport safe */ _component_cache__WEBPACK_IMPORTED_MODULE_82__.InitComponentCache),
4870
+ /* harmony export */ InitJITProxy: () => (/* reexport safe */ _proxy_jit__WEBPACK_IMPORTED_MODULE_71__.InitJITProxy),
4871
+ /* harmony export */ InitializeDev: () => (/* reexport safe */ _initialization_dev__WEBPACK_IMPORTED_MODULE_143__.InitializeDev),
4872
+ /* harmony export */ InitializeGlobal: () => (/* reexport safe */ _initialization_global__WEBPACK_IMPORTED_MODULE_144__.InitializeGlobal),
4873
+ /* harmony export */ InitializeGlobalScope: () => (/* reexport safe */ _utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_44__.InitializeGlobalScope),
4874
+ /* harmony export */ InitializeUtilities: () => (/* reexport safe */ _initialization_utilities__WEBPACK_IMPORTED_MODULE_145__.InitializeUtilities),
4875
+ /* harmony export */ InitializeValues: () => (/* reexport safe */ _initialization_values__WEBPACK_IMPORTED_MODULE_146__.InitializeValues),
4876
+ /* harmony export */ InitializeVersion: () => (/* reexport safe */ _initialization_version__WEBPACK_IMPORTED_MODULE_147__.InitializeVersion),
4877
+ /* harmony export */ InlineJS: () => (/* reexport safe */ _entry__WEBPACK_IMPORTED_MODULE_148__.InlineJS),
4878
+ /* harmony export */ InlineJSGlobalKey: () => (/* reexport safe */ _global_key__WEBPACK_IMPORTED_MODULE_108__.InlineJSGlobalKey),
4879
+ /* harmony export */ InsertHtml: () => (/* reexport safe */ _component_insert_html__WEBPACK_IMPORTED_MODULE_95__.InsertHtml),
4880
+ /* harmony export */ Interpolate: () => (/* reexport safe */ _global_interpolator__WEBPACK_IMPORTED_MODULE_107__.Interpolate),
4881
+ /* harmony export */ InterpolateText: () => (/* reexport safe */ _global_interpolator__WEBPACK_IMPORTED_MODULE_107__.InterpolateText),
4882
+ /* harmony export */ IntersectionObserver: () => (/* reexport safe */ _observers_intersection__WEBPACK_IMPORTED_MODULE_135__.IntersectionObserver),
4883
+ /* harmony export */ InvalidateCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_33__.InvalidateCache),
4884
+ /* harmony export */ InvalidateComponentCache: () => (/* reexport safe */ _component_cache__WEBPACK_IMPORTED_MODULE_82__.InvalidateComponentCache),
4885
+ /* harmony export */ IsBooleanAttribute: () => (/* reexport safe */ _utilities_is_boolean_attribute__WEBPACK_IMPORTED_MODULE_46__.IsBooleanAttribute),
4886
+ /* harmony export */ IsCustomElement: () => (/* reexport safe */ _utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_47__.IsCustomElement),
4887
+ /* harmony export */ IsEqual: () => (/* reexport safe */ _utilities_is_equal__WEBPACK_IMPORTED_MODULE_48__.IsEqual),
4888
+ /* harmony export */ IsInsideTemplate: () => (/* reexport safe */ _utilities_template__WEBPACK_IMPORTED_MODULE_61__.IsInsideTemplate),
4889
+ /* harmony export */ IsObject: () => (/* reexport safe */ _utilities_is_object__WEBPACK_IMPORTED_MODULE_49__.IsObject),
4890
+ /* harmony export */ IsTemplate: () => (/* reexport safe */ _utilities_template__WEBPACK_IMPORTED_MODULE_61__.IsTemplate),
4891
+ /* harmony export */ JoinPath: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_53__.JoinPath),
4892
+ /* harmony export */ JoinUniqueMarkers: () => (/* reexport safe */ _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_63__.JoinUniqueMarkers),
4893
+ /* harmony export */ JournalError: () => (/* reexport safe */ _journal_error__WEBPACK_IMPORTED_MODULE_138__.JournalError),
4894
+ /* harmony export */ JournalLog: () => (/* reexport safe */ _journal_log__WEBPACK_IMPORTED_MODULE_139__.JournalLog),
4895
+ /* harmony export */ JournalTry: () => (/* reexport safe */ _journal_try__WEBPACK_IMPORTED_MODULE_140__.JournalTry),
4896
+ /* harmony export */ JournalWarn: () => (/* reexport safe */ _journal_warn__WEBPACK_IMPORTED_MODULE_141__.JournalWarn),
4897
+ /* harmony export */ LazyCheck: () => (/* reexport safe */ _directive_lazy__WEBPACK_IMPORTED_MODULE_121__.LazyCheck),
4898
+ /* harmony export */ Loop: () => (/* reexport safe */ _values_loop__WEBPACK_IMPORTED_MODULE_29__.Loop),
4899
+ /* harmony export */ MagicManager: () => (/* reexport safe */ _magic_manager__WEBPACK_IMPORTED_MODULE_130__.MagicManager),
4900
+ /* harmony export */ MeasureCallback: () => (/* reexport safe */ _utilities_measure_callback__WEBPACK_IMPORTED_MODULE_51__.MeasureCallback),
4901
+ /* harmony export */ MergeObjects: () => (/* reexport safe */ _utilities_merge_objects__WEBPACK_IMPORTED_MODULE_52__.MergeObjects),
4902
+ /* harmony export */ MutationObserver: () => (/* reexport safe */ _observers_mutation__WEBPACK_IMPORTED_MODULE_134__.MutationObserver),
4903
+ /* harmony export */ NativeFetchConcept: () => (/* reexport safe */ _global_native_fetch__WEBPACK_IMPORTED_MODULE_109__.NativeFetchConcept),
4904
+ /* harmony export */ NextIdle: () => (/* reexport safe */ _component_next_idle__WEBPACK_IMPORTED_MODULE_97__.NextIdle),
4905
+ /* harmony export */ NextNonIdle: () => (/* reexport safe */ _component_next_non_idle__WEBPACK_IMPORTED_MODULE_98__.NextNonIdle),
4906
+ /* harmony export */ NextTick: () => (/* reexport safe */ _component_next_tick__WEBPACK_IMPORTED_MODULE_99__.NextTick),
4907
+ /* harmony export */ Nothing: () => (/* reexport safe */ _values_nothing__WEBPACK_IMPORTED_MODULE_30__.Nothing),
4908
+ /* harmony export */ OnDirectiveExpansionRule: () => (/* reexport safe */ _expansion_on__WEBPACK_IMPORTED_MODULE_133__.OnDirectiveExpansionRule),
4909
+ /* harmony export */ PathToRelative: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_53__.PathToRelative),
4910
+ /* harmony export */ PeekCurrentComponent: () => (/* reexport safe */ _component_current__WEBPACK_IMPORTED_MODULE_85__.PeekCurrentComponent),
4911
+ /* harmony export */ PeekCurrentScope: () => (/* reexport safe */ _component_current_scope__WEBPACK_IMPORTED_MODULE_86__.PeekCurrentScope),
4912
+ /* harmony export */ PeekStoredObject: () => (/* reexport safe */ _utilities_stored_object__WEBPACK_IMPORTED_MODULE_59__.PeekStoredObject),
4913
+ /* harmony export */ PopCurrentComponent: () => (/* reexport safe */ _component_current__WEBPACK_IMPORTED_MODULE_85__.PopCurrentComponent),
4914
+ /* harmony export */ PopCurrentScope: () => (/* reexport safe */ _component_current_scope__WEBPACK_IMPORTED_MODULE_86__.PopCurrentScope),
4915
+ /* harmony export */ ProcessDirectives: () => (/* reexport safe */ _directive_process__WEBPACK_IMPORTED_MODULE_124__.ProcessDirectives),
4916
+ /* harmony export */ ProxyAccessStorage: () => (/* reexport safe */ _storage_get_access__WEBPACK_IMPORTED_MODULE_142__.ProxyAccessStorage),
4917
+ /* harmony export */ ProxyKeys: () => (/* reexport safe */ _utilities_proxy_keys__WEBPACK_IMPORTED_MODULE_54__.ProxyKeys),
4918
+ /* harmony export */ PushCurrentComponent: () => (/* reexport safe */ _component_current__WEBPACK_IMPORTED_MODULE_85__.PushCurrentComponent),
4919
+ /* harmony export */ PushCurrentScope: () => (/* reexport safe */ _component_current_scope__WEBPACK_IMPORTED_MODULE_86__.PushCurrentScope),
4920
+ /* harmony export */ QueryGlobalComponent: () => (/* reexport safe */ _component_global__WEBPACK_IMPORTED_MODULE_93__.QueryGlobalComponent),
4921
+ /* harmony export */ RandomString: () => (/* reexport safe */ _utilities_random_string__WEBPACK_IMPORTED_MODULE_55__.RandomString),
4922
+ /* harmony export */ Range: () => (/* reexport safe */ _values_range__WEBPACK_IMPORTED_MODULE_31__.Range),
4923
+ /* harmony export */ RemoveDirectiveExpansionRule: () => (/* reexport safe */ _directive_expand__WEBPACK_IMPORTED_MODULE_117__.RemoveDirectiveExpansionRule),
4924
+ /* harmony export */ RemoveOutsideEventListener: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_89__.RemoveOutsideEventListener),
4925
+ /* harmony export */ ResizeObserver: () => (/* reexport safe */ _observers_resize__WEBPACK_IMPORTED_MODULE_137__.ResizeObserver),
4926
+ /* harmony export */ ResolveKeyValue: () => (/* reexport safe */ _directive_key_value__WEBPACK_IMPORTED_MODULE_120__.ResolveKeyValue),
4927
+ /* harmony export */ ResolveOptions: () => (/* reexport safe */ _directive_options__WEBPACK_IMPORTED_MODULE_123__.ResolveOptions),
4928
+ /* harmony export */ ResolveTransition: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.ResolveTransition),
4929
+ /* harmony export */ RetrieveStoredObject: () => (/* reexport safe */ _utilities_stored_object__WEBPACK_IMPORTED_MODULE_59__.RetrieveStoredObject),
4930
+ /* harmony export */ RootProxy: () => (/* reexport safe */ _proxy_root__WEBPACK_IMPORTED_MODULE_72__.RootProxy),
4931
+ /* harmony export */ Scope: () => (/* reexport safe */ _component_scope__WEBPACK_IMPORTED_MODULE_100__.Scope),
4932
+ /* harmony export */ SetAttributeUtil: () => (/* reexport safe */ _utilities_set_attribute__WEBPACK_IMPORTED_MODULE_57__.SetAttributeUtil),
4933
+ /* harmony export */ SetCacheValue: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_33__.SetCacheValue),
4934
+ /* harmony export */ SetProxyAccessHandler: () => (/* reexport safe */ _component_set_proxy_access_handler__WEBPACK_IMPORTED_MODULE_101__.SetProxyAccessHandler),
4935
+ /* harmony export */ SetProxyProp: () => (/* reexport safe */ _proxy_set_prop__WEBPACK_IMPORTED_MODULE_73__.SetProxyProp),
4936
+ /* harmony export */ SplitPath: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_53__.SplitPath),
4937
+ /* harmony export */ Stack: () => (/* reexport safe */ _stack__WEBPACK_IMPORTED_MODULE_27__.Stack),
4938
+ /* harmony export */ StoreProxyHandler: () => (/* reexport safe */ _component_set_proxy_access_handler__WEBPACK_IMPORTED_MODULE_101__.StoreProxyHandler),
4939
+ /* harmony export */ StreamData: () => (/* reexport safe */ _evaluator_stream_data__WEBPACK_IMPORTED_MODULE_76__.StreamData),
4940
+ /* harmony export */ SubscribeToChanges: () => (/* reexport safe */ _reactive_subscribe__WEBPACK_IMPORTED_MODULE_80__.SubscribeToChanges),
4941
+ /* harmony export */ SupportsAttributes: () => (/* reexport safe */ _utilities_supports_attributes__WEBPACK_IMPORTED_MODULE_60__.SupportsAttributes),
4942
+ /* harmony export */ TextContentInterpolator: () => (/* reexport safe */ _global_interpolation__WEBPACK_IMPORTED_MODULE_106__.TextContentInterpolator),
4943
+ /* harmony export */ TidyPath: () => (/* reexport safe */ _utilities_path__WEBPACK_IMPORTED_MODULE_53__.TidyPath),
4944
+ /* harmony export */ TimedRange: () => (/* reexport safe */ _values_range__WEBPACK_IMPORTED_MODULE_31__.TimedRange),
4945
+ /* harmony export */ ToCamelCase: () => (/* reexport safe */ _utilities_camel_case__WEBPACK_IMPORTED_MODULE_34__.ToCamelCase),
4946
+ /* harmony export */ ToSnakeCase: () => (/* reexport safe */ _utilities_snake_case__WEBPACK_IMPORTED_MODULE_58__.ToSnakeCase),
4947
+ /* harmony export */ ToString: () => (/* reexport safe */ _utilities_to_string__WEBPACK_IMPORTED_MODULE_62__.ToString),
4948
+ /* harmony export */ TraverseDirectives: () => (/* reexport safe */ _directive_traverse__WEBPACK_IMPORTED_MODULE_126__.TraverseDirectives),
4949
+ /* harmony export */ TraverseInterpolationReplacements: () => (/* reexport safe */ _global_interpolator__WEBPACK_IMPORTED_MODULE_107__.TraverseInterpolationReplacements),
4950
+ /* harmony export */ UnbindOutsideEvent: () => (/* reexport safe */ _component_event__WEBPACK_IMPORTED_MODULE_89__.UnbindOutsideEvent),
4951
+ /* harmony export */ UseCache: () => (/* reexport safe */ _utilities_cache__WEBPACK_IMPORTED_MODULE_33__.UseCache),
4952
+ /* harmony export */ UseEffect: () => (/* reexport safe */ _reactive_effect__WEBPACK_IMPORTED_MODULE_79__.UseEffect),
4953
+ /* harmony export */ UseRange: () => (/* reexport safe */ _utilities_range__WEBPACK_IMPORTED_MODULE_56__.UseRange),
4954
+ /* harmony export */ WaitAnimation: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.WaitAnimation),
4955
+ /* harmony export */ WaitForGlobal: () => (/* reexport safe */ _global_get__WEBPACK_IMPORTED_MODULE_105__.WaitForGlobal),
4956
+ /* harmony export */ WaitPromise: () => (/* reexport safe */ _evaluator_wait_promise__WEBPACK_IMPORTED_MODULE_77__.WaitPromise),
4957
+ /* harmony export */ WaitTransition: () => (/* reexport safe */ _directive_transition__WEBPACK_IMPORTED_MODULE_125__.WaitTransition),
4958
+ /* harmony export */ WaitWhile: () => (/* reexport safe */ _evaluator_wait_while__WEBPACK_IMPORTED_MODULE_78__.WaitWhile)
4860
4959
  /* harmony export */ });
4861
4960
  /* harmony import */ var _types_alert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./types/alert */ "./node_modules/@benbraide/inlinejs/lib/esm/types/alert.js");
4862
4961
  /* harmony import */ var _types_animation__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./types/animation */ "./node_modules/@benbraide/inlinejs/lib/esm/types/animation.js");
@@ -4865,146 +4964,150 @@ __webpack_require__.r(__webpack_exports__);
4865
4964
  /* harmony import */ var _types_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./types/component */ "./node_modules/@benbraide/inlinejs/lib/esm/types/component.js");
4866
4965
  /* harmony import */ var _types_config__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./types/config */ "./node_modules/@benbraide/inlinejs/lib/esm/types/config.js");
4867
4966
  /* harmony import */ var _types_context__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./types/context */ "./node_modules/@benbraide/inlinejs/lib/esm/types/context.js");
4868
- /* harmony import */ var _types_directive__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./types/directive */ "./node_modules/@benbraide/inlinejs/lib/esm/types/directive.js");
4869
- /* harmony import */ var _types_element_scope__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./types/element-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/types/element-scope.js");
4870
- /* harmony import */ var _types_evaluate_options__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./types/evaluate-options */ "./node_modules/@benbraide/inlinejs/lib/esm/types/evaluate-options.js");
4871
- /* harmony import */ var _types_fetch__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./types/fetch */ "./node_modules/@benbraide/inlinejs/lib/esm/types/fetch.js");
4872
- /* harmony import */ var _types_global__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./types/global */ "./node_modules/@benbraide/inlinejs/lib/esm/types/global.js");
4873
- /* harmony import */ var _types_intersection__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./types/intersection */ "./node_modules/@benbraide/inlinejs/lib/esm/types/intersection.js");
4874
- /* harmony import */ var _types_magic__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./types/magic */ "./node_modules/@benbraide/inlinejs/lib/esm/types/magic.js");
4875
- /* harmony import */ var _types_mutation__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./types/mutation */ "./node_modules/@benbraide/inlinejs/lib/esm/types/mutation.js");
4876
- /* harmony import */ var _types_path__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./types/path */ "./node_modules/@benbraide/inlinejs/lib/esm/types/path.js");
4877
- /* harmony import */ var _types_process__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./types/process */ "./node_modules/@benbraide/inlinejs/lib/esm/types/process.js");
4878
- /* harmony import */ var _types_proxy__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./types/proxy */ "./node_modules/@benbraide/inlinejs/lib/esm/types/proxy.js");
4879
- /* harmony import */ var _types_resize_observer__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./types/resize-observer */ "./node_modules/@benbraide/inlinejs/lib/esm/types/resize-observer.js");
4880
- /* harmony import */ var _types_resource__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./types/resource */ "./node_modules/@benbraide/inlinejs/lib/esm/types/resource.js");
4881
- /* harmony import */ var _types_root_element__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./types/root-element */ "./node_modules/@benbraide/inlinejs/lib/esm/types/root-element.js");
4882
- /* harmony import */ var _types_scope__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./types/scope */ "./node_modules/@benbraide/inlinejs/lib/esm/types/scope.js");
4883
- /* harmony import */ var _types_selection__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./types/selection */ "./node_modules/@benbraide/inlinejs/lib/esm/types/selection.js");
4884
- /* harmony import */ var _types_stack__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./types/stack */ "./node_modules/@benbraide/inlinejs/lib/esm/types/stack.js");
4885
- /* harmony import */ var _types_storage__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./types/storage */ "./node_modules/@benbraide/inlinejs/lib/esm/types/storage.js");
4886
- /* harmony import */ var _types_unique_markers__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./types/unique-markers */ "./node_modules/@benbraide/inlinejs/lib/esm/types/unique-markers.js");
4887
- /* harmony import */ var _stack__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./stack */ "./node_modules/@benbraide/inlinejs/lib/esm/stack.js");
4888
- /* harmony import */ var _values_future__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./values/future */ "./node_modules/@benbraide/inlinejs/lib/esm/values/future.js");
4889
- /* harmony import */ var _values_loop__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./values/loop */ "./node_modules/@benbraide/inlinejs/lib/esm/values/loop.js");
4890
- /* harmony import */ var _values_nothing__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./values/nothing */ "./node_modules/@benbraide/inlinejs/lib/esm/values/nothing.js");
4891
- /* harmony import */ var _values_range__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./values/range */ "./node_modules/@benbraide/inlinejs/lib/esm/values/range.js");
4892
- /* harmony import */ var _utilities_begins_with__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./utilities/begins-with */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/begins-with.js");
4893
- /* harmony import */ var _utilities_cache__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./utilities/cache */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/cache.js");
4894
- /* harmony import */ var _utilities_camel_case__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./utilities/camel-case */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/camel-case.js");
4895
- /* harmony import */ var _utilities_context_keys__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./utilities/context-keys */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/context-keys.js");
4896
- /* harmony import */ var _utilities_decode_attribute__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./utilities/decode-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/decode-attribute.js");
4897
- /* harmony import */ var _utilities_decode_value__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./utilities/decode-value */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/decode-value.js");
4898
- /* harmony import */ var _utilities_deep_copy__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./utilities/deep-copy */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/deep-copy.js");
4899
- /* harmony import */ var _utilities_encode_attribute__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./utilities/encode-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/encode-attribute.js");
4900
- /* harmony import */ var _utilities_encode_value__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./utilities/encode-value */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/encode-value.js");
4901
- /* harmony import */ var _utilities_ends_with__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./utilities/ends-with */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/ends-with.js");
4902
- /* harmony import */ var _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./utilities/find-ancestor */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/find-ancestor.js");
4903
- /* harmony import */ var _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./utilities/get-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-attribute.js");
4904
- /* harmony import */ var _utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./utilities/get-global-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-global-scope.js");
4905
- /* harmony import */ var _utilities_get_target__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./utilities/get-target */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-target.js");
4906
- /* harmony import */ var _utilities_is_boolean_attribute__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./utilities/is-boolean-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-boolean-attribute.js");
4907
- /* harmony import */ var _utilities_is_equal__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./utilities/is-equal */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-equal.js");
4908
- /* harmony import */ var _utilities_is_object__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./utilities/is-object */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-object.js");
4909
- /* harmony import */ var _utilities_loop__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./utilities/loop */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/loop.js");
4910
- /* harmony import */ var _utilities_measure_callback__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./utilities/measure-callback */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/measure-callback.js");
4911
- /* harmony import */ var _utilities_merge_objects__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./utilities/merge-objects */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/merge-objects.js");
4912
- /* harmony import */ var _utilities_path__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./utilities/path */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/path.js");
4913
- /* harmony import */ var _utilities_proxy_keys__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./utilities/proxy-keys */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/proxy-keys.js");
4914
- /* harmony import */ var _utilities_random_string__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./utilities/random-string */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/random-string.js");
4915
- /* harmony import */ var _utilities_range__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./utilities/range */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/range.js");
4916
- /* harmony import */ var _utilities_set_attribute__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./utilities/set-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/set-attribute.js");
4917
- /* harmony import */ var _utilities_snake_case__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./utilities/snake-case */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/snake-case.js");
4918
- /* harmony import */ var _utilities_stored_object__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./utilities/stored-object */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/stored-object.js");
4919
- /* harmony import */ var _utilities_supports_attributes__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./utilities/supports-attributes */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/supports-attributes.js");
4920
- /* harmony import */ var _utilities_template__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./utilities/template */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/template.js");
4921
- /* harmony import */ var _utilities_to_string__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./utilities/to-string */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/to-string.js");
4922
- /* harmony import */ var _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./utilities/unique-markers */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/unique-markers.js");
4923
- /* harmony import */ var _proxy_add_changes__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./proxy/add-changes */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/add-changes.js");
4924
- /* harmony import */ var _proxy_child__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./proxy/child */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/child.js");
4925
- /* harmony import */ var _proxy_create__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./proxy/create */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/create.js");
4926
- /* harmony import */ var _proxy_create_child__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./proxy/create-child */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/create-child.js");
4927
- /* harmony import */ var _proxy_delete_prop__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./proxy/delete-prop */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/delete-prop.js");
4928
- /* harmony import */ var _proxy_generic__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./proxy/generic */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/generic.js");
4929
- /* harmony import */ var _proxy_get_prop__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./proxy/get-prop */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/get-prop.js");
4930
- /* harmony import */ var _proxy_jit__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./proxy/jit */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/jit.js");
4931
- /* harmony import */ var _proxy_root__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./proxy/root */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/root.js");
4932
- /* harmony import */ var _proxy_set_prop__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./proxy/set-prop */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/set-prop.js");
4933
- /* harmony import */ var _evaluator_evaluate_later__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./evaluator/evaluate-later */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/evaluate-later.js");
4934
- /* harmony import */ var _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./evaluator/generate-function */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/generate-function.js");
4935
- /* harmony import */ var _evaluator_stream_data__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./evaluator/stream-data */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/stream-data.js");
4936
- /* harmony import */ var _evaluator_wait_promise__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./evaluator/wait-promise */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/wait-promise.js");
4937
- /* harmony import */ var _evaluator_wait_while__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./evaluator/wait-while */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/wait-while.js");
4938
- /* harmony import */ var _reactive_effect__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./reactive/effect */ "./node_modules/@benbraide/inlinejs/lib/esm/reactive/effect.js");
4939
- /* harmony import */ var _reactive_subscribe__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./reactive/subscribe */ "./node_modules/@benbraide/inlinejs/lib/esm/reactive/subscribe.js");
4940
- /* harmony import */ var _component_base__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./component/base */ "./node_modules/@benbraide/inlinejs/lib/esm/component/base.js");
4941
- /* harmony import */ var _component_cache__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./component/cache */ "./node_modules/@benbraide/inlinejs/lib/esm/component/cache.js");
4942
- /* harmony import */ var _component_changes__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./component/changes */ "./node_modules/@benbraide/inlinejs/lib/esm/component/changes.js");
4943
- /* harmony import */ var _component_context__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./component/context */ "./node_modules/@benbraide/inlinejs/lib/esm/component/context.js");
4944
- /* harmony import */ var _component_current__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./component/current */ "./node_modules/@benbraide/inlinejs/lib/esm/component/current.js");
4945
- /* harmony import */ var _component_current_scope__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./component/current-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/current-scope.js");
4946
- /* harmony import */ var _component_element_scope__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./component/element-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope.js");
4947
- /* harmony import */ var _component_element_scope_id__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./component/element-scope-id */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope-id.js");
4948
- /* harmony import */ var _component_event__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./component/event */ "./node_modules/@benbraide/inlinejs/lib/esm/component/event.js");
4949
- /* harmony import */ var _component_find__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./component/find */ "./node_modules/@benbraide/inlinejs/lib/esm/component/find.js");
4950
- /* harmony import */ var _component_get_config__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./component/get-config */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-config.js");
4951
- /* harmony import */ var _component_get_local__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./component/get-local */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-local.js");
4952
- /* harmony import */ var _component_global__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./component/global */ "./node_modules/@benbraide/inlinejs/lib/esm/component/global.js");
4953
- /* harmony import */ var _component_infer__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./component/infer */ "./node_modules/@benbraide/inlinejs/lib/esm/component/infer.js");
4954
- /* harmony import */ var _component_insert_html__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./component/insert-html */ "./node_modules/@benbraide/inlinejs/lib/esm/component/insert-html.js");
4955
- /* harmony import */ var _component_key__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./component/key */ "./node_modules/@benbraide/inlinejs/lib/esm/component/key.js");
4956
- /* harmony import */ var _component_next_idle__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./component/next-idle */ "./node_modules/@benbraide/inlinejs/lib/esm/component/next-idle.js");
4957
- /* harmony import */ var _component_next_non_idle__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./component/next-non-idle */ "./node_modules/@benbraide/inlinejs/lib/esm/component/next-non-idle.js");
4958
- /* harmony import */ var _component_next_tick__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./component/next-tick */ "./node_modules/@benbraide/inlinejs/lib/esm/component/next-tick.js");
4959
- /* harmony import */ var _component_scope__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./component/scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/scope.js");
4960
- /* harmony import */ var _component_set_proxy_access_handler__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./component/set-proxy-access-handler */ "./node_modules/@benbraide/inlinejs/lib/esm/component/set-proxy-access-handler.js");
4961
- /* harmony import */ var _global_base__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./global/base */ "./node_modules/@benbraide/inlinejs/lib/esm/global/base.js");
4962
- /* harmony import */ var _global_config__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./global/config */ "./node_modules/@benbraide/inlinejs/lib/esm/global/config.js");
4963
- /* harmony import */ var _global_create__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./global/create */ "./node_modules/@benbraide/inlinejs/lib/esm/global/create.js");
4964
- /* harmony import */ var _global_get__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./global/get */ "./node_modules/@benbraide/inlinejs/lib/esm/global/get.js");
4965
- /* harmony import */ var _global_interpolation__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./global/interpolation */ "./node_modules/@benbraide/inlinejs/lib/esm/global/interpolation.js");
4966
- /* harmony import */ var _global_interpolator__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./global/interpolator */ "./node_modules/@benbraide/inlinejs/lib/esm/global/interpolator.js");
4967
- /* harmony import */ var _global_key__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./global/key */ "./node_modules/@benbraide/inlinejs/lib/esm/global/key.js");
4968
- /* harmony import */ var _global_native_fetch__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./global/native-fetch */ "./node_modules/@benbraide/inlinejs/lib/esm/global/native-fetch.js");
4969
- /* harmony import */ var _bootstrap_attach__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./bootstrap/attach */ "./node_modules/@benbraide/inlinejs/lib/esm/bootstrap/attach.js");
4970
- /* harmony import */ var _bootstrap_auto__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./bootstrap/auto */ "./node_modules/@benbraide/inlinejs/lib/esm/bootstrap/auto.js");
4971
- /* harmony import */ var _directive_add__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./directive/add */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/add.js");
4972
- /* harmony import */ var _directive_callback__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./directive/callback */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/callback.js");
4973
- /* harmony import */ var _directive_create__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./directive/create */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/create.js");
4974
- /* harmony import */ var _directive_dispatch__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./directive/dispatch */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/dispatch.js");
4975
- /* harmony import */ var _directive_event__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./directive/event */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/event.js");
4976
- /* harmony import */ var _directive_expand__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./directive/expand */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/expand.js");
4977
- /* harmony import */ var _directive_flatten__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./directive/flatten */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/flatten.js");
4978
- /* harmony import */ var _directive_get_value__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./directive/get-value */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/get-value.js");
4979
- /* harmony import */ var _directive_key_value__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./directive/key-value */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/key-value.js");
4980
- /* harmony import */ var _directive_lazy__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./directive/lazy */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/lazy.js");
4981
- /* harmony import */ var _directive_manager__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./directive/manager */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/manager.js");
4982
- /* harmony import */ var _directive_options__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./directive/options */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/options.js");
4983
- /* harmony import */ var _directive_process__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./directive/process */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/process.js");
4984
- /* harmony import */ var _directive_transition__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./directive/transition */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/transition.js");
4985
- /* harmony import */ var _directive_traverse__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./directive/traverse */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/traverse.js");
4986
- /* harmony import */ var _magic_add__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./magic/add */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/add.js");
4987
- /* harmony import */ var _magic_callback__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./magic/callback */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/callback.js");
4988
- /* harmony import */ var _magic_evaluate__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./magic/evaluate */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/evaluate.js");
4989
- /* harmony import */ var _magic_manager__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./magic/manager */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/manager.js");
4990
- /* harmony import */ var _expansion_bind__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./expansion/bind */ "./node_modules/@benbraide/inlinejs/lib/esm/expansion/bind.js");
4991
- /* harmony import */ var _expansion_class__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./expansion/class */ "./node_modules/@benbraide/inlinejs/lib/esm/expansion/class.js");
4992
- /* harmony import */ var _expansion_on__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./expansion/on */ "./node_modules/@benbraide/inlinejs/lib/esm/expansion/on.js");
4993
- /* harmony import */ var _observers_mutation__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./observers/mutation */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/mutation.js");
4994
- /* harmony import */ var _observers_intersection__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./observers/intersection */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/intersection.js");
4995
- /* harmony import */ var _observers_intersection_options__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./observers/intersection-options */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/intersection-options.js");
4996
- /* harmony import */ var _observers_resize__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./observers/resize */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/resize.js");
4997
- /* harmony import */ var _journal_error__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./journal/error */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/error.js");
4998
- /* harmony import */ var _journal_log__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./journal/log */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/log.js");
4999
- /* harmony import */ var _journal_try__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./journal/try */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/try.js");
5000
- /* harmony import */ var _journal_warn__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./journal/warn */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/warn.js");
5001
- /* harmony import */ var _storage_get_access__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./storage/get-access */ "./node_modules/@benbraide/inlinejs/lib/esm/storage/get-access.js");
5002
- /* harmony import */ var _initialization_dev__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./initialization/dev */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/dev.js");
5003
- /* harmony import */ var _initialization_global__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./initialization/global */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/global.js");
5004
- /* harmony import */ var _initialization_utilities__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./initialization/utilities */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/utilities.js");
5005
- /* harmony import */ var _initialization_values__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./initialization/values */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/values.js");
5006
- /* harmony import */ var _initialization_version__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./initialization/version */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/version.js");
5007
- /* harmony import */ var _entry__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./entry */ "./node_modules/@benbraide/inlinejs/lib/esm/entry.js");
4967
+ /* harmony import */ var _types_custom_element__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./types/custom-element */ "./node_modules/@benbraide/inlinejs/lib/esm/types/custom-element.js");
4968
+ /* harmony import */ var _types_directive__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./types/directive */ "./node_modules/@benbraide/inlinejs/lib/esm/types/directive.js");
4969
+ /* harmony import */ var _types_element_scope__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./types/element-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/types/element-scope.js");
4970
+ /* harmony import */ var _types_evaluate_options__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./types/evaluate-options */ "./node_modules/@benbraide/inlinejs/lib/esm/types/evaluate-options.js");
4971
+ /* harmony import */ var _types_fetch__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./types/fetch */ "./node_modules/@benbraide/inlinejs/lib/esm/types/fetch.js");
4972
+ /* harmony import */ var _types_global__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./types/global */ "./node_modules/@benbraide/inlinejs/lib/esm/types/global.js");
4973
+ /* harmony import */ var _types_intersection__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./types/intersection */ "./node_modules/@benbraide/inlinejs/lib/esm/types/intersection.js");
4974
+ /* harmony import */ var _types_magic__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./types/magic */ "./node_modules/@benbraide/inlinejs/lib/esm/types/magic.js");
4975
+ /* harmony import */ var _types_mutation__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./types/mutation */ "./node_modules/@benbraide/inlinejs/lib/esm/types/mutation.js");
4976
+ /* harmony import */ var _types_path__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./types/path */ "./node_modules/@benbraide/inlinejs/lib/esm/types/path.js");
4977
+ /* harmony import */ var _types_process__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./types/process */ "./node_modules/@benbraide/inlinejs/lib/esm/types/process.js");
4978
+ /* harmony import */ var _types_proxy__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./types/proxy */ "./node_modules/@benbraide/inlinejs/lib/esm/types/proxy.js");
4979
+ /* harmony import */ var _types_resize_observer__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./types/resize-observer */ "./node_modules/@benbraide/inlinejs/lib/esm/types/resize-observer.js");
4980
+ /* harmony import */ var _types_resource__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./types/resource */ "./node_modules/@benbraide/inlinejs/lib/esm/types/resource.js");
4981
+ /* harmony import */ var _types_root_element__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./types/root-element */ "./node_modules/@benbraide/inlinejs/lib/esm/types/root-element.js");
4982
+ /* harmony import */ var _types_scope__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./types/scope */ "./node_modules/@benbraide/inlinejs/lib/esm/types/scope.js");
4983
+ /* harmony import */ var _types_selection__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./types/selection */ "./node_modules/@benbraide/inlinejs/lib/esm/types/selection.js");
4984
+ /* harmony import */ var _types_stack__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./types/stack */ "./node_modules/@benbraide/inlinejs/lib/esm/types/stack.js");
4985
+ /* harmony import */ var _types_storage__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./types/storage */ "./node_modules/@benbraide/inlinejs/lib/esm/types/storage.js");
4986
+ /* harmony import */ var _types_unique_markers__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./types/unique-markers */ "./node_modules/@benbraide/inlinejs/lib/esm/types/unique-markers.js");
4987
+ /* harmony import */ var _stack__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./stack */ "./node_modules/@benbraide/inlinejs/lib/esm/stack.js");
4988
+ /* harmony import */ var _values_future__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./values/future */ "./node_modules/@benbraide/inlinejs/lib/esm/values/future.js");
4989
+ /* harmony import */ var _values_loop__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./values/loop */ "./node_modules/@benbraide/inlinejs/lib/esm/values/loop.js");
4990
+ /* harmony import */ var _values_nothing__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./values/nothing */ "./node_modules/@benbraide/inlinejs/lib/esm/values/nothing.js");
4991
+ /* harmony import */ var _values_range__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./values/range */ "./node_modules/@benbraide/inlinejs/lib/esm/values/range.js");
4992
+ /* harmony import */ var _utilities_begins_with__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./utilities/begins-with */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/begins-with.js");
4993
+ /* harmony import */ var _utilities_cache__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./utilities/cache */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/cache.js");
4994
+ /* harmony import */ var _utilities_camel_case__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./utilities/camel-case */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/camel-case.js");
4995
+ /* harmony import */ var _utilities_context_keys__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./utilities/context-keys */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/context-keys.js");
4996
+ /* harmony import */ var _utilities_decode_attribute__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./utilities/decode-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/decode-attribute.js");
4997
+ /* harmony import */ var _utilities_decode_value__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./utilities/decode-value */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/decode-value.js");
4998
+ /* harmony import */ var _utilities_deep_copy__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./utilities/deep-copy */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/deep-copy.js");
4999
+ /* harmony import */ var _utilities_encode_attribute__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./utilities/encode-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/encode-attribute.js");
5000
+ /* harmony import */ var _utilities_encode_value__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./utilities/encode-value */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/encode-value.js");
5001
+ /* harmony import */ var _utilities_ends_with__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./utilities/ends-with */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/ends-with.js");
5002
+ /* harmony import */ var _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./utilities/find-ancestor */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/find-ancestor.js");
5003
+ /* harmony import */ var _utilities_get_attribute__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./utilities/get-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-attribute.js");
5004
+ /* harmony import */ var _utilities_get_global_scope__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./utilities/get-global-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-global-scope.js");
5005
+ /* harmony import */ var _utilities_get_target__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./utilities/get-target */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/get-target.js");
5006
+ /* harmony import */ var _utilities_is_boolean_attribute__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./utilities/is-boolean-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-boolean-attribute.js");
5007
+ /* harmony import */ var _utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./utilities/is-custom-element */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js");
5008
+ /* harmony import */ var _utilities_is_equal__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./utilities/is-equal */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-equal.js");
5009
+ /* harmony import */ var _utilities_is_object__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./utilities/is-object */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-object.js");
5010
+ /* harmony import */ var _utilities_loop__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./utilities/loop */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/loop.js");
5011
+ /* harmony import */ var _utilities_measure_callback__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./utilities/measure-callback */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/measure-callback.js");
5012
+ /* harmony import */ var _utilities_merge_objects__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./utilities/merge-objects */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/merge-objects.js");
5013
+ /* harmony import */ var _utilities_path__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./utilities/path */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/path.js");
5014
+ /* harmony import */ var _utilities_proxy_keys__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./utilities/proxy-keys */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/proxy-keys.js");
5015
+ /* harmony import */ var _utilities_random_string__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./utilities/random-string */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/random-string.js");
5016
+ /* harmony import */ var _utilities_range__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./utilities/range */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/range.js");
5017
+ /* harmony import */ var _utilities_set_attribute__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./utilities/set-attribute */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/set-attribute.js");
5018
+ /* harmony import */ var _utilities_snake_case__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./utilities/snake-case */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/snake-case.js");
5019
+ /* harmony import */ var _utilities_stored_object__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./utilities/stored-object */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/stored-object.js");
5020
+ /* harmony import */ var _utilities_supports_attributes__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./utilities/supports-attributes */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/supports-attributes.js");
5021
+ /* harmony import */ var _utilities_template__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./utilities/template */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/template.js");
5022
+ /* harmony import */ var _utilities_to_string__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./utilities/to-string */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/to-string.js");
5023
+ /* harmony import */ var _utilities_unique_markers__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./utilities/unique-markers */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/unique-markers.js");
5024
+ /* harmony import */ var _proxy_add_changes__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./proxy/add-changes */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/add-changes.js");
5025
+ /* harmony import */ var _proxy_child__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./proxy/child */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/child.js");
5026
+ /* harmony import */ var _proxy_create__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./proxy/create */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/create.js");
5027
+ /* harmony import */ var _proxy_create_child__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./proxy/create-child */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/create-child.js");
5028
+ /* harmony import */ var _proxy_delete_prop__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./proxy/delete-prop */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/delete-prop.js");
5029
+ /* harmony import */ var _proxy_generic__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./proxy/generic */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/generic.js");
5030
+ /* harmony import */ var _proxy_get_prop__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./proxy/get-prop */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/get-prop.js");
5031
+ /* harmony import */ var _proxy_jit__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./proxy/jit */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/jit.js");
5032
+ /* harmony import */ var _proxy_root__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./proxy/root */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/root.js");
5033
+ /* harmony import */ var _proxy_set_prop__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./proxy/set-prop */ "./node_modules/@benbraide/inlinejs/lib/esm/proxy/set-prop.js");
5034
+ /* harmony import */ var _evaluator_evaluate_later__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./evaluator/evaluate-later */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/evaluate-later.js");
5035
+ /* harmony import */ var _evaluator_generate_function__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./evaluator/generate-function */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/generate-function.js");
5036
+ /* harmony import */ var _evaluator_stream_data__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./evaluator/stream-data */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/stream-data.js");
5037
+ /* harmony import */ var _evaluator_wait_promise__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./evaluator/wait-promise */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/wait-promise.js");
5038
+ /* harmony import */ var _evaluator_wait_while__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./evaluator/wait-while */ "./node_modules/@benbraide/inlinejs/lib/esm/evaluator/wait-while.js");
5039
+ /* harmony import */ var _reactive_effect__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./reactive/effect */ "./node_modules/@benbraide/inlinejs/lib/esm/reactive/effect.js");
5040
+ /* harmony import */ var _reactive_subscribe__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./reactive/subscribe */ "./node_modules/@benbraide/inlinejs/lib/esm/reactive/subscribe.js");
5041
+ /* harmony import */ var _component_base__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./component/base */ "./node_modules/@benbraide/inlinejs/lib/esm/component/base.js");
5042
+ /* harmony import */ var _component_cache__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./component/cache */ "./node_modules/@benbraide/inlinejs/lib/esm/component/cache.js");
5043
+ /* harmony import */ var _component_changes__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./component/changes */ "./node_modules/@benbraide/inlinejs/lib/esm/component/changes.js");
5044
+ /* harmony import */ var _component_context__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./component/context */ "./node_modules/@benbraide/inlinejs/lib/esm/component/context.js");
5045
+ /* harmony import */ var _component_current__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./component/current */ "./node_modules/@benbraide/inlinejs/lib/esm/component/current.js");
5046
+ /* harmony import */ var _component_current_scope__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./component/current-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/current-scope.js");
5047
+ /* harmony import */ var _component_element_scope__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./component/element-scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope.js");
5048
+ /* harmony import */ var _component_element_scope_id__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./component/element-scope-id */ "./node_modules/@benbraide/inlinejs/lib/esm/component/element-scope-id.js");
5049
+ /* harmony import */ var _component_event__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./component/event */ "./node_modules/@benbraide/inlinejs/lib/esm/component/event.js");
5050
+ /* harmony import */ var _component_find__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./component/find */ "./node_modules/@benbraide/inlinejs/lib/esm/component/find.js");
5051
+ /* harmony import */ var _component_get_config__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./component/get-config */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-config.js");
5052
+ /* harmony import */ var _component_get_local__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./component/get-local */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-local.js");
5053
+ /* harmony import */ var _component_global__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./component/global */ "./node_modules/@benbraide/inlinejs/lib/esm/component/global.js");
5054
+ /* harmony import */ var _component_infer__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./component/infer */ "./node_modules/@benbraide/inlinejs/lib/esm/component/infer.js");
5055
+ /* harmony import */ var _component_insert_html__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./component/insert-html */ "./node_modules/@benbraide/inlinejs/lib/esm/component/insert-html.js");
5056
+ /* harmony import */ var _component_key__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./component/key */ "./node_modules/@benbraide/inlinejs/lib/esm/component/key.js");
5057
+ /* harmony import */ var _component_next_idle__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./component/next-idle */ "./node_modules/@benbraide/inlinejs/lib/esm/component/next-idle.js");
5058
+ /* harmony import */ var _component_next_non_idle__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./component/next-non-idle */ "./node_modules/@benbraide/inlinejs/lib/esm/component/next-non-idle.js");
5059
+ /* harmony import */ var _component_next_tick__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./component/next-tick */ "./node_modules/@benbraide/inlinejs/lib/esm/component/next-tick.js");
5060
+ /* harmony import */ var _component_scope__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./component/scope */ "./node_modules/@benbraide/inlinejs/lib/esm/component/scope.js");
5061
+ /* harmony import */ var _component_set_proxy_access_handler__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./component/set-proxy-access-handler */ "./node_modules/@benbraide/inlinejs/lib/esm/component/set-proxy-access-handler.js");
5062
+ /* harmony import */ var _global_base__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./global/base */ "./node_modules/@benbraide/inlinejs/lib/esm/global/base.js");
5063
+ /* harmony import */ var _global_config__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./global/config */ "./node_modules/@benbraide/inlinejs/lib/esm/global/config.js");
5064
+ /* harmony import */ var _global_create__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./global/create */ "./node_modules/@benbraide/inlinejs/lib/esm/global/create.js");
5065
+ /* harmony import */ var _global_get__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./global/get */ "./node_modules/@benbraide/inlinejs/lib/esm/global/get.js");
5066
+ /* harmony import */ var _global_interpolation__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./global/interpolation */ "./node_modules/@benbraide/inlinejs/lib/esm/global/interpolation.js");
5067
+ /* harmony import */ var _global_interpolator__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./global/interpolator */ "./node_modules/@benbraide/inlinejs/lib/esm/global/interpolator.js");
5068
+ /* harmony import */ var _global_key__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./global/key */ "./node_modules/@benbraide/inlinejs/lib/esm/global/key.js");
5069
+ /* harmony import */ var _global_native_fetch__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./global/native-fetch */ "./node_modules/@benbraide/inlinejs/lib/esm/global/native-fetch.js");
5070
+ /* harmony import */ var _bootstrap_attach__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./bootstrap/attach */ "./node_modules/@benbraide/inlinejs/lib/esm/bootstrap/attach.js");
5071
+ /* harmony import */ var _bootstrap_auto__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./bootstrap/auto */ "./node_modules/@benbraide/inlinejs/lib/esm/bootstrap/auto.js");
5072
+ /* harmony import */ var _directive_add__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./directive/add */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/add.js");
5073
+ /* harmony import */ var _directive_callback__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./directive/callback */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/callback.js");
5074
+ /* harmony import */ var _directive_create__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./directive/create */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/create.js");
5075
+ /* harmony import */ var _directive_dispatch__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./directive/dispatch */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/dispatch.js");
5076
+ /* harmony import */ var _directive_event__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./directive/event */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/event.js");
5077
+ /* harmony import */ var _directive_expand__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./directive/expand */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/expand.js");
5078
+ /* harmony import */ var _directive_flatten__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./directive/flatten */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/flatten.js");
5079
+ /* harmony import */ var _directive_get_value__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./directive/get-value */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/get-value.js");
5080
+ /* harmony import */ var _directive_key_value__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./directive/key-value */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/key-value.js");
5081
+ /* harmony import */ var _directive_lazy__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./directive/lazy */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/lazy.js");
5082
+ /* harmony import */ var _directive_manager__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./directive/manager */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/manager.js");
5083
+ /* harmony import */ var _directive_options__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./directive/options */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/options.js");
5084
+ /* harmony import */ var _directive_process__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./directive/process */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/process.js");
5085
+ /* harmony import */ var _directive_transition__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./directive/transition */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/transition.js");
5086
+ /* harmony import */ var _directive_traverse__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./directive/traverse */ "./node_modules/@benbraide/inlinejs/lib/esm/directive/traverse.js");
5087
+ /* harmony import */ var _magic_add__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./magic/add */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/add.js");
5088
+ /* harmony import */ var _magic_callback__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./magic/callback */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/callback.js");
5089
+ /* harmony import */ var _magic_evaluate__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./magic/evaluate */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/evaluate.js");
5090
+ /* harmony import */ var _magic_manager__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./magic/manager */ "./node_modules/@benbraide/inlinejs/lib/esm/magic/manager.js");
5091
+ /* harmony import */ var _expansion_bind__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./expansion/bind */ "./node_modules/@benbraide/inlinejs/lib/esm/expansion/bind.js");
5092
+ /* harmony import */ var _expansion_class__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./expansion/class */ "./node_modules/@benbraide/inlinejs/lib/esm/expansion/class.js");
5093
+ /* harmony import */ var _expansion_on__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./expansion/on */ "./node_modules/@benbraide/inlinejs/lib/esm/expansion/on.js");
5094
+ /* harmony import */ var _observers_mutation__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./observers/mutation */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/mutation.js");
5095
+ /* harmony import */ var _observers_intersection__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./observers/intersection */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/intersection.js");
5096
+ /* harmony import */ var _observers_intersection_options__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./observers/intersection-options */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/intersection-options.js");
5097
+ /* harmony import */ var _observers_resize__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./observers/resize */ "./node_modules/@benbraide/inlinejs/lib/esm/observers/resize.js");
5098
+ /* harmony import */ var _journal_error__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./journal/error */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/error.js");
5099
+ /* harmony import */ var _journal_log__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./journal/log */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/log.js");
5100
+ /* harmony import */ var _journal_try__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./journal/try */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/try.js");
5101
+ /* harmony import */ var _journal_warn__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./journal/warn */ "./node_modules/@benbraide/inlinejs/lib/esm/journal/warn.js");
5102
+ /* harmony import */ var _storage_get_access__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./storage/get-access */ "./node_modules/@benbraide/inlinejs/lib/esm/storage/get-access.js");
5103
+ /* harmony import */ var _initialization_dev__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./initialization/dev */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/dev.js");
5104
+ /* harmony import */ var _initialization_global__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./initialization/global */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/global.js");
5105
+ /* harmony import */ var _initialization_utilities__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./initialization/utilities */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/utilities.js");
5106
+ /* harmony import */ var _initialization_values__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./initialization/values */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/values.js");
5107
+ /* harmony import */ var _initialization_version__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./initialization/version */ "./node_modules/@benbraide/inlinejs/lib/esm/initialization/version.js");
5108
+ /* harmony import */ var _entry__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./entry */ "./node_modules/@benbraide/inlinejs/lib/esm/entry.js");
5109
+
5110
+
5008
5111
 
5009
5112
 
5010
5113
 
@@ -5254,6 +5357,8 @@ __webpack_require__.r(__webpack_exports__);
5254
5357
  /* harmony import */ var _utilities_find_ancestor__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../utilities/find-ancestor */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/find-ancestor.js");
5255
5358
  /* harmony import */ var _component_insert_html__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../component/insert-html */ "./node_modules/@benbraide/inlinejs/lib/esm/component/insert-html.js");
5256
5359
  /* harmony import */ var _utilities_template__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../utilities/template */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/template.js");
5360
+ /* harmony import */ var _utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../utilities/is-custom-element */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js");
5361
+
5257
5362
 
5258
5363
 
5259
5364
 
@@ -5297,6 +5402,7 @@ function InitializeUtilities() {
5297
5402
  getTargets: _utilities_get_target__WEBPACK_IMPORTED_MODULE_6__.GetTargets,
5298
5403
  isEqual: _utilities_is_equal__WEBPACK_IMPORTED_MODULE_7__.IsEqual,
5299
5404
  isObject: _utilities_is_object__WEBPACK_IMPORTED_MODULE_8__.IsObject,
5405
+ isCustomElement: _utilities_is_custom_element__WEBPACK_IMPORTED_MODULE_25__.IsCustomElement,
5300
5406
  toString: _utilities_to_string__WEBPACK_IMPORTED_MODULE_9__.ToString,
5301
5407
  deepCopy: _utilities_deep_copy__WEBPACK_IMPORTED_MODULE_10__.DeepCopy,
5302
5408
  mergeObjects: _utilities_merge_objects__WEBPACK_IMPORTED_MODULE_11__.MergeObjects,
@@ -6809,6 +6915,18 @@ __webpack_require__.r(__webpack_exports__);
6809
6915
 
6810
6916
 
6811
6917
 
6918
+ /***/ }),
6919
+
6920
+ /***/ "./node_modules/@benbraide/inlinejs/lib/esm/types/custom-element.js":
6921
+ /*!**************************************************************************!*\
6922
+ !*** ./node_modules/@benbraide/inlinejs/lib/esm/types/custom-element.js ***!
6923
+ \**************************************************************************/
6924
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
6925
+
6926
+ __webpack_require__.r(__webpack_exports__);
6927
+
6928
+
6929
+
6812
6930
  /***/ }),
6813
6931
 
6814
6932
  /***/ "./node_modules/@benbraide/inlinejs/lib/esm/types/directive.js":
@@ -7465,6 +7583,26 @@ function IsBooleanAttribute(element, name) {
7465
7583
  }
7466
7584
 
7467
7585
 
7586
+ /***/ }),
7587
+
7588
+ /***/ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js":
7589
+ /*!*********************************************************************************!*\
7590
+ !*** ./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js ***!
7591
+ \*********************************************************************************/
7592
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7593
+
7594
+ __webpack_require__.r(__webpack_exports__);
7595
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
7596
+ /* harmony export */ IsCustomElement: () => (/* binding */ IsCustomElement)
7597
+ /* harmony export */ });
7598
+ /* harmony import */ var _component_get_config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../component/get-config */ "./node_modules/@benbraide/inlinejs/lib/esm/component/get-config.js");
7599
+
7600
+ function IsCustomElement(element) {
7601
+ const tagName = element.tagName.toLowerCase();
7602
+ return (0,_component_get_config__WEBPACK_IMPORTED_MODULE_0__.GetConfig)().MatchesElement(tagName) && customElements.get(tagName) && element.matches(':defined');
7603
+ }
7604
+
7605
+
7468
7606
  /***/ }),
7469
7607
 
7470
7608
  /***/ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-equal.js":
@@ -7942,14 +8080,13 @@ __webpack_require__.r(__webpack_exports__);
7942
8080
  /* harmony export */ IsInsideTemplate: () => (/* binding */ IsInsideTemplate),
7943
8081
  /* harmony export */ IsTemplate: () => (/* binding */ IsTemplate)
7944
8082
  /* harmony export */ });
8083
+ /* harmony import */ var _is_custom_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./is-custom-element */ "./node_modules/@benbraide/inlinejs/lib/esm/utilities/is-custom-element.js");
8084
+
7945
8085
  function IsTemplate(element) {
7946
8086
  if (element instanceof HTMLTemplateElement) {
7947
8087
  return true;
7948
8088
  }
7949
- if ('IsTemplate' in element && typeof element.IsTemplate === 'function') {
7950
- return !!element.IsTemplate();
7951
- }
7952
- return false;
8089
+ return (0,_is_custom_element__WEBPACK_IMPORTED_MODULE_0__.IsCustomElement)(element) && element.IsTemplate();
7953
8090
  }
7954
8091
  function IsInsideTemplate(element) {
7955
8092
  for (let parent = element.parentNode; parent; parent = parent.parentNode) {
@@ -8289,17 +8426,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8289
8426
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
8290
8427
  return c > 3 && r && Object.defineProperty(target, key, r), r;
8291
8428
  };
8292
- var __rest = (this && this.__rest) || function (s, e) {
8293
- var t = {};
8294
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
8295
- t[p] = s[p];
8296
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
8297
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8298
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8299
- t[p[i]] = s[p[i]];
8300
- }
8301
- return t;
8302
- };
8303
8429
  Object.defineProperty(exports, "__esModule", ({ value: true }));
8304
8430
  exports.StripeFieldElementCompact = exports.StripeFieldElement = void 0;
8305
8431
  const inlinejs_1 = __webpack_require__(/*! @benbraide/inlinejs */ "./node_modules/@benbraide/inlinejs/lib/esm/index.js");
@@ -8346,68 +8472,66 @@ class StripeFieldElement extends generic_field_1.StripeGenericField {
8346
8472
  AddDetails(details) {
8347
8473
  (this.stripeField_ && (this.type === 'card' || this.type === 'number' || this.type === 'cardNumber')) && (details.method = this.stripeField_);
8348
8474
  }
8349
- HandleElementScopeCreated_(_a, postAttributesCallback) {
8350
- var { scope } = _a, rest = __rest(_a, ["scope"]);
8351
- super.HandleElementScopeCreated_(Object.assign({ scope }, rest), postAttributesCallback);
8352
- scope.AddPostProcessCallback(() => {
8475
+ HandleElementScopeDestroyed_(scope) {
8476
+ var _a;
8477
+ super.HandleElementScopeDestroyed_(scope);
8478
+ (_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.RemoveStripeField(this);
8479
+ this.stripeField_ = null;
8480
+ }
8481
+ HandlePostProcess_() {
8482
+ var _a;
8483
+ super.HandlePostProcess_();
8484
+ (_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.WaitInstance().then((details) => {
8353
8485
  var _a;
8354
- (_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.WaitInstance().then((details) => {
8355
- var _a;
8356
- if (!(details === null || details === void 0 ? void 0 : details.stripe) || !details.elements) {
8357
- return;
8358
- }
8359
- let type = '';
8360
- if (['number', 'expiry', 'cvc'].includes(this.type)) {
8361
- type = `card${this.type.substring(0, 1).toUpperCase()}${this.type.substring(1)}`;
8362
- }
8363
- else if (['card', 'cardNumber', 'cardExpiry', 'cardCvc', 'postalCode', 'paymentRequestButton', 'iban', 'idealBank'].includes(this.type)) {
8364
- type = this.type;
8365
- }
8366
- if (!type) {
8367
- (0, inlinejs_1.JournalWarn)('The element type provided is invalid.', 'StripeField.Mount', this);
8368
- return;
8486
+ if (!(details === null || details === void 0 ? void 0 : details.stripe) || !details.elements) {
8487
+ return;
8488
+ }
8489
+ let type = '';
8490
+ if (['number', 'expiry', 'cvc'].includes(this.type)) {
8491
+ type = `card${this.type.substring(0, 1).toUpperCase()}${this.type.substring(1)}`;
8492
+ }
8493
+ else if (['card', 'cardNumber', 'cardExpiry', 'cardCvc', 'postalCode', 'paymentRequestButton', 'iban', 'idealBank'].includes(this.type)) {
8494
+ type = this.type;
8495
+ }
8496
+ if (!type) {
8497
+ (0, inlinejs_1.JournalWarn)('The element type provided is invalid.', 'StripeField.Mount', this);
8498
+ return;
8499
+ }
8500
+ this.stripeField_ = details.elements.create(type, (this.options || ((_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.options) || undefined));
8501
+ this.stripeField_.on('ready', () => {
8502
+ this.isReady_ = true;
8503
+ this.oncustomready && (0, inlinejs_1.EvaluateLater)({
8504
+ componentId: this.componentId_,
8505
+ contextElement: this,
8506
+ expression: this.oncustomready,
8507
+ disableFunctionCall: false,
8508
+ })();
8509
+ this.readyWaiters_.splice(0).forEach(waiter => (0, inlinejs_1.JournalTry)(waiter));
8510
+ });
8511
+ this.stripeField_.on('change', (event) => {
8512
+ if (((event === null || event === void 0 ? void 0 : event.error) || null) !== this.lastError_) {
8513
+ this.lastError_ = ((event === null || event === void 0 ? void 0 : event.error) || null);
8514
+ this.oncustomerror && (0, inlinejs_1.EvaluateLater)({
8515
+ componentId: this.componentId_,
8516
+ contextElement: this,
8517
+ expression: this.oncustomerror,
8518
+ disableFunctionCall: false,
8519
+ })(undefined, [this.lastError_], { error: this.lastError_ });
8520
+ this.changeListeners.forEach(listener => (0, inlinejs_1.JournalTry)(() => listener('error', this.lastError_)));
8369
8521
  }
8370
- this.stripeField_ = details.elements.create(type, (this.options || ((_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.options) || undefined));
8371
- this.stripeField_.on('ready', () => {
8372
- this.isReady_ = true;
8373
- this.oncustomready && (0, inlinejs_1.EvaluateLater)({
8522
+ if (((event === null || event === void 0 ? void 0 : event.complete) || false) != this.isComplete_) {
8523
+ this.isComplete_ = ((event === null || event === void 0 ? void 0 : event.complete) || false);
8524
+ this.oncustomcomplete && (0, inlinejs_1.EvaluateLater)({
8374
8525
  componentId: this.componentId_,
8375
8526
  contextElement: this,
8376
- expression: this.oncustomready,
8527
+ expression: this.oncustomcomplete,
8377
8528
  disableFunctionCall: false,
8378
- })();
8379
- this.readyWaiters_.splice(0).forEach(waiter => (0, inlinejs_1.JournalTry)(waiter));
8380
- });
8381
- this.stripeField_.on('change', (event) => {
8382
- if (((event === null || event === void 0 ? void 0 : event.error) || null) !== this.lastError_) {
8383
- this.lastError_ = ((event === null || event === void 0 ? void 0 : event.error) || null);
8384
- this.oncustomerror && (0, inlinejs_1.EvaluateLater)({
8385
- componentId: this.componentId_,
8386
- contextElement: this,
8387
- expression: this.oncustomerror,
8388
- disableFunctionCall: false,
8389
- })(undefined, [this.lastError_], { error: this.lastError_ });
8390
- this.changeListeners.forEach(listener => (0, inlinejs_1.JournalTry)(() => listener('error', this.lastError_)));
8391
- }
8392
- if (((event === null || event === void 0 ? void 0 : event.complete) || false) != this.isComplete_) {
8393
- this.isComplete_ = ((event === null || event === void 0 ? void 0 : event.complete) || false);
8394
- this.oncustomcomplete && (0, inlinejs_1.EvaluateLater)({
8395
- componentId: this.componentId_,
8396
- contextElement: this,
8397
- expression: this.oncustomcomplete,
8398
- disableFunctionCall: false,
8399
- })(undefined, [this.isComplete_], { complete: this.isComplete_ });
8400
- this.changeListeners.forEach(listener => (0, inlinejs_1.JournalTry)(() => listener('complete', this.isComplete_)));
8401
- }
8402
- });
8403
- this.stripeField_.mount(this);
8404
- }).catch(err => (0, inlinejs_1.JournalError)(err, 'StripeField.Mount', this));
8405
- });
8406
- scope.AddUninitCallback(() => {
8407
- var _a;
8408
- (_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.RemoveStripeField(this);
8409
- this.stripeField_ = null;
8410
- });
8529
+ })(undefined, [this.isComplete_], { complete: this.isComplete_ });
8530
+ this.changeListeners.forEach(listener => (0, inlinejs_1.JournalTry)(() => listener('complete', this.isComplete_)));
8531
+ }
8532
+ });
8533
+ this.stripeField_.mount(this);
8534
+ }).catch(err => (0, inlinejs_1.JournalError)(err, 'StripeField.Mount', this));
8411
8535
  }
8412
8536
  }
8413
8537
  __decorate([
@@ -8447,17 +8571,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8447
8571
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
8448
8572
  return c > 3 && r && Object.defineProperty(target, key, r), r;
8449
8573
  };
8450
- var __rest = (this && this.__rest) || function (s, e) {
8451
- var t = {};
8452
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
8453
- t[p] = s[p];
8454
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
8455
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8456
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8457
- t[p[i]] = s[p[i]];
8458
- }
8459
- return t;
8460
- };
8461
8574
  Object.defineProperty(exports, "__esModule", ({ value: true }));
8462
8575
  exports.StripeGenericField = void 0;
8463
8576
  const inlinejs_1 = __webpack_require__(/*! @benbraide/inlinejs */ "./node_modules/@benbraide/inlinejs/lib/esm/index.js");
@@ -8478,13 +8591,10 @@ class StripeGenericField extends inlinejs_element_1.CustomElement {
8478
8591
  ToggleFocus(focused) { }
8479
8592
  Reset() { }
8480
8593
  AddDetails(details) { }
8481
- HandleElementScopeCreated_(_a, postAttributesCallback) {
8482
- var { scope } = _a, rest = __rest(_a, ["scope"]);
8483
- super.HandleElementScopeCreated_(Object.assign({ scope }, rest), () => {
8484
- var _a;
8485
- (_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.AddStripeField(this);
8486
- postAttributesCallback && postAttributesCallback();
8487
- });
8594
+ HandlePostAttributesProcessPostfix_() {
8595
+ var _a;
8596
+ super.HandlePostAttributesProcessPostfix_();
8597
+ (_a = this.GetStripe_()) === null || _a === void 0 ? void 0 : _a.AddStripeField(this);
8488
8598
  }
8489
8599
  GetStripe_() {
8490
8600
  return (this.stripe || (0, inlinejs_1.FindAncestor)(this, ancestor => ('AddStripeField' in ancestor)));
@@ -8552,17 +8662,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8552
8662
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
8553
8663
  return c > 3 && r && Object.defineProperty(target, key, r), r;
8554
8664
  };
8555
- var __rest = (this && this.__rest) || function (s, e) {
8556
- var t = {};
8557
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
8558
- t[p] = s[p];
8559
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
8560
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8561
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8562
- t[p[i]] = s[p[i]];
8563
- }
8564
- return t;
8565
- };
8566
8665
  Object.defineProperty(exports, "__esModule", ({ value: true }));
8567
8666
  exports.StripeElementCompact = exports.StripeElement = void 0;
8568
8667
  const inlinejs_1 = __webpack_require__(/*! @benbraide/inlinejs */ "./node_modules/@benbraide/inlinejs/lib/esm/index.js");
@@ -8704,11 +8803,13 @@ class StripeElement extends inlinejs_element_1.CustomElement {
8704
8803
  this.isReady_ ? resolve() : this.readyWaiters_.push(() => resolve());
8705
8804
  });
8706
8805
  }
8707
- HandleElementScopeCreated_(_a, postAttributesCallback) {
8708
- var { scope } = _a, rest = __rest(_a, ["scope"]);
8709
- super.HandleElementScopeCreated_(Object.assign({ scope }, rest), postAttributesCallback);
8710
- scope.AddPostProcessCallback(() => (!this.defer && this.Mount()));
8711
- scope.AddUninitCallback(() => (this.stripe_ = null));
8806
+ HandleElementScopeDestroyed_(scope) {
8807
+ super.HandleElementScopeDestroyed_(scope);
8808
+ this.stripe_ = null;
8809
+ }
8810
+ HandlePostProcess_() {
8811
+ super.HandlePostProcess_();
8812
+ !this.defer && this.Mount();
8712
8813
  }
8713
8814
  PayOrSetup_(pay, clientSecret, save = false) {
8714
8815
  return new Promise((resolve, reject) => {