@stokelp/ui 2.97.0 → 2.98.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.
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import { jsxs as e, jsx as r } from "react/jsx-runtime";
3
3
  import { chatDocumentMessage as p } from "@stokelp/styled-system/recipes";
4
- import { styled as a, HStack as i } from "@stokelp/styled-system/jsx";
4
+ import { HStack as i, styled as a } from "@stokelp/styled-system/jsx";
5
5
  import l from "../../node_modules/@heroicons/react/24/outline/esm/DocumentTextIcon.js";
6
6
  import { Text as f } from "../text/Text.js";
7
7
  import d from "../../node_modules/@heroicons/react/24/outline/esm/ArrowDownTrayIcon.js";
@@ -3,11 +3,11 @@ import { jsxs as t, jsx as r } from "react/jsx-runtime";
3
3
  import { Checkbox as o } from "@ark-ui/react";
4
4
  import { forwardRef as x } from "react";
5
5
  import { cx as b, css as u } from "@stokelp/styled-system/css";
6
- import { styled as k, splitCssProps as f } from "@stokelp/styled-system/jsx";
6
+ import { splitCssProps as k, styled as f } from "@stokelp/styled-system/jsx";
7
7
  import { checkbox as a, checkboxGroup as C } from "@stokelp/styled-system/recipes";
8
8
  import { CheckIcon as P, MinusIcon as N } from "../../shared/assets/icons.js";
9
9
  const I = x((n, i) => {
10
- const [l, p] = a.splitVariantProps(n), [m, h] = f(p), { children: c, className: d, ...e } = h, s = a(l);
10
+ const [l, p] = a.splitVariantProps(n), [m, h] = k(p), { children: c, className: d, ...e } = h, s = a(l);
11
11
  return /* @__PURE__ */ t(
12
12
  o.Root,
13
13
  {
@@ -25,7 +25,7 @@ const I = x((n, i) => {
25
25
  ]
26
26
  }
27
27
  );
28
- }), y = k(o.Group, C);
28
+ }), y = f(o.Group, C);
29
29
  I.displayName = "Checkbox";
30
30
  y.displayName = "CheckboxGroup";
