@ouestfrance/sipa-bms-ui 8.9.2 → 8.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38379,7 +38379,132 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
38379
38379
 
38380
38380
  const BmsAutocomplete = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__scopeId", "data-v-b0e1e6f3"]]);
38381
38381
 
38382
+ const _hoisted_1$N = ["innerHTML"];
38383
+ const _hoisted_2$v = ["innerHTML"];
38382
38384
  const _sfc_main$17 = /* @__PURE__ */ defineComponent({
38385
+ __name: "BmsServerAutocomplete",
38386
+ props: /* @__PURE__ */ mergeModels({
38387
+ url: {},
38388
+ request: { type: Function, default: async (controller, url) => {
38389
+ if (!url) {
38390
+ throw "URL must be defined";
38391
+ }
38392
+ const response = await fetch(url, {
38393
+ method: "GET",
38394
+ signal: controller.signal
38395
+ });
38396
+ const data = await response.json();
38397
+ return { data };
38398
+ } },
38399
+ modelValue: {},
38400
+ placeholder: {},
38401
+ open: { type: Boolean, default: false },
38402
+ label: {},
38403
+ required: { type: Boolean },
38404
+ optional: { type: Boolean },
38405
+ helperText: {},
38406
+ errors: {},
38407
+ captions: {},
38408
+ disabled: { type: Boolean },
38409
+ small: { type: Boolean }
38410
+ }, {
38411
+ "modelValue": {
38412
+ default: null
38413
+ },
38414
+ "modelModifiers": {}
38415
+ }),
38416
+ emits: /* @__PURE__ */ mergeModels(["addNewOption", "select"], ["update:modelValue"]),
38417
+ setup(__props, { emit: __emit }) {
38418
+ const props = __props;
38419
+ const modelValue = useModel(__props, "modelValue");
38420
+ const emits = __emit;
38421
+ const options = ref([]);
38422
+ const loading = ref(true);
38423
+ const controller = ref();
38424
+ const loadData = async (search) => {
38425
+ loading.value = true;
38426
+ try {
38427
+ if (controller.value) {
38428
+ controller.value.abort();
38429
+ }
38430
+ controller.value = new AbortController();
38431
+ loading.value = true;
38432
+ const { data } = await props.request(controller.value, search, props.url);
38433
+ options.value = data;
38434
+ } catch (e) {
38435
+ console.error(e);
38436
+ } finally {
38437
+ loading.value = false;
38438
+ }
38439
+ };
38440
+ onMounted(() => loadData(""));
38441
+ const onInput = (e) => {
38442
+ loadData(e.target?.value);
38443
+ };
38444
+ const currentOptionIcon = computed(() => {
38445
+ const option = options.value.find((o) => o.value === modelValue.value);
38446
+ if (!option || typeof option === "string") return void 0;
38447
+ return option.icon;
38448
+ });
38449
+ return (_ctx, _cache) => {
38450
+ return openBlock(), createBlock(RawAutocomplete, {
38451
+ modelValue: modelValue.value,
38452
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modelValue.value = $event),
38453
+ options: options.value,
38454
+ open: _ctx.open,
38455
+ label: _ctx.label,
38456
+ optional: _ctx.optional,
38457
+ disabled: _ctx.disabled,
38458
+ errors: _ctx.errors,
38459
+ captions: _ctx.captions,
38460
+ required: _ctx.required,
38461
+ helperText: _ctx.helperText,
38462
+ placeholder: _ctx.placeholder,
38463
+ small: _ctx.small,
38464
+ canAddNewOption: false,
38465
+ onInput,
38466
+ onSelect: _cache[1] || (_cache[1] = (option) => emits("select", option))
38467
+ }, createSlots({
38468
+ "icon-end": withCtx(() => [
38469
+ loading.value ? (openBlock(), createBlock(BmsLoader, {
38470
+ key: 0,
38471
+ size: 16
38472
+ })) : createCommentVNode("", true)
38473
+ ]),
38474
+ option: withCtx(({ option }) => [
38475
+ option.icon ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
38476
+ typeof option.icon === "string" ? (openBlock(), createElementBlock("span", {
38477
+ key: 0,
38478
+ class: "icon datalist-icon",
38479
+ innerHTML: option.icon
38480
+ }, null, 8, _hoisted_2$v)) : (openBlock(), createBlock(resolveDynamicComponent(option.icon), {
38481
+ key: 1,
38482
+ class: "icon datalist-icon"
38483
+ }))
38484
+ ], 64)) : createCommentVNode("", true),
38485
+ createTextVNode(" " + toDisplayString(option.label), 1)
38486
+ ]),
38487
+ _: 2
38488
+ }, [
38489
+ currentOptionIcon.value ? {
38490
+ name: "icon-start",
38491
+ fn: withCtx(() => [
38492
+ typeof currentOptionIcon.value === "string" ? (openBlock(), createElementBlock("span", {
38493
+ key: 0,
38494
+ class: "icon",
38495
+ innerHTML: currentOptionIcon.value
38496
+ }, null, 8, _hoisted_1$N)) : (openBlock(), createBlock(resolveDynamicComponent(currentOptionIcon.value), { key: 1 }))
38497
+ ]),
38498
+ key: "0"
38499
+ } : void 0
38500
+ ]), 1032, ["modelValue", "options", "open", "label", "optional", "disabled", "errors", "captions", "required", "helperText", "placeholder", "small"]);
38501
+ };
38502
+ }
38503
+ });
38504
+
38505
+ const BmsServerAutocomplete = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-3115cc27"]]);
38506
+
38507
+ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
38383
38508
  __name: "BmsBetweenInput",
38384
38509
  props: {
38385
38510
  inputType: { default: InputType.NUMBER },
@@ -38476,9 +38601,9 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
38476
38601
  }
38477
38602
  });
38478
38603
 
38479
- const BmsBetweenInput = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-f25b520b"]]);
38604
+ const BmsBetweenInput = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["__scopeId", "data-v-f25b520b"]]);
38480
38605
 
38481
- const _sfc_main$16 = /* @__PURE__ */ defineComponent({
38606
+ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
38482
38607
  __name: "BmsChip",
38483
38608
  props: {
38484
38609
  color: { default: ChipColor.Grey }
@@ -38501,13 +38626,13 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
38501
38626
  }
38502
38627
  });
38503
38628
 
38504
- const BmsChip = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["__scopeId", "data-v-72b945cc"]]);
38629
+ const BmsChip = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-72b945cc"]]);
38505
38630
 
38506
- const _hoisted_1$N = { class: "file-upload" };
38507
- const _hoisted_2$v = { class: "file-upload__label" };
38631
+ const _hoisted_1$M = { class: "file-upload" };
38632
+ const _hoisted_2$u = { class: "file-upload__label" };
38508
38633
  const _hoisted_3$f = { key: 1 };
38509
38634
  const _hoisted_4$a = { class: "file-upload__file-name" };
