@simpli-route/apollo-ds 0.1.13 → 0.1.14

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 (78) hide show
  1. package/dist/components/Tabs/types.d.ts +2 -0
  2. package/dist/components/Tabs/variants.d.ts +1 -0
  3. package/dist/index.cjs10.js +1 -1
  4. package/dist/index.cjs11.js +1 -1
  5. package/dist/index.cjs12.js +1 -1
  6. package/dist/index.cjs14.js +1 -1
  7. package/dist/index.cjs15.js +1 -1
  8. package/dist/index.cjs16.js +1 -1
  9. package/dist/index.cjs23.js +1 -1
  10. package/dist/index.cjs24.js +1 -1
  11. package/dist/index.cjs25.js +1 -1
  12. package/dist/index.cjs26.js +1 -1
  13. package/dist/index.cjs3.js +1 -1
  14. package/dist/index.cjs34.js +1 -1
  15. package/dist/index.cjs35.js +1 -1
  16. package/dist/index.cjs36.js +1 -1
  17. package/dist/index.cjs37.js +1 -1
  18. package/dist/index.cjs38.js +1 -1
  19. package/dist/index.cjs39.js +1 -1
  20. package/dist/index.cjs4.js +1 -1
  21. package/dist/index.cjs40.js +1 -1
  22. package/dist/index.cjs41.js +1 -1
  23. package/dist/index.cjs42.js +1 -1
  24. package/dist/index.cjs43.js +1 -1
  25. package/dist/index.cjs44.js +1 -1
  26. package/dist/index.cjs45.js +1 -1
  27. package/dist/index.cjs46.js +1 -1
  28. package/dist/index.cjs48.js +1 -1
  29. package/dist/index.cjs5.js +1 -1
  30. package/dist/index.cjs52.js +1 -1
  31. package/dist/index.cjs53.js +1 -1
  32. package/dist/index.cjs54.js +1 -1
  33. package/dist/index.cjs55.js +1 -1
  34. package/dist/index.cjs56.js +1 -1
  35. package/dist/index.cjs57.js +1 -1
  36. package/dist/index.cjs58.js +1 -1
  37. package/dist/index.cjs6.js +1 -1
  38. package/dist/index.cjs7.js +1 -1
  39. package/dist/index.cjs9.js +1 -1
  40. package/dist/index.es10.js +2 -2
  41. package/dist/index.es11.js +2 -2
  42. package/dist/index.es12.js +2 -2
  43. package/dist/index.es14.js +2 -2
  44. package/dist/index.es15.js +2 -2
  45. package/dist/index.es16.js +28 -16
  46. package/dist/index.es23.js +1 -1
  47. package/dist/index.es24.js +167 -30
  48. package/dist/index.es25.js +20 -148
  49. package/dist/index.es26.js +31 -40
  50. package/dist/index.es3.js +3 -3
  51. package/dist/index.es34.js +30 -11
  52. package/dist/index.es35.js +10 -163
  53. package/dist/index.es36.js +19 -30
  54. package/dist/index.es37.js +20 -10
  55. package/dist/index.es38.js +9 -136
  56. package/dist/index.es39.js +10 -25
  57. package/dist/index.es4.js +2 -2
  58. package/dist/index.es40.js +136 -95
  59. package/dist/index.es41.js +26 -12
  60. package/dist/index.es42.js +96 -10
  61. package/dist/index.es43.js +12 -11
  62. package/dist/index.es44.js +11 -19
  63. package/dist/index.es45.js +161 -18
  64. package/dist/index.es46.js +8 -8
  65. package/dist/index.es48.js +22 -8
  66. package/dist/index.es5.js +1 -1
  67. package/dist/index.es52.js +30 -19
  68. package/dist/index.es53.js +56 -19
  69. package/dist/index.es54.js +12 -14
  70. package/dist/index.es55.js +10 -12
  71. package/dist/index.es56.js +15 -13
  72. package/dist/index.es57.js +21 -30
  73. package/dist/index.es58.js +19 -56
  74. package/dist/index.es6.js +1 -1
  75. package/dist/index.es7.js +1 -1
  76. package/dist/index.es9.js +1 -1
  77. package/dist/style.css +17 -2
  78. package/package.json +1 -1
