@simpli-route/apollo-ds 0.1.7 → 0.1.9

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 (69) hide show
  1. package/dist/components/ProgressBar/types.d.ts +9 -1
  2. package/dist/index.cjs11.js +1 -1
  3. package/dist/index.cjs12.js +1 -1
  4. package/dist/index.cjs13.js +1 -1
  5. package/dist/index.cjs14.js +1 -1
  6. package/dist/index.cjs18.js +1 -1
  7. package/dist/index.cjs21.js +1 -1
  8. package/dist/index.cjs30.js +1 -1
  9. package/dist/index.cjs31.js +1 -1
  10. package/dist/index.cjs32.js +1 -1
  11. package/dist/index.cjs33.js +1 -1
  12. package/dist/index.cjs34.js +1 -1
  13. package/dist/index.cjs35.js +1 -1
  14. package/dist/index.cjs37.js +1 -1
  15. package/dist/index.cjs38.js +1 -1
  16. package/dist/index.cjs39.js +1 -1
  17. package/dist/index.cjs4.js +1 -1
  18. package/dist/index.cjs40.js +1 -1
  19. package/dist/index.cjs41.js +1 -1
  20. package/dist/index.cjs42.js +1 -1
  21. package/dist/index.cjs43.js +1 -1
  22. package/dist/index.cjs45.js +1 -1
  23. package/dist/index.cjs46.js +1 -1
  24. package/dist/index.cjs47.js +1 -1
  25. package/dist/index.cjs48.js +1 -1
  26. package/dist/index.cjs49.js +1 -1
  27. package/dist/index.cjs50.js +1 -1
  28. package/dist/index.cjs51.js +1 -1
  29. package/dist/index.cjs52.js +1 -1
  30. package/dist/index.cjs53.js +1 -1
  31. package/dist/index.cjs54.js +1 -1
  32. package/dist/index.cjs55.js +1 -1
  33. package/dist/index.cjs6.js +1 -1
  34. package/dist/index.cjs7.js +1 -1
  35. package/dist/index.es11.js +2 -2
  36. package/dist/index.es12.js +2 -2
  37. package/dist/index.es13.js +3 -3
  38. package/dist/index.es14.js +1 -1
  39. package/dist/index.es18.js +46 -44
  40. package/dist/index.es21.js +1 -1
  41. package/dist/index.es30.js +11 -163
  42. package/dist/index.es31.js +163 -30
  43. package/dist/index.es32.js +30 -11
  44. package/dist/index.es33.js +1 -1
  45. package/dist/index.es34.js +94 -17
  46. package/dist/index.es35.js +11 -18
  47. package/dist/index.es37.js +1 -1
  48. package/dist/index.es38.js +41 -92
  49. package/dist/index.es39.js +9 -12
  50. package/dist/index.es4.js +1 -1
  51. package/dist/index.es40.js +10 -45
  52. package/dist/index.es41.js +31 -10
  53. package/dist/index.es42.js +19 -10
  54. package/dist/index.es43.js +17 -28
  55. package/dist/index.es45.js +1 -1
  56. package/dist/index.es46.js +1 -1
  57. package/dist/index.es47.js +19 -2
  58. package/dist/index.es48.js +19 -2
  59. package/dist/index.es49.js +14 -12
  60. package/dist/index.es50.js +12 -10
  61. package/dist/index.es51.js +13 -15
  62. package/dist/index.es52.js +30 -21
  63. package/dist/index.es53.js +56 -19
  64. package/dist/index.es54.js +2 -30
  65. package/dist/index.es55.js +2 -56
  66. package/dist/index.es6.js +1 -1
  67. package/dist/index.es7.js +1 -1
  68. package/dist/style.css +0 -4
  69. package/package.json +1 -1
