@cdx-ui/components 0.0.1-alpha.32 → 0.0.1-alpha.34
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/README.md +1 -1
- package/lib/commonjs/components/Button/index.js +4 -11
- package/lib/commonjs/components/Button/index.js.map +1 -1
- package/lib/commonjs/components/Button/styles.js +148 -112
- package/lib/commonjs/components/Button/styles.js.map +1 -1
- package/lib/commonjs/components/Heading/styles.js +6 -7
- package/lib/commonjs/components/Heading/styles.js.map +1 -1
- package/lib/commonjs/components/IconButton/index.js +2 -7
- package/lib/commonjs/components/IconButton/index.js.map +1 -1
- package/lib/commonjs/components/IconButton/styles.js +15 -62
- package/lib/commonjs/components/IconButton/styles.js.map +1 -1
- package/lib/commonjs/components/Input/styles.js +10 -9
- package/lib/commonjs/components/Input/styles.js.map +1 -1
- package/lib/commonjs/components/Link/styles.js +5 -7
- package/lib/commonjs/components/Link/styles.js.map +1 -1
- package/lib/commonjs/components/Text/styles.js +6 -7
- package/lib/commonjs/components/Text/styles.js.map +1 -1
- package/lib/module/components/Button/index.js +4 -11
- package/lib/module/components/Button/index.js.map +1 -1
- package/lib/module/components/Button/styles.js +149 -112
- package/lib/module/components/Button/styles.js.map +1 -1
- package/lib/module/components/Heading/styles.js +6 -7
- package/lib/module/components/Heading/styles.js.map +1 -1
- package/lib/module/components/IconButton/index.js +2 -7
- package/lib/module/components/IconButton/index.js.map +1 -1
- package/lib/module/components/IconButton/styles.js +16 -63
- package/lib/module/components/IconButton/styles.js.map +1 -1
- package/lib/module/components/Input/styles.js +11 -10
- package/lib/module/components/Input/styles.js.map +1 -1
- package/lib/module/components/Link/styles.js +6 -7
- package/lib/module/components/Link/styles.js.map +1 -1
- package/lib/module/components/Text/styles.js +6 -7
- package/lib/module/components/Text/styles.js.map +1 -1
- package/lib/typescript/components/Button/index.d.ts.map +1 -1
- package/lib/typescript/components/Button/styles.d.ts +3 -6
- package/lib/typescript/components/Button/styles.d.ts.map +1 -1
- package/lib/typescript/components/Heading/styles.d.ts.map +1 -1
- package/lib/typescript/components/IconButton/index.d.ts.map +1 -1
- package/lib/typescript/components/IconButton/styles.d.ts +1 -6
- package/lib/typescript/components/IconButton/styles.d.ts.map +1 -1
- package/lib/typescript/components/Input/styles.d.ts.map +1 -1
- package/lib/typescript/components/Link/styles.d.ts +2 -0
- package/lib/typescript/components/Link/styles.d.ts.map +1 -1
- package/lib/typescript/components/Text/styles.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/components/Button/index.tsx +6 -10
- package/src/components/Button/styles.ts +127 -138
- package/src/components/Heading/styles.tsx +6 -7
- package/src/components/IconButton/index.tsx +2 -3
- package/src/components/IconButton/styles.ts +18 -90
- package/src/components/Input/styles.ts +26 -35
- package/src/components/Link/styles.ts +12 -11
- package/src/components/Text/styles.tsx +6 -7
- package/lib/commonjs/components/Button/buttonSharedVariants.js +0 -200
- package/lib/commonjs/components/Button/buttonSharedVariants.js.map +0 -1
- package/lib/module/components/Button/buttonSharedVariants.js +0 -195
- package/lib/module/components/Button/buttonSharedVariants.js.map +0 -1
- package/lib/typescript/components/Button/buttonSharedVariants.d.ts +0 -29
- package/lib/typescript/components/Button/buttonSharedVariants.d.ts.map +0 -1
- package/src/components/Button/buttonSharedVariants.ts +0 -281
|
@@ -1,45 +1,35 @@
|
|
|
1
1
|
import { cva, type VariantProps } from 'class-variance-authority';
|
|
2
|
-
import {
|
|
3
|
-
COLOR_BG_PRIMARY,
|
|
4
|
-
COLOR_BORDER_DEFAULT,
|
|
5
|
-
COLOR_TEXT_MUTED,
|
|
6
|
-
COLOR_TEXT_PRIMARY,
|
|
7
|
-
DISABLED_CURSOR,
|
|
8
|
-
DISABLED_OPACITY,
|
|
9
|
-
RADIUS_SM,
|
|
10
|
-
SHADOW_SM,
|
|
11
|
-
SIZE_SCALE,
|
|
12
|
-
TRANSITION_COLORS,
|
|
13
|
-
} from '../../styles/primitives';
|
|
2
|
+
import { DISABLED_CURSOR, TRANSITION_COLORS } from '../../styles/primitives';
|
|
14
3
|
|
|
15
4
|
export const inputRootVariants = cva(
|
|
16
5
|
[
|
|
17
|
-
'w-full flex-row items-stretch
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
SHADOW_SM,
|
|
6
|
+
'w-full flex-row items-stretch overflow-hidden',
|
|
7
|
+
'bg-surface-primary',
|
|
8
|
+
'border-solid border-[length:var(--border-width-default)] border-stroke-primary',
|
|
9
|
+
'rounded-[var(--border-radius-default)]',
|
|
22
10
|
TRANSITION_COLORS,
|
|
23
|
-
|
|
11
|
+
'data-[disabled=true]:bg-surface-secondary',
|
|
12
|
+
'data-[disabled=true]:opacity-[--opacity-disabled]',
|
|
24
13
|
DISABLED_CURSOR,
|
|
25
|
-
'data-[disabled=true]:bg-slate-50 data-[disabled=true]:border-slate-300',
|
|
26
14
|
'data-[readonly=true]:cursor-default',
|
|
27
|
-
'data-[readonly=true]:bg-
|
|
28
|
-
'web:data-[hover=true]:data-[
|
|
29
|
-
'data-[focus=true]:border-
|
|
30
|
-
'data-[
|
|
15
|
+
'data-[readonly=true]:bg-surface-secondary',
|
|
16
|
+
'web:data-[hover=true]:data-[focus=false]:data-[invalid=false]:border-stroke-hover',
|
|
17
|
+
'data-[focus=true]:border-[length:var(--border-width-focused)]',
|
|
18
|
+
'data-[focus=true]:border-stroke-action',
|
|
19
|
+
'data-[invalid=true]:border-stroke-danger',
|
|
31
20
|
],
|
|
32
21
|
{
|
|
33
22
|
variants: {
|
|
34
23
|
variant: {
|
|
35
|
-
outline: [
|
|
36
|
-
'web:focus-within:border-slate-900 web:focus-within:ring-2 web:focus-within:ring-slate-400/50 web:focus-within:ring-offset-0',
|
|
37
|
-
'web:data-[invalid=true]:focus-within:border-red-500 web:data-[invalid=true]:focus-within:ring-2 web:data-[invalid=true]:focus-within:ring-red-400/50',
|
|
38
|
-
],
|
|
24
|
+
outline: [],
|
|
39
25
|
},
|
|
40
26
|
size: {
|
|
41
|
-
|
|
42
|
-
|
|
27
|
+
// TODO: Find a cleaner approach to preventing layout shift when focus border is applied.
|
|
28
|
+
default: ['h-10 px-4 py-2 gap-2', 'data-[focus=true]:px-[15px] data-[focus=true]:py-[7px]'],
|
|
29
|
+
small: [
|
|
30
|
+
'h-8 px-3 py-1.5 gap-1.5',
|
|
31
|
+
'data-[focus=true]:px-[11px] data-[focus=true]:py-[5px]',
|
|
32
|
+
],
|
|
43
33
|
},
|
|
44
34
|
},
|
|
45
35
|
defaultVariants: {
|
|
@@ -52,15 +42,16 @@ export const inputRootVariants = cva(
|
|
|
52
42
|
export const inputFieldVariants = cva(
|
|
53
43
|
[
|
|
54
44
|
'flex-1 justify-center bg-transparent p-0',
|
|
55
|
-
|
|
56
|
-
'placeholder:text-
|
|
45
|
+
'font-body text-content-primary',
|
|
46
|
+
'placeholder:text-content-tertiary',
|
|
57
47
|
'web:outline-none',
|
|
48
|
+
'tracking-normal',
|
|
58
49
|
],
|
|
59
50
|
{
|
|
60
51
|
variants: {
|
|
61
52
|
size: {
|
|
62
|
-
default: 'text-[
|
|
63
|
-
small: 'text-[0.
|
|
53
|
+
default: 'text-[0.875rem]',
|
|
54
|
+
small: 'text-[0.75rem]',
|
|
64
55
|
},
|
|
65
56
|
},
|
|
66
57
|
defaultVariants: {
|
|
@@ -71,7 +62,7 @@ export const inputFieldVariants = cva(
|
|
|
71
62
|
|
|
72
63
|
export const inputSlotVariants = cva(['items-center justify-center self-center']);
|
|
73
64
|
|
|
74
|
-
export const inputIconVariants = cva([
|
|
65
|
+
export const inputIconVariants = cva(['text-content-tertiary'], {
|
|
75
66
|
variants: {
|
|
76
67
|
size: {
|
|
77
68
|
default: 'size-5',
|
|
@@ -83,6 +74,6 @@ export const inputIconVariants = cva([COLOR_TEXT_MUTED], {
|
|
|
83
74
|
},
|
|
84
75
|
});
|
|
85
76
|
|
|
86
|
-
export const inputFieldPlaceholderVariants = cva(['accent-
|
|
77
|
+
export const inputFieldPlaceholderVariants = cva(['accent-content-tertiary']);
|
|
87
78
|
|
|
88
79
|
export type InputVariantProps = VariantProps<typeof inputRootVariants>;
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { cva } from 'class-variance-authority';
|
|
1
|
+
import { cva, type VariantProps } from 'class-variance-authority';
|
|
3
2
|
import { TRANSITION_COLORS } from '../../styles/primitives';
|
|
4
3
|
|
|
4
|
+
// TODO: Handle visited state
|
|
5
|
+
|
|
5
6
|
export const linkRootVariants = cva([
|
|
6
7
|
'flex-row items-center gap-1',
|
|
7
8
|
'web:outline-none web:focus:outline-none web:focus-visible:outline-none',
|
|
8
|
-
'text-blue-600',
|
|
9
|
-
'underline decoration-slate-300 underline-offset-4',
|
|
10
9
|
TRANSITION_COLORS,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
'
|
|
10
|
+
'web:data-[focus-visible=true]:ring-2 web:data-[focus-visible=true]:ring-stroke-focus web:data-[focus-visible=true]:ring-offset-2',
|
|
11
|
+
]);
|
|
12
|
+
|
|
13
|
+
export const linkLabelVariants = cva([
|
|
14
|
+
'text-content-link',
|
|
15
|
+
'body-md',
|
|
16
|
+
'underline underline-offset-4',
|
|
16
17
|
]);
|
|
17
18
|
|
|
18
|
-
export const
|
|
19
|
+
export const linkIconVariants = cva(['text-content-link', 'size-4']);
|
|
19
20
|
|
|
20
|
-
export
|
|
21
|
+
export type LinkVariantProps = VariantProps<typeof linkLabelVariants>;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { Platform } from 'react-native';
|
|
2
2
|
import { cva, type VariantProps } from 'class-variance-authority';
|
|
3
|
-
import { COLOR_TEXT_PRIMARY } from '../../styles/primitives';
|
|
4
3
|
|
|
5
4
|
export const textStyle = cva(
|
|
6
5
|
[
|
|
7
|
-
|
|
6
|
+
`text-content-primary font-normal`,
|
|
8
7
|
Platform.select({
|
|
9
8
|
web: 'font-sans my-0 bg-transparent display-inline no-underline',
|
|
10
9
|
default: '',
|
|
@@ -13,11 +12,11 @@ export const textStyle = cva(
|
|
|
13
12
|
{
|
|
14
13
|
variants: {
|
|
15
14
|
size: {
|
|
16
|
-
xl: '
|
|
17
|
-
lg: '
|
|
18
|
-
md: '
|
|
19
|
-
sm: '
|
|
20
|
-
xs: '
|
|
15
|
+
xl: 'body-xl',
|
|
16
|
+
lg: 'body-lg',
|
|
17
|
+
md: 'body-md',
|
|
18
|
+
sm: 'body-sm',
|
|
19
|
+
xs: 'body-xs',
|
|
21
20
|
},
|
|
22
21
|
},
|
|
23
22
|
},
|
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.sharedOutlineGhostForegroundTextCompounds = exports.sharedGhostSurfaceCompounds = exports.sharedFilledSurfaceCompounds = exports.sharedFilledForegroundTextCompounds = void 0;
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _primitives = require("../../styles/primitives");
|
|
9
|
-
/**
|
|
10
|
-
* Neutral compound-variant **slices** shared by Button and IconButton (no consumer `variant` keys).
|
|
11
|
-
*
|
|
12
|
-
* Each consumer maps these into its own CVA, e.g. filled surface → Button `strong` or IconButton `solid`;
|
|
13
|
-
* ghost surface / outline+ghost foreground → attach the appropriate `variant` / tuple for that component.
|
|
14
|
-
*
|
|
15
|
-
* Button-only outline **surface** (borders) stays in `Button/styles.ts`.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
/** Root surface: filled semantic background (maps to Button `strong`, IconButton `solid`). */
|
|
19
|
-
const sharedFilledSurfaceCompounds = exports.sharedFilledSurfaceCompounds = [{
|
|
20
|
-
color: 'action',
|
|
21
|
-
className: [_primitives.SEMANTIC_COLORS.action.bg, _reactNative.Platform.select({
|
|
22
|
-
default: 'data-[active=true]:bg-slate-700',
|
|
23
|
-
web: 'data-[hover=true]:bg-slate-800 data-[active=true]:data-[hover=true]:bg-slate-700'
|
|
24
|
-
})]
|
|
25
|
-
}, {
|
|
26
|
-
color: 'danger',
|
|
27
|
-
className: [_primitives.SEMANTIC_COLORS.danger.bg, _reactNative.Platform.select({
|
|
28
|
-
default: 'data-[active=true]:bg-red-800',
|
|
29
|
-
web: 'data-[hover=true]:bg-red-700 data-[active=true]:data-[hover=true]:bg-red-800'
|
|
30
|
-
})]
|
|
31
|
-
}, {
|
|
32
|
-
color: 'warning',
|
|
33
|
-
className: [_primitives.SEMANTIC_COLORS.warning.bg, _reactNative.Platform.select({
|
|
34
|
-
default: 'data-[active=true]:bg-amber-700',
|
|
35
|
-
web: 'data-[hover=true]:bg-amber-600 data-[active=true]:data-[hover=true]:bg-amber-700'
|
|
36
|
-
})]
|
|
37
|
-
}, {
|
|
38
|
-
color: 'success',
|
|
39
|
-
className: [_primitives.SEMANTIC_COLORS.success.bg, _reactNative.Platform.select({
|
|
40
|
-
default: 'data-[active=true]:bg-green-800',
|
|
41
|
-
web: 'data-[hover=true]:bg-green-700 data-[active=true]:data-[hover=true]:bg-green-800'
|
|
42
|
-
})]
|
|
43
|
-
}, {
|
|
44
|
-
color: 'info',
|
|
45
|
-
className: [_primitives.SEMANTIC_COLORS.info.bg, _reactNative.Platform.select({
|
|
46
|
-
default: 'data-[active=true]:bg-sky-700',
|
|
47
|
-
web: 'data-[hover=true]:bg-sky-600 data-[active=true]:data-[hover=true]:bg-sky-700'
|
|
48
|
-
})]
|
|
49
|
-
}, {
|
|
50
|
-
color: 'action',
|
|
51
|
-
mode: 'dark',
|
|
52
|
-
className: ['bg-slate-200', _reactNative.Platform.select({
|
|
53
|
-
default: 'data-[active=true]:bg-slate-400',
|
|
54
|
-
web: 'data-[hover=true]:bg-slate-300 data-[active=true]:data-[hover=true]:bg-slate-400'
|
|
55
|
-
})]
|
|
56
|
-
}];
|
|
57
|
-
|
|
58
|
-
/** Root surface: ghost hover/active fills (maps to `variant: 'ghost'` on Button and IconButton). */
|
|
59
|
-
const sharedGhostSurfaceCompounds = exports.sharedGhostSurfaceCompounds = [{
|
|
60
|
-
color: 'danger',
|
|
61
|
-
className: [_reactNative.Platform.select({
|
|
62
|
-
default: 'data-[active=true]:bg-red-100',
|
|
63
|
-
web: 'data-[hover=true]:bg-red-50 data-[active=true]:data-[hover=true]:bg-red-100'
|
|
64
|
-
})]
|
|
65
|
-
}, {
|
|
66
|
-
color: 'warning',
|
|
67
|
-
className: [_reactNative.Platform.select({
|
|
68
|
-
default: 'data-[active=true]:bg-amber-100',
|
|
69
|
-
web: 'data-[hover=true]:bg-amber-50 data-[active=true]:data-[hover=true]:bg-amber-100'
|
|
70
|
-
})]
|
|
71
|
-
}, {
|
|
72
|
-
color: 'success',
|
|
73
|
-
className: [_reactNative.Platform.select({
|
|
74
|
-
default: 'data-[active=true]:bg-green-100',
|
|
75
|
-
web: 'data-[hover=true]:bg-green-50 data-[active=true]:data-[hover=true]:bg-green-100'
|
|
76
|
-
})]
|
|
77
|
-
}, {
|
|
78
|
-
color: 'info',
|
|
79
|
-
className: [_reactNative.Platform.select({
|
|
80
|
-
default: 'data-[active=true]:bg-sky-100',
|
|
81
|
-
web: 'data-[hover=true]:bg-sky-50 data-[active=true]:data-[hover=true]:bg-sky-100'
|
|
82
|
-
})]
|
|
83
|
-
}, {
|
|
84
|
-
color: 'action',
|
|
85
|
-
mode: 'dark',
|
|
86
|
-
className: [_reactNative.Platform.select({
|
|
87
|
-
default: 'data-[active=true]:bg-slate-700',
|
|
88
|
-
web: 'data-[hover=true]:bg-slate-800 data-[active=true]:data-[hover=true]:bg-slate-700'
|
|
89
|
-
})]
|
|
90
|
-
}, {
|
|
91
|
-
color: 'danger',
|
|
92
|
-
mode: 'dark',
|
|
93
|
-
className: [_reactNative.Platform.select({
|
|
94
|
-
default: 'data-[active=true]:bg-red-950',
|
|
95
|
-
web: 'data-[hover=true]:bg-red-950/50 data-[active=true]:data-[hover=true]:bg-red-950'
|
|
96
|
-
})]
|
|
97
|
-
}, {
|
|
98
|
-
color: 'warning',
|
|
99
|
-
mode: 'dark',
|
|
100
|
-
className: [_reactNative.Platform.select({
|
|
101
|
-
default: 'data-[active=true]:bg-amber-950',
|
|
102
|
-
web: 'data-[hover=true]:bg-amber-950/50 data-[active=true]:data-[hover=true]:bg-amber-950'
|
|
103
|
-
})]
|
|
104
|
-
}, {
|
|
105
|
-
color: 'success',
|
|
106
|
-
mode: 'dark',
|
|
107
|
-
className: [_reactNative.Platform.select({
|
|
108
|
-
default: 'data-[active=true]:bg-green-950',
|
|
109
|
-
web: 'data-[hover=true]:bg-green-950/50 data-[active=true]:data-[hover=true]:bg-green-950'
|
|
110
|
-
})]
|
|
111
|
-
}, {
|
|
112
|
-
color: 'info',
|
|
113
|
-
mode: 'dark',
|
|
114
|
-
className: [_reactNative.Platform.select({
|
|
115
|
-
default: 'data-[active=true]:bg-sky-950',
|
|
116
|
-
web: 'data-[hover=true]:bg-sky-950/50 data-[active=true]:data-[hover=true]:bg-sky-950'
|
|
117
|
-
})]
|
|
118
|
-
}];
|
|
119
|
-
|
|
120
|
-
/** Foreground on filled controls (maps to Button `strong`, IconButton `solid`). */
|
|
121
|
-
const sharedFilledForegroundTextCompounds = exports.sharedFilledForegroundTextCompounds = [{
|
|
122
|
-
color: 'action',
|
|
123
|
-
className: 'text-white'
|
|
124
|
-
}, {
|
|
125
|
-
color: 'danger',
|
|
126
|
-
className: 'text-white'
|
|
127
|
-
}, {
|
|
128
|
-
color: 'warning',
|
|
129
|
-
className: 'text-white'
|
|
130
|
-
}, {
|
|
131
|
-
color: 'success',
|
|
132
|
-
className: 'text-white'
|
|
133
|
-
}, {
|
|
134
|
-
color: 'info',
|
|
135
|
-
className: 'text-white'
|
|
136
|
-
}, {
|
|
137
|
-
color: 'action',
|
|
138
|
-
mode: 'dark',
|
|
139
|
-
className: 'text-slate-900'
|
|
140
|
-
}];
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* Foreground for transparent controls: same class names for Button `outline` and `ghost`, and for IconButton `ghost`.
|
|
144
|
-
* Consumers attach their own `variant` key(s).
|
|
145
|
-
*/
|
|
146
|
-
const sharedOutlineGhostForegroundTextCompounds = exports.sharedOutlineGhostForegroundTextCompounds = [{
|
|
147
|
-
color: 'action',
|
|
148
|
-
className: ['text-slate-900', _reactNative.Platform.select({
|
|
149
|
-
default: 'data-[active=true]:text-slate-700',
|
|
150
|
-
web: 'data-[hover=true]:text-slate-800 data-[active=true]:data-[hover=true]:text-slate-700'
|
|
151
|
-
})]
|
|
152
|
-
}, {
|
|
153
|
-
color: 'danger',
|
|
154
|
-
className: ['text-red-600', _reactNative.Platform.select({
|
|
155
|
-
default: 'data-[active=true]:text-red-800',
|
|
156
|
-
web: 'data-[hover=true]:text-red-700 data-[active=true]:data-[hover=true]:text-red-800'
|
|
157
|
-
})]
|
|
158
|
-
}, {
|
|
159
|
-
color: 'warning',
|
|
160
|
-
className: ['text-amber-600', _reactNative.Platform.select({
|
|
161
|
-
default: 'data-[active=true]:text-amber-800',
|
|
162
|
-
web: 'data-[hover=true]:text-amber-700 data-[active=true]:data-[hover=true]:text-amber-800'
|
|
163
|
-
})]
|
|
164
|
-
}, {
|
|
165
|
-
color: 'success',
|
|
166
|
-
className: ['text-green-600', _reactNative.Platform.select({
|
|
167
|
-
default: 'data-[active=true]:text-green-800',
|
|
168
|
-
web: 'data-[hover=true]:text-green-700 data-[active=true]:data-[hover=true]:text-green-800'
|
|
169
|
-
})]
|
|
170
|
-
}, {
|
|
171
|
-
color: 'info',
|
|
172
|
-
className: ['text-sky-600', _reactNative.Platform.select({
|
|
173
|
-
default: 'data-[active=true]:text-sky-800',
|
|
174
|
-
web: 'data-[hover=true]:text-sky-700 data-[active=true]:data-[hover=true]:text-sky-800'
|
|
175
|
-
})]
|
|
176
|
-
}, {
|
|
177
|
-
color: 'action',
|
|
178
|
-
mode: 'dark',
|
|
179
|
-
className: ['text-white', _reactNative.Platform.select({
|
|
180
|
-
default: 'data-[active=true]:text-white',
|
|
181
|
-
web: 'data-[hover=true]:text-white data-[active=true]:data-[hover=true]:text-white'
|
|
182
|
-
})]
|
|
183
|
-
}, {
|
|
184
|
-
color: 'danger',
|
|
185
|
-
mode: 'dark',
|
|
186
|
-
className: 'text-red-400'
|
|
187
|
-
}, {
|
|
188
|
-
color: 'warning',
|
|
189
|
-
mode: 'dark',
|
|
190
|
-
className: 'text-amber-400'
|
|
191
|
-
}, {
|
|
192
|
-
color: 'success',
|
|
193
|
-
mode: 'dark',
|
|
194
|
-
className: 'text-green-400'
|
|
195
|
-
}, {
|
|
196
|
-
color: 'info',
|
|
197
|
-
mode: 'dark',
|
|
198
|
-
className: 'text-sky-400'
|
|
199
|
-
}];
|
|
200
|
-
//# sourceMappingURL=buttonSharedVariants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_primitives","sharedFilledSurfaceCompounds","exports","color","className","SEMANTIC_COLORS","action","bg","Platform","select","default","web","danger","warning","success","info","mode","sharedGhostSurfaceCompounds","sharedFilledForegroundTextCompounds","sharedOutlineGhostForegroundTextCompounds"],"sourceRoot":"../../../../src","sources":["components/Button/buttonSharedVariants.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Neutral compound-variant **slices** shared by Button and IconButton (no consumer `variant` keys).
|
|
5
|
-
*
|
|
6
|
-
* Each consumer maps these into its own CVA, e.g. filled surface → Button `strong` or IconButton `solid`;
|
|
7
|
-
* ghost surface / outline+ghost foreground → attach the appropriate `variant` / tuple for that component.
|
|
8
|
-
*
|
|
9
|
-
* Button-only outline **surface** (borders) stays in `Button/styles.ts`.
|
|
10
|
-
*/
|
|
11
|
-
import { Platform } from 'react-native';
|
|
12
|
-
import { SEMANTIC_COLORS } from '../../styles/primitives';
|
|
13
|
-
/** Root surface: filled semantic background (maps to Button `strong`, IconButton `solid`). */
|
|
14
|
-
export const sharedFilledSurfaceCompounds = [{
|
|
15
|
-
color: 'action',
|
|
16
|
-
className: [SEMANTIC_COLORS.action.bg, Platform.select({
|
|
17
|
-
default: 'data-[active=true]:bg-slate-700',
|
|
18
|
-
web: 'data-[hover=true]:bg-slate-800 data-[active=true]:data-[hover=true]:bg-slate-700'
|
|
19
|
-
})]
|
|
20
|
-
}, {
|
|
21
|
-
color: 'danger',
|
|
22
|
-
className: [SEMANTIC_COLORS.danger.bg, Platform.select({
|
|
23
|
-
default: 'data-[active=true]:bg-red-800',
|
|
24
|
-
web: 'data-[hover=true]:bg-red-700 data-[active=true]:data-[hover=true]:bg-red-800'
|
|
25
|
-
})]
|
|
26
|
-
}, {
|
|
27
|
-
color: 'warning',
|
|
28
|
-
className: [SEMANTIC_COLORS.warning.bg, Platform.select({
|
|
29
|
-
default: 'data-[active=true]:bg-amber-700',
|
|
30
|
-
web: 'data-[hover=true]:bg-amber-600 data-[active=true]:data-[hover=true]:bg-amber-700'
|
|
31
|
-
})]
|
|
32
|
-
}, {
|
|
33
|
-
color: 'success',
|
|
34
|
-
className: [SEMANTIC_COLORS.success.bg, Platform.select({
|
|
35
|
-
default: 'data-[active=true]:bg-green-800',
|
|
36
|
-
web: 'data-[hover=true]:bg-green-700 data-[active=true]:data-[hover=true]:bg-green-800'
|
|
37
|
-
})]
|
|
38
|
-
}, {
|
|
39
|
-
color: 'info',
|
|
40
|
-
className: [SEMANTIC_COLORS.info.bg, Platform.select({
|
|
41
|
-
default: 'data-[active=true]:bg-sky-700',
|
|
42
|
-
web: 'data-[hover=true]:bg-sky-600 data-[active=true]:data-[hover=true]:bg-sky-700'
|
|
43
|
-
})]
|
|
44
|
-
}, {
|
|
45
|
-
color: 'action',
|
|
46
|
-
mode: 'dark',
|
|
47
|
-
className: ['bg-slate-200', Platform.select({
|
|
48
|
-
default: 'data-[active=true]:bg-slate-400',
|
|
49
|
-
web: 'data-[hover=true]:bg-slate-300 data-[active=true]:data-[hover=true]:bg-slate-400'
|
|
50
|
-
})]
|
|
51
|
-
}];
|
|
52
|
-
|
|
53
|
-
/** Root surface: ghost hover/active fills (maps to `variant: 'ghost'` on Button and IconButton). */
|
|
54
|
-
export const sharedGhostSurfaceCompounds = [{
|
|
55
|
-
color: 'danger',
|
|
56
|
-
className: [Platform.select({
|
|
57
|
-
default: 'data-[active=true]:bg-red-100',
|
|
58
|
-
web: 'data-[hover=true]:bg-red-50 data-[active=true]:data-[hover=true]:bg-red-100'
|
|
59
|
-
})]
|
|
60
|
-
}, {
|
|
61
|
-
color: 'warning',
|
|
62
|
-
className: [Platform.select({
|
|
63
|
-
default: 'data-[active=true]:bg-amber-100',
|
|
64
|
-
web: 'data-[hover=true]:bg-amber-50 data-[active=true]:data-[hover=true]:bg-amber-100'
|
|
65
|
-
})]
|
|
66
|
-
}, {
|
|
67
|
-
color: 'success',
|
|
68
|
-
className: [Platform.select({
|
|
69
|
-
default: 'data-[active=true]:bg-green-100',
|
|
70
|
-
web: 'data-[hover=true]:bg-green-50 data-[active=true]:data-[hover=true]:bg-green-100'
|
|
71
|
-
})]
|
|
72
|
-
}, {
|
|
73
|
-
color: 'info',
|
|
74
|
-
className: [Platform.select({
|
|
75
|
-
default: 'data-[active=true]:bg-sky-100',
|
|
76
|
-
web: 'data-[hover=true]:bg-sky-50 data-[active=true]:data-[hover=true]:bg-sky-100'
|
|
77
|
-
})]
|
|
78
|
-
}, {
|
|
79
|
-
color: 'action',
|
|
80
|
-
mode: 'dark',
|
|
81
|
-
className: [Platform.select({
|
|
82
|
-
default: 'data-[active=true]:bg-slate-700',
|
|
83
|
-
web: 'data-[hover=true]:bg-slate-800 data-[active=true]:data-[hover=true]:bg-slate-700'
|
|
84
|
-
})]
|
|
85
|
-
}, {
|
|
86
|
-
color: 'danger',
|
|
87
|
-
mode: 'dark',
|
|
88
|
-
className: [Platform.select({
|
|
89
|
-
default: 'data-[active=true]:bg-red-950',
|
|
90
|
-
web: 'data-[hover=true]:bg-red-950/50 data-[active=true]:data-[hover=true]:bg-red-950'
|
|
91
|
-
})]
|
|
92
|
-
}, {
|
|
93
|
-
color: 'warning',
|
|
94
|
-
mode: 'dark',
|
|
95
|
-
className: [Platform.select({
|
|
96
|
-
default: 'data-[active=true]:bg-amber-950',
|
|
97
|
-
web: 'data-[hover=true]:bg-amber-950/50 data-[active=true]:data-[hover=true]:bg-amber-950'
|
|
98
|
-
})]
|
|
99
|
-
}, {
|
|
100
|
-
color: 'success',
|
|
101
|
-
mode: 'dark',
|
|
102
|
-
className: [Platform.select({
|
|
103
|
-
default: 'data-[active=true]:bg-green-950',
|
|
104
|
-
web: 'data-[hover=true]:bg-green-950/50 data-[active=true]:data-[hover=true]:bg-green-950'
|
|
105
|
-
})]
|
|
106
|
-
}, {
|
|
107
|
-
color: 'info',
|
|
108
|
-
mode: 'dark',
|
|
109
|
-
className: [Platform.select({
|
|
110
|
-
default: 'data-[active=true]:bg-sky-950',
|
|
111
|
-
web: 'data-[hover=true]:bg-sky-950/50 data-[active=true]:data-[hover=true]:bg-sky-950'
|
|
112
|
-
})]
|
|
113
|
-
}];
|
|
114
|
-
|
|
115
|
-
/** Foreground on filled controls (maps to Button `strong`, IconButton `solid`). */
|
|
116
|
-
export const sharedFilledForegroundTextCompounds = [{
|
|
117
|
-
color: 'action',
|
|
118
|
-
className: 'text-white'
|
|
119
|
-
}, {
|
|
120
|
-
color: 'danger',
|
|
121
|
-
className: 'text-white'
|
|
122
|
-
}, {
|
|
123
|
-
color: 'warning',
|
|
124
|
-
className: 'text-white'
|
|
125
|
-
}, {
|
|
126
|
-
color: 'success',
|
|
127
|
-
className: 'text-white'
|
|
128
|
-
}, {
|
|
129
|
-
color: 'info',
|
|
130
|
-
className: 'text-white'
|
|
131
|
-
}, {
|
|
132
|
-
color: 'action',
|
|
133
|
-
mode: 'dark',
|
|
134
|
-
className: 'text-slate-900'
|
|
135
|
-
}];
|
|
136
|
-
|
|
137
|
-
/**
|
|
138
|
-
* Foreground for transparent controls: same class names for Button `outline` and `ghost`, and for IconButton `ghost`.
|
|
139
|
-
* Consumers attach their own `variant` key(s).
|
|
140
|
-
*/
|
|
141
|
-
export const sharedOutlineGhostForegroundTextCompounds = [{
|
|
142
|
-
color: 'action',
|
|
143
|
-
className: ['text-slate-900', Platform.select({
|
|
144
|
-
default: 'data-[active=true]:text-slate-700',
|
|
145
|
-
web: 'data-[hover=true]:text-slate-800 data-[active=true]:data-[hover=true]:text-slate-700'
|
|
146
|
-
})]
|
|
147
|
-
}, {
|
|
148
|
-
color: 'danger',
|
|
149
|
-
className: ['text-red-600', Platform.select({
|
|
150
|
-
default: 'data-[active=true]:text-red-800',
|
|
151
|
-
web: 'data-[hover=true]:text-red-700 data-[active=true]:data-[hover=true]:text-red-800'
|
|
152
|
-
})]
|
|
153
|
-
}, {
|
|
154
|
-
color: 'warning',
|
|
155
|
-
className: ['text-amber-600', Platform.select({
|
|
156
|
-
default: 'data-[active=true]:text-amber-800',
|
|
157
|
-
web: 'data-[hover=true]:text-amber-700 data-[active=true]:data-[hover=true]:text-amber-800'
|
|
158
|
-
})]
|
|
159
|
-
}, {
|
|
160
|
-
color: 'success',
|
|
161
|
-
className: ['text-green-600', Platform.select({
|
|
162
|
-
default: 'data-[active=true]:text-green-800',
|
|
163
|
-
web: 'data-[hover=true]:text-green-700 data-[active=true]:data-[hover=true]:text-green-800'
|
|
164
|
-
})]
|
|
165
|
-
}, {
|
|
166
|
-
color: 'info',
|
|
167
|
-
className: ['text-sky-600', Platform.select({
|
|
168
|
-
default: 'data-[active=true]:text-sky-800',
|
|
169
|
-
web: 'data-[hover=true]:text-sky-700 data-[active=true]:data-[hover=true]:text-sky-800'
|
|
170
|
-
})]
|
|
171
|
-
}, {
|
|
172
|
-
color: 'action',
|
|
173
|
-
mode: 'dark',
|
|
174
|
-
className: ['text-white', Platform.select({
|
|
175
|
-
default: 'data-[active=true]:text-white',
|
|
176
|
-
web: 'data-[hover=true]:text-white data-[active=true]:data-[hover=true]:text-white'
|
|
177
|
-
})]
|
|
178
|
-
}, {
|
|
179
|
-
color: 'danger',
|
|
180
|
-
mode: 'dark',
|
|
181
|
-
className: 'text-red-400'
|
|
182
|
-
}, {
|
|
183
|
-
color: 'warning',
|
|
184
|
-
mode: 'dark',
|
|
185
|
-
className: 'text-amber-400'
|
|
186
|
-
}, {
|
|
187
|
-
color: 'success',
|
|
188
|
-
mode: 'dark',
|
|
189
|
-
className: 'text-green-400'
|
|
190
|
-
}, {
|
|
191
|
-
color: 'info',
|
|
192
|
-
mode: 'dark',
|
|
193
|
-
className: 'text-sky-400'
|
|
194
|
-
}];
|
|
195
|
-
//# sourceMappingURL=buttonSharedVariants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["Platform","SEMANTIC_COLORS","sharedFilledSurfaceCompounds","color","className","action","bg","select","default","web","danger","warning","success","info","mode","sharedGhostSurfaceCompounds","sharedFilledForegroundTextCompounds","sharedOutlineGhostForegroundTextCompounds"],"sourceRoot":"../../../../src","sources":["components/Button/buttonSharedVariants.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export type SharedButtonSemanticColor = 'action' | 'danger' | 'warning' | 'success' | 'info';
|
|
2
|
-
/** Root surface: filled semantic background (maps to Button `strong`, IconButton `solid`). */
|
|
3
|
-
export declare const sharedFilledSurfaceCompounds: {
|
|
4
|
-
color: SharedButtonSemanticColor;
|
|
5
|
-
mode?: 'dark';
|
|
6
|
-
className: string | string[];
|
|
7
|
-
}[];
|
|
8
|
-
/** Root surface: ghost hover/active fills (maps to `variant: 'ghost'` on Button and IconButton). */
|
|
9
|
-
export declare const sharedGhostSurfaceCompounds: {
|
|
10
|
-
color: SharedButtonSemanticColor;
|
|
11
|
-
mode?: 'dark';
|
|
12
|
-
className: string | string[];
|
|
13
|
-
}[];
|
|
14
|
-
/** Foreground on filled controls (maps to Button `strong`, IconButton `solid`). */
|
|
15
|
-
export declare const sharedFilledForegroundTextCompounds: {
|
|
16
|
-
color: SharedButtonSemanticColor;
|
|
17
|
-
mode?: 'dark';
|
|
18
|
-
className: string | string[];
|
|
19
|
-
}[];
|
|
20
|
-
/**
|
|
21
|
-
* Foreground for transparent controls: same class names for Button `outline` and `ghost`, and for IconButton `ghost`.
|
|
22
|
-
* Consumers attach their own `variant` key(s).
|
|
23
|
-
*/
|
|
24
|
-
export declare const sharedOutlineGhostForegroundTextCompounds: {
|
|
25
|
-
color: SharedButtonSemanticColor;
|
|
26
|
-
mode?: 'dark';
|
|
27
|
-
className: string | string[];
|
|
28
|
-
}[];
|
|
29
|
-
//# sourceMappingURL=buttonSharedVariants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"buttonSharedVariants.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/buttonSharedVariants.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,yBAAyB,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,CAAC;AAE7F,8FAA8F;AAC9F,eAAO,MAAM,4BAA4B,EAAE;IACzC,KAAK,EAAE,yBAAyB,CAAC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B,EA8DA,CAAC;AAEF,oGAAoG;AACpG,eAAO,MAAM,2BAA2B,EAAE;IACxC,KAAK,EAAE,yBAAyB,CAAC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B,EAuFA,CAAC;AAEF,mFAAmF;AACnF,eAAO,MAAM,mCAAmC,EAAE;IAChD,KAAK,EAAE,yBAAyB,CAAC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B,EAOA,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yCAAyC,EAAE;IACtD,KAAK,EAAE,yBAAyB,CAAC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B,EAkFA,CAAC"}
|