@bagelink/vue 0.0.755 → 0.0.761

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.
@@ -1 +1 @@
1
- {"version":3,"file":"NavBar.vue.d.ts","sourceRoot":"","sources":["../../src/components/NavBar.vue"],"names":[],"mappings":"AAyXA,OAAO,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAoC3D,iBAAS,cAAc;;;;YAsME,GAAG;uBACA,GAAG;;;WASjB,OAAO,IAA6B;EAEjD;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;kBA7PL,OAAO,EAAE;YACf,OAAO,EAAE;eACN,aAAa;gBACZ,MAAM;aACT,MAAM;;kBAJD,OAAO,EAAE;YACf,OAAO,EAAE;eACN,aAAa;gBACZ,MAAM;aACT,MAAM;;WAHP,OAAO,EAAE;iBADH,OAAO,EAAE;cAEZ,aAAa;eACZ,MAAM;YACT,MAAM;6EAgQf,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"NavBar.vue.d.ts","sourceRoot":"","sources":["../../src/components/NavBar.vue"],"names":[],"mappings":"AAqYA,OAAO,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AA8C3D,iBAAS,cAAc;;;;YAkME,GAAG;uBACA,GAAG;;;WASjB,OAAO,IAA6B;EAEjD;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;kBApQL,OAAO,EAAE;YACf,OAAO,EAAE;eACN,aAAa;gBACZ,MAAM;aACT,MAAM;;kBAJD,OAAO,EAAE;YACf,OAAO,EAAE;eACN,aAAa;gBACZ,MAAM;aACT,MAAM;;WAHP,OAAO,EAAE;iBADH,OAAO,EAAE;cAEZ,aAAa;eACZ,MAAM;YACT,MAAM;6EAuQf,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,9 +1,28 @@
1
- import { TextInput } from '../../..';
2
- export type TextInputT = InstanceType<typeof TextInput>;
3
- export type TextInputProps = Omit<TextInputT['$props'], (`${string}modelValue` | `ref${string}` | `onVnode${string}` | 'key' | 'type')>;
4
- declare let __VLS_typeProps: {
5
- txtInputProps: TextInputProps;
6
- };
1
+ import { MaterialIcons } from '../../..';
2
+ export interface TextInputProps {
3
+ id?: string;
4
+ title?: string;
5
+ helptext?: string;
6
+ placeholder?: string;
7
+ label?: string;
8
+ small?: boolean;
9
+ dense?: boolean;
10
+ required?: boolean;
11
+ pattern?: string;
12
+ shrink?: boolean;
13
+ disabled?: boolean;
14
+ nativeInputAttrs?: Record<string, any>;
15
+ icon?: MaterialIcons;
16
+ iconStart?: MaterialIcons;
17
+ multiline?: boolean;
18
+ autoheight?: boolean;
19
+ code?: boolean;
20
+ lines?: number;
21
+ autofocus?: boolean;
22
+ debounceDelay?: number;
23
+ onFocusout?: (e: FocusEvent) => void;
24
+ }
25
+ declare let __VLS_typeProps: TextInputProps;
7
26
  type __VLS_PublicProps = {
8
27
  'modelValue'?: string;
9
28
  'showPwd'?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"PasswordInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/PasswordInput.vue"],"names":[],"mappings":"AAiCA,OAAO,EAAO,SAAS,EAAE,MAAM,eAAe,CAAA;AAE9C,MAAM,MAAM,UAAU,GAAG,YAAY,CAAC,OAAO,SAAS,CAAC,CAAA;AAEvD,MAAM,MAAM,cAAc,GAAG,IAAI,CAChC,UAAU,CAAC,QAAQ,CAAC,EACpB,CAAC,GAAG,MAAM,YAAY,GAAG,MAAM,MAAM,EAAE,GAAG,UAAU,MAAM,EAAE,GAAG,KAAK,GAAG,MAAM,CAAC,CAC9E,CAAA;AAID,QAAA,IAAI,eAAe,EAAG;IAAE,aAAa,EAAE,cAAc,CAAA;CAAE,CAAC;AAgBxD,KAAK,iBAAiB,GAAG;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;CACnB,GAAG,OAAO,eAAe,CAAC;;;;;;;;AA2F3B,wBAOG"}