@@ -1,165 +1,13 @@
1
- import { cva as e } from "class-variance-authority";
2
- const t = [
3
- {
4
- intent: "primary",
5
- isHovered: !0,
6
- isDisabled: !1,
7
- isActive: !1,
8
- class: "bg-primary-100"
9
- },
10
- {
11
- intent: "secondary",
12
- isHovered: !0,
13
- isDisabled: !1,
14
- isActive: !1,
15
- class: "bg-primary-500 text-primary-50"
16
- },
17
- {
18
- intent: "minimal",
19
- isHovered: !0,
20
- isDisabled: !1,
21
- isActive: !1,
22
- class: "bg-neutral-200 text-neutral-800"
23
- },
24
- {
25
- intent: "error",
26
- isHovered: !0,
27
- isDisabled: !1,
28
- isActive: !1,
29
- class: "bg-error-100"
30
- }
31
- ], r = [
32
- {
33
- intent: "primary",
34
- isActive: !0,
35
- isDisabled: !1,
36
- class: "bg-primary-500 text-primary-50"
37
- },
38
- {
39
- intent: "primary",
40
- isActive: !0,
41
- isDisabled: !0,
42
- class: "bg-primary-300 text-primary-100"
43
- },
44
- {
45
- intent: "secondary",
46
- isActive: !0,
47
- isDisabled: !1,
48
- class: "bg-primary-500 text-primary-50"
49
- },
50
- {
51
- intent: "secondary",
52
- isActive: !0,
53
- isDisabled: !0,
54
- class: "bg-primary-100 text-primary-300"
55
- },
56
- {
57
- intent: "minimal",
58
- isActive: !0,
59
- isDisabled: !1,
60
- class: "text-primary-500"
61
- },
62
- {
63
- intent: "minimal",
64
- isActive: !0,
65
- isDisabled: !0,
66
- class: "text-neutral-700"
67
- },
68
- {
69
- intent: "error",
70
- isActive: !0,
71
- isDisabled: !1,
72
- class: "bg-error-700 text-error-50"
73
- },
74
- {
75
- intent: "error",
76
- isActive: !0,
77
- isDisabled: !0,
78
- class: "bg-error-300 text-error-100"
79
- }
80
- ], i = [
81
- {
82
- intent: "primary",
83
- isDisabled: !0,
84
- isActive: !1,
85
- class: "text-neutral-600"
86
- },
87
- {
88
- intent: "primary",
89
- isDisabled: !0,
90
- isActive: !0,
91
- class: "bg-primary-300 text-primary-100"
92
- },
93
- {
94
- intent: "secondary",
95
- isDisabled: !0,
96
- isActive: !1,
97
- class: "bg-neutral-400 text-neutral-600"
98
- },
99
- {
100
- intent: "secondary",
101
- isDisabled: !0,
102
- isActive: !0,
103
- class: "bg-primary-100 text-primary-300"
104
- },
105
- {
106
- intent: "minimal",
107
- isDisabled: !0,
108
- isActive: !1,
109
- class: "text-neutral-600"
110
- },
111
- {
112
- intent: "minimal",
113
- isDisabled: !0,
114
- isActive: !0,
115
- class: "text-neutral-700"
116
- },
117
- {
118
- intent: "error",
119
- isDisabled: !0,
120
- isActive: !1,
121
- class: "text-neutral-600"
122
- },
123
- {
124
- intent: "error",
125
- isDisabled: !0,
126
- isActive: !0,
127
- class: "bg-error-300 text-primary-100"
128
- }
129
- ], a = e(
130
- "inline-flex items-center justify-center rounded-lg border border-transparent transition duration-150 ease-in-out focus:outline-none",
131
- {
132
- variants: {
133
- intent: {
134
- primary: "bg-transparent text-primary-500",
135
- secondary: "bg-primary-200 text-primary-500",
136
- minimal: "bg-transparent text-neutral-700",
137
- error: "bg-transparent text-error-500"
138
- },
139
- size: {
140
- xxs: "p-1",
141
- xs: "p-2",
142
- sm: "p-2.5",
143
- md: "p-3",
144
- lg: "p-4"
145
- },
146
- isDisabled: {
147
- true: "pointer-events-none cursor-not-allowed"
148
- },
149
- isHovered: {
150
- true: ""
151
- },
152
- isActive: {
153
- true: ""
154
- },
155
- isFocused: {
156
- false: "",
157
- true: "focus:outline-none focus:ring-offset-2 outline-none ring-2 ring-sky-400"
158
- }
159
- },
160
- compoundVariants: [...t, ...r, ...i]
161
- }
162
- );
1
+ import { D as o } from "./index.es47.js";
2
+ import { I as n } from "./index.es48.js";
3
+ import { M as r } from "./index.es49.js";
4
+ import { P as I } from "./index.es50.js";
5
+ import { U as a } from "./index.es51.js";
6
+ var f = o, i = n, t = r, e = I, _ = a;
163
7
  export {
164
- a as buttonVariants
8
+ f as DownChevronIcon,
9
+ i as InfoIcon,
10
+ t as MinusIcon,
11
+ e as PlusIcon,
12
+ _ as UpChevronIcon
165
13
  };