@@ -1,18 +1,22 @@
1
1
  import { cva as r } from "class-variance-authority";
2
- const e = r("flex h-full max-h-12", {
2
+ const t = r("flex h-full max-h-12", {
3
3
  variants: {
4
4
  orientation: {
5
5
  horizontal: "flex-col",
6
6
  vertical: "flex-row"
7
7
  }
8
8
  }
9
- }), i = r(
10
- "group inline-flex cursor-pointer items-center px-4 py-3 text-base font-semibold focus-visible:outline-none",
9
+ }), a = r(
10
+ "group inline-flex cursor-pointer items-center px-4 py-3 text-sm font-semibold focus-visible:outline-none",
11
11
  {
12
12
  variants: {
13
13
  isActive: {
14
- true: "bg-primary-50 text-primary-600 ",
15
- false: "text-neutral-500 hover:text-primary-900"
14
+ true: "bg-primary-50 text-primary-500 ",
15
+ false: "text-primary-300 hover:text-primary-500 hover:border-primary-500"
16
+ },
17
+ isDisabledTab: {
18
+ true: "",
19
+ false: ""
16
20
  },
17
21
  orientation: {
18
22
  horizontal: "border-b-2 border-transparent",
@@ -20,14 +24,24 @@ const e = r("flex h-full max-h-12", {
20
24
  }
21
25
  },
22
26
  compoundVariants: [
27
+ {
28
+ isDisabledTab: !0,
29
+ orientation: "horizontal",
30
+ class: "border-b-2 cursor-not-allowed !border-neutral-600 !text-neutral-600 bg-neutral-200"
31
+ },
32
+ {
33
+ isDisabledTab: !0,
34
+ orientation: "vertical",
35
+ class: "border-r-2 cursor-not-allowed !border-neutral-600 !text-neutral-600 bg-neutral-200"
36
+ },
23
37
  { isActive: !0, orientation: "horizontal", class: "border-b-2 border-primary-500" },
24
- { isActive: !1, orientation: "horizontal", class: "border-b-2 border-primary-200" },
38
+ { isActive: !1, orientation: "horizontal", class: "border-b-2 border-primary-300" },
25
39
  { isActive: !1, orientation: "vertical", class: "border-r-2 border-primary-200" },
26
40
  { isActive: !0, orientation: "vertical", class: "border-r-2 border-primary-500" }
27
41
  ]
28
42
  }
29
43
  );
30
44
  export {
31
- i as tabVariants,
32
- e as tabsVariants
45
+ a as tabVariants,
46
+ t as tabsVariants
33
47
  };
package/dist/index.es5.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { j as r } from "./index.es21.js";
2
2
  import { usePress as j, useHover as b, useFocusRing as F } from "react-aria";
3
3
  import { cn as N } from "./index.es22.js";
4
- import { assistChipVariants as C } from "./index.es24.js";
4
+ import { assistChipVariants as C } from "./index.es26.js";
5
5
  const q = (i) => {
6
6
  const {
7
7
  style: t = "square",
@@ -1,21 +1,32 @@
1
- import t from "react";
2
- const e = t, l = ({
3
- title: r,
4
- titleId: a,
5
- ...o
6
- }, n) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
- fill: "currentColor",
8
- "aria-hidden": "true",
9
- viewBox: "0 0 24 24",
10
- xmlns: "http://www.w3.org/2000/svg",
11
- ref: n,
12
- "aria-labelledby": a
13
- }, o), r ? /* @__PURE__ */ e.createElement("title", {
14
- id: a
15
- }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
- d: "M22 7.838a.83.83 0 0 1-.242.592l-6.807 6.807a4.167 4.167 0 0 1-5.899 0L2.245 8.43a.837.837 0 0 1 1.183-1.184l6.807 6.808a2.5 2.5 0 0 0 3.533 0l6.807-6.808A.833.833 0 0 1 22 7.838"
17
- })), c = e.forwardRef(l);
18
- var w = c;
1
+ import { cva as l } from "class-variance-authority";
2
+ const e = l("absolute inset-0 z-[1000px] overflow-hidden", {
3
+ variants: {
4
+ opacity: {
5
+ sm: "bg-neutral-50/10",
6
+ md: "bg-neutral-50/20",
7
+ lg: "bg-neutral-50/30",
8
+ xl: "bg-neutral-50/50",
9
+ "2xl": "bg-neutral-50/60",
10
+ "3xl": "bg-neutral-50/75"
11
+ },
12
+ fixed: {
13
+ true: "fixed",
14
+ false: ""
15
+ },
16
+ center: {
17
+ true: "flex items-center justify-center",
18
+ false: ""
19
+ },
20
+ blur: {
21
+ sm: "backdrop-blur-sm",
22
+ md: "backdrop-blur-md",
23
+ lg: "backdrop-blur-lg",
24
+ xl: "backdrop-blur-xl",
25
+ "2xl": "backdrop-blur-2xl",
26
+ "3xl": "backdrop-blur-3xl"
27
+ }
28
+ }
29
+ });
19
30
  export {
20
- w as D
31
+ e as overlayVariants
21
32
  };
@@ -1,21 +1,58 @@
1
- import n from "react";
2
- const e = n, l = ({
3
- title: r,
4
- titleId: a,
5
- ...o
6
- }, t) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
- fill: "currentColor",
8
- "aria-hidden": "true",
9
- viewBox: "0 0 24 24",
10
- xmlns: "http://www.w3.org/2000/svg",
11
- ref: t,
12
- "aria-labelledby": a
13
- }, o), r ? /* @__PURE__ */ e.createElement("title", {
14
- id: a
15
- }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
- d: "M11.999 2C17.522 2 22 6.477 22 12s-4.478 10-10.001 10S2 17.523 2 12C1.999 6.478 6.476 2 11.999 2m0 1.5a8.501 8.501 0 1 0 0 17 8.501 8.501 0 0 0 0-17m-.004 6.999a.75.75 0 0 1 .744.648l.007.102.004 5.5a.75.75 0 0 1-1.494.103l-.006-.101-.004-5.501a.75.75 0 0 1 .75-.75zM12 7.002A1 1 0 1 1 12.063 9 1 1 0 0 1 12 7.002"
17
- })), c = e.forwardRef(l);
18
- var f = c;
1
+ import { j as r } from "./index.es21.js";
2
+ import { SliderThumb as l } from "react-aria-components";
3
+ import { cn as i } from "./index.es22.js";
4
+ import { Tooltip as d } from "./index.es17.js";
5
+ import { TooltipTrigger as g } from "./index.es18.js";
6
+ const j = ({
7
+ index: e,
8
+ valuePercent: m,
9
+ value: n,
10
+ suffix: a,
11
+ modeTooltip: p,
12
+ positionTooltip: o,
13
+ showTypeValue: s,
14
+ classNameThumb: t
15
+ }) => /* @__PURE__ */ r.jsx(
16
+ "div",
17
+ {
18
+ className: i("absolute", s === "tooltip" ? "top-[-6px]" : "top-1/2"),
19
+ style: { left: `${m * 100}%`, transform: "translate(-50%, -50%)" },
20
+ children: s === "tooltip" ? /* @__PURE__ */ r.jsxs(g, { closeDelay: 100, delay: 100, children: [
21
+ /* @__PURE__ */ r.jsx("div", { children: /* @__PURE__ */ r.jsx(
22
+ l,
23
+ {
24
+ index: e,
25
+ className: i(
26
+ "dragging:bg-primary-100 size-5 rounded-full bg-primary-500 outline-none ring-black transition focus-visible:ring-2",
27
+ t
28
+ )
29
+ }
30
+ ) }),
31
+ /* @__PURE__ */ r.jsxs(
32
+ d,
33
+ {
34
+ mode: p,
35
+ placement: o,
36
+ size: "sm",
37
+ className: i("!text-sm", o === "top" ? "!mb-6" : "!mt-6"),
38
+ children: [
39
+ n,
40
+ a
41
+ ]
42
+ }
43
+ )
44
+ ] }) : /* @__PURE__ */ r.jsx(
45
+ l,
46
+ {
47
+ index: e,
48
+ className: i(
49
+ "dragging:bg-primary-100 size-5 rounded-full bg-primary-500 outline-none ring-black transition focus-visible:ring-2",
50
+ t
51
+ )
52
+ }
53
+ )
54
+ }
55
+ );
19
56
  export {
20
- f as I
57
+ j as SliderThumb
21
58
  };
