@hotelinking/ui 13.45.9 → 13.45.15

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.
package/dist/ui.d.ts CHANGED
@@ -1355,9 +1355,11 @@ export declare interface UiSidebarInterface {
1355
1355
  }
1356
1356
 
1357
1357
  export declare const uiSidebarV2: DefineComponent<UiSidebarV2Interface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1358
+ inputChanged: (T: InputType_2) => any;
1358
1359
  sideBarClick: (t: string) => any;
1359
1360
  productBarClick: (t: string) => any;
1360
1361
  }, string, PublicProps, Readonly<UiSidebarV2Interface> & Readonly<{
1362
+ onInputChanged?: ((T: InputType_2) => any) | undefined;
1361
1363
  onSideBarClick?: ((t: string) => any) | undefined;
1362
1364
  onProductBarClick?: ((t: string) => any) | undefined;
1363
1365
  }>, {
@@ -1370,6 +1372,8 @@ export declare interface uiSidebarV2EventsInterface {
1370
1372
  (e: "productBarClick", t: string): void;
1371
1373
  /** emitted when a link is clicked, emits item id */
1372
1374
  (e: "sideBarClick", t: string): void;
1375
+ /** input changed */
1376
+ (e: "inputChanged", T: InputType): void;
1373
1377
  }
1374
1378
 
1375
1379
  export declare interface UiSidebarV2Interface {
@@ -1934,6 +1938,7 @@ sideBarClick: (t: string) => any;
1934
1938
  productBarClick: (t: string) => any;
1935
1939
  topBarClick: (T: string) => any;
1936
1940
  sidebarToggle: (T: boolean) => any;
1941
+ bellClick: () => any;
1937
1942
  }, string, PublicProps, Readonly<UiWrapperInterface> & Readonly<{
1938
1943
  onCheckboxChanged?: ((checkbox: UiCheckboxType_2) => any) | undefined;
1939
1944
  onInputChanged?: ((T: InputType_2) => any) | undefined;
@@ -1942,6 +1947,7 @@ onSideBarClick?: ((t: string) => any) | undefined;
1942
1947
  onProductBarClick?: ((t: string) => any) | undefined;
1943
1948
  onTopBarClick?: ((T: string) => any) | undefined;
1944
1949
  onSidebarToggle?: ((T: boolean) => any) | undefined;
1950
+ onBellClick?: (() => any) | undefined;
1945
1951
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
1946
1952
  default?(_: {}): any;
1947
1953
  }>;
@@ -1961,6 +1967,8 @@ export declare interface UiWrapperEventsInterface {
1961
1967
  (e: "inputChanged", T: InputType): void;
1962
1968
  /** State of sidebar changed */
1963
1969
  (e: "sidebarToggle", T: boolean): void;
1970
+ /** Emits when bell is clicked */
1971
+ (e: "bellClick"): void;
1964
1972
  }
1965
1973
 
1966
1974
  export declare interface UiWrapperInterface {
package/dist/ui.es.js CHANGED
@@ -2473,7 +2473,7 @@ const se = /* @__PURE__ */ te(mo, [["render", fo]]), ho = {
2473
2473
  key: Q
2474
2474
  }, [
2475
2475
  p(se, {
2476
- onClick: (Pd) => q(F, N.id, N.name),
2476
+ onClick: (Id) => q(F, N.id, N.name),
2477
2477
  class: "border-l border-gray-200 px-6 py-3 text-black hover:text-lime-400 cursor-pointer",
2478
2478
  price: F,
2479
2479
  currency: x.currency.symbol,
@@ -3012,7 +3012,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
3012
3012
  logo: {},
3013
3013
  productsSidebar: {}
3014
3014
  },
3015
- emits: ["productBarClick", "sideBarClick"],
3015
+ emits: ["productBarClick", "sideBarClick", "inputChanged"],
3016
3016
  setup(m, { emit: u }) {
3017
3017
  const a = m, i = P(() => a.navigation ? Array.isArray(a.navigation) ? a.navigation : [a.navigation] : []);
3018
3018
  return (o, s) => (l(), n("div", Nr, [
@@ -3031,7 +3031,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
3031
3031
  ])
3032
3032
  ]),
3033
3033
  o.loading ? (l(), n("div", Jr, [
3034
- (l(), n($, null, _(5, (t) => e("div", Gr, s[1] || (s[1] = [
3034
+ (l(), n($, null, _(5, (t) => e("div", Gr, s[2] || (s[2] = [
3035
3035
  e("div", { class: "w-6 h-6 animate-pulse bg-gray-200 rounded-full dark:bg-gray-300 mr-4" }, null, -1),
3036
3036
  e("div", { class: "h-3 animate-pulse bg-gray-200 rounded-full w-1/2 dark:bg-gray-300" }, null, -1)
3037
3037
  ]))), 64))
@@ -3135,7 +3135,8 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
3135
3135
  label: o.filterNavigation.search.label,
3136
3136
  placeholder: o.filterNavigation.search.placeholder,
3137
3137
  value: o.filterNavigation.search.value,
3138
- loading: o.filterNavigation.search.loading
3138
+ loading: o.filterNavigation.search.loading,
3139
+ onInputChanged: s[1] || (s[1] = (t) => o.$emit("inputChanged", t))
3139
3140
  }, null, 8, ["name", "label", "placeholder", "value", "loading"])) : v("", !0)
3140
3141
  ]),
3141
3142
  (l(!0), n($, null, _(o.filterNavigation.items, (t, r) => (l(), n("li", {
@@ -4716,17 +4717,14 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4716
4717
  ])
4717
4718
  ]));
4718
4719
  }
4719
- }), nd = { class: "fixed inset-0 flex" }, id = { class: "absolute left-full top-0 flex w-16 justify-center pt-5" }, dd = { class: "hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-[25rem] lg:flex-col" }, ud = { class: "lg:pl-[25rem]" }, cd = { class: "sticky top-0 z-10 flex h-16 shrink-0 items-center gap-x-4 border-b border-gray-200 bg-white px-4 shadow-sm sm:gap-x-6 sm:px-6 lg:px-8" }, gd = { class: "flex flex-1 gap-x-4 self-stretch lg:gap-x-6" }, md = { class: "flex items-center gap-x-4 lg:gap-x-6" }, pd = {
4720
- type: "button",
4721
- class: "-m-2.5 p-2.5 text-gray-400 hover:text-gray-500 relative"
4722
- }, fd = { class: "redCircle flex items-center justify-center h-4 w-4 bg-red-500 rounded-full absolute top-1 left-2" }, hd = ["src"], yd = { class: "hidden lg:flex lg:items-center" }, bd = ["onClick"], vd = { class: "py-7" }, wd = { class: "px-7 lg:px-10" }, kd = /* @__PURE__ */ B({
4720
+ }), nd = { class: "fixed inset-0 flex" }, id = { class: "absolute left-full top-0 flex w-16 justify-center pt-5" }, dd = { class: "hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-[25rem] lg:flex-col" }, ud = { class: "lg:pl-[25rem]" }, cd = { class: "sticky top-0 z-10 flex h-16 shrink-0 items-center gap-x-4 border-b border-gray-200 bg-white px-4 shadow-sm sm:gap-x-6 sm:px-6 lg:px-8" }, gd = { class: "flex flex-1 gap-x-4 self-stretch lg:gap-x-6" }, md = { class: "flex items-center gap-x-4 lg:gap-x-6" }, pd = { class: "redCircle flex items-center justify-center h-4 w-4 bg-red-500 rounded-full absolute top-1 left-2" }, fd = ["src"], hd = { class: "hidden lg:flex lg:items-center" }, yd = ["onClick"], bd = { class: "py-7" }, vd = { class: "px-7 lg:px-10" }, wd = /* @__PURE__ */ B({
4723
4721
  __name: "uiWrapper",
4724
4722
  props: {
4725
4723
  topbar: {},
4726
4724
  sidebar: {},
4727
4725
  sidebarOpen: { type: Boolean }
4728
4726
  },
4729
- emits: ["productBarClick", "sideBarClick", "selectChanged", "topBarClick", "checkboxChanged", "inputChanged", "sidebarToggle"],
4727
+ emits: ["productBarClick", "sideBarClick", "selectChanged", "topBarClick", "checkboxChanged", "inputChanged", "sidebarToggle", "bellClick"],
4730
4728
  setup(m, { emit: u }) {
4731
4729
  const a = m, i = u, o = A(a.sidebarOpen), s = () => {
4732
4730
  o.value = !o.value, i("sidebarToggle", o.value);
@@ -4751,11 +4749,11 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4751
4749
  "leave-from": "opacity-100",
4752
4750
  "leave-to": "opacity-0"
4753
4751
  }, {
4754
- default: b(() => r[9] || (r[9] = [
4752
+ default: b(() => r[10] || (r[10] = [
4755
4753
  e("div", { class: "fixed inset-0 bg-gray-900/80" }, null, -1)
4756
4754
  ])),
4757
4755
  _: 1,
4758
- __: [9]
4756
+ __: [10]
4759
4757
  }),
4760
4758
  e("div", nd, [
4761
4759
  p(c(G), {
@@ -4786,7 +4784,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4786
4784
  class: "-m-2.5 p-2.5",
4787
4785
  onClick: s
4788
4786
  }, [
4789
- r[10] || (r[10] = e("span", { class: "sr-only" }, "Close sidebar", -1)),
4787
+ r[11] || (r[11] = e("span", { class: "sr-only" }, "Close sidebar", -1)),
4790
4788
  p(c(J), {
4791
4789
  class: "h-6 w-6 text-white",
4792
4790
  "aria-hidden": "true"
@@ -4842,13 +4840,13 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4842
4840
  class: "-m-2.5 p-2.5 text-gray-700 lg:hidden",
4843
4841
  onClick: s
4844
4842
  }, [
4845
- r[11] || (r[11] = e("span", { class: "sr-only" }, "Open sidebar", -1)),
4843
+ r[12] || (r[12] = e("span", { class: "sr-only" }, "Open sidebar", -1)),
4846
4844
  p(c(We), {
4847
4845
  class: "h-6 w-6",
4848
4846
  "aria-hidden": "true"
4849
4847
  })
4850
4848
  ]),
4851
- r[16] || (r[16] = e("div", {
4849
+ r[17] || (r[17] = e("div", {
4852
4850
  class: "h-6 w-px bg-gray-200 lg:hidden",
4853
4851
  "aria-hidden": "true"
4854
4852
  }, null, -1)),
@@ -4861,9 +4859,13 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4861
4859
  onSelectChanged: r[8] || (r[8] = (d) => t.$emit("selectChanged", d))
4862
4860
  }, null, 8, ["items", "select"]),
4863
4861
  e("div", md, [
4864
- e("button", pd, [
4865
- r[13] || (r[13] = e("span", { class: "sr-only" }, "View notifications", -1)),
4866
- C(e("div", fd, r[12] || (r[12] = [
4862
+ e("button", {
4863
+ type: "button",
4864
+ class: "-m-2.5 p-2.5 text-gray-400 hover:text-gray-500 relative",
4865
+ onClick: r[9] || (r[9] = (d) => i("bellClick"))
4866
+ }, [
4867
+ r[14] || (r[14] = e("span", { class: "sr-only" }, "View notifications", -1)),
4868
+ C(e("div", pd, r[13] || (r[13] = [
4867
4869
  e("span", { class: "animate-ping absolute inline-flex h-4 w-4 bg-red-500 rounded-full opacity-75" }, null, -1)
4868
4870
  ]), 512), [
4869
4871
  [D, t.topbar.alerted]
@@ -4873,7 +4875,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4873
4875
  "aria-hidden": "true"
4874
4876
  })
4875
4877
  ]),
4876
- r[15] || (r[15] = e("div", {
4878
+ r[16] || (r[16] = e("div", {
4877
4879
  class: "hidden lg:block lg:h-6 lg:w-px lg:bg-gray-200",
4878
4880
  "aria-hidden": "true"
4879
4881
  }, null, -1)),
@@ -4884,13 +4886,13 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4884
4886
  default: b(() => [
4885
4887
  p(c(ve), { class: "-m-1.5 flex items-center p-1.5" }, {
4886
4888
  default: b(() => [
4887
- r[14] || (r[14] = e("span", { class: "sr-only" }, "Open user menu", -1)),
4889
+ r[15] || (r[15] = e("span", { class: "sr-only" }, "Open user menu", -1)),
4888
4890
  e("img", {
4889
4891
  class: "h-8 w-8 rounded-full bg-gray-50",
4890
4892
  src: t.topbar.accountLogo,
4891
4893
  alt: ""
4892
- }, null, 8, hd),
4893
- e("span", yd, [
4894
+ }, null, 8, fd),
4895
+ e("span", hd, [
4894
4896
  p(c(de), {
4895
4897
  class: "ml-2 h-5 w-5 text-gray-400",
4896
4898
  "aria-hidden": "true"
@@ -4898,7 +4900,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4898
4900
  ])
4899
4901
  ]),
4900
4902
  _: 1,
4901
- __: [14]
4903
+ __: [15]
4902
4904
  }),
4903
4905
  p(ue, {
4904
4906
  "enter-active-class": "transition ease-out duration-100",
@@ -4918,7 +4920,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4918
4920
  e("a", {
4919
4921
  onClick: (y) => t.$emit("topBarClick", d.id),
4920
4922
  class: f([h ? "bg-gray-50" : "", "block px-3 py-1 text-sm leading-6 text-gray-900"])
4921
- }, g(d.name), 11, bd)
4923
+ }, g(d.name), 11, yd)
4922
4924
  ]),
4923
4925
  _: 2
4924
4926
  }, 1024))), 128))
@@ -4934,15 +4936,15 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4934
4936
  ])
4935
4937
  ])
4936
4938
  ]),
4937
- e("main", vd, [
4938
- e("div", wd, [
4939
+ e("main", bd, [
4940
+ e("div", vd, [
4939
4941
  V(t.$slots, "default")
4940
4942
  ])
4941
4943
  ])
4942
4944
  ])
4943
4945
  ]));
4944
4946
  }
4945
- }), xd = /* @__PURE__ */ B({
4947
+ }), kd = /* @__PURE__ */ B({
4946
4948
  __name: "uiDynamicStats",
4947
4949
  props: {
4948
4950
  dynamicStats: {},
@@ -4961,13 +4963,13 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4961
4963
  }, null, 8, ["item", "loading"]))), 128))
4962
4964
  ], 2));
4963
4965
  }
4964
- }), $d = { class: "flex justify-between" }, _d = {
4966
+ }), xd = { class: "flex justify-between" }, $d = {
4965
4967
  key: 0,
4966
4968
  class: "text-[10px] uppercase justify-self-end place-self-center"
4967
- }, Cd = { class: "relative" }, Sd = { class: "block flex flex-wrap gap-2" }, Bd = {
4969
+ }, _d = { class: "relative" }, Cd = { class: "block flex flex-wrap gap-2" }, Sd = {
4968
4970
  key: 0,
4969
4971
  class: "p-0.5"
4970
- }, Md = ["onClick"], Dd = { class: "absolute mt-1 w-full rounded-md bg-white shadow-lg z-50" }, jd = {
4972
+ }, Bd = ["onClick"], Md = { class: "absolute mt-1 w-full rounded-md bg-white shadow-lg z-50" }, Dd = {
4971
4973
  key: 1,
4972
4974
  class: "animate-pulse px-4 py-2.5 bg-gray-200 rounded-md flex justify-between items-center w-full"
4973
4975
  }, st = /* @__PURE__ */ B({
@@ -4994,7 +4996,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
4994
4996
  function t(r) {
4995
4997
  o.value = o.value.filter((d) => d.id !== r.id), s(o.value);
4996
4998
  }
4997
- return (r, d) => r.loading ? (l(), n("div", jd, [
4999
+ return (r, d) => r.loading ? (l(), n("div", Dd, [
4998
5000
  d[4] || (d[4] = e("div", { class: "h-2.5 bg-gray-200 rounded-full dark:bg-gray-300 w-1/2" }, null, -1)),
4999
5001
  p(c(fe), {
5000
5002
  "aria-hidden": "true",
@@ -5013,16 +5015,16 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5013
5015
  as: "div"
5014
5016
  }, {
5015
5017
  default: b(() => [
5016
- e("div", $d, [
5018
+ e("div", xd, [
5017
5019
  p(c(mt), { class: "block text-sm font-medium" }, {
5018
5020
  default: b(() => [
5019
5021
  T(g(r.label), 1)
5020
5022
  ]),
5021
5023
  _: 1
5022
5024
  }),
5023
- r.requiredText ? (l(), n("span", _d, g(r.requiredText), 1)) : v("", !0)
5025
+ r.requiredText ? (l(), n("span", $d, g(r.requiredText), 1)) : v("", !0)
5024
5026
  ]),
5025
- e("div", Cd, [
5027
+ e("div", _d, [
5026
5028
  p(c(pt), {
5027
5029
  class: f([{
5028
5030
  "mt-1": r.requiredText || r.label,
@@ -5041,8 +5043,8 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5041
5043
  }, "relative w-full rounded-md border py-2 pl-2 pr-10 shadow-sm focus:border-lime-400 focus:outline-none focus:ring-1 focus:ring-lime-400 sm:text-sm"])
5042
5044
  }, {
5043
5045
  default: b(() => [
5044
- e("span", Sd, [
5045
- c(o).length === 0 ? (l(), n("span", Bd, "...")) : v("", !0),
5046
+ e("span", Cd, [
5047
+ c(o).length === 0 ? (l(), n("span", Sd, "...")) : v("", !0),
5046
5048
  (l(!0), n($, null, _(c(o), (h) => (l(), n("span", {
5047
5049
  key: h.id,
5048
5050
  class: "flex items-center gap-1 rounded text-xs font-medium bg-lime-400 text-black border border-lime-200 px-2 py-0.5"
@@ -5062,7 +5064,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5062
5064
  "stroke-width": "2",
5063
5065
  d: "M6 18L18 6M6 6l12 12"
5064
5066
  }, null, -1)
5065
- ]), 8, Md))
5067
+ ]), 8, Bd))
5066
5068
  ]))), 128))
5067
5069
  ]),
5068
5070
  d[2] || (d[2] = e("span", { class: "absolute h-full right-0 mr-2 self-center top-0 flex items-center" }, [
@@ -5084,7 +5086,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5084
5086
  _: 1,
5085
5087
  __: [2]
5086
5088
  }, 8, ["class"]),
5087
- e("div", Dd, [
5089
+ e("div", Md, [
5088
5090
  p(c(ft), { class: "shadow-2xs focus:outline-hidden max-h-60 overflow-auto rounded-md py-1 text-base leading-6 sm:text-sm sm:leading-5" }, {
5089
5091
  default: b(() => [
5090
5092
  (l(!0), n($, null, _(r.items, (h) => (l(), k(c(ht), {
@@ -5138,7 +5140,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5138
5140
  _: 1
5139
5141
  }, 8, ["modelValue", "disabled"]));
5140
5142
  }
5141
- }), Td = { class: "flex flex-col lg:flex-row items-center" }, zd = /* @__PURE__ */ B({
5143
+ }), jd = { class: "flex flex-col lg:flex-row items-center" }, Td = /* @__PURE__ */ B({
5142
5144
  __name: "uiSmartFilter",
5143
5145
  props: {
5144
5146
  items: {},
@@ -5167,7 +5169,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5167
5169
  }
5168
5170
  s.value = r.props;
5169
5171
  };
5170
- return (r, d) => (l(), n("div", Td, [
5172
+ return (r, d) => (l(), n("div", jd, [
5171
5173
  p(Xe, {
5172
5174
  items: r.items,
5173
5175
  loading: r.loading,
@@ -5206,7 +5208,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5206
5208
  uiDeviceStatus: ad,
5207
5209
  uiDragAndDrop: Mi,
5208
5210
  uiDropdown: me,
5209
- uiDynamicStats: xd,
5211
+ uiDynamicStats: kd,
5210
5212
  uiFilter: Xe,
5211
5213
  uiFooter: nr,
5212
5214
  uiFunnelChartV2: Zn,
@@ -5228,7 +5230,7 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5228
5230
  uiSelect_v2: De,
5229
5231
  uiSidebar: Or,
5230
5232
  uiSidebarV2: he,
5231
- uiSmartFilter: zd,
5233
+ uiSmartFilter: Td,
5232
5234
  uiStats: lt,
5233
5235
  uiStripedCard: ba,
5234
5236
  uiTable: Fa,
@@ -5239,37 +5241,37 @@ const nr = /* @__PURE__ */ te(or, [["render", ar]]), ir = /* @__PURE__ */ B({
5239
5241
  uiTimeline: yn,
5240
5242
  uiToggle: Tl,
5241
5243
  uiTopbar: Yn,
5242
- uiWrapper: kd
5243
- }, Symbol.toStringTag, { value: "Module" })), Ld = [
5244
+ uiWrapper: wd
5245
+ }, Symbol.toStringTag, { value: "Module" })), zd = [
5244
5246
  "primary",
5245
5247
  "secondary",
5246
5248
  "light",
5247
5249
  "green",
5248
5250
  "yellow",
5249
5251
  "red"
5250
- ], Hd = [
5252
+ ], Ud = [
5251
5253
  "text",
5252
5254
  "email",
5253
5255
  "password",
5254
5256
  "number",
5255
5257
  "date",
5256
5258
  "datetime-local"
5257
- ], Ad = ["black", "gray", "white"], Ed = [...Ld, ...Ad], Od = ["small", "medium", "big"], Nd = ["bigger", "huge", "massive"], Zd = [...Od, ...Nd], Wd = ["default", "success", "warning", "danger"];
5258
- function Id(m) {
5259
+ ], Ld = ["black", "gray", "white"], Hd = [...zd, ...Ld], Ad = ["small", "medium", "big"], Od = ["bigger", "huge", "massive"], Ed = [...Ad, ...Od], Zd = ["default", "success", "warning", "danger"];
5260
+ function Nd(m) {
5259
5261
  for (const u in Ne)
5260
5262
  m.component(u, Ne[u]);
5261
5263
  }
5262
- const Jd = { install: Id };
5264
+ const Wd = { install: Nd };
5263
5265
  export {
5264
- Ed as AllColors,
5265
- Zd as AllSizes,
5266
- Nd as BiggerSizes,
5267
- Ld as Colors,
5268
- Ad as MonoColors,
5269
- Od as Sizes,
5270
- Wd as Types,
5271
- Hd as UiInputTypes,
5272
- Jd as default,
5266
+ Hd as AllColors,
5267
+ Ed as AllSizes,
5268
+ Od as BiggerSizes,
5269
+ zd as Colors,
5270
+ Ld as MonoColors,
5271
+ Ad as Sizes,
5272
+ Zd as Types,
5273
+ Ud as UiInputTypes,
5274
+ Wd as default,
5273
5275
  ql as uiAlert,
5274
5276
  Wl as uiBreadcrumbs,
5275
5277
  W as uiButton,
@@ -5281,7 +5283,7 @@ export {
5281
5283
  ad as uiDeviceStatus,
5282
5284
  Mi as uiDragAndDrop,
5283
5285
  me as uiDropdown,
5284
- xd as uiDynamicStats,
5286
+ kd as uiDynamicStats,
5285
5287
  Xe as uiFilter,
5286
5288
  nr as uiFooter,
5287
5289
  Zn as uiFunnelChartV2,
@@ -5303,7 +5305,7 @@ export {
5303
5305
  De as uiSelect_v2,
5304
5306
  Or as uiSidebar,
5305
5307
  he as uiSidebarV2,
5306
- zd as uiSmartFilter,
5308
+ Td as uiSmartFilter,
5307
5309
  lt as uiStats,
5308
5310
  ba as uiStripedCard,
5309
5311
  Fa as uiTable,
@@ -5314,5 +5316,5 @@ export {
5314
5316
  yn as uiTimeline,
5315
5317
  Tl as uiToggle,
5316
5318
  Yn as uiTopbar,
5317
- kd as uiWrapper
5319
+ wd as uiWrapper
5318
5320
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hotelinking/ui",
3
3
  "private": false,
4
- "version": "13.45.9",
4
+ "version": "13.45.15",
5
5
  "files": [
6
6
  "dist"
7
7
  ],