1
+ {"version":3,"file":"PasswordInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/PasswordInput.vue"],"names":[],"mappings":"AA+DA,OAAO,EAAO,KAAK,aAAa,EAAa,MAAM,eAAe,CAAA;AAElE,MAAM,WAAW,cAAc;IAC9B,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,gBAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACtC,IAAI,CAAC,EAAE,aAAa,CAAA;IACpB,SAAS,CAAC,EAAE,aAAa,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,UAAU,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI,CAAA;CACpC;AAGD,QAAA,IAAI,eAAe,EAAG,cAAc,CAAC;AAkBrC,KAAK,iBAAiB,GAAG;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;CACnB,GAAG,OAAO,eAAe,CAAC;;;;;;;;AA2F3B,wBAOG"}
@@ -1 +1 @@
1
- {"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAAA,OA6WO,EAKN,KAAK,aAAa,EAClB,KAAK,MAAM,EAEX,MAAM,eAAe,CAAA;AAEtB,OAAO,wBAAwB,CAAA;AA+K/B,iBAAS,cAAc;;sBAkMI,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAmEixB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAxDv5B,OAAO,IAA6B;EAEjD;AA4BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;aAtZX,MAAM,EAAE;kBACH,MAAM;eACT,OAAO;iBACL,MAAM;iBACN,OAAO;eACT,OAAO;YACV,MAAM;gBACF,OAAO;kBACL,OAAO;WACd,aAAa;gBACR,OAAO;mBACJ,MAAM;gBACT,OAAO;;;;aAZV,MAAM,EAAE;kBACH,MAAM;eACT,OAAO;iBACL,MAAM;iBACN,OAAO;eACT,OAAO;YACV,MAAM;gBACF,OAAO;kBACL,OAAO;WACd,aAAa;gBACR,OAAO;mBACJ,MAAM;gBACT,OAAO;;;kFAiZlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAAA,OA8WO,EAKN,KAAK,aAAa,EAClB,KAAK,MAAM,EAEX,MAAM,eAAe,CAAA;AAEtB,OAAO,wBAAwB,CAAA;AA+K/B,iBAAS,cAAc;;sBAkMI,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAmEuuB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAxD72B,OAAO,IAA6B;EAEjD;AA4BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;aAtZX,MAAM,EAAE;kBACH,MAAM;eACT,OAAO;iBACL,MAAM;iBACN,OAAO;eACT,OAAO;YACV,MAAM;gBACF,OAAO;kBACL,OAAO;WACd,aAAa;gBACR,OAAO;mBACJ,MAAM;gBACT,OAAO;;;;aAZV,MAAM,EAAE;kBACH,MAAM;eACT,OAAO;iBACL,MAAM;iBACN,OAAO;eACT,OAAO;YACV,MAAM;gBACF,OAAO;kBACL,OAAO;WACd,aAAa;gBACR,OAAO;mBACJ,MAAM;gBACT,OAAO;;;kFAiZlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -8,11 +8,13 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
8
8
  declare const __VLS_component: import('vue').DefineComponent<{
9
9
  tabs: Tab[];
10
10
  modelValue?: string;
11
+ flat?: boolean;
11
12
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
13
  "update:modelValue": (...args: any[]) => void;
13
14
  }, string, import('vue').PublicProps, Readonly<{
14
15
  tabs: Tab[];
15
16
  modelValue?: string;
17
+ flat?: boolean;
16
18
  }> & Readonly<{
17
19
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
18
20
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1 +1 @@
1
- {"version":3,"file":"Tabs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Tabs.vue"],"names":[],"mappings":"AAmDA,OAAO,EAAE,KAAK,GAAG,EAAW,MAAM,eAAe,CAAA;AA2CjD,iBAAS,cAAc;0CA2C6D,GAAG;;WAUzE,OAAO,IAA6B;EAEjD;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UAzGd,GAAG,EAAE;iBACE,MAAM;;;;UADb,GAAG,EAAE;iBACE,MAAM;;;kFA+GlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Tabs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Tabs.vue"],"names":[],"mappings":"AAsDA,OAAO,EAAE,KAAK,GAAG,EAAW,MAAM,eAAe,CAAA;AA8CjD,iBAAS,cAAc;0CA2C6D,GAAG;;WAUzE,OAAO,IAA6B;EAEjD;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UA5Gd,GAAG,EAAE;iBACE,MAAM;WACZ,OAAO;;;;UAFR,GAAG,EAAE;iBACE,MAAM;WACZ,OAAO;;;kFAiHb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
package/dist/index.cjs CHANGED
@@ -227,8 +227,8 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
227
227
  },
228
228
  setup(__props) {
229
229
  vue.useCssVars((_ctx) => ({
230
- "a30674be": computedBackgroundColor.value,
231
- "1811393c": cumputedTextColor.value
230
+ "4cc6fa2a": computedBackgroundColor.value,
231
+ "0ff33606": cumputedTextColor.value
232
232
  }));
233
233
  const props2 = __props;
234
234
  const isComponent = vue.computed(() => {
@@ -317,7 +317,7 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
317
317
  };
318
318
  }
319
319
  });
320
- const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-7463197f"]]);
320
+ const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-a73ad8c2"]]);
321
321
  const _hoisted_1$G = ["dismissable"];
322
322
  const _hoisted_2$r = { class: "m-0" };
323
323
  const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
@@ -18947,7 +18947,27 @@ const _hoisted_1$r = { class: "relative" };
18947
18947
  const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
18948
18948
  __name: "PasswordInput",