@@ -1,23 +1,21 @@
1
1
  import t from "react";
2
- const e = t, a = ({
2
+ const e = t, l = ({
3
3
  title: r,
4
- titleId: n,
5
- ...l
6
- }, o) => /* @__PURE__ */ e.createElement("svg", Object.assign({
4
+ titleId: a,
5
+ ...o
6
+ }, n) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
7
  fill: "currentColor",
8
8
  "aria-hidden": "true",
9
9
  viewBox: "0 0 24 24",
10
10
  xmlns: "http://www.w3.org/2000/svg",
11
- ref: o,
12
- "aria-labelledby": n
13
- }, l), r ? /* @__PURE__ */ e.createElement("title", {
14
- id: n
11
+ ref: n,
12
+ "aria-labelledby": a
13
+ }, o), r ? /* @__PURE__ */ e.createElement("title", {
14
+ id: a
15
15
  }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
- fillRule: "evenodd",
17
- d: "M2 11.85c0-.47.35-.85.783-.85h18.434c.432 0 .783.38.783.85s-.35.85-.783.85H2.783c-.432 0-.783-.38-.783-.85",
18
- clipRule: "evenodd"
19
- })), c = e.forwardRef(a);
20
- var s = c;
16
+ d: "M22 7.838a.83.83 0 0 1-.242.592l-6.807 6.807a4.167 4.167 0 0 1-5.899 0L2.245 8.43a.837.837 0 0 1 1.183-1.184l6.807 6.808a2.5 2.5 0 0 0 3.533 0l6.807-6.808A.833.833 0 0 1 22 7.838"
17
+ })), c = e.forwardRef(l);
18
+ var w = c;
21
19
  export {
22
- s as M
20
+ w as D
23
21
  };