@@ -1,32 +1,165 @@
1
- import { j as e } from "./index.es19.js";
2
- import { cn as l } from "./index.es20.js";
3
- const m = (r) => {
4
- const { isIndeterminate: t, isSelected: s, className: n, isHovered: a } = r, o = a && !s && !t ? "text-neutral-500" : "", i = !!(o || s);
5
- return /* @__PURE__ */ e.jsx("svg", { className: l("stroke-current", o, n), viewBox: "-1 1 17 17", children: t ? /* @__PURE__ */ e.jsx(
6
- "line",
7
- {
8
- x1: 1,
9
- y1: 10,
10
- x2: 14,
11
- y2: 10,
12
- fill: "none",
13
- strokeWidth: 2,
14
- strokeDasharray: 14,
15
- strokeDashoffset: s ? 28 : 42,
16
- style: { transition: "all 400ms" }
17
- }
18
- ) : /* @__PURE__ */ e.jsx(
19
- "polyline",
20
- {
21
- points: "1 9 7 14 15 4",
22
- fill: "none",
23
- strokeWidth: 2,
24
- strokeDasharray: 22,
25
- strokeDashoffset: i ? 44 : 66,
26
- style: { transition: "all 400ms" }
27
- }
28
- ) });
29
- };
1
+ import { cva as e } from "class-variance-authority";
2
+ const t = [
3
+ {
4
+ intent: "primary",
5
+ isHovered: !0,
6
+ isDisabled: !1,
7
+ isActive: !1,
8
+ class: "bg-primary-100"
9
+ },
10
+ {
11
+ intent: "secondary",
12
+ isHovered: !0,
13
+ isDisabled: !1,
14
+ isActive: !1,
15
+ class: "bg-primary-500 text-primary-50"
16
+ },
17
+ {
18
+ intent: "minimal",
19
+ isHovered: !0,
20
+ isDisabled: !1,
21
+ isActive: !1,
22
+ class: "bg-neutral-200 text-neutral-800"
23
+ },
24
+ {
25
+ intent: "error",
26
+ isHovered: !0,
27
+ isDisabled: !1,
28
+ isActive: !1,
29
+ class: "bg-error-100"
30
+ }
31
+ ], r = [
32
+ {
33
+ intent: "primary",
34
+ isActive: !0,
35
+ isDisabled: !1,
36
+ class: "bg-primary-500 text-primary-50"
37
+ },
38
+ {
39
+ intent: "primary",
40
+ isActive: !0,
41
+ isDisabled: !0,
42
+ class: "bg-primary-300 text-primary-100"
43
+ },
44
+ {
45
+ intent: "secondary",
46
+ isActive: !0,
47
+ isDisabled: !1,
48
+ class: "bg-primary-500 text-primary-50"
49
+ },
50
+ {
51
+ intent: "secondary",
52
+ isActive: !0,
53
+ isDisabled: !0,
54
+ class: "bg-primary-100 text-primary-300"
55
+ },
56
+ {
57
+ intent: "minimal",
58
+ isActive: !0,
59
+ isDisabled: !1,
60
+ class: "text-primary-500"
61
+ },
62
+ {
63
+ intent: "minimal",
64
+ isActive: !0,
65
+ isDisabled: !0,
66
+ class: "text-neutral-700"
67
+ },
68
+ {
69
+ intent: "error",
70
+ isActive: !0,
71
+ isDisabled: !1,
72
+ class: "bg-error-700 text-error-50"
73
+ },
74
+ {
75
+ intent: "error",
76
+ isActive: !0,
77
+ isDisabled: !0,
78
+ class: "bg-error-300 text-error-100"
79
+ }
80
+ ], i = [
81
+ {
82
+ intent: "primary",
83
+ isDisabled: !0,
84
+ isActive: !1,
85
+ class: "text-neutral-600"
86
+ },
87
+ {
88
+ intent: "primary",
89
+ isDisabled: !0,
90
+ isActive: !0,
91
+ class: "bg-primary-300 text-primary-100"
92
+ },
93
+ {
94
+ intent: "secondary",
95
+ isDisabled: !0,
96
+ isActive: !1,
97
+ class: "bg-neutral-400 text-neutral-600"
98
+ },
99
+ {
100
+ intent: "secondary",
101
+ isDisabled: !0,
102
+ isActive: !0,
103
+ class: "bg-primary-100 text-primary-300"
104
+ },
105
+ {
106
+ intent: "minimal",
107
+ isDisabled: !0,
108
+ isActive: !1,
109
+ class: "text-neutral-600"
110
+ },
111
+ {
112
+ intent: "minimal",
113
+ isDisabled: !0,
114
+ isActive: !0,
115
+ class: "text-neutral-700"
116
+ },
117
+ {
118
+ intent: "error",
119
+ isDisabled: !0,
120
+ isActive: !1,
121
+ class: "text-neutral-600"
122
+ },
123
+ {
124
+ intent: "error",
125
+ isDisabled: !0,
126
+ isActive: !0,
127
+ class: "bg-error-300 text-primary-100"
128
+ }
129
+ ], a = e(
130
+ "inline-flex items-center justify-center rounded-lg border border-transparent transition duration-150 ease-in-out focus:outline-none",
131
+ {
132
+ variants: {
133
+ intent: {
134
+ primary: "bg-transparent text-primary-500",
135
+ secondary: "bg-primary-200 text-primary-500",
136
+ minimal: "bg-transparent text-neutral-700",
137
+ error: "bg-transparent text-error-500"
138
+ },
139
+ size: {
140
+ xxs: "p-1",
141
+ xs: "p-2",
142
+ sm: "p-2.5",
143
+ md: "p-3",
144
+ lg: "p-4"
145
+ },
146
+ isDisabled: {
147
+ true: "pointer-events-none cursor-not-allowed"
148
+ },
149
+ isHovered: {
150
+ true: ""
151
+ },
152
+ isActive: {
153
+ true: ""
154
+ },
155
+ isFocused: {
156
+ false: "",
157
+ true: "focus:outline-none focus:ring-offset-2 outline-none ring-2 ring-sky-400"
158
+ }
159
+ },
160
+ compoundVariants: [...t, ...r, ...i]
161
+ }
162
+ );
30
163
  export {
31
- m as MarkIcon
164
+ a as buttonVariants
32
165
  };
