bhl-forms 0.0.29 → 0.0.32

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.
@@ -27,7 +27,7 @@ function _regeneratorRuntime() {
27
27
  var exports = {}, Op = Object.prototype, hasOwn4 = Op.hasOwnProperty, $Symbol2 = typeof Symbol == "function" ? Symbol : {}, iteratorSymbol = $Symbol2.iterator || "@@iterator", asyncIteratorSymbol = $Symbol2.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol2.toStringTag || "@@toStringTag";
28
28
  function define2(obj, key, value) {
29
29
  return Object.defineProperty(obj, key, {
30
- value,
30
+ value: value,
31
31
  enumerable: true,
32
32
  configurable: true,
33
33
  writable: true
@@ -323,8 +323,8 @@ function _regeneratorRuntime() {
323
323
  delegateYield: function(iterable, resultName, nextLoc) {
324
324
  return this.delegate = {
325
325
  iterator: values4(iterable),
326
- resultName,
327
- nextLoc
326
+ resultName: resultName,
327
+ nextLoc: nextLoc
328
328
  }, this.method === "next" && (this.arg = void 0), ContinueSentinel;
329
329
  }
330
330
  }, exports;
@@ -394,7 +394,7 @@ function _createClass(Constructor, protoProps, staticProps) {
394
394
  function _defineProperty(obj, key, value) {
395
395
  if (key in obj) {
396
396
  Object.defineProperty(obj, key, {
397
- value,
397
+ value: value,
398
398
  enumerable: true,
399
399
  configurable: true,
400
400
  writable: true
@@ -610,7 +610,7 @@ var createPropertyDescriptor$8 = function(bitmap, value) {
610
610
  enumerable: !(bitmap & 1),
611
611
  configurable: !(bitmap & 2),
612
612
  writable: !(bitmap & 4),
613
- value
613
+ value: value
614
614
  };
615
615
  };
616
616
  var NATIVE_BIND$3 = functionBindNative;
@@ -751,7 +751,7 @@ var global$E = global$H;
751
751
  var defineProperty$e = Object.defineProperty;
752
752
  var defineGlobalProperty$3 = function(key, value) {
753
753
  try {
754
- defineProperty$e(global$E, key, { value, configurable: true, writable: true });
754
+ defineProperty$e(global$E, key, { value: value, configurable: true, writable: true });
755
755
  } catch (error2) {
756
756
  global$E[key] = value;
757
757
  }
@@ -960,9 +960,9 @@ var PROPER = EXISTS && function something() {
960
960
  }.name === "something";
961
961
  var CONFIGURABLE = EXISTS && (!DESCRIPTORS$n || DESCRIPTORS$n && getDescriptor(FunctionPrototype$2, "name").configurable);
962
962
  var functionName = {
963
- EXISTS,
964
- PROPER,
965
- CONFIGURABLE
963
+ EXISTS: EXISTS,
964
+ PROPER: PROPER,
965
+ CONFIGURABLE: CONFIGURABLE
966
966
  };
967
967
  var uncurryThis$N = functionUncurryThis;
968
968
  var isCallable$q = isCallable$w;
@@ -1050,8 +1050,8 @@ var internalState = {
1050
1050
  set: set$4,
1051
1051
  get: get$4,
1052
1052
  has: has$2,
1053
- enforce,
1054
- getterFor
1053
+ enforce: enforce,
1054
+ getterFor: getterFor
1055
1055
  };
1056
1056
  var fails$H = fails$O;
1057
1057
  var isCallable$o = isCallable$w;
@@ -1124,7 +1124,7 @@ var defineBuiltIn$j = function(O2, key, value, options2) {
1124
1124
  O2[key] = value;
1125
1125
  else
1126
1126
  definePropertyModule$7.f(O2, key, {
1127
- value,
1127
+ value: value,
1128
1128
  enumerable: false,
1129
1129
  configurable: !options2.nonConfigurable,
1130
1130
  writable: !options2.nonWritable
@@ -2405,7 +2405,7 @@ var BROKEN_CARET = UNSUPPORTED_Y$3 || fails$w(function() {
2405
2405
  return re.exec("str") != null;
2406
2406
  });
2407
2407
  var regexpStickyHelpers = {
2408
- BROKEN_CARET,
2408
+ BROKEN_CARET: BROKEN_CARET,
2409
2409
  MISSED_STICKY: MISSED_STICKY$2,
2410
2410
  UNSUPPORTED_Y: UNSUPPORTED_Y$3
2411
2411
  };
@@ -3310,7 +3310,7 @@ if (!queueMicrotask) {
3310
3310
  }
3311
3311
  }
3312
3312
  var microtask$1 = queueMicrotask || function(fn) {
3313
- var task2 = { fn, next: void 0 };
3313
+ var task2 = { fn: fn, next: void 0 };
3314
3314
  if (last)
3315
3315
  last.next = task2;
3316
3316
  if (!head) {
@@ -3339,7 +3339,7 @@ var Queue$1 = function() {
3339
3339
  };
3340
3340
  Queue$1.prototype = {
3341
3341
  add: function(item) {
3342
- var entry = { item, next: null };
3342
+ var entry = { item: item, next: null };
3343
3343
  if (this.head)
3344
3344
  this.tail.next = entry;
3345
3345
  else
@@ -3398,7 +3398,7 @@ var FORCED_PROMISE_CONSTRUCTOR$5 = isForced$2("Promise", function() {
3398
3398
  var promiseConstructorDetection = {
3399
3399
  CONSTRUCTOR: FORCED_PROMISE_CONSTRUCTOR$5,
3400
3400
  REJECTION_EVENT: NATIVE_PROMISE_REJECTION_EVENT$1,
3401
- SUBCLASSING
3401
+ SUBCLASSING: SUBCLASSING
3402
3402
  };
3403
3403
  var newPromiseCapability$2 = {};
3404
3404
  var aCallable$z = aCallable$F;
@@ -3529,7 +3529,7 @@ var dispatchEvent = function(name, promise2, reason) {
3529
3529
  event.initEvent(name, false, true);
3530
3530
  global$j.dispatchEvent(event);
3531
3531
  } else
3532
- event = { promise: promise2, reason };
3532
+ event = { promise: promise2, reason: reason };
3533
3533
  if (!NATIVE_PROMISE_REJECTION_EVENT && (handler = global$j["on" + name]))
3534
3534
  handler(event);
3535
3535
  else if (name === UNHANDLED_REJECTION)
@@ -3929,10 +3929,10 @@ var asyncIteratorCreateProxy = function(nextHandler, IS_ITERATOR) {
3929
3929
  state.done = true;
3930
3930
  var $$return = getMethod$3(iterator, "return");
3931
3931
  if ($$return === void 0)
3932
- return resolve3({ done: true, value });
3932
+ return resolve3({ done: true, value: value });
3933
3933
  Promise$2.resolve(call$v($$return, iterator, value)).then(function(result) {
3934
3934
  anObject$P(result);
3935
- resolve3({ done: true, value });
3935
+ resolve3({ done: true, value: value });
3936
3936
  }, reject2);
3937
3937
  });
3938
3938
  },
@@ -3968,7 +3968,7 @@ var AsyncIteratorProxy$1 = createAsyncIteratorProxy$1(function(Promise2, args) {
3968
3968
  return { done: true, value: void 0 };
3969
3969
  }
3970
3970
  return Promise2.resolve(mapper(step.value)).then(function(value) {
3971
- return { done: false, value };
3971
+ return { done: false, value: value };
3972
3972
  });
3973
3973
  });
3974
3974
  });
@@ -4494,7 +4494,7 @@ var es_array_iterator = defineIterator$2(Array, "Array", function(iterated, kind
4494
4494
  type: ARRAY_ITERATOR,
4495
4495
  target: toIndexedObject$4(iterated),
4496
4496
  index: 0,
4497
- kind
4497
+ kind: kind
4498
4498
  });
4499
4499
  }, function() {
4500
4500
  var state = getInternalState$4(this);
@@ -4636,7 +4636,7 @@ var enable = function() {
4636
4636
  }
4637
4637
  };
4638
4638
  var meta = internalMetadata.exports = {
4639
- enable,
4639
+ enable: enable,
4640
4640
  fastKey: fastKey$1,
4641
4641
  getWeakData: getWeakData$1,
4642
4642
  onFreeze: onFreeze$1
@@ -4707,7 +4707,7 @@ var collection$4 = function(CONSTRUCTOR_NAME, wrapper2, common) {
4707
4707
  anInstance$4(dummy, NativePrototype);
4708
4708
  var that = inheritIfRequired$1(new NativeConstructor(), dummy, Constructor);
4709
4709
  if (iterable != void 0)
4710
- iterate$u(iterable, that[ADDER], { that, AS_ENTRIES: IS_MAP });
4710
+ iterate$u(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
4711
4711
  return that;
4712
4712
  });
4713
4713
  Constructor.prototype = NativePrototype;
@@ -4757,7 +4757,7 @@ var collectionStrong$2 = {
4757
4757
  if (!DESCRIPTORS$c)
4758
4758
  that.size = 0;
4759
4759
  if (iterable != void 0)
4760
- iterate$t(iterable, that[ADDER], { that, AS_ENTRIES: IS_MAP });
4760
+ iterate$t(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
4761
4761
  });
4762
4762
  var Prototype = Constructor.prototype;
4763
4763
  var getInternalState2 = internalStateGetterFor$1(CONSTRUCTOR_NAME);
@@ -4770,8 +4770,8 @@ var collectionStrong$2 = {
4770
4770
  } else {
4771
4771
  state.last = entry = {
4772
4772
  index: index2 = fastKey(key, true),
4773
- key,
4774
- value,
4773
+ key: key,
4774
+ value: value,
4775
4775
  previous: previous = state.last,
4776
4776
  next: void 0,
4777
4777
  removed: false
@@ -4887,7 +4887,7 @@ var collectionStrong$2 = {
4887
4887
  type: ITERATOR_NAME,
4888
4888
  target: iterated,
4889
4889
  state: getInternalCollectionState(iterated),
4890
- kind,
4890
+ kind: kind,
4891
4891
  last: void 0
4892
4892
  });
4893
4893
  }, function() {
@@ -5301,7 +5301,7 @@ var $$1d = _export;
5301
5301
  var global$e = global$H;
5302
5302
  var setInterval = schedulersFix.setInterval;
5303
5303
  $$1d({ global: true, bind: true, forced: global$e.setInterval !== setInterval }, {
5304
- setInterval
5304
+ setInterval: setInterval
5305
5305
  });
5306
5306
  var $$1c = _export;
5307
5307
  var global$d = global$H;
@@ -5371,7 +5371,7 @@ var collectionWeak$2 = {
5371
5371
  frozen: void 0
5372
5372
  });
5373
5373
  if (iterable != void 0)
5374
- iterate$e(iterable, that[ADDER], { that, AS_ENTRIES: IS_MAP });
5374
+ iterate$e(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
5375
5375
  });
5376
5376
  var Prototype = Constructor.prototype;
5377
5377
  var getInternalState2 = internalStateGetterFor(CONSTRUCTOR_NAME);
@@ -5541,7 +5541,7 @@ var AsyncIteratorProxy = createAsyncIteratorProxy(function(Promise2, args) {
5541
5541
  } else {
5542
5542
  var value = step.value;
5543
5543
  Promise2.resolve(filterer(value)).then(function(selected) {
5544
- selected ? resolve3({ done: false, value }) : loop();
5544
+ selected ? resolve3({ done: false, value: value }) : loop();
5545
5545
  }, reject2);
5546
5546
  }
5547
5547
  } catch (err) {
@@ -6280,8 +6280,8 @@ var wrap = function(tag, description) {
6280
6280
  var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype$1);
6281
6281
  setInternalState$2(symbol, {
6282
6282
  type: SYMBOL,
6283
- tag,
6284
- description
6283
+ tag: tag,
6284
+ description: description
6285
6285
  });
6286
6286
  if (!DESCRIPTORS$a)
6287
6287
  symbol.description = description;
@@ -7409,7 +7409,7 @@ var def = function def2(obj, key, value) {
7409
7409
  Object.defineProperty(obj, key, {
7410
7410
  configurable: true,
7411
7411
  enumerable: false,
7412
- value
7412
+ value: value
7413
7413
  });
7414
7414
  };
7415
7415
  var toNumber = function toNumber2(val) {
@@ -7887,7 +7887,7 @@ function ownKeys$1(target) {
7887
7887
  }
7888
7888
  var mutableHandlers = {
7889
7889
  get: get$2,
7890
- set,
7890
+ set: set,
7891
7891
  deleteProperty: deleteProperty2,
7892
7892
  has: has$1,
7893
7893
  ownKeys: ownKeys$1
@@ -8031,11 +8031,11 @@ function createIterableMethod(method, isReadonly2, isShallow2) {
8031
8031
  next: function next3() {
8032
8032
  var _innerIterator$next = innerIterator.next(), value = _innerIterator$next.value, done = _innerIterator$next.done;
8033
8033
  return done ? {
8034
- value,
8035
- done
8034
+ value: value,
8035
+ done: done
8036
8036
  } : {
8037
8037
  value: isPair ? [wrap2(value[0]), wrap2(value[1])] : wrap2(value),
8038
- done
8038
+ done: done
8039
8039
  };
8040
8040
  }
8041
8041
  }, Symbol.iterator, function() {
@@ -8060,7 +8060,7 @@ function createInstrumentations() {
8060
8060
  add: add$1,
8061
8061
  set: set$1,
8062
8062
  "delete": deleteEntry,
8063
- clear,
8063
+ clear: clear,
8064
8064
  forEach: createForEach(false, false)
8065
8065
  };
8066
8066
  var shallowInstrumentations2 = {
@@ -8074,7 +8074,7 @@ function createInstrumentations() {
8074
8074
  add: add$1,
8075
8075
  set: set$1,
8076
8076
  "delete": deleteEntry,
8077
- clear,
8077
+ clear: clear,
8078
8078
  forEach: createForEach(false, true)
8079
8079
  };
8080
8080
  var readonlyInstrumentations2 = {
@@ -8705,11 +8705,11 @@ function renderComponentRoot(instance) {
8705
8705
  markAttrsAccessed();
8706
8706
  return attrs;
8707
8707
  },
8708
- slots,
8708
+ slots: slots,
8709
8709
  emit: emit2
8710
8710
  } : {
8711
- attrs,
8712
- slots,
8711
+ attrs: attrs,
8712
+ slots: slots,
8713
8713
  emit: emit2
8714
8714
  }) : _render(props2, null));
8715
8715
  fallthroughAttrs = Component.props ? attrs : getFunctionalFallthrough(attrs);
@@ -10015,7 +10015,7 @@ function createAppAPI(render, hydrate2) {
10015
10015
  _container: null,
10016
10016
  _context: context,
10017
10017
  _instance: null,
10018
- version,
10018
+ version: version,
10019
10019
  get config() {
10020
10020
  return context.config;
10021
10021
  },
@@ -10983,7 +10983,7 @@ function baseCreateRenderer(options2, createHydrationFns) {
10983
10983
  hydrateNode = _createHydrationFns2[1];
10984
10984
  }
10985
10985
  return {
10986
- render,
10986
+ render: render,
10987
10987
  hydrate: hydrate2,
10988
10988
  createApp: createAppAPI(render, hydrate2)
10989
10989
  };
@@ -11114,13 +11114,13 @@ function createBaseVNode(type) {
11114
11114
  var vnode = {
11115
11115
  __v_isVNode: true,
11116
11116
  __v_skip: true,
11117
- type,
11117
+ type: type,
11118
11118
  props: props2,
11119
11119
  key: props2 && normalizeKey(props2),
11120
11120
  ref: props2 && normalizeRef(props2),
11121
11121
  scopeId: currentScopeId,
11122
11122
  slotScopeIds: null,
11123
- children,
11123
+ children: children,
11124
11124
  component: null,
11125
11125
  suspense: null,
11126
11126
  ssContent: null,
@@ -11132,9 +11132,9 @@ function createBaseVNode(type) {
11132
11132
  target: null,
11133
11133
  targetAnchor: null,
11134
11134
  staticCount: 0,
11135
- shapeFlag,
11136
- patchFlag,
11137
- dynamicProps,
11135
+ shapeFlag: shapeFlag,
11136
+ patchFlag: patchFlag,
11137
+ dynamicProps: dynamicProps,
11138
11138
  dynamicChildren: null,
11139
11139
  appContext: null
11140
11140
  };
@@ -11213,7 +11213,7 @@ function cloneVNode(vnode, extraProps) {
11213
11213
  ref: extraProps && extraProps.ref ? mergeRef && ref2 ? isArray$1(ref2) ? ref2.concat(normalizeRef(extraProps)) : [ref2, normalizeRef(extraProps)] : normalizeRef(extraProps) : ref2,
11214
11214
  scopeId: vnode.scopeId,
11215
11215
  slotScopeIds: vnode.slotScopeIds,
11216
- children,
11216
+ children: children,
11217
11217
  target: vnode.target,
11218
11218
  targetAnchor: vnode.targetAnchor,
11219
11219
  staticCount: vnode.staticCount,
@@ -11335,10 +11335,10 @@ function createComponentInstance(vnode, parent, suspense) {
11335
11335
  var appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;
11336
11336
  var instance = {
11337
11337
  uid: uid$1++,
11338
- vnode,
11339
- type,
11340
- parent,
11341
- appContext,
11338
+ vnode: vnode,
11339
+ type: type,
11340
+ parent: parent,
11341
+ appContext: appContext,
11342
11342
  root: null,
11343
11343
  next: null,
11344
11344
  subTree: null,
@@ -11369,7 +11369,7 @@ function createComponentInstance(vnode, parent, suspense) {
11369
11369
  refs: EMPTY_OBJ,
11370
11370
  setupState: EMPTY_OBJ,
11371
11371
  setupContext: null,
11372
- suspense,
11372
+ suspense: suspense,
11373
11373
  suspenseId: suspense ? suspense.pendingId : 0,
11374
11374
  asyncDep: null,
11375
11375
  asyncResolved: false,
@@ -11483,8 +11483,8 @@ function finishComponentSetup(instance, isSSR, skipOptions) {
11483
11483
  var _instance$appContext$ = instance.appContext.config, isCustomElement = _instance$appContext$.isCustomElement, compilerOptions = _instance$appContext$.compilerOptions;
11484
11484
  var delimiters = Component.delimiters, componentCompilerOptions = Component.compilerOptions;
11485
11485
  var finalCompilerOptions = extend$1(extend$1({
11486
- isCustomElement,
11487
- delimiters
11486
+ isCustomElement: isCustomElement,
11487
+ delimiters: delimiters
11488
11488
  }, compilerOptions), componentCompilerOptions);
11489
11489
  Component.render = compile$1(template, finalCompilerOptions);
11490
11490
  }
@@ -11519,7 +11519,7 @@ function createSetupContext(instance) {
11519
11519
  },
11520
11520
  slots: instance.slots,
11521
11521
  emit: instance.emit,
11522
- expose
11522
+ expose: expose
11523
11523
  };
11524
11524
  }
11525
11525
  }
@@ -11919,7 +11919,7 @@ function shouldSetAsProp(el, key, value, isSVG) {
11919
11919
  return key in el;
11920
11920
  }
11921
11921
  var rendererOptions = /* @__PURE__ */ extend$1({
11922
- patchProp
11922
+ patchProp: patchProp
11923
11923
  }, nodeOps);
11924
11924
  var renderer;
11925
11925
  function ensureRenderer() {
@@ -12096,7 +12096,7 @@ var URLSearchParamsIterator = createIteratorConstructor(function Iterator2(param
12096
12096
  setInternalState$1(this, {
12097
12097
  type: URL_SEARCH_PARAMS_ITERATOR,
12098
12098
  iterator: getIterator(getInternalParamsState(params).entries),
12099
- kind
12099
+ kind: kind
12100
12100
  });
12101
12101
  }, "Iterator", function next2() {
12102
12102
  var state = getInternalIteratorState(this);
@@ -12140,7 +12140,7 @@ URLSearchParamsState.prototype = {
12140
12140
  } else
12141
12141
  for (var key in object)
12142
12142
  if (hasOwn$1(object, key)) {
12143
- push$3(this.entries, { key, value: $toString$1(object[key]) });
12143
+ push$3(this.entries, { key: key, value: $toString$1(object[key]) });
12144
12144
  }
12145
12145
  },
12146
12146
  parseQuery: function(query) {
@@ -12262,7 +12262,7 @@ defineBuiltIns(URLSearchParamsPrototype, {
12262
12262
  }
12263
12263
  }
12264
12264
  if (!found)
12265
- push$3(entries3, { key, value: val });
12265
+ push$3(entries3, { key: key, value: val });
12266
12266
  state.updateURL();
12267
12267
  },
12268
12268
  sort: function sort2() {
@@ -12439,7 +12439,7 @@ var __defNormalProp = function __defNormalProp2(obj, key, value) {
12439
12439
  enumerable: true,
12440
12440
  configurable: true,
12441
12441
  writable: true,
12442
- value
12442
+ value: value
12443
12443
  }) : obj[key] = value;
12444
12444
  };
12445
12445
  var __spreadValues = function __spreadValues2(a2, b2) {
@@ -12493,7 +12493,7 @@ function usePrepop() {
12493
12493
  };
12494
12494
  return {
12495
12495
  prepopPlugin: prepopPlugin2,
12496
- prepopSettings
12496
+ prepopSettings: prepopSettings
12497
12497
  };
12498
12498
  }
12499
12499
  function token$1() {
@@ -12651,10 +12651,10 @@ function createEmitter$1() {
12651
12651
  var _eventName$split = eventName.split("."), _eventName$split2 = _toArray(_eventName$split), event = _eventName$split2[0], modifiers = _eventName$split2.slice(1);
12652
12652
  var receipt = listener2.receipt || token$1();
12653
12653
  var wrapper2 = {
12654
- modifiers,
12655
- event,
12654
+ modifiers: modifiers,
12655
+ event: event,
12656
12656
  listener: listener2,
12657
- receipt
12657
+ receipt: receipt
12658
12658
  };
12659
12659
  listeners.has(event) ? listeners.get(event).push(wrapper2) : listeners.set(event, [wrapper2]);
12660
12660
  receipts2.has(receipt) ? receipts2.get(receipt).push(event) : receipts2.set(receipt, [event]);
@@ -12703,8 +12703,8 @@ function createEmitter$1() {
12703
12703
  function emit$1$1(node3, context, name, payload) {
12704
12704
  var bubble2 = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : true;
12705
12705
  context._e(node3, {
12706
- payload,
12707
- name,
12706
+ payload: payload,
12707
+ name: name,
12708
12708
  bubble: bubble2,
12709
12709
  origin: node3
12710
12710
  });
@@ -12741,14 +12741,14 @@ warningHandler$1(function(warning, next3) {
12741
12741
  function warn$1(code) {
12742
12742
  var data2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
12743
12743
  warningHandler$1.dispatch({
12744
- code,
12744
+ code: code,
12745
12745
  data: data2
12746
12746
  });
12747
12747
  }
12748
12748
  function error$1(code) {
12749
12749
  var data2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
12750
12750
  throw Error(errorHandler$1.dispatch({
12751
- code,
12751
+ code: code,
12752
12752
  data: data2
12753
12753
  }).message);
12754
12754
  }
@@ -12830,8 +12830,8 @@ function configChange$1(node3, prop, value) {
12830
12830
  !(prop in node3.config._t) ? node3.emit("config:".concat(prop), value, false) : usingFallback = false;
12831
12831
  if (!(prop in node3.props)) {
12832
12832
  node3.emit("prop", {
12833
- prop,
12834
- value
12833
+ prop: prop,
12834
+ value: value
12835
12835
  });
12836
12836
  node3.emit("prop:".concat(prop), value);
12837
12837
  }
@@ -13426,9 +13426,9 @@ function createConfig$2() {
13426
13426
  function text$3(node3, _context, key) {
13427
13427
  var type = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "ui";
13428
13428
  var fragment3 = typeof key === "string" ? {
13429
- key,
13429
+ key: key,
13430
13430
  value: key,
13431
- type
13431
+ type: type
13432
13432
  } : key;
13433
13433
  var value = node3.hook.text.dispatch(fragment3);
13434
13434
  node3.emit("text", value, false);
@@ -13727,7 +13727,7 @@ function useSteps() {
13727
13727
  firstStep: firstStep2,
13728
13728
  lastStep: lastStep2,
13729
13729
  setStep: setStep2,
13730
- setStepQueue,
13730
+ setStepQueue: setStepQueue,
13731
13731
  setNextStep: setNextStep2,
13732
13732
  setPreviousStep: setPreviousStep2
13733
13733
  };
@@ -13736,10 +13736,10 @@ var _usePrepop = usePrepop(), prepopPlugin = _usePrepop.prepopPlugin;
13736
13736
  var _useSteps = useSteps(), stepPlugin = _useSteps.stepPlugin, steps = _useSteps.steps, stepHistory = _useSteps.stepHistory, stepQueue = _useSteps.stepQueue, enabledSteps = _useSteps.enabledSteps, activeStep = _useSteps.activeStep, _firstStep = _useSteps.firstStep, _lastStep = _useSteps.lastStep, _setStep = _useSteps.setStep, _setNextStep = _useSteps.setNextStep, _setPreviousStep = _useSteps.setPreviousStep;
13737
13737
  var urlParams$1 = new URLSearchParams(window.location.search);
13738
13738
  var dataDefaults = {
13739
- steps,
13740
- activeStep,
13741
- stepHistory,
13742
- stepQueue,
13739
+ steps: steps,
13740
+ activeStep: activeStep,
13741
+ stepHistory: stepHistory,
13742
+ stepQueue: stepQueue,
13743
13743
  plugins: [stepPlugin, prepopPlugin],
13744
13744
  urlParam: function urlParam(name) {
13745
13745
  var backup = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
@@ -13764,7 +13764,7 @@ var dataDefaults = {
13764
13764
  setStep: function setStep(nextStep, validate2) {
13765
13765
  return function() {
13766
13766
  return _setStep({
13767
- nextStep,
13767
+ nextStep: nextStep,
13768
13768
  validate: validate2
13769
13769
  });
13770
13770
  };
@@ -13994,7 +13994,7 @@ var toString$2 = toString$o;
13994
13994
  var fails$1 = fails$O;
13995
13995
  var charAt$2 = uncurryThis$4("".charAt);
13996
13996
  var FORCED$1 = fails$1(function() {
13997
- return "\u{20BB7}".at(-2) !== "\uD842";
13997
+ return "\uD842\uDFB7".at(-2) !== "\uD842";
13998
13998
  });
13999
13999
  $$7({ target: "String", proto: true, forced: FORCED$1 }, {
14000
14000
  at: function at2(index2) {
@@ -14427,10 +14427,10 @@ function createEmitter() {
14427
14427
  var _eventName$split = eventName.split("."), _eventName$split2 = _toArray(_eventName$split), event = _eventName$split2[0], modifiers = _eventName$split2.slice(1);
14428
14428
  var receipt = listener2.receipt || token();
14429
14429
  var wrapper2 = {
14430
- modifiers,
14431
- event,
14430
+ modifiers: modifiers,
14431
+ event: event,
14432
14432
  listener: listener2,
14433
- receipt
14433
+ receipt: receipt
14434
14434
  };
14435
14435
  listeners.has(event) ? listeners.get(event).push(wrapper2) : listeners.set(event, [wrapper2]);
14436
14436
  receipts2.has(receipt) ? receipts2.get(receipt).push(event) : receipts2.set(receipt, [event]);
@@ -14479,8 +14479,8 @@ function createEmitter() {
14479
14479
  function emit$1(node3, context, name, payload) {
14480
14480
  var bubble2 = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : true;
14481
14481
  context._e(node3, {
14482
- payload,
14483
- name,
14482
+ payload: payload,
14483
+ name: name,
14484
14484
  bubble: bubble2,
14485
14485
  origin: node3
14486
14486
  });
@@ -14517,14 +14517,14 @@ warningHandler(function(warning, next3) {
14517
14517
  function warn(code) {
14518
14518
  var data2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
14519
14519
  warningHandler.dispatch({
14520
- code,
14520
+ code: code,
14521
14521
  data: data2
14522
14522
  });
14523
14523
  }
14524
14524
  function error(code) {
14525
14525
  var data2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
14526
14526
  throw Error(errorHandler.dispatch({
14527
- code,
14527
+ code: code,
14528
14528
  data: data2
14529
14529
  }).message);
14530
14530
  }
@@ -14796,7 +14796,7 @@ function createCounter(node3, ledger, counterName, condition) {
14796
14796
  condition = parseCondition(condition || counterName);
14797
14797
  if (!has4(ledger, counterName)) {
14798
14798
  var counter2 = {
14799
- condition,
14799
+ condition: condition,
14800
14800
  count: 0,
14801
14801
  name: counterName,
14802
14802
  node: node3,
@@ -14904,8 +14904,8 @@ function configChange(node3, prop, value) {
14904
14904
  !(prop in node3.config._t) ? node3.emit("config:".concat(prop), value, false) : usingFallback = false;
14905
14905
  if (!(prop in node3.props)) {
14906
14906
  node3.emit("prop", {
14907
- prop,
14908
- value
14907
+ prop: prop,
14908
+ value: value
14909
14909
  });
14910
14910
  node3.emit("prop:".concat(prop), value);
14911
14911
  }
@@ -15545,9 +15545,9 @@ function createConfig() {
15545
15545
  function text$2(node3, _context, key) {
15546
15546
  var type = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "ui";
15547
15547
  var fragment3 = typeof key === "string" ? {
15548
- key,
15548
+ key: key,
15549
15549
  value: key,
15550
- type
15550
+ type: type
15551
15551
  } : key;
15552
15552
  var value = node3.hook.text.dispatch(fragment3);
15553
15553
  node3.emit("text", value, false);
@@ -15632,8 +15632,8 @@ function createProps(initial) {
15632
15632
  var didSet = Reflect.set(target, prop, value, receiver);
15633
15633
  if (isEmitting) {
15634
15634
  node3.emit("prop", {
15635
- prop,
15636
- value
15635
+ prop: prop,
15636
+ value: value
15637
15637
  });
15638
15638
  if (typeof prop === "string")
15639
15639
  node3.emit("prop:".concat(prop), value);
@@ -15673,7 +15673,7 @@ function createContext(options2) {
15673
15673
  _tmo: false,
15674
15674
  _value: value,
15675
15675
  children: dedupe(options2.children || []),
15676
- config,
15676
+ config: config,
15677
15677
  hook: createHooks(),
15678
15678
  isCreated: false,
15679
15679
  isSettled: true,
@@ -15686,7 +15686,7 @@ function createContext(options2) {
15686
15686
  store: createStore(true),
15687
15687
  traps: createTraps(),
15688
15688
  type: options2.type || "input",
15689
- value
15689
+ value: value
15690
15690
  };
15691
15691
  }
15692
15692
  function nodeInit(node3, options2) {
@@ -15781,16 +15781,16 @@ function sugar(node3) {
15781
15781
  return Object.assign({
15782
15782
  $cmp: "FormKit",
15783
15783
  props: _objectSpread2(_objectSpread2({}, props2), {}, {
15784
- type
15784
+ type: type
15785
15785
  })
15786
15786
  }, condition ? {
15787
15787
  "if": condition
15788
15788
  } : {}, iterator ? {
15789
15789
  "for": iterator
15790
15790
  } : {}, children ? {
15791
- children
15791
+ children: children
15792
15792
  } : {}, key ? {
15793
- key
15793
+ key: key
15794
15794
  } : {}, bind3 ? {
15795
15795
  bind: bind3
15796
15796
  } : {});
@@ -16137,7 +16137,7 @@ function generateClassList(node3, property) {
16137
16137
  return Object.assign(finalClassList, classList2);
16138
16138
  }, {});
16139
16139
  return Object.keys(node3.hook.classes.dispatch({
16140
- property,
16140
+ property: property,
16141
16141
  classes: combinedClassList
16142
16142
  }).classes).filter(function(key) {
16143
16143
  return combinedClassList[key];
@@ -16206,7 +16206,7 @@ var help = function help2() {
16206
16206
  "class": "$classes.".concat(target)
16207
16207
  },
16208
16208
  "if": cond,
16209
- children
16209
+ children: children
16210
16210
  }, schema)
16211
16211
  };
16212
16212
  };
@@ -16414,7 +16414,7 @@ var fragment = function fragment2() {
16414
16414
  var children = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : [];
16415
16415
  return Object.keys(schema).length || typeof children !== "string" ? extend({
16416
16416
  $el: "div",
16417
- children
16417
+ children: children
16418
16418
  }, schema) : children;
16419
16419
  };
16420
16420
  var groupSchema = function groupSchema2() {
@@ -16474,7 +16474,7 @@ var option = function option2() {
16474
16474
  value: "$option.value",
16475
16475
  selected: "$fns.isSelected($option.value)"
16476
16476
  },
16477
- children
16477
+ children: children
16478
16478
  }, schema)
16479
16479
  };
16480
16480
  };
@@ -16688,7 +16688,7 @@ function normalizeOptions(options2) {
16688
16688
  return Object.keys(options2).map(function(value) {
16689
16689
  return {
16690
16690
  label: options2[value],
16691
- value
16691
+ value: value
16692
16692
  };
16693
16693
  });
16694
16694
  }
@@ -16767,8 +16767,8 @@ function select$1(node3) {
16767
16767
  value = applyPlaceholder(value, node3.props.placeholder);
16768
16768
  }
16769
16769
  return next3({
16770
- prop,
16771
- value
16770
+ prop: prop,
16771
+ value: value
16772
16772
  });
16773
16773
  });
16774
16774
  node3.props.options = applyPlaceholder(node3.props.options, node3.props.placeholder);
@@ -16918,8 +16918,8 @@ function disables(node3) {
16918
16918
  var prop = _ref3.prop, value = _ref3.value;
16919
16919
  value = prop === "disabled" ? undefine(value) : value;
16920
16920
  return next3({
16921
- prop,
16922
- value
16921
+ prop: prop,
16922
+ value: value
16923
16923
  });
16924
16924
  });
16925
16925
  node3.on("prop:disabled", function(_ref4) {
@@ -17033,7 +17033,7 @@ function form$1(node3) {
17033
17033
  function localize(key, value) {
17034
17034
  return function(node3) {
17035
17035
  node3.store.set(createMessage({
17036
- key,
17036
+ key: key,
17037
17037
  type: "ui",
17038
17038
  value: value || key,
17039
17039
  meta: {
@@ -17198,31 +17198,31 @@ var file = {
17198
17198
  };
17199
17199
  var inputs = /* @__PURE__ */ Object.freeze({
17200
17200
  __proto__: null,
17201
- color,
17201
+ color: color,
17202
17202
  date: date$1,
17203
- datetimeLocal,
17203
+ datetimeLocal: datetimeLocal,
17204
17204
  email: email$1,
17205
- month,
17205
+ month: month,
17206
17206
  number: number$1,
17207
- password,
17208
- search,
17209
- tel,
17210
- time,
17211
- text,
17207
+ password: password,
17208
+ search: search,
17209
+ tel: tel,
17210
+ time: time,
17211
+ text: text,
17212
17212
  url: url$1,
17213
- week,
17214
- range,
17215
- textarea,
17213
+ week: week,
17214
+ range: range,
17215
+ textarea: textarea,
17216
17216
  submit: submit2,
17217
- button,
17218
- hidden,
17219
- select,
17220
- checkbox,
17221
- radio,
17222
- group,
17223
- form,
17217
+ button: button,
17218
+ hidden: hidden,
17219
+ select: select,
17220
+ checkbox: checkbox,
17221
+ radio: radio,
17222
+ group: group,
17223
+ form: form,
17224
17224
  list: list$1,
17225
- file
17225
+ file: file
17226
17226
  });
17227
17227
  function createLibraryPlugin() {
17228
17228
  for (var _len = arguments.length, libraries = new Array(_len), _key = 0; _key < _len; _key++) {
@@ -18625,28 +18625,28 @@ var url = function url2(_ref23) {
18625
18625
  };
18626
18626
  var defaultRules = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
18627
18627
  __proto__: null,
18628
- accepted,
18629
- alpha,
18630
- alpha_spaces,
18631
- alphanumeric,
18632
- between,
18633
- confirm,
18634
- date_after,
18635
- date_before,
18636
- date_between,
18637
- date_format,
18638
- email,
18639
- ends_with,
18628
+ accepted: accepted,
18629
+ alpha: alpha,
18630
+ alpha_spaces: alpha_spaces,
18631
+ alphanumeric: alphanumeric,
18632
+ between: between,
18633
+ confirm: confirm,
18634
+ date_after: date_after,
18635
+ date_before: date_before,
18636
+ date_between: date_between,
18637
+ date_format: date_format,
18638
+ email: email,
18639
+ ends_with: ends_with,
18640
18640
  is: is2,
18641
- length,
18642
- matches,
18643
- max,
18644
- min,
18645
- not,
18646
- number,
18647
- required,
18648
- starts_with,
18649
- url
18641
+ length: length,
18642
+ matches: matches,
18643
+ max: max,
18644
+ min: min,
18645
+ not: not,
18646
+ number: number,
18647
+ required: required,
18648
+ starts_with: starts_with,
18649
+ url: url
18650
18650
  }, Symbol.toStringTag, { value: "Module" }));
18651
18651
  var revokedObservers = /* @__PURE__ */ new WeakSet();
18652
18652
  function createObserver(node3, dependencies) {
@@ -18962,9 +18962,9 @@ function createFailedMessage(node3, validation, removeImmediately) {
18962
18962
  key: "rule_".concat(validation.name),
18963
18963
  meta: {
18964
18964
  messageKey: validation.name,
18965
- removeImmediately,
18965
+ removeImmediately: removeImmediately,
18966
18966
  localize: !customMessage,
18967
- i18nArgs
18967
+ i18nArgs: i18nArgs
18968
18968
  },
18969
18969
  type: "validation",
18970
18970
  value: customMessage || "This field is not valid."
@@ -19021,8 +19021,8 @@ function parseRules(validation, rules) {
19021
19021
  }
19022
19022
  if (typeof rule === "function") {
19023
19023
  validations.push(_objectSpread2(_objectSpread2({
19024
- rule,
19025
- args,
19024
+ rule: rule,
19025
+ args: args,
19026
19026
  timer: 0,
19027
19027
  state: null,
19028
19028
  queued: true,
@@ -19949,7 +19949,7 @@ var nativeProps = {
19949
19949
  var props = nativeProps;
19950
19950
  var parentSymbol = Symbol("FormKitParent");
19951
19951
  var FormKit = defineComponent({
19952
- props,
19952
+ props: props,
19953
19953
  emits: {
19954
19954
  input: function input2(_value, _node) {
19955
19955
  return true;
@@ -20002,7 +20002,7 @@ var FormKit = defineComponent({
20002
20002
  return h$1(FormKitSchema, {
20003
20003
  schema: schema.value,
20004
20004
  data: node3.context,
20005
- library
20005
+ library: library
20006
20006
  }, _objectSpread2({}, context.slots));
20007
20007
  };
20008
20008
  }
@@ -20017,8 +20017,8 @@ function createPlugin$3(app, options2) {
20017
20017
  options2.config.rootConfig.locale = locale;
20018
20018
  }
20019
20019
  },
20020
- clearErrors,
20021
- setErrors,
20020
+ clearErrors: clearErrors,
20021
+ setErrors: setErrors,
20022
20022
  submit: submitForm,
20023
20023
  reset: reset2
20024
20024
  };
@@ -20033,7 +20033,7 @@ var plugin$1 = {
20033
20033
  }, typeof _options === "function" ? _options() : _options);
20034
20034
  var rootConfig = createConfig$1(options2.config || {});
20035
20035
  options2.config = {
20036
- rootConfig
20036
+ rootConfig: rootConfig
20037
20037
  };
20038
20038
  app.config.globalProperties.$formkit = createPlugin$3(app, options2);
20039
20039
  app.provide(optionsSymbol, options2);
@@ -20210,8 +20210,8 @@ function useInput(props2, context) {
20210
20210
  var parent = initialProps.ignore ? null : props2.parent || inject(parentSymbol, null);
20211
20211
  var node3 = createNode(extend(config || {}, {
20212
20212
  name: props2.name || void 0,
20213
- value,
20214
- parent,
20213
+ value: value,
20214
+ parent: parent,
20215
20215
  plugins: (config.plugins || []).concat(props2.plugins),
20216
20216
  config: props2.config,
20217
20217
  props: initialProps,
@@ -20463,10 +20463,10 @@ var vueBindings = function vueBindings2(node3) {
20463
20463
  var value = ref(node3.value);
20464
20464
  var _value = ref(node3.value);
20465
20465
  var context = reactive({
20466
- _value,
20466
+ _value: _value,
20467
20467
  attrs: node3.props.attrs,
20468
20468
  disabled: node3.props.disabled,
20469
- describedBy,
20469
+ describedBy: describedBy,
20470
20470
  fns: {
20471
20471
  length: function length4(obj) {
20472
20472
  return Object.keys(obj).length;
@@ -20480,7 +20480,7 @@ var vueBindings = function vueBindings2(node3) {
20480
20480
  json: function json(value2) {
20481
20481
  return JSON.stringify(value2);
20482
20482
  },
20483
- eq
20483
+ eq: eq
20484
20484
  },
20485
20485
  handlers: {
20486
20486
  blur: function blur() {
@@ -20517,12 +20517,12 @@ var vueBindings = function vueBindings2(node3) {
20517
20517
  valid: isValid,
20518
20518
  errors: hasErrors,
20519
20519
  rules: hasValidation,
20520
- validationVisible
20520
+ validationVisible: validationVisible
20521
20521
  },
20522
20522
  type: node3.props.type,
20523
- ui,
20524
- value,
20525
- classes
20523
+ ui: ui,
20524
+ value: value,
20525
+ classes: classes
20526
20526
  });
20527
20527
  node3.on("created", function() {
20528
20528
  if (!eq(context.value, node3.value)) {
@@ -20639,14 +20639,14 @@ var defaultConfig = function defaultConfig2() {
20639
20639
  var _options$rules = options2.rules, rules = _options$rules === void 0 ? {} : _options$rules, _options$locales = options2.locales, locales = _options$locales === void 0 ? {} : _options$locales, _options$inputs = options2.inputs, inputs$1 = _options$inputs === void 0 ? {} : _options$inputs, _options$messages = options2.messages, messages2 = _options$messages === void 0 ? {} : _options$messages, _options$locale = options2.locale, locale = _options$locale === void 0 ? void 0 : _options$locale, nodeOptions = _objectWithoutProperties(options2, _excluded);
20640
20640
  var validation = createValidationPlugin(_objectSpread2(_objectSpread2({}, defaultRules), rules || {}));
20641
20641
  var i18n = createI18nPlugin(extend(_objectSpread2({
20642
- en
20642
+ en: en
20643
20643
  }, locales || {}), messages2));
20644
20644
  var library = createLibraryPlugin(inputs, inputs$1);
20645
20645
  return extend(_objectSpread2({
20646
20646
  plugins: [library, vueBindings, i18n, validation]
20647
20647
  }, !locale ? {} : {
20648
20648
  config: {
20649
- locale
20649
+ locale: locale
20650
20650
  }
20651
20651
  }), nodeOptions || {}, true);
20652
20652
  };
@@ -20660,7 +20660,7 @@ var createPlugin$1 = {};
20660
20660
  function createPlugin2(plugin2, config) {
20661
20661
  return {
20662
20662
  handler: plugin2,
20663
- config
20663
+ config: config
20664
20664
  };
20665
20665
  }
20666
20666
  createPlugin2.withOptions = function(pluginFunction) {
@@ -21004,8 +21004,8 @@ function chooseVariant(exp) {
21004
21004
  }
21005
21005
  dbg("Chose variant:", variant, "fromCache:", fromCache);
21006
21006
  return {
21007
- variant,
21008
- fromCache
21007
+ variant: variant,
21008
+ fromCache: fromCache
21009
21009
  };
21010
21010
  }
21011
21011
  function schemaFromUrl(_x) {
@@ -21211,7 +21211,7 @@ var init = function init2() {
21211
21211
  data: data2
21212
21212
  }).use(plugin$1, defaultConfig({
21213
21213
  config: {
21214
- classes
21214
+ classes: classes
21215
21215
  }
21216
21216
  }));
21217
21217
  app.mount("#" + form2.target);
@@ -21243,4 +21243,4 @@ if (!initStrategy || initStrategy === "immediate") {
21243
21243
  } else {
21244
21244
  throw Error("Invalid bhlFormsInitStrategy: " + initStrategy);
21245
21245
  }
21246
- export { apps as bhlForms, init as bhlFormsInit };
21246
+ export { init as default };