@veeqo/transfigure 0.0.16 → 0.0.18

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.
Files changed (82) hide show
  1. package/dist/BusinessLogic/types.d.ts +1 -0
  2. package/dist/components/Views/PillNotifications/styled.d.ts +13 -12
  3. package/dist/components/Views/ViewList/ViewsList.d.ts +1 -5
  4. package/dist/components/Views/ViewTab/ViewTab.d.ts +2 -3
  5. package/dist/hooks/useViewCountsHook/useViewCountsHook.d.ts +16 -0
  6. package/dist/index100.cjs +1 -80
  7. package/dist/index100.js +62 -94
  8. package/dist/index101.cjs +1 -13
  9. package/dist/index101.js +33 -14
  10. package/dist/index20.cjs +1 -1
  11. package/dist/index20.js +1 -1
  12. package/dist/index28.cjs +1 -1
  13. package/dist/index28.js +1 -1
  14. package/dist/index31.cjs +1 -1
  15. package/dist/index31.js +1 -1
  16. package/dist/index33.cjs +1 -1
  17. package/dist/index33.js +47 -46
  18. package/dist/index36.cjs +1 -1
  19. package/dist/index36.js +1 -1
  20. package/dist/index37.cjs +1 -1
  21. package/dist/index37.js +1 -1
  22. package/dist/index38.cjs +1 -1
  23. package/dist/index38.js +1 -1
  24. package/dist/index39.cjs +1 -1
  25. package/dist/index39.js +8 -8
  26. package/dist/index41.cjs +1 -1
  27. package/dist/index41.js +30 -30
  28. package/dist/index43.cjs +1 -1
  29. package/dist/index43.js +34 -40
  30. package/dist/index65.cjs +1 -1
  31. package/dist/index65.js +6 -5
  32. package/dist/index75.cjs +1 -1
  33. package/dist/index75.js +1 -1
  34. package/dist/index76.cjs +1 -1
  35. package/dist/index76.js +1 -1
  36. package/dist/index77.cjs +1 -1
  37. package/dist/index77.js +74 -68
  38. package/dist/index79.cjs +1 -1
  39. package/dist/index79.js +33 -13
  40. package/dist/index80.cjs +1 -104
  41. package/dist/index80.js +27 -118
  42. package/dist/index81.cjs +19 -1
  43. package/dist/index81.js +23 -67
  44. package/dist/index82.cjs +1 -1
  45. package/dist/index82.js +14 -28
  46. package/dist/index83.cjs +1 -1
  47. package/dist/index83.js +22 -2
  48. package/dist/index84.cjs +1 -1
  49. package/dist/index84.js +13 -41
  50. package/dist/index85.cjs +104 -1
  51. package/dist/index85.js +120 -8
  52. package/dist/index86.cjs +1 -1
  53. package/dist/index86.js +65 -21
  54. package/dist/index87.cjs +1 -19
  55. package/dist/index87.js +29 -24
  56. package/dist/index88.cjs +1 -1
  57. package/dist/index88.js +2 -29
  58. package/dist/index89.cjs +1 -1
  59. package/dist/index89.js +40 -14
  60. package/dist/index9.cjs +1 -1
  61. package/dist/index9.js +13 -12
  62. package/dist/index90.cjs +1 -1
  63. package/dist/index90.js +10 -21
  64. package/dist/index91.cjs +18 -18
  65. package/dist/index91.js +28 -27
  66. package/dist/index93.cjs +1 -1
  67. package/dist/index93.js +24 -2
  68. package/dist/index94.cjs +1 -1
  69. package/dist/index94.js +2 -19
  70. package/dist/index95.cjs +13 -1
  71. package/dist/index95.js +17 -8
  72. package/dist/index96.cjs +1 -1
  73. package/dist/index96.js +17 -62
  74. package/dist/index97.cjs +1 -1
  75. package/dist/index97.js +7 -29
  76. package/dist/index98.cjs +1 -1
  77. package/dist/index98.js +63 -62
  78. package/dist/index99.cjs +1 -1
  79. package/dist/index99.js +30 -36
  80. package/dist/storybookHelpers/apiMocks/v2ordersapi.d.ts +335 -0
  81. package/package.json +1 -1
  82. package/dist/components/Views/UnsavedChanges/styled.d.ts +0 -33
@@ -20,4 +20,5 @@ export type BusinessLogicType = {
20
20
  PAGE_SIZE_OPTIONS: number[];
21
21
  DEFAULT_VISIBLE_COLUMNS: string[];
22
22
  DEFAULT_HIDDEN_COLUMNS: string[];
23
+ TABLE_DATA_URL: string | null;
23
24
  };