@@ -1,23 +1,21 @@
1
- import t from "react";
2
- const e = t, n = ({
1
+ import n from "react";
2
+ const e = n, l = ({
3
3
  title: r,
4
4
  titleId: a,
5
- ...l
6
- }, o) => /* @__PURE__ */ e.createElement("svg", Object.assign({
5
+ ...o
6
+ }, t) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
7
  fill: "currentColor",
8
8
  "aria-hidden": "true",
9
9
  viewBox: "0 0 24 24",
10
10
  xmlns: "http://www.w3.org/2000/svg",
11
- ref: o,
11
+ ref: t,
12
12
  "aria-labelledby": a
13
- }, l), r ? /* @__PURE__ */ e.createElement("title", {
13
+ }, o), r ? /* @__PURE__ */ e.createElement("title", {
14
14
  id: a
15
15
  }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
- fillRule: "evenodd",
17
- d: "M11.885 2c.433 0 .783.35.783.783v8.434h8.549a.783.783 0 1 1 0 1.566h-8.549v8.434a.783.783 0 1 1-1.567 0v-8.434H2.783a.783.783 0 1 1 0-1.566h8.318V2.783c0-.432.351-.783.784-.783",
18
- clipRule: "evenodd"
19
- })), c = e.forwardRef(n);
20
- var d = c;
16
+ d: "M11.999 2C17.522 2 22 6.477 22 12s-4.478 10-10.001 10S2 17.523 2 12C1.999 6.478 6.476 2 11.999 2m0 1.5a8.501 8.501 0 1 0 0 17 8.501 8.501 0 0 0 0-17m-.004 6.999a.75.75 0 0 1 .744.648l.007.102.004 5.5a.75.75 0 0 1-1.494.103l-.006-.101-.004-5.501a.75.75 0 0 1 .75-.75zM12 7.002A1 1 0 1 1 12.063 9 1 1 0 0 1 12 7.002"
17
+ })), c = e.forwardRef(l);
18
+ var f = c;
21
19
  export {
22
- d as P
20
+ f as I
23
21
  };