@@ -1,13 +1,32 @@
1
- import { D as o } from "./index.es49.js";
2
- import { I as n } from "./index.es50.js";
3
- import { M as r } from "./index.es51.js";
4
- import { P as I } from "./index.es52.js";
5
- import { U as a } from "./index.es53.js";
6
- var f = o, i = n, t = r, e = I, _ = a;
1
+ import { j as e } from "./index.es19.js";
2
+ import { cn as l } from "./index.es20.js";
3
+ const m = (r) => {
4
+ const { isIndeterminate: t, isSelected: s, className: n, isHovered: a } = r, o = a && !s && !t ? "text-neutral-500" : "", i = !!(o || s);
5
+ return /* @__PURE__ */ e.jsx("svg", { className: l("stroke-current", o, n), viewBox: "-1 1 17 17", children: t ? /* @__PURE__ */ e.jsx(
6
+ "line",
7
+ {
8
+ x1: 1,
9
+ y1: 10,
10
+ x2: 14,
11
+ y2: 10,
12
+ fill: "none",
13
+ strokeWidth: 2,
14
+ strokeDasharray: 14,
15
+ strokeDashoffset: s ? 28 : 42,
16
+ style: { transition: "all 400ms" }
17
+ }
18
+ ) : /* @__PURE__ */ e.jsx(
19
+ "polyline",
20
+ {
21
+ points: "1 9 7 14 15 4",
22
+ fill: "none",
23
+ strokeWidth: 2,
24
+ strokeDasharray: 22,
25
+ strokeDashoffset: i ? 44 : 66,
26
+ style: { transition: "all 400ms" }
27
+ }
28
+ ) });
29
+ };
7
30
  export {
8
- f as DownChevronIcon,
9
- i as InfoIcon,
10
- t as MinusIcon,
11
- e as PlusIcon,
12
- _ as UpChevronIcon
31
+ m as MarkIcon
13
32
  };