@@ -1,6 +1,8 @@
1
- declare const Notification: import('styled-components').StyledComponent<"div", any, {}, never>;
2
- declare const Container: import('styled-components').StyledComponent<"div", any, {}, never>;
3
- declare const Pill: import('styled-components').StyledComponent<({ type, text, iconSlot, onClose, className, header, children, backgroundColor, ...props }: {
1
+ import { ButtonHTMLAttributes } from 'react';
2
+ export declare const UIGlyph: ({ name, size, color, className, ariaLabel, style, onClick, }: import('../../../../node_modules/@veeqo/components/dist/components/common/Glyph/Glyph').GlyphProps) => React.JSX.Element;
3
+ export declare const Notification: import('styled-components').StyledComponent<"div", any, {}, never>;
4
+ export declare const Container: import('styled-components').StyledComponent<"div", any, {}, never>;
5
+ export declare const Pill: import('styled-components').StyledComponent<({ type, text, iconSlot, onClose, className, header, children, backgroundColor, ...props }: {
4
6
  type?: import('../../../../node_modules/@veeqo/ui/dist/components/Banner/types').BannerTypes;
5
7
  backgroundColor?: string;
6
8
  text?: string;
@@ -10,7 +12,7 @@ declare const Pill: import('styled-components').StyledComponent<({ type, text, i
10
12
  header?: import('react').ReactNode;
11
13
  children?: import('react').ReactNode;
12
14
  }) => React.JSX.Element, any, {}, never>;
13
- declare const Button: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<import('react').ButtonHTMLAttributes<HTMLButtonElement> & {
15
+ export declare const Button: import('styled-components').StyledComponent<import('react').ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
14
16
  children?: React.ReactNode;
15
17
  variant?: import('../../../../node_modules/@veeqo/ui/dist/components/Button/types').ButtonVariant | undefined;
16
18
  size?: "base" | "sm" | undefined;
@@ -19,15 +21,14 @@ declare const Button: import('styled-components').StyledComponent<import('react'
19
21
  loading?: boolean | undefined;
20
22
  contentStyles?: React.CSSProperties | undefined;
21
23
  } & import('react').RefAttributes<HTMLButtonElement>>, any, {}, never>;
22
- declare const Hint: import('styled-components').StyledComponent<"span", any, {} & import('../../../../node_modules/@veeqo/ui/dist/components/Text/types').TextProps, never>;
23
- declare const Text: import('styled-components').StyledComponent<"span", any, ({} & import('../../../../node_modules/@veeqo/ui/dist/components/Text/types').TextProps) & {
24
+ export declare const Hint: import('styled-components').StyledComponent<"span", any, {} & import('../../../../node_modules/@veeqo/ui/dist/components/Text/types').TextProps, never>;
25
+ export declare const Text: import('styled-components').StyledComponent<"span", any, ({} & import('../../../../node_modules/@veeqo/ui/dist/components/Text/types').TextProps) & {
24
26
  margin?: string;
25
27
  }, never>;
26
- declare const Bold: import('styled-components').StyledComponent<"span", any, {} & import('../../../../node_modules/@veeqo/ui/dist/components/Text/types').TextProps, never>;
27
- declare const Glyph: import('styled-components').StyledComponent<({ name, size, color, className, ariaLabel, style, onClick, }: import('../../../../node_modules/@veeqo/components/dist/components/common/Glyph/Glyph').GlyphProps) => React.JSX.Element, any, {
28
+ export declare const Bold: import('styled-components').StyledComponent<"span", any, {} & import('../../../../node_modules/@veeqo/ui/dist/components/Text/types').TextProps, never>;
29
+ export declare const Glyph: import('styled-components').StyledComponent<({ name, size, color, className, ariaLabel, style, onClick, }: import('../../../../node_modules/@veeqo/components/dist/components/common/Glyph/Glyph').GlyphProps) => React.JSX.Element, any, {
28
30
  margin?: string;
29
31
  }, never>;
30
- declare const Wrap: import('styled-components').StyledComponent<"div", any, {}, never>;
31
- declare const Dropdown: import('styled-components').StyledComponent<({ cta, shouldShowDropdown, children, className, reversed, onClickAway, timeout, transitionClassnames, onClick, onMouseEnter, onMouseLeave, }: import('../../../../node_modules/@veeqo/ui/dist/components/AnimatedDropdown/types').AnimatedDropdownProps) => React.JSX.Element, any, {}, never>;
32
- declare const Item: import('styled-components').StyledComponent<string, any, {}, never>;
33
- export { Pill, Button, Text, Hint, Bold, Wrap, Notification, Glyph, Container, Dropdown, Item };
32
+ export declare const Wrap: import('styled-components').StyledComponent<"div", any, {}, never>;
33
+ export declare const Dropdown: import('styled-components').StyledComponent<({ cta, shouldShowDropdown, children, className, reversed, onClickAway, timeout, transitionClassnames, onClick, onMouseEnter, onMouseLeave, }: import('../../../../node_modules/@veeqo/ui/dist/components/AnimatedDropdown/types').AnimatedDropdownProps) => React.JSX.Element, any, {}, never>;
34
+ export declare const Item: import('styled-components').StyledComponent<string, any, ButtonHTMLAttributes<HTMLButtonElement>, never>;
@@ -1,5 +1 @@
1
- export type ViewListProps = {
2
- viewTabSlotValueMap?: Map<string, string>;
3
- isLoadingTableData: boolean;
4
- };
5
- export declare const ViewList: ({ viewTabSlotValueMap, isLoadingTableData }: ViewListProps) => JSX.Element;
1
+ export declare const ViewList: () => JSX.Element;
@@ -1,7 +1,6 @@
1
1
  import { TransformedView } from 'src/types';
2
- import { ViewListProps } from '../ViewList/ViewsList';
3
- interface ViewTabProps extends ViewListProps {
2
+ interface ViewTabProps {
4
3
  view: TransformedView;
5
4
  }
6
- export declare const ViewTab: ({ view: tab, viewTabSlotValueMap, isLoadingTableData }: ViewTabProps) => JSX.Element;
5
+ export declare const ViewTab: ({ view: tab }: ViewTabProps) => JSX.Element;
7
6
  export {};
@@ -0,0 +1,16 @@
1
+ export type ResponseType = {
2
+ meta: {
3
+ page: {
4
+ size: string;
5
+ current: string;
6
+ total_pages: string;
7
+ total_count: string;
8
+ };
9
+ };
10
+ };
11
+ export declare const useViewCounts: (viewId: string) => {
12
+ viewCounts: string | undefined;
13
+ error: any;
14
+ isLoadingTableData: boolean;
15
+ mutate: import('../../../node_modules/swr').KeyedMutator<ResponseType>;
16
+ };
package/dist/index100.cjs CHANGED
@@ -1,80 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("styled-components"),t=require("@veeqo/ui"),a=require("@veeqo/components"),r=e=>e&&e.__esModule?e:{default:e},o=r(i),{Glyph:l}=a.VeeqoCommon,s=o.default(t.BaseContainer)`
2
- display: flex;
3
- position: fixed;
4
- width: 100vw;
5
- left: 0;
6
- bottom: 24px;
7
- z-index: 18;
8
-
9
- &.notification-enter {
10
- opacity: 0;
11
- transform: translateY(-16px);
12
- }
13
-
14
- &.notification-enter-active {
15
- opacity: 1;
16
- transform: translateY(0);
17
- transition: 350ms ease;
18
- }
19
-
20
- &.notification-exit {
21
- opacity: 0;
22
- transform: translateY(16px);
23
- transition: 350ms ease;
24
- }
25
- pointer-events: none;
26
- `;o.default(t.BaseContainer)`
27
- display: inline-flex;
28
- flex-direction: row;
29
- align-items: center;
30
- padding: 20px 24px 24px 24px;
31
- border-radius: 4px;
32
- margin: 0 auto;
33
- background-color: #fff;
34
- box-shadow: ${t.theme.shadows.lg};
35
- pointer-events: all;
36
- `;const d=o.default(t.Banner)`
37
- display: inline-flex;
38
- flex-direction: row;
39
- align-items: center;
40
- margin: 0 auto;
41
- background-color: #fff;
42
- box-shadow: ${t.theme.shadows.lg};
43
- pointer-events: all;
44
- `,c=o.default(t.Button)`
45
- margin-right: 16px;
46
- `,f=o.default(t.Text)`
47
- line-height: 20px;
48
- `,n=o.default(t.Text)`
49
- margin: ${e=>e.margin?e.margin:""};
50
- color: ${e=>e.color};
51
- `,p=o.default(t.Text)`
52
- margin-right: 8px;
53
- color: ${e=>e.color};
54
- `,u=o.default(l)``,x=o.default(t.BaseContainer)`
55
- display: flex;
56
- flex-direction: row;
57
- align-items: flex-end;
58
- flex-grow: 2;
59
- margin-left: 24px;
60
- margin-right: 24px;
61
- `;o.default(t.AnimatedDropdown)``;o.default.button`
62
- display: flex;
63
- flex-direction: row;
64
- width: 100%;
65
- padding: 12px 16px;
66
- cursor: pointer;
67
-
68
- & > ${n} {
69
- white-space: nowrap;
70
- user-select: none;
71
- }
72
-
73
- &:hover {
74
- background-color: ${t.theme.colors.neutral.grey.lightest};
75
- }
76
-
77
- &:hover > ${n} {
78
- color: ${t.theme.colors.secondary.blue.base};
79
- }
80
- `;exports.Bold=p;exports.Button=c;exports.Glyph=u;exports.Hint=f;exports.Notification=s;exports.Pill=d;exports.Text=n;exports.Wrap=x;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("react/jsx-runtime"),p=require("mobx-react"),l=require("@veeqo/ui"),v=require("./index101.cjs"),y=p.observer(({data:m,editedValue:t,setEditedValue:c})=>{var b;if(!((b=m.options)!=null&&b.length))return null;const[u,x]=m.options,i=Number(u.value),a=Number(x.value),h=(s,n)=>{if(!Array.isArray(n)||n.length!==2||!t)return;const[e,j]=n,g=t==null?void 0:t.clone();g.setGte(e),g.setLte(j),c(g)},o={gte:(t==null?void 0:t.gte)||0,lte:(t==null?void 0:t.lte)||100},M=s=>{if(!t)return;const n=t.clone(),e=Number(s);e>n.lteMax||(e>=n.gteMin&&e<=n.lteMax&&n.setGte(e),(!n.lte||e>=n.lte)&&n.setLte(n.lteMax),c(n))},f=s=>{if(!t)return;const n=t.clone(),e=Number(s);e<n.gteMin||(e>=n.gteMin&&e<=n.lteMax&&n.setLte(e),(!n.gte||e<=n.gte)&&n.setGte(n.gteMin),c(n))},S=[o.gte,o.lte];return r.jsxs(l.Stack,{spacing:"xs",alignX:"stretch",children:[r.jsxs(l.Stack,{direction:"horizontal",children:[r.jsx(l.TextField,{label:u.label,type:"number",min:i,max:a,value:o.gte.toString(),onChange:M}),r.jsx(l.TextField,{label:x.label,type:"number",min:i,max:a,value:o.lte.toString(),onChange:f})]}),r.jsx(v.MUISlider,{value:S,onChange:h,min:i,max:a,valueLabelDisplay:"auto"})]})});exports.FilterNumberRangeFilter=y;
package/dist/index100.js CHANGED
@@ -1,97 +1,65 @@
1
- import o from "styled-components";
2
- import { BaseContainer as e, theme as n, Banner as a, Text as i, Button as l, AnimatedDropdown as s } from "@veeqo/ui";
3
- import { VeeqoCommon as c } from "@veeqo/components";
4
- const { Glyph: p } = c, m = o(e)`
5
- display: flex;
6
- position: fixed;
7
- width: 100vw;
8
- left: 0;
9
- bottom: 24px;
10
- z-index: 18;
11
-
12
- &.notification-enter {
13
- opacity: 0;
14
- transform: translateY(-16px);
1
+ import { jsxs as b, jsx as a } from "react/jsx-runtime";
2
+ import { observer as N } from "mobx-react";
3
+ import { Stack as h, TextField as u } from "@veeqo/ui";
4
+ import { MUISlider as L } from "./index101.js";
5
+ const j = N(
6
+ ({ data: g, editedValue: t, setEditedValue: l }) => {
7
+ var f;
8
+ if (!((f = g.options) != null && f.length)) return null;
9
+ const [i, x] = g.options, s = Number(i.value), c = Number(x.value), p = (e, n) => {
10
+ if (!Array.isArray(n) || n.length !== 2 || !t) return;
11
+ const [r, y] = n, m = t == null ? void 0 : t.clone();
12
+ m.setGte(r), m.setLte(y), l(m);
13
+ }, o = {
14
+ gte: (t == null ? void 0 : t.gte) || 0,
15
+ lte: (t == null ? void 0 : t.lte) || 100
16
+ }, M = (e) => {
17
+ if (!t) return;
18
+ const n = t.clone(), r = Number(e);
19
+ r > n.lteMax || (r >= n.gteMin && r <= n.lteMax && n.setGte(r), (!n.lte || r >= n.lte) && n.setLte(n.lteMax), l(n));
20
+ }, v = (e) => {
21
+ if (!t) return;
22
+ const n = t.clone(), r = Number(e);
23
+ r < n.gteMin || (r >= n.gteMin && r <= n.lteMax && n.setLte(r), (!n.gte || r <= n.gte) && n.setGte(n.gteMin), l(n));
24
+ }, C = [o.gte, o.lte];
25
+ return /* @__PURE__ */ b(h, { spacing: "xs", alignX: "stretch", children: [
26
+ /* @__PURE__ */ b(h, { direction: "horizontal", children: [
27
+ /* @__PURE__ */ a(
28
+ u,
29
+ {
30
+ label: i.label,
31
+ type: "number",
32
+ min: s,
33
+ max: c,
34
+ value: o.gte.toString(),
35
+ onChange: M
36
+ }
37
+ ),
38
+ /* @__PURE__ */ a(
39
+ u,
40
+ {
41
+ label: x.label,
42
+ type: "number",
43
+ min: s,
44
+ max: c,
45
+ value: o.lte.toString(),
46
+ onChange: v
47
+ }
48
+ )
49
+ ] }),
50
+ /* @__PURE__ */ a(
51
+ L,
52
+ {
53
+ value: C,
54
+ onChange: p,
55
+ min: s,
56
+ max: c,
57
+ valueLabelDisplay: "auto"
58
+ }
59
+ )
60
+ ] });
15
61
  }
16
-
17
- &.notification-enter-active {
18
- opacity: 1;
19
- transform: translateY(0);
20
- transition: 350ms ease;
21
- }
22
-
23
- &.notification-exit {
24
- opacity: 0;
25
- transform: translateY(16px);
26
- transition: 350ms ease;
27
- }
28
- pointer-events: none;
29
- `;
30
- o(e)`
31
- display: inline-flex;
32
- flex-direction: row;
33
- align-items: center;
34
- padding: 20px 24px 24px 24px;
35
- border-radius: 4px;
36
- margin: 0 auto;
37
- background-color: #fff;
38
- box-shadow: ${n.shadows.lg};
39
- pointer-events: all;
40
- `;
41
- const g = o(a)`
42
- display: inline-flex;
43
- flex-direction: row;
44
- align-items: center;
45
- margin: 0 auto;
46
- background-color: #fff;
47
- box-shadow: ${n.shadows.lg};
48
- pointer-events: all;
49
- `, h = o(l)`
50
- margin-right: 16px;
51
- `, w = o(i)`
52
- line-height: 20px;
53
- `, r = o(i)`
54
- margin: ${(t) => t.margin ? t.margin : ""};
55
- color: ${(t) => t.color};
56
- `, u = o(i)`
57
- margin-right: 8px;
58
- color: ${(t) => t.color};
59
- `, y = o(p)``, $ = o(e)`
60
- display: flex;
61
- flex-direction: row;
62
- align-items: flex-end;
63
- flex-grow: 2;
64
- margin-left: 24px;
65
- margin-right: 24px;
66
- `;
67
- o(s)``;
68
- o.button`
69
- display: flex;
70
- flex-direction: row;
71
- width: 100%;
72
- padding: 12px 16px;
73
- cursor: pointer;
74
-
75
- & > ${r} {
76
- white-space: nowrap;
77
- user-select: none;
78
- }
79
-
80
- &:hover {
81
- background-color: ${n.colors.neutral.grey.lightest};
82
- }
83
-
84
- &:hover > ${r} {
85
- color: ${n.colors.secondary.blue.base};
86
- }
87
- `;
62
+ );
88
63
  export {
89
- u as Bold,
90
- h as Button,
91
- y as Glyph,
92
- w as Hint,
93
- m as Notification,
94
- g as Pill,
95
- r as Text,
96
- $ as Wrap
64
+ j as FilterNumberRangeFilter
97
65
  };
package/dist/index101.cjs CHANGED
@@ -1,13 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@veeqo/components"),o=require("@veeqo/ui"),s=require("styled-components"),l=e=>e&&e.__esModule?e:{default:e},r=l(s),{SortableViews:i}=t.VeeqoUI,n=r.default(i)`
2
- .rst__rowTitle {
3
- span {
4
- white-space: nowrap;
5
- overflow: hidden;
6
- text-overflow: ellipsis;
7
- }
8
- }
9
-
10
- .rst__rowTitle > div:first-child {
11
- gap: ${o.theme.sizes.sm};
12
- }
13
- `;exports.StyledSortableViews=n;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("@veeqo/ui"),o=require("@material-ui/core/styles"),t=require("@material-ui/core/Slider"),l=e=>e&&e.__esModule?e:{default:e},i=l(t),a=o.withStyles({root:{color:r.theme.colors.secondary.blue.base,height:4},thumb:{height:20,width:20,backgroundColor:"#fff",border:"3px solid currentColor",marginTop:-8,marginLeft:-10,"&:focus, &:hover, &$active":{boxShadow:"inherit"}},valueLabel:{left:"calc(-50% - 1px)"},track:{height:4,borderRadius:4,backgroundColor:r.theme.colors.secondary.blue.light,opacity:1},rail:{height:4,borderRadius:4,backgroundColor:r.theme.colors.neutral.grey.dark,opacity:1}})(i.default);exports.MUISlider=a;
package/dist/index101.js CHANGED
@@ -1,19 +1,38 @@
1
- import { VeeqoUI as e } from "@veeqo/components";
2
1
  import { theme as o } from "@veeqo/ui";
3
- import t from "styled-components";
4
- const { SortableViews: r } = e, p = t(r)`
5
- .rst__rowTitle {
6
- span {
7
- white-space: nowrap;
8
- overflow: hidden;
9
- text-overflow: ellipsis;
2
+ import { withStyles as r } from "@material-ui/core/styles";
3
+ import e from "@material-ui/core/Slider";
4
+ const l = r({
5
+ root: {
6
+ color: o.colors.secondary.blue.base,
7
+ height: 4
8
+ },
9
+ thumb: {
10
+ height: 20,
11
+ width: 20,
12
+ backgroundColor: "#fff",
13
+ border: "3px solid currentColor",
14
+ marginTop: -8,
15
+ marginLeft: -10,
16
+ "&:focus, &:hover, &$active": {
17
+ boxShadow: "inherit"
10
18
  }
19
+ },
20
+ valueLabel: {
21
+ left: "calc(-50% - 1px)"
22
+ },
23
+ track: {
24
+ height: 4,
25
+ borderRadius: 4,
26
+ backgroundColor: o.colors.secondary.blue.light,
27
+ opacity: 1
28
+ },
29
+ rail: {
30
+ height: 4,
31
+ borderRadius: 4,
32
+ backgroundColor: o.colors.neutral.grey.dark,
33
+ opacity: 1
11
34
  }
12
-
13
- .rst__rowTitle > div:first-child {
14
- gap: ${o.sizes.sm};
15
- }
16
- `;
35
+ })(e);
17
36
  export {
18
- p as StyledSortableViews
37
+ l as MUISlider
19
38
  };
package/dist/index20.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("react/jsx-runtime"),l=require("react"),b=require("mobx-react"),r=require("@veeqo/ui"),F=require("./index63.cjs"),R=require("./index98.cjs"),h=require("./index57.cjs"),x=b.observer(({filterData:i})=>{const{Filters:{numberRangeFilters:o,clearNumberRangeFilter:u,setNumberRangeFilter:d}}=h.useStores(),e=o.get(i.id),[s,a]=l.useState(e),c=l.useCallback(()=>{const n=new F.NumberRangeFilter({filterId:i.id});return e&&(e.gte&&n.setGte(e.gte),e.lte&&n.setLte(e.lte)),n},[i.id,e]);l.useEffect(()=>{const n=c();a(n)},[c,e]);const g=()=>{u(i.id)},m=()=>{!e||!s||d({numberRange:e,lte:s.lte,gte:s.gte})};return t.jsx(r.FilterTag,{shouldCloseOnClickAway:!0,header:t.jsx("div",{children:"Edit filter (style and semant me pls)"}),label:i.label,text:(e==null?void 0:e.filterLabel)||"Loading...",content:t.jsx(r.BaseContainer,{style:{padding:r.theme.sizes.md},children:t.jsx(R.FilterNumberRangeFilter,{data:i,editedValue:s,setEditedValue:a})}),footer:t.jsx(r.BaseContainer,{style:{padding:r.theme.sizes.sm,width:"200px"},children:t.jsxs(r.Stack,{direction:"horizontal",alignX:"end",children:[t.jsx(r.Button,{variant:"default",size:"sm",onClick:g,children:"Clear"}),t.jsx(r.Button,{variant:"primary",size:"sm",onClick:m,children:"Apply"})]})})})});exports.ActiveFilterNumberRangeTag=x;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("react/jsx-runtime"),l=require("react"),b=require("mobx-react"),r=require("@veeqo/ui"),F=require("./index63.cjs"),R=require("./index100.cjs"),h=require("./index57.cjs"),x=b.observer(({filterData:i})=>{const{Filters:{numberRangeFilters:o,clearNumberRangeFilter:u,setNumberRangeFilter:d}}=h.useStores(),e=o.get(i.id),[s,a]=l.useState(e),c=l.useCallback(()=>{const n=new F.NumberRangeFilter({filterId:i.id});return e&&(e.gte&&n.setGte(e.gte),e.lte&&n.setLte(e.lte)),n},[i.id,e]);l.useEffect(()=>{const n=c();a(n)},[c,e]);const g=()=>{u(i.id)},m=()=>{!e||!s||d({numberRange:e,lte:s.lte,gte:s.gte})};return t.jsx(r.FilterTag,{shouldCloseOnClickAway:!0,header:t.jsx("div",{children:"Edit filter (style and semant me pls)"}),label:i.label,text:(e==null?void 0:e.filterLabel)||"Loading...",content:t.jsx(r.BaseContainer,{style:{padding:r.theme.sizes.md},children:t.jsx(R.FilterNumberRangeFilter,{data:i,editedValue:s,setEditedValue:a})}),footer:t.jsx(r.BaseContainer,{style:{padding:r.theme.sizes.sm,width:"200px"},children:t.jsxs(r.Stack,{direction:"horizontal",alignX:"end",children:[t.jsx(r.Button,{variant:"default",size:"sm",onClick:g,children:"Clear"}),t.jsx(r.Button,{variant:"primary",size:"sm",onClick:m,children:"Apply"})]})})})});exports.ActiveFilterNumberRangeTag=x;
package/dist/index20.js CHANGED
@@ -3,7 +3,7 @@ import { useState as b, useCallback as f, useEffect as h } from "react";
3
3
  import { observer as R } from "mobx-react";
4
4
  import { FilterTag as v, BaseContainer as o, theme as a, Stack as y, Button as d } from "@veeqo/ui";
5
5
  import { NumberRangeFilter as C } from "./index63.js";
6
- import { FilterNumberRangeFilter as N } from "./index98.js";
6
+ import { FilterNumberRangeFilter as N } from "./index100.js";
7
7
  import { useStores as w } from "./index57.js";
8
8
  const j = R(
9
9
  ({ filterData: r }) => {
package/dist/index28.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react/jsx-runtime"),d=require("react"),_=require("mobx-react"),j=require("lodash/debounce"),r=require("@veeqo/ui"),L=require("./index99.cjs"),R=require("./index63.cjs"),p=require("./index7.cjs"),y=require("./index57.cjs"),v=i=>i&&i.__esModule?i:{default:i},k=v(j),I=_.observer(({field:i})=>{var M;const{FILTERS_DEBOUCE_INTERVAL_MS:f}=p.useBusinessLogic(),{Filters:{numberRangeFilters:u,setNumberRangeFilter:x,clearNumberRangeFilter:F}}=y.useStores(),e=u.get(i.id),[o,g]=d.useState({gte:(e==null?void 0:e.gte)??0,lte:(e==null?void 0:e.lte)??100});if(!((M=i.options)!=null&&M.length))return null;const b=()=>{const l=new R.NumberRangeFilter({filterId:i.id});return u.set(i.id,l),l},c=d.useCallback(k.default(({numberRange:l,lte:t,gte:n})=>{x({numberRange:l,lte:t,gte:n})},f),[x]),h=()=>{g({gte:0,lte:100}),F(i.id)},S=(l,t)=>{let n=new R.NumberRangeFilter({filterId:i.id});if(e||(n=b()),!Array.isArray(t)||t.length!==2)return;const[s,m]=t;g({gte:s,lte:m}),c(e?{numberRange:e,lte:m,gte:s}:{numberRange:n,lte:m,gte:s})},N=l=>{if(e||b(),!e)return;const t=Number(l);if(t>e.lteMax)return;let{lte:n}=e,{gte:s}=e;t>=e.gteMin&&t<=e.lteMax&&(s=t),(!e.lte||t>=e.lte)&&(n=e.lteMax),g({gte:s,lte:n}),c({numberRange:e,lte:n,gte:s})},C=l=>{if(e||b(),!e)return;const t=Number(l);if(t<e.gteMin)return;let{lte:n}=e,{gte:s}=e;t>=e.gteMin&&t<=e.lteMax&&(n=t),(!e.gte||t<=e.gte)&&(s=e.gteMin),g({gte:s,lte:n}),c({numberRange:e,lte:n,gte:s})},q=[o.gte,o.lte];return a.jsxs(r.Stack,{spacing:"xs",alignX:"stretch",children:[a.jsx(r.Button,{variant:"link",onClick:h,children:"Clear"}),a.jsxs(r.Stack,{direction:"horizontal",children:[a.jsx(r.TextField,{label:e==null?void 0:e.gteMinLabel,type:"number",min:e==null?void 0:e.gteMin,max:e==null?void 0:e.lteMax,value:o.gte.toString(),onChange:N}),a.jsx(r.TextField,{label:e==null?void 0:e.lteMaxLabel,type:"number",min:e==null?void 0:e.gteMin,max:e==null?void 0:e.lteMax,value:o.lte.toString(),onChange:C})]}),a.jsx(L.MUISlider,{value:q,onChange:S,min:e==null?void 0:e.gteMin,max:e==null?void 0:e.lteMax,valueLabelDisplay:"auto"})]})});exports.NumberRangeFilter=I;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react/jsx-runtime"),d=require("react"),_=require("mobx-react"),j=require("lodash/debounce"),r=require("@veeqo/ui"),L=require("./index101.cjs"),R=require("./index63.cjs"),p=require("./index7.cjs"),y=require("./index57.cjs"),v=i=>i&&i.__esModule?i:{default:i},k=v(j),I=_.observer(({field:i})=>{var M;const{FILTERS_DEBOUCE_INTERVAL_MS:f}=p.useBusinessLogic(),{Filters:{numberRangeFilters:u,setNumberRangeFilter:x,clearNumberRangeFilter:F}}=y.useStores(),e=u.get(i.id),[o,g]=d.useState({gte:(e==null?void 0:e.gte)??0,lte:(e==null?void 0:e.lte)??100});if(!((M=i.options)!=null&&M.length))return null;const b=()=>{const l=new R.NumberRangeFilter({filterId:i.id});return u.set(i.id,l),l},c=d.useCallback(k.default(({numberRange:l,lte:t,gte:n})=>{x({numberRange:l,lte:t,gte:n})},f),[x]),h=()=>{g({gte:0,lte:100}),F(i.id)},S=(l,t)=>{let n=new R.NumberRangeFilter({filterId:i.id});if(e||(n=b()),!Array.isArray(t)||t.length!==2)return;const[s,m]=t;g({gte:s,lte:m}),c(e?{numberRange:e,lte:m,gte:s}:{numberRange:n,lte:m,gte:s})},N=l=>{if(e||b(),!e)return;const t=Number(l);if(t>e.lteMax)return;let{lte:n}=e,{gte:s}=e;t>=e.gteMin&&t<=e.lteMax&&(s=t),(!e.lte||t>=e.lte)&&(n=e.lteMax),g({gte:s,lte:n}),c({numberRange:e,lte:n,gte:s})},C=l=>{if(e||b(),!e)return;const t=Number(l);if(t<e.gteMin)return;let{lte:n}=e,{gte:s}=e;t>=e.gteMin&&t<=e.lteMax&&(n=t),(!e.gte||t<=e.gte)&&(s=e.gteMin),g({gte:s,lte:n}),c({numberRange:e,lte:n,gte:s})},q=[o.gte,o.lte];return a.jsxs(r.Stack,{spacing:"xs",alignX:"stretch",children:[a.jsx(r.Button,{variant:"link",onClick:h,children:"Clear"}),a.jsxs(r.Stack,{direction:"horizontal",children:[a.jsx(r.TextField,{label:e==null?void 0:e.gteMinLabel,type:"number",min:e==null?void 0:e.gteMin,max:e==null?void 0:e.lteMax,value:o.gte.toString(),onChange:N}),a.jsx(r.TextField,{label:e==null?void 0:e.lteMaxLabel,type:"number",min:e==null?void 0:e.gteMin,max:e==null?void 0:e.lteMax,value:o.lte.toString(),onChange:C})]}),a.jsx(L.MUISlider,{value:q,onChange:S,min:e==null?void 0:e.gteMin,max:e==null?void 0:e.lteMax,valueLabelDisplay:"auto"})]})});exports.NumberRangeFilter=I;
package/dist/index28.js CHANGED
@@ -3,7 +3,7 @@ import { useState as y, useCallback as I } from "react";
3
3
  import { observer as k } from "mobx-react";
4
4
  import E from "lodash/debounce";
5
5
  import { Stack as c, Button as _, TextField as p } from "@veeqo/ui";
6
- import { MUISlider as A } from "./index99.js";
6
+ import { MUISlider as A } from "./index101.js";
7
7
  import { NumberRangeFilter as h } from "./index63.js";
8
8
  import { useBusinessLogic as B } from "./index7.js";
9
9
  import { useStores as T } from "./index57.js";
package/dist/index31.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),s=require("mobx-react"),n=require("@veeqo/ui"),o=require("./index7.cjs"),u=require("./index86.cjs"),c=require("./index32.cjs"),a=s.observer(()=>{const{GROUP_MAP:t}=o.useBusinessLogic();return e.jsx(u.AdaptiveHeightContainer,{style:{minWidth:"360px"},children:e.jsx(n.Stack,{alignX:"stretch",children:Array.from(t).map(([r,i])=>e.jsx(c.FilterGroup,{data:i},r))})})});exports.FiltersList=a;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),s=require("mobx-react"),n=require("@veeqo/ui"),o=require("./index7.cjs"),u=require("./index93.cjs"),c=require("./index32.cjs"),a=s.observer(()=>{const{GROUP_MAP:t}=o.useBusinessLogic();return e.jsx(u.AdaptiveHeightContainer,{style:{minWidth:"360px"},children:e.jsx(n.Stack,{alignX:"stretch",children:Array.from(t).map(([r,i])=>e.jsx(c.FilterGroup,{data:i},r))})})});exports.FiltersList=a;
package/dist/index31.js CHANGED
@@ -2,7 +2,7 @@ import { jsx as r } from "react/jsx-runtime";
2
2
  import { observer as e } from "mobx-react";
3
3
  import { Stack as m } from "@veeqo/ui";
4
4
  import { useBusinessLogic as s } from "./index7.js";
5
- import { AdaptiveHeightContainer as p } from "./index86.js";
5
+ import { AdaptiveHeightContainer as p } from "./index93.js";
6
6
  import { FilterGroup as n } from "./index32.js";
7
7
  const u = e(() => {
8
8
  const { GROUP_MAP: t } = s();
package/dist/index33.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("react/jsx-runtime"),c=require("react"),u=require("@veeqo/ui"),W=require("mobx-react"),Y=require("./index60.cjs"),$=require("./index58.cjs"),z=require("./index37.cjs"),G=require("./index40.cjs"),J=require("./index52.cjs"),K=require("./index7.cjs"),Q=require("./index57.cjs"),X=require("./index88.cjs"),Z=W.observer(({view:e,viewTabSlotValueMap:l,isLoadingTableData:y})=>{const{VIEW_TYPE:L,SEARCH_FILTER_ID:a}=K.useBusinessLogic(),{Filters:{activeViewId:f,initFiltersFromView:w,discardChanges:m,initFromUrl:h,filters:F,setFilter:S},Views:{draftViewsMap:j},Notifications:{notify:N}}=Q.useStores(),{viewsMap:g,defaultCustomViewId:E,isLoading:R}=$.useViews(),{isLoading:T}=Y.useCustomViews({type:L}),[s,P]=c.useState(null),k=o=>{const x=F.get(a);if(g.has(o)){const r=g.get(o);r&&(w(r),m(!0),h())}else{const r=j.get(o);r?(w(r),m(!0),h()):N({type:"error",text:"Failed to load view"})}x&&S(a,x)},n=(e==null?void 0:e.id)===f,t=e.originalView!==void 0,V=e.originalView===void 0,A=(l==null?void 0:l.get(`${e==null?void 0:e.id}`))||void 0,d=(e==null?void 0:e.label)||"",B=R||T,D=c.useRef(!1);!B&&!D.current&&n&&e.id===E&&s&&(D.current=!0,s&&f===e.id&&window.requestAnimationFrame(()=>{var o;(o=s.parentElement)==null||o.scrollBy({behavior:"smooth",left:s.offsetLeft})}));const p=c.useMemo(()=>t?"draft":e.editable?"saved":"fixed",[t,e.editable]),{actions:{create:{handleSaveDraft:I},menu:{toggleDropdown:C},delete:{closeDeleteConfirmation:M,handleDelete:_,handleDeleteDraftView:q}},state:{shouldShowDeleteConfirmation:O},actions:H,state:v}=J.useDropdownManager(e),U=c.useMemo(()=>{if(V)return C;if(t)return q},[q,t,V,C]);return i.jsxs(i.Fragment,{children:[i.jsx(u.ViewTab,{colourPalette:u.theme.colors.secondary.blue,className:"act-react-listing-custom-view",active:n,id:e==null?void 0:e.id,name:d,type:p,count:y?i.jsx(u.Loader,{type:"ThreeDots",width:12,height:12,color:n?"#fff":u.theme.colors.neutral.ink.dark}):A,onClick:k,subAction:U,ariaContext:"orders",ref:P,"aria-controls":"options-dropdown","aria-expanded":v.shouldShowDropdown,"aria-haspopup":"dialog"},e==null?void 0:e.id),i.jsx(X.Confirmation,{shouldShow:O,viewName:d,onCancel:M,onDelete:_}),i.jsx(z.PillNotifications,{tabType:p,isActive:n,initialViewName:d,shouldShowCreateViewNotification:t,handleSaveDraft:I}),i.jsx(G.ViewDropdowns,{referenceElement:s,tab:e,...H,...v})]})});exports.ViewTab=Z;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("react/jsx-runtime"),a=require("react"),c=require("@veeqo/ui"),W=require("mobx-react"),Y=require("./index60.cjs"),z=require("./index58.cjs"),G=require("./index37.cjs"),J=require("./index40.cjs"),K=require("./index52.cjs"),Q=require("./index79.cjs"),X=require("./index7.cjs"),Z=require("./index57.cjs"),$=require("./index80.cjs"),b=W.observer(({view:e})=>{const{VIEW_TYPE:S,SEARCH_FILTER_ID:l}=X.useBusinessLogic(),{Filters:{activeViewId:d,initFiltersFromView:w,discardChanges:f,initFromUrl:m,filters:x,setFilter:L},Views:{draftViewsMap:T},Notifications:{notify:y}}=Z.useStores(),{viewsMap:V,defaultCustomViewId:F,isLoading:j}=z.useViews(),{isLoading:N}=Y.useCustomViews({type:S}),{viewCounts:E,isLoadingTableData:M}=Q.useViewCounts(e.id),[s,R]=a.useState(null),k=o=>{const q=x.get(l);if(V.has(o)){const n=V.get(o);n&&(w(n),f(!0),m())}else{const n=T.get(o);n?(w(n),f(!0),m()):y({type:"error",text:"Failed to load view"})}q&&L(l,q)},r=(e==null?void 0:e.id)===d,t=e.originalView!==void 0,h=e.originalView===void 0,P=E,u=(e==null?void 0:e.label)||"",A=j||N,g=a.useRef(!1);!A&&!g.current&&r&&e.id===F&&s&&(g.current=!0,s&&d===e.id&&window.requestAnimationFrame(()=>{var o;(o=s.parentElement)==null||o.scrollBy({behavior:"smooth",left:s.offsetLeft})}));const p=a.useMemo(()=>t?"draft":e.editable?"saved":"fixed",[t,e.editable]),{actions:{create:{handleSaveDraft:B},menu:{toggleDropdown:D},delete:{closeDeleteConfirmation:I,handleDelete:_,handleDeleteDraftView:C}},state:{shouldShowDeleteConfirmation:H},actions:O,state:v}=K.useDropdownManager(e),U=a.useMemo(()=>{if(h)return D;if(t)return C},[C,t,h,D]);return i.jsxs(i.Fragment,{children:[i.jsx(c.ViewTab,{colourPalette:c.theme.colors.secondary.blue,className:"act-react-listing-custom-view",active:r,id:e==null?void 0:e.id,name:u,type:p,count:M?i.jsx(c.Loader,{type:"ThreeDots",width:12,height:12,color:r?"#fff":c.theme.colors.neutral.ink.dark}):P,onClick:k,subAction:U,ariaContext:"orders",ref:R,"aria-controls":"options-dropdown","aria-expanded":v.shouldShowDropdown,"aria-haspopup":"dialog"},e==null?void 0:e.id),i.jsx($.Confirmation,{shouldShow:H,viewName:u,onCancel:I,onDelete:_}),i.jsx(G.PillNotifications,{tabType:p,isActive:r,initialViewName:u,shouldShowCreateViewNotification:t,handleSaveDraft:B}),i.jsx(J.ViewDropdowns,{referenceElement:s,tab:e,...O,...v})]})});exports.ViewTab=b;
package/dist/index33.js CHANGED
@@ -1,79 +1,80 @@
1
1
  import { jsxs as W, Fragment as Y, jsx as s } from "react/jsx-runtime";
2
- import { useState as z, useRef as G, useMemo as F } from "react";
3
- import { ViewTab as J, theme as L, Loader as K } from "@veeqo/ui";
4
- import { observer as M } from "mobx-react";
2
+ import { useState as $, useRef as z, useMemo as C } from "react";
3
+ import { ViewTab as G, theme as L, Loader as J } from "@veeqo/ui";
4
+ import { observer as K } from "mobx-react";
5
5
  import { useCustomViews as Q } from "./index60.js";
6
6
  import { useViews as X } from "./index58.js";
7
7
  import { PillNotifications as Z } from "./index37.js";
8
8
  import { ViewDropdowns as b } from "./index40.js";
9
9
  import { useDropdownManager as ee } from "./index52.js";
10
- import { useBusinessLogic as oe } from "./index7.js";
11
- import { useStores as ie } from "./index57.js";
12
- import { Confirmation as re } from "./index88.js";
13
- const he = M(({ view: e, viewTabSlotValueMap: c, isLoadingTableData: y }) => {
14
- const { VIEW_TYPE: x, SEARCH_FILTER_ID: d } = oe(), {
15
- Filters: { activeViewId: a, initFiltersFromView: f, discardChanges: m, initFromUrl: u, filters: E, setFilter: N },
16
- Views: { draftViewsMap: S },
17
- Notifications: { notify: T }
18
- } = ie(), { viewsMap: w, defaultCustomViewId: k, isLoading: A } = X(), { isLoading: R } = Q({ type: x }), [i, I] = z(null), P = (o) => {
19
- const v = E.get(d);
20
- if (w.has(o)) {
21
- const t = w.get(o);
22
- t && (f(t), m(!0), u());
10
+ import { useViewCounts as oe } from "./index79.js";
11
+ import { useBusinessLogic as ie } from "./index7.js";
12
+ import { useStores as te } from "./index57.js";
13
+ import { Confirmation as re } from "./index80.js";
14
+ const ge = K(({ view: e }) => {
15
+ const { VIEW_TYPE: S, SEARCH_FILTER_ID: l } = ie(), {
16
+ Filters: { activeViewId: c, initFiltersFromView: d, discardChanges: f, initFromUrl: m, filters: T, setFilter: F },
17
+ Views: { draftViewsMap: y },
18
+ Notifications: { notify: x }
19
+ } = te(), { viewsMap: u, defaultCustomViewId: E, isLoading: N } = X(), { isLoading: k } = Q({ type: S }), { viewCounts: A, isLoadingTableData: M } = oe(e.id), [i, R] = $(null), I = (o) => {
20
+ const v = T.get(l);
21
+ if (u.has(o)) {
22
+ const r = u.get(o);
23
+ r && (d(r), f(!0), m());
23
24
  } else {
24
- const t = S.get(o);
25
- t ? (f(t), m(!0), u()) : T({
25
+ const r = y.get(o);
26
+ r ? (d(r), f(!0), m()) : x({
26
27
  type: "error",
27
28
  text: "Failed to load view"
28
29
  });
29
30
  }
30
- v && N(d, v);
31
- }, n = (e == null ? void 0 : e.id) === a, r = e.originalView !== void 0, p = e.originalView === void 0, _ = (c == null ? void 0 : c.get(`${e == null ? void 0 : e.id}`)) || void 0, l = (e == null ? void 0 : e.label) || "", j = A || R, h = G(!1);
32
- !j && !h.current && n && e.id === k && i && (h.current = !0, i && a === e.id && window.requestAnimationFrame(() => {
31
+ v && F(l, v);
32
+ }, n = (e == null ? void 0 : e.id) === c, t = e.originalView !== void 0, w = e.originalView === void 0, P = A, a = (e == null ? void 0 : e.label) || "", _ = N || k, p = z(!1);
33
+ !_ && !p.current && n && e.id === E && i && (p.current = !0, i && c === e.id && window.requestAnimationFrame(() => {
33
34
  var o;
34
35
  (o = i.parentElement) == null || o.scrollBy({
35
36
  behavior: "smooth",
36
37
  left: i.offsetLeft
37
38
  });
38
39
  }));
39
- const g = F(() => r ? "draft" : e.editable ? "saved" : "fixed", [r, e.editable]), {
40
+ const h = C(() => t ? "draft" : e.editable ? "saved" : "fixed", [t, e.editable]), {
40
41
  actions: {
41
- create: { handleSaveDraft: B },
42
+ create: { handleSaveDraft: j },
42
43
  menu: { toggleDropdown: V },
43
- delete: { closeDeleteConfirmation: $, handleDelete: q, handleDeleteDraftView: D }
44
+ delete: { closeDeleteConfirmation: B, handleDelete: q, handleDeleteDraftView: g }
44
45
  },
45
46
  state: { shouldShowDeleteConfirmation: H },
46
47
  actions: O,
47
- state: C
48
- } = ee(e), U = F(() => {
49
- if (p) return V;
50
- if (r) return D;
51
- }, [D, r, p, V]);
48
+ state: D
49
+ } = ee(e), U = C(() => {
50
+ if (w) return V;
51
+ if (t) return g;
52
+ }, [g, t, w, V]);
52
53
  return /* @__PURE__ */ W(Y, { children: [
53
54
  /* @__PURE__ */ s(
54
- J,
55
+ G,
55
56
  {
56
57
  colourPalette: L.colors.secondary.blue,
57
58
  className: "act-react-listing-custom-view",
58
59
  active: n,
59
60
  id: e == null ? void 0 : e.id,
60
- name: l,
61
- type: g,
62
- count: y ? /* @__PURE__ */ s(
63
- K,
61
+ name: a,
62
+ type: h,
63
+ count: M ? /* @__PURE__ */ s(
64
+ J,
64
65
  {
65
66
  type: "ThreeDots",
66
67
  width: 12,
67
68
  height: 12,
68
69
  color: n ? "#fff" : L.colors.neutral.ink.dark
69
70
  }
70
- ) : _,
71
- onClick: P,
71
+ ) : P,
72
+ onClick: I,
72
73
  subAction: U,
73
74
  ariaContext: "orders",
74
- ref: I,
75
+ ref: R,
75
76
  "aria-controls": "options-dropdown",
76
- "aria-expanded": C.shouldShowDropdown,
77
+ "aria-expanded": D.shouldShowDropdown,
77
78
  "aria-haspopup": "dialog"
78
79
  },
79
80
  e == null ? void 0 : e.id
@@ -82,24 +83,24 @@ const he = M(({ view: e, viewTabSlotValueMap: c, isLoadingTableData: y }) => {
82
83
  re,
83
84
  {
84
85
  shouldShow: H,
85
- viewName: l,
86
- onCancel: $,
86
+ viewName: a,
87
+ onCancel: B,
87
88
  onDelete: q
88
89
  }
89
90
  ),
90
91
  /* @__PURE__ */ s(
91
92
  Z,
92
93
  {
93
- tabType: g,
94
+ tabType: h,
94
95
  isActive: n,
95
- initialViewName: l,
96
- shouldShowCreateViewNotification: r,
97
- handleSaveDraft: B
96
+ initialViewName: a,
97
+ shouldShowCreateViewNotification: t,
98
+ handleSaveDraft: j
98
99
  }
99
100
  ),
100
- /* @__PURE__ */ s(b, { referenceElement: i, tab: e, ...O, ...C })
101
+ /* @__PURE__ */ s(b, { referenceElement: i, tab: e, ...O, ...D })
101
102
  ] });
102
103
  });
103
104
  export {
104
- he as ViewTab
105
+ ge as ViewTab
105
106
  };