@@ -1,21 +1,23 @@
1
- import l from "react";
2
- const e = l, n = ({
1
+ import t from "react";
2
+ const e = t, a = ({
3
3
  title: r,
4
- titleId: a,
5
- ...o
6
- }, t) => /* @__PURE__ */ e.createElement("svg", Object.assign({
4
+ titleId: n,
5
+ ...l
6
+ }, o) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
7
  fill: "currentColor",
8
8
  "aria-hidden": "true",
9
9
  viewBox: "0 0 24 24",
10
10
  xmlns: "http://www.w3.org/2000/svg",
11
- ref: t,
12
- "aria-labelledby": a
13
- }, o), r ? /* @__PURE__ */ e.createElement("title", {
14
- id: a
11
+ ref: o,
12
+ "aria-labelledby": n
13
+ }, l), r ? /* @__PURE__ */ e.createElement("title", {
14
+ id: n
15
15
  }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
- d: "M2 15.892a.83.83 0 0 1 .242-.591l6.807-6.807a4.166 4.166 0 0 1 5.899 0l6.807 6.806a.835.835 0 0 1-.912 1.365.8.8 0 0 1-.271-.181l-6.807-6.807a2.5 2.5 0 0 0-3.533 0l-6.807 6.806A.833.833 0 0 1 2 15.893Z"
17
- })), c = e.forwardRef(n);
18
- var i = c;
16
+ fillRule: "evenodd",
17
+ d: "M2 11.85c0-.47.35-.85.783-.85h18.434c.432 0 .783.38.783.85s-.35.85-.783.85H2.783c-.432 0-.783-.38-.783-.85",
18
+ clipRule: "evenodd"
19
+ })), c = e.forwardRef(a);
20
+ var s = c;
19
21
  export {
20
- i as U
22
+ s as M
21
23
  };
@@ -1,32 +1,23 @@
1
- import { cva as l } from "class-variance-authority";
2
- const e = l("absolute inset-0 z-[1000px] overflow-hidden", {
3
- variants: {
4
- opacity: {
5
- sm: "bg-neutral-50/10",
6
- md: "bg-neutral-50/20",
7
- lg: "bg-neutral-50/30",
8
- xl: "bg-neutral-50/50",
9
- "2xl": "bg-neutral-50/60",
10
- "3xl": "bg-neutral-50/75"
11
- },
12
- fixed: {
13
- true: "fixed",
14
- false: ""
15
- },
16
- center: {
17
- true: "flex items-center justify-center",
18
- false: ""
19
- },
20
- blur: {
21
- sm: "backdrop-blur-sm",
22
- md: "backdrop-blur-md",
23
- lg: "backdrop-blur-lg",
24
- xl: "backdrop-blur-xl",
25
- "2xl": "backdrop-blur-2xl",
26
- "3xl": "backdrop-blur-3xl"
27
- }
28
- }
29
- });
1
+ import t from "react";
2
+ const e = t, n = ({
3
+ title: r,
4
+ titleId: a,
5
+ ...l
6
+ }, o) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
+ fill: "currentColor",
8
+ "aria-hidden": "true",
9
+ viewBox: "0 0 24 24",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ref: o,
12
+ "aria-labelledby": a
13
+ }, l), r ? /* @__PURE__ */ e.createElement("title", {
14
+ id: a
15
+ }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
+ fillRule: "evenodd",
17
+ d: "M11.885 2c.433 0 .783.35.783.783v8.434h8.549a.783.783 0 1 1 0 1.566h-8.549v8.434a.783.783 0 1 1-1.567 0v-8.434H2.783a.783.783 0 1 1 0-1.566h8.318V2.783c0-.432.351-.783.784-.783",
18
+ clipRule: "evenodd"
19
+ })), c = e.forwardRef(n);
20
+ var d = c;
30
21
  export {
31
- e as overlayVariants
22
+ d as P
32
23
  };