@@ -1,7 +1,7 @@
1
1
  import { j as d } from "./index.es19.js";
2
2
  import { forwardRef as p } from "react";
3
3
  import { cn as f } from "./index.es20.js";
4
- import { overlayVariants as v } from "./index.es54.js";
4
+ import { overlayVariants as v } from "./index.es52.js";
5
5
  const y = (e, a) => {
6
6
  const { zIndex: s = 200, opacity: t = "md", blur: o = "sm", children: m, className: c, center: r = !0, fixed: i, ...n } = e, l = f(v({ opacity: t, fixed: i, center: r, blur: o }), `z-[${s}]`, c);
7
7
  return /* @__PURE__ */ d.jsx("div", { ref: a, className: l, "data-center": r || void 0, ...n, children: m });
@@ -1,21 +1,98 @@
1
- import { j as t } from "./index.es19.js";
2
- import { cn as c } from "./index.es20.js";
1
+ import { j as r } from "./index.es19.js";
2
+ import { cn as m } from "./index.es20.js";
3
+ import { SliderThumb as c } from "./index.es53.js";
3
4
  const i = ({
4
- label: e,
5
- description: x,
6
- errorMessage: s,
7
- isDisabled: l,
8
- isInvalid: r,
9
- children: n,
10
- renderLabelIcon: m
11
- }) => !e && !x && !n ? null : /* @__PURE__ */ t.jsxs("div", { className: "flex flex-col", children: [
12
- e ? /* @__PURE__ */ t.jsxs("div", { className: "flex items-center gap-x-1", children: [
13
- /* @__PURE__ */ t.jsx("p", { className: c("text-sm font-semibold", l ? "text-neutral-600" : "text-neutral-900"), children: e }),
14
- m ? /* @__PURE__ */ t.jsx(t.Fragment, { children: m }) : null
15
- ] }) : n,
16
- x && !s && /* @__PURE__ */ t.jsx("p", { className: c("text-xs", l ? "text-neutral-600" : "text-neutral-800"), children: x }),
17
- r && s && /* @__PURE__ */ t.jsx("p", { className: "text-sm text-red-500", children: s })
5
+ state: e,
6
+ type: n,
7
+ showTypeValue: t,
8
+ suffix: l,
9
+ classNameFilled: d,
10
+ classNameUnfilled: v,
11
+ modeTooltip: a,
12
+ positionTooltip: u,
13
+ classNameThumb: s
14
+ }) => /* @__PURE__ */ r.jsxs("div", { className: "relative", children: [
15
+ t === "default" ? /* @__PURE__ */ r.jsxs("div", { className: "flex justify-between", children: [
16
+ /* @__PURE__ */ r.jsxs(
17
+ "div",
18
+ {
19
+ className: "absolute top-4 text-sm text-neutral-900",
20
+ style: { left: `${e.getThumbPercent(0) * 100}%`, transform: "translateX(-50%)" },
21
+ children: [
22
+ e.values[0],
23
+ l
24
+ ]
25
+ }
26
+ ),
27
+ n === "range" && /* @__PURE__ */ r.jsxs(
28
+ "div",
29
+ {
30
+ className: "absolute top-4 text-sm text-neutral-900",
31
+ style: { left: `${e.getThumbPercent(1) * 100}%`, transform: "translateX(-50%)" },
32
+ children: [
33
+ e.values[1],
34
+ l
35
+ ]
36
+ }
37
+ )
38
+ ] }) : null,
39
+ /* @__PURE__ */ r.jsx(
40
+ "div",
41
+ {
42
+ className: m("absolute top-1/2 h-2 w-full -translate-y-1/2 rounded-full bg-primary-100", v)
43
+ }
44
+ ),
45
+ /* @__PURE__ */ r.jsx(
46
+ "div",
47
+ {
48
+ className: m("absolute top-1/2 h-2 -translate-y-1/2 rounded-full bg-primary-500", d),
49
+ style: {
50
+ width: `${n === "range" ? e.getThumbPercent(1) * 100 - e.getThumbPercent(0) * 100 : e.getThumbPercent(0) * 100}%`,
51
+ left: n === "range" ? `${e.getThumbPercent(0) * 100}%` : "0%"
52
+ }
53
+ }
54
+ ),
55
+ n === "range" ? /* @__PURE__ */ r.jsxs(r.Fragment, { children: [
56
+ /* @__PURE__ */ r.jsx(
57
+ c,
58
+ {
59
+ index: 0,
60
+ valuePercent: e.getThumbPercent(0),
61
+ value: e.values[0],
62
+ suffix: l,
63
+ modeTooltip: a,
64
+ positionTooltip: u,
65
+ showTypeValue: t,
66
+ classNameThumb: s
67
+ }
68
+ ),
69
+ /* @__PURE__ */ r.jsx(
70
+ c,
71
+ {
72
+ index: 1,
73
+ valuePercent: e.getThumbPercent(1),
74
+ value: e.values[1],
75
+ suffix: l,
76
+ modeTooltip: a,
77
+ positionTooltip: u,
78
+ showTypeValue: t,
79
+ classNameThumb: s
80
+ }
81
+ )
82
+ ] }) : /* @__PURE__ */ r.jsx(
83
+ c,
84
+ {
85
+ index: 0,
86
+ valuePercent: e.getThumbPercent(0),
87
+ value: e.values[0],
88
+ suffix: l,
89
+ modeTooltip: a,
90
+ positionTooltip: u,
91
+ showTypeValue: t,
92
+ classNameThumb: s
93
+ }
94
+ )
18
95
  ] });
19
96
  export {
20
- i as ContentSwitch
97
+ i as SliderContainerTrack
21
98
  };
@@ -1,22 +1,15 @@
1
- import { j as i } from "./index.es19.js";
2
- import { cn as m } from "./index.es20.js";
3
- import { indicatorVariants as n } from "./index.es27.js";
4
- const c = ({ isSelected: r, isDisabled: o, isHovered: f, size: a, dimensions: t }) => /* @__PURE__ */ i.jsx(
5
- "div",
6
- {
7
- className: m(
8
- n({
9
- isSelected: r,
10
- isDisabled: o,
11
- size: a,
12
- isHoveredWhenOff: f && !r
13
- })
14
- ),
15
- style: {
16
- left: r ? `${t.onLeft}px` : `${t.offLeft}px`
1
+ const o = (e, g, r = 1) => {
2
+ if (g === "range" && Array.isArray(e) && e.length === 2) {
3
+ const [t, f] = e;
4
+ if (f - t < r) {
5
+ if (t > f - r)
6
+ return [f - r, f];
7
+ if (f < t + r)
8
+ return [t, t + r];
17
9
  }
18
10
  }
19
- );
11
+ return e;
12
+ };
20
13
  export {
21
- c as SwitchIndicator
14
+ o as validateMinDistance
22
15
  };
@@ -1,5 +1,5 @@
1
1
  import { j as e } from "./index.es19.js";
2
- import { UpChevronIcon as n, DownChevronIcon as o } from "./index.es32.js";
2
+ import { UpChevronIcon as n, DownChevronIcon as o } from "./index.es30.js";
3
3
  import { Button as s } from "react-aria-components";
4
4
  import { cn as c } from "./index.es20.js";
5
5
  const x = ({ isDisabled: r }) => {