38510
- const _sfc_main$15 = /* @__PURE__ */ defineComponent({
38635
+ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
38511
38636
  __name: "BmsFilePicker",
38512
38637
  props: {
38513
38638
  modelValue: {},
@@ -38578,7 +38703,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
38578
38703
  );
38579
38704
  }
38580
38705
  return (_ctx, _cache) => {
38581
- return openBlock(), createElementBlock("div", _hoisted_1$N, [
38706
+ return openBlock(), createElementBlock("div", _hoisted_1$M, [
38582
38707
  !_ctx.modelValue || !_ctx.modelValue.length ? (openBlock(), createElementBlock("div", {
38583
38708
  key: 0,
38584
38709
  class: normalizeClass(["file-upload__drop-area", { "is-active": isDragOver.value }]),
@@ -38587,7 +38712,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
38587
38712
  onDragover: _cache[2] || (_cache[2] = withModifiers(() => {
38588
38713
  }, ["prevent"]))
38589
38714
  }, [
38590
- createElementVNode("label", _hoisted_2$v, [
38715
+ createElementVNode("label", _hoisted_2$u, [
38591
38716
  isDragOver.value ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
38592
38717
  createTextVNode("Déposer votre image ici")
38593
38718
  ], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
@@ -38622,14 +38747,14 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
38622
38747
  }
38623
38748
  });
38624
38749
 
38625
- const BmsFilePicker = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-c892a845"]]);
38750
+ const BmsFilePicker = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-c892a845"]]);
38626
38751
 
38627
- const _hoisted_1$M = ["disabled", "name", "value"];
38628
- const _hoisted_2$u = {
38752
+ const _hoisted_1$L = ["disabled", "name", "value"];
38753
+ const _hoisted_2$t = {
38629
38754
  key: 0,
38630
38755
  class: "input-checkbox-info"
38631
38756
  };
38632
- const _sfc_main$14 = /* @__PURE__ */ defineComponent({
38757
+ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
38633
38758
  __name: "UiBmsInputCheckbox",
38634
38759
  props: {
38635
38760
  modelValue: { default: false },
@@ -38665,10 +38790,10 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
38665
38790
  name: _ctx.name,
38666
38791
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
38667
38792
  value: _ctx.value
38668
- }, null, 8, _hoisted_1$M), [
38793
+ }, null, 8, _hoisted_1$L), [
38669
38794
  [vModelCheckbox, inputValue.value]
38670
38795
  ]),
38671
- hasLabel.value ? (openBlock(), createElementBlock("span", _hoisted_2$u, [
38796
+ hasLabel.value ? (openBlock(), createElementBlock("span", _hoisted_2$t, [
38672
38797
  renderSlot(_ctx.$slots, "label", {}, () => [
38673
38798
  createTextVNode(toDisplayString(_ctx.label), 1)
38674
38799
  ], true)
@@ -38679,9 +38804,9 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
38679
38804
  }
38680
38805
  });
38681
38806
 
38682
- const UiBmsInputCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-e1d94c62"]]);
38807
+ const UiBmsInputCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data-v-e1d94c62"]]);
38683
38808
 
38684
- const _sfc_main$13 = /* @__PURE__ */ defineComponent({
38809
+ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
38685
38810
  __name: "BmsInputBooleanCheckbox",
38686
38811
  props: {
38687
38812
  modelValue: {},
@@ -38800,7 +38925,7 @@ function v4(options, buf, offset) {
38800
38925
  return _v4(options, buf, offset);
38801
38926
  }
38802
38927
 
38803
- const _sfc_main$12 = /* @__PURE__ */ defineComponent({
38928
+ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
38804
38929
  __name: "BmsInputCheckboxGroup",
38805
38930
  props: {
38806
38931
  values: {},
@@ -38869,9 +38994,9 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
38869
38994
  }
38870
38995
  });
38871
38996
 
38872
- const BmsInputCheckboxGroup = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["__scopeId", "data-v-43978315"]]);
38997
+ const BmsInputCheckboxGroup = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["__scopeId", "data-v-43978315"]]);
38873
38998
 
38874
- const _sfc_main$11 = /* @__PURE__ */ defineComponent({
38999
+ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
38875
39000
  __name: "BmsInputCheckboxCaption",
38876
39001
  props: {
38877
39002
  modelValue: {},
@@ -38947,9 +39072,9 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
38947
39072
  }
38948
39073
  });
38949
39074
 
38950
- const BmsInputCheckboxCaption = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["__scopeId", "data-v-6cb7c474"]]);
39075
+ const BmsInputCheckboxCaption = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__scopeId", "data-v-6cb7c474"]]);
38951
39076
 
38952
- const _sfc_main$10 = /* @__PURE__ */ defineComponent({
39077
+ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
38953
39078
  __name: "BmsInputCheckboxCaptionGroup",
38954
39079
  props: {
38955
39080
  options: { default: () => [] },
@@ -39004,7 +39129,7 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
39004
39129
  }
39005
39130
  });
39006
39131
 
39007
- const BmsInputCheckboxCaptionGroup = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__scopeId", "data-v-4183cc04"]]);
39132
+ const BmsInputCheckboxCaptionGroup = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__scopeId", "data-v-4183cc04"]]);
39008
39133
 
39009
39134
  /**
39010
39135
  The default maximum length of a `TreeBuffer` node.
@@ -67539,8 +67664,8 @@ const basicSetup = /*@__PURE__*/(() => [
67539
67664
  */
67540
67665
  var h=Object.freeze({autofocus:false,disabled:false,indentWithTab:true,tabSize:2,placeholder:"",autoDestroy:true,extensions:[basicSetup]}),y=Symbol("vue-codemirror-global-config");var O,j=function(e){var t=e.onUpdate,n=e.onChange,o=e.onFocus,r=e.onBlur,u=function(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(o=Object.getOwnPropertySymbols(e);r<o.length;r++)t.indexOf(o[r])<0&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]]);}return n}(e,["onUpdate","onChange","onFocus","onBlur"]);return EditorState.create({doc:u.doc,selection:u.selection,extensions:(Array.isArray(u.extensions)?u.extensions:[u.extensions]).concat([EditorView.updateListener.of((function(e){t(e),e.docChanged&&n(e.state.doc.toString(),e),e.focusChanged&&(e.view.hasFocus?o(e):r(e));}))])})},S=function(e){var t=new Compartment;return {compartment:t,run:function(n){t.get(e.state)?e.dispatch({effects:t.reconfigure(n)}):e.dispatch({effects:StateEffect.appendConfig.of(t.of(n))});}}},x=function(e,t){var n=S(e),o=n.compartment,r=n.run;return function(n){var u=o.get(e.state);r((null!=n?n:u!==t)?t:[]);}},C={type:Boolean,default:void 0},D={autofocus:C,disabled:C,indentWithTab:C,tabSize:Number,placeholder:String,style:Object,autoDestroy:C,phrases:Object,root:Object,extensions:Array,selection:Object},U={modelValue:{type:String,default:""}},w=Object.assign(Object.assign({},D),U);!function(e){e.Change="change",e.Update="update",e.Focus="focus",e.Blur="blur",e.Ready="ready",e.ModelUpdate="update:modelValue";}(O||(O={}));var z={};z[O.Change]=function(e,t){return true},z[O.Update]=function(e){return true},z[O.Focus]=function(e){return true},z[O.Blur]=function(e){return true},z[O.Ready]=function(e){return true};var B={};B[O.ModelUpdate]=z[O.Change];var F=Object.assign(Object.assign({},z),B),P=defineComponent({name:"VueCodemirror",props:Object.assign({},w),emits:Object.assign({},F),setup:function(t,s){var f=shallowRef(),d=shallowRef(),C=shallowRef(),D=Object.assign(Object.assign({},h),inject(y,{})),U=computed((function(){var e={};return Object.keys(toRaw(t)).forEach((function(n){var o;"modelValue"!==n&&(e[n]=null!==(o=t[n])&&void 0!==o?o:D[n]);})),e}));return onMounted((function(){var e;d.value=j({doc:t.modelValue,selection:U.value.selection,extensions:null!==(e=D.extensions)&&void 0!==e?e:[],onFocus:function(e){return s.emit(O.Focus,e)},onBlur:function(e){return s.emit(O.Blur,e)},onUpdate:function(e){return s.emit(O.Update,e)},onChange:function(e,n){e!==t.modelValue&&(s.emit(O.Change,e,n),s.emit(O.ModelUpdate,e,n));}}),C.value=function(e){return new EditorView(Object.assign({},e))}({state:d.value,parent:f.value,root:U.value.root});var n=function(e){var t=function(){return e.state.doc.toString()},n=S(e).run,o=x(e,[EditorView.editable.of(false),EditorState.readOnly.of(true)]),r=x(e,keymap.of([indentWithTab])),u=S(e).run,a=S(e).run,i=S(e).run,c=S(e).run;return {focus:function(){return e.focus()},getDoc:t,setDoc:function(n){n!==t()&&e.dispatch({changes:{from:0,to:e.state.doc.length,insert:n}});},reExtensions:n,toggleDisabled:o,toggleIndentWithTab:r,setTabSize:function(e){u([EditorState.tabSize.of(e),indentUnit.of(" ".repeat(e))]);},setPhrases:function(e){a([EditorState.phrases.of(e)]);},setPlaceholder:function(e){i(placeholder(e));},setStyle:function(e){ void 0===e&&(e={}),c(EditorView.theme({"&":Object.assign({},e)}));}}}(C.value);watch((function(){return t.modelValue}),(function(e){e!==n.getDoc()&&n.setDoc(e);})),watch((function(){return t.extensions}),(function(e){return n.reExtensions(e||[])}),{immediate:true}),watch((function(){return U.value.disabled}),(function(e){return n.toggleDisabled(e)}),{immediate:true}),watch((function(){return U.value.indentWithTab}),(function(e){return n.toggleIndentWithTab(e)}),{immediate:true}),watch((function(){return U.value.tabSize}),(function(e){return n.setTabSize(e)}),{immediate:true}),watch((function(){return U.value.phrases}),(function(e){return n.setPhrases(e||{})}),{immediate:true}),watch((function(){return U.value.placeholder}),(function(e){return n.setPlaceholder(e)}),{immediate:true}),watch((function(){return U.value.style}),(function(e){return n.setStyle(e)}),{immediate:true}),U.value.autofocus&&n.focus(),s.emit(O.Ready,{state:d.value,view:C.value,container:f.value});})),onBeforeUnmount((function(){U.value.autoDestroy&&C.value&&function(e){e.destroy();}(C.value);})),function(){return h$1("div",{class:"v-codemirror",style:{display:"contents"},ref:f})}}}),T=P;
67541
67666
 
67542
- const _hoisted_1$L = { class: "code-mirror" };
67543
- const _sfc_main$$ = /* @__PURE__ */ defineComponent({
67667
+ const _hoisted_1$K = { class: "code-mirror" };
67668
+ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
67544
67669
  __name: "BmsInputCode",
67545
67670
  props: /* @__PURE__ */ mergeModels({
67546
67671
  type: {},
@@ -67573,7 +67698,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
67573
67698
  const _component_field = resolveComponent("field");
67574
67699
  return openBlock(), createBlock(_component_field, normalizeProps(guardReactiveProps(_ctx.$props)), {
67575
67700
  default: withCtx(() => [
67576
- createElementVNode("div", _hoisted_1$L, [
67701
+ createElementVNode("div", _hoisted_1$K, [
67577
67702
  createVNode(unref(T), {
67578
67703
  modelValue: input.value,
67579
67704
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => input.value = $event),
@@ -67590,9 +67715,9 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
67590
67715
  }
67591
67716
  });
67592
67717
 
67593
- const BmsInputCode = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__scopeId", "data-v-b2a2a2fa"]]);
67718
+ const BmsInputCode = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["__scopeId", "data-v-b2a2a2fa"]]);
67594
67719
 
67595
- const _sfc_main$_ = /* @__PURE__ */ defineComponent({
67720
+ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
67596
67721
  __name: "BmsInputText",
67597
67722
  props: {
67598
67723
  inputType: { default: InputType.TEXT },
@@ -67705,7 +67830,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
67705
67830
  }
67706
67831
  });
67707
67832
 
67708
- const _sfc_main$Z = /* @__PURE__ */ defineComponent({
67833
+ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
67709
67834
  __name: "BmsInputDateTime",
67710
67835
  props: {
67711
67836
  modelValue: {},
@@ -67731,7 +67856,7 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
67731
67856
  if (!props.disabled && value) $emits("update:modelValue", value);
67732
67857
  };
67733
67858
  return (_ctx, _cache) => {
67734
- return openBlock(), createBlock(_sfc_main$_, {
67859
+ return openBlock(), createBlock(_sfc_main$Z, {
67735
67860
  modelValue: _ctx.modelValue,
67736
67861
  label: _ctx.label,
67737
67862
  required: _ctx.required,
@@ -67748,13 +67873,13 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
67748
67873
  }
67749
67874
  });
67750
67875
 
67751
- const _hoisted_1$K = ["accept"];
67752
- const _hoisted_2$t = ["src"];
67876
+ const _hoisted_1$J = ["accept"];
67877
+ const _hoisted_2$s = ["src"];
67753
67878
  const _hoisted_3$e = {
67754
67879
  key: 1,
67755
67880
  class: "file-upload__file-name"
67756
67881
  };
67757
- const _sfc_main$Y = /* @__PURE__ */ defineComponent({
67882
+ const _sfc_main$X = /* @__PURE__ */ defineComponent({
67758
67883
  __name: "BmsInputFile",
67759
67884
  props: {
67760
67885
  modelValue: {},
@@ -67892,7 +68017,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
67892
68017
  type: "file",
67893
68018
  accept: _ctx.accept,
67894
68019
  onChange: _cache[0] || (_cache[0] = ($event) => onSelectFile($event))
67895
- }, null, 40, _hoisted_1$K)
68020
+ }, null, 40, _hoisted_1$J)
67896
68021
  ], 34)) : createCommentVNode("", true),
67897
68022
  _ctx.modelValue?.length ? (openBlock(), createElementBlock("div", {
67898
68023
  key: 1,
@@ -67907,7 +68032,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
67907
68032
  key: 0,
67908
68033
  src: getImageSrc(file),
67909
68034
  class: "file-upload__file-img"
67910
- }, null, 8, _hoisted_2$t)) : (openBlock(), createElementBlock("span", _hoisted_3$e, toDisplayString(file.name), 1)),
68035
+ }, null, 8, _hoisted_2$s)) : (openBlock(), createElementBlock("span", _hoisted_3$e, toDisplayString(file.name), 1)),
67911
68036
  createVNode(_sfc_main$1j, {
67912
68037
  mode: unref(StatusType).Danger,
67913
68038
  onClick: withModifiers(($event) => onDeleteFile(file), ["prevent"]),
@@ -67928,9 +68053,9 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
67928
68053
  }
67929
68054
  });
67930
68055
 
67931
- const BmsInputFile = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["__scopeId", "data-v-0c91cbf5"]]);
68056
+ const BmsInputFile = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__scopeId", "data-v-0c91cbf5"]]);
67932
68057
 
67933
- const _sfc_main$X = /* @__PURE__ */ defineComponent({
68058
+ const _sfc_main$W = /* @__PURE__ */ defineComponent({
67934
68059
  __name: "BmsInputNumber",
67935
68060
  props: {
67936
68061
  modelValue: {},
@@ -67990,7 +68115,7 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
67990
68115
  () => checkLimit()
67991
68116
  );
67992
68117
  return (_ctx, _cache) => {
67993
- return openBlock(), createBlock(_sfc_main$_, {
68118
+ return openBlock(), createBlock(_sfc_main$Z, {
67994
68119
  modelValue: _ctx.modelValue,
67995
68120
  label: _ctx.label,
67996
68121
  required: _ctx.required,
@@ -68009,12 +68134,12 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
68009
68134
  }
68010
68135
  });
68011
68136
 
68012
- const _hoisted_1$J = ["value", "name", "disabled", "required"];
68013
- const _hoisted_2$s = {
68137
+ const _hoisted_1$I = ["value", "name", "disabled", "required"];
68138
+ const _hoisted_2$r = {
68014
68139
  key: 0,
68015
68140
  class: "input-radio-info"
68016
68141
  };
68017
- const _sfc_main$W = /* @__PURE__ */ defineComponent({
68142
+ const _sfc_main$V = /* @__PURE__ */ defineComponent({
68018
68143
  __name: "BmsInputRadio",
68019
68144
  props: {
68020
68145
  modelValue: {},
@@ -68051,10 +68176,10 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
68051
68176
  name: _ctx.name,
68052
68177
  disabled: _ctx.disabled,
68053
68178
  required: _ctx.required
68054
- }, null, 8, _hoisted_1$J), [
68179
+ }, null, 8, _hoisted_1$I), [
68055
68180
  [vModelRadio, inputValue.value]
68056
68181
  ]),
68057
- hasLabel.value ? (openBlock(), createElementBlock("span", _hoisted_2$s, [
68182
+ hasLabel.value ? (openBlock(), createElementBlock("span", _hoisted_2$r, [
68058
68183
  renderSlot(_ctx.$slots, "label", {}, () => [
68059
68184
  createTextVNode(toDisplayString(_ctx.label), 1)
68060
68185
  ], true)
@@ -68065,9 +68190,9 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
68065
68190
  }
68066
68191
  });
68067
68192
 
68068
- const BmsInputRadio = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-c0c9efa3"]]);
68193
+ const BmsInputRadio = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-c0c9efa3"]]);
68069
68194
 
68070
- const _sfc_main$V = /* @__PURE__ */ defineComponent({
68195
+ const _sfc_main$U = /* @__PURE__ */ defineComponent({
68071
68196
  __name: "BmsInputRadioGroup",
68072
68197
  props: {
68073
68198
  values: { default: () => [] },
@@ -68136,9 +68261,9 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
68136
68261
  }
68137
68262
  });
68138
68263
 
68139
- const BmsInputRadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-186163e2"]]);
68264
+ const BmsInputRadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-186163e2"]]);
68140
68265
 
68141
- const _sfc_main$U = /* @__PURE__ */ defineComponent({
68266
+ const _sfc_main$T = /* @__PURE__ */ defineComponent({
68142
68267
  __name: "BmsInputRadioCaption",
68143
68268
  props: {
68144
68269
  modelValue: {},
@@ -68200,9 +68325,9 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
68200
68325
  }
68201
68326
  });
68202
68327
 
68203
- const BmsInputRadioCaption = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-c3ba4fee"]]);
68328
+ const BmsInputRadioCaption = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-c3ba4fee"]]);
68204
68329
 
68205
- const _sfc_main$T = /* @__PURE__ */ defineComponent({
68330
+ const _sfc_main$S = /* @__PURE__ */ defineComponent({
68206
68331
  __name: "BmsInputRadioCaptionGroup",
68207
68332
  props: {
68208
68333
  options: { default: () => [] },
@@ -68260,10 +68385,10 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
68260
68385
  }
68261
68386
  });
68262
68387
 
68263
- const BmsInputRadioCaptionGroup = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-a4287904"]]);
68388
+ const BmsInputRadioCaptionGroup = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-a4287904"]]);
68264
68389
 
68265
- const _hoisted_1$I = ["disabled", "name"];
68266
- const _sfc_main$S = /* @__PURE__ */ defineComponent({
68390
+ const _hoisted_1$H = ["disabled", "name"];
68391
+ const _sfc_main$R = /* @__PURE__ */ defineComponent({
68267
68392
  __name: "UiBmsSwitch",
68268
68393
  props: {
68269
68394
  disabled: { type: Boolean, default: false },
@@ -68289,7 +68414,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
68289
68414
  disabled: _ctx.disabled,
68290
68415
  name: _ctx.name,
68291
68416
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event)
68292
- }, null, 8, _hoisted_1$I), [
68417
+ }, null, 8, _hoisted_1$H), [
68293
68418
  [vModelCheckbox, inputValue.value]
68294
68419
  ]),
68295
68420
  createElementVNode("div", {
@@ -68300,10 +68425,10 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
68300
68425
  }
68301
68426
  });
68302
68427
 
68303
- const UiBmsSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-19745934"]]);
68428
+ const UiBmsSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__scopeId", "data-v-19745934"]]);
68304
68429
 
68305
- const _hoisted_1$H = { class: "input-switch-info" };
68306
- const _sfc_main$R = /* @__PURE__ */ defineComponent({
68430
+ const _hoisted_1$G = { class: "input-switch-info" };
68431
+ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
68307
68432
  __name: "BmsInputToggle",
68308
68433
  props: {
68309
68434
  name: {},
@@ -68329,7 +68454,7 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
68329
68454
  createElementVNode("label", {
68330
68455
  class: normalizeClass(["input-toggle", { isOn: _ctx.modelValue, disabled: _ctx.disabled }])
68331
68456
  }, [
68332
- createElementVNode("span", _hoisted_1$H, toDisplayString(_ctx.label), 1),
68457
+ createElementVNode("span", _hoisted_1$G, toDisplayString(_ctx.label), 1),
68333
68458
  createVNode(UiBmsSwitch, {
68334
68459
  modelValue: _ctx.modelValue,
68335
68460
  disabled: _ctx.disabled,
@@ -68344,10 +68469,10 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
68344
68469
  }
68345
68470
  });
68346
68471
 
68347
- const BmsInputToggle = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__scopeId", "data-v-9570e0a9"]]);
68472
+ const BmsInputToggle = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-9570e0a9"]]);
68348
68473
 
68349
- const _hoisted_1$G = { class: "dismiss-button" };
68350
- const _sfc_main$Q = /* @__PURE__ */ defineComponent({
68474
+ const _hoisted_1$F = { class: "dismiss-button" };
68475
+ const _sfc_main$P = /* @__PURE__ */ defineComponent({
68351
68476
  __name: "BmsTag",
68352
68477
  props: {
68353
68478
  active: { type: Boolean, default: false },
@@ -68364,7 +68489,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
68364
68489
  onClick: _cache[1] || (_cache[1] = ($event) => emits("click"))
68365
68490
  }, [
68366
68491
  renderSlot(_ctx.$slots, "default", {}, void 0, true),
68367
- createElementVNode("span", _hoisted_1$G, [
68492
+ createElementVNode("span", _hoisted_1$F, [
68368
68493
  _ctx.canBeDismissed ? (openBlock(), createBlock(unref(_sfc_main$1j), {
68369
68494
  key: 0,
68370
68495
  onClick: _cache[0] || (_cache[0] = withModifiers(($event) => emits("dismiss"), ["stop"]))
@@ -68382,9 +68507,9 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
68382
68507
  }
68383
68508
  });
68384
68509
 
68385
- const BmsTag = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-e2517fee"]]);
68510
+ const BmsTag = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-e2517fee"]]);
68386
68511
 
68387
- const _sfc_main$P = /* @__PURE__ */ defineComponent({
68512
+ const _sfc_main$O = /* @__PURE__ */ defineComponent({
68388
68513
  __name: "RawSelect",
68389
68514
  props: {
68390
68515
  options: {},
@@ -68440,11 +68565,11 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
68440
68565
  }
68441
68566
  });
68442
68567
 
68443
- const RawSelect = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-95176719"]]);
68568
+ const RawSelect = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-95176719"]]);
68444
68569
 
68445
- const _hoisted_1$F = { class: "tags" };
68446
- const _hoisted_2$r = { class: "icon-container" };
68447
- const _sfc_main$O = /* @__PURE__ */ defineComponent({
68570
+ const _hoisted_1$E = { class: "tags" };
68571
+ const _hoisted_2$q = { class: "icon-container" };
68572
+ const _sfc_main$N = /* @__PURE__ */ defineComponent({
68448
68573
  __name: "BmsMultiSelect",
68449
68574
  props: /* @__PURE__ */ mergeModels({
68450
68575
  options: {},
@@ -68525,7 +68650,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
68525
68650
  onClick: setFocus
68526
68651
  }), {
68527
68652
  input: withCtx(() => [
68528
- createElementVNode("div", _hoisted_1$F, [
68653
+ createElementVNode("div", _hoisted_1$E, [
68529
68654
  (openBlock(true), createElementBlock(Fragment, null, renderList(selectedItems.value, (tag) => {
68530
68655
  return openBlock(), createBlock(BmsTag, {
68531
68656
  small: _ctx.small,
@@ -68556,7 +68681,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
68556
68681
  [vModelText, searching.value]
68557
68682
  ])
68558
68683
  ]),
68559
- createElementVNode("span", _hoisted_2$r, [
68684
+ createElementVNode("span", _hoisted_2$q, [
68560
68685
  modelValue.value && modelValue.value?.length ? (openBlock(), createBlock(unref(X), {
68561
68686
  key: 0,
68562
68687
  class: "icon icon-clear",
@@ -68592,9 +68717,9 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
68592
68717
  }
68593
68718
  });
68594
68719
 
68595
- const BmsMultiSelect = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-aece870d"]]);
68720
+ const BmsMultiSelect = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-aece870d"]]);
68596
68721
 
68597
- const _sfc_main$N = /* @__PURE__ */ defineComponent({
68722
+ const _sfc_main$M = /* @__PURE__ */ defineComponent({
68598
68723
  __name: "BmsSearch",
68599
68724
  props: {
68600
68725
  modelValue: {},
@@ -68624,7 +68749,7 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
68624
68749
  setFocus
68625
68750
  });
68626
68751
  return (_ctx, _cache) => {
68627
- return openBlock(), createBlock(_sfc_main$_, {
68752
+ return openBlock(), createBlock(_sfc_main$Z, {
68628
68753
  ref_key: "input",
68629
68754
  ref: input,
68630
68755
  modelValue: search.value,
@@ -68653,7 +68778,7 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
68653
68778
  }
68654
68779
  });
68655
68780
 
68656
- const BmsSearch = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-66c267f2"]]);
68781
+ const BmsSearch = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-66c267f2"]]);
68657
68782
 
68658
68783
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
68659
68784
 
@@ -85873,9 +85998,9 @@ function requireLodash () {
85873
85998
  var lodashExports = requireLodash();
85874
85999
  const _ = /*@__PURE__*/getDefaultExportFromCjs(lodashExports);
85875
86000
 
85876
- const _hoisted_1$E = ["value", "placeholder", "required"];
85877
- const _hoisted_2$q = { class: "icon-toggle-container" };
85878
- const _sfc_main$M = /* @__PURE__ */ defineComponent({
86001
+ const _hoisted_1$D = ["value", "placeholder", "required"];
86002
+ const _hoisted_2$p = { class: "icon-toggle-container" };
86003
+ const _sfc_main$L = /* @__PURE__ */ defineComponent({
85879
86004
  __name: "BmsSelect",
85880
86005
  props: /* @__PURE__ */ mergeModels({
85881
86006
  options: {},
@@ -85950,8 +86075,8 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
85950
86075
  onFocus: openDatalist,
85951
86076
  onClick: openDatalist,
85952
86077
  onKeyup: withKeys(openDatalist, ["down"])
85953
- }, null, 40, _hoisted_1$E),
85954
- createElementVNode("span", _hoisted_2$q, [
86078
+ }, null, 40, _hoisted_1$D),
86079
+ createElementVNode("span", _hoisted_2$p, [
85955
86080
  isDatalistOpen.value ? (openBlock(), createBlock(unref(ChevronUp), {
85956
86081
  key: 0,
85957
86082
  class: "icon-toggle-button",
@@ -85969,10 +86094,10 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
85969
86094
  }
85970
86095
  });
85971
86096
 
85972
- const BmsSelect = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-21c618e0"]]);
86097
+ const BmsSelect = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-21c618e0"]]);
85973
86098
 
85974
- const _hoisted_1$D = ["value", "required", "placeholder"];
85975
- const _sfc_main$L = /* @__PURE__ */ defineComponent({
86099
+ const _hoisted_1$C = ["value", "required", "placeholder"];
86100
+ const _sfc_main$K = /* @__PURE__ */ defineComponent({
85976
86101
  __name: "BmsTextArea",
85977
86102
  props: {
85978
86103
  modelValue: {},
@@ -86026,7 +86151,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
86026
86151
  onKeydown: _cache[0] || (_cache[0] = withKeys(withModifiers(() => {
86027
86152
  }, ["stop"]), ["enter"])),
86028
86153
  cols: "10"
86029
- }, " " + toDisplayString(_ctx.modelValue) + "\n ", 43, _hoisted_1$D)
86154
+ }, " " + toDisplayString(_ctx.modelValue) + "\n ", 43, _hoisted_1$C)
86030
86155
  ]),
86031
86156
  _: 1
86032
86157
  }, 16);
@@ -86034,11 +86159,11 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
86034
86159
  }
86035
86160
  });
86036
86161
 
86037
- const BmsTextArea = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-14d354f8"]]);
86162
+ const BmsTextArea = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__scopeId", "data-v-14d354f8"]]);
86038
86163
 
86039
- const _hoisted_1$C = { class: "page__breadcrumb" };
86040
- const _hoisted_2$p = { class: "page__header" };
86041
- const _sfc_main$K = /* @__PURE__ */ defineComponent({
86164
+ const _hoisted_1$B = { class: "page__breadcrumb" };
86165
+ const _hoisted_2$o = { class: "page__header" };
86166
+ const _sfc_main$J = /* @__PURE__ */ defineComponent({
86042
86167
  __name: "BmsContentPageLayout",
86043
86168
  props: {
86044
86169
  size: { default: "large" }
@@ -86050,11 +86175,11 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
86050
86175
  return openBlock(), createElementBlock("div", {
86051
86176
  class: normalizeClass(wrapperClasses.value)
86052
86177
  }, [
86053
- createElementVNode("div", _hoisted_1$C, [
86178
+ createElementVNode("div", _hoisted_1$B, [
86054
86179
  renderSlot(_ctx.$slots, "breadcrumb", {}, void 0, true)
86055
86180
  ]),
86056
86181
  renderSlot(_ctx.$slots, "tabs", {}, void 0, true),
86057
- createElementVNode("div", _hoisted_2$p, [
86182
+ createElementVNode("div", _hoisted_2$o, [
86058
86183
  renderSlot(_ctx.$slots, "header", {}, void 0, true)
86059
86184
  ]),
86060
86185
  createElementVNode("main", null, [
@@ -86065,14 +86190,14 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
86065
86190
  }
86066
86191
  });
86067
86192
 
86068
- const BmsContentPageLayout = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__scopeId", "data-v-31057778"]]);
86193
+ const BmsContentPageLayout = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-31057778"]]);
86069
86194
 
86070
- const _hoisted_1$B = { class: "card__body__content" };
86071
- const _hoisted_2$o = {
86195
+ const _hoisted_1$A = { class: "card__body__content" };
86196
+ const _hoisted_2$n = {
86072
86197
  key: 0,
86073
86198
  class: "card__body__action"
86074
86199
  };
86075
- const _sfc_main$J = /* @__PURE__ */ defineComponent({
86200
+ const _sfc_main$I = /* @__PURE__ */ defineComponent({
86076
86201
  __name: "BmsCard",
86077
86202
  props: {
86078
86203
  animated: { type: Boolean, default: false },
@@ -86111,7 +86236,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
86111
86236
  ref: mainComponent,
86112
86237
  class: normalizeClass(["card__body", { animated: _ctx.animated, hasAction: !!_ctx.$slots.action }])
86113
86238
  }, [
86114
- createElementVNode("div", _hoisted_1$B, [
86239
+ createElementVNode("div", _hoisted_1$A, [
86115
86240
  _ctx.to ? (openBlock(), createBlock(_sfc_main$1n, {
86116
86241
  key: 0,
86117
86242
  class: "card__body__content__link",
@@ -86123,7 +86248,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
86123
86248
  _: 3
86124
86249
  }, 8, ["to"])) : renderSlot(_ctx.$slots, "default", { key: 1 }, void 0, true)
86125
86250
  ]),
86126
- !!_ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_2$o, [
86251
+ !!_ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_2$n, [
86127
86252
  renderSlot(_ctx.$slots, "action", {}, void 0, true)
86128
86253
  ])) : createCommentVNode("", true)
86129
86254
  ], 2)
@@ -86132,15 +86257,15 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
86132
86257
  }
86133
86258
  });
86134
86259
 
86135
- const BmsCard = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-cff3f84d"]]);
86260
+ const BmsCard = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-cff3f84d"]]);
86136
86261
 
86137
- const _hoisted_1$A = { class: "form-section" };
86138
- const _hoisted_2$n = {
86262
+ const _hoisted_1$z = { class: "form-section" };
86263
+ const _hoisted_2$m = {
86139
86264
  key: 0,
86140
86265
  style: "border"
86141
86266
  };
86142
86267
  const _hoisted_3$d = { class: "actions" };
86143
- const _sfc_main$I = /* @__PURE__ */ defineComponent({
86268
+ const _sfc_main$H = /* @__PURE__ */ defineComponent({
86144
86269
  __name: "BmsForm",
86145
86270
  setup(__props) {
86146
86271
  const slots = useSlots();
@@ -86151,10 +86276,10 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
86151
86276
  return slotName === "actions";
86152
86277
  };
86153
86278
  return (_ctx, _cache) => {
86154
- return openBlock(), createElementBlock("div", _hoisted_1$A, [
86279
+ return openBlock(), createElementBlock("div", _hoisted_1$z, [
86155
86280
  (openBlock(), createElementBlock(Fragment, null, renderList(slots, (_, name) => {
86156
86281
  return openBlock(), createElementBlock(Fragment, null, [
86157
- !slotIsAction(name) ? (openBlock(), createElementBlock("section", _hoisted_2$n, [
86282
+ !slotIsAction(name) ? (openBlock(), createElementBlock("section", _hoisted_2$m, [
86158
86283
  renderSlot(_ctx.$slots, name, {}, void 0, true)
86159
86284
  ])) : createCommentVNode("", true)
86160
86285
  ], 64);
@@ -86167,16 +86292,16 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
86167
86292
  }
86168
86293
  });
86169
86294
 
86170
- const BmsForm = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-b5bab57e"]]);
86295
+ const BmsForm = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__scopeId", "data-v-b5bab57e"]]);
86171
86296
 
86172
- const _sfc_main$H = { };
86297
+ const _sfc_main$G = { };
86173
86298
 
86174
86299
  function _sfc_render(_ctx, _cache) {
86175
86300
  return (openBlock(), createElementBlock("header", null, [
86176
86301
  renderSlot(_ctx.$slots, "default", {}, undefined, true)
86177
86302
  ]))
86178
86303
  }
86179
- const BmsHeader = /*#__PURE__*/_export_sfc(_sfc_main$H, [['render',_sfc_render],['__scopeId',"data-v-97c1615a"]]);
86304
+ const BmsHeader = /*#__PURE__*/_export_sfc(_sfc_main$G, [['render',_sfc_render],['__scopeId',"data-v-97c1615a"]]);
86180
86305
 
86181
86306
  function isPlainObject$1(value) {
86182
86307
  if (value === null || typeof value !== "object") {
@@ -88948,7 +89073,7 @@ defineComponent({
88948
89073
  }
88949
89074
  });
88950
89075
 
88951
- const _hoisted_1$z = {
89076
+ const _hoisted_1$y = {
88952
89077
  xmlns: "http://www.w3.org/2000/svg",
88953
89078
  width: "28",
88954
89079
  height: "28",
@@ -88959,7 +89084,7 @@ const _hoisted_1$z = {
88959
89084
  "stroke-linecap": "round",
88960
89085
  "stroke-linejoin": "round"
88961
89086
  };
88962
- const _sfc_main$G = /* @__PURE__ */ defineComponent({
89087
+ const _sfc_main$F = /* @__PURE__ */ defineComponent({
88963
89088
  __name: "AnimatedCircleHelpIcon",
88964
89089
  setup(__props) {
88965
89090
  const defaultTransition = {
@@ -88999,7 +89124,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
88999
89124
  role: "button",
89000
89125
  tabindex: "0"
89001
89126
  }, [
89002
- (openBlock(), createElementBlock("svg", _hoisted_1$z, [
89127
+ (openBlock(), createElementBlock("svg", _hoisted_1$y, [
89003
89128
  _cache[1] || (_cache[1] = createElementVNode("circle", {
89004
89129
  cx: "12",
89005
89130
  cy: "12",
@@ -89023,7 +89148,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
89023
89148
  }
89024
89149
  });
89025
89150
 
89026
- const _hoisted_1$y = {
89151
+ const _hoisted_1$x = {
89027
89152
  xmlns: "http://www.w3.org/2000/svg",
89028
89153
  width: "28",
89029
89154
  height: "28",
@@ -89034,7 +89159,7 @@ const _hoisted_1$y = {
89034
89159
  "stroke-linecap": "round",
89035
89160
  "stroke-linejoin": "round"
89036
89161
  };
89037
- const _sfc_main$F = /* @__PURE__ */ defineComponent({
89162
+ const _sfc_main$E = /* @__PURE__ */ defineComponent({
89038
89163
  __name: "AnimatedActivityIcon",
89039
89164
  setup(__props) {
89040
89165
  const variants = {
@@ -89081,7 +89206,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
89081
89206
  role: "button",
89082
89207
  tabindex: "0"
89083
89208
  }, [
89084
- (openBlock(), createElementBlock("svg", _hoisted_1$y, [
89209
+ (openBlock(), createElementBlock("svg", _hoisted_1$x, [
89085
89210
  createVNode(unref(MotionComponent), {
89086
89211
  is: "path",
89087
89212
  ref_key: "target",
@@ -89094,7 +89219,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
89094
89219
  }
89095
89220
  });
89096
89221
 
89097
- const _sfc_main$E = /* @__PURE__ */ defineComponent({
89222
+ const _sfc_main$D = /* @__PURE__ */ defineComponent({
89098
89223
  __name: "BmsShortLinkMenu",
89099
89224
  props: {
89100
89225
  outline: { type: Boolean, default: false },
@@ -89115,7 +89240,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
89115
89240
  }, {
89116
89241
  default: withCtx(() => [
89117
89242
  renderSlot(_ctx.$slots, "documentationIcon", {}, () => [
89118
- createVNode(_sfc_main$G)
89243
+ createVNode(_sfc_main$F)
89119
89244
  ], true)
89120
89245
  ]),
89121
89246
  _: 3
@@ -89128,7 +89253,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
89128
89253
  }, {
89129
89254
  default: withCtx(() => [
89130
89255
  renderSlot(_ctx.$slots, "activityIcon", {}, () => [
89131
- createVNode(_sfc_main$F)
89256
+ createVNode(_sfc_main$E)
89132
89257
  ], true)
89133
89258
  ]),
89134
89259
  _: 3
@@ -89138,10 +89263,10 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
89138
89263
  }
89139
89264
  });
89140
89265
 
89141
- const BmsShortLinkMenu = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-d23e08a5"]]);
89266
+ const BmsShortLinkMenu = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-d23e08a5"]]);
89142
89267
 
89143
- const _hoisted_1$x = { class: "bms-header" };
89144
- const _hoisted_2$m = { class: "bms-header__title" };
89268
+ const _hoisted_1$w = { class: "bms-header" };
89269
+ const _hoisted_2$l = { class: "bms-header__title" };
89145
89270
  const _hoisted_3$c = { class: "bms-header__title__label" };
89146
89271
  const _hoisted_4$9 = { key: 0 };
89147
89272
  const _hoisted_5$7 = {
@@ -89156,7 +89281,7 @@ const _hoisted_7$5 = {
89156
89281
  key: 0,
89157
89282
  class: "bms-header__subtitle"
89158
89283
  };
89159
- const _sfc_main$D = /* @__PURE__ */ defineComponent({
89284
+ const _sfc_main$C = /* @__PURE__ */ defineComponent({
89160
89285
  __name: "BmsHeaderTitle",
89161
89286
  props: {
89162
89287
  title: {},
@@ -89170,8 +89295,8 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
89170
89295
  return props.documentationUrl || props.activityUrl;
89171
89296
  });
89172
89297
  return (_ctx, _cache) => {
89173
- return openBlock(), createElementBlock("div", _hoisted_1$x, [
89174
- createElementVNode("span", _hoisted_2$m, [
89298
+ return openBlock(), createElementBlock("div", _hoisted_1$w, [
89299
+ createElementVNode("span", _hoisted_2$l, [
89175
89300
  renderSlot(_ctx.$slots, "logo", {}, void 0, true),
89176
89301
  createElementVNode("span", _hoisted_3$c, [
89177
89302
  _ctx.label ? (openBlock(), createElementBlock("span", _hoisted_4$9, toDisplayString(_ctx.label), 1)) : createCommentVNode("", true),
@@ -89198,9 +89323,9 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
89198
89323
  }
89199
89324
  });
89200
89325
 
89201
- const BmsHeaderTitle = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-1368f77d"]]);
89326
+ const BmsHeaderTitle = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-1368f77d"]]);
89202
89327
 
89203
- const _sfc_main$C = /* @__PURE__ */ defineComponent({
89328
+ const _sfc_main$B = /* @__PURE__ */ defineComponent({
89204
89329
  __name: "BmsOverlay",
89205
89330
  props: {
89206
89331
  active: { type: Boolean },
@@ -89218,10 +89343,10 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
89218
89343
  }
89219
89344
  });
89220
89345
 
89221
- const BmsOverlay = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-383b958c"]]);
89346
+ const BmsOverlay = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__scopeId", "data-v-383b958c"]]);
89222
89347
 
89223
- const _hoisted_1$w = ["data-testid"];
89224
- const _hoisted_2$l = { class: "ui-modal__header" };
89348
+ const _hoisted_1$v = ["data-testid"];
89349
+ const _hoisted_2$k = { class: "ui-modal__header" };
89225
89350
  const _hoisted_3$b = { class: "ui-modal__header-inner" };
89226
89351
  const _hoisted_4$8 = { class: "ui-modal__title" };
89227
89352
  const _hoisted_5$6 = { class: "ui-modal__content" };
@@ -89232,7 +89357,7 @@ const _hoisted_8$3 = {
89232
89357
  class: "ui-modal__loader"
89233
89358
  };
89234
89359
  const _hoisted_9$2 = { key: 0 };
89235
- const _sfc_main$B = /* @__PURE__ */ defineComponent({
89360
+ const _sfc_main$A = /* @__PURE__ */ defineComponent({
89236
89361
  __name: "BmsModal",
89237
89362
  props: {
89238
89363
  modelValue: { default: null },
@@ -89355,7 +89480,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
89355
89480
  ref_key: "innerModal",
89356
89481
  ref: innerModal
89357
89482
  }, [
89358
- createElementVNode("header", _hoisted_2$l, [
89483
+ createElementVNode("header", _hoisted_2$k, [
89359
89484
  createElementVNode("div", _hoisted_3$b, [
89360
89485
  renderSlot(_ctx.$slots, "header", {}, () => [
89361
89486
  createElementVNode("h1", _hoisted_4$8, [
@@ -89426,7 +89551,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
89426
89551
  _: 1
89427
89552
  })
89428
89553
  ], 512)
89429
- ], 10, _hoisted_1$w)
89554
+ ], 10, _hoisted_1$v)
89430
89555
  ]),
89431
89556
  _: 3
89432
89557
  }, 8, ["active", "priority"])
@@ -89438,10 +89563,10 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
89438
89563
  }
89439
89564
  });
89440
89565
 
89441
- const BmsModal = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__scopeId", "data-v-96b6d748"]]);
89566
+ const BmsModal = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-c222186a"]]);
89442
89567
 
89443
- const _hoisted_1$v = { class: "header" };
89444
- const _sfc_main$A = /* @__PURE__ */ defineComponent({
89568
+ const _hoisted_1$u = { class: "header" };
89569
+ const _sfc_main$z = /* @__PURE__ */ defineComponent({
89445
89570
  __name: "BmsSection",
89446
89571
  props: {
89447
89572
  style: { default: "flat" }
@@ -89451,7 +89576,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
89451
89576
  return openBlock(), createElementBlock("section", {
89452
89577
  class: normalizeClass(_ctx.style)
89453
89578
  }, [
89454
- createElementVNode("div", _hoisted_1$v, [
89579
+ createElementVNode("div", _hoisted_1$u, [
89455
89580
  renderSlot(_ctx.$slots, "header", {}, void 0, true)
89456
89581
  ]),
89457
89582
  renderSlot(_ctx.$slots, "default", {}, void 0, true)
@@ -89460,11 +89585,11 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
89460
89585
  }
89461
89586
  });
89462
89587
 
89463
- const BmsSection = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-2e9192be"]]);
89588
+ const BmsSection = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-2e9192be"]]);
89464
89589
 
89465
- const _hoisted_1$u = { class: "step" };
89466
- const _hoisted_2$k = { class: "step-buttons" };
89467
- const _sfc_main$z = /* @__PURE__ */ defineComponent({
89590
+ const _hoisted_1$t = { class: "step" };
89591
+ const _hoisted_2$j = { class: "step-buttons" };
89592
+ const _sfc_main$y = /* @__PURE__ */ defineComponent({
89468
89593
  __name: "BmsStep",
89469
89594
  props: {
89470
89595
  previousLabel: { default: "Précédent" },
@@ -89476,10 +89601,10 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
89476
89601
  emits: ["previous", "next"],
89477
89602
  setup(__props) {
89478
89603
  return (_ctx, _cache) => {
89479
- return openBlock(), createElementBlock("div", _hoisted_1$u, [
89604
+ return openBlock(), createElementBlock("div", _hoisted_1$t, [
89480
89605
  renderSlot(_ctx.$slots, "default", {}, void 0, true),
89481
89606
  renderSlot(_ctx.$slots, "actions", {}, () => [
89482
- createElementVNode("div", _hoisted_2$k, [
89607
+ createElementVNode("div", _hoisted_2$j, [
89483
89608
  _ctx.previousLabel ? (openBlock(), createBlock(_sfc_main$1k, {
89484
89609
  key: 0,
89485
89610
  "data-test": "previous-button",
@@ -89512,10 +89637,10 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
89512
89637
  }
89513
89638
  });
89514
89639
 
89515
- const BmsStep = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-fcce71d1"]]);
89640
+ const BmsStep = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-fcce71d1"]]);
89516
89641
 
89517
- const _hoisted_1$t = { class: "stepper" };
89518
- const _hoisted_2$j = { class: "stepper-header" };
89642
+ const _hoisted_1$s = { class: "stepper" };
89643
+ const _hoisted_2$i = { class: "stepper-header" };
89519
89644
  const _hoisted_3$a = ["onClick"];
89520
89645
  const _hoisted_4$7 = { key: 1 };
89521
89646
  const _hoisted_5$5 = ["onClick"];
@@ -89524,7 +89649,7 @@ const _hoisted_6$3 = {
89524
89649
  class: "stepper-header--separator"
89525
89650
  };
89526
89651
  const _hoisted_7$3 = { class: "stepper-body" };
89527
- const _sfc_main$y = /* @__PURE__ */ defineComponent({
89652
+ const _sfc_main$x = /* @__PURE__ */ defineComponent({
89528
89653
  __name: "BmsStepper",
89529
89654
  props: {
89530
89655
  currentStep: { default: 0 },
@@ -89570,8 +89695,8 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
89570
89695
  if (props.clickable) emit("stepClick", number);
89571
89696
  };
89572
89697
  return (_ctx, _cache) => {
89573
- return openBlock(), createElementBlock("div", _hoisted_1$t, [
89574
- createElementVNode("div", _hoisted_2$j, [
89698
+ return openBlock(), createElementBlock("div", _hoisted_1$s, [
89699
+ createElementVNode("div", _hoisted_2$i, [
89575
89700
  (openBlock(true), createElementBlock(Fragment, null, renderList(steps.value, (step, index) => {
89576
89701
  return openBlock(), createElementBlock("div", {
89577
89702
  key: index,
@@ -89598,7 +89723,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
89598
89723
  }
89599
89724
  });
89600
89725
 
89601
- const BmsStepper = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-c132d5cd"]]);
89726
+ const BmsStepper = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-c132d5cd"]]);
89602
89727
 
89603
89728
  const historyRoutes = ref([]);
89604
89729
  const useRouterHistory = () => {
@@ -89633,7 +89758,7 @@ const useRouterHistory = () => {
89633
89758
  };
89634
89759
  };
89635
89760
 
89636
- const _sfc_main$x = /* @__PURE__ */ defineComponent({
89761
+ const _sfc_main$w = /* @__PURE__ */ defineComponent({
89637
89762
  __name: "BmsBackButton",
89638
89763
  props: {
89639
89764
  fallback: {}
@@ -89657,9 +89782,9 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
89657
89782
  }
89658
89783
  });
89659
89784
 
89660
- const BmsBackButton = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-02d02028"]]);
89785
+ const BmsBackButton = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-02d02028"]]);
89661
89786
 
89662
- const _hoisted_1$s = {
89787
+ const _hoisted_1$r = {
89663
89788
  xmlns: "http://www.w3.org/2000/svg",
89664
89789
  width: "24",
89665
89790
  height: "24",
@@ -89670,7 +89795,7 @@ const _hoisted_1$s = {
89670
89795
  "stroke-linecap": "round",
89671
89796
  "stroke-linejoin": "round"
89672
89797
  };
89673
- const _sfc_main$w = /* @__PURE__ */ defineComponent({
89798
+ const _sfc_main$v = /* @__PURE__ */ defineComponent({
89674
89799
  __name: "AnimatedHomeIcon",
89675
89800
  setup(__props) {
89676
89801
  const variants = {
@@ -89710,7 +89835,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
89710
89835
  onMouseenter: mouseEnterHandler,
89711
89836
  onMouseleave: mouseLeaveHandler
89712
89837
  }, [
89713
- (openBlock(), createElementBlock("svg", _hoisted_1$s, [
89838
+ (openBlock(), createElementBlock("svg", _hoisted_1$r, [
89714
89839
  _cache[0] || (_cache[0] = createElementVNode("path", { d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }, null, -1)),
89715
89840
  createVNode(unref(MotionComponent), {
89716
89841
  is: "path",
@@ -89724,12 +89849,12 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
89724
89849
  }
89725
89850
  });
89726
89851
 
89727
- const _hoisted_1$r = { class: "breadcrumb" };
89728
- const _hoisted_2$i = {
89852
+ const _hoisted_1$q = { class: "breadcrumb" };
89853
+ const _hoisted_2$h = {
89729
89854
  key: 1,
89730
89855
  class: "breadcrumb__here"
89731
89856
  };
89732
- const _sfc_main$v = /* @__PURE__ */ defineComponent({
89857
+ const _sfc_main$u = /* @__PURE__ */ defineComponent({
89733
89858
  __name: "BmsBreadcrumb",
89734
89859
  props: {
89735
89860
  homeLocation: { default: "/" },
@@ -89739,10 +89864,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
89739
89864
  setup(__props) {
89740
89865
  return (_ctx, _cache) => {
89741
89866
  const _component_RouterLink = resolveComponent("RouterLink");
89742
- return openBlock(), createElementBlock("div", _hoisted_1$r, [
89867
+ return openBlock(), createElementBlock("div", _hoisted_1$q, [
89743
89868
  createVNode(_component_RouterLink, { to: _ctx.homeLocation }, {
89744
89869
  default: withCtx(() => [
89745
- createVNode(_sfc_main$w)
89870
+ createVNode(_sfc_main$v)
89746
89871
  ]),
89747
89872
  _: 1
89748
89873
  }, 8, ["to"]),
@@ -89759,7 +89884,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
89759
89884
  createTextVNode(toDisplayString(breadcrumb.label), 1)
89760
89885
  ]),
89761
89886
  _: 2
89762
- }, 1032, ["to"])) : (openBlock(), createElementBlock("span", _hoisted_2$i, toDisplayString(breadcrumb.label), 1))
89887
+ }, 1032, ["to"])) : (openBlock(), createElementBlock("span", _hoisted_2$h, toDisplayString(breadcrumb.label), 1))
89763
89888
  ], 64);
89764
89889
  }), 128))
89765
89890
  ]);
@@ -89767,10 +89892,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
89767
89892
  }
89768
89893
  });
89769
89894
 
89770
- const BmsBreadcrumb = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__scopeId", "data-v-a7f3b134"]]);
89895
+ const BmsBreadcrumb = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-a7f3b134"]]);
89771
89896
 
89772
- const _hoisted_1$q = { class: "label" };
89773
- const _sfc_main$u = /* @__PURE__ */ defineComponent({
89897
+ const _hoisted_1$p = { class: "label" };
89898
+ const _sfc_main$t = /* @__PURE__ */ defineComponent({
89774
89899
  __name: "UiMenuItem",
89775
89900
  props: {
89776
89901
  item: {},
@@ -89798,7 +89923,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
89798
89923
  key: 0,
89799
89924
  size: 20
89800
89925
  })) : createCommentVNode("", true),
89801
- createElementVNode("span", _hoisted_1$q, toDisplayString(_ctx.item.label), 1)
89926
+ createElementVNode("span", _hoisted_1$p, toDisplayString(_ctx.item.label), 1)
89802
89927
  ]),
89803
89928
  _: 1
89804
89929
  }, 8, ["to", "target", "classes"]);
@@ -89806,15 +89931,15 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
89806
89931
  }
89807
89932
  });
89808
89933
 
89809
- const _hoisted_1$p = {
89934
+ const _hoisted_1$o = {
89810
89935
  key: 0,
89811
89936
  class: "parent-container"
89812
89937
  };
89813
- const _hoisted_2$h = { class: "parent-label" };
89938
+ const _hoisted_2$g = { class: "parent-label" };
89814
89939
  const _hoisted_3$9 = ["onClick"];
89815
89940
  const _hoisted_4$6 = { class: "parent-label" };
89816
89941
  const _hoisted_5$4 = { class: "additional" };
89817
- const _sfc_main$t = /* @__PURE__ */ defineComponent({
89942
+ const _sfc_main$s = /* @__PURE__ */ defineComponent({
89818
89943
  __name: "BmsMenuNav",
89819
89944
  props: {
89820
89945
  items: {},
@@ -89876,14 +90001,14 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
89876
90001
  return openBlock(), createElementBlock("li", {
89877
90002
  key: item.label
89878
90003
  }, [
89879
- hasSubItems(item) ? (openBlock(), createElementBlock("div", _hoisted_1$p, [
90004
+ hasSubItems(item) ? (openBlock(), createElementBlock("div", _hoisted_1$o, [
89880
90005
  item.link ? (openBlock(), createBlock(_sfc_main$1n, {
89881
90006
  key: 0,
89882
90007
  to: item.link,
89883
90008
  class: normalizeClass(`parent-item ${isItemActive(item) ? "active" : ""}`)
89884
90009
  }, {
89885
90010
  default: withCtx(() => [
89886
- createElementVNode("span", _hoisted_2$h, toDisplayString(item.label), 1),
90011
+ createElementVNode("span", _hoisted_2$g, toDisplayString(item.label), 1),
89887
90012
  item.icon ? (openBlock(), createBlock(resolveDynamicComponent(item.icon), {
89888
90013
  key: 0,
89889
90014
  class: "parent-item__custom-icon"
@@ -89905,7 +90030,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
89905
90030
  return openBlock(), createElementBlock("li", {
89906
90031
  key: subItem.label
89907
90032
  }, [
89908
- createVNode(_sfc_main$u, {
90033
+ createVNode(_sfc_main$t, {
89909
90034
  item: subItem,
89910
90035
  active: isItemActive(subItem),
89911
90036
  onClick: ($event) => clickItem(subItem)
@@ -89918,7 +90043,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
89918
90043
  ]),
89919
90044
  _: 2
89920
90045
  }, 1024)
89921
- ])) : (openBlock(), createBlock(_sfc_main$u, {
90046
+ ])) : (openBlock(), createBlock(_sfc_main$t, {
89922
90047
  key: 1,
89923
90048
  item,
89924
90049
  active: isItemActive(item),
@@ -89935,12 +90060,12 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
89935
90060
  }
89936
90061
  });
89937
90062
 
89938
- const BmsMenuNav = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-731a6d8c"]]);
90063
+ const BmsMenuNav = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-731a6d8c"]]);
89939
90064
 
89940
- const _hoisted_1$o = { class: "menu__container" };
89941
- const _hoisted_2$g = { class: "menu__top" };
90065
+ const _hoisted_1$n = { class: "menu__container" };
90066
+ const _hoisted_2$f = { class: "menu__top" };
89942
90067
  const _hoisted_3$8 = { class: "menu__copyright" };
89943
- const _sfc_main$s = /* @__PURE__ */ defineComponent({
90068
+ const _sfc_main$r = /* @__PURE__ */ defineComponent({
89944
90069
  __name: "BmsFixedMenu",
89945
90070
  props: {
89946
90071
  items: {},
@@ -89948,8 +90073,8 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
89948
90073
  },
89949
90074
  setup(__props) {
89950
90075
  return (_ctx, _cache) => {
89951
- return openBlock(), createElementBlock("div", _hoisted_1$o, [
89952
- createElementVNode("div", _hoisted_2$g, [
90076
+ return openBlock(), createElementBlock("div", _hoisted_1$n, [
90077
+ createElementVNode("div", _hoisted_2$f, [
89953
90078
  renderSlot(_ctx.$slots, "top", {}, void 0, true)
89954
90079
  ]),
89955
90080
  createVNode(BmsMenuNav, {
@@ -89971,11 +90096,11 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
89971
90096
  }
89972
90097
  });
89973
90098
 
89974
- const BmsFixedMenu = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-701e04d9"]]);
90099
+ const BmsFixedMenu = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-701e04d9"]]);
89975
90100
 
89976
- const _hoisted_1$n = { class: "menu" };
89977
- const _hoisted_2$f = { class: "menu__copyright" };
89978
- const _sfc_main$r = /* @__PURE__ */ defineComponent({
90101
+ const _hoisted_1$m = { class: "menu" };
90102
+ const _hoisted_2$e = { class: "menu__copyright" };
90103
+ const _sfc_main$q = /* @__PURE__ */ defineComponent({
89979
90104
  __name: "BmsMenu",
89980
90105
  props: {
89981
90106
  items: {},
@@ -89991,7 +90116,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
89991
90116
  });
89992
90117
  const toggleMenu = (newMenuState = true) => isMenuOpen.value = newMenuState;
89993
90118
  return (_ctx, _cache) => {
89994
- return openBlock(), createElementBlock("div", _hoisted_1$n, [
90119
+ return openBlock(), createElementBlock("div", _hoisted_1$m, [
89995
90120
  createVNode(unref(_sfc_main$1j), {
89996
90121
  onClick: _cache[0] || (_cache[0] = ($event) => toggleMenu(!isMenuOpen.value)),
89997
90122
  "data-testid": "openMenu",
@@ -90038,7 +90163,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
90038
90163
  ]),
90039
90164
  _: 3
90040
90165
  }, 8, ["items", "active-link"]),
90041
- createElementVNode("div", _hoisted_2$f, [
90166
+ createElementVNode("div", _hoisted_2$e, [
90042
90167
  renderSlot(_ctx.$slots, "footer", {}, () => [
90043
90168
  _cache[2] || (_cache[2] = createElementVNode("p", { class: "menu__copyright-madein" }, "Made with ♥ by BMS", -1))
90044
90169
  ], true)
@@ -90056,9 +90181,9 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
90056
90181
  }
90057
90182
  });
90058
90183
 
90059
- const BmsMenu = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-02719cac"]]);
90184
+ const BmsMenu = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-02719cac"]]);
90060
90185
 
90061
- const _sfc_main$q = /* @__PURE__ */ defineComponent({
90186
+ const _sfc_main$p = /* @__PURE__ */ defineComponent({
90062
90187
  __name: "UiTab",
90063
90188
  props: {
90064
90189
  currentRoute: {},
@@ -90090,11 +90215,11 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
90090
90215
  }
90091
90216
  });
90092
90217
 
90093
- const UiTab = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-d2f6b84b"]]);
90218
+ const UiTab = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-d2f6b84b"]]);
90094
90219
 
90095
- const _hoisted_1$m = { class: "tabs-header" };
90096
- const _hoisted_2$e = { class: "tabs-title" };
90097
- const _sfc_main$p = /* @__PURE__ */ defineComponent({
90220
+ const _hoisted_1$l = { class: "tabs-header" };
90221
+ const _hoisted_2$d = { class: "tabs-title" };
90222
+ const _sfc_main$o = /* @__PURE__ */ defineComponent({
90098
90223
  __name: "BmsTabs",
90099
90224
  props: {
90100
90225
  title: {},
@@ -90103,8 +90228,8 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
90103
90228
  setup(__props) {
90104
90229
  const { currentRoute } = useRouter();
90105
90230
  return (_ctx, _cache) => {
90106
- return openBlock(), createElementBlock("div", _hoisted_1$m, [
90107
- createElementVNode("div", _hoisted_2$e, [
90231
+ return openBlock(), createElementBlock("div", _hoisted_1$l, [
90232
+ createElementVNode("div", _hoisted_2$d, [
90108
90233
  createElementVNode("h3", null, toDisplayString(_ctx.title), 1)
90109
90234
  ]),
90110
90235
  (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.tabs, (tab) => {
@@ -90119,9 +90244,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
90119
90244
  }
90120
90245
  });
90121
90246
 
90122
- const BmsTabs = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-f862fbda"]]);
90247
+ const BmsTabs = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-f862fbda"]]);
90123
90248
 
90124
- const _sfc_main$o = /* @__PURE__ */ defineComponent({
90249
+ const _sfc_main$n = /* @__PURE__ */ defineComponent({
90125
90250
  __name: "UiPopoverMenu",
90126
90251
  props: {
90127
90252
  visible: { type: Boolean, default: false },
@@ -90209,7 +90334,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
90209
90334
  }
90210
90335
  });
90211
90336
 
90212
- const UiPopoverMenu = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-a5b2b7f5"]]);
90337
+ const UiPopoverMenu = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-a5b2b7f5"]]);
90213
90338
 
90214
90339
  const getInitials = (name) => {
90215
90340
  if (name.length === 0) return "";
@@ -90226,8 +90351,8 @@ const getInitials = (name) => {
90226
90351
  return firstLetter + secondLetter;
90227
90352
  };
90228
90353
 
90229
- const _hoisted_1$l = ["src"];
90230
- const _sfc_main$n = /* @__PURE__ */ defineComponent({
90354
+ const _hoisted_1$k = ["src"];
90355
+ const _sfc_main$m = /* @__PURE__ */ defineComponent({
90231
90356
  __name: "UiTenantImage",
90232
90357
  props: {
90233
90358
  tenant: {}
@@ -90238,7 +90363,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
90238
90363
  key: 0,
90239
90364
  src: _ctx.tenant?.logoFile,
90240
90365
  class: "site-logo"
90241
- }, null, 8, _hoisted_1$l)) : (openBlock(), createBlock(unref(BmsCocarde), {
90366
+ }, null, 8, _hoisted_1$k)) : (openBlock(), createBlock(unref(BmsCocarde), {
90242
90367
  key: 1,
90243
90368
  initials: unref(getInitials)(_ctx.tenant.label),
90244
90369
  size: "small"
@@ -90247,8 +90372,8 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
90247
90372
  }
90248
90373
  });
90249
90374
 
90250
- const _hoisted_1$k = ["data-testid"];
90251
- const _sfc_main$m = /* @__PURE__ */ defineComponent({
90375
+ const _hoisted_1$j = ["data-testid"];
90376
+ const _sfc_main$l = /* @__PURE__ */ defineComponent({
90252
90377
  __name: "UiTenantLabel",
90253
90378
  props: {
90254
90379
  tenant: {}
@@ -90269,10 +90394,10 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
90269
90394
  key: 0,
90270
90395
  size: 12
90271
90396
  })) : createCommentVNode("", true),
90272
- createVNode(_sfc_main$n, { tenant: _ctx.tenant }, null, 8, ["tenant"]),
90397
+ createVNode(_sfc_main$m, { tenant: _ctx.tenant }, null, 8, ["tenant"]),
90273
90398
  createTextVNode(" " + toDisplayString(_ctx.tenant.label), 1),
90274
90399
  createElementVNode("em", null, "- " + toDisplayString(_ctx.tenant.information), 1)
90275
- ], 8, _hoisted_1$k),
90400
+ ], 8, _hoisted_1$j),
90276
90401
  _ctx.tenant.isFavorite ? (openBlock(), createBlock(_sfc_main$1j, {
90277
90402
  key: 0,
90278
90403
  class: "remove-tenant-button",
@@ -90288,10 +90413,10 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
90288
90413
  }
90289
90414
  });
90290
90415
 
90291
- const UiTenantLabel = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-3615f3c6"]]);
90416
+ const UiTenantLabel = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-3615f3c6"]]);
90292
90417
 
90293
- const _hoisted_1$j = { class: "tenantsMenu-search" };
90294
- const _sfc_main$l = /* @__PURE__ */ defineComponent({
90418
+ const _hoisted_1$i = { class: "tenantsMenu-search" };
90419
+ const _sfc_main$k = /* @__PURE__ */ defineComponent({
90295
90420
  __name: "UiTenantSwitcher",
90296
90421
  props: {
90297
90422
  visible: { type: Boolean },
@@ -90352,8 +90477,8 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
90352
90477
  class: "tenantsMenu"
90353
90478
  }, {
90354
90479
  default: withCtx(() => [
90355
- createElementVNode("div", _hoisted_1$j, [
90356
- createVNode(unref(_sfc_main$_), {
90480
+ createElementVNode("div", _hoisted_1$i, [
90481
+ createVNode(unref(_sfc_main$Z), {
90357
90482
  ref_key: "searchRef",
90358
90483
  ref: searchRef,
90359
90484
  modelValue: search.value,
@@ -90406,13 +90531,13 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
90406
90531
  }
90407
90532
  });
90408
90533
 
90409
- const UiTenantSwitcher = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-5a31f3bb"]]);
90534
+ const UiTenantSwitcher = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-5a31f3bb"]]);
90410
90535
 
90411
- const _hoisted_1$i = {
90536
+ const _hoisted_1$h = {
90412
90537
  key: 0,
90413
90538
  class: "tenant-label"
90414
90539
  };
90415
- const _sfc_main$k = /* @__PURE__ */ defineComponent({
90540
+ const _sfc_main$j = /* @__PURE__ */ defineComponent({
90416
90541
  __name: "BmsTenantSwitcher",
90417
90542
  props: {
90418
90543
  currentTenant: { default: null },
@@ -90466,8 +90591,8 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
90466
90591
  ref: tenantSwitchButton,
90467
90592
  class: "tenant-switcher-button"
90468
90593
  }, [
90469
- _ctx.currentTenant && _ctx.tenants.length === 1 ? (openBlock(), createElementBlock("div", _hoisted_1$i, [
90470
- createVNode(_sfc_main$n, { tenant: _ctx.currentTenant }, null, 8, ["tenant"]),
90594
+ _ctx.currentTenant && _ctx.tenants.length === 1 ? (openBlock(), createElementBlock("div", _hoisted_1$h, [
90595
+ createVNode(_sfc_main$m, { tenant: _ctx.currentTenant }, null, 8, ["tenant"]),
90471
90596
  createElementVNode("span", null, toDisplayString(_ctx.currentTenant.label), 1)
90472
90597
  ])) : _ctx.tenants.length > 0 ? (openBlock(), createBlock(unref(_sfc_main$1k), {
90473
90598
  key: 1,
@@ -90475,7 +90600,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
90475
90600
  onClick: _cache[0] || (_cache[0] = ($event) => showTenantSwitcher.value = !showTenantSwitcher.value)
90476
90601
  }, {
90477
90602
  start: withCtx(() => [
90478
- _ctx.currentTenant ? (openBlock(), createBlock(_sfc_main$n, {
90603
+ _ctx.currentTenant ? (openBlock(), createBlock(_sfc_main$m, {
90479
90604
  key: 0,
90480
90605
  tenant: _ctx.currentTenant
90481
90606
  }, null, 8, ["tenant"])) : createCommentVNode("", true)
@@ -90501,10 +90626,10 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
90501
90626
  }
90502
90627
  });
90503
90628
 
90504
- const BmsTenantSwitcher = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-f8449c43"]]);
90629
+ const BmsTenantSwitcher = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-f8449c43"]]);
90505
90630
 
90506
- const _hoisted_1$h = ["data-id", "draggable", "onDragstart"];
90507
- const _sfc_main$j = /* @__PURE__ */ defineComponent({
90631
+ const _hoisted_1$g = ["data-id", "draggable", "onDragstart"];
90632
+ const _sfc_main$i = /* @__PURE__ */ defineComponent({
90508
90633
  __name: "DraggableList",
90509
90634
  props: {
90510
90635
  modelValue: {}
@@ -90621,7 +90746,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
90621
90746
  ]),
90622
90747
  _: 1
90623
90748
  }, 8, ["mode", "onClick"])
90624
- ], 40, _hoisted_1$h),
90749
+ ], 40, _hoisted_1$g),
90625
90750
  createElementVNode("div", {
90626
90751
  class: "separator",
90627
90752
  onDragenter: onSeparatorDragEnter
@@ -90633,29 +90758,29 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
90633
90758
  }
90634
90759
  });
90635
90760
 
90636
- const BmsDraggableList = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-a5c3d8e7"]]);
90761
+ const BmsDraggableList = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-a5c3d8e7"]]);
90637
90762
 
90638
- const _hoisted_1$g = {
90763
+ const _hoisted_1$f = {
90639
90764
  xmlns: "http://www.w3.org/2000/svg",
90640
90765
  "data-name": "Layer 1",
90641
90766
  viewBox: "0 0 1009.54 789.93"
90642
90767
  };
90643
90768
 
90644
90769
  function render(_ctx, _cache) {
90645
- return (openBlock(), createElementBlock("svg", _hoisted_1$g, [...(_cache[0] || (_cache[0] = [
90770
+ return (openBlock(), createElementBlock("svg", _hoisted_1$f, [...(_cache[0] || (_cache[0] = [
90646
90771
  createStaticVNode("<defs><linearGradient id=\"a\" x1=\"318.22\" x2=\"630.35\" y1=\"488.45\" y2=\"488.45\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"gray\" stop-opacity=\".25\"></stop><stop offset=\".54\" stop-color=\"gray\" stop-opacity=\".12\"></stop><stop offset=\"1\" stop-color=\"gray\" stop-opacity=\".1\"></stop></linearGradient></defs><ellipse cx=\"354.13\" cy=\"741.27\" fill=\"var(--bms-main-140)\" opacity=\".1\" rx=\"176.1\" ry=\"33.36\"></ellipse><path fill=\"var(--bms-main-140)\" d=\"M586.55 111.4c-64.72-2.24-126.36-23.14-185.22-46S284.17 17.22 221 5.11c-40.63-7.79-87.1-8.9-119.83 12.86-31.51 21-41.69 57.15-47.16 90.72-4.12 25.26-6.54 51.85 4.74 75.5 7.84 16.42 21.74 30.22 31.36 45.95 33.47 54.72 9.81 122.2-26.45 175.63-17 25.06-36.75 49-49.88 75.65s-19.2 57.29-7.71 84.55c11.38 27 38.51 47.24 67.9 61.49 59.69 28.95 130 37.23 198.61 41.93 151.83 10.38 304.46 5.89 456.69 1.38 56.34-1.66 112.92-3.35 168.34-12.06 30.78-4.84 62.55-12.52 84.9-31.06 28.36-23.53 35.39-63.37 16.38-92.87-31.88-49.5-120-61.79-142.31-114.9-12.26-29.24.33-61.8 18.16-88.91 38.24-58.17 102.33-109.2 105.7-175.68 2.32-45.66-28.49-91.39-76.13-113-49.93-22.65-119.18-19.8-156 17.69-37.95 38.56-104.61 53.41-161.76 51.42Z\" opacity=\".1\"></path><path fill=\"url(#a)\" d=\"m630.35 416.77-30.63-20.65 15.45-23-80.9-6.45-29.07 22.48-36.39-20.4-30.35 3.65-.36-8a225.78 225.78 0 0 0-2.51-24.9c.13-2.5.22-5.37.21-8.49 0-13.15-1.78-30.58-9.6-42.2l1.8-16.18-14.6-17.25a110.37 110.37 0 0 1 8-13.46c.5-.72 1-1.42 1.54-2.1 18.95-1.37 33.9-16.95 33.9-36 0-.88 0-1.76-.1-2.63 0-.35-.07-.71-.11-1.06 1.85 1 3.72 2 5.59 3 .35.5.75 1 1.19 1.59l.09.11.56.69.18.21c.2.24.41.47.62.71l.14.16c.53.59 1.09 1.19 1.69 1.78a1.8 1.8 0 0 1 .2.19l.75.7.21.19c.64.57 1.32 1.12 2 1.64l.22.16.86.59.28.18c.33.2.67.41 1 .6l.12.07c.39.21.79.41 1.19.6l.2.08q.51.22 1 .42l.31.11c.35.12.69.23 1.05.33l.22.06c.44.11.88.2 1.33.27h.05a10.88 10.88 0 0 0 1.28.13h.29a11 11 0 0 0 1.15 0h.25a11.85 11.85 0 0 0 1.43-.17 15.78 15.78 0 0 0 6.3-2.26 5.5 5.5 0 0 0 1.28-1.19c2-2.62-.2-5.49-.2-5.49-.78-1.86-5.84-3.17-5.84-3.17s-16-6.68-16-12-4-32.92-45.29-39.23c0 0-26.86-1.51-34.41 12.87l-.16 1.68c-2.22 1.39-4.06 4.18-6.25 5a10.21 10.21 0 0 0-2.71 1v-.19a2.58 2.58 0 0 0-.61.79 8 8 0 0 0-.83 3 11.3 11.3 0 0 1-1.31 3.63 8.07 8.07 0 0 1-.6.92l-.17.27a7.3 7.3 0 0 0 3.4-.55 16.93 16.93 0 0 1-1 4 3.32 3.32 0 0 0 3.08-1.84v-.08l.13-.18a8.44 8.44 0 0 0 .62-1.45l-.11.12c.2-.65.38-1.31.6-1.95a3.06 3.06 0 0 1 .49-1 2.42 2.42 0 0 1 2.07-.69l-.41 8.67h.18a11.83 11.83 0 0 1-.88 1.82c-1.42 2.3-4 3.87-4.95 6.39a9.4 9.4 0 0 0-.46 3.78c0 .75.09 1.51.15 2.26v-.06c.14 2 .18 3.9-.9 5.51-.74 1.1-1.93 1.93-2.34 3.18a3.1 3.1 0 0 0-.15 1.08 12.13 12.13 0 0 0 .68 3.21.14.14 0 0 0 0-.06 4.88 4.88 0 0 1 .17 2.36c-.45 2-2.88 3.67-2.76 5.58a2.15 2.15 0 0 0 .11.74 4.05 4.05 0 0 0 2.26 2 8.8 8.8 0 0 0 5.08 1.12 6.68 6.68 0 0 0 1.9-.65c-.7 1.61-1.42 3.2-2.15 4.71-.11.24-.23.48-.35.72 0 0-6.18-4.13-9.69 4.29a18.68 18.68 0 0 0-2.17 5.64 13.42 13.42 0 0 1-.74 2.32 14.93 14.93 0 0 1-6.68 6c-7.16 3.28-36.08 39.35-36.59 48.69a54.49 54.49 0 0 1-1.84 10.78 64.15 64.15 0 0 0-1.72 25.49 48.77 48.77 0 0 0 1.77 8.13c3.07 9.33 5.12 26.74 5.12 26.74l3.32 30.22a86 86 0 0 0 .54 12.49c-3.39 3.87-17 20-11.8 24.39 4 3.46 11 2.89 14.93 2.18-3.31 8.19-8.52 22.43-9.21 32.21-1 14.47 1.71 33.64 6 41s18.59 26.24 18.59 26.24-.67 25.9 4.44 35.31 7.17 28.93 7.17 28.93 4.77 16.48 2.38 22.54 4.43 11.1-2.73 15.13-16.32 94.86-16.32 94.86-3.69 59.53 0 62.56a3.75 3.75 0 0 0 .63.37v20s-2.56 4.2 7.85 5.05c7.13.57 27.34 1.86 39.33 2.61l9.29.58s22 4.38 31.72 0 26.95-4.28 24.39-15.85a32.92 32.92 0 0 0-1.36-4.63c-2.81-7.18-7.58-8-16.37-10-.51-.11-1-.21-1.45-.29-9.26-1.61-12.3 2.7-17.49-2.91-4.51-4.85-18.87-10.28-23.76-12 .12-.36.27-.71.39-1.08a7.32 7.32 0 0 1-3.71-1.81l13.25.84 7.89.49s18.7 3.73 27 0 22.9-3.63 20.72-13.46a28.21 28.21 0 0 0-1.15-3.94c-2.39-6.1-6.45-6.77-13.92-8.46-.43-.09-.83-.18-1.23-.25-7.87-1.37-10.45 2.29-14.86-2.47-3.78-4.06-15.71-8.61-20-10.16 0-2.22-3-5.38-4.89-8.55-2.22-3.7 1.88-16.65 1.88-16.65l2.34-53.73a10.38 10.38 0 0 1 2.8-.8s10.58-10.1 8.19-20.86a69.13 69.13 0 0 1-.76-9.83c3.48-3.23 8.27-8 9.63-10.94 2.22-4.79 0-28 0-28v-88.75l17.7 1.79 16.06 1.65 4.89.5 16.06 1.62 36.91 3.73 33.26-6.3 14.39-2.72 29.59-5.6v-72.4ZM386.74 176.86l-2.06-.22c.68.03 1.4.16 2.06.22Z\" transform=\"translate(-95.23 -55.03)\"></path><path fill=\"#efb7b9\" d=\"M463.33 408.75c-10 14.31-45.95 6.73-45.95 6.73l-27.86-26.07-3.75-3.53 6.29-13.36s2 .55 5.43 1.53c18.01 5.23 74.28 22.67 65.84 34.7Z\"></path><path d=\"M397.47 374.05c-1.23 4.28-4.6 10.69-7.95 15.36l-3.75-3.53 6.29-13.36s2.02.55 5.41 1.53Z\" opacity=\".1\"></path><path fill=\"#dce6f2\" d=\"M301.92 223.39s-25.68 11.39-24.42 39.36a461.14 461.14 0 0 0 5.88 53.76s-5.25 42.09 16.61 52.94 42.09 19.77 42.09 19.77 34.2 3.68 38.45 5.2 17.53-21.72 15.08-25.34-33.84-11.21-37.84-17.25-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11 1.87-9.11 2.51-11.4 2.26-24.4 2.26-24.4 10.78-78.7-37.17-71.87Z\"></path><path d=\"M318.87 315.36s-35.23 5.9-31.82 18.23c0 0 12.79-13.31 31.82-18.23ZM319.14 320.35s-19.37 15.81-15.58 16.62 15.58-16.62 15.58-16.62ZM328.45 325.86s-5.19 10.63-2 9.91 2-9.91 2-9.91Z\" opacity=\".1\"></path><path d=\"m398.77 375.18-2.14-.61c.61-2 .78-3.62.28-4.37-2.45-3.62-33.82-11.2-37.81-17.25s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11 1.87-9.11 2.51-11.4 2.26-24.41 2.26-24.41 10.75-78.69-37.2-71.86c0 0-25.68 11.4-24.43 39.37a459.85 459.85 0 0 0 5.89 53.76s-5.25 42.09 16.61 52.94 42.09 19.77 42.09 19.77 34.19 3.67 38.45 5.2c1.61.58 4.52-2.41 7.37-6.52l1.62 1.51 27.86 26.06s35.95 7.59 45.95-6.72c8.45-12.04-47.81-29.48-65.86-34.7Z\" opacity=\".1\"></path><path fill=\"#965d7b\" d=\"M287.14 118.41a8.5 8.5 0 0 0-2.77 1.07c-1 .83-1 2.25-1.25 3.49a11.48 11.48 0 0 1-2 4.78 7.19 7.19 0 0 0 3.33-.55 17.14 17.14 0 0 1-1 4 3.24 3.24 0 0 0 3-1.83 19.26 19.26 0 0 0 1.25-3.51 2.89 2.89 0 0 1 .48-1c.92-1.09 2.63-.6 4.05-.46a6.65 6.65 0 0 0 6.08-2.92c1.51-2.29 1.6-8.15-2-8.77-3.76-.62-6.1 4.56-9.17 5.7Z\"></path><g opacity=\".1\"><path d=\"M284.27 120.71c.09-.49.15-1 .26-1.49-.95.83-1 2.24-1.25 3.49a11 11 0 0 1-.59 2.11 11.46 11.46 0 0 0 1.58-4.11ZM284.59 128.97a16.63 16.63 0 0 0 1-4 7.16 7.16 0 0 1-3.17.55 11.57 11.57 0 0 1-1.15 2 7.12 7.12 0 0 0 3.32-.54 16.63 16.63 0 0 1-1 4 3.25 3.25 0 0 0 3-1.83 7.46 7.46 0 0 0 .6-1.43 3 3 0 0 1-2.6 1.25ZM293.37 122.17c-1.42-.14-3.14-.63-4.06.46a3.09 3.09 0 0 0-.48 1c-.09.26-.17.53-.24.8.95-.75 2.49-.35 3.78-.22a6.68 6.68 0 0 0 6.08-2.92 5.54 5.54 0 0 0 .67-1.57 6.66 6.66 0 0 1-5.75 2.45Z\"></path></g><path fill=\"#dce6f2\" d=\"m317.24 201 15.25 18.34-1.99 18.51L312.07 209l5.17-8z\"></path><path d=\"m332.48 219.34-1.87 17.41-.12 1.1-16.63-26.04-1.79-2.81.52-.81 4.64-7.19 1.03 1.24 14.22 17.1z\" opacity=\".1\"></path><path fill=\"#efb7b9\" d=\"M340.4 176.17c-5.16 1.48-10.09 6.56-14.38 12.73a108.65 108.65 0 0 0-7.76 13.34c-1.41 2.82-2.65 5.53-3.68 7.89l-.72 1.68c-1.74 4.11-2.71 6.86-2.71 6.86s-39.5-29.7-33.25-31.7c2.1-.67 4.86-5.17 7.59-10.84l.34-.72c1.73-3.64 3.43-7.7 4.94-11.52 3.09-7.85 5.38-14.67 5.38-14.67s60 22.45 44.25 26.95Z\"></path><path fill=\"#444053\" d=\"M364.03 147.55s9.12 16.5 21.37 14.25 7.21-8.86 7.21-8.86Z\"></path><path fill=\"#a36468\" d=\"M346.36 718.7c-8.08 3.69-26.35 0-26.35 0l-7.7-.48c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-21.39l41.92-10.62s16.57 5.67 21.11 10.62c4.31 4.72 6.83 1.09 14.52 2.45.38.07.78.15 1.2.25 7.3 1.67 11.26 2.33 13.6 8.38a28.1 28.1 0 0 1 1.13 3.9c2.16 9.74-12.18 9.67-20.25 13.34Z\"></path><path d=\"M365.48 701.46a31.34 31.34 0 0 1-4.72 2.42c-5.5 2.51-10.73 5.57-16.29 7.94s-11.55 4.06-17.57 3.61c-3.15-.23-6.37-1-9.38-.1a21.66 21.66 0 0 0-5.21 2.89c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-2.5c.31 0 .66-.09 1.06-.12a18.88 18.88 0 0 1 6.1.91c4.34 1.18 8.66 2.34 13 3.5a10.27 10.27 0 0 1 5-6.38 15.94 15.94 0 0 1 8.06-1.85c6.73.09 13.1 3.28 19.82 3.6a10.92 10.92 0 0 0 5.49-.92c.92-.46 1.73-1.13 2.63-1.64a19.2 19.2 0 0 1 4.53-1.53 99.76 99.76 0 0 0 12.95-4.18c1.2-.47 2.6-1.32 2.44-2.6-.21-1.7-2.88-1.9-3.58-3.46a2 2 0 0 1 .08-1.77c.38.07.78.15 1.2.25 7.27 1.67 11.23 2.33 13.57 8.38Z\" opacity=\".1\"></path><path fill=\"#a36468\" d=\"M337.82 765.5c-9.5 4.34-31 0-31 0l-9.05-.53c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5v-25.21l49.33-12.5s19.5 6.67 24.84 12.5c5.07 5.55 8 1.28 17.09 2.88.45.08.92.18 1.41.29 8.59 2 13.25 2.75 16 9.87a32.1 32.1 0 0 1 1.33 4.59c2.48 11.46-14.35 11.37-23.85 15.7Z\"></path><path d=\"M360.32 745.21a37.23 37.23 0 0 1-5.55 2.85c-6.47 2.95-12.63 6.55-19.17 9.34s-13.59 4.77-20.68 4.25c-3.7-.27-7.49-1.2-11-.12a25.5 25.5 0 0 0-6.15 3.44c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5v-2.94a12.5 12.5 0 0 1 1.25-.14 21.94 21.94 0 0 1 7.18 1.07l15.29 4.12a12.1 12.1 0 0 1 5.93-7.51 18.66 18.66 0 0 1 9.49-2.18c7.92.11 15.41 3.86 23.32 4.24a12.91 12.91 0 0 0 6.44-1.07c1.09-.55 2-1.34 3.1-1.93a21.75 21.75 0 0 1 5.33-1.8 119.69 119.69 0 0 0 15.16-4.92c1.41-.56 3.06-1.56 2.87-3.06-.25-2-3.39-2.24-4.22-4.08a2.41 2.41 0 0 1 .1-2.08c.45.08.92.18 1.41.29 8.59 1.92 13.25 2.7 16 9.82Z\" opacity=\".1\"></path><path fill=\"#444053\" d=\"m316.32 592.51-2.67 62.83s-4 12.83-1.83 16.5 5.83 7.33 4.5 9.5-17.33 25.63-22.5 16.63-10.27-48-10.27-48l4.77-48.17ZM327.9 435.97l7.42 9.92v86.28s2.17 23 0 27.75-13.17 14.25-13.17 14.25l-9.25-47.5 2-50.25Z\"></path><path d=\"m316.32 592.51-2.67 62.83s-4 12.83-1.83 16.5 5.83 7.33 4.5 9.5-17.33 25.63-22.5 16.63-10.27-48-10.27-48l4.77-48.17ZM327.9 435.97l7.42 9.92v86.28s2.17 23 0 27.75-13.17 14.25-13.17 14.25l-9.25-47.5 2-50.25Z\" opacity=\".1\"></path><path fill=\"#444053\" d=\"M335.32 399.17v46.67l-8.33 36.33s-2.67 87.67-.34 98.33-8 20.67-8 20.67-6 .67-6 5.33-10 18-10 18l.33 26s4.34 48.67-2.33 58 2.33 10.67 2.33 10.67c-8.33 27.33-48.33 21-51.94 18s0-62 0-62 8.94-90 15.94-94 .34-9 2.67-15-2.33-22.33-2.33-22.33-2-19.34-7-28.67-4.34-35-4.34-35-14-18.67-18.16-26-6.84-26.33-5.84-40.67c.68-9.69 5.77-23.8 9-31.92 1.55-3.89 2.67-6.41 2.67-6.41l.95.25 54.62 14.3Z\"></path><path d=\"M340.4 176.17c-5.16 1.48-10.09 6.56-14.38 12.73h-1.12a35.72 35.72 0 0 1-31-17.93 35.18 35.18 0 0 1-3.14-7.15c3.09-7.85 5.38-14.67 5.38-14.67s60.01 22.52 44.26 27.02Z\" opacity=\".1\"></path><path fill=\"#efb7b9\" d=\"M360.65 151.17a35.75 35.75 0 1 1-66.88-17.52 34.93 34.93 0 0 1 3.78-5.46 36.18 36.18 0 0 1 8.22-7.22 35.75 35.75 0 0 1 54.83 27.58c.02.88.05 1.75.05 2.62Z\"></path><path d=\"m330.61 236.75-.12 1.1-16.63-26c-1.74 4.11-2.71 6.86-2.71 6.86s-39.5-29.74-33.25-31.74c2.1-.67 4.86-5.17 7.59-10.84l.34-.72c2.9 8.64 19.75 25.91 26.76 32.83.81.8 1.48 1.46 2 1.94l1.07 1 .56.56c2.55 2.63 13.31 14.23 14.39 25.01Z\" opacity=\".1\"></path><path fill=\"#dce6f2\" d=\"m343.04 324.97-1.82 58.57-.32 10.43s-21.56-2-41.68-4.2c-16.2-1.77-31.47-3.68-33.82-4.8-3-1.41-9.43-2.5-14.5-3.19-3.92-.53-7-.81-7-.81s-1.15.34-2.92.66c-3.86.7-10.64 1.27-14.59-2.16-5.05-4.39 8.22-20.34 11.53-24.17l.73-.83-1.25-11.55-3.25-29.95s-2-17.25-5-26.5a48.88 48.88 0 0 1-1.73-8.05 64.48 64.48 0 0 1 1.68-25.26 55.08 55.08 0 0 0 1.8-10.69c.5-9.25 28.75-45 35.75-48.25a14.84 14.84 0 0 0 7.16-7.14 13.64 13.64 0 0 0 1.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09l.56.56c2.81 2.88 15.33 16.4 14.44 27.94a33.87 33.87 0 0 0 1.89 12.64 213.75 213.75 0 0 1 9.85 56Z\"></path><path d=\"M302.9 255.42s-7 17-12.25 19.75 14.75 5.8 12.25-19.75ZM308.15 287.17s-16 2-16 5 16-5 16-5ZM324.9 306.67s-23.25 49.5-29.75 51 29.75-51 29.75-51ZM315.21 215.73l-19.23 8.36-23.21-35.06a13.64 13.64 0 0 0 1.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09Z\" opacity=\".1\"></path><path fill=\"#dce6f2\" d=\"m316.21 213.73-19.23 8.36-23.21-35.06a13.64 13.64 0 0 0 1.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09Z\"></path><path d=\"M340.9 393.97s-21.56-2-41.68-4.2l36.1 9.45v11c-1.58 1.43-2.95 2.17-3.84 1.79-4.16-1.75-38.11-7.25-38.11-7.25s-19.72-10-41-22a16.43 16.43 0 0 1-1.5-.94 23.64 23.64 0 0 1-6.3-6.31c-3.93-5.69-5.85-13-6.68-20.17a87.22 87.22 0 0 1-.52-12.38 101.51 101.51 0 0 1 1.28-13.99 460.08 460.08 0 0 1-3-54c.25-28 26.5-38 26.5-38 48.25-4.25 33.29 73.75 33.29 73.75s-2.79 22-3.55 24.25-3.49 6-3.12 11.25 9.59 11.53 9.59 11.53 9 4.22 12.71 10.47c2.7 4.61 20.24 10.86 30.15 15.32ZM357.06 128.97a11.32 11.32 0 0 1-1 4.78 29.55 29.55 0 0 1-1.78 3.56 16.4 16.4 0 0 1-4.38 5.44c-2.31 1.65-5.23 2.11-8 2.78s-5.65 1.74-7.23 4.1a14.34 14.34 0 0 0-1.69 4.9 10.54 10.54 0 0 1-2 4.74 3.93 3.93 0 0 1-4.68 1.12 4.73 4.73 0 0 1-1.81-2.33c-1.14-2.57-1.43-5.42-1.89-8.19s-1.11-5.62-2.81-7.85-4.71-3.7-7.38-2.83a7.11 7.11 0 0 0-4 3.88 22.24 22.24 0 0 0-1.51 5.52q-1.86 10.18-4.39 20.24a1.86 1.86 0 0 1-.33.76 1.44 1.44 0 0 1-1 .42c-2.24.3-4.39-1.27-6.65-1.1a3.82 3.82 0 0 0-.69.11 35.73 35.73 0 0 1 3.61-40.8l.18-.05a10.78 10.78 0 0 0 4-2.52 42.22 42.22 0 0 0 4-4.63l.8-1a45.61 45.61 0 0 1 7.8-7.41 8 8 0 0 1 2.66-1.44 7.88 7.88 0 0 1 2.52-.08 63.57 63.57 0 0 0 10.41.39 66.79 66.79 0 0 1 7.31-.74c6.33.18 11.73 4.65 15.73 9.55 2.15 2.51 4.07 5.4 4.2 8.68Z\" opacity=\".1\"></path><path fill=\"#965d7b\" d=\"M289.1 134.6c-1.39 2.28-3.9 3.83-4.84 6.33-1.38 3.63.95 8.15-1.19 11.39-.71 1.09-1.88 1.9-2.28 3.15-.68 2.11 1.18 4.36.7 6.53s-3.34 4-2.58 6.12a4 4 0 0 0 2.2 2 8.6 8.6 0 0 0 5 1.11c2.73-.45 4.76-3.13 7.53-3.33 2.25-.16 4.4 1.4 6.64 1.11a1.5 1.5 0 0 0 1-.43 1.73 1.73 0 0 0 .33-.76q2.52-10.05 4.4-20.24a21.8 21.8 0 0 1 1.5-5.52 7.17 7.17 0 0 1 4-3.88c2.67-.86 5.67.6 7.38 2.83s2.36 5.08 2.82 7.85.75 5.62 1.88 8.19a4.78 4.78 0 0 0 1.82 2.34c1.5.87 3.52.18 4.67-1.12a10.43 10.43 0 0 0 2-4.75 14.28 14.28 0 0 1 1.69-4.89c1.58-2.36 4.47-3.43 7.23-4.1s5.67-1.14 8-2.79a16.46 16.46 0 0 0 4.38-5.43c1.48-2.58 2.86-5.38 2.74-8.35-.13-3.24-2.05-6.13-4.1-8.65-4-4.9-9.41-9.37-15.74-9.54a62.2 62.2 0 0 0-7.31.74 62.57 62.57 0 0 1-10.41-.4 8.18 8.18 0 0 0-2.52.09 7.54 7.54 0 0 0-2.65 1.44 45.63 45.63 0 0 0-7.81 7.4 57.31 57.31 0 0 1-4.82 5.6 10.85 10.85 0 0 1-4 2.53c-1 .28-2 .08-2.95.39-2.95.93-3.34 4.78-4.71 7.04Z\"></path><path d=\"M385.4 161.79c-8 1.47-14.63-5-18.3-9.72a39.22 39.22 0 0 1-3.07-4.52l27.46 5.18 1.11.21s5.05 6.61-7.2 8.85Z\" opacity=\".1\"></path><g opacity=\".1\"><path d=\"M281.49 159.14a8.33 8.33 0 0 0-.58-3.84c0 .1-.09.2-.12.3-.43 1.34.15 2.73.52 4.12a3 3 0 0 0 .18-.58ZM283.87 142.77a22.22 22.22 0 0 0 .08 4.15 22.28 22.28 0 0 0-.08-4.15ZM353.32 133.42a16.4 16.4 0 0 1-4.38 5.44c-2.31 1.65-5.22 2.11-8 2.78s-5.65 1.74-7.23 4.1a14.41 14.41 0 0 0-1.69 4.9 10.47 10.47 0 0 1-2 4.75c-1.15 1.3-3.17 2-4.67 1.12a4.78 4.78 0 0 1-1.82-2.34c-1.13-2.57-1.43-5.41-1.88-8.19s-1.12-5.62-2.82-7.85-4.71-3.7-7.38-2.83a7.14 7.14 0 0 0-4 3.88 21.8 21.8 0 0 0-1.5 5.52q-1.87 10.19-4.4 20.24a1.73 1.73 0 0 1-.33.76 1.5 1.5 0 0 1-1 .43c-2.24.29-4.39-1.27-6.64-1.11-2.77.2-4.8 2.88-7.53 3.32a8.45 8.45 0 0 1-5-1.11 5.35 5.35 0 0 1-1.83-1.3 2.7 2.7 0 0 0-.37 2.33 3.9 3.9 0 0 0 2.2 2 8.45 8.45 0 0 0 5 1.11c2.73-.44 4.76-3.12 7.53-3.32 2.25-.16 4.4 1.4 6.64 1.11a1.5 1.5 0 0 0 1-.43 1.73 1.73 0 0 0 .33-.76q2.52-10 4.4-20.24a21.8 21.8 0 0 1 1.5-5.52 7.14 7.14 0 0 1 4-3.88c2.67-.87 5.67.6 7.38 2.83s2.36 5.08 2.82 7.85.75 5.62 1.88 8.19a4.78 4.78 0 0 0 1.82 2.34c1.5.87 3.52.18 4.67-1.12a10.47 10.47 0 0 0 2-4.75 14.41 14.41 0 0 1 1.69-4.9c1.58-2.36 4.47-3.42 7.23-4.1s5.67-1.13 8-2.78a16.4 16.4 0 0 0 4.38-5.44c1.48-2.57 2.86-5.37 2.74-8.34a10.74 10.74 0 0 0-.12-1.14 19.65 19.65 0 0 1-2.62 6.45Z\"></path></g><path d=\"M356.1 133.72a35.33 35.33 0 0 1 4.45 14.85c-8.91-5-17.29-10.49-21.52-12.4-7.37-3.33-34.93-2.83-45.29-2.52a34.93 34.93 0 0 1 3.78-5.46 36.18 36.18 0 0 1 8.25-7.22 35.77 35.77 0 0 1 50.38 12.73ZM387.9 157.55c-4.81 1.48-12.66-1.38-20.8-5.48a39.22 39.22 0 0 1-3.07-4.52l27.46 5.18c1.82 1.24 2.28 3.01-3.59 4.82Z\" opacity=\".1\"></path><path fill=\"#444053\" d=\"M327.03 99.05s-26.25-1.5-33.63 12.75l-1.19 12.63-2-.22-.4 8.59s40.12-1.75 49.25 2.37 37.5 24.88 48.87 21.38-1-6.75-1-6.75-15.65-6.63-15.65-11.83-3.88-32.67-44.25-38.92Z\"></path><path d=\"M276.4 567.25s16.75 16.25 24 15c0 0-20.5-1.75-24-15ZM272.9 574.78s1.5 8.36 5.5 7.54-5.5-7.54-5.5-7.54ZM299.15 714.5s-23.78 18.5-19.77 19 19.77-19 19.77-19Z\" opacity=\".1\"></path><path fill=\"var(--bms-main-140)\" d=\"m330.96 347.33 77-12.53v72.9l-73.16-3.83-3.84-56.54z\"></path><path d=\"m330.96 347.33 77-12.53v72.9l-73.16-3.83-3.84-56.54z\" opacity=\".05\"></path><path fill=\"var(--bms-main-140)\" d=\"m407.96 334.8 92.34 6.91-5.11 63.44-87.23 2.55v-72.9z\"></path><path d=\"m407.96 334.8 92.34 6.91-5.11 63.44-87.23 2.55v-72.9z\" opacity=\".1\"></path><path fill=\"var(--bms-main-140)\" d=\"m436.35 312.55-28.39 22.25 92.34 6.91 15.09-22.77-79.04-6.39zM303.08 323.03l69.32-8.44 35.56 20.21-77 12.53-27.88-24.3zM424.84 353.73v99.67l-36.07-3.7-15.69-1.6-4.78-.5-15.68-1.61-21.66-2.22v-96.44l76.99 5.24 16.89 1.16z\"></path><path fill=\"var(--bms-main-140)\" d=\"M500.3 341.71v97.2l-28.91 5.55-14.06 2.7-32.49 6.24v-99.67l75.46-12.02z\"></path><path d=\"M500.3 341.71v97.2l-28.91 5.55-14.06 2.7-32.49 6.24v-99.67l75.46-12.02z\" opacity=\".05\"></path><path fill=\"var(--bms-main-140)\" d=\"m303.08 368.31 27.88-20.98 93.88 6.4-13.82 23.28-107.94-8.7z\"></path><path fill=\"#fff\" d=\"m303.08 368.31 27.88-20.98 93.88 6.4-13.82 23.28-107.94-8.7z\" opacity=\".1\"></path><path fill=\"var(--bms-main-140)\" d=\"m500.3 341.71-75.46 12.02 24.56 22 80.83-13.56-29.93-20.46z\"></path><path fill=\"#fff\" d=\"m500.3 341.71-75.46 12.02 24.56 22 80.83-13.56-29.93-20.46zM471.39 444.46l-14.06 2.7v-20.77l13.17-3.32.89 21.39zM388.77 435.96v13.74l-15.69-1.6v-12.14h15.69zM368.3 440.29v7.31l-15.68-1.61v-5.7h15.68z\" opacity=\".1\"></path><path d=\"M415.4 428.67c-10.75 13.75-46.25 4.25-46.25 4.25l-26.38-27.52-3.58-3.73 7-13s2 .66 5.34 1.82c17.68 6.18 72.92 26.61 63.87 38.18Z\" opacity=\".1\"></path><path fill=\"#efb7b9\" d=\"M414.4 426.67c-10.75 13.75-46.25 4.25-46.25 4.25l-26.38-27.52-3.58-3.73 7-13s2 .66 5.34 1.82c17.68 6.18 72.92 26.61 63.87 38.18Z\"></path><path d=\"M350.49 388.49c-1.46 4.2-5.17 10.42-8.76 14.91l-3.58-3.73 7-13s2.01.66 5.34 1.82Z\" opacity=\".1\"></path><path fill=\"#dce6f2\" d=\"M263.15 232.97s-26.25 10-26.5 38a460.08 460.08 0 0 0 3 54s-7.5 41.75 13.75 53.75 41 22 41 22 33.95 5.5 38.12 7.25 18.66-20.75 16.41-24.5-33.16-13-36.83-19.25-12.71-10.46-12.71-10.46-9.22-6.29-9.59-11.54 2.35-9 3.12-11.25 3.56-24.25 3.56-24.25 14.92-78.05-33.33-73.75Z\"></path><path d=\"M275.15 325.67s-35.5 4-32.75 16.5c0 0 13.49-12.61 32.75-16.5ZM275.15 330.67S255 345.42 258.7 346.42s16.45-15.75 16.45-15.75ZM284.15 336.67s-5.75 10.34-2.5 9.8 2.5-9.8 2.5-9.8Z\" opacity=\".1\"></path><path fill=\"var(--bms-main-140)\" d=\"M653.77 112.39s-38-2.29-33.56 24.37c0 0-.89 4.71 3.38 6.85 0 0 .07-2 3.9-1.31a17.51 17.51 0 0 0 4.13.2 8.57 8.57 0 0 0 5.06-2.09s10.69-4.41 14.85-21.89c0 0 3.08-3.82 3-4.8l-6.42 2.75s2.19 4.63.46 8.48c0 0-.2-8.31-1.44-8.12-.25 0-3.33 1.61-3.33 1.61s3.77 8.06.92 13.93c0 0 1.08-9.94-2.1-13.35l-4.52 2.64s4.41 8.33 1.42 15.13c0 0 .77-10.43-2.37-14.49l-4.1 3.19s4.15 8.22 1.62 13.86c0 0-.33-12.14-2.51-13.06 0 0-3.58 3.16-4.12 4.46 0 0 2.83 6 1.07 9.11 0 0-1.08-8.09-2-8.13 0 0-3.57 5.36-3.94 9a19.46 19.46 0 0 1 3.07-9.54 10.71 10.71 0 0 0-5.46 2.83s.55-3.79 6.34-4.12c0 0 3-4.07 3.74-4.32 0 0-5.76-.48-9.25 1.07 0 0 3.07-3.57 10.31-2l4-3.3s-7.58-1-10.8.11c0 0 3.7-3.16 11.89-.86l4.4-2.63s-6.46-1.4-10.31-.89c0 0 4.06-2.19 11.6.18l3.15-1.41s-4.74-.93-6.12-1.08-1.46-.53-1.46-.53a16.36 16.36 0 0 1 8.89 1s6.75-2.43 6.61-2.85Z\"></path><path fill=\"var(--bms-main-140)\" d=\"M769.23 245.73s-38-2.29-33.56 24.37c0 0-.89 4.71 3.38 6.85 0 0 .07-2 3.91-1.31a17.51 17.51 0 0 0 4.13.2 8.56 8.56 0 0 0 5-2.08s10.7-4.42 14.86-21.9c0 0 3.07-3.81 2.95-4.79l-6.42 2.74s2.19 4.63.47 8.48c0 0-.21-8.31-1.44-8.12-.25 0-3.34 1.61-3.34 1.61s3.78 8.07.93 13.93c0 0 1.08-9.94-2.11-13.35l-4.47 2.61s4.41 8.33 1.42 15.13c0 0 .77-10.43-2.37-14.49l-4.09 3.2s4.14 8.21 1.62 13.85c0 0-.33-12.14-2.51-13.06 0 0-3.58 3.16-4.13 4.46 0 0 2.84 6 1.08 9.11 0 0-1.08-8.09-2-8.13 0 0-3.57 5.36-3.94 9a19.52 19.52 0 0 1 3.08-9.54 10.76 10.76 0 0 0-5.47 2.83s.56-3.79 6.35-4.12c0 0 2.95-4.07 3.74-4.32 0 0-5.76-.48-9.25 1.07 0 0 3.07-3.57 10.3-1.95l4-3.3s-7.59-1-10.8.11c0 0 3.7-3.16 11.89-.86l4.4-2.63s-6.47-1.39-10.32-.89c0 0 4.07-2.19 11.61.18l3.15-1.41s-4.74-.93-6.13-1.08-1.46-.53-1.46-.53a16.39 16.39 0 0 1 8.9 1s6.76-2.45 6.64-2.87ZM538.38 222.06s8.75-37.09-18.29-37.22c0 0-4.49-1.68-7.32 2.16 0 0 1.93.41.62 4.07a17.8 17.8 0 0 0-.9 4 8.59 8.59 0 0 0 1.19 5.33s2.53 11.3 19 18.38c0 0 3.24 3.68 4.22 3.72l-1.6-6.79s-4.94 1.37-8.44-1c0 0 8.23 1.21 8.24 0 0-.25-1-3.56-1-3.56s-8.59 2.34-13.89-1.47c0 0 9.61 2.76 13.52.21l-1.8-4.92s-9 2.93-15.16-1.18c0 0 10.15 2.54 14.69.14l-2.45-4.58s-8.8 2.68-13.93-.77c0 0 12 1.74 13.3-.24 0 0-2.5-4.07-3.69-4.83 0 0-6.36 1.78-9.16-.49 0 0 8.15.31 8.34-.55 0 0-4.67-4.43-8.23-5.43a19.6 19.6 0 0 1 8.89 4.66 10.79 10.79 0 0 0-1.86-5.87s3.64 1.2 3 7c0 0 3.5 3.6 3.61 4.42 0 0 1.45-5.59.52-9.3 0 0 3 3.64.17 10.49l2.56 4.55s2.32-7.3 1.73-10.66c0 0 2.49 4.18-1.18 11.86l1.85 4.79s2.47-6.14 2.63-10c0 0 1.47 4.38-2.16 11.41l.86 3.34s1.72-4.51 2.1-5.85.77-1.35.77-1.35a16.38 16.38 0 0 1-2.49 8.6s1.31 6.98 1.74 6.93ZM455.16 234.7s-30.52-22.83-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.51 17.51 0 0 0 3.34 2.44 8.58 8.58 0 0 0 5.37 1s11.36 2.19 24.44-10.12c0 0 4.67-1.5 5.11-2.38l-6.89-1.21s-.72 5.07-4.27 7.34c0 0 4.39-7.06 3.25-7.57-.23-.11-3.67-.5-3.67-.5s-1.28 8.82-6.88 12.15c0 0 6.37-7.71 5.58-12.31l-5.23-.28s-.89 9.39-7.13 13.43c0 0 6.37-8.29 6-13.41l-5.18.42s-1.05 9.13-6.26 12.45c0 0 6.39-10.32 5.08-12.28 0 0-4.73.67-5.9 1.45 0 0-.91 6.54-4.11 8.2 0 0 3.55-7.35 2.83-7.86 0 0-5.93 2.51-8.26 5.37a19.53 19.53 0 0 1 7.82-6.28 10.77 10.77 0 0 0-6.12-.64s2.54-2.86 7.56.05c0 0 4.7-1.77 5.5-1.55 0 0-4.55-3.57-8.32-4.19 0 0 4.54-1.3 9.69 4l5.19-.53s-5.77-5-9.08-5.84c0 0 4.83-.61 10.4 5.81l5.12.23s-4.63-4.72-8.12-6.42c0 0 4.59.4 9.59 6.53l3.41.55s-3.45-3.38-4.53-4.26-.93-1.25-.93-1.25a16.43 16.43 0 0 1 6.89 5.72s6.95 1.61 7.08 1.2ZM556.77 22.59s-30.52-22.84-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.79 17.79 0 0 0 3.35 2.43 8.57 8.57 0 0 0 5.37 1s11.36 2.19 24.44-10.13c0 0 4.67-1.49 5.1-2.38l-6.89-1.19s-.71 5.07-4.27 7.34c0 0 4.4-7.06 3.26-7.57-.23-.11-3.67-.5-3.67-.5s-1.32 8.84-6.92 12.15c0 0 6.36-7.71 5.58-12.31l-5.23-.28s-.9 9.39-7.13 13.42c0 0 6.37-8.29 6-13.41l-5.17.42s-1.06 9.14-6.27 12.46c0 0 6.4-10.32 5.09-12.28 0 0-4.73.67-5.9 1.45 0 0-.91 6.54-4.11 8.2 0 0 3.55-7.35 2.83-7.87 0 0-5.93 2.52-8.26 5.38a19.44 19.44 0 0 1 7.82-6.28 10.7 10.7 0 0 0-6.13-.64s2.55-2.86 7.57.05c0 0 4.7-1.78 5.5-1.55 0 0-4.55-3.57-8.32-4.2 0 0 4.53-1.29 9.68 4l5.19-.53s-5.76-5-9.08-5.85c0 0 4.83-.6 10.41 5.82l5.12.22s-4.63-4.72-8.13-6.41c0 0 4.6.4 9.6 6.53l3.4.55s-3.46-3.34-4.54-4.2-.93-1.24-.93-1.24a16.4 16.4 0 0 1 6.89 5.72s6.95 1.52 7.12 1.14ZM673.39 51.52s-12.2-36.11-35.21-21.92c0 0-4.7 1-5.07 5.71 0 0 1.85-.68 2.67 3.12a18 18 0 0 0 1.37 3.91 8.66 8.66 0 0 0 3.84 3.89s8.12 8.25 25.88 5.52c0 0 4.69 1.42 5.55.93l-5-4.91s-3.46 3.77-7.68 3.62c0 0 7.63-3.32 7-4.39-.13-.21-2.74-2.48-2.74-2.48s-6.06 6.53-12.56 6.1c0 0 9.61-2.74 11.57-7l-4.14-3.19s-6.06 7.22-13.49 7c0 0 10-3.21 12.53-7.65l-4.5-2.59s-6 6.93-12.22 6.71c0 0 11.12-4.87 11.15-7.23 0 0-4.27-2.13-5.68-2.15 0 0-4.46 4.87-8 4.43 0 0 7.08-4.05 6.78-4.88 0 0-6.3-1.29-9.85-.25a19.49 19.49 0 0 1 10-.75 10.79 10.79 0 0 0-4.69-4s3.72-.91 6.21 4.33c0 0 4.88 1.21 5.4 1.84 0 0-1.72-5.51-4.47-8.17 0 0 4.47 1.51 5.69 8.82l4.58 2.5s-1.89-7.41-4.17-10c0 0 4.33 2.24 5.27 10.69l4.1 3.09s-1.14-6.52-3.06-9.9c0 0 3.56 2.94 4.2 10.83l2.49 2.38s-.92-4.74-1.3-6.08-.07-1.43-.07-1.43a16.49 16.49 0 0 1 2.43 8.62s4.84 5.19 5.19 4.93ZM593.77 53.3s-37.9-4.22-34.77 22.67c0 0-1.13 4.66 3 7 0 0 .17-2 4-1.1a18.4 18.4 0 0 0 4.12.41 8.6 8.6 0 0 0 5.15-1.83s10.91-3.87 16-21.12c0 0 3.26-3.65 3.19-4.64l-6.55 2.42s2 4.73 0 8.49c0 0 .21-8.31-1-8.18-.25 0-3.41 1.44-3.41 1.44s3.36 8.25.22 14c0 0 1.58-9.88-1.43-13.44l-4.65 2.4s4 8.55.65 15.19c0 0 1.3-10.38-1.63-14.59l-4.25 3s3.72 8.41.91 13.92c0 0 .29-12.14-1.84-13.17 0 0-3.74 3-4.35 4.24 0 0 2.53 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.4 8.82a19.47 19.47 0 0 1 3.56-9.38 10.76 10.76 0 0 0-5.6 2.55s.74-3.75 6.54-3.79c0 0 3.15-3.91 4-4.12 0 0-5.73-.77-9.3.6 0 0 3.25-3.42 10.39-1.43l4.21-3.09s-7.61-1.54-10.83-.54c0 0 3.86-3 11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.25s-4.69-1.17-6.07-1.39-1.43-.6-1.43-.6a16.45 16.45 0 0 1 8.84 1.44s6.74-2.15 6.67-2.57ZM925.37 347.47s-37.88-4.22-34.75 22.64c0 0-1.13 4.66 3 7 0 0 .17-2 4-1.11a17.3 17.3 0 0 0 4.12.41 8.53 8.53 0 0 0 5.15-1.83s10.91-3.87 15.95-21.11c0 0 3.26-3.66 3.19-4.64l-6.55 2.41s2 4.74 0 8.5c0 0 .21-8.32-1-8.18-.25 0-3.41 1.43-3.41 1.43s3.36 8.25.22 14c0 0 1.58-9.87-1.43-13.44l-4.65 2.41s4 8.55.66 15.19c0 0 1.29-10.38-1.64-14.6l-4.25 3s3.72 8.41.91 13.91c0 0 .29-12.14-1.84-13.16 0 0-3.73 3-4.35 4.24 0 0 2.54 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.4 8.82a19.47 19.47 0 0 1 3.56-9.38 10.67 10.67 0 0 0-5.6 2.55s.74-3.76 6.54-3.8c0 0 3.16-3.91 4-4.11 0 0-5.73-.78-9.3.59 0 0 3.25-3.41 10.4-1.42l4.2-3.09s-7.52-1.42-10.79-.44c0 0 3.86-3 11.92-.26l4.53-2.4s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.26s-4.69-1.17-6.07-1.38-1.43-.6-1.43-.6a16.39 16.39 0 0 1 8.84 1.43s6.76-2.19 6.66-2.62ZM983.28 382.85s-37.88-4.21-34.75 22.64c0 0-1.12 4.66 3 7 0 0 .17-2 4-1.1a17.65 17.65 0 0 0 4.11.4 8.64 8.64 0 0 0 5.13-1.82s10.9-3.87 15.94-21.12c0 0 3.27-3.65 3.19-4.64l-6.55 2.41s2 4.74 0 8.5c0 0 .21-8.31-1-8.18-.25 0-3.41 1.43-3.41 1.43s3.36 8.25.22 14c0 0 1.58-9.87-1.43-13.43l-4.65 2.4s4 8.55.66 15.19c0 0 1.29-10.38-1.64-14.59l-4.25 3s3.72 8.41.92 13.92c0 0 .28-12.15-1.85-13.17 0 0-3.73 3-4.35 4.24 0 0 2.54 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.39 8.82a19.52 19.52 0 0 1 3.55-9.38 10.76 10.76 0 0 0-5.6 2.55s.75-3.76 6.55-3.79c0 0 3.15-3.91 4-4.12 0 0-5.73-.77-9.3.6 0 0 3.25-3.42 10.4-1.43l4.2-3.09s-7.52-1.42-10.79-.44c0 0 3.86-3 11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.25s-4.69-1.17-6.06-1.39-1.44-.6-1.44-.6a16.45 16.45 0 0 1 8.84 1.44s6.79-2.21 6.69-2.64ZM854.71 84.84s-30.52-22.83-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.51 17.51 0 0 0 3.34 2.44 8.59 8.59 0 0 0 5.37 1s11.36 2.19 24.45-10.12c0 0 4.66-1.5 5.1-2.38l-6.87-1.24s-.72 5.07-4.27 7.34c0 0 4.39-7.06 3.25-7.57-.23-.11-3.66-.5-3.66-.5s-1.29 8.82-6.89 12.15c0 0 6.37-7.71 5.58-12.31l-5.23-.28s-.89 9.39-7.13 13.43c0 0 6.38-8.29 6-13.41l-5.18.42s-1 9.13-6.26 12.45c0 0 6.4-10.32 5.08-12.28 0 0-4.73.67-5.9 1.45 0 0-.9 6.54-4.1 8.2 0 0 3.54-7.35 2.82-7.86 0 0-5.93 2.51-8.26 5.37a19.53 19.53 0 0 1 7.82-6.28 10.77 10.77 0 0 0-6.12-.64s2.55-2.86 7.57.05c0 0 4.69-1.77 5.49-1.55 0 0-4.55-3.57-8.32-4.19 0 0 4.54-1.3 9.69 4l5.19-.53s-5.76-5-9.08-5.84c0 0 4.83-.61 10.4 5.81l5.13.23s-4.64-4.72-8.13-6.42c0 0 4.6.4 9.59 6.53l3.41.55s-3.45-3.38-4.53-4.26-.92-1.17-.92-1.17a16.44 16.44 0 0 1 6.88 5.72s6.93 1.56 7.06 1.15ZM878.29 249.66s-10.52-36.63-34.18-23.48c0 0-4.74.73-5.33 5.47 0 0 1.88-.59 2.53 3.24a17.73 17.73 0 0 0 1.2 4 8.59 8.59 0 0 0 3.66 4.08s7.74 8.6 25.6 6.68c0 0 4.62 1.62 5.5 1.18l-4.73-5.14s-3.63 3.62-7.83 3.28c0 0 7.76-3 7.16-4.07-.12-.22-2.62-2.61-2.62-2.61s-6.34 6.26-12.82 5.53c0 0 9.73-2.3 11.87-6.44l-4-3.38s-6.38 6.94-13.79 6.4c0 0 10.08-2.77 12.86-7.08l-4.38-2.79s-6.35 6.65-12.51 6.15c0 0 11.33-4.37 11.47-6.72 0 0-4.18-2.32-5.59-2.4 0 0-4.67 4.66-8.22 4.06 0 0 7.26-3.73 7-4.57 0 0-6.24-1.57-9.83-.7a19.51 19.51 0 0 1 10-.29 10.73 10.73 0 0 0-4.5-4.2s3.76-.75 6 4.6c0 0 4.81 1.42 5.31 2.08 0 0-1.47-5.59-4.1-8.36 0 0 4.4 1.7 5.29 9.06l4.46 2.71s-1.56-7.5-3.72-10.14c0 0 4.22 2.43 4.79 10.91l4 3.27s-.85-6.56-2.61-10c0 0 3.43 3.1 3.71 11l2.38 2.5s-.7-4.78-1-6.14 0-1.55 0-1.55a16.39 16.39 0 0 1 2.05 8.72s4.56 5.38 4.92 5.14ZM643.87 332.2s-20.43-32.18-39.4-12.92c0 0-4.34 2-3.58 6.75 0 0 1.65-1.1 3.35 2.4a17.12 17.12 0 0 0 2.26 3.46 8.54 8.54 0 0 0 4.65 2.88s9.85 6.08 26.45-.8c0 0 4.89.26 5.61-.41l-6-3.6s-2.47 4.5-6.6 5.35c0 0 6.62-5 5.73-5.92-.17-.18-3.25-1.76-3.25-1.76s-4.33 7.78-10.75 8.91c0 0 8.69-4.95 9.59-9.53l-4.79-2.11s-4.17 8.45-11.43 10c0 0 8.9-5.49 10.35-10.41l-5-1.44s-4.22 8.17-10.27 9.42c0 0 9.64-7.38 9.11-9.68 0 0-4.66-1.05-6-.73 0 0-3.17 5.79-6.75 6.21 0 0 5.92-5.62 5.43-6.36 0 0-6.43.25-9.63 2.1a19.46 19.46 0 0 1 9.54-3.1 10.73 10.73 0 0 0-5.49-2.77s3.39-1.77 7 2.73c0 0 5 0 5.69.5 0 0-3-5-6.29-6.87 0 0 4.7.4 7.62 7.21l5.05 1.34s-3.61-6.75-6.42-8.68c0 0 4.73 1.14 7.66 9.13l4.72 2s-2.66-6.05-5.33-8.88c0 0 4.16 2 6.65 9.51l3 1.73s-2-4.39-2.71-5.6-.43-1.49-.43-1.49a16.4 16.4 0 0 1 4.41 7.79s5.98 3.98 6.25 3.64Z\" opacity=\".1\"></path><path fill=\"var(--bms-main-140)\" d=\"M778.14 167.78s-19.43-32.79-39-14.13c0 0-4.4 1.9-3.78 6.64 0 0 1.67-1.06 3.27 2.49a17.28 17.28 0 0 0 2.15 3.54 8.49 8.49 0 0 0 4.56 3s9.65 6.38 26.46 0c0 0 4.88.41 5.62-.24l-5.87-3.78s-2.6 4.41-6.76 5.14c0 0 6.77-4.83 5.92-5.74-.18-.19-3.2-1.87-3.2-1.87s-4.57 7.65-11 8.58c0 0 8.84-4.68 9.87-9.22l-4.72-2.22s-4.43 8.33-11.74 9.66c0 0 9.07-5.21 10.67-10.08l-4.94-1.6s-4.48 8-10.56 9.1c0 0 9.86-7.08 9.4-9.39 0 0-4.62-1.2-6-.92 0 0-3.35 5.69-6.94 6 0 0 6.09-5.42 5.63-6.18 0 0-6.44.05-9.69 1.8a19.52 19.52 0 0 1 9.63-2.8 10.75 10.75 0 0 0-5.41-2.94s3.45-1.67 7 2.94c0 0 5 .17 5.67.68 0 0-2.83-5-6.07-7.06 0 0 4.68.54 7.39 7.44l5 1.5s-3.39-6.86-6.15-8.88c0 0 4.7 1.29 7.38 9.36l4.65 2.17s-2.47-6.13-5-9c0 0 4.09 2.13 6.36 9.71l2.93 1.82s-1.88-4.45-2.54-5.68-.38-1.5-.38-1.5a16.43 16.43 0 0 1 4.17 7.92s5.73 4.07 6.02 3.74ZM655.21 236.73s1-38.1-25.47-32.73c0 0-4.74-.73-6.74 3.61 0 0 2 0 1.44 3.85a17.56 17.56 0 0 0-.06 4.14 8.55 8.55 0 0 0 2.25 5s4.77 10.54 22.38 14.12c0 0 3.91 2.95 4.89 2.79l-3-6.32s-4.55 2.34-8.46.75c0 0 8.3-.49 8.07-1.71 0-.25-1.72-3.29-1.72-3.29s-7.94 4.05-13.89 1.39c0 0 10 .75 13.27-2.54l-2.79-4.43s-8.18 4.68-15.08 1.92c0 0 10.45.42 14.41-2.85l-3.33-4s-8.07 4.42-13.79 2.08c0 0 12.12-.73 13-2.94 0 0-3.28-3.47-4.6-4 0 0-5.86 3-9.06 1.38 0 0 8-1.34 8.05-2.23 0 0-5.47-3.39-9.16-3.64a19.47 19.47 0 0 1 9.65 2.76 10.75 10.75 0 0 0-3-5.37s3.81.43 4.33 6.2c0 0 4.17 2.82 4.44 3.6 0 0 .29-5.77-1.38-9.21 0 0 3.68 2.95 2.3 10.23l3.43 3.94s.78-7.62-.47-10.79c0 0 3.28 3.59 1.26 11.85l2.77 4.31s1.18-6.51.55-10.34c0 0 2.32 4 .2 11.61l1.52 3.1s.77-4.77.87-6.16.48-1.48.48-1.48a16.42 16.42 0 0 1-.69 8.93s2.69 6.6 3.13 6.47Z\"></path><ellipse cx=\"698.97\" cy=\"716.3\" fill=\"var(--bms-main-140)\" opacity=\".1\" rx=\"26.93\" ry=\"4.55\"></ellipse><ellipse cx=\"600.8\" cy=\"785.38\" fill=\"var(--bms-main-140)\" opacity=\".1\" rx=\"26.93\" ry=\"4.55\"></ellipse><ellipse cx=\"93.14\" cy=\"749.99\" fill=\"var(--bms-main-140)\" opacity=\".1\" rx=\"26.93\" ry=\"4.55\"></ellipse><ellipse cx=\"805.06\" cy=\"780.83\" fill=\"var(--bms-main-140)\" opacity=\".1\" rx=\"26.93\" ry=\"4.55\"></ellipse><ellipse cx=\"833.1\" cy=\"723.1\" fill=\"var(--bms-main-140)\" rx=\"40.21\" ry=\"6.8\"></ellipse><path fill=\"var(--bms-main-140)\" d=\"M849.77 711.97a11.61 11.61 0 0 0 3.83-5.78c.5-2.3-.48-5.05-2.67-5.89-2.46-.94-5.09.76-7.09 2.48s-4.27 3.69-6.88 3.33a10.5 10.5 0 0 0 3.24-9.81 4.11 4.11 0 0 0-.9-2c-1.37-1.46-3.84-.83-5.48.32-5.2 3.66-6.65 10.72-6.68 17.08-.52-2.29-.08-4.68-.09-7s-.66-5-2.65-6.22a7.91 7.91 0 0 0-4-1c-2.34-.08-4.95.15-6.54 1.86-2 2.12-1.47 5.69.25 8s4.35 3.8 6.77 5.42a15.13 15.13 0 0 1 4.84 4.61 4.7 4.7 0 0 1 .35.82h14.66a40.44 40.44 0 0 0 9.04-6.22Z\"></path><path fill=\"#a8a8a8\" d=\"M75.06 728.84s15.35-.47 20-3.77 23.63-7.23 24.78-1.94 23.08 26.29 5.74 26.43-40.29-2.7-44.91-5.52-5.61-15.2-5.61-15.2Z\"></path><path d=\"M125.87 747.72c-17.34.14-40.29-2.7-44.91-5.52-3.52-2.14-4.92-9.83-5.39-13.38h-.51s1 12.39 5.59 15.2 27.57 5.66 44.91 5.52c5 0 6.73-1.82 6.64-4.46-.7 1.61-2.61 2.61-6.33 2.64Z\" opacity=\".2\"></path>", 62)
90647
90772
  ]))]))
90648
90773
  }
90649
90774
  const Empty = { render: render };
90650
90775
 
90651
- const _hoisted_1$f = { class: "empty-screen" };
90652
- const _hoisted_2$d = { class: "empty-screen__img" };
90776
+ const _hoisted_1$e = { class: "empty-screen" };
90777
+ const _hoisted_2$c = { class: "empty-screen__img" };
90653
90778
  const _hoisted_3$7 = { class: "empty-screen__title" };
90654
90779
  const _hoisted_4$5 = {
90655
90780
  key: 0,
90656
90781
  class: "empty-screen__description"
90657
90782
  };
90658
- const _sfc_main$i = /* @__PURE__ */ defineComponent({
90783
+ const _sfc_main$h = /* @__PURE__ */ defineComponent({
90659
90784
  __name: "BmsEmptyScreen",
90660
90785
  props: {
90661
90786
  title: {},
@@ -90664,8 +90789,8 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
90664
90789
  setup(__props) {
90665
90790
  const props = __props;
90666
90791
  return (_ctx, _cache) => {
90667
- return openBlock(), createElementBlock("div", _hoisted_1$f, [
90668
- createElementVNode("div", _hoisted_2$d, [
90792
+ return openBlock(), createElementBlock("div", _hoisted_1$e, [
90793
+ createElementVNode("div", _hoisted_2$c, [
90669
90794
  createVNode(unref(Empty))
90670
90795
  ]),
90671
90796
  createElementVNode("h1", _hoisted_3$7, toDisplayString(props.title), 1),
@@ -90675,12 +90800,12 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
90675
90800
  }
90676
90801
  });
90677
90802
 
90678
- const BmsEmptyScreen = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-d128fb40"]]);
90803
+ const BmsEmptyScreen = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-d128fb40"]]);
90679
90804
 
90680
- const _hoisted_1$e = { class: "bms-pagination__select" };
90681
- const _hoisted_2$c = { class: "bms-pagination__status" };
90805
+ const _hoisted_1$d = { class: "bms-pagination__select" };
90806
+ const _hoisted_2$b = { class: "bms-pagination__status" };
90682
90807
  const _hoisted_3$6 = { class: "bms-pagination__actions" };
90683
- const _sfc_main$h = /* @__PURE__ */ defineComponent({
90808
+ const _sfc_main$g = /* @__PURE__ */ defineComponent({
90684
90809
  __name: "BmsPagination",
90685
90810
  props: {
90686
90811
  currentSize: {},
@@ -90737,7 +90862,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
90737
90862
  class: "bms-pagination",
90738
90863
  tabcurrentPage: "0"
90739
90864
  }, [
90740
- createElementVNode("div", _hoisted_1$e, [
90865
+ createElementVNode("div", _hoisted_1$d, [
90741
90866
  createTextVNode(toDisplayString(_ctx.selectLabel) + " ", 1),
90742
90867
  createVNode(unref(BmsSelect), {
90743
90868
  modelValue: size.value,
@@ -90745,7 +90870,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
90745
90870
  options: _ctx.sizes.map((size2) => ({ label: size2.toString(), value: size2 }))
90746
90871
  }, null, 8, ["modelValue", "options"])
90747
90872
  ]),
90748
- createElementVNode("div", _hoisted_2$c, [
90873
+ createElementVNode("div", _hoisted_2$b, [
90749
90874
  renderSlot(_ctx.$slots, "default", {
90750
90875
  first: size.value * _ctx.currentPage + 1,
90751
90876
  currentLast: lastItemNumber.value,
@@ -90803,7 +90928,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
90803
90928
  }
90804
90929
  });
90805
90930
 
90806
- const BmsPagination = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-e10f3b80"]]);
90931
+ const BmsPagination = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-e10f3b80"]]);
90807
90932
 
90808
90933
  /**
90809
90934
  * Removes all key-value entries from the list cache.
@@ -94422,11 +94547,11 @@ function requireGet () {
94422
94547
  var getExports = requireGet();
94423
94548
  const _get = /*@__PURE__*/getDefaultExportFromCjs(getExports);
94424
94549
 
94425
- const _hoisted_1$d = {
94550
+ const _hoisted_1$c = {
94426
94551
  key: 0,
94427
94552
  class: "ui-relative-time"
94428
94553
  };
94429
- const _sfc_main$g = /* @__PURE__ */ defineComponent({
94554
+ const _sfc_main$f = /* @__PURE__ */ defineComponent({
94430
94555
  __name: "BmsRelativeTime",
94431
94556
  props: {
94432
94557
  relativeTo: { default: Date.now() }
@@ -94461,7 +94586,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
94461
94586
  }, timeoutDelay);
94462
94587
  };
94463
94588
  return (_ctx, _cache) => {
94464
- return _ctx.relativeTo ? (openBlock(), createElementBlock("span", _hoisted_1$d, [
94589
+ return _ctx.relativeTo ? (openBlock(), createElementBlock("span", _hoisted_1$c, [
94465
94590
  createVNode(BmsTooltip, { "tooltip-text": formattedDate.value }, {
94466
94591
  default: withCtx(() => [
94467
94592
  createTextVNode(toDisplayString(date.value), 1)
@@ -94473,7 +94598,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
94473
94598
  }
94474
94599
  });
94475
94600
 
94476
- const _sfc_main$f = /* @__PURE__ */ defineComponent({
94601
+ const _sfc_main$e = /* @__PURE__ */ defineComponent({
94477
94602
  __name: "UiBmsTableCell",
94478
94603
  props: {
94479
94604
  cell: {},
@@ -94499,7 +94624,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
94499
94624
  ])]),
94500
94625
  _: 1
94501
94626
  }))
94502
- ], 64)) : _ctx.cell.columnType === unref(ColumnType).Date ? (openBlock(), createBlock(_sfc_main$g, {
94627
+ ], 64)) : _ctx.cell.columnType === unref(ColumnType).Date ? (openBlock(), createBlock(_sfc_main$f, {
94503
94628
  key: 1,
94504
94629
  relativeTo: relativeToTime.value
94505
94630
  }, null, 8, ["relativeTo"])) : (openBlock(), createElementBlock(Fragment, { key: 2 }, [
@@ -94509,11 +94634,11 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
94509
94634
  }
94510
94635
  });
94511
94636
 
94512
- const _hoisted_1$c = {
94637
+ const _hoisted_1$b = {
94513
94638
  key: 0,
94514
94639
  class: "bms-table__row__cell__checkbox"
94515
94640
  };
94516
- const _hoisted_2$b = {
94641
+ const _hoisted_2$a = {
94517
94642
  key: 0,
94518
94643
  class: "bms-table__row__cell--child-element"
94519
94644
  };
@@ -94521,7 +94646,7 @@ const _hoisted_3$5 = {
94521
94646
  key: 1,
94522
94647
  class: "bms-table__row__cell--action"
94523
94648
  };
94524
- const _sfc_main$e = /* @__PURE__ */ defineComponent({
94649
+ const _sfc_main$d = /* @__PURE__ */ defineComponent({
94525
94650
  __name: "UiBmsTableRow",
94526
94651
  props: {
94527
94652
  item: {},
@@ -94552,7 +94677,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
94552
94677
  "bms-table__row--dense": _ctx.dense
94553
94678
  }])
94554
94679
  }, [
94555
- _ctx.selectable ? (openBlock(), createElementBlock("td", _hoisted_1$c, [
94680
+ _ctx.selectable ? (openBlock(), createElementBlock("td", _hoisted_1$b, [
94556
94681
  createVNode(BmsTooltip, {
94557
94682
  direction: unref(TooltipDirection).Right,
94558
94683
  "tooltip-text": "Vous ne pouvez pas désélectionner un élément unitairement si vous avez choisi de sélectionner la totalité des éléments",
@@ -94575,7 +94700,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
94575
94700
  class: normalizeClass([getAlignClass(cell), "bms-table__row__cell"]),
94576
94701
  key: cell.key
94577
94702
  }, [
94578
- _ctx.isChildElement ? (openBlock(), createElementBlock("div", _hoisted_2$b, [
94703
+ _ctx.isChildElement ? (openBlock(), createElementBlock("div", _hoisted_2$a, [
94579
94704
  index === 0 ? (openBlock(), createBlock(unref(CornerDownRight), {
94580
94705
  key: 0,
94581
94706
  class: "bms-table__row__cell--child-element__icon"
@@ -94584,7 +94709,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
94584
94709
  row: _ctx.item.childElement,
94585
94710
  isChildElement: _ctx.isChildElement
94586
94711
  }, () => [
94587
- createVNode(_sfc_main$f, {
94712
+ createVNode(_sfc_main$e, {
94588
94713
  item: _ctx.item.childElement,
94589
94714
  cell
94590
94715
  }, null, 8, ["item", "cell"])
@@ -94599,7 +94724,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
94599
94724
  row: _ctx.item,
94600
94725
  isChildElement: _ctx.isChildElement
94601
94726
  }, () => [
94602
- createVNode(_sfc_main$f, {
94727
+ createVNode(_sfc_main$e, {
94603
94728
  item: _ctx.item,
94604
94729
  cell
94605
94730
  }, null, 8, ["item", "cell"])
@@ -94612,10 +94737,10 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
94612
94737
  }
94613
94738
  });
94614
94739
 
94615
- const UiBmsTableRow = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-c6304837"]]);
94740
+ const UiBmsTableRow = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-c6304837"]]);
94616
94741
 
94617
- const _hoisted_1$b = { class: "bms-table" };
94618
- const _hoisted_2$a = { class: "bms-table__actions" };
94742
+ const _hoisted_1$a = { class: "bms-table" };
94743
+ const _hoisted_2$9 = { class: "bms-table__actions" };
94619
94744
  const _hoisted_3$4 = { class: "bms-table__actions__saved-filters" };
94620
94745
  const _hoisted_4$4 = { class: "bms-table__actions__custom" };
94621
94746
  const _hoisted_5$3 = { class: "bms-table__actions__search" };
@@ -94640,7 +94765,7 @@ const _hoisted_16$1 = {
94640
94765
  class: "bms-table__row"
94641
94766
  };
94642
94767
  const _hoisted_17 = ["colspan"];
94643
- const _sfc_main$d = /* @__PURE__ */ defineComponent({
94768
+ const _sfc_main$c = /* @__PURE__ */ defineComponent({
94644
94769
  __name: "UiBmsTable",
94645
94770
  props: /* @__PURE__ */ mergeModels({
94646
94771
  headers: {},
@@ -94810,8 +94935,8 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
94810
94935
  }
94811
94936
  });
94812
94937
  return (_ctx, _cache) => {
94813
- return openBlock(), createElementBlock("div", _hoisted_1$b, [
94814
- createElementVNode("div", _hoisted_2$a, [
94938
+ return openBlock(), createElementBlock("div", _hoisted_1$a, [
94939
+ createElementVNode("div", _hoisted_2$9, [
94815
94940
  createElementVNode("div", _hoisted_3$4, [
94816
94941
  createElementVNode("div", _hoisted_4$4, [
94817
94942
  renderSlot(_ctx.$slots, "custom-actions", {}, void 0, true)
@@ -94985,14 +95110,14 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
94985
95110
  }
94986
95111
  });
94987
95112
 
94988
- const UiBmsTable = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-9cbfc981"]]);
95113
+ const UiBmsTable = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-9cbfc981"]]);
94989
95114
 
94990
- const _hoisted_1$a = { class: "filter-button-container" };
94991
- const _hoisted_2$9 = {
95115
+ const _hoisted_1$9 = { class: "filter-button-container" };
95116
+ const _hoisted_2$8 = {
94992
95117
  key: 0,
94993
95118
  class: "indicator"
94994
95119
  };
94995
- const _sfc_main$c = /* @__PURE__ */ defineComponent({
95120
+ const _sfc_main$b = /* @__PURE__ */ defineComponent({
94996
95121
  __name: "UiFilterButton",
94997
95122
  props: {
94998
95123
  isFilterVisible: { type: Boolean, default: false },
@@ -95006,7 +95131,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
95006
95131
  () => !props.isFilterVisible && props.activeFiltersNb > 0
95007
95132
  );
95008
95133
  return (_ctx, _cache) => {
95009
- return openBlock(), createElementBlock("span", _hoisted_1$a, [
95134
+ return openBlock(), createElementBlock("span", _hoisted_1$9, [
95010
95135
  createVNode(_sfc_main$1l, {
95011
95136
  class: "filter-button",
95012
95137
  color: _ctx.isFilterVisible ? unref(StatusType).Default : unref(StatusType).Information,
@@ -95020,7 +95145,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
95020
95145
  }, 8, ["color", "mode"]),
95021
95146
  createVNode(Transition, { name: "indicator-scale" }, {
95022
95147
  default: withCtx(() => [
95023
- showIndicator.value ? (openBlock(), createElementBlock("span", _hoisted_2$9, toDisplayString(_ctx.activeFiltersNb), 1)) : createCommentVNode("", true)
95148
+ showIndicator.value ? (openBlock(), createElementBlock("span", _hoisted_2$8, toDisplayString(_ctx.activeFiltersNb), 1)) : createCommentVNode("", true)
95024
95149
  ]),
95025
95150
  _: 1
95026
95151
  })
@@ -95029,7 +95154,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
95029
95154
  }
95030
95155
  });
95031
95156
 
95032
- const UiFilterButton = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-6047ada7"]]);
95157
+ const UiFilterButton = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-6047ada7"]]);
95033
95158
 
95034
95159
  const LOCAL_STORAGE_USER_PREF_KEY = "userPref";
95035
95160
  const useUserPref = () => {
@@ -97115,131 +97240,6 @@ function requireDebounce () {
97115
97240
  var debounceExports = requireDebounce();
97116
97241
  const _debounce = /*@__PURE__*/getDefaultExportFromCjs(debounceExports);
97117
97242
 
97118
- const _hoisted_1$9 = ["innerHTML"];
97119
- const _hoisted_2$8 = ["innerHTML"];
97120
- const _sfc_main$b = /* @__PURE__ */ defineComponent({
97121
- __name: "BmsServerAutocomplete",
97122
- props: /* @__PURE__ */ mergeModels({
97123
- url: {},
97124
- request: { type: Function, default: async (controller, url) => {
97125
- if (!url) {
97126
- throw "URL must be defined";
97127
- }
97128
- const response = await fetch(url, {
97129
- method: "GET",
97130
- signal: controller.signal
97131
- });
97132
- const data = await response.json();
97133
- return { data };
97134
- } },
97135
- modelValue: {},
97136
- placeholder: {},
97137
- open: { type: Boolean, default: false },
97138
- label: {},
97139
- required: { type: Boolean },
97140
- optional: { type: Boolean },
97141
- helperText: {},
97142
- errors: {},
97143
- captions: {},
97144
- disabled: { type: Boolean },
97145
- small: { type: Boolean }
97146
- }, {
97147
- "modelValue": {
97148
- default: null
97149
- },
97150
- "modelModifiers": {}
97151
- }),
97152
- emits: /* @__PURE__ */ mergeModels(["addNewOption", "select"], ["update:modelValue"]),
97153
- setup(__props, { emit: __emit }) {
97154
- const props = __props;
97155
- const modelValue = useModel(__props, "modelValue");
97156
- const emits = __emit;
97157
- const options = ref([]);
97158
- const loading = ref(true);
97159
- const controller = ref();
97160
- const loadData = async (search) => {
97161
- loading.value = true;
97162
- try {
97163
- if (controller.value) {
97164
- controller.value.abort();
97165
- }
97166
- controller.value = new AbortController();
97167
- loading.value = true;
97168
- const { data } = await props.request(controller.value, search, props.url);
97169
- options.value = data;
97170
- } catch (e) {
97171
- console.error(e);
97172
- } finally {
97173
- loading.value = false;
97174
- }
97175
- };
97176
- onMounted(() => loadData(""));
97177
- const onInput = (e) => {
97178
- loadData(e.target?.value);
97179
- };
97180
- const currentOptionIcon = computed(() => {
97181
- const option = options.value.find((o) => o.value === modelValue.value);
97182
- if (!option || typeof option === "string") return void 0;
97183
- return option.icon;
97184
- });
97185
- return (_ctx, _cache) => {
97186
- return openBlock(), createBlock(RawAutocomplete, {
97187
- modelValue: modelValue.value,
97188
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modelValue.value = $event),
97189
- options: options.value,
97190
- open: _ctx.open,
97191
- label: _ctx.label,
97192
- optional: _ctx.optional,
97193
- disabled: _ctx.disabled,
97194
- errors: _ctx.errors,
97195
- captions: _ctx.captions,
97196
- required: _ctx.required,
97197
- helperText: _ctx.helperText,
97198
- placeholder: _ctx.placeholder,
97199
- small: _ctx.small,
97200
- canAddNewOption: false,
97201
- onInput,
97202
- onSelect: _cache[1] || (_cache[1] = (option) => emits("select", option))
97203
- }, createSlots({
97204
- "icon-end": withCtx(() => [
97205
- loading.value ? (openBlock(), createBlock(BmsLoader, {
97206
- key: 0,
97207
- size: 16
97208
- })) : createCommentVNode("", true)
97209
- ]),
97210
- option: withCtx(({ option }) => [
97211
- option.icon ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
97212
- typeof option.icon === "string" ? (openBlock(), createElementBlock("span", {
97213
- key: 0,
97214
- class: "icon datalist-icon",
97215
- innerHTML: option.icon
97216
- }, null, 8, _hoisted_2$8)) : (openBlock(), createBlock(resolveDynamicComponent(option.icon), {
97217
- key: 1,
97218
- class: "icon datalist-icon"
97219
- }))
97220
- ], 64)) : createCommentVNode("", true),
97221
- createTextVNode(" " + toDisplayString(option.label), 1)
97222
- ]),
97223
- _: 2
97224
- }, [
97225
- currentOptionIcon.value ? {
97226
- name: "icon-start",
97227
- fn: withCtx(() => [
97228
- typeof currentOptionIcon.value === "string" ? (openBlock(), createElementBlock("span", {
97229
- key: 0,
97230
- class: "icon",
97231
- innerHTML: currentOptionIcon.value
97232
- }, null, 8, _hoisted_1$9)) : (openBlock(), createBlock(resolveDynamicComponent(currentOptionIcon.value), { key: 1 }))
97233
- ]),
97234
- key: "0"
97235
- } : void 0
97236
- ]), 1032, ["modelValue", "options", "open", "label", "optional", "disabled", "errors", "captions", "required", "helperText", "placeholder", "small"]);
97237
- };
97238
- }
97239
- });
97240
-
97241
- const BmsServerAutocomplete = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-3115cc27"]]);
97242
-
97243
97243
  const _hoisted_1$8 = { class: "filters" };
97244
97244
  const _hoisted_2$7 = { class: "filters__header" };
97245
97245
  const _hoisted_3$3 = { class: "filters__header-title" };
@@ -97288,9 +97288,9 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
97288
97288
  case "boolean":
97289
97289
  return BmsSelect;
97290
97290
  case "input":
97291
- return _sfc_main$_;
97292
- case "inputDate":
97293
97291
  return _sfc_main$Z;
97292
+ case "inputDate":
97293
+ return _sfc_main$Y;
97294
97294
  case "autocomplete":
97295
97295
  return BmsAutocomplete;
97296
97296
  case "autocompleteServer":
@@ -97437,7 +97437,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
97437
97437
  }, {
97438
97438
  default: withCtx(() => [
97439
97439
  _cache[3] || (_cache[3] = createElementVNode("div", null, " Vous pouvez sauvegarder votre recherche pour la retrouver plus facilement. ", -1)),
97440
- createVNode(unref(_sfc_main$_), {
97440
+ createVNode(unref(_sfc_main$Z), {
97441
97441
  ref_key: "nameInput",
97442
97442
  ref: nameInput,
97443
97443
  label: "Nom de la sauvegarde",
@@ -101437,13 +101437,19 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
101437
101437
  },
101438
101438
  { deep: true }
101439
101439
  );
101440
+ const debouncedHandler = _debounce((callBack) => {
101441
+ callBack();
101442
+ }, props.debounceTime);
101440
101443
  watch(
101441
101444
  [() => filters.value, () => sort.value, size, search],
101442
101445
  () => {
101443
101446
  if (!isMounting.value) {
101444
- currentPage.value = props.initialPage;
101445
- emits("update:selectMode", SelectMode.DEFAULT);
101446
- fetchData();
101447
+ const callBack = () => {
101448
+ currentPage.value = props.initialPage;
101449
+ emits("update:selectMode", SelectMode.DEFAULT);
101450
+ fetchData();
101451
+ };
101452
+ debouncedHandler(callBack);
101447
101453
  }
101448
101454
  },
101449
101455
  { deep: true }
@@ -101485,9 +101491,6 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
101485
101491
  }
101486
101492
  }
101487
101493
  }
101488
- const debouncedSearch = _debounce((value) => {
101489
- search.value = value;
101490
- }, props.debounceTime);
101491
101494
  const onPrevClick = () => {
101492
101495
  goToPage(currentPage.value - 1, total.value);
101493
101496
  };
@@ -101517,9 +101520,9 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
101517
101520
  return (_ctx, _cache) => {
101518
101521
  return openBlock(), createBlock(UiBmsTable, {
101519
101522
  selectedItems: selectedItems.value,
101520
- "onUpdate:selectedItems": _cache[5] || (_cache[5] = ($event) => selectedItems.value = $event),
101523
+ "onUpdate:selectedItems": _cache[6] || (_cache[6] = ($event) => selectedItems.value = $event),
101521
101524
  selectMode: localSelectMode.value,
101522
- "onUpdate:selectMode": _cache[6] || (_cache[6] = ($event) => localSelectMode.value = $event),
101525
+ "onUpdate:selectMode": _cache[7] || (_cache[7] = ($event) => localSelectMode.value = $event),
101523
101526
  loading: loading.value,
101524
101527
  items: unref(items),
101525
101528
  headers: _ctx.headers,
@@ -101583,8 +101586,8 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
101583
101586
  createVNode(BmsSearch, {
101584
101587
  modelValue: unref(search),
101585
101588
  class: "table-search",
101586
- "onUpdate:modelValue": unref(debouncedSearch)
101587
- }, null, 8, ["modelValue", "onUpdate:modelValue"])
101589
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => search.value = $event)
101590
+ }, null, 8, ["modelValue"])
101588
101591
  ], true) : createCommentVNode("", true)
101589
101592
  ]),
101590
101593
  empty: withCtx(() => [
@@ -101599,14 +101602,14 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
101599
101602
  props.size ? (openBlock(), createElementBlock("div", _hoisted_2$6, [
101600
101603
  createVNode(BmsPagination, {
101601
101604
  currentSize: unref(size),
101602
- "onUpdate:currentSize": _cache[3] || (_cache[3] = ($event) => isRef(size) ? size.value = $event : null),
101605
+ "onUpdate:currentSize": _cache[4] || (_cache[4] = ($event) => isRef(size) ? size.value = $event : null),
101603
101606
  total: total.value,
101604
101607
  currentPage: props.initialPage === 1 ? unref(currentPage) - 1 : unref(currentPage),
101605
101608
  sizes: unref(paginationsOptions),
101606
101609
  pages: totalPages.value,
101607
101610
  onPrev: onPrevClick,
101608
101611
  onNext: onNextClick,
101609
- onGo: _cache[4] || (_cache[4] = ($event) => go($event))
101612
+ onGo: _cache[5] || (_cache[5] = ($event) => go($event))
101610
101613
  }, null, 8, ["currentSize", "total", "currentPage", "sizes", "pages"])
101611
101614
  ])) : createCommentVNode("", true)
101612
101615
  ]),
@@ -101625,7 +101628,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
101625
101628
  }
101626
101629
  });
101627
101630
 
101628
- const BmsServerTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-bb2d9aca"]]);
101631
+ const BmsServerTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-df695c8a"]]);
101629
101632
 
101630
101633
  const _hoisted_1$6 = { class: "filters-container" };
101631
101634
  const _hoisted_2$5 = {
@@ -104733,22 +104736,23 @@ const createBmsUi = () => ({
104733
104736
  app.component("BmsLoader", BmsLoader);
104734
104737
  app.component("BmsTooltip", BmsTooltip);
104735
104738
  app.component("BmsAutocomplete", BmsAutocomplete);
104739
+ app.component("BmsServerAutocomplete", BmsServerAutocomplete);
104736
104740
  app.component("BmsBetweenInput", BmsBetweenInput);
104737
104741
  app.component("BmsChip", BmsChip);
104738
104742
  app.component("BmsFilePicker", BmsFilePicker);
104739
- app.component("BmsInputBooleanCheckbox", _sfc_main$13);
104743
+ app.component("BmsInputBooleanCheckbox", _sfc_main$12);
104740
104744
  app.component("BmsInputCheckboxGroup", BmsInputCheckboxGroup);
104741
104745
  app.component("BmsInputCheckboxCaption", BmsInputCheckboxCaption);
104742
104746
  app.component("BmsInputCheckboxCaptionGroup", BmsInputCheckboxCaptionGroup);
104743
104747
  app.component("BmsInputCode", BmsInputCode);
104744
- app.component("BmsInputDateTime", _sfc_main$Z);
104748
+ app.component("BmsInputDateTime", _sfc_main$Y);
104745
104749
  app.component("BmsInputFile", BmsInputFile);
104746
- app.component("BmsInputNumber", _sfc_main$X);
104750
+ app.component("BmsInputNumber", _sfc_main$W);
104747
104751
  app.component("BmsInputRadio", BmsInputRadio);
104748
104752
  app.component("BmsInputRadioGroup", BmsInputRadioGroup);
104749
104753
  app.component("BmsInputRadioCaption", BmsInputRadioCaption);
104750
104754
  app.component("BmsInputRadioCaptionGroup", BmsInputRadioCaptionGroup);
104751
- app.component("BmsInputText", _sfc_main$_);
104755
+ app.component("BmsInputText", _sfc_main$Z);
104752
104756
  app.component("BmsInputToggle", BmsInputToggle);
104753
104757
  app.component("BmsMultiSelect", BmsMultiSelect);
104754
104758
  app.component("BmsSearch", BmsSearch);
@@ -104781,9 +104785,9 @@ const createBmsUi = () => ({
104781
104785
  app.component("BmsTable", BmsTable);
104782
104786
  app.component("BmsCocarde", BmsCocarde);
104783
104787
  app.component("BmsProblem", BmsProblem);
104784
- app.component("BmsRelativeTime", _sfc_main$g);
104788
+ app.component("BmsRelativeTime", _sfc_main$f);
104785
104789
  }
104786
104790
  });
104787
104791
 
104788
- export { BMS_FORM_VALID_URL_REGEX, BmsAlert, BmsAutocomplete, BmsBackButton, BmsBadge, BmsBetweenInput, BmsBreadcrumb, _sfc_main$1k as BmsButton, BmsCaption, BmsCard, BmsChip, BmsCircularProgress, BmsCocarde, BmsContentPageLayout, BmsDraggableList, BmsEmptyScreen, BmsFilePicker, BmsFixedMenu, BmsForm, BmsHeader, BmsHeaderTitle, _sfc_main$1j as BmsIconButton, _sfc_main$13 as BmsInputBooleanCheckbox, BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup, BmsInputCheckboxGroup, BmsInputCode, _sfc_main$Z as BmsInputDateTime, BmsInputFile, _sfc_main$X as BmsInputNumber, BmsInputRadio, BmsInputRadioCaption, BmsInputRadioCaptionGroup, BmsInputRadioGroup, _sfc_main$_ as BmsInputText, BmsInputToggle, _sfc_main$1n as BmsLink, BmsLoader, BmsMenu, BmsMenuNav, BmsModal, BmsMultiSelect, BmsNotificationsInstance, BmsOverlay, BmsPagination, BmsProblem, _sfc_main$g as BmsRelativeTime, BmsSearch, BmsSection, BmsSelect, BmsServerTable, BmsShortLinkMenu, BmsStep, BmsStepper, BmsTable, BmsTabs, BmsTag, BmsTenantSwitcher, BmsTextArea, BmsTooltip, ChipColor, CocardeBorder, ColumnType, ConfirmInstance, InputType, KeycloakAuthAdapterInstance, RuntimeEnv, SelectMode, SortValue, StatusType, TooltipDirection, confirmPlugin, convertStringToCaption, createBmsUi, createRuntimeEnv, defaultSortFunction, enforceActionsColumnHeader, featureFlipperPlugin, fetchRuntimeEnv, field, getCurrentHistory, getCurrentLocation, getFiltersAsQueryParams, getImageFromFile, getNumberFromPathQuery, getStringFromPathQuery, getUserPrefFromLocalStorage, getValueByPath, handleValueInSearchParams, isEmptyStringOrNotDefined, isExternalLink, isFileImage, isProblem, keycloakAuthAdapter, keycloakAuthAdapterInit, notifications, readableDate, reflectFiltersToPath, reflectSearchToPath, relativeDate, relativeDateDefaultFormatFunction, routerHistoryPlugin, sanitizeHtml, sanitizeString, saveValuesToPathQuery, searchString, setUserPrefFromLocalStorage, useClipboard, useConfirm, useFeatureFlipper, useKeycloakAuthAdapter, useNotifications, usePagination, useRouterHistory, useRuntimeEnv, useSearch, useSort, useUserPref, writeLocation };
104792
+ export { BMS_FORM_VALID_URL_REGEX, BmsAlert, BmsAutocomplete, BmsBackButton, BmsBadge, BmsBetweenInput, BmsBreadcrumb, _sfc_main$1k as BmsButton, BmsCaption, BmsCard, BmsChip, BmsCircularProgress, BmsCocarde, BmsContentPageLayout, BmsDraggableList, BmsEmptyScreen, BmsFilePicker, BmsFixedMenu, BmsForm, BmsHeader, BmsHeaderTitle, _sfc_main$1j as BmsIconButton, _sfc_main$12 as BmsInputBooleanCheckbox, BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup, BmsInputCheckboxGroup, BmsInputCode, _sfc_main$Y as BmsInputDateTime, BmsInputFile, _sfc_main$W as BmsInputNumber, BmsInputRadio, BmsInputRadioCaption, BmsInputRadioCaptionGroup, BmsInputRadioGroup, _sfc_main$Z as BmsInputText, BmsInputToggle, _sfc_main$1n as BmsLink, BmsLoader, BmsMenu, BmsMenuNav, BmsModal, BmsMultiSelect, BmsNotificationsInstance, BmsOverlay, BmsPagination, BmsProblem, _sfc_main$f as BmsRelativeTime, BmsSearch, BmsSection, BmsSelect, BmsServerAutocomplete, BmsServerTable, BmsShortLinkMenu, BmsStep, BmsStepper, BmsTable, BmsTabs, BmsTag, BmsTenantSwitcher, BmsTextArea, BmsTooltip, ChipColor, CocardeBorder, ColumnType, ConfirmInstance, InputType, KeycloakAuthAdapterInstance, RuntimeEnv, SelectMode, SortValue, StatusType, TooltipDirection, confirmPlugin, convertStringToCaption, createBmsUi, createRuntimeEnv, defaultSortFunction, enforceActionsColumnHeader, featureFlipperPlugin, fetchRuntimeEnv, field, getCurrentHistory, getCurrentLocation, getFiltersAsQueryParams, getImageFromFile, getNumberFromPathQuery, getStringFromPathQuery, getUserPrefFromLocalStorage, getValueByPath, handleValueInSearchParams, isEmptyStringOrNotDefined, isExternalLink, isFileImage, isProblem, keycloakAuthAdapter, keycloakAuthAdapterInit, notifications, readableDate, reflectFiltersToPath, reflectSearchToPath, relativeDate, relativeDateDefaultFormatFunction, routerHistoryPlugin, sanitizeHtml, sanitizeString, saveValuesToPathQuery, searchString, setUserPrefFromLocalStorage, useClipboard, useConfirm, useFeatureFlipper, useKeycloakAuthAdapter, useNotifications, usePagination, useRouterHistory, useRuntimeEnv, useSearch, useSort, useUserPref, writeLocation };
104789
104793
  //# sourceMappingURL=sipa-bms-ui.es.js.map