@@ -1,58 +1,21 @@
1
- import { j as r } from "./index.es21.js";
2
- import { SliderThumb as l } from "react-aria-components";
3
- import { cn as i } from "./index.es22.js";
4
- import { Tooltip as d } from "./index.es17.js";
5
- import { TooltipTrigger as g } from "./index.es18.js";
6
- const j = ({
7
- index: e,
8
- valuePercent: m,
9
- value: n,
10
- suffix: a,
11
- modeTooltip: p,
12
- positionTooltip: o,
13
- showTypeValue: s,
14
- classNameThumb: t
15
- }) => /* @__PURE__ */ r.jsx(
16
- "div",
17
- {
18
- className: i("absolute", s === "tooltip" ? "top-[-6px]" : "top-1/2"),
19
- style: { left: `${m * 100}%`, transform: "translate(-50%, -50%)" },
20
- children: s === "tooltip" ? /* @__PURE__ */ r.jsxs(g, { closeDelay: 100, delay: 100, children: [
21
- /* @__PURE__ */ r.jsx("div", { children: /* @__PURE__ */ r.jsx(
22
- l,
23
- {
24
- index: e,
25
- className: i(
26
- "dragging:bg-primary-100 size-5 rounded-full bg-primary-500 outline-none ring-black transition focus-visible:ring-2",
27
- t
28
- )
29
- }
30
- ) }),
31
- /* @__PURE__ */ r.jsxs(
32
- d,
33
- {
34
- mode: p,
35
- placement: o,
36
- size: "sm",
37
- className: i("!text-sm", o === "top" ? "!mb-6" : "!mt-6"),
38
- children: [
39
- n,
40
- a
41
- ]
42
- }
43
- )
44
- ] }) : /* @__PURE__ */ r.jsx(
45
- l,
46
- {
47
- index: e,
48
- className: i(
49
- "dragging:bg-primary-100 size-5 rounded-full bg-primary-500 outline-none ring-black transition focus-visible:ring-2",
50
- t
51
- )
52
- }
53
- )
54
- }
55
- );
1
+ import l from "react";
2
+ const e = l, n = ({
3
+ title: r,
4
+ titleId: a,
5
+ ...o
6
+ }, t) => /* @__PURE__ */ e.createElement("svg", Object.assign({
7
+ fill: "currentColor",
8
+ "aria-hidden": "true",
9
+ viewBox: "0 0 24 24",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ref: t,
12
+ "aria-labelledby": a
13
+ }, o), r ? /* @__PURE__ */ e.createElement("title", {
14
+ id: a
15
+ }, r) : null, /* @__PURE__ */ e.createElement("path", {
16
+ d: "M2 15.892a.83.83 0 0 1 .242-.591l6.807-6.807a4.166 4.166 0 0 1 5.899 0l6.807 6.806a.835.835 0 0 1-.912 1.365.8.8 0 0 1-.271-.181l-6.807-6.807a2.5 2.5 0 0 0-3.533 0l-6.807 6.806A.833.833 0 0 1 2 15.893Z"
17
+ })), c = e.forwardRef(n);
18
+ var i = c;
56
19
  export {
57
- j as SliderThumb
20
+ i as U
58
21
  };
package/dist/index.es6.js CHANGED
@@ -2,7 +2,7 @@ import { j as o } from "./index.es21.js";
2
2
  import { forwardRef as h } from "react";
3
3
  import { useContextProps as B, ButtonContext as j, Button as N } from "react-aria-components";
4
4
  import { cn as w } from "./index.es22.js";