18949
18949
  props: /* @__PURE__ */ vue.mergeModels({
18950
- txtInputProps: {}
18950
+ id: {},
18951
+ title: {},
18952
+ helptext: {},
18953
+ placeholder: {},
18954
+ label: {},
18955
+ small: { type: Boolean },
18956
+ dense: { type: Boolean },
18957
+ required: { type: Boolean },
18958
+ pattern: {},
18959
+ shrink: { type: Boolean },
18960
+ disabled: { type: Boolean },
18961
+ nativeInputAttrs: {},
18962
+ icon: {},
18963
+ iconStart: {},
18964
+ multiline: { type: Boolean },
18965
+ autoheight: { type: Boolean },
18966
+ code: { type: Boolean },
18967
+ lines: {},
18968
+ autofocus: { type: Boolean },
18969
+ debounceDelay: {},
18970
+ onFocusout: { type: Function }
18951
18971
  }, {
18952
18972
  "modelValue": {},
18953
18973
  "modelModifiers": {},
@@ -18956,18 +18976,23 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
18956
18976
  }),
18957
18977
  emits: ["update:modelValue", "update:showPwd"],
18958
18978
  setup(__props) {
18979
+ const props2 = __props;
18959
18980
  const password = vue.useModel(__props, "modelValue");
18960
18981
  const showPwd = vue.useModel(__props, "showPwd");
18961
- const toggleShowPwdIcon = vue.computed(() => showPwd.value ? "visibility_off" : "visibility");
18982
+ const toggleShowPwdIcon = vue.computed(
18983
+ () => showPwd.value ? "visibility_off" : "visibility"
18984
+ );
18962
18985
  const inputType = vue.computed(() => showPwd.value ? "text" : "password");
18963
18986
  return (_ctx, _cache) => {
18964
18987
  return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$r, [
18965
18988
  vue.createVNode(vue.unref(TextInput), vue.mergeProps({
18966
18989
  modelValue: password.value,
18967
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event),
18968
- class: "mb-0",
18969
- type: inputType.value
18970
- }, _ctx.txtInputProps), null, 16, ["modelValue", "type"]),
18990
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event)
18991
+ }, props2, {
18992
+ type: inputType.value,
18993
+ autocomplete: "current-password",
18994
+ class: "mb-0"
18995
+ }), null, 16, ["modelValue", "type"]),
18971
18996
  vue.createVNode(vue.unref(Btn), {
18972
18997
  flat: "",
18973
18998
  thin: "",
@@ -19010,7 +19035,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
19010
19035
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.options, (opt) => {
19011
19036
  return vue.openBlock(), vue.createElementBlock("label", {
19012
19037
  key: opt.id,
19013
- class: "border round p-1 flex bg-gray-light mb-05 gap-075 active-list-item hover",
19038
+ class: "border rounded p-1 flex bg-gray-light mb-05 gap-075 active-list-item hover",
19014
19039
  for: opt.id
19015
19040
  }, [
19016
19041
  vue.withDirectives(vue.createElementVNode("input", {
@@ -19026,7 +19051,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
19026
19051
  vue.createElementVNode("div", _hoisted_3$d, [
19027
19052
  opt.imgSrc ? (vue.openBlock(), vue.createElementBlock("img", {
19028
19053
  key: 0,
19029
- class: "bg-popup shadow-light py-025 rounded m_w40",
19054
+ class: "bg-popup shadow-light py-025 radius-05 m_w40",
19030
19055
  width: "60",
19031
19056
  src: opt.imgSrc,
19032
19057
  alt: opt.imgAlt
@@ -19051,7 +19076,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
19051
19076
  };
19052
19077
  }
19053
19078
  });
19054
- const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-3ae8f4d3"]]);
19079
+ const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-3e9e030f"]]);
19055
19080
  const _hoisted_1$p = { class: "bagel-input" };
19056
19081
  const _hoisted_2$f = { class: "pb-025" };
19057
19082
  const _hoisted_3$c = { class: "flex gap-05 flex-wrap" };
@@ -43623,7 +43648,7 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
43623
43648
  };
43624
43649
  }
43625
43650
  });
43626
- const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-3679d458"]]);
43651
+ const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-841bf0ec"]]);
43627
43652
  const _hoisted_1$m = {
43628
43653
  class: "toolbar flex gap-025 pb-05 flex-wrap",
43629
43654
  role: "toolbar"
@@ -43670,7 +43695,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
43670
43695
  key: action.name,
43671
43696
  thin: "",
43672
43697
  flat: "",
43673
- class: vue.normalizeClass([action.class, "rounded"]),
43698
+ class: vue.normalizeClass([action.class, "radius-05"]),
43674
43699
  "aria-label": action.name,
43675
43700
  icon: action.icon,
43676
43701
  onClick: ($event) => emit2("action", action.name)
@@ -43687,12 +43712,12 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
43687
43712
  };
43688
43713
  }
43689
43714
  });
43690
- const _hoisted_1$l = { class: "rich-text-editor round pt-05 px-1 pb-1" };
43715
+ const _hoisted_1$l = { class: "rich-text-editor rounded pt-05 px-1 pb-1" };
43691
43716
  const _hoisted_2$c = { class: "editor-container flex flex-stretch gap-1 m_column" };
43692
- const _hoisted_3$a = { class: "content-area rounded p-1 shadow-light w-100 grid" };
43717
+ const _hoisted_3$a = { class: "content-area radius-05 p-1 shadow-light w-100 grid" };
43693
43718
  const _hoisted_4$6 = {
43694
43719
  key: 0,
43695
- class: "preview-area w-100 rounded p-1"
43720
+ class: "preview-area w-100 radius-05 p-1"
43696
43721
  };
43697
43722
  const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
43698
43723
  __name: "index",
@@ -43853,7 +43878,7 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
43853
43878
  };
43854
43879
  }