31
31
  export {
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import { jsxs as i, jsx as t } from "react/jsx-runtime";
3
- import { Checkbox as o, ark as k } from "@ark-ui/react";
3
+ import { ark as k, Checkbox as o } from "@ark-ui/react";
4
4
  import { cx as b, css as f } from "@stokelp/styled-system/css";
5
- import { splitCssProps as u, styled as r } from "@stokelp/styled-system/jsx";
5
+ import { styled as r, splitCssProps as u } from "@stokelp/styled-system/jsx";
6
6
  import { checkboxCard as c } from "@stokelp/styled-system/recipes";
7
7
  import { forwardRef as P } from "react";
8
8
  import { createStyleContext as I } from "../../utils/slots.js";
@@ -1,5 +1,5 @@
1
1
  "use client";
2
- import { jsxs as p, jsx as o, Fragment as C } from "react/jsx-runtime";
2
+ import { jsxs as p, Fragment as C, jsx as o } from "react/jsx-runtime";
3
3
  import { Dialog as e, ark as c, useDialogContext as y } from "@ark-ui/react";
4
4
  import { useMediaQuery as x } from "usehooks-ts";
5
5
  import { styled as r } from "@stokelp/styled-system/jsx";
@@ -1 +1 @@
1
- {"version":3,"file":"use-pagination.cjs","sources":["../../../src/components/pagination/use-pagination.ts"],"sourcesContent":["// https://github.com/mantinedev/mantine/blob/95115daf60364ba2e5aba5e5d42d69103f90cb1a/packages/%40mantine/hooks/src/use-pagination/use-pagination.ts\n\nimport { useMemo } from 'react'\nimport { useUncontrolled } from '~/shared/hooks/useUncontrolled'\n\nfunction range(start: number, end: number) {\n const length = end - start + 1\n return Array.from({ length }, (_, index) => index + start)\n}\n\nexport const DOTS: unique symbol = Symbol('dots')\n\nexport interface PaginationParams {\n initialPage?: number\n page?: number\n total: number\n siblings?: number\n boundaries?: number\n onChange?: (page: number) => void\n}\n\nexport const usePagination = ({\n total,\n siblings = 1,\n boundaries = 1,\n page,\n initialPage = 1,\n onChange,\n}: PaginationParams) => {\n const _total = Math.max(Math.trunc(total), 0)\n const [activePage, setActivePage] = useUncontrolled({\n value: page,\n onChange,\n defaultValue: initialPage,\n finalValue: initialPage,\n })\n\n const setPage = (pageNumber: number) => {\n if (pageNumber <= 0) {\n setActivePage(1)\n } else if (pageNumber > _total) {\n setActivePage(_total)\n } else {\n setActivePage(pageNumber)\n }\n }\n\n const next = () => setPage(activePage + 1)\n const previous = () => setPage(activePage - 1)\n const first = () => setPage(1)\n const last = () => setPage(_total)\n\n const paginationRange = useMemo((): (number | typeof DOTS)[] => {\n const totalPageNumbers = siblings * 2 + 3 + boundaries * 2\n if (totalPageNumbers >= _total) {\n return range(1, _total)\n }\n\n const leftSiblingIndex = Math.max(activePage - siblings, boundaries)\n const rightSiblingIndex = Math.min(activePage + siblings, _total - boundaries)\n\n const shouldShowLeftDots = leftSiblingIndex > boundaries + 2\n const shouldShowRightDots = rightSiblingIndex < _total - (boundaries + 1)\n\n if (!shouldShowLeftDots && shouldShowRightDots) {\n const leftItemCount = siblings * 2 + boundaries + 2\n return [...range(1, leftItemCount), DOTS, ...range(_total - (boundaries - 1), _total)]\n }\n\n if (shouldShowLeftDots && !shouldShowRightDots) {\n const rightItemCount = boundaries + 1 + 2 * siblings\n return [...range(1, boundaries), DOTS, ...range(_total - rightItemCount, _total)]\n }\n\n return [\n ...range(1, boundaries),\n DOTS,\n ...range(leftSiblingIndex, rightSiblingIndex),\n DOTS,\n ...range(_total - boundaries + 1, _total),\n ]\n }, [_total, siblings, boundaries, activePage])\n\n return {\n range: paginationRange,\n active: activePage,\n setPage,\n next,\n previous,\n first,\n last,\n }\n}\n"],"names":["range","start","end","length","_","index","DOTS","usePagination","total","siblings","boundaries","page","initialPage","onChange","_total","activePage","setActivePage","useUncontrolled","setPage","pageNumber","next","previous","first","last","useMemo","leftSiblingIndex","rightSiblingIndex","shouldShowLeftDots","shouldShowRightDots","leftItemCount","rightItemCount"],"mappings":"0KAKA,SAASA,EAAMC,EAAeC,EAAa,CACzC,MAAMC,EAASD,EAAMD,EAAQ,EAC7B,OAAO,MAAM,KAAK,CAAE,OAAAE,CAAA,EAAU,CAACC,EAAGC,IAAUA,EAAQJ,CAAK,CAC3D,CAEO,MAAMK,EAAsB,OAAO,MAAM,EAWnCC,EAAgB,CAAC,CAC5B,MAAAC,EACA,SAAAC,EAAW,EACX,WAAAC,EAAa,EACb,KAAAC,EACA,YAAAC,EAAc,EACd,SAAAC,CACF,IAAwB,CACtB,MAAMC,EAAS,KAAK,IAAI,KAAK,MAAMN,CAAK,EAAG,CAAC,EACtC,CAACO,EAAYC,CAAa,EAAIC,kBAAgB,CAClD,MAAON,EACP,SAAAE,EACA,aAAcD,EACd,WAAYA,CAAA,CACb,EAEKM,EAAWC,GAAuB,CAClCA,GAAc,EAChBH,EAAc,CAAC,EACNG,EAAaL,EACtBE,EAAcF,CAAM,EAEpBE,EAAcG,CAAU,CAE5B,EAEMC,EAAO,IAAMF,EAAQH,EAAa,CAAC,EACnCM,EAAW,IAAMH,EAAQH,EAAa,CAAC,EACvCO,EAAQ,IAAMJ,EAAQ,CAAC,EACvBK,EAAO,IAAML,EAAQJ,CAAM,EAiCjC,MAAO,CACL,MAhCsBU,EAAAA,QAAQ,IAAgC,CAE9D,GADyBf,EAAW,EAAI,EAAIC,EAAa,GACjCI,EACtB,OAAOd,EAAM,EAAGc,CAAM,EAGxB,MAAMW,EAAmB,KAAK,IAAIV,EAAaN,EAAUC,CAAU,EAC7DgB,EAAoB,KAAK,IAAIX,EAAaN,EAAUK,EAASJ,CAAU,EAEvEiB,EAAqBF,EAAmBf,EAAa,EACrDkB,EAAsBF,EAAoBZ,GAAUJ,EAAa,GAEvE,GAAI,CAACiB,GAAsBC,EAAqB,CAC9C,MAAMC,EAAgBpB,EAAW,EAAIC,EAAa,EAClD,MAAO,CAAC,GAAGV,EAAM,EAAG6B,CAAa,EAAGvB,EAAM,GAAGN,EAAMc,GAAUJ,EAAa,GAAII,CAAM,CAAC,CACvF,CAEA,GAAIa,GAAsB,CAACC,EAAqB,CAC9C,MAAME,EAAiBpB,EAAa,EAAI,EAAID,EAC5C,MAAO,CAAC,GAAGT,EAAM,EAAGU,CAAU,EAAGJ,EAAM,GAAGN,EAAMc,EAASgB,EAAgBhB,CAAM,CAAC,CAClF,CAEA,MAAO,CACL,GAAGd,EAAM,EAAGU,CAAU,EACtBJ,EACA,GAAGN,EAAMyB,EAAkBC,CAAiB,EAC5CpB,EACA,GAAGN,EAAMc,EAASJ,EAAa,EAAGI,CAAM,CAAA,CAE5C,EAAG,CAACA,EAAQL,EAAUC,EAAYK,CAAU,CAAC,EAI3C,OAAQA,EACR,QAAAG,EACA,KAAAE,EACA,SAAAC,EACA,MAAAC,EACA,KAAAC,CAAA,CAEJ"}
1
+ {"version":3,"file":"use-pagination.cjs","sources":["../../../src/components/pagination/use-pagination.ts"],"sourcesContent":["// https://github.com/mantinedev/mantine/blob/95115daf60364ba2e5aba5e5d42d69103f90cb1a/packages/%40mantine/hooks/src/use-pagination/use-pagination.ts\n\nimport { useMemo } from 'react'\nimport { useUncontrolled } from '~/shared/hooks/useUncontrolled'\n\nfunction range(start: number, end: number) {\n const length = end - start + 1\n return Array.from({ length }, (_, index) => index + start)\n}\n\nexport const DOTS: unique symbol = Symbol('dots')\n\nexport interface PaginationParams {\n initialPage?: number\n page?: number\n total: number\n siblings?: number\n boundaries?: number\n onChange?: (page: number) => void\n}\n\nexport const usePagination = ({\n total,\n siblings = 1,\n boundaries = 1,\n page,\n initialPage = 1,\n onChange,\n}: PaginationParams) => {\n const _total = Math.max(Math.trunc(total), 0)\n const [activePage, setActivePage] = useUncontrolled({\n value: page,\n onChange,\n defaultValue: initialPage,\n finalValue: initialPage,\n })\n\n const setPage = (pageNumber: number) => {\n if (pageNumber <= 0) {\n setActivePage(1)\n } else if (pageNumber > _total) {\n setActivePage(_total)\n } else {\n setActivePage(pageNumber)\n }\n }\n\n const next = () => setPage(activePage + 1)\n const previous = () => setPage(activePage - 1)\n const first = () => setPage(1)\n const last = () => setPage(_total)\n\n const paginationRange = useMemo((): (number | typeof DOTS)[] => {\n const totalPageNumbers = siblings * 2 + 3 + boundaries * 2\n if (totalPageNumbers >= _total) {\n return range(1, _total)\n }\n\n const leftSiblingIndex = Math.max(activePage - siblings, boundaries)\n const rightSiblingIndex = Math.min(activePage + siblings, _total - boundaries)\n\n const shouldShowLeftDots = leftSiblingIndex > boundaries + 2\n const shouldShowRightDots = rightSiblingIndex < _total - (boundaries + 1)\n\n if (!shouldShowLeftDots && shouldShowRightDots) {\n const leftItemCount = siblings * 2 + boundaries + 2\n return [...range(1, leftItemCount), DOTS, ...range(_total - (boundaries - 1), _total)]\n }\n\n if (shouldShowLeftDots && !shouldShowRightDots) {\n const rightItemCount = boundaries + 1 + 2 * siblings\n return [...range(1, boundaries), DOTS, ...range(_total - rightItemCount, _total)]\n }\n\n return [\n ...range(1, boundaries),\n DOTS,\n ...range(leftSiblingIndex, rightSiblingIndex),\n DOTS,\n ...range(_total - boundaries + 1, _total),\n ]\n }, [_total, siblings, boundaries, activePage])\n\n return {\n range: paginationRange,\n active: activePage,\n setPage,\n next,\n previous,\n first,\n last,\n }\n}\n"],"names":["range","start","end","length","_","index","DOTS","usePagination","total","siblings","boundaries","page","initialPage","onChange","_total","activePage","setActivePage","useUncontrolled","setPage","pageNumber","next","previous","first","last","useMemo","leftSiblingIndex","rightSiblingIndex","shouldShowLeftDots","shouldShowRightDots","leftItemCount","rightItemCount"],"mappings":"0KAKA,SAASA,EAAMC,EAAeC,EAAa,CACzC,MAAMC,EAASD,EAAMD,EAAQ,EAC7B,OAAO,MAAM,KAAK,CAAE,OAAAE,CAAA,EAAU,CAACC,EAAGC,IAAUA,EAAQJ,CAAK,CAC3D,CAEO,MAAMK,SAA6B,MAAM,EAWnCC,EAAgB,CAAC,CAC5B,MAAAC,EACA,SAAAC,EAAW,EACX,WAAAC,EAAa,EACb,KAAAC,EACA,YAAAC,EAAc,EACd,SAAAC,CACF,IAAwB,CACtB,MAAMC,EAAS,KAAK,IAAI,KAAK,MAAMN,CAAK,EAAG,CAAC,EACtC,CAACO,EAAYC,CAAa,EAAIC,kBAAgB,CAClD,MAAON,EACP,SAAAE,EACA,aAAcD,EACd,WAAYA,CAAA,CACb,EAEKM,EAAWC,GAAuB,CAClCA,GAAc,EAChBH,EAAc,CAAC,EACNG,EAAaL,EACtBE,EAAcF,CAAM,EAEpBE,EAAcG,CAAU,CAE5B,EAEMC,EAAO,IAAMF,EAAQH,EAAa,CAAC,EACnCM,EAAW,IAAMH,EAAQH,EAAa,CAAC,EACvCO,EAAQ,IAAMJ,EAAQ,CAAC,EACvBK,EAAO,IAAML,EAAQJ,CAAM,EAiCjC,MAAO,CACL,MAhCsBU,EAAAA,QAAQ,IAAgC,CAE9D,GADyBf,EAAW,EAAI,EAAIC,EAAa,GACjCI,EACtB,OAAOd,EAAM,EAAGc,CAAM,EAGxB,MAAMW,EAAmB,KAAK,IAAIV,EAAaN,EAAUC,CAAU,EAC7DgB,EAAoB,KAAK,IAAIX,EAAaN,EAAUK,EAASJ,CAAU,EAEvEiB,EAAqBF,EAAmBf,EAAa,EACrDkB,EAAsBF,EAAoBZ,GAAUJ,EAAa,GAEvE,GAAI,CAACiB,GAAsBC,EAAqB,CAC9C,MAAMC,EAAgBpB,EAAW,EAAIC,EAAa,EAClD,MAAO,CAAC,GAAGV,EAAM,EAAG6B,CAAa,EAAGvB,EAAM,GAAGN,EAAMc,GAAUJ,EAAa,GAAII,CAAM,CAAC,CACvF,CAEA,GAAIa,GAAsB,CAACC,EAAqB,CAC9C,MAAME,EAAiBpB,EAAa,EAAI,EAAID,EAC5C,MAAO,CAAC,GAAGT,EAAM,EAAGU,CAAU,EAAGJ,EAAM,GAAGN,EAAMc,EAASgB,EAAgBhB,CAAM,CAAC,CAClF,CAEA,MAAO,CACL,GAAGd,EAAM,EAAGU,CAAU,EACtBJ,EACA,GAAGN,EAAMyB,EAAkBC,CAAiB,EAC5CpB,EACA,GAAGN,EAAMc,EAASJ,EAAa,EAAGI,CAAM,CAAA,CAE5C,EAAG,CAACA,EAAQL,EAAUC,EAAYK,CAAU,CAAC,EAI3C,OAAQA,EACR,QAAAG,EACA,KAAAE,EACA,SAAAC,EACA,MAAAC,EACA,KAAAC,CAAA,CAEJ"}
@@ -5,7 +5,7 @@ function e(l, n) {
5
5
  const t = n - l + 1;
6
6
  return Array.from({ length: t }, (g, r) => r + l);
7
7
  }
8
- const s = Symbol("dots"), C = ({
8
+ const s = /* @__PURE__ */ Symbol("dots"), C = ({
9
9
  total: l,
10
10
  siblings: n = 1,
11
11
  boundaries: t = 1,
@@ -1 +1 @@
1
- {"version":3,"file":"use-pagination.js","sources":["../../../src/components/pagination/use-pagination.ts"],"sourcesContent":["// https://github.com/mantinedev/mantine/blob/95115daf60364ba2e5aba5e5d42d69103f90cb1a/packages/%40mantine/hooks/src/use-pagination/use-pagination.ts\n\nimport { useMemo } from 'react'\nimport { useUncontrolled } from '~/shared/hooks/useUncontrolled'\n\nfunction range(start: number, end: number) {\n const length = end - start + 1\n return Array.from({ length }, (_, index) => index + start)\n}\n\nexport const DOTS: unique symbol = Symbol('dots')\n\nexport interface PaginationParams {\n initialPage?: number\n page?: number\n total: number\n siblings?: number\n boundaries?: number\n onChange?: (page: number) => void\n}\n\nexport const usePagination = ({\n total,\n siblings = 1,\n boundaries = 1,\n page,\n initialPage = 1,\n onChange,\n}: PaginationParams) => {\n const _total = Math.max(Math.trunc(total), 0)\n const [activePage, setActivePage] = useUncontrolled({\n value: page,\n onChange,\n defaultValue: initialPage,\n finalValue: initialPage,\n })\n\n const setPage = (pageNumber: number) => {\n if (pageNumber <= 0) {\n setActivePage(1)\n } else if (pageNumber > _total) {\n setActivePage(_total)\n } else {\n setActivePage(pageNumber)\n }\n }\n\n const next = () => setPage(activePage + 1)\n const previous = () => setPage(activePage - 1)\n const first = () => setPage(1)\n const last = () => setPage(_total)\n\n const paginationRange = useMemo((): (number | typeof DOTS)[] => {\n const totalPageNumbers = siblings * 2 + 3 + boundaries * 2\n if (totalPageNumbers >= _total) {\n return range(1, _total)\n }\n\n const leftSiblingIndex = Math.max(activePage - siblings, boundaries)\n const rightSiblingIndex = Math.min(activePage + siblings, _total - boundaries)\n\n const shouldShowLeftDots = leftSiblingIndex > boundaries + 2\n const shouldShowRightDots = rightSiblingIndex < _total - (boundaries + 1)\n\n if (!shouldShowLeftDots && shouldShowRightDots) {\n const leftItemCount = siblings * 2 + boundaries + 2\n return [...range(1, leftItemCount), DOTS, ...range(_total - (boundaries - 1), _total)]\n }\n\n if (shouldShowLeftDots && !shouldShowRightDots) {\n const rightItemCount = boundaries + 1 + 2 * siblings\n return [...range(1, boundaries), DOTS, ...range(_total - rightItemCount, _total)]\n }\n\n return [\n ...range(1, boundaries),\n DOTS,\n ...range(leftSiblingIndex, rightSiblingIndex),\n DOTS,\n ...range(_total - boundaries + 1, _total),\n ]\n }, [_total, siblings, boundaries, activePage])\n\n return {\n range: paginationRange,\n active: activePage,\n setPage,\n next,\n previous,\n first,\n last,\n }\n}\n"],"names":["range","start","end","length","_","index","DOTS","usePagination","total","siblings","boundaries","page","initialPage","onChange","_total","activePage","setActivePage","useUncontrolled","setPage","pageNumber","next","previous","first","last","useMemo","leftSiblingIndex","rightSiblingIndex","shouldShowLeftDots","shouldShowRightDots","leftItemCount","rightItemCount"],"mappings":";;;AAKA,SAASA,EAAMC,GAAeC,GAAa;AACzC,QAAMC,IAASD,IAAMD,IAAQ;AAC7B,SAAO,MAAM,KAAK,EAAE,QAAAE,EAAA,GAAU,CAACC,GAAGC,MAAUA,IAAQJ,CAAK;AAC3D;AAEO,MAAMK,IAAsB,OAAO,MAAM,GAWnCC,IAAgB,CAAC;AAAA,EAC5B,OAAAC;AAAA,EACA,UAAAC,IAAW;AAAA,EACX,YAAAC,IAAa;AAAA,EACb,MAAAC;AAAA,EACA,aAAAC,IAAc;AAAA,EACd,UAAAC;AACF,MAAwB;AACtB,QAAMC,IAAS,KAAK,IAAI,KAAK,MAAMN,CAAK,GAAG,CAAC,GACtC,CAACO,GAAYC,CAAa,IAAIC,EAAgB;AAAA,IAClD,OAAON;AAAA,IACP,UAAAE;AAAA,IACA,cAAcD;AAAA,IACd,YAAYA;AAAA,EAAA,CACb,GAEKM,IAAU,CAACC,MAAuB;AACtC,IAAIA,KAAc,IAChBH,EAAc,CAAC,IACNG,IAAaL,IACtBE,EAAcF,CAAM,IAEpBE,EAAcG,CAAU;AAAA,EAE5B,GAEMC,IAAO,MAAMF,EAAQH,IAAa,CAAC,GACnCM,IAAW,MAAMH,EAAQH,IAAa,CAAC,GACvCO,IAAQ,MAAMJ,EAAQ,CAAC,GACvBK,IAAO,MAAML,EAAQJ,CAAM;AAiCjC,SAAO;AAAA,IACL,OAhCsBU,EAAQ,MAAgC;AAE9D,UADyBf,IAAW,IAAI,IAAIC,IAAa,KACjCI;AACtB,eAAOd,EAAM,GAAGc,CAAM;AAGxB,YAAMW,IAAmB,KAAK,IAAIV,IAAaN,GAAUC,CAAU,GAC7DgB,IAAoB,KAAK,IAAIX,IAAaN,GAAUK,IAASJ,CAAU,GAEvEiB,IAAqBF,IAAmBf,IAAa,GACrDkB,IAAsBF,IAAoBZ,KAAUJ,IAAa;AAEvE,UAAI,CAACiB,KAAsBC,GAAqB;AAC9C,cAAMC,IAAgBpB,IAAW,IAAIC,IAAa;AAClD,eAAO,CAAC,GAAGV,EAAM,GAAG6B,CAAa,GAAGvB,GAAM,GAAGN,EAAMc,KAAUJ,IAAa,IAAII,CAAM,CAAC;AAAA,MACvF;AAEA,UAAIa,KAAsB,CAACC,GAAqB;AAC9C,cAAME,IAAiBpB,IAAa,IAAI,IAAID;AAC5C,eAAO,CAAC,GAAGT,EAAM,GAAGU,CAAU,GAAGJ,GAAM,GAAGN,EAAMc,IAASgB,GAAgBhB,CAAM,CAAC;AAAA,MAClF;AAEA,aAAO;AAAA,QACL,GAAGd,EAAM,GAAGU,CAAU;AAAA,QACtBJ;AAAA,QACA,GAAGN,EAAMyB,GAAkBC,CAAiB;AAAA,QAC5CpB;AAAA,QACA,GAAGN,EAAMc,IAASJ,IAAa,GAAGI,CAAM;AAAA,MAAA;AAAA,IAE5C,GAAG,CAACA,GAAQL,GAAUC,GAAYK,CAAU,CAAC;AAAA,IAI3C,QAAQA;AAAA,IACR,SAAAG;AAAA,IACA,MAAAE;AAAA,IACA,UAAAC;AAAA,IACA,OAAAC;AAAA,IACA,MAAAC;AAAA,EAAA;AAEJ;"}
1
+ {"version":3,"file":"use-pagination.js","sources":["../../../src/components/pagination/use-pagination.ts"],"sourcesContent":["// https://github.com/mantinedev/mantine/blob/95115daf60364ba2e5aba5e5d42d69103f90cb1a/packages/%40mantine/hooks/src/use-pagination/use-pagination.ts\n\nimport { useMemo } from 'react'\nimport { useUncontrolled } from '~/shared/hooks/useUncontrolled'\n\nfunction range(start: number, end: number) {\n const length = end - start + 1\n return Array.from({ length }, (_, index) => index + start)\n}\n\nexport const DOTS: unique symbol = Symbol('dots')\n\nexport interface PaginationParams {\n initialPage?: number\n page?: number\n total: number\n siblings?: number\n boundaries?: number\n onChange?: (page: number) => void\n}\n\nexport const usePagination = ({\n total,\n siblings = 1,\n boundaries = 1,\n page,\n initialPage = 1,\n onChange,\n}: PaginationParams) => {\n const _total = Math.max(Math.trunc(total), 0)\n const [activePage, setActivePage] = useUncontrolled({\n value: page,\n onChange,\n defaultValue: initialPage,\n finalValue: initialPage,\n })\n\n const setPage = (pageNumber: number) => {\n if (pageNumber <= 0) {\n setActivePage(1)\n } else if (pageNumber > _total) {\n setActivePage(_total)\n } else {\n setActivePage(pageNumber)\n }\n }\n\n const next = () => setPage(activePage + 1)\n const previous = () => setPage(activePage - 1)\n const first = () => setPage(1)\n const last = () => setPage(_total)\n\n const paginationRange = useMemo((): (number | typeof DOTS)[] => {\n const totalPageNumbers = siblings * 2 + 3 + boundaries * 2\n if (totalPageNumbers >= _total) {\n return range(1, _total)\n }\n\n const leftSiblingIndex = Math.max(activePage - siblings, boundaries)\n const rightSiblingIndex = Math.min(activePage + siblings, _total - boundaries)\n\n const shouldShowLeftDots = leftSiblingIndex > boundaries + 2\n const shouldShowRightDots = rightSiblingIndex < _total - (boundaries + 1)\n\n if (!shouldShowLeftDots && shouldShowRightDots) {\n const leftItemCount = siblings * 2 + boundaries + 2\n return [...range(1, leftItemCount), DOTS, ...range(_total - (boundaries - 1), _total)]\n }\n\n if (shouldShowLeftDots && !shouldShowRightDots) {\n const rightItemCount = boundaries + 1 + 2 * siblings\n return [...range(1, boundaries), DOTS, ...range(_total - rightItemCount, _total)]\n }\n\n return [\n ...range(1, boundaries),\n DOTS,\n ...range(leftSiblingIndex, rightSiblingIndex),\n DOTS,\n ...range(_total - boundaries + 1, _total),\n ]\n }, [_total, siblings, boundaries, activePage])\n\n return {\n range: paginationRange,\n active: activePage,\n setPage,\n next,\n previous,\n first,\n last,\n }\n}\n"],"names":["range","start","end","length","_","index","DOTS","usePagination","total","siblings","boundaries","page","initialPage","onChange","_total","activePage","setActivePage","useUncontrolled","setPage","pageNumber","next","previous","first","last","useMemo","leftSiblingIndex","rightSiblingIndex","shouldShowLeftDots","shouldShowRightDots","leftItemCount","rightItemCount"],"mappings":";;;AAKA,SAASA,EAAMC,GAAeC,GAAa;AACzC,QAAMC,IAASD,IAAMD,IAAQ;AAC7B,SAAO,MAAM,KAAK,EAAE,QAAAE,EAAA,GAAU,CAACC,GAAGC,MAAUA,IAAQJ,CAAK;AAC3D;AAEO,MAAMK,2BAA6B,MAAM,GAWnCC,IAAgB,CAAC;AAAA,EAC5B,OAAAC;AAAA,EACA,UAAAC,IAAW;AAAA,EACX,YAAAC,IAAa;AAAA,EACb,MAAAC;AAAA,EACA,aAAAC,IAAc;AAAA,EACd,UAAAC;AACF,MAAwB;AACtB,QAAMC,IAAS,KAAK,IAAI,KAAK,MAAMN,CAAK,GAAG,CAAC,GACtC,CAACO,GAAYC,CAAa,IAAIC,EAAgB;AAAA,IAClD,OAAON;AAAA,IACP,UAAAE;AAAA,IACA,cAAcD;AAAA,IACd,YAAYA;AAAA,EAAA,CACb,GAEKM,IAAU,CAACC,MAAuB;AACtC,IAAIA,KAAc,IAChBH,EAAc,CAAC,IACNG,IAAaL,IACtBE,EAAcF,CAAM,IAEpBE,EAAcG,CAAU;AAAA,EAE5B,GAEMC,IAAO,MAAMF,EAAQH,IAAa,CAAC,GACnCM,IAAW,MAAMH,EAAQH,IAAa,CAAC,GACvCO,IAAQ,MAAMJ,EAAQ,CAAC,GACvBK,IAAO,MAAML,EAAQJ,CAAM;AAiCjC,SAAO;AAAA,IACL,OAhCsBU,EAAQ,MAAgC;AAE9D,UADyBf,IAAW,IAAI,IAAIC,IAAa,KACjCI;AACtB,eAAOd,EAAM,GAAGc,CAAM;AAGxB,YAAMW,IAAmB,KAAK,IAAIV,IAAaN,GAAUC,CAAU,GAC7DgB,IAAoB,KAAK,IAAIX,IAAaN,GAAUK,IAASJ,CAAU,GAEvEiB,IAAqBF,IAAmBf,IAAa,GACrDkB,IAAsBF,IAAoBZ,KAAUJ,IAAa;AAEvE,UAAI,CAACiB,KAAsBC,GAAqB;AAC9C,cAAMC,IAAgBpB,IAAW,IAAIC,IAAa;AAClD,eAAO,CAAC,GAAGV,EAAM,GAAG6B,CAAa,GAAGvB,GAAM,GAAGN,EAAMc,KAAUJ,IAAa,IAAII,CAAM,CAAC;AAAA,MACvF;AAEA,UAAIa,KAAsB,CAACC,GAAqB;AAC9C,cAAME,IAAiBpB,IAAa,IAAI,IAAID;AAC5C,eAAO,CAAC,GAAGT,EAAM,GAAGU,CAAU,GAAGJ,GAAM,GAAGN,EAAMc,IAASgB,GAAgBhB,CAAM,CAAC;AAAA,MAClF;AAEA,aAAO;AAAA,QACL,GAAGd,EAAM,GAAGU,CAAU;AAAA,QACtBJ;AAAA,QACA,GAAGN,EAAMyB,GAAkBC,CAAiB;AAAA,QAC5CpB;AAAA,QACA,GAAGN,EAAMc,IAASJ,IAAa,GAAGI,CAAM;AAAA,MAAA;AAAA,IAE5C,GAAG,CAACA,GAAQL,GAAUC,GAAYK,CAAU,CAAC;AAAA,IAI3C,QAAQA;AAAA,IACR,SAAAG;AAAA,IACA,MAAAE;AAAA,IACA,UAAAC;AAAA,IACA,OAAAC;AAAA,IACA,MAAAC;AAAA,EAAA;AAEJ;"}
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  import { jsxs as n, jsx as e } from "react/jsx-runtime";
3
- import { RadioGroup as r, ark as p } from "@ark-ui/react";
3
+ import { ark as p, RadioGroup as r } from "@ark-ui/react";
4
4
  import { radioCardGroup as s } from "@stokelp/styled-system/recipes";
5
5
  import { createStyleContext as C } from "../../utils/slots.js";
6
6
  import { forwardRef as c } from "react";
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import { jsxs as C, jsx as i } from "react/jsx-runtime";
3
- import { Switch as t, ark as f } from "@ark-ui/react";
3
+ import { ark as f, Switch as t } from "@ark-ui/react";
4
4
  import { cx as S, css as P } from "@stokelp/styled-system/css";
5
- import { splitCssProps as u, styled as o } from "@stokelp/styled-system/jsx";
5
+ import { styled as o, splitCssProps as u } from "@stokelp/styled-system/jsx";
6
6
  import { switchCard as c } from "@stokelp/styled-system/recipes";
7
7
  import { forwardRef as x } from "react";
8
8
  import { createStyleContext as N } from "../../utils/slots.js";
@@ -2,7 +2,7 @@
2
2
  import { jsx as e, jsxs as d } from "react/jsx-runtime";
3
3
  import { forwardRef as p, useRef as T, useLayoutEffect as m } from "react";
4
4
  import { styled as r } from "@stokelp/styled-system/jsx";
5
- import { tableContainer as w, tableGroupTitle as y, tableEmptyRow as R, table as v } from "@stokelp/styled-system/recipes";
5
+ import { tableContainer as w, tableEmptyRow as y, tableGroupTitle as R, table as v } from "@stokelp/styled-system/recipes";
6
6
  import { createStyleContext as S } from "../../utils/slots.js";
7
7
  import { TableProvider as C, useTable as _ } from "./TableProvider.js";
8
8
  const { withProvider: g, withContext: i } = S(v), U = r("div", w), x = g(r("table"), "root"), E = p(
@@ -79,7 +79,7 @@ const j = i(r("thead"), "thead"), h = i(r("div"), "sortIndicatorRoot"), s = i(r(
79
79
  }
80
80
  );
81
81
  O.displayName = "Th";
82
- const z = i(r("td"), "td"), P = r("td", y), k = p((n, o) => {
82
+ const z = i(r("td"), "td"), P = r("td", R), k = p((n, o) => {
83
83
  const t = T(null);
84
84
  return m(() => {
85
85
  if (t.current) {
@@ -89,7 +89,7 @@ const z = i(r("td"), "td"), P = r("td", y), k = p((n, o) => {
89
89
  }, []), /* @__PURE__ */ e("tr", { ref: o, className: "table_tr__group__title", children: /* @__PURE__ */ e(P, { ref: t, ...n }) });
90
90
  });
91
91
  k.displayName = "TableGroupTitle";
92
- const D = r("td", R), I = p((n, o) => {
92
+ const D = r("td", y), I = p((n, o) => {
93
93
  const t = T(null);
94
94
  return m(() => {
95
95
  if (t.current) {
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  import { jsx as u } from "react/jsx-runtime";
3
- import { useReducer as i, useEffect as l, createContext as a, useContext as p } from "react";
3
+ import { useReducer as i, useEffect as l, useContext as a, createContext as p } from "react";
4
4
  const d = (e, r) => {
5
5
  switch (r.type) {
6
6
  case "CLEAR_SORT_DESCRIPTOR":
@@ -16,8 +16,8 @@ const d = (e, r) => {
16
16
  default:
17
17
  return e;
18
18
  }
19
- }, o = a(void 0), D = () => {
20
- const e = p(o);
19
+ }, o = p(void 0), D = () => {
20
+ const e = a(o);
21
21
  if (!e)
22
22
  throw new Error("useTable must be used within a <TableProvider/>");
23
23
  return e;
package/dist/index.cjs CHANGED
@@ -1,2 +1,2 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("@ark-ui/react"),t=require("react-phone-number-input");;/* empty css */const C=require("./preset.cjs"),a=require("./components/accordion/Accordion.cjs"),T=require("./components/button/Button.cjs"),d=require("./components/checkbox/Checkbox.cjs"),e=require("./components/drawer/Drawer.cjs"),m=require("./components/form/FormControl.cjs"),h=require("./components/form/FormLabel.cjs"),q=require("./components/form/FormHelperText.cjs"),P=require("./components/heading/Heading.cjs"),I=require("./components/switch/Switch.cjs"),A=require("./components/text/Text.cjs"),y=require("./components/textarea/Textarea.cjs"),i=require("./components/tabs/Tabs.cjs"),D=require("./components/select/Select.cjs"),x=require("./components/select-language/SelectLanguage.cjs"),B=require("./components/input/Input.cjs"),u=require("./components/input/HighlightedInput.cjs"),v=require("./components/input/InputAddon.cjs"),w=require("./components/input/InputGroup.cjs"),S=require("./components/input/PhoneNumberInput.cjs"),G=require("./components/box/Box.cjs"),f=require("./components/date-picker/DatePicker.cjs"),L=require("./components/tag/Tag.cjs"),s=require("./components/radio-button-group/RadioButtonGroup.cjs"),l=require("./components/radio-group/RadioGroup.cjs"),c=require("./components/chip/Chip.cjs"),p=require("./components/action-card/ActionCard.cjs"),R=require("./components/icon-button/IconButton.cjs"),N=require("./components/tooltip/Tooltip.cjs"),F=require("./components/alert/Alert.cjs"),r=require("./components/table/Table.cjs"),g=require("./components/breadcrumb/Breadcrumb.cjs"),o=require("./components/popover/Popover.cjs"),j=require("./components/pagination/Pagination.cjs"),O=require("./components/illustration/Illustration.cjs"),H=require("./components/button-filter/ButtonFilter.cjs"),k=require("./components/status-tag-select/StatusTagSelect.cjs"),M=require("./components/switch-card/namespace.cjs"),$=require("./components/radio-card-group/namespace.cjs"),E=require("./components/checkbox-card/namespace.cjs"),V=require("./components/combobox/Combobox.cjs"),z=require("./components/icon/Icon.cjs"),J=require("./components/collapsible/styled.cjs"),K=require("./components/dialog/styled.cjs"),Q=require("./components/avatar/styled.cjs"),U=require("./components/menu/Menu.cjs"),b=require("./components/flag/styled.cjs"),W=require("./components/chat/Chat.cjs"),X=require("./components/chat/ChatMessage.cjs"),Y=require("./components/chat/ChatDocumentMessage.cjs"),Z=require("./components/chat/ChatProfileAvatar.cjs"),_=require("./components/chat/ChatTextInput.cjs"),ee=require("./components/app/price-tag/PriceTag.cjs"),re=require("./components/app/product-card-catalog/styled.cjs"),te=require("./components/app/navigation/AppNavigation.cjs"),oe=require("./components/app/navigation/language-select/AppNavigationLanguageSelect.cjs");Object.defineProperty(exports,"createListCollection",{enumerable:!0,get:()=>n.createListCollection});Object.defineProperty(exports,"createToaster",{enumerable:!0,get:()=>n.createToaster});Object.defineProperty(exports,"parseColor",{enumerable:!0,get:()=>n.parseColor});Object.defineProperty(exports,"parseDate",{enumerable:!0,get:()=>n.parseDate});Object.defineProperty(exports,"useAccordion",{enumerable:!0,get:()=>n.useAccordion});Object.defineProperty(exports,"formatPhoneNumber",{enumerable:!0,get:()=>t.formatPhoneNumber});Object.defineProperty(exports,"formatPhoneNumberIntl",{enumerable:!0,get:()=>t.formatPhoneNumberIntl});Object.defineProperty(exports,"getCountries",{enumerable:!0,get:()=>t.getCountries});Object.defineProperty(exports,"getCountryCallingCode",{enumerable:!0,get:()=>t.getCountryCallingCode});Object.defineProperty(exports,"isPossiblePhoneNumber",{enumerable:!0,get:()=>t.isPossiblePhoneNumber});Object.defineProperty(exports,"isSupportedCountry",{enumerable:!0,get:()=>t.isSupportedCountry});Object.defineProperty(exports,"isValidPhoneNumber",{enumerable:!0,get:()=>t.isValidPhoneNumber});Object.defineProperty(exports,"parsePhoneNumber",{enumerable:!0,get:()=>t.parsePhoneNumber});exports.preset=C.preset;exports.Accordion=a.Accordion;exports.AccordionItem=a.AccordionItem;exports.AccordionItemContent=a.AccordionItemContent;exports.AccordionItemIndicator=a.AccordionItemIndicator;exports.AccordionItemTrigger=a.AccordionItemTrigger;exports.Button=T.Button;exports.Checkbox=d.Checkbox;exports.CheckboxGroup=d.CheckboxGroup;exports.Drawer=e.Drawer;exports.DrawerBody=e.DrawerBody;exports.DrawerCloseTrigger=e.DrawerCloseTrigger;exports.DrawerContent=e.DrawerContent;exports.DrawerContext=e.DrawerContext;exports.DrawerFooter=e.DrawerFooter;exports.DrawerHeader=e.DrawerHeader;exports.DrawerTitle=e.DrawerTitle;exports.DrawerTrigger=e.DrawerTrigger;exports.FormControl=m.FormControl;exports.FormLabel=h.FormLabel;exports.FormHelperText=q.FormHelperText;exports.Heading=P.Heading;exports.Switch=I.Switch;exports.Text=A.Text;exports.Textarea=y.Textarea;exports.Tabs=i.Tabs;exports.TabsChip=i.TabsChip;exports.TabsContent=i.TabsContent;exports.TabsList=i.TabsList;exports.TabsTrigger=i.TabsTrigger;exports.Select=D.Select;exports.SelectLanguage=x.SelectLanguage;exports.Input=B.Input;exports.Highlight=u.Highlight;exports.HighlightedInput=u.HighlightedInput;exports.InputSlot=u.InputSlot;exports.Renderer=u.Renderer;exports.Root=u.Root;exports.InputAddon=v.InputAddon;exports.InputGroup=w.InputGroup;exports.PhoneNumberInput=S.PhoneNumberInput;exports.Box=G.Box;exports.DatePicker=f.DatePicker;exports.Tag=L.Tag;exports.RadioButtonGroup=s.RadioButtonGroup;exports.RadioButtonGroupItem=s.RadioButtonGroupItem;exports.RadioButtonGroupLabel=s.RadioButtonGroupLabel;exports.RadioGroup=l.RadioGroup;exports.RadioGroupItem=l.RadioGroupItem;exports.RadioGroupLabel=l.RadioGroupLabel;exports.Chip=c.Chip;exports.ChipAvatar=c.ChipAvatar;exports.ChipClearTrigger=c.ChipClearTrigger;exports.ChipLabel=c.ChipLabel;exports.ActionCard=p.ActionCard;exports.ActionCardDescription=p.ActionCardDescription;exports.ActionCardTitle=p.ActionCardTitle;exports.IconButton=R.IconButton;exports.Tooltip=N.Tooltip;exports.Alert=F.Alert;exports.Table=r.Table;exports.TableContainer=r.TableContainer;exports.TableEmptyRow=r.TableEmptyRow;exports.TableGroupTitle=r.TableGroupTitle;exports.Tbody=r.Tbody;exports.Td=r.Td;exports.Th=r.Th;exports.Thead=r.Thead;exports.Tr=r.Tr;exports.Breadcrumb=g.Breadcrumb;exports.BreadcrumbItem=g.BreadcrumbItem;exports.BreadcrumbLink=g.BreadcrumbLink;exports.Popover=o.Popover;exports.PopoverAnchor=o.PopoverAnchor;exports.PopoverCloseTrigger=o.PopoverCloseTrigger;exports.PopoverContent=o.PopoverContent;exports.PopoverContext=o.PopoverContext;exports.PopoverTrigger=o.PopoverTrigger;exports.Pagination=j.Pagination;exports.Illustration=O.Illustration;exports.ButtonFilter=H.ButtonFilter;exports.StatusTagSelect=k.StatusTagSelect;exports.SwitchCard=M;exports.RadioCardGroup=$;exports.CheckboxCard=E;exports.Combobox=V.Combobox;exports.Icon=z.Icon;exports.Collapsible=J;exports.Dialog=K;exports.Avatar=Q;exports.Menu=U;exports.Flag=b.Flag;exports.FlagCountryCodes=b.FlagCountryCodes;exports.Chat=W;exports.ChatMessage=X.ChatMessage;exports.ChatDocumentMessage=Y.ChatDocumentMessage;exports.ChatProfileAvatar=Z.ChatProfileAvatar;exports.ChatTextInput=_.ChatTextInput;exports.PriceTag=ee.PriceTag;exports.ProductCardCatalog=re;exports.AppNavigation=te;exports.AppNavigationLanguageSelect=oe.AppNavigationLanguageSelect;
1
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("@ark-ui/react"),t=require("react-phone-number-input");;/* empty css */const C=require("./preset.cjs"),a=require("./components/accordion/Accordion.cjs"),s=require("./components/action-card/ActionCard.cjs"),T=require("./components/alert/Alert.cjs"),m=require("./components/app/navigation/AppNavigation.cjs"),h=require("./components/app/navigation/language-select/AppNavigationLanguageSelect.cjs"),q=require("./components/avatar/styled.cjs"),P=require("./components/box/Box.cjs"),l=require("./components/breadcrumb/Breadcrumb.cjs"),I=require("./components/button/Button.cjs"),A=require("./components/button-filter/ButtonFilter.cjs"),y=require("./components/chat/Chat.cjs"),D=require("./components/chat/ChatDocumentMessage.cjs"),x=require("./components/chat/ChatMessage.cjs"),B=require("./components/chat/ChatProfileAvatar.cjs"),v=require("./components/chat/ChatTextInput.cjs"),d=require("./components/checkbox/Checkbox.cjs"),w=require("./components/checkbox-card/namespace.cjs"),c=require("./components/chip/Chip.cjs"),S=require("./components/collapsible/styled.cjs"),G=require("./components/combobox/Combobox.cjs"),f=require("./components/date-picker/DatePicker.cjs"),L=require("./components/dialog/styled.cjs"),e=require("./components/drawer/Drawer.cjs"),b=require("./components/flag/styled.cjs"),R=require("./components/form/FormControl.cjs"),N=require("./components/form/FormHelperText.cjs"),F=require("./components/form/FormLabel.cjs"),j=require("./components/heading/Heading.cjs"),i=require("./components/input/HighlightedInput.cjs"),O=require("./components/icon/Icon.cjs"),H=require("./components/icon-button/IconButton.cjs"),k=require("./components/illustration/Illustration.cjs"),M=require("./components/input/Input.cjs"),$=require("./components/input/InputAddon.cjs"),E=require("./components/input/InputGroup.cjs"),V=require("./components/menu/Menu.cjs"),z=require("./components/pagination/Pagination.cjs"),J=require("./components/input/PhoneNumberInput.cjs"),o=require("./components/popover/Popover.cjs"),K=require("./components/app/price-tag/PriceTag.cjs"),Q=require("./components/app/product-card-catalog/styled.cjs"),p=require("./components/radio-button-group/RadioButtonGroup.cjs"),U=require("./components/radio-card-group/namespace.cjs"),g=require("./components/radio-group/RadioGroup.cjs"),W=require("./components/select/Select.cjs"),X=require("./components/select-language/SelectLanguage.cjs"),Y=require("./components/status-tag-select/StatusTagSelect.cjs"),Z=require("./components/switch/Switch.cjs"),_=require("./components/switch-card/namespace.cjs"),r=require("./components/table/Table.cjs"),u=require("./components/tabs/Tabs.cjs"),ee=require("./components/tag/Tag.cjs"),re=require("./components/text/Text.cjs"),te=require("./components/textarea/Textarea.cjs"),oe=require("./components/tooltip/Tooltip.cjs");Object.defineProperty(exports,"createListCollection",{enumerable:!0,get:()=>n.createListCollection});Object.defineProperty(exports,"createToaster",{enumerable:!0,get:()=>n.createToaster});Object.defineProperty(exports,"parseColor",{enumerable:!0,get:()=>n.parseColor});Object.defineProperty(exports,"parseDate",{enumerable:!0,get:()=>n.parseDate});Object.defineProperty(exports,"useAccordion",{enumerable:!0,get:()=>n.useAccordion});Object.defineProperty(exports,"formatPhoneNumber",{enumerable:!0,get:()=>t.formatPhoneNumber});Object.defineProperty(exports,"formatPhoneNumberIntl",{enumerable:!0,get:()=>t.formatPhoneNumberIntl});Object.defineProperty(exports,"getCountries",{enumerable:!0,get:()=>t.getCountries});Object.defineProperty(exports,"getCountryCallingCode",{enumerable:!0,get:()=>t.getCountryCallingCode});Object.defineProperty(exports,"isPossiblePhoneNumber",{enumerable:!0,get:()=>t.isPossiblePhoneNumber});Object.defineProperty(exports,"isSupportedCountry",{enumerable:!0,get:()=>t.isSupportedCountry});Object.defineProperty(exports,"isValidPhoneNumber",{enumerable:!0,get:()=>t.isValidPhoneNumber});Object.defineProperty(exports,"parsePhoneNumber",{enumerable:!0,get:()=>t.parsePhoneNumber});exports.preset=C.preset;exports.Accordion=a.Accordion;exports.AccordionItem=a.AccordionItem;exports.AccordionItemContent=a.AccordionItemContent;exports.AccordionItemIndicator=a.AccordionItemIndicator;exports.AccordionItemTrigger=a.AccordionItemTrigger;exports.ActionCard=s.ActionCard;exports.ActionCardDescription=s.ActionCardDescription;exports.ActionCardTitle=s.ActionCardTitle;exports.Alert=T.Alert;exports.AppNavigation=m;exports.AppNavigationLanguageSelect=h.AppNavigationLanguageSelect;exports.Avatar=q;exports.Box=P.Box;exports.Breadcrumb=l.Breadcrumb;exports.BreadcrumbItem=l.BreadcrumbItem;exports.BreadcrumbLink=l.BreadcrumbLink;exports.Button=I.Button;exports.ButtonFilter=A.ButtonFilter;exports.Chat=y;exports.ChatDocumentMessage=D.ChatDocumentMessage;exports.ChatMessage=x.ChatMessage;exports.ChatProfileAvatar=B.ChatProfileAvatar;exports.ChatTextInput=v.ChatTextInput;exports.Checkbox=d.Checkbox;exports.CheckboxGroup=d.CheckboxGroup;exports.CheckboxCard=w;exports.Chip=c.Chip;exports.ChipAvatar=c.ChipAvatar;exports.ChipClearTrigger=c.ChipClearTrigger;exports.ChipLabel=c.ChipLabel;exports.Collapsible=S;exports.Combobox=G.Combobox;exports.DatePicker=f.DatePicker;exports.Dialog=L;exports.Drawer=e.Drawer;exports.DrawerBody=e.DrawerBody;exports.DrawerCloseTrigger=e.DrawerCloseTrigger;exports.DrawerContent=e.DrawerContent;exports.DrawerContext=e.DrawerContext;exports.DrawerFooter=e.DrawerFooter;exports.DrawerHeader=e.DrawerHeader;exports.DrawerTitle=e.DrawerTitle;exports.DrawerTrigger=e.DrawerTrigger;exports.Flag=b.Flag;exports.FlagCountryCodes=b.FlagCountryCodes;exports.FormControl=R.FormControl;exports.FormHelperText=N.FormHelperText;exports.FormLabel=F.FormLabel;exports.Heading=j.Heading;exports.Highlight=i.Highlight;exports.HighlightedInput=i.HighlightedInput;exports.InputSlot=i.InputSlot;exports.Renderer=i.Renderer;exports.Root=i.Root;exports.Icon=O.Icon;exports.IconButton=H.IconButton;exports.Illustration=k.Illustration;exports.Input=M.Input;exports.InputAddon=$.InputAddon;exports.InputGroup=E.InputGroup;exports.Menu=V;exports.Pagination=z.Pagination;exports.PhoneNumberInput=J.PhoneNumberInput;exports.Popover=o.Popover;exports.PopoverAnchor=o.PopoverAnchor;exports.PopoverCloseTrigger=o.PopoverCloseTrigger;exports.PopoverContent=o.PopoverContent;exports.PopoverContext=o.PopoverContext;exports.PopoverTrigger=o.PopoverTrigger;exports.PriceTag=K.PriceTag;exports.ProductCardCatalog=Q;exports.RadioButtonGroup=p.RadioButtonGroup;exports.RadioButtonGroupItem=p.RadioButtonGroupItem;exports.RadioButtonGroupLabel=p.RadioButtonGroupLabel;exports.RadioCardGroup=U;exports.RadioGroup=g.RadioGroup;exports.RadioGroupItem=g.RadioGroupItem;exports.RadioGroupLabel=g.RadioGroupLabel;exports.Select=W.Select;exports.SelectLanguage=X.SelectLanguage;exports.StatusTagSelect=Y.StatusTagSelect;exports.Switch=Z.Switch;exports.SwitchCard=_;exports.Table=r.Table;exports.TableContainer=r.TableContainer;exports.TableEmptyRow=r.TableEmptyRow;exports.TableGroupTitle=r.TableGroupTitle;exports.Tbody=r.Tbody;exports.Td=r.Td;exports.Th=r.Th;exports.Thead=r.Thead;exports.Tr=r.Tr;exports.Tabs=u.Tabs;exports.TabsChip=u.TabsChip;exports.TabsContent=u.TabsContent;exports.TabsList=u.TabsList;exports.TabsTrigger=u.TabsTrigger;exports.Tag=ee.Tag;exports.Text=re.Text;exports.Textarea=te.Textarea;exports.Tooltip=oe.Tooltip;
2
2
  //# sourceMappingURL=index.cjs.map
package/dist/index.js CHANGED
@@ -4,162 +4,162 @@ import { formatPhoneNumber as b, formatPhoneNumberIntl as h, getCountries as I,
4
4
  /* empty css */
5
5
  import { preset as y } from "./preset.js";
6
6
  import { Accordion as R, AccordionItem as L, AccordionItemContent as S, AccordionItemIndicator as N, AccordionItemTrigger as F } from "./components/accordion/Accordion.js";
7
- import { Button as H } from "./components/button/Button.js";
8
- import { Checkbox as M, CheckboxGroup as E } from "./components/checkbox/Checkbox.js";
9
- import { Drawer as j, DrawerBody as q, DrawerCloseTrigger as z, DrawerContent as J, DrawerContext as K, DrawerFooter as O, DrawerHeader as Q, DrawerTitle as U, DrawerTrigger as W } from "./components/drawer/Drawer.js";
10
- import { FormControl as Y } from "./components/form/FormControl.js";
11
- import { FormLabel as _ } from "./components/form/FormLabel.js";
12
- import { FormHelperText as ro } from "./components/form/FormHelperText.js";
13
- import { Heading as to } from "./components/heading/Heading.js";
14
- import { Switch as po } from "./components/switch/Switch.js";
15
- import { Text as io } from "./components/text/Text.js";
16
- import { Textarea as xo } from "./components/textarea/Textarea.js";
17
- import { Tabs as so, TabsChip as lo, TabsContent as uo, TabsList as co, TabsTrigger as Co } from "./components/tabs/Tabs.js";
18
- import { Select as To } from "./components/select/Select.js";
19
- import { SelectLanguage as ho } from "./components/select-language/SelectLanguage.js";
20
- import { Input as Po } from "./components/input/Input.js";
21
- import { Highlight as Do, HighlightedInput as wo, InputSlot as vo, Renderer as Bo, Root as yo } from "./components/input/HighlightedInput.js";
22
- import { InputAddon as Ro } from "./components/input/InputAddon.js";
23
- import { InputGroup as So } from "./components/input/InputGroup.js";
24
- import { PhoneNumberInput as Fo } from "./components/input/PhoneNumberInput.js";
25
- import { Box as Ho } from "./components/box/Box.js";
26
- import { DatePicker as Mo } from "./components/date-picker/DatePicker.js";
27
- import { Tag as Vo } from "./components/tag/Tag.js";
28
- import { RadioButtonGroup as qo, RadioButtonGroupItem as zo, RadioButtonGroupLabel as Jo } from "./components/radio-button-group/RadioButtonGroup.js";
29
- import { RadioGroup as Oo, RadioGroupItem as Qo, RadioGroupLabel as Uo } from "./components/radio-group/RadioGroup.js";
30
- import { Chip as Xo, ChipAvatar as Yo, ChipClearTrigger as Zo, ChipLabel as _o } from "./components/chip/Chip.js";
31
- import { ActionCard as rr, ActionCardDescription as er, ActionCardTitle as tr } from "./components/action-card/ActionCard.js";
32
- import { IconButton as pr } from "./components/icon-button/IconButton.js";
33
- import { Tooltip as ir } from "./components/tooltip/Tooltip.js";
34
- import { Alert as xr } from "./components/alert/Alert.js";
35
- import { Table as sr, TableContainer as lr, TableEmptyRow as ur, TableGroupTitle as cr, Tbody as dr, Td as Cr, Th as gr, Thead as Tr, Tr as br } from "./components/table/Table.js";
36
- import { Breadcrumb as Ir, BreadcrumbItem as Pr, BreadcrumbLink as Ar } from "./components/breadcrumb/Breadcrumb.js";
37
- import { Popover as wr, PopoverAnchor as vr, PopoverCloseTrigger as Br, PopoverContent as yr, PopoverContext as Gr, PopoverTrigger as Rr } from "./components/popover/Popover.js";
38
- import { Pagination as Sr } from "./components/pagination/Pagination.js";
39
- import { Illustration as Fr } from "./components/illustration/Illustration.js";
40
- import { ButtonFilter as Hr } from "./components/button-filter/ButtonFilter.js";
41
- import { StatusTagSelect as Mr } from "./components/status-tag-select/StatusTagSelect.js";
42
- import * as r from "./components/switch-card/namespace.js";
43
- import * as e from "./components/radio-card-group/namespace.js";
44
- import * as t from "./components/checkbox-card/namespace.js";
45
- import { Combobox as Vr } from "./components/combobox/Combobox.js";
46
- import { Icon as qr } from "./components/icon/Icon.js";
47
- import * as a from "./components/collapsible/styled.js";
48
- import * as p from "./components/dialog/styled.js";
49
- import * as m from "./components/avatar/styled.js";
7
+ import { ActionCard as H, ActionCardDescription as $, ActionCardTitle as M } from "./components/action-card/ActionCard.js";
8
+ import { Alert as V } from "./components/alert/Alert.js";
9
+ import * as r from "./components/app/navigation/AppNavigation.js";
10
+ import { AppNavigationLanguageSelect as q } from "./components/app/navigation/language-select/AppNavigationLanguageSelect.js";
11
+ import * as e from "./components/avatar/styled.js";
12
+ import { Box as J } from "./components/box/Box.js";
13
+ import { Breadcrumb as O, BreadcrumbItem as Q, BreadcrumbLink as U } from "./components/breadcrumb/Breadcrumb.js";
14
+ import { Button as X } from "./components/button/Button.js";
15
+ import { ButtonFilter as Z } from "./components/button-filter/ButtonFilter.js";
16
+ import * as t from "./components/chat/Chat.js";
17
+ import { ChatDocumentMessage as oo } from "./components/chat/ChatDocumentMessage.js";
18
+ import { ChatMessage as eo } from "./components/chat/ChatMessage.js";
19
+ import { ChatProfileAvatar as ao } from "./components/chat/ChatProfileAvatar.js";
20
+ import { ChatTextInput as mo } from "./components/chat/ChatTextInput.js";
21
+ import { Checkbox as no, CheckboxGroup as xo } from "./components/checkbox/Checkbox.js";
22
+ import * as a from "./components/checkbox-card/namespace.js";
23
+ import { Chip as so, ChipAvatar as lo, ChipClearTrigger as uo, ChipLabel as co } from "./components/chip/Chip.js";
24
+ import * as p from "./components/collapsible/styled.js";
25
+ import { Combobox as go } from "./components/combobox/Combobox.js";
26
+ import { DatePicker as bo } from "./components/date-picker/DatePicker.js";
27
+ import * as m from "./components/dialog/styled.js";
28
+ import { Drawer as Io, DrawerBody as Po, DrawerCloseTrigger as Ao, DrawerContent as Do, DrawerContext as wo, DrawerFooter as vo, DrawerHeader as Bo, DrawerTitle as yo, DrawerTrigger as Go } from "./components/drawer/Drawer.js";
29
+ import { Flag as Lo, FlagCountryCodes as So } from "./components/flag/styled.js";
30
+ import { FormControl as Fo } from "./components/form/FormControl.js";
31
+ import { FormHelperText as Ho } from "./components/form/FormHelperText.js";
32
+ import { FormLabel as Mo } from "./components/form/FormLabel.js";
33
+ import { Heading as Vo } from "./components/heading/Heading.js";
34
+ import { Highlight as qo, HighlightedInput as zo, InputSlot as Jo, Renderer as Ko, Root as Oo } from "./components/input/HighlightedInput.js";
35
+ import { Icon as Uo } from "./components/icon/Icon.js";
36
+ import { IconButton as Xo } from "./components/icon-button/IconButton.js";
37
+ import { Illustration as Zo } from "./components/illustration/Illustration.js";
38
+ import { Input as or } from "./components/input/Input.js";
39
+ import { InputAddon as er } from "./components/input/InputAddon.js";
40
+ import { InputGroup as ar } from "./components/input/InputGroup.js";
50
41
  import * as i from "./components/menu/Menu.js";
51
- import { Flag as Jr, FlagCountryCodes as Kr } from "./components/flag/styled.js";
52
- import * as n from "./components/chat/Chat.js";
53
- import { ChatMessage as Qr } from "./components/chat/ChatMessage.js";
54
- import { ChatDocumentMessage as Wr } from "./components/chat/ChatDocumentMessage.js";
55
- import { ChatProfileAvatar as Yr } from "./components/chat/ChatProfileAvatar.js";
56
- import { ChatTextInput as _r } from "./components/chat/ChatTextInput.js";
57
- import { PriceTag as re } from "./components/app/price-tag/PriceTag.js";
58
- import * as x from "./components/app/product-card-catalog/styled.js";
59
- import * as f from "./components/app/navigation/AppNavigation.js";
60
- import { AppNavigationLanguageSelect as te } from "./components/app/navigation/language-select/AppNavigationLanguageSelect.js";
42
+ import { Pagination as mr } from "./components/pagination/Pagination.js";
43
+ import { PhoneNumberInput as nr } from "./components/input/PhoneNumberInput.js";
44
+ import { Popover as fr, PopoverAnchor as sr, PopoverCloseTrigger as lr, PopoverContent as ur, PopoverContext as cr, PopoverTrigger as dr } from "./components/popover/Popover.js";
45
+ import { PriceTag as gr } from "./components/app/price-tag/PriceTag.js";
46
+ import * as n from "./components/app/product-card-catalog/styled.js";
47
+ import { RadioButtonGroup as br, RadioButtonGroupItem as hr, RadioButtonGroupLabel as Ir } from "./components/radio-button-group/RadioButtonGroup.js";
48
+ import * as x from "./components/radio-card-group/namespace.js";
49
+ import { RadioGroup as Ar, RadioGroupItem as Dr, RadioGroupLabel as wr } from "./components/radio-group/RadioGroup.js";
50
+ import { Select as Br } from "./components/select/Select.js";
51
+ import { SelectLanguage as Gr } from "./components/select-language/SelectLanguage.js";
52
+ import { StatusTagSelect as Lr } from "./components/status-tag-select/StatusTagSelect.js";
53
+ import { Switch as Nr } from "./components/switch/Switch.js";
54
+ import * as f from "./components/switch-card/namespace.js";
55
+ import { Table as kr, TableContainer as Hr, TableEmptyRow as $r, TableGroupTitle as Mr, Tbody as Er, Td as Vr, Th as jr, Thead as qr, Tr as zr } from "./components/table/Table.js";
56
+ import { Tabs as Kr, TabsChip as Or, TabsContent as Qr, TabsList as Ur, TabsTrigger as Wr } from "./components/tabs/Tabs.js";
57
+ import { Tag as Yr } from "./components/tag/Tag.js";
58
+ import { Text as _r } from "./components/text/Text.js";
59
+ import { Textarea as re } from "./components/textarea/Textarea.js";
60
+ import { Tooltip as te } from "./components/tooltip/Tooltip.js";
61
61
  export {
62
62
  R as Accordion,
63
63
  L as AccordionItem,
64
64
  S as AccordionItemContent,
65
65
  N as AccordionItemIndicator,
66
66
  F as AccordionItemTrigger,
67
- rr as ActionCard,
68
- er as ActionCardDescription,
69
- tr as ActionCardTitle,
70
- xr as Alert,
71
- f as AppNavigation,
72
- te as AppNavigationLanguageSelect,
73
- m as Avatar,
74
- Ho as Box,
75
- Ir as Breadcrumb,
76
- Pr as BreadcrumbItem,
77
- Ar as BreadcrumbLink,
78
- H as Button,
79
- Hr as ButtonFilter,
80
- n as Chat,
81
- Wr as ChatDocumentMessage,
82
- Qr as ChatMessage,
83
- Yr as ChatProfileAvatar,
84
- _r as ChatTextInput,
85
- M as Checkbox,
86
- t as CheckboxCard,
87
- E as CheckboxGroup,
88
- Xo as Chip,
89
- Yo as ChipAvatar,
90
- Zo as ChipClearTrigger,
91
- _o as ChipLabel,
92
- a as Collapsible,
93
- Vr as Combobox,
94
- Mo as DatePicker,
95
- p as Dialog,
96
- j as Drawer,
97
- q as DrawerBody,
98
- z as DrawerCloseTrigger,
99
- J as DrawerContent,
100
- K as DrawerContext,
101
- O as DrawerFooter,
102
- Q as DrawerHeader,
103
- U as DrawerTitle,
104
- W as DrawerTrigger,
105
- Jr as Flag,
106
- Kr as FlagCountryCodes,
107
- Y as FormControl,
108
- ro as FormHelperText,
109
- _ as FormLabel,
110
- to as Heading,
111
- Do as Highlight,
112
- wo as HighlightedInput,
113
- qr as Icon,
114
- pr as IconButton,
115
- Fr as Illustration,
116
- Po as Input,
117
- Ro as InputAddon,
118
- So as InputGroup,
119
- vo as InputSlot,
67
+ H as ActionCard,
68
+ $ as ActionCardDescription,
69
+ M as ActionCardTitle,
70
+ V as Alert,
71
+ r as AppNavigation,
72
+ q as AppNavigationLanguageSelect,
73
+ e as Avatar,
74
+ J as Box,
75
+ O as Breadcrumb,
76
+ Q as BreadcrumbItem,
77
+ U as BreadcrumbLink,
78
+ X as Button,
79
+ Z as ButtonFilter,
80
+ t as Chat,
81
+ oo as ChatDocumentMessage,
82
+ eo as ChatMessage,
83
+ ao as ChatProfileAvatar,
84
+ mo as ChatTextInput,
85
+ no as Checkbox,
86
+ a as CheckboxCard,
87
+ xo as CheckboxGroup,
88
+ so as Chip,
89
+ lo as ChipAvatar,
90
+ uo as ChipClearTrigger,
91
+ co as ChipLabel,
92
+ p as Collapsible,
93
+ go as Combobox,
94
+ bo as DatePicker,
95
+ m as Dialog,
96
+ Io as Drawer,
97
+ Po as DrawerBody,
98
+ Ao as DrawerCloseTrigger,
99
+ Do as DrawerContent,
100
+ wo as DrawerContext,
101
+ vo as DrawerFooter,
102
+ Bo as DrawerHeader,
103
+ yo as DrawerTitle,
104
+ Go as DrawerTrigger,
105
+ Lo as Flag,
106
+ So as FlagCountryCodes,
107
+ Fo as FormControl,
108
+ Ho as FormHelperText,
109
+ Mo as FormLabel,
110
+ Vo as Heading,
111
+ qo as Highlight,
112
+ zo as HighlightedInput,
113
+ Uo as Icon,
114
+ Xo as IconButton,
115
+ Zo as Illustration,
116
+ or as Input,
117
+ er as InputAddon,
118
+ ar as InputGroup,
119
+ Jo as InputSlot,
120
120
  i as Menu,
121
- Sr as Pagination,
122
- Fo as PhoneNumberInput,
123
- wr as Popover,
124
- vr as PopoverAnchor,
125
- Br as PopoverCloseTrigger,
126
- yr as PopoverContent,
127
- Gr as PopoverContext,
128
- Rr as PopoverTrigger,
129
- re as PriceTag,
130
- x as ProductCardCatalog,
131
- qo as RadioButtonGroup,
132
- zo as RadioButtonGroupItem,
133
- Jo as RadioButtonGroupLabel,
134
- e as RadioCardGroup,
135
- Oo as RadioGroup,
136
- Qo as RadioGroupItem,
137
- Uo as RadioGroupLabel,
138
- Bo as Renderer,
139
- yo as Root,
140
- To as Select,
141
- ho as SelectLanguage,
142
- Mr as StatusTagSelect,
143
- po as Switch,
144
- r as SwitchCard,
145
- sr as Table,
146
- lr as TableContainer,
147
- ur as TableEmptyRow,
148
- cr as TableGroupTitle,
149
- so as Tabs,
150
- lo as TabsChip,
151
- uo as TabsContent,
152
- co as TabsList,
153
- Co as TabsTrigger,
154
- Vo as Tag,
155
- dr as Tbody,
156
- Cr as Td,
157
- io as Text,
158
- xo as Textarea,
159
- gr as Th,
160
- Tr as Thead,
161
- ir as Tooltip,
162
- br as Tr,
121
+ mr as Pagination,
122
+ nr as PhoneNumberInput,
123
+ fr as Popover,
124
+ sr as PopoverAnchor,
125
+ lr as PopoverCloseTrigger,
126
+ ur as PopoverContent,
127
+ cr as PopoverContext,
128
+ dr as PopoverTrigger,
129
+ gr as PriceTag,
130
+ n as ProductCardCatalog,
131
+ br as RadioButtonGroup,
132
+ hr as RadioButtonGroupItem,
133
+ Ir as RadioButtonGroupLabel,
134
+ x as RadioCardGroup,
135
+ Ar as RadioGroup,
136
+ Dr as RadioGroupItem,
137
+ wr as RadioGroupLabel,
138
+ Ko as Renderer,
139
+ Oo as Root,
140
+ Br as Select,
141
+ Gr as SelectLanguage,
142
+ Lr as StatusTagSelect,
143
+ Nr as Switch,
144
+ f as SwitchCard,
145
+ kr as Table,
146
+ Hr as TableContainer,
147
+ $r as TableEmptyRow,
148
+ Mr as TableGroupTitle,
149
+ Kr as Tabs,
150
+ Or as TabsChip,
151
+ Qr as TabsContent,
152
+ Ur as TabsList,
153
+ Wr as TabsTrigger,
154
+ Yr as Tag,
155
+ Er as Tbody,
156
+ Vr as Td,
157
+ _r as Text,
158
+ re as Textarea,
159
+ jr as Th,
160
+ qr as Thead,
161
+ te as Tooltip,
162
+ zr as Tr,
163
163
  u as createListCollection,
164
164
  c as createToaster,
165
165
  b as formatPhoneNumber,