5
- import { buttonVariants as C } from "./index.es35.js";
5
+ import { buttonVariants as C } from "./index.es45.js";
6
6
  function I(r, i) {
7
7
  const [a, c] = B(r, i, j), {
8
8
  intent: m = "secondary",
package/dist/index.es7.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { j as t } from "./index.es21.js";
2
- import { InfoIcon as p } from "./index.es34.js";
2
+ import { InfoIcon as p } from "./index.es44.js";
3
3
  import { forwardRef as u } from "react";
4
4
  import { useContextProps as d, LabelContext as b, Label as j } from "react-aria-components";
5
5
  import { cn as L } from "./index.es22.js";
package/dist/index.es9.js CHANGED
@@ -2,7 +2,7 @@ import { j as e } from "./index.es21.js";
2
2
  import { forwardRef as x } from "react";
3
3
  import { cn as y } from "./index.es22.js";
4
4
  import { Loader as f } from "./index.es8.js";
5
- import { Overlay as u } from "./index.es37.js";
5
+ import { Overlay as u } from "./index.es35.js";
6
6
  const v = (s, a) => {
7
7
  const {
8
8
  className: l,
package/dist/style.css CHANGED
@@ -1229,6 +1229,10 @@ select {
1229
1229
  .border-none {
1230
1230
  border-style: none;
1231
1231
  }
1232
+ .\!border-neutral-600 {
1233
+ --tw-border-opacity: 1 !important;
1234
+ border-color: rgb(151 155 180 / var(--tw-border-opacity)) !important;
1235
+ }
1232
1236
  .border-error-500 {
1233
1237
  --tw-border-opacity: 1;
1234
1238
  border-color: rgb(204 64 51 / var(--tw-border-opacity));
@@ -1660,6 +1664,10 @@ select {
1660
1664
  --tw-text-opacity: 1 !important;
1661
1665
  color: rgb(246 248 252 / var(--tw-text-opacity)) !important;
1662
1666
  }
1667
+ .\!text-neutral-600 {
1668
+ --tw-text-opacity: 1 !important;
1669
+ color: rgb(151 155 180 / var(--tw-text-opacity)) !important;
1670
+ }
1663
1671
  .\!text-neutral-700 {
1664
1672
  --tw-text-opacity: 1 !important;
1665
1673
  color: rgb(115 118 140 / var(--tw-text-opacity)) !important;
@@ -1768,6 +1776,9 @@ select {
1768
1776
  --tw-text-opacity: 1;
1769
1777
  color: rgb(111 87 17 / var(--tw-text-opacity));
1770
1778
  }
1779
+ .opacity-50 {
1780
+ opacity: 0.5;
1781
+ }
1771
1782
  .opacity-70 {
1772
1783
  opacity: 0.7;
1773
1784
  }
@@ -2104,6 +2115,10 @@ select {
2104
2115
  --tw-ring-opacity: 1;
2105
2116
  --tw-ring-color: rgb(31 181 118 / var(--tw-ring-opacity));
2106
2117
  }
2118
+ .hover\:border-primary-500:hover {
2119
+ --tw-border-opacity: 1;
2120
+ border-color: rgb(76 59 239 / var(--tw-border-opacity));
2121
+ }
2107
2122
  .hover\:border-primary-700:hover {
2108
2123
  --tw-border-opacity: 1;
2109
2124
  border-color: rgb(29 13 165 / var(--tw-border-opacity));
@@ -2116,9 +2131,9 @@ select {
2116
2131
  --tw-bg-opacity: 1;
2117
2132
  background-color: rgb(29 13 165 / var(--tw-bg-opacity));
2118
2133
  }
2119
- .hover\:text-primary-900:hover {
2134
+ .hover\:text-primary-500:hover {
2120
2135
  --tw-text-opacity: 1;
2121
- color: rgb(12 6 69 / var(--tw-text-opacity));
2136
+ color: rgb(76 59 239 / var(--tw-text-opacity));
2122
2137
  }
2123
2138
  .focus\:border-error-500:focus {
2124
2139
  --tw-border-opacity: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpli-route/apollo-ds",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"