@jetshop/ui 5.12.4 → 5.13.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,38 +1,23 @@
1
- import PaginationContext from '@jetshop/core/components/Pagination/PaginationContext';
2
1
  import formatMessage from '@jetshop/intl';
3
2
  import { styled } from 'linaria/react';
4
- import qs from 'qs';
5
3
  import * as React from 'react';
6
- import { useLocation } from 'react-router';
4
+ import usePagination from './usePagination';
7
5
  export const PaginationWrapper = styled('div') `
8
6
  display: flex;
9
7
  width: 100%;
10
8
  justify-content: space-between;
11
9
  align-items: center;
12
10
  `;
13
- const Pagination = ({ prevPage, nextPage, currentPage, totalPages, isFirstPage, isLastPage, hasPages, className = '' }) => {
14
- const { queryParam } = React.useContext(PaginationContext);
15
- const location = useLocation();
16
- const currentLocation = qs.parse(typeof window === 'undefined' ? location.search : window.location.search, {
17
- ignoreQueryPrefix: true
18
- });
19
- const nextHref = location.pathname +
20
- qs.stringify(Object.assign(Object.assign({}, currentLocation), { [queryParam]: isLastPage ? currentPage : currentPage + 1 }), { addQueryPrefix: true, encodeValuesOnly: true, skipNulls: true });
21
- const prevHref = location.pathname +
22
- qs.stringify(Object.assign(Object.assign({}, currentLocation), { [queryParam]: isFirstPage ? currentPage : currentPage - 1 }), { addQueryPrefix: true, encodeValuesOnly: true, skipNulls: true });
11
+ const Pagination = (props) => {
12
+ const { hasPages, totalPages, className, currentPage } = props;
13
+ const { prevHref, nextHref, prevOnClick, nextOnClick, isPrevDisabled, isNextDisabled } = usePagination(props);
23
14
  return hasPages && !isNaN(totalPages) ? (React.createElement(PaginationWrapper, { className: className },
24
- React.createElement("a", { href: prevHref, onClick: (e) => {
25
- e.preventDefault();
26
- prevPage();
27
- }, "data-disabled": isFirstPage ? true : null }, formatMessage('Prev')),
15
+ React.createElement("a", { href: prevHref, onClick: prevOnClick, "data-disabled": isPrevDisabled }, formatMessage('Prev')),
28
16
  React.createElement("div", null, formatMessage(`Page {currentPage} of {totalPages}`, {
29
17
  currentPage,
30
18
  totalPages
31
19
  })),
32
- React.createElement("a", { href: nextHref, onClick: (e) => {
33
- e.preventDefault();
34
- nextPage();
35
- }, "data-disabled": isLastPage ? true : null }, formatMessage('Next')))) : null;
20
+ React.createElement("a", { href: nextHref, onClick: nextOnClick, "data-disabled": isNextDisabled }, formatMessage('Next')))) : null;
36
21
  };
37
22
  export default Pagination;
38
23
  //# sourceMappingURL=Pagination.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Pagination.js","sourceRoot":"","sources":["Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,uDAAuD,CAAC;AACtF,OAAO,aAAa,MAAM,eAAe,CAAC;AAE1C,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;;;;;CAK7C,CAAC;AAEF,MAAM,UAAU,GAA8C,CAAC,EAC7D,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,UAAU,EACV,WAAW,EACX,UAAU,EACV,QAAQ,EACR,SAAS,GAAG,EAAE,EACf,EAAE,EAAE;IACH,MAAM,EAAE,UAAU,EAAE,GAAG,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;IAC3D,MAAM,QAAQ,GAAG,WAAW,EAAE,CAAC;IAE/B,MAAM,eAAe,GAAG,EAAE,CAAC,KAAK,CAC9B,OAAO,MAAM,KAAK,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EACxE;QACE,iBAAiB,EAAE,IAAI;KACxB,CACF,CAAC;IAEF,MAAM,QAAQ,GACZ,QAAQ,CAAC,QAAQ;QACjB,EAAE,CAAC,SAAS,iCAEL,eAAe,KAClB,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,GAAG,CAAC,KAE1D,EAAE,cAAc,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAClE,CAAC;IAEJ,MAAM,QAAQ,GACZ,QAAQ,CAAC,QAAQ;QACjB,EAAE,CAAC,SAAS,iCAEL,eAAe,KAClB,CAAC,UAAU,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,GAAG,CAAC,KAE3D,EAAE,cAAc,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAClE,CAAC;IAEJ,OAAO,QAAQ,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CACtC,oBAAC,iBAAiB,IAAC,SAAS,EAAE,SAAS;QACrC,2BACE,IAAI,EAAE,QAAQ,EACd,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE;gBACb,CAAC,CAAC,cAAc,EAAE,CAAC;gBACnB,QAAQ,EAAE,CAAC;YACb,CAAC,mBACc,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAEvC,aAAa,CAAC,MAAM,CAAC,CACpB;QACJ,iCACG,aAAa,CAAC,oCAAoC,EAAE;YACnD,WAAW;YACX,UAAU;SACX,CAAC,CACE;QACN,2BACE,IAAI,EAAE,QAAQ,EACd,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE;gBACb,CAAC,CAAC,cAAc,EAAE,CAAC;gBACnB,QAAQ,EAAE,CAAC;YACb,CAAC,mBACc,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAEtC,aAAa,CAAC,MAAM,CAAC,CACpB,CACc,CACrB,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC;AAEF,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"Pagination.js","sourceRoot":"","sources":["Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,aAAa,MAAM,eAAe,CAAC;AAE1C,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAE5C,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;;;;;CAK7C,CAAC;AAEF,MAAM,UAAU,GAA8C,CAAC,KAAK,EAAE,EAAE;IACtE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,SAAS,EAAE,WAAW,EAAE,GAAG,KAAK,CAAC;IAE/D,MAAM,EACJ,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,WAAW,EACX,cAAc,EACd,cAAc,EACf,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC;IAEzB,OAAO,QAAQ,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CACtC,oBAAC,iBAAiB,IAAC,SAAS,EAAE,SAAS;QACrC,2BAAG,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,WAAW,mBAAiB,cAAc,IACnE,aAAa,CAAC,MAAM,CAAC,CACpB;QACJ,iCACG,aAAa,CAAC,oCAAoC,EAAE;YACnD,WAAW;YACX,UAAU;SACX,CAAC,CACE;QACN,2BAAG,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,WAAW,mBAAiB,cAAc,IACnE,aAAa,CAAC,MAAM,CAAC,CACpB,CACc,CACrB,CAAC,CAAC,CAAC,IAAI,CAAC;AACX,CAAC,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { PaginationBehaviourRenderProps } from '@jetshop/ui/Pagination/PaginationBehaviour';
2
+ import * as React from 'react';
3
+ export declare const PaginationWrapper: import("linaria/lib/StyledMeta").StyledMeta & React.FunctionComponent<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
4
+ as?: React.ElementType<any>;
5
+ }>;
6
+ declare function usePagination({ prevPage, nextPage, currentPage, isFirstPage, isLastPage }: Partial<PaginationBehaviourRenderProps>): {
7
+ prevHref: string;
8
+ nextHref: string;
9
+ goToHref: (page: number) => string;
10
+ prevOnClick: (e: React.MouseEvent<HTMLElement>) => void;
11
+ nextOnClick: (e: React.MouseEvent<HTMLElement>) => void;
12
+ isPrevDisabled: boolean;
13
+ isNextDisabled: boolean;
14
+ };
15
+ export default usePagination;
@@ -0,0 +1,46 @@
1
+ import PaginationContext from '@jetshop/core/components/Pagination/PaginationContext';
2
+ import { styled } from 'linaria/react';
3
+ import qs from 'qs';
4
+ import * as React from 'react';
5
+ import { useLocation } from 'react-router';
6
+ export const PaginationWrapper = styled('div') `
7
+ display: flex;
8
+ width: 100%;
9
+ justify-content: space-between;
10
+ align-items: center;
11
+ `;
12
+ function usePagination({ prevPage, nextPage, currentPage, isFirstPage, isLastPage }) {
13
+ const { queryParam } = React.useContext(PaginationContext);
14
+ const location = useLocation();
15
+ const currentLocation = qs.parse(typeof window === 'undefined' ? location.search : window.location.search, {
16
+ ignoreQueryPrefix: true
17
+ });
18
+ const nextHref = location.pathname +
19
+ qs.stringify(Object.assign(Object.assign({}, currentLocation), { [queryParam]: isLastPage ? currentPage : currentPage + 1 }), { addQueryPrefix: true, encodeValuesOnly: true, skipNulls: true });
20
+ const prevHref = location.pathname +
21
+ qs.stringify(Object.assign(Object.assign({}, currentLocation), { [queryParam]: isFirstPage ? currentPage : currentPage - 1 }), { addQueryPrefix: true, encodeValuesOnly: true, skipNulls: true });
22
+ const goToHref = (page) => {
23
+ const href = location.pathname +
24
+ qs.stringify(Object.assign(Object.assign({}, currentLocation), { [queryParam]: page }), { addQueryPrefix: true, encodeValuesOnly: true, skipNulls: true });
25
+ return href;
26
+ };
27
+ function prevOnClick(e) {
28
+ e.preventDefault();
29
+ prevPage();
30
+ }
31
+ function nextOnClick(e) {
32
+ e.preventDefault();
33
+ nextPage();
34
+ }
35
+ return {
36
+ prevHref,
37
+ nextHref,
38
+ goToHref,
39
+ prevOnClick,
40
+ nextOnClick,
41
+ isPrevDisabled: isFirstPage ? true : null,
42
+ isNextDisabled: isLastPage ? true : null
43
+ };
44
+ }
45
+ export default usePagination;
46
+ //# sourceMappingURL=usePagination.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePagination.js","sourceRoot":"","sources":["usePagination.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,uDAAuD,CAAC;AAEtF,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;;;;;CAK7C,CAAC;AAEF,SAAS,aAAa,CAAC,EACrB,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,WAAW,EACX,UAAU,EAC8B;IACxC,MAAM,EAAE,UAAU,EAAE,GAAG,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC;IAC3D,MAAM,QAAQ,GAAG,WAAW,EAAE,CAAC;IAE/B,MAAM,eAAe,GAAG,EAAE,CAAC,KAAK,CAC9B,OAAO,MAAM,KAAK,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EACxE;QACE,iBAAiB,EAAE,IAAI;KACxB,CACF,CAAC;IAEF,MAAM,QAAQ,GACZ,QAAQ,CAAC,QAAQ;QACjB,EAAE,CAAC,SAAS,iCAEL,eAAe,KAClB,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,GAAG,CAAC,KAE1D,EAAE,cAAc,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAClE,CAAC;IAEJ,MAAM,QAAQ,GACZ,QAAQ,CAAC,QAAQ;QACjB,EAAE,CAAC,SAAS,iCAEL,eAAe,KAClB,CAAC,UAAU,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,GAAG,CAAC,KAE3D,EAAE,cAAc,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAClE,CAAC;IAEJ,MAAM,QAAQ,GAAG,CAAC,IAAY,EAAE,EAAE;QAChC,MAAM,IAAI,GACR,QAAQ,CAAC,QAAQ;YACjB,EAAE,CAAC,SAAS,iCAEL,eAAe,KAClB,CAAC,UAAU,CAAC,EAAE,IAAI,KAEpB,EAAE,cAAc,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAClE,CAAC;QACJ,OAAO,IAAI,CAAC;IACd,CAAC,CAAC;IAEF,SAAS,WAAW,CAAC,CAAgC;QACnD,CAAC,CAAC,cAAc,EAAE,CAAC;QACnB,QAAQ,EAAE,CAAC;IACb,CAAC;IAED,SAAS,WAAW,CAAC,CAAgC;QACnD,CAAC,CAAC,cAAc,EAAE,CAAC;QACnB,QAAQ,EAAE,CAAC;IACb,CAAC;IAED,OAAO;QACL,QAAQ;QACR,QAAQ;QACR,QAAQ;QACR,WAAW;QACX,WAAW;QACX,cAAc,EAAE,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI;QACzC,cAAc,EAAE,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI;KACzC,CAAC;AACJ,CAAC;AAED,eAAe,aAAa,CAAC"}
@@ -1,18 +1,8 @@
1
- interface Match {
2
- arrayIndex: number;
3
- indices: [number, number][];
4
- key: string;
5
- value: string;
6
- }
7
- interface Result<T> {
8
- item: T;
9
- matches: Match[];
10
- }
11
1
  export interface FuzzySearchProps<T> {
12
2
  data: T[];
13
3
  keys: string[];
14
4
  searchTerm: string;
15
5
  rest: any;
16
6
  }
17
- declare const fuzzySearch: <T>({ data, keys, searchTerm, ...rest }: FuzzySearchProps<T>) => Result<T>[];
7
+ declare const fuzzySearch: <T>({ data, keys, searchTerm, ...rest }: FuzzySearchProps<T>) => T[];
18
8
  export { fuzzySearch };
@@ -28,7 +28,7 @@ const highlight = (text, indices) => {
28
28
  return content;
29
29
  };
30
30
  const highlightResults = (results) => {
31
- return results.map(result => (Object.assign(Object.assign({}, result.item), result.matches.reduce((acc, match) => (Object.assign(Object.assign({}, acc), { [match.key]: highlight(match.value, match.indices) })), {}))));
31
+ return results.map((result) => (Object.assign(Object.assign({}, result.item), result.matches.reduce((acc, match) => (Object.assign(Object.assign({}, acc), { [match.key]: highlight(match.value, match.indices) })), {}))));
32
32
  };
33
33
  const fuzzySearch = (_a) => {
34
34
  var { data, keys, searchTerm } = _a, rest = __rest(_a, ["data", "keys", "searchTerm"]);
@@ -1 +1 @@
1
- {"version":3,"file":"fuzzySearch.js","sourceRoot":"","sources":["fuzzySearch.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,IAAoB,MAAM,SAAS,CAAC;AAqB3C,MAAM,SAAS,GAAG,CAAC,IAAY,EAAE,OAA2B,EAAE,EAAE;IAC9D,IAAI,CAAC,OAAO;QAAE,OAAO,IAAI,CAAC;IAE1B,IAAI,OAAO,GAAG,EAAE,EACd,oCAAoC,GAAG,CAAC,CAAC;IAE3C,OAAO,CAAC,OAAO,CAAC,UAAS,MAAM;QAC7B,OAAO;YACL,EAAE;gBACF,IAAI,CAAC,SAAS,CAAC,oCAAoC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC/D,0BAA0B;gBAC1B,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACxC,SAAS;gBACT,EAAE,CAAC;QACL,oCAAoC,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IACvD,CAAC,CAAC,CAAC;IAEH,OAAO,IAAI,IAAI,CAAC,SAAS,CAAC,oCAAoC,CAAC,CAAC;IAEhE,OAAO,OAAO,CAAC;AACjB,CAAC,CAAC;AAEF,MAAM,gBAAgB,GAAG,CAAI,OAAwB,EAAE,EAAE;IACvD,OAAO,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,iCACxB,MAAM,CAAC,IAAI,GACX,MAAM,CAAC,OAAO,CAAC,MAAM,CACtB,CAAC,GAAuB,EAAE,KAAY,EAAE,EAAE,CAAC,iCACtC,GAAG,KACN,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAClD,EACF,EAAE,CACH,EACD,CAAC,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,WAAW,GAAG,CAAI,EAKF,EAAe,EAAE;QALf,EACtB,IAAI,EACJ,IAAI,EACJ,UAAU,OAEU,EADjB,IAAI,cAJe,8BAKvB,CADQ;IAEP,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,gCACxB,UAAU,EAAE,IAAI,EAChB,cAAc,EAAE,IAAI,EACpB,QAAQ,EAAE,IAAI,EACd,SAAS,EAAE,IAAI,EACf,QAAQ,EAAE,CAAC,EACX,QAAQ,EAAE,GAAG,EACb,gBAAgB,EAAE,EAAE,EACpB,kBAAkB,EAAE,CAAC,EACrB,IAAI,IACD,IAAI;QAEP,2BAA2B;QAC3B,cAAc,EAAE,IAAI,IACpB,CAAC;IACH,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;IACxC,MAAM,kBAAkB,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAErD,OAAO,kBAAkB,CAAC;AAC5B,CAAC,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
1
+ {"version":3,"file":"fuzzySearch.js","sourceRoot":"","sources":["fuzzySearch.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,IAAoB,MAAM,SAAS,CAAC;AAgB3C,MAAM,SAAS,GAAG,CAAC,IAAY,EAAE,OAA2B,EAAE,EAAE;IAC9D,IAAI,CAAC,OAAO;QAAE,OAAO,IAAI,CAAC;IAE1B,IAAI,OAAO,GAAG,EAAE,EACd,oCAAoC,GAAG,CAAC,CAAC;IAE3C,OAAO,CAAC,OAAO,CAAC,UAAU,MAAM;QAC9B,OAAO;YACL,EAAE;gBACF,IAAI,CAAC,SAAS,CAAC,oCAAoC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC/D,0BAA0B;gBAC1B,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACxC,SAAS;gBACT,EAAE,CAAC;QACL,oCAAoC,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IACvD,CAAC,CAAC,CAAC;IAEH,OAAO,IAAI,IAAI,CAAC,SAAS,CAAC,oCAAoC,CAAC,CAAC;IAEhE,OAAO,OAAO,CAAC;AACjB,CAAC,CAAC;AAEF,MAAM,gBAAgB,GAAG,CAAI,OAAwB,EAAE,EAAE;IACvD,OAAO,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,iCAC1B,MAAM,CAAC,IAAI,GACX,MAAM,CAAC,OAAO,CAAC,MAAM,CACtB,CAAC,GAAuB,EAAE,KAAY,EAAE,EAAE,CAAC,iCACtC,GAAG,KACN,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,IAClD,EACF,EAAE,CACH,EACD,CAAC,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,WAAW,GAAG,CAAI,EAKF,EAAO,EAAE;QALP,EACtB,IAAI,EACJ,IAAI,EACJ,UAAU,OAEU,EADjB,IAAI,cAJe,8BAKvB,CADQ;IAEP,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,gCACxB,UAAU,EAAE,IAAI,EAChB,cAAc,EAAE,IAAI,EACpB,QAAQ,EAAE,IAAI,EACd,SAAS,EAAE,IAAI,EACf,QAAQ,EAAE,CAAC,EACX,QAAQ,EAAE,GAAG,EACb,gBAAgB,EAAE,EAAE,EACpB,kBAAkB,EAAE,CAAC,EACrB,IAAI,IACD,IAAI;QAEP,2BAA2B;QAC3B,cAAc,EAAE,IAAI,IACpB,CAAC;IACH,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;IACxC,MAAM,kBAAkB,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAErD,OAAO,kBAAkB,CAAC;AAC5B,CAAC,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/ui",
3
- "version": "5.12.4",
3
+ "version": "5.13.0",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "**/*.js",