@dito-uai/components 5.0.0-alpha27 → 5.0.0-alpha29
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.cjs +1489 -52
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1451 -14
- package/package.json +2 -2
- package/tailwind.config.ts +88 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dito-uai/components",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-alpha29",
|
|
4
4
|
"descriptin": "Dito's design system component library, made in TSX",
|
|
5
5
|
"repository": "git+https://github.com/ditointernet/dito-uai.git",
|
|
6
6
|
"publishConfig": {
|
|
@@ -101,4 +101,4 @@
|
|
|
101
101
|
"react-hook-form": "^7.52.1",
|
|
102
102
|
"zod": "^3.23.8"
|
|
103
103
|
}
|
|
104
|
-
}
|
|
104
|
+
}
|
package/tailwind.config.ts
CHANGED
|
@@ -1,8 +1,94 @@
|
|
|
1
1
|
import TailwindsForms from '@tailwindcss/forms';
|
|
2
2
|
import TailwindsTypography from '@tailwindcss/typography';
|
|
3
3
|
import TailwindsAnimate from 'tailwindcss-animate';
|
|
4
|
-
|
|
5
|
-
export
|
|
4
|
+
|
|
5
|
+
export const COLORS = {
|
|
6
|
+
neutral: {
|
|
7
|
+
white: '#ffffff',
|
|
8
|
+
black: '#000000',
|
|
9
|
+
neutral_900: '#21242b',
|
|
10
|
+
neutral_700: '#343841',
|
|
11
|
+
neutral_600: '#484d59',
|
|
12
|
+
neutral_500: '#6a7486',
|
|
13
|
+
neutral_400: '#8d95a7',
|
|
14
|
+
neutral_300: '#bdc2cc',
|
|
15
|
+
neutral_200: '#d7dae0',
|
|
16
|
+
neutral_100: '#eff0f2',
|
|
17
|
+
},
|
|
18
|
+
brand: {
|
|
19
|
+
navy_900: '#223154',
|
|
20
|
+
navy_600: '#364b74',
|
|
21
|
+
navy_100: '#e6e8ed',
|
|
22
|
+
green_900: '#006a31',
|
|
23
|
+
green_600: '#00bd6a',
|
|
24
|
+
green_100: '#e5f7ed',
|
|
25
|
+
},
|
|
26
|
+
secondary: {
|
|
27
|
+
indigo_900: '#353877',
|
|
28
|
+
indigo_600: '#4b5398',
|
|
29
|
+
indigo_100: '#e8eaf2',
|
|
30
|
+
purple_900: '#541f8e',
|
|
31
|
+
purple_600: '#852ca5',
|
|
32
|
+
purple_100: '#f7e7fc',
|
|
33
|
+
blue_900: '#4a58d5',
|
|
34
|
+
blue_600: '#549eff',
|
|
35
|
+
blue_100: '#e4f1ff',
|
|
36
|
+
pink_900: '#a50a54',
|
|
37
|
+
pink_600: '#f1167f',
|
|
38
|
+
pink_100: '#fee6f1',
|
|
39
|
+
green_900: '#127a6e',
|
|
40
|
+
green_600: '#06c5ae',
|
|
41
|
+
green_100: '#e6f9f7',
|
|
42
|
+
platform_background: '#f3f4f8',
|
|
43
|
+
},
|
|
44
|
+
chart: {
|
|
45
|
+
midnight_blue_900: '#0a0259',
|
|
46
|
+
midnight_blue_600: '#271bae',
|
|
47
|
+
midnight_blue_100: '#ebf0ff',
|
|
48
|
+
green_900: '#005b42',
|
|
49
|
+
green_600: '#0bcc96',
|
|
50
|
+
green_100: '#e5fff4',
|
|
51
|
+
purple_900: '#4c178e',
|
|
52
|
+
purple_600: '#8929ff',
|
|
53
|
+
purple_100: '#f6eeff',
|
|
54
|
+
pink_900: '#b91d70',
|
|
55
|
+
pink_600: '#ff00b8',
|
|
56
|
+
pink_100: '#fff1fb',
|
|
57
|
+
light_blue_900: '#094170',
|
|
58
|
+
light_blue_600: '#00beff',
|
|
59
|
+
light_blue_100: '#ebf9ff',
|
|
60
|
+
orange_900: '#b84300',
|
|
61
|
+
orange_600: '#ff7a00',
|
|
62
|
+
orange_100: '#fff0df',
|
|
63
|
+
red_900: '#8b0c23',
|
|
64
|
+
red_600: '#db0028',
|
|
65
|
+
red_100: '#ffecef',
|
|
66
|
+
blue_900: '#09006d',
|
|
67
|
+
blue_600: '#1456ff',
|
|
68
|
+
blue_100: '#e6f2ff',
|
|
69
|
+
yellow_900: '#9d670b',
|
|
70
|
+
yellow_600: '#f1c40f',
|
|
71
|
+
yellow_100: '#fff9e7',
|
|
72
|
+
},
|
|
73
|
+
notification: {
|
|
74
|
+
critical_900: '#9e0505',
|
|
75
|
+
critical_600: '#d31d26',
|
|
76
|
+
critical_300: '#ffadb0',
|
|
77
|
+
critical_100: '#ffebeb',
|
|
78
|
+
warning_900: '#8a4900',
|
|
79
|
+
warning_600: '#ffca42',
|
|
80
|
+
warning_300: '#ffe8a9',
|
|
81
|
+
warning_100: '#fff6ce',
|
|
82
|
+
success_900: '#074a1b',
|
|
83
|
+
success_600: '#228000',
|
|
84
|
+
success_300: '#80e09c',
|
|
85
|
+
success_100: '#defce7',
|
|
86
|
+
information_900: '#1e4664',
|
|
87
|
+
information_600: '#0d74a0',
|
|
88
|
+
information_300: '#b0e7ff',
|
|
89
|
+
information_100: '#e0f8ff',
|
|
90
|
+
},
|
|
91
|
+
};
|
|
6
92
|
|
|
7
93
|
/** @type {import('tailwindcss').Config} */
|
|
8
94
|
export default {
|