@taikai/rocket-kit 2.0.0 → 3.0.0-beta.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.
Files changed (32) hide show
  1. package/README.md +12 -5
  2. package/dist/atoms/button/index.d.ts +10 -9
  3. package/dist/atoms/button/stories/button.stories.d.ts +57 -0
  4. package/dist/atoms/button/styles.d.ts +2 -2
  5. package/dist/atoms/button/types.d.ts +2 -1
  6. package/dist/atoms/button-dropdown/index.d.ts +9 -5
  7. package/dist/atoms/button-dropdown/stories/button-dropdown.stories.d.ts +56 -0
  8. package/dist/atoms/button-link/index.d.ts +11 -10
  9. package/dist/atoms/button-link/stories/button-link.stories.d.ts +58 -0
  10. package/dist/atoms/button-link/styles.d.ts +2 -1
  11. package/dist/atoms/select-interactive/components/index.d.ts +6 -0
  12. package/dist/atoms/select-interactive/index.d.ts +2 -1
  13. package/dist/atoms/select-interactive/stories/select-interactive.stories.d.ts +9 -9
  14. package/dist/atoms/select-interactive/styles.d.ts +1 -0
  15. package/dist/atoms/select-interactive/types.d.ts +34 -0
  16. package/dist/atoms/tag/index.d.ts +2 -1
  17. package/dist/atoms/tag/stories/tag.stories.d.ts +37 -0
  18. package/dist/atoms/tag/styles.d.ts +1 -0
  19. package/dist/atoms/tag/types.d.ts +2 -1
  20. package/dist/atoms/tag-number/index.d.ts +5 -2
  21. package/dist/atoms/tag-number/stories/tag-number.stories.d.ts +16 -0
  22. package/dist/atoms/tag-number/styles.d.ts +7 -1
  23. package/dist/ions/variables.d.ts +148 -2
  24. package/dist/rocket-kit.cjs.development.js +706 -653
  25. package/dist/rocket-kit.cjs.development.js.map +1 -1
  26. package/dist/rocket-kit.cjs.production.min.js +190 -330
  27. package/dist/rocket-kit.cjs.production.min.js.map +1 -1
  28. package/dist/rocket-kit.esm.js +708 -655
  29. package/dist/rocket-kit.esm.js.map +1 -1
  30. package/dist/utils/hooks/use-color.d.ts +4 -0
  31. package/package.json +9 -9
  32. package/dist/utils/hooks/use-mouse-move-effect.d.ts +0 -5
@@ -1,4 +1,136 @@
1
1
  export declare const colors: {
2
+ black: string;
3
+ white: string;
4
+ grey50: string;
5
+ grey100: string;
6
+ grey150: string;
7
+ grey200: string;
8
+ grey300: string;
9
+ grey400: string;
10
+ grey500: string;
11
+ grey600: string;
12
+ grey700: string;
13
+ grey800: string;
14
+ grey850: string;
15
+ grey900: string;
16
+ grey950: string;
17
+ blue50: string;
18
+ blue100: string;
19
+ blue150: string;
20
+ blue200: string;
21
+ blue300: string;
22
+ blue400: string;
23
+ blue500: string;
24
+ blue600: string;
25
+ blue700: string;
26
+ blue800: string;
27
+ blue850: string;
28
+ blue900: string;
29
+ blue950: string;
30
+ purple50: string;
31
+ purple100: string;
32
+ purple150: string;
33
+ purple200: string;
34
+ purple300: string;
35
+ purple400: string;
36
+ purple500: string;
37
+ purple600: string;
38
+ purple700: string;
39
+ purple800: string;
40
+ purple850: string;
41
+ purple900: string;
42
+ purple950: string;
43
+ red50: string;
44
+ red100: string;
45
+ red150: string;
46
+ red200: string;
47
+ red300: string;
48
+ red400: string;
49
+ red500: string;
50
+ red600: string;
51
+ red700: string;
52
+ red800: string;
53
+ red850: string;
54
+ red900: string;
55
+ red950: string;
56
+ oracle50: string;
57
+ oracle100: string;
58
+ oracle150: string;
59
+ oracle200: string;
60
+ oracle300: string;
61
+ oracle400: string;
62
+ oracle500: string;
63
+ oracle600: string;
64
+ oracle700: string;
65
+ oracle800: string;
66
+ oracle850: string;
67
+ oracle900: string;
68
+ oracle950: string;
69
+ green50: string;
70
+ green100: string;
71
+ green150: string;
72
+ green200: string;
73
+ green300: string;
74
+ green400: string;
75
+ green500: string;
76
+ green600: string;
77
+ green700: string;
78
+ green800: string;
79
+ green850: string;
80
+ green900: string;
81
+ green950: string;
82
+ orange50: string;
83
+ orange100: string;
84
+ orange150: string;
85
+ orange200: string;
86
+ orange300: string;
87
+ orange400: string;
88
+ orange500: string;
89
+ orange600: string;
90
+ orange700: string;
91
+ orange800: string;
92
+ orange850: string;
93
+ orange900: string;
94
+ orange950: string;
95
+ yellow50: string;
96
+ yellow100: string;
97
+ yellow150: string;
98
+ yellow200: string;
99
+ yellow300: string;
100
+ yellow400: string;
101
+ yellow500: string;
102
+ yellow600: string;
103
+ yellow700: string;
104
+ yellow800: string;
105
+ yellow850: string;
106
+ yellow900: string;
107
+ yellow950: string;
108
+ paleBlue50: string;
109
+ paleBlue100: string;
110
+ paleBlue150: string;
111
+ paleBlue200: string;
112
+ paleBlue300: string;
113
+ paleBlue400: string;
114
+ paleBlue500: string;
115
+ paleBlue600: string;
116
+ paleBlue700: string;
117
+ paleBlue800: string;
118
+ paleBlue850: string;
119
+ paleBlue900: string;
120
+ paleBlue950: string;
121
+ paleOrange50: string;
122
+ paleOrange100: string;
123
+ paleOrange150: string;
124
+ paleOrange200: string;
125
+ paleOrange300: string;
126
+ paleOrange400: string;
127
+ paleOrange500: string;
128
+ paleOrange600: string;
129
+ paleOrange700: string;
130
+ paleOrange800: string;
131
+ paleOrange850: string;
132
+ paleOrange900: string;
133
+ paleOrange950: string;
2
134
  normal: string;
3
135
  light: string;
4
136
  blue: string;
@@ -8,7 +140,6 @@ export declare const colors: {
8
140
  red: string;
9
141
  lightRed: string;
10
142
  darkRed: string;
11
- purple: string;
12
143
  lightPurple: string;
13
144
  darkPurple: string;
14
145
  green: string;
@@ -18,8 +149,23 @@ export declare const colors: {
18
149
  lightGrey: string;
19
150
  darkGrey: string;
20
151
  };
21
- export declare const fontWeight: {
152
+ export declare const colorHues: number[];
153
+ export declare const typography: {
154
+ defaultFont: string;
155
+ defaultSize: string;
22
156
  regular: number;
23
157
  medium: number;
24
158
  bold: number;
159
+ letterSpacing: string;
160
+ };
161
+ export declare const button: {
162
+ height: string;
163
+ borderWidth: string;
164
+ borderRadius: string;
165
+ padding: string;
166
+ iconSpacing: string;
167
+ iconSize: string;
168
+ };
169
+ export declare const misc: {
170
+ transitionDuration: string;
25
171
  };