@simpli-route/apollo-ds 0.1.37 → 0.1.39
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.
- package/dist/index.cjs10.js +1 -1
- package/dist/index.cjs100.js +1 -1
- package/dist/index.cjs101.js +1 -1
- package/dist/index.cjs102.js +1 -1
- package/dist/index.cjs11.js +1 -1
- package/dist/index.cjs13.js +1 -1
- package/dist/index.cjs14.js +1 -1
- package/dist/index.cjs19.js +1 -1
- package/dist/index.cjs20.js +1 -1
- package/dist/index.cjs21.js +1 -1
- package/dist/index.cjs22.js +1 -1
- package/dist/index.cjs23.js +1 -1
- package/dist/index.cjs25.js +1 -1
- package/dist/index.cjs29.js +1 -1
- package/dist/index.cjs4.js +1 -1
- package/dist/index.cjs40.js +1 -1
- package/dist/index.cjs41.js +1 -1
- package/dist/index.cjs42.js +1 -1
- package/dist/index.cjs43.js +1 -1
- package/dist/index.cjs44.js +1 -1
- package/dist/index.cjs45.js +1 -1
- package/dist/index.cjs46.js +1 -1
- package/dist/index.cjs47.js +1 -1
- package/dist/index.cjs48.js +1 -1
- package/dist/index.cjs49.js +1 -1
- package/dist/index.cjs5.js +1 -1
- package/dist/index.cjs50.js +1 -1
- package/dist/index.cjs58.js +1 -1
- package/dist/index.cjs59.js +1 -1
- package/dist/index.cjs6.js +1 -1
- package/dist/index.cjs60.js +1 -1
- package/dist/index.cjs64.js +1 -1
- package/dist/index.cjs65.js +1 -1
- package/dist/index.cjs66.js +1 -1
- package/dist/index.cjs67.js +1 -1
- package/dist/index.cjs68.js +1 -1
- package/dist/index.cjs69.js +1 -1
- package/dist/index.cjs7.js +1 -1
- package/dist/index.cjs70.js +1 -1
- package/dist/index.cjs71.js +1 -1
- package/dist/index.cjs8.js +1 -1
- package/dist/index.cjs9.js +1 -1
- package/dist/index.cjs96.js +1 -1
- package/dist/index.cjs97.js +1 -1
- package/dist/index.cjs98.js +1 -1
- package/dist/index.cjs99.js +1 -1
- package/dist/index.es10.js +1 -1
- package/dist/index.es100.js +340 -8
- package/dist/index.es101.js +162 -336
- package/dist/index.es102.js +52 -161
- package/dist/index.es11.js +1 -1
- package/dist/index.es13.js +1 -1
- package/dist/index.es14.js +2 -2
- package/dist/index.es19.js +2 -2
- package/dist/index.es20.js +1 -1
- package/dist/index.es21.js +8 -8
- package/dist/index.es22.js +2 -2
- package/dist/index.es23.js +2 -2
- package/dist/index.es25.js +2 -2
- package/dist/index.es29.js +3 -3
- package/dist/index.es4.js +63 -37
- package/dist/index.es40.js +28 -16
- package/dist/index.es41.js +43 -17
- package/dist/index.es42.js +33 -15
- package/dist/index.es43.js +53 -140
- package/dist/index.es44.js +152 -32
- package/dist/index.es45.js +136 -25
- package/dist/index.es46.js +94 -61
- package/dist/index.es47.js +26 -98
- package/dist/index.es48.js +142 -85
- package/dist/index.es49.js +102 -22
- package/dist/index.es5.js +7 -7
- package/dist/index.es50.js +22 -105
- package/dist/index.es58.js +18 -163
- package/dist/index.es59.js +13 -26
- package/dist/index.es6.js +2 -2
- package/dist/index.es60.js +15 -72
- package/dist/index.es64.js +7 -101
- package/dist/index.es65.js +16 -11
- package/dist/index.es66.js +149 -7
- package/dist/index.es67.js +13 -18
- package/dist/index.es68.js +134 -146
- package/dist/index.es69.js +20 -137
- package/dist/index.es7.js +1 -1
- package/dist/index.es70.js +98 -17
- package/dist/index.es71.js +13 -13
- package/dist/index.es8.js +3 -3
- package/dist/index.es9.js +1 -1
- package/dist/index.es96.js +4 -57
- package/dist/index.es97.js +28 -6
- package/dist/index.es98.js +4 -28
- package/dist/index.es99.js +8 -2
- package/dist/style.css +19 -0
- package/package.json +1 -1
package/dist/index.es49.js
CHANGED
|
@@ -1,36 +1,116 @@
|
|
|
1
1
|
import { cva as r } from "class-variance-authority";
|
|
2
|
-
const
|
|
2
|
+
const s = r(
|
|
3
|
+
"box-border w-full rounded border border-neutral-500 px-3 placeholder:text-neutral-700 focus:outline-none",
|
|
4
|
+
{
|
|
5
|
+
variants: {
|
|
6
|
+
size: {
|
|
7
|
+
xs: "py-1",
|
|
8
|
+
sm: "py-2",
|
|
9
|
+
md: "py-3",
|
|
10
|
+
lg: "py-4"
|
|
11
|
+
},
|
|
12
|
+
isHovered: {
|
|
13
|
+
true: ""
|
|
14
|
+
},
|
|
15
|
+
isFocused: {
|
|
16
|
+
true: ""
|
|
17
|
+
},
|
|
18
|
+
isDisabled: {
|
|
19
|
+
true: "border border-neutral-200 bg-neutral-200 cursor-not-allowed text-neutral-700",
|
|
20
|
+
false: "bg-neutral-50"
|
|
21
|
+
},
|
|
22
|
+
isReadOnly: {
|
|
23
|
+
true: "cursor-not-allowed"
|
|
24
|
+
},
|
|
25
|
+
validationState: {
|
|
26
|
+
default: "",
|
|
27
|
+
valid: "border border-success-500",
|
|
28
|
+
invalid: "border border-error-500"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
compoundVariants: [
|
|
32
|
+
{
|
|
33
|
+
isHovered: !0,
|
|
34
|
+
isDisabled: !1,
|
|
35
|
+
validationState: "default",
|
|
36
|
+
class: "border border-neutral-900"
|
|
37
|
+
},
|
|
38
|
+
// default focus
|
|
39
|
+
{
|
|
40
|
+
isFocused: !0,
|
|
41
|
+
isDisabled: !1,
|
|
42
|
+
class: "border-2 focus-within:border-primary-500 focus-within:ring-1 focus-within:ring-primary-500 focus:border-primary-500 focus:ring-1 focus:ring-primary-500"
|
|
43
|
+
},
|
|
44
|
+
// success focused
|
|
45
|
+
{
|
|
46
|
+
validationState: "valid",
|
|
47
|
+
isFocused: !0,
|
|
48
|
+
class: "border-2 border-success-500 focus-within:ring-1 focus-within:ring-success-500 focus:border-success-500 focus:ring-1 focus:ring-success-500"
|
|
49
|
+
},
|
|
50
|
+
// error focused
|
|
51
|
+
{
|
|
52
|
+
validationState: "invalid",
|
|
53
|
+
isFocused: !0,
|
|
54
|
+
class: "border-2 border-error-500 focus-within:ring-1 focus-within:ring-error-500 focus:border-error-500 focus:ring-1 focus:ring-error-500"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
), t = r(
|
|
59
|
+
"w-full border outline-none transition-colors duration-200 rounded-sm text-blue-800",
|
|
60
|
+
{
|
|
61
|
+
variants: {
|
|
62
|
+
size: {
|
|
63
|
+
bodySm: "px-1.5 py-1 text-xs gap-2",
|
|
64
|
+
bodyDefault: "px-1.5 py-1 text-sm gap-2",
|
|
65
|
+
h5: "px-2 py-1 text-base gap-2",
|
|
66
|
+
h3: "px-2 py-1 text-[22px] gap-2"
|
|
67
|
+
},
|
|
68
|
+
state: {
|
|
69
|
+
default: "border-transparent bg-transparent",
|
|
70
|
+
hover: "border-blue-100 bg-transparent",
|
|
71
|
+
active: "!border-primary-500 bg-neutral-50 focus:!border-primary-500 focus:!bg-neutral-50",
|
|
72
|
+
error: "!border-error-500 bg-neutral-50 focus:!border-error-500 focus:!bg-neutral-50",
|
|
73
|
+
disabled: "border-transparent bg-transparent cursor-not-allowed"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
defaultVariants: {
|
|
77
|
+
size: "bodyDefault",
|
|
78
|
+
state: "default"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
), a = r("relative flex w-full", {
|
|
3
82
|
variants: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
yellowWarning: "bg-yellow-warning-100",
|
|
10
|
-
orangeWarning: "bg-orange-warning-100",
|
|
11
|
-
sky: "bg-sky-100"
|
|
83
|
+
size: {
|
|
84
|
+
bodySm: "gap-1",
|
|
85
|
+
bodyDefault: "gap-1",
|
|
86
|
+
h5: "gap-1",
|
|
87
|
+
h3: "gap-1"
|
|
12
88
|
}
|
|
13
89
|
},
|
|
14
90
|
defaultVariants: {
|
|
15
|
-
|
|
91
|
+
size: "bodyDefault"
|
|
16
92
|
}
|
|
17
|
-
}),
|
|
93
|
+
}), i = r("flex items-center justify-center", {
|
|
18
94
|
variants: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
95
|
+
size: {
|
|
96
|
+
bodySm: "size-3",
|
|
97
|
+
bodyDefault: "size-3.5",
|
|
98
|
+
h5: "size-4",
|
|
99
|
+
h3: "size-5"
|
|
100
|
+
},
|
|
101
|
+
isDisabled: {
|
|
102
|
+
true: "text-neutral-600",
|
|
103
|
+
false: "text-primary-500"
|
|
27
104
|
}
|
|
28
105
|
},
|
|
29
106
|
defaultVariants: {
|
|
30
|
-
|
|
107
|
+
size: "bodyDefault",
|
|
108
|
+
isDisabled: !1
|
|
31
109
|
}
|
|
32
110
|
});
|
|
33
111
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
112
|
+
s as inputNumberVariant,
|
|
113
|
+
a as invisibleNumberFieldGroupVariants,
|
|
114
|
+
i as invisibleNumberFieldStepperVariants,
|
|
115
|
+
t as invisibleNumberFieldVariants
|
|
36
116
|
};
|
package/dist/index.es5.js
CHANGED
|
@@ -3,25 +3,25 @@ import { Button as I } from "react-aria-components";
|
|
|
3
3
|
import { cn as x } from "./index.es37.js";
|
|
4
4
|
import "react";
|
|
5
5
|
import "./index.es39.js";
|
|
6
|
-
import { buttonVariants as B } from "./index.
|
|
7
|
-
import "./index.
|
|
6
|
+
import { buttonVariants as B } from "./index.es48.js";
|
|
7
|
+
import "./index.es41.js";
|
|
8
8
|
import "react-aria";
|
|
9
|
-
import "./index.
|
|
9
|
+
import "./index.es42.js";
|
|
10
10
|
import "@react-stately/color";
|
|
11
|
-
import "./index.
|
|
11
|
+
import "./index.es43.js";
|
|
12
12
|
import "./index.es10.js";
|
|
13
13
|
import "./index.es11.js";
|
|
14
14
|
import "./index.es12.js";
|
|
15
15
|
import "@internationalized/date";
|
|
16
|
-
import "./index.
|
|
16
|
+
import "./index.es45.js";
|
|
17
17
|
import "./index.es14.js";
|
|
18
18
|
import { Loader as y } from "./index.es17.js";
|
|
19
19
|
import "./index.es18.js";
|
|
20
20
|
import "./index.es19.js";
|
|
21
|
-
import "./index.es48.js";
|
|
22
|
-
import "framer-motion";
|
|
23
21
|
import "./index.es49.js";
|
|
22
|
+
import "framer-motion";
|
|
24
23
|
import "./index.es50.js";
|
|
24
|
+
import "./index.es46.js";
|
|
25
25
|
import "./index.es51.js";
|
|
26
26
|
import "./index.es52.js";
|
|
27
27
|
import "./index.es53.js";
|
package/dist/index.es50.js
CHANGED
|
@@ -1,119 +1,36 @@
|
|
|
1
1
|
import { cva as r } from "class-variance-authority";
|
|
2
|
-
const
|
|
3
|
-
"flex w-full rounded-md border border-neutral-500 bg-white px-4 text-base leading-6 focus-within:border-primary-500 focus-within:ring-1 focus-within:ring-primary-500 focus:border-primary-500 focus:ring-1 focus:ring-primary-500",
|
|
4
|
-
{
|
|
5
|
-
variants: {
|
|
6
|
-
size: {
|
|
7
|
-
xs: "py-1",
|
|
8
|
-
sm: "py-2",
|
|
9
|
-
md: "py-3",
|
|
10
|
-
lg: "py-4"
|
|
11
|
-
},
|
|
12
|
-
isHovered: {
|
|
13
|
-
true: ""
|
|
14
|
-
},
|
|
15
|
-
isDisabled: {
|
|
16
|
-
true: "cursor-not-allowed bg-neutral-200 text-neutral-600"
|
|
17
|
-
},
|
|
18
|
-
isReadOnly: {
|
|
19
|
-
true: "cursor-not-allowed"
|
|
20
|
-
},
|
|
21
|
-
validationState: {
|
|
22
|
-
invalid: "border-error-500 text-red-800 placeholder:text-red-800 focus-within:border-error-500 focus-within:ring-error-500 focus:border-error-500 focus:ring-error-500 pr-10",
|
|
23
|
-
valid: "border-success-500 text-success-800 placeholder:text-success-800 focus-within:border-success-500 focus-within:ring-success-500 focus:border-success-500 focus:ring-success-500 pr-10"
|
|
24
|
-
},
|
|
25
|
-
hasIcon: {
|
|
26
|
-
true: "pr-10"
|
|
27
|
-
},
|
|
28
|
-
isFocusVisible: {
|
|
29
|
-
true: ""
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
compoundVariants: [
|
|
33
|
-
{
|
|
34
|
-
isHovered: !0,
|
|
35
|
-
validationState: void 0,
|
|
36
|
-
class: "border-neutral-900"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
isHovered: !0,
|
|
40
|
-
validationState: "invalid",
|
|
41
|
-
class: "border-error-600"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
isHovered: !0,
|
|
45
|
-
validationState: "valid",
|
|
46
|
-
class: "border-success-600"
|
|
47
|
-
}
|
|
48
|
-
]
|
|
49
|
-
}
|
|
50
|
-
), a = r(
|
|
51
|
-
"w-full border outline-none transition-colors duration-200 rounded-sm text-blue-800",
|
|
52
|
-
{
|
|
53
|
-
variants: {
|
|
54
|
-
size: {
|
|
55
|
-
bodySm: "px-1.5 py-1 text-xs gap-2",
|
|
56
|
-
bodyDefault: "px-1.5 py-1 text-sm gap-2",
|
|
57
|
-
h5: "px-2 py-1 text-base gap-2",
|
|
58
|
-
h3: "px-2 py-1 text-[22px] gap-2"
|
|
59
|
-
},
|
|
60
|
-
state: {
|
|
61
|
-
default: "border-transparent bg-transparent",
|
|
62
|
-
hover: "border-blue-100 bg-transparent",
|
|
63
|
-
active: "!border-primary-500 bg-neutral-50 focus:!border-primary-500 focus:!bg-neutral-50",
|
|
64
|
-
error: "!border-error-500 bg-neutral-50 focus:!border-error-500 focus:!bg-neutral-50",
|
|
65
|
-
disabled: "border-transparent bg-transparent cursor-not-allowed"
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
defaultVariants: {
|
|
69
|
-
size: "bodyDefault",
|
|
70
|
-
state: "default"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
), s = r("font-normal text-neutral-800 ml-0.5", {
|
|
74
|
-
variants: {
|
|
75
|
-
size: {
|
|
76
|
-
bodySm: "text-xs",
|
|
77
|
-
bodyDefault: "text-sm",
|
|
78
|
-
h5: "text-base",
|
|
79
|
-
h3: "text-[22px]"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
defaultVariants: {
|
|
83
|
-
size: "bodyDefault"
|
|
84
|
-
}
|
|
85
|
-
}), o = r("text-xs font-normal", {
|
|
2
|
+
const n = r("w-full overflow-hidden rounded-lg bg-primary-100 h-2", {
|
|
86
3
|
variants: {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
4
|
+
variant: {
|
|
5
|
+
primary: "bg-primary-100",
|
|
6
|
+
success: "bg-success-100",
|
|
7
|
+
error: "bg-error-100",
|
|
8
|
+
yellow: "bg-yellow-100",
|
|
9
|
+
yellowWarning: "bg-yellow-warning-100",
|
|
10
|
+
orangeWarning: "bg-orange-warning-100",
|
|
11
|
+
sky: "bg-sky-100"
|
|
90
12
|
}
|
|
91
13
|
},
|
|
92
14
|
defaultVariants: {
|
|
93
|
-
|
|
15
|
+
variant: "primary"
|
|
94
16
|
}
|
|
95
|
-
}),
|
|
17
|
+
}), g = r("size-full rounded-lg", {
|
|
96
18
|
variants: {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
horizontal: "flex-row items-center"
|
|
19
|
+
variant: {
|
|
20
|
+
primary: "bg-primary-500",
|
|
21
|
+
success: "bg-success-500",
|
|
22
|
+
error: "bg-error-500",
|
|
23
|
+
yellow: "bg-yellow-500",
|
|
24
|
+
yellowWarning: "bg-yellow-warning-500",
|
|
25
|
+
orangeWarning: "bg-orange-warning-500",
|
|
26
|
+
sky: "bg-sky-500"
|
|
106
27
|
}
|
|
107
28
|
},
|
|
108
29
|
defaultVariants: {
|
|
109
|
-
|
|
110
|
-
orientation: "vertical"
|
|
30
|
+
variant: "primary"
|
|
111
31
|
}
|
|
112
32
|
});
|
|
113
33
|
export {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
i as invisibleInputContainerVariants,
|
|
117
|
-
s as invisibleInputLabelVariants,
|
|
118
|
-
a as invisibleInputVariants
|
|
34
|
+
n as progressBarVariants,
|
|
35
|
+
g as progressFillVariants
|
|
119
36
|
};
|
package/dist/index.es58.js
CHANGED
|
@@ -1,165 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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 { j as r } from "./index.es36.js";
|
|
2
|
+
import { ColorArea as s, ColorThumb as l } from "react-aria-components";
|
|
3
|
+
function t({ color: o, onChange: e, ...a }) {
|
|
4
|
+
return /* @__PURE__ */ r.jsx(
|
|
5
|
+
s,
|
|
6
|
+
{
|
|
7
|
+
colorSpace: "hsb",
|
|
8
|
+
xChannel: "saturation",
|
|
9
|
+
yChannel: "brightness",
|
|
10
|
+
value: o,
|
|
11
|
+
className: "mb-2 h-32 w-48 rounded border",
|
|
12
|
+
onChange: e,
|
|
13
|
+
...a,
|
|
14
|
+
children: /* @__PURE__ */ r.jsx(l, { className: "box-border size-5 rounded-full border-2 border-white shadow-[0_0_0_1px_black,inset_0_0_0_1px_black] data-[focus-visible]:size-6" })
|
|
15
|
+
}
|
|
16
|
+
);
|
|
17
|
+
}
|
|
163
18
|
export {
|
|
164
|
-
|
|
19
|
+
t as ColorArea
|
|
165
20
|
};
|
package/dist/index.es59.js
CHANGED
|
@@ -1,32 +1,19 @@
|
|
|
1
1
|
import { j as e } from "./index.es36.js";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
const {
|
|
5
|
-
return /* @__PURE__ */ e.jsx(
|
|
6
|
-
|
|
2
|
+
import { ColorField as n, Input as t } from "react-aria-components";
|
|
3
|
+
function p(o) {
|
|
4
|
+
const { isDisabled: l, inputProps: r = {}, ...s } = o;
|
|
5
|
+
return /* @__PURE__ */ e.jsx(n, { className: "relative flex h-8 w-32 items-center", isDisabled: l, ...s, children: /* @__PURE__ */ e.jsx(
|
|
6
|
+
t,
|
|
7
7
|
{
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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" }
|
|
8
|
+
className: "size-full border-none bg-transparent p-0 outline-none focus:outline-none focus:ring-0",
|
|
9
|
+
maxLength: 7,
|
|
10
|
+
"aria-label": "Color hex",
|
|
11
|
+
spellCheck: !1,
|
|
12
|
+
autoComplete: "off",
|
|
13
|
+
...r
|
|
27
14
|
}
|
|
28
15
|
) });
|
|
29
|
-
}
|
|
16
|
+
}
|
|
30
17
|
export {
|
|
31
|
-
|
|
18
|
+
p as ColorField
|
|
32
19
|
};
|
package/dist/index.es6.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { j as e } from "./index.es36.js";
|
|
2
2
|
import { Checkbox as h } from "react-aria-components";
|
|
3
3
|
import { cn as m } from "./index.es37.js";
|
|
4
|
-
import { MarkIcon as i } from "./index.
|
|
5
|
-
import { checkboxVariants as j } from "./index.
|
|
4
|
+
import { MarkIcon as i } from "./index.es40.js";
|
|
5
|
+
import { checkboxVariants as j } from "./index.es41.js";
|
|
6
6
|
const g = ({
|
|
7
7
|
isIndeterminate: x = !1,
|
|
8
8
|
isDisabled: a = !1,
|
package/dist/index.es60.js
CHANGED
|
@@ -1,75 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
default: "border-transparent bg-transparent",
|
|
14
|
-
hover: "border-blue-100 bg-transparent",
|
|
15
|
-
active: "!border-primary-500 !bg-neutral-50 focus-within:!border-primary-500 focus-within:!bg-neutral-50",
|
|
16
|
-
error: "!border-error-500 !bg-neutral-50 focus-within:!border-error-500 focus-within:!bg-neutral-50",
|
|
17
|
-
disabled: "border-transparent bg-transparent cursor-not-allowed opacity-60"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
defaultVariants: {
|
|
21
|
-
size: "bodyDefault",
|
|
22
|
-
state: "default"
|
|
1
|
+
import { j as r } from "./index.es36.js";
|
|
2
|
+
import { ColorSlider as f, SliderTrack as l, ColorThumb as i } from "react-aria-components";
|
|
3
|
+
function d(e) {
|
|
4
|
+
const { color: o } = e;
|
|
5
|
+
return /* @__PURE__ */ r.jsx(
|
|
6
|
+
f,
|
|
7
|
+
{
|
|
8
|
+
channel: "hue",
|
|
9
|
+
value: o,
|
|
10
|
+
className: "mb-2 h-4 w-48 rounded border bg-[linear-gradient(to_right,#ff0000,#ffff00,#00ff00,#00ffff,#0000ff,#ff00ff,#ff0000)]",
|
|
11
|
+
...e,
|
|
12
|
+
children: /* @__PURE__ */ r.jsx(l, { className: "size-full", children: /* @__PURE__ */ r.jsx(i, { className: "box-border size-5 rounded-full border-2 border-white shadow-[0_0_0_1px_black,inset_0_0_0_1px_black] data-[focus-visible]:size-6" }) })
|
|
23
13
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
variants: {
|
|
27
|
-
size: {
|
|
28
|
-
bodySm: "text-xs",
|
|
29
|
-
bodyDefault: "text-sm",
|
|
30
|
-
h5: "text-base",
|
|
31
|
-
h3: "text-[22px]"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
defaultVariants: {
|
|
35
|
-
size: "bodyDefault"
|
|
36
|
-
}
|
|
37
|
-
}), i = e(
|
|
38
|
-
"flex items-center justify-center rounded bg-transparent text-neutral-900 transition-colors hover:bg-neutral-100 focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500 focus-visible:ring-offset-1",
|
|
39
|
-
{
|
|
40
|
-
variants: {
|
|
41
|
-
size: {
|
|
42
|
-
bodySm: "h-4 w-4",
|
|
43
|
-
bodyDefault: "h-5 w-5",
|
|
44
|
-
h5: "h-6 w-6",
|
|
45
|
-
h3: "h-7 w-7"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
defaultVariants: {
|
|
49
|
-
size: "bodyDefault"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
), n = e("flex w-full gap-1", {
|
|
53
|
-
variants: {
|
|
54
|
-
size: {
|
|
55
|
-
bodySm: "gap-1",
|
|
56
|
-
bodyDefault: "gap-1",
|
|
57
|
-
h5: "gap-1",
|
|
58
|
-
h3: "gap-1"
|
|
59
|
-
},
|
|
60
|
-
orientation: {
|
|
61
|
-
vertical: "flex-col",
|
|
62
|
-
horizontal: "flex-row items-center"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
defaultVariants: {
|
|
66
|
-
size: "bodyDefault",
|
|
67
|
-
orientation: "vertical"
|
|
68
|
-
}
|
|
69
|
-
});
|
|
14
|
+
);
|
|
15
|
+
}
|
|
70
16
|
export {
|
|
71
|
-
|
|
72
|
-
r as invisibleTimeFieldGroupVariants,
|
|
73
|
-
a as invisibleTimeFieldInputVariants,
|
|
74
|
-
i as timeFieldButtonVariants
|
|
17
|
+
d as ColorSlider
|
|
75
18
|
};
|