@idealyst/components 1.0.24 → 1.0.25
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 +567 -567
- package/package.json +2 -2
- package/plugin/web.js +319 -185
- package/src/Avatar/Avatar.native.tsx +43 -43
- package/src/Avatar/Avatar.styles.tsx +66 -66
- package/src/Avatar/Avatar.web.tsx +50 -50
- package/src/Avatar/index.native.ts +1 -1
- package/src/Avatar/index.ts +1 -1
- package/src/Avatar/index.web.ts +1 -1
- package/src/Avatar/types.ts +42 -42
- package/src/Badge/Badge.native.tsx +42 -42
- package/src/Badge/Badge.styles.tsx +153 -153
- package/src/Badge/Badge.web.tsx +44 -44
- package/src/Badge/index.native.ts +1 -1
- package/src/Badge/index.ts +1 -1
- package/src/Badge/index.web.ts +1 -1
- package/src/Badge/types.ts +33 -33
- package/src/Button/Button.native.tsx +38 -38
- package/src/Button/Button.styles.tsx +214 -214
- package/src/Button/Button.types.ts +11 -11
- package/src/Button/Button.web.tsx +55 -55
- package/src/Button/index.native.ts +2 -2
- package/src/Button/index.ts +4 -4
- package/src/Button/index.web.ts +2 -2
- package/src/Button/types.ts +48 -48
- package/src/Card/Card.native.tsx +51 -51
- package/src/Card/Card.styles.tsx +239 -239
- package/src/Card/Card.web.tsx +61 -61
- package/src/Card/index.native.ts +2 -2
- package/src/Card/index.ts +4 -4
- package/src/Card/index.web.ts +2 -2
- package/src/Card/types.ts +58 -58
- package/src/Checkbox/Checkbox.native.tsx +98 -98
- package/src/Checkbox/Checkbox.styles.tsx +291 -291
- package/src/Checkbox/Checkbox.web.tsx +130 -130
- package/src/Checkbox/index.native.ts +2 -2
- package/src/Checkbox/index.ts +4 -4
- package/src/Checkbox/index.web.ts +2 -2
- package/src/Checkbox/types.ts +78 -78
- package/src/Divider/Divider.native.tsx +144 -144
- package/src/Divider/Divider.styles.tsx +601 -601
- package/src/Divider/Divider.web.tsx +72 -72
- package/src/Divider/index.native.ts +2 -2
- package/src/Divider/index.ts +4 -4
- package/src/Divider/index.web.ts +2 -2
- package/src/Divider/types.ts +53 -53
- package/src/Icon/Icon.native.tsx +38 -38
- package/src/Icon/Icon.styles.tsx +49 -49
- package/src/Icon/Icon.web.tsx +46 -46
- package/src/Icon/icon-types.ts +7452 -7452
- package/src/Icon/index.native.ts +2 -2
- package/src/Icon/index.ts +4 -4
- package/src/Icon/index.web.ts +2 -2
- package/src/Icon/types.ts +35 -35
- package/src/Input/Input.native.tsx +74 -74
- package/src/Input/Input.styles.tsx +176 -176
- package/src/Input/Input.web.tsx +70 -70
- package/src/Input/index.native.ts +2 -2
- package/src/Input/index.ts +4 -4
- package/src/Input/index.web.ts +2 -2
- package/src/Input/types.ts +68 -68
- package/src/Screen/Screen.native.tsx +40 -40
- package/src/Screen/Screen.styles.tsx +59 -59
- package/src/Screen/Screen.web.tsx +32 -32
- package/src/Screen/index.native.ts +1 -1
- package/src/Screen/index.ts +1 -1
- package/src/Screen/index.web.ts +1 -1
- package/src/Screen/types.ts +37 -37
- package/src/Text/Text.native.tsx +35 -35
- package/src/Text/Text.styles.tsx +66 -66
- package/src/Text/Text.web.tsx +40 -40
- package/src/Text/index.native.ts +2 -2
- package/src/Text/index.ts +4 -4
- package/src/Text/index.web.ts +2 -2
- package/src/Text/types.ts +38 -38
- package/src/View/View.native.tsx +55 -55
- package/src/View/View.styles.tsx +102 -102
- package/src/View/View.web.tsx +59 -59
- package/src/View/index.native.ts +2 -2
- package/src/View/index.ts +4 -4
- package/src/View/index.web.ts +2 -2
- package/src/View/types.ts +72 -72
- package/src/examples/AllExamples.tsx +71 -71
- package/src/examples/AvatarExamples.tsx +96 -96
- package/src/examples/BadgeExamples.tsx +199 -199
- package/src/examples/ButtonExamples.tsx +149 -149
- package/src/examples/CardExamples.tsx +175 -175
- package/src/examples/CheckboxExamples.tsx +216 -216
- package/src/examples/DividerExamples.tsx +217 -217
- package/src/examples/IconExamples.tsx +341 -341
- package/src/examples/InputExamples.tsx +133 -133
- package/src/examples/README.md +135 -135
- package/src/examples/ScreenExamples.tsx +153 -153
- package/src/examples/TextExamples.tsx +88 -88
- package/src/examples/ThemeExtensionExamples.tsx +90 -90
- package/src/examples/ValidationExamples.tsx +94 -94
- package/src/examples/ViewExamples.tsx +128 -128
- package/src/examples/extendedTheme.ts +328 -328
- package/src/examples/index.ts +14 -14
- package/src/index.native.ts +48 -48
- package/src/index.ts +47 -47
- package/src/theme/breakpoints.ts +8 -8
- package/src/theme/colorResolver.ts +217 -217
- package/src/theme/colors.ts +314 -314
- package/src/theme/defaultThemes.ts +325 -325
- package/src/theme/index.ts +187 -187
- package/src/theme/themeBuilder.ts +601 -601
- package/src/theme/unistyles.d.ts +5 -5
- package/src/theme/variantHelpers.ts +583 -583
- package/src/theme/variants.ts +55 -55
|
@@ -1,145 +1,145 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { View, Text } from 'react-native';
|
|
3
|
-
import { DividerProps } from './types';
|
|
4
|
-
import { dividerStyles } from './Divider.styles';
|
|
5
|
-
|
|
6
|
-
const Divider: React.FC<DividerProps> = ({
|
|
7
|
-
orientation = 'horizontal',
|
|
8
|
-
variant = 'solid',
|
|
9
|
-
thickness = 'thin',
|
|
10
|
-
intent = 'neutral',
|
|
11
|
-
length = 'full',
|
|
12
|
-
spacing = 'medium',
|
|
13
|
-
children,
|
|
14
|
-
style,
|
|
15
|
-
testID,
|
|
16
|
-
accessibilityLabel,
|
|
17
|
-
}) => {
|
|
18
|
-
// Apply variants for main divider
|
|
19
|
-
dividerStyles.useVariants({
|
|
20
|
-
orientation,
|
|
21
|
-
thickness,
|
|
22
|
-
variant: variant as any,
|
|
23
|
-
intent,
|
|
24
|
-
length: typeof length === 'number' ? 'auto' : length,
|
|
25
|
-
spacing,
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
// Get the current styles for color and dimensions
|
|
29
|
-
const dividerStyle = dividerStyles.divider;
|
|
30
|
-
|
|
31
|
-
// Get thickness value
|
|
32
|
-
const getThickness = () => {
|
|
33
|
-
switch (thickness) {
|
|
34
|
-
case 'thin': return 1;
|
|
35
|
-
case 'medium': return 2;
|
|
36
|
-
case 'thick': return 4;
|
|
37
|
-
default: return 1;
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
// For dashed/dotted variants, use border instead of background
|
|
42
|
-
const getDashedStyle = () => {
|
|
43
|
-
if (variant === 'dashed' || variant === 'dotted') {
|
|
44
|
-
const actualThickness = getThickness();
|
|
45
|
-
|
|
46
|
-
return {
|
|
47
|
-
backgroundColor: 'transparent',
|
|
48
|
-
borderStyle: variant,
|
|
49
|
-
borderColor: dividerStyle.backgroundColor,
|
|
50
|
-
...(orientation === 'horizontal' ? {
|
|
51
|
-
borderTopWidth: actualThickness,
|
|
52
|
-
borderBottomWidth: 0,
|
|
53
|
-
borderLeftWidth: 0,
|
|
54
|
-
borderRightWidth: 0,
|
|
55
|
-
width: '100%',
|
|
56
|
-
height: actualThickness,
|
|
57
|
-
} : {
|
|
58
|
-
borderLeftWidth: actualThickness,
|
|
59
|
-
borderTopWidth: 0,
|
|
60
|
-
borderBottomWidth: 0,
|
|
61
|
-
borderRightWidth: 0,
|
|
62
|
-
height: '100%',
|
|
63
|
-
width: actualThickness,
|
|
64
|
-
}),
|
|
65
|
-
};
|
|
66
|
-
}
|
|
67
|
-
return {};
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
// If no children, render simple divider
|
|
71
|
-
if (!children) {
|
|
72
|
-
if (variant === 'dashed' || variant === 'dotted') {
|
|
73
|
-
return (
|
|
74
|
-
<View
|
|
75
|
-
style={[
|
|
76
|
-
dividerStyle,
|
|
77
|
-
getDashedStyle(),
|
|
78
|
-
style,
|
|
79
|
-
]}
|
|
80
|
-
testID={testID}
|
|
81
|
-
accessibilityLabel={accessibilityLabel || "divider"}
|
|
82
|
-
/>
|
|
83
|
-
);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
return (
|
|
87
|
-
<View
|
|
88
|
-
style={[dividerStyles.divider, style]}
|
|
89
|
-
testID={testID}
|
|
90
|
-
accessibilityLabel={accessibilityLabel || "divider"}
|
|
91
|
-
/>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
// For lines with content, create a simple dashed line
|
|
96
|
-
const renderLineSegment = () => {
|
|
97
|
-
if (variant === 'dashed' || variant === 'dotted') {
|
|
98
|
-
const actualThickness = getThickness();
|
|
99
|
-
|
|
100
|
-
return (
|
|
101
|
-
<View
|
|
102
|
-
style={[
|
|
103
|
-
dividerStyles.line,
|
|
104
|
-
{
|
|
105
|
-
backgroundColor: 'transparent',
|
|
106
|
-
borderStyle: variant,
|
|
107
|
-
borderColor: dividerStyles.line.backgroundColor,
|
|
108
|
-
...(orientation === 'horizontal' ? {
|
|
109
|
-
borderTopWidth: actualThickness,
|
|
110
|
-
borderBottomWidth: 0,
|
|
111
|
-
borderLeftWidth: 0,
|
|
112
|
-
borderRightWidth: 0,
|
|
113
|
-
height: actualThickness,
|
|
114
|
-
} : {
|
|
115
|
-
borderLeftWidth: actualThickness,
|
|
116
|
-
borderTopWidth: 0,
|
|
117
|
-
borderBottomWidth: 0,
|
|
118
|
-
borderRightWidth: 0,
|
|
119
|
-
width: actualThickness,
|
|
120
|
-
}),
|
|
121
|
-
},
|
|
122
|
-
]}
|
|
123
|
-
/>
|
|
124
|
-
);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
return <View style={dividerStyles.line} />;
|
|
128
|
-
};
|
|
129
|
-
|
|
130
|
-
return (
|
|
131
|
-
<View
|
|
132
|
-
style={dividerStyles.container}
|
|
133
|
-
testID={testID}
|
|
134
|
-
accessibilityLabel={accessibilityLabel || "divider with content"}
|
|
135
|
-
>
|
|
136
|
-
{renderLineSegment()}
|
|
137
|
-
<Text style={dividerStyles.content}>
|
|
138
|
-
{children}
|
|
139
|
-
</Text>
|
|
140
|
-
{renderLineSegment()}
|
|
141
|
-
</View>
|
|
142
|
-
);
|
|
143
|
-
};
|
|
144
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View, Text } from 'react-native';
|
|
3
|
+
import { DividerProps } from './types';
|
|
4
|
+
import { dividerStyles } from './Divider.styles';
|
|
5
|
+
|
|
6
|
+
const Divider: React.FC<DividerProps> = ({
|
|
7
|
+
orientation = 'horizontal',
|
|
8
|
+
variant = 'solid',
|
|
9
|
+
thickness = 'thin',
|
|
10
|
+
intent = 'neutral',
|
|
11
|
+
length = 'full',
|
|
12
|
+
spacing = 'medium',
|
|
13
|
+
children,
|
|
14
|
+
style,
|
|
15
|
+
testID,
|
|
16
|
+
accessibilityLabel,
|
|
17
|
+
}) => {
|
|
18
|
+
// Apply variants for main divider
|
|
19
|
+
dividerStyles.useVariants({
|
|
20
|
+
orientation,
|
|
21
|
+
thickness,
|
|
22
|
+
variant: variant as any,
|
|
23
|
+
intent,
|
|
24
|
+
length: typeof length === 'number' ? 'auto' : length,
|
|
25
|
+
spacing,
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
// Get the current styles for color and dimensions
|
|
29
|
+
const dividerStyle = dividerStyles.divider;
|
|
30
|
+
|
|
31
|
+
// Get thickness value
|
|
32
|
+
const getThickness = () => {
|
|
33
|
+
switch (thickness) {
|
|
34
|
+
case 'thin': return 1;
|
|
35
|
+
case 'medium': return 2;
|
|
36
|
+
case 'thick': return 4;
|
|
37
|
+
default: return 1;
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
// For dashed/dotted variants, use border instead of background
|
|
42
|
+
const getDashedStyle = () => {
|
|
43
|
+
if (variant === 'dashed' || variant === 'dotted') {
|
|
44
|
+
const actualThickness = getThickness();
|
|
45
|
+
|
|
46
|
+
return {
|
|
47
|
+
backgroundColor: 'transparent',
|
|
48
|
+
borderStyle: variant,
|
|
49
|
+
borderColor: dividerStyle.backgroundColor,
|
|
50
|
+
...(orientation === 'horizontal' ? {
|
|
51
|
+
borderTopWidth: actualThickness,
|
|
52
|
+
borderBottomWidth: 0,
|
|
53
|
+
borderLeftWidth: 0,
|
|
54
|
+
borderRightWidth: 0,
|
|
55
|
+
width: '100%',
|
|
56
|
+
height: actualThickness,
|
|
57
|
+
} : {
|
|
58
|
+
borderLeftWidth: actualThickness,
|
|
59
|
+
borderTopWidth: 0,
|
|
60
|
+
borderBottomWidth: 0,
|
|
61
|
+
borderRightWidth: 0,
|
|
62
|
+
height: '100%',
|
|
63
|
+
width: actualThickness,
|
|
64
|
+
}),
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
return {};
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
// If no children, render simple divider
|
|
71
|
+
if (!children) {
|
|
72
|
+
if (variant === 'dashed' || variant === 'dotted') {
|
|
73
|
+
return (
|
|
74
|
+
<View
|
|
75
|
+
style={[
|
|
76
|
+
dividerStyle,
|
|
77
|
+
getDashedStyle(),
|
|
78
|
+
style,
|
|
79
|
+
]}
|
|
80
|
+
testID={testID}
|
|
81
|
+
accessibilityLabel={accessibilityLabel || "divider"}
|
|
82
|
+
/>
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
return (
|
|
87
|
+
<View
|
|
88
|
+
style={[dividerStyles.divider, style]}
|
|
89
|
+
testID={testID}
|
|
90
|
+
accessibilityLabel={accessibilityLabel || "divider"}
|
|
91
|
+
/>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// For lines with content, create a simple dashed line
|
|
96
|
+
const renderLineSegment = () => {
|
|
97
|
+
if (variant === 'dashed' || variant === 'dotted') {
|
|
98
|
+
const actualThickness = getThickness();
|
|
99
|
+
|
|
100
|
+
return (
|
|
101
|
+
<View
|
|
102
|
+
style={[
|
|
103
|
+
dividerStyles.line,
|
|
104
|
+
{
|
|
105
|
+
backgroundColor: 'transparent',
|
|
106
|
+
borderStyle: variant,
|
|
107
|
+
borderColor: dividerStyles.line.backgroundColor,
|
|
108
|
+
...(orientation === 'horizontal' ? {
|
|
109
|
+
borderTopWidth: actualThickness,
|
|
110
|
+
borderBottomWidth: 0,
|
|
111
|
+
borderLeftWidth: 0,
|
|
112
|
+
borderRightWidth: 0,
|
|
113
|
+
height: actualThickness,
|
|
114
|
+
} : {
|
|
115
|
+
borderLeftWidth: actualThickness,
|
|
116
|
+
borderTopWidth: 0,
|
|
117
|
+
borderBottomWidth: 0,
|
|
118
|
+
borderRightWidth: 0,
|
|
119
|
+
width: actualThickness,
|
|
120
|
+
}),
|
|
121
|
+
},
|
|
122
|
+
]}
|
|
123
|
+
/>
|
|
124
|
+
);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
return <View style={dividerStyles.line} />;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
return (
|
|
131
|
+
<View
|
|
132
|
+
style={dividerStyles.container}
|
|
133
|
+
testID={testID}
|
|
134
|
+
accessibilityLabel={accessibilityLabel || "divider with content"}
|
|
135
|
+
>
|
|
136
|
+
{renderLineSegment()}
|
|
137
|
+
<Text style={dividerStyles.content}>
|
|
138
|
+
{children}
|
|
139
|
+
</Text>
|
|
140
|
+
{renderLineSegment()}
|
|
141
|
+
</View>
|
|
142
|
+
);
|
|
143
|
+
};
|
|
144
|
+
|
|
145
145
|
export default Divider;
|