43855
43880
  });
43856
- const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-1cddc1b1"]]);
43881
+ const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-9c94183b"]]);
43857
43882
  /*!
43858
43883
  * Signature Pad v5.0.3 | https://github.com/szimek/signature_pad
43859
43884
  * (c) 2024 Szymon Nowak | Released under the MIT license
@@ -52214,7 +52239,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
52214
52239
  vue.createElementVNode("div", {
52215
52240
  class: vue.normalizeClass(["switch", { checked: checked.value }])
52216
52241
  }, _cache[1] || (_cache[1] = [
52217
- vue.createElementVNode("span", { class: "slider round" }, null, -1)
52242
+ vue.createElementVNode("span", { class: "slider rounded" }, null, -1)
52218
52243
  ]), 2),
52219
52244
  vue.withDirectives(vue.createElementVNode("input", {
52220
52245
  id: inputId.value,
@@ -52233,7 +52258,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
52233
52258
  };
52234
52259
  }
52235
52260
  });
52236
- const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-0a2b089d"]]);
52261
+ const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-683b2f6d"]]);
52237
52262
  const _hoisted_1$f = { class: "m-0 pb-025 txt14 line-height-1" };
52238
52263
  const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
52239
52264
  __name: "BottomMenu",
@@ -52342,7 +52367,7 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
52342
52367
  icon: "keyboard_arrow_right",
52343
52368
  onClick: toggleMenu
52344
52369
  }),
52345
- vue.createVNode(vue.unref(_sfc_main$N), { class: "py-1 px-05 h-100 flex column gap-05 round relative bg-primary font-light overflow-y" }, {
52370
+ vue.createVNode(vue.unref(_sfc_main$N), { class: "py-1 px-05 h-100 flex column gap-05 rounded relative bg-primary font-light overflow-y" }, {
52346
52371
  default: vue.withCtx(() => [
52347
52372
  !vue.unref(isOpen) || !vue.unref(slots)["brand-open"] ? vue.renderSlot(_ctx.$slots, "brand", { key: 0 }, void 0, true) : vue.createCommentVNode("", true),
52348
52373
  vue.unref(isOpen) ? vue.renderSlot(_ctx.$slots, "brand-open", { key: 1 }, void 0, true) : vue.createCommentVNode("", true),
@@ -52388,7 +52413,7 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
52388
52413
  };
52389
52414
  }
52390
52415
  });
52391
- const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-6007d02b"]]);
52416
+ const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-3ee4f3f7"]]);
52392
52417
  const _hoisted_1$d = { class: "bgl_card tabs-top" };
52393
52418
  const _hoisted_2$7 = { class: "tabs grid auto-flow-columns fit-content" };
52394
52419
  const _hoisted_3$5 = ["onClick"];
@@ -52471,7 +52496,8 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
52471
52496
  __name: "Tabs",
52472
52497
  props: {
52473
52498
  tabs: {},
52474
- modelValue: {}
52499
+ modelValue: {},
52500
+ flat: { type: Boolean }
52475
52501
  },
52476
52502
  emits: ["update:modelValue"],
52477
52503
  setup(__props, { emit: __emit }) {
@@ -52503,10 +52529,11 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
52503
52529
  vue.createVNode(vue.unref(TabsNav), {
52504
52530
  modelValue: slctTab.value,
52505
52531
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => slctTab.value = $event),
52532
+ flat: _ctx.flat,
52506
52533
  tabs: _ctx.tabs,
52507
52534
  group: vue.unref(group),
52508
52535
  class: "mb-05"
52509
- }, null, 8, ["modelValue", "tabs", "group"]),
52536
+ }, null, 8, ["modelValue", "flat", "tabs", "group"]),
52510
52537
  vue.unref(currentTab) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$c, [
52511
52538
  vue.unref(slots)[vue.unref(currentTab)] ? vue.renderSlot(_ctx.$slots, vue.unref(currentTab), { key: 0 }) : vue.unref(currentTab) ? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(vue.unref(tabComponent)), { key: 1 })) : vue.createCommentVNode("", true)
52512
52539
  ])) : vue.createCommentVNode("", true)
@@ -53074,20 +53101,27 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
53074
53101
  homeTo: { default: "/" }
53075
53102
  },
53076
53103
  setup(__props) {
53077
- const isSmallScreen = vue.computed(() => window.innerWidth < 1100);
53078
- const isOpen = vue.ref(!isSmallScreen.value);
53104
+ let isOpen = vue.ref(true);
53105
+ function calcIsOpen() {
53106
+ isOpen.value = window.innerWidth < 1100 || [null, "true"].includes(localStorage.getItem("navOpen"));
53107
+ }
53108
+ function toggleMenu() {
53109
+ isOpen.value = !isOpen.value;
53110
+ localStorage.setItem("navOpen", `${isOpen.value}`);
53111
+ }
53112
+ vue.onMounted(calcIsOpen);
53079
53113
  return (_ctx, _cache) => {
53080
53114
  return vue.openBlock(), vue.createElementBlock("div", {
53081
- class: vue.normalizeClass({ open: isOpen.value, closed: !isOpen.value })
53115
+ class: vue.normalizeClass({ open: vue.unref(isOpen), closed: !vue.unref(isOpen) })
53082
53116
  }, [
53083
- vue.renderSlot(_ctx.$slots, "top", { isOpen: isOpen.value }, void 0, true),
53117
+ vue.renderSlot(_ctx.$slots, "top", { isOpen: vue.unref(isOpen) }, void 0, true),
53084
53118
  vue.createElementVNode("div", {
53085
53119
  class: "nav-expend",
53086
53120
  role: "button",
53087
53121
  "aria-label": "Toggle Navigation",
53088
53122
  tabindex: "0",
53089
- onClick: _cache[0] || (_cache[0] = ($event) => isOpen.value = !isOpen.value),
53090
- onKeypress: _cache[1] || (_cache[1] = vue.withKeys(($event) => isOpen.value = !isOpen.value, ["enter"]))
53123
+ onClick: toggleMenu,
53124
+ onKeypress: vue.withKeys(toggleMenu, ["enter"])
53091
53125
  }, [
53092
53126
  vue.createVNode(vue.unref(_sfc_main$b), {
53093
53127
  icon: "chevron_right",
@@ -53145,7 +53179,7 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
53145
53179
  };
53146
53180
  }
53147
53181
  });
53148
- const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-2f924811"]]);
53182
+ const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-5df5b310"]]);
53149
53183
  const _hoisted_1$3 = { class: "page-top" };
53150
53184
  const _hoisted_2$2 = { class: "top-title m-0" };
53151
53185
  const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
@@ -54659,13 +54693,13 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
54659
54693
  return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: index2 }, [
54660
54694
  item.type === "image" ? (vue.openBlock(), vue.createElementBlock("img", {
54661
54695
  key: 0,
54662
- class: vue.normalizeClass(["thumbnail object-fit-cover hover opacity-5 round flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: vue.unref(currentIndex) === index2 }]),
54696
+ class: vue.normalizeClass(["thumbnail object-fit-cover hover opacity-5 rounded flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: vue.unref(currentIndex) === index2 }]),
54663
54697
  src: item.src,
54664
54698
  alt: "",
54665
54699
  onClick: ($event) => selectItem(index2)
54666
54700
  }, null, 10, _hoisted_11)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$b), {
54667
54701
  key: 1,
54668
- class: vue.normalizeClass(["thumbnail object-fit-cover hover opacity-5 round flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: vue.unref(currentIndex) === index2 }]),
54702
+ class: vue.normalizeClass(["thumbnail object-fit-cover hover opacity-5 ed flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: vue.unref(currentIndex) === index2 }]),
54669
54703
  icon: "description",
54670
54704
  onClick: ($event) => selectItem(index2)
54671
54705
  }, null, 8, ["class", "onClick"]))
@@ -54681,7 +54715,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
54681
54715
  };
54682
54716
  }
54683
54717
  });
54684
- const Lightbox$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d550287d"]]);
54718
+ const Lightbox$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-68949c15"]]);
54685
54719
  const groups = {};
54686
54720
  const lightboxDirective = {
54687
54721
  mounted(el, binding) {
@@ -54851,7 +54885,7 @@ function numField(id, label, options) {
54851
54885
  function frmRow(...children2) {
54852
54886
  return {
54853
54887
  $el: "div",
54854
- class: "flex gap-1 m_block",
54888
+ class: "flex gap-1 m_block align-items-end",
54855
54889
  children: children2
54856
54890
  };
54857
54891
  }
package/dist/index.mjs CHANGED
@@ -225,8 +225,8 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
225
225
  },
226
226
  setup(__props) {
227
227
  useCssVars((_ctx) => ({
228
- "a30674be": computedBackgroundColor.value,
229
- "1811393c": cumputedTextColor.value
228
+ "4cc6fa2a": computedBackgroundColor.value,
229
+ "0ff33606": cumputedTextColor.value
230
230
  }));
231
231
  const props2 = __props;
232
232
  const isComponent = computed(() => {
@@ -315,7 +315,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
315
315
  };
316
316
  }
317
317
  });
318
- const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-7463197f"]]);
318
+ const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-a73ad8c2"]]);
319
319
  const _hoisted_1$G = ["dismissable"];
320
320
  const _hoisted_2$r = { class: "m-0" };
321
321
  const _sfc_main$R = /* @__PURE__ */ defineComponent({
@@ -18945,7 +18945,27 @@ const _hoisted_1$r = { class: "relative" };
18945
18945
  const _sfc_main$x = /* @__PURE__ */ defineComponent({
18946
18946
  __name: "PasswordInput",
18947
18947
  props: /* @__PURE__ */ mergeModels({
18948
- txtInputProps: {}
18948
+ id: {},
18949
+ title: {},
18950
+ helptext: {},
18951
+ placeholder: {},
18952
+ label: {},
18953
+ small: { type: Boolean },
18954
+ dense: { type: Boolean },
18955
+ required: { type: Boolean },
18956
+ pattern: {},
18957
+ shrink: { type: Boolean },
18958
+ disabled: { type: Boolean },
18959
+ nativeInputAttrs: {},
18960
+ icon: {},
18961
+ iconStart: {},
18962
+ multiline: { type: Boolean },
18963
+ autoheight: { type: Boolean },
18964
+ code: { type: Boolean },
18965
+ lines: {},
18966
+ autofocus: { type: Boolean },
18967
+ debounceDelay: {},
18968
+ onFocusout: { type: Function }
18949
18969
  }, {
18950
18970
  "modelValue": {},
18951
18971
  "modelModifiers": {},
@@ -18954,18 +18974,23 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
18954
18974
  }),
18955
18975
  emits: ["update:modelValue", "update:showPwd"],
18956
18976
  setup(__props) {
18977
+ const props2 = __props;
18957
18978
  const password = useModel(__props, "modelValue");
18958
18979
  const showPwd = useModel(__props, "showPwd");
18959
- const toggleShowPwdIcon = computed(() => showPwd.value ? "visibility_off" : "visibility");
18980
+ const toggleShowPwdIcon = computed(
18981
+ () => showPwd.value ? "visibility_off" : "visibility"
18982
+ );
18960
18983
  const inputType = computed(() => showPwd.value ? "text" : "password");
18961
18984
  return (_ctx, _cache) => {
18962
18985
  return openBlock(), createElementBlock("div", _hoisted_1$r, [
18963
18986
  createVNode(unref(TextInput), mergeProps({
18964
18987
  modelValue: password.value,
18965
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event),
18966
- class: "mb-0",
18967
- type: inputType.value
18968
- }, _ctx.txtInputProps), null, 16, ["modelValue", "type"]),
18988
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event)
18989
+ }, props2, {
18990
+ type: inputType.value,
18991
+ autocomplete: "current-password",
18992
+ class: "mb-0"
18993
+ }), null, 16, ["modelValue", "type"]),
18969
18994
  createVNode(unref(Btn), {
18970
18995
  flat: "",
18971
18996
  thin: "",
@@ -19008,7 +19033,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
19008
19033
  (openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.options, (opt) => {
19009
19034
  return openBlock(), createElementBlock("label", {
19010
19035
  key: opt.id,
19011
- class: "border round p-1 flex bg-gray-light mb-05 gap-075 active-list-item hover",
19036
+ class: "border rounded p-1 flex bg-gray-light mb-05 gap-075 active-list-item hover",
19012
19037
  for: opt.id
19013
19038
  }, [
19014
19039
  withDirectives(createElementVNode("input", {
@@ -19024,7 +19049,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
19024
19049
  createElementVNode("div", _hoisted_3$d, [
19025
19050
  opt.imgSrc ? (openBlock(), createElementBlock("img", {
19026
19051
  key: 0,
19027
- class: "bg-popup shadow-light py-025 rounded m_w40",
19052
+ class: "bg-popup shadow-light py-025 radius-05 m_w40",
19028
19053
  width: "60",
19029
19054
  src: opt.imgSrc,
19030
19055
  alt: opt.imgAlt
@@ -19049,7 +19074,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
19049
19074
  };
19050
19075
  }
19051
19076
  });
19052
- const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-3ae8f4d3"]]);
19077
+ const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-3e9e030f"]]);
19053
19078
  const _hoisted_1$p = { class: "bagel-input" };
19054
19079
  const _hoisted_2$f = { class: "pb-025" };
19055
19080
  const _hoisted_3$c = { class: "flex gap-05 flex-wrap" };
@@ -43621,7 +43646,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
43621
43646
  };
43622
43647
  }
43623
43648
  });
43624
- const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-3679d458"]]);
43649
+ const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-841bf0ec"]]);
43625
43650
  const _hoisted_1$m = {
43626
43651
  class: "toolbar flex gap-025 pb-05 flex-wrap",
43627
43652
  role: "toolbar"
@@ -43668,7 +43693,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
43668
43693
  key: action.name,
43669
43694
  thin: "",
43670
43695
  flat: "",
43671
- class: normalizeClass([action.class, "rounded"]),
43696
+ class: normalizeClass([action.class, "radius-05"]),
43672
43697
  "aria-label": action.name,
43673
43698
  icon: action.icon,
43674
43699
  onClick: ($event) => emit2("action", action.name)
@@ -43685,12 +43710,12 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
43685
43710
  };
43686
43711
  }
43687
43712
  });
43688
- const _hoisted_1$l = { class: "rich-text-editor round pt-05 px-1 pb-1" };
43713
+ const _hoisted_1$l = { class: "rich-text-editor rounded pt-05 px-1 pb-1" };
43689
43714
  const _hoisted_2$c = { class: "editor-container flex flex-stretch gap-1 m_column" };
43690
- const _hoisted_3$a = { class: "content-area rounded p-1 shadow-light w-100 grid" };
43715
+ const _hoisted_3$a = { class: "content-area radius-05 p-1 shadow-light w-100 grid" };
43691
43716
  const _hoisted_4$6 = {
43692
43717
  key: 0,
43693
- class: "preview-area w-100 rounded p-1"
43718
+ class: "preview-area w-100 radius-05 p-1"
43694
43719
  };
43695
43720
  const _sfc_main$r = /* @__PURE__ */ defineComponent({
43696
43721
  __name: "index",
@@ -43851,7 +43876,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
43851
43876
  };
43852
43877
  }
43853
43878
  });
43854
- const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-1cddc1b1"]]);
43879
+ const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-9c94183b"]]);
43855
43880
  /*!
43856
43881
  * Signature Pad v5.0.3 | https://github.com/szimek/signature_pad
43857
43882
  * (c) 2024 Szymon Nowak | Released under the MIT license
@@ -52212,7 +52237,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
52212
52237
  createElementVNode("div", {
52213
52238
  class: normalizeClass(["switch", { checked: checked.value }])
52214
52239
  }, _cache[1] || (_cache[1] = [
52215
- createElementVNode("span", { class: "slider round" }, null, -1)
52240
+ createElementVNode("span", { class: "slider rounded" }, null, -1)
52216
52241
  ]), 2),
52217
52242
  withDirectives(createElementVNode("input", {
52218
52243
  id: inputId.value,
@@ -52231,7 +52256,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
52231
52256
  };
52232
52257
  }
52233
52258
  });
52234
- const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-0a2b089d"]]);
52259
+ const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-683b2f6d"]]);
52235
52260
  const _hoisted_1$f = { class: "m-0 pb-025 txt14 line-height-1" };
52236
52261
  const _sfc_main$l = /* @__PURE__ */ defineComponent({
52237
52262
  __name: "BottomMenu",
@@ -52340,7 +52365,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
52340
52365
  icon: "keyboard_arrow_right",
52341
52366
  onClick: toggleMenu
52342
52367
  }),
52343
- createVNode(unref(_sfc_main$N), { class: "py-1 px-05 h-100 flex column gap-05 round relative bg-primary font-light overflow-y" }, {
52368
+ createVNode(unref(_sfc_main$N), { class: "py-1 px-05 h-100 flex column gap-05 rounded relative bg-primary font-light overflow-y" }, {
52344
52369
  default: withCtx(() => [
52345
52370
  !unref(isOpen) || !unref(slots)["brand-open"] ? renderSlot(_ctx.$slots, "brand", { key: 0 }, void 0, true) : createCommentVNode("", true),
52346
52371
  unref(isOpen) ? renderSlot(_ctx.$slots, "brand-open", { key: 1 }, void 0, true) : createCommentVNode("", true),
@@ -52386,7 +52411,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
52386
52411
  };
52387
52412
  }
52388
52413
  });
52389
- const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-6007d02b"]]);
52414
+ const SidebarMenu = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-3ee4f3f7"]]);
52390
52415
  const _hoisted_1$d = { class: "bgl_card tabs-top" };
52391
52416
  const _hoisted_2$7 = { class: "tabs grid auto-flow-columns fit-content" };
52392
52417
  const _hoisted_3$5 = ["onClick"];
@@ -52469,7 +52494,8 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
52469
52494
  __name: "Tabs",
52470
52495
  props: {
52471
52496
  tabs: {},
52472
- modelValue: {}
52497
+ modelValue: {},
52498
+ flat: { type: Boolean }
52473
52499
  },
52474
52500
  emits: ["update:modelValue"],
52475
52501
  setup(__props, { emit: __emit }) {
@@ -52501,10 +52527,11 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
52501
52527
  createVNode(unref(TabsNav), {
52502
52528
  modelValue: slctTab.value,
52503
52529
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => slctTab.value = $event),
52530
+ flat: _ctx.flat,
52504
52531
  tabs: _ctx.tabs,
52505
52532
  group: unref(group),
52506
52533
  class: "mb-05"
52507
- }, null, 8, ["modelValue", "tabs", "group"]),
52534
+ }, null, 8, ["modelValue", "flat", "tabs", "group"]),
52508
52535
  unref(currentTab) ? (openBlock(), createElementBlock("div", _hoisted_1$c, [
52509
52536
  unref(slots)[unref(currentTab)] ? renderSlot(_ctx.$slots, unref(currentTab), { key: 0 }) : unref(currentTab) ? (openBlock(), createBlock(resolveDynamicComponent(unref(tabComponent)), { key: 1 })) : createCommentVNode("", true)
52510
52537
  ])) : createCommentVNode("", true)
@@ -53072,20 +53099,27 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
53072
53099
  homeTo: { default: "/" }
53073
53100
  },
53074
53101
  setup(__props) {
53075
- const isSmallScreen = computed(() => window.innerWidth < 1100);
53076
- const isOpen = ref(!isSmallScreen.value);
53102
+ let isOpen = ref(true);
53103
+ function calcIsOpen() {
53104
+ isOpen.value = window.innerWidth < 1100 || [null, "true"].includes(localStorage.getItem("navOpen"));
53105
+ }
53106
+ function toggleMenu() {
53107
+ isOpen.value = !isOpen.value;
53108
+ localStorage.setItem("navOpen", `${isOpen.value}`);
53109
+ }
53110
+ onMounted(calcIsOpen);
53077
53111
  return (_ctx, _cache) => {
53078
53112
  return openBlock(), createElementBlock("div", {
53079
- class: normalizeClass({ open: isOpen.value, closed: !isOpen.value })
53113
+ class: normalizeClass({ open: unref(isOpen), closed: !unref(isOpen) })
53080
53114
  }, [
53081
- renderSlot(_ctx.$slots, "top", { isOpen: isOpen.value }, void 0, true),
53115
+ renderSlot(_ctx.$slots, "top", { isOpen: unref(isOpen) }, void 0, true),
53082
53116
  createElementVNode("div", {
53083
53117
  class: "nav-expend",
53084
53118
  role: "button",
53085
53119
  "aria-label": "Toggle Navigation",
53086
53120
  tabindex: "0",
53087
- onClick: _cache[0] || (_cache[0] = ($event) => isOpen.value = !isOpen.value),
53088
- onKeypress: _cache[1] || (_cache[1] = withKeys(($event) => isOpen.value = !isOpen.value, ["enter"]))
53121
+ onClick: toggleMenu,
53122
+ onKeypress: withKeys(toggleMenu, ["enter"])
53089
53123
  }, [
53090
53124
  createVNode(unref(_sfc_main$b), {
53091
53125
  icon: "chevron_right",
@@ -53143,7 +53177,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
53143
53177
  };
53144
53178
  }
53145
53179
  });
53146
- const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-2f924811"]]);
53180
+ const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-5df5b310"]]);
53147
53181
  const _hoisted_1$3 = { class: "page-top" };
53148
53182
  const _hoisted_2$2 = { class: "top-title m-0" };
53149
53183
  const _sfc_main$6 = /* @__PURE__ */ defineComponent({
@@ -54657,13 +54691,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
54657
54691
  return openBlock(), createElementBlock(Fragment$1, { key: index2 }, [
54658
54692
  item.type === "image" ? (openBlock(), createElementBlock("img", {
54659
54693
  key: 0,
54660
- class: normalizeClass(["thumbnail object-fit-cover hover opacity-5 round flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: unref(currentIndex) === index2 }]),
54694
+ class: normalizeClass(["thumbnail object-fit-cover hover opacity-5 rounded flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: unref(currentIndex) === index2 }]),
54661
54695
  src: item.src,
54662
54696
  alt: "",
54663
54697
  onClick: ($event) => selectItem(index2)
54664
54698
  }, null, 10, _hoisted_11)) : (openBlock(), createBlock(unref(_sfc_main$b), {
54665
54699
  key: 1,
54666
- class: normalizeClass(["thumbnail object-fit-cover hover opacity-5 round flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: unref(currentIndex) === index2 }]),
54700
+ class: normalizeClass(["thumbnail object-fit-cover hover opacity-5 ed flex bg-popup justify-content-center align-items-center flex-shrink-0", { active: unref(currentIndex) === index2 }]),
54667
54701
  icon: "description",
54668
54702
  onClick: ($event) => selectItem(index2)
54669
54703
  }, null, 8, ["class", "onClick"]))
@@ -54679,7 +54713,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
54679
54713
  };
54680
54714
  }
54681
54715
  });
54682
- const Lightbox$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d550287d"]]);
54716
+ const Lightbox$1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-68949c15"]]);
54683
54717
  const groups = {};
54684
54718
  const lightboxDirective = {
54685
54719
  mounted(el, binding) {
@@ -54849,7 +54883,7 @@ function numField(id, label, options) {
54849
54883
  function frmRow(...children2) {
54850
54884
  return {
54851
54885
  $el: "div",
54852
- class: "flex gap-1 m_block",
54886
+ class: "flex gap-1 m_block align-items-end",
54853
54887
  children: children2
54854
54888
  };
54855
54889
  }