@grupalia/rn-ui-kit 0.0.1
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 +46 -0
- package/lib/commonjs/components/BaseButton.js +246 -0
- package/lib/commonjs/components/BaseButton.js.map +1 -0
- package/lib/commonjs/components/index.js +14 -0
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/index.js +29 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/preset.js +30 -0
- package/lib/commonjs/preset.js.map +1 -0
- package/lib/commonjs/styles/background-colors.js +135 -0
- package/lib/commonjs/styles/background-colors.js.map +1 -0
- package/lib/commonjs/styles/border-colors.js +51 -0
- package/lib/commonjs/styles/border-colors.js.map +1 -0
- package/lib/commonjs/styles/colors.js +390 -0
- package/lib/commonjs/styles/colors.js.map +1 -0
- package/lib/commonjs/styles/foreground-colors.js +91 -0
- package/lib/commonjs/styles/foreground-colors.js.map +1 -0
- package/lib/commonjs/styles/gradients.js +1241 -0
- package/lib/commonjs/styles/gradients.js.map +1 -0
- package/lib/commonjs/styles/text-colors.js +99 -0
- package/lib/commonjs/styles/text-colors.js.map +1 -0
- package/lib/commonjs/types/nativewind-env.d.js +3 -0
- package/lib/commonjs/types/nativewind-env.d.js.map +1 -0
- package/lib/module/components/BaseButton.js +241 -0
- package/lib/module/components/BaseButton.js.map +1 -0
- package/lib/module/components/index.js +4 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/index.js +5 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/preset.js +25 -0
- package/lib/module/preset.js.map +1 -0
- package/lib/module/styles/background-colors.js +130 -0
- package/lib/module/styles/background-colors.js.map +1 -0
- package/lib/module/styles/border-colors.js +46 -0
- package/lib/module/styles/border-colors.js.map +1 -0
- package/lib/module/styles/colors.js +386 -0
- package/lib/module/styles/colors.js.map +1 -0
- package/lib/module/styles/foreground-colors.js +86 -0
- package/lib/module/styles/foreground-colors.js.map +1 -0
- package/lib/module/styles/gradients.js +1237 -0
- package/lib/module/styles/gradients.js.map +1 -0
- package/lib/module/styles/text-colors.js +94 -0
- package/lib/module/styles/text-colors.js.map +1 -0
- package/lib/module/types/nativewind-env.d.js +3 -0
- package/lib/module/types/nativewind-env.d.js.map +1 -0
- package/lib/typescript/commonjs/components/BaseButton.d.ts +15 -0
- package/lib/typescript/commonjs/components/BaseButton.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/index.d.ts +2 -0
- package/lib/typescript/commonjs/components/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.d.ts +3 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/preset.d.ts +4 -0
- package/lib/typescript/commonjs/preset.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles/background-colors.d.ts +128 -0
- package/lib/typescript/commonjs/styles/background-colors.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles/border-colors.d.ts +44 -0
- package/lib/typescript/commonjs/styles/border-colors.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles/colors.d.ts +385 -0
- package/lib/typescript/commonjs/styles/colors.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles/foreground-colors.d.ts +84 -0
- package/lib/typescript/commonjs/styles/foreground-colors.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles/gradients.d.ts +900 -0
- package/lib/typescript/commonjs/styles/gradients.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles/text-colors.d.ts +92 -0
- package/lib/typescript/commonjs/styles/text-colors.d.ts.map +1 -0
- package/lib/typescript/module/components/BaseButton.d.ts +15 -0
- package/lib/typescript/module/components/BaseButton.d.ts.map +1 -0
- package/lib/typescript/module/components/index.d.ts +2 -0
- package/lib/typescript/module/components/index.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +3 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/preset.d.ts +4 -0
- package/lib/typescript/module/preset.d.ts.map +1 -0
- package/lib/typescript/module/styles/background-colors.d.ts +128 -0
- package/lib/typescript/module/styles/background-colors.d.ts.map +1 -0
- package/lib/typescript/module/styles/border-colors.d.ts +44 -0
- package/lib/typescript/module/styles/border-colors.d.ts.map +1 -0
- package/lib/typescript/module/styles/colors.d.ts +385 -0
- package/lib/typescript/module/styles/colors.d.ts.map +1 -0
- package/lib/typescript/module/styles/foreground-colors.d.ts +84 -0
- package/lib/typescript/module/styles/foreground-colors.d.ts.map +1 -0
- package/lib/typescript/module/styles/gradients.d.ts +900 -0
- package/lib/typescript/module/styles/gradients.d.ts.map +1 -0
- package/lib/typescript/module/styles/text-colors.d.ts +92 -0
- package/lib/typescript/module/styles/text-colors.d.ts.map +1 -0
- package/package.json +89 -0
- package/src/preset.ts +32 -0
- package/src/styles/background-colors.ts +128 -0
- package/src/styles/border-colors.ts +44 -0
- package/src/styles/colors.ts +383 -0
- package/src/styles/foreground-colors.ts +84 -0
- package/src/styles/gradients.ts +1570 -0
- package/src/styles/text-colors.ts +92 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../src/styles/colors.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8XE"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'fg-primary': {
|
|
3
|
+
light: string;
|
|
4
|
+
dark: string;
|
|
5
|
+
};
|
|
6
|
+
'fg-secondary': {
|
|
7
|
+
light: string;
|
|
8
|
+
dark: string;
|
|
9
|
+
};
|
|
10
|
+
'fg-secondary_hover': {
|
|
11
|
+
light: string;
|
|
12
|
+
dark: string;
|
|
13
|
+
};
|
|
14
|
+
'fg-tertiary': {
|
|
15
|
+
light: string;
|
|
16
|
+
dark: string;
|
|
17
|
+
};
|
|
18
|
+
'fg-tertiary_hover': {
|
|
19
|
+
light: string;
|
|
20
|
+
dark: string;
|
|
21
|
+
};
|
|
22
|
+
'fg-quaternary': {
|
|
23
|
+
light: string;
|
|
24
|
+
dark: string;
|
|
25
|
+
};
|
|
26
|
+
'fg-quaternary_hover': {
|
|
27
|
+
light: string;
|
|
28
|
+
dark: string;
|
|
29
|
+
};
|
|
30
|
+
'fg-white': {
|
|
31
|
+
light: string;
|
|
32
|
+
dark: string;
|
|
33
|
+
};
|
|
34
|
+
'fg-disabled': {
|
|
35
|
+
light: string;
|
|
36
|
+
dark: string;
|
|
37
|
+
};
|
|
38
|
+
'fg-disabled_subtle': {
|
|
39
|
+
light: string;
|
|
40
|
+
dark: string;
|
|
41
|
+
};
|
|
42
|
+
'fg-brand-primary': {
|
|
43
|
+
light: string;
|
|
44
|
+
dark: string;
|
|
45
|
+
};
|
|
46
|
+
'fg-brand-primary_alt': {
|
|
47
|
+
light: string;
|
|
48
|
+
dark: string;
|
|
49
|
+
};
|
|
50
|
+
'fg-brand-secondary': {
|
|
51
|
+
light: string;
|
|
52
|
+
dark: string;
|
|
53
|
+
};
|
|
54
|
+
'fg-brand-secondary_alt': {
|
|
55
|
+
light: string;
|
|
56
|
+
dark: string;
|
|
57
|
+
};
|
|
58
|
+
'fg-error-primary': {
|
|
59
|
+
light: string;
|
|
60
|
+
dark: string;
|
|
61
|
+
};
|
|
62
|
+
'fg-error-secondary': {
|
|
63
|
+
light: string;
|
|
64
|
+
dark: string;
|
|
65
|
+
};
|
|
66
|
+
'fg-warning-primary': {
|
|
67
|
+
light: string;
|
|
68
|
+
dark: string;
|
|
69
|
+
};
|
|
70
|
+
'fg-warning-secondary': {
|
|
71
|
+
light: string;
|
|
72
|
+
dark: string;
|
|
73
|
+
};
|
|
74
|
+
'fg-success-primary': {
|
|
75
|
+
light: string;
|
|
76
|
+
dark: string;
|
|
77
|
+
};
|
|
78
|
+
'fg-success-secondary': {
|
|
79
|
+
light: string;
|
|
80
|
+
dark: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
export default _default;
|
|
84
|
+
//# sourceMappingURL=foreground-colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"foreground-colors.d.ts","sourceRoot":"","sources":["../../../../src/styles/foreground-colors.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAiFE"}
|