@aristobyte-ui/utils 1.0.34 → 1.0.36
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.d.mts +21 -2
- package/dist/index.d.ts +21 -2
- package/dist/index.js +983 -110
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +983 -110
- package/dist/index.mjs.map +1 -1
- package/dist/styles/_settings.scss +21 -0
- package/package.json +6 -6
- package/styles/_settings.scss +21 -0
package/dist/index.d.mts
CHANGED
|
@@ -16,27 +16,46 @@ declare const Portal: React$1.FC<{
|
|
|
16
16
|
type IconPropsType = {
|
|
17
17
|
size?: number;
|
|
18
18
|
color?: string;
|
|
19
|
+
colors?: string[];
|
|
19
20
|
};
|
|
20
21
|
|
|
21
22
|
declare const Icons: {
|
|
22
23
|
ArrowRight: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
BashCursor: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
23
25
|
Bun: () => react_jsx_runtime.JSX.Element;
|
|
26
|
+
Code: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
24
27
|
Copy: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
25
28
|
Comment: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
Components: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
Disabled: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
Dot: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
Eye: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
26
33
|
Error: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
27
34
|
GalleryVertical: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
28
35
|
GalleryVerticalEnd: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
29
|
-
|
|
36
|
+
GradientSquare: ({ size, colors, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
Github: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
30
38
|
Info: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
Link: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
Logo: ({ size: size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
31
41
|
Npm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
OpenedBook: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
Package: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
Palette: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
PaperCode: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
Play: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
32
47
|
Pnpm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
33
48
|
Heart: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
Resize: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
34
50
|
Share: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
Star: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
52
|
+
Stars: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
35
53
|
Storybook: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
36
54
|
Success: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
37
55
|
User: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
56
|
+
UserGroup: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
38
57
|
Warning: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
39
58
|
Yarn: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
40
59
|
};
|
|
41
60
|
|
|
42
|
-
export { Icons, Portal, type RippleParams, renderRipple };
|
|
61
|
+
export { type IconPropsType, Icons, Portal, type RippleParams, renderRipple };
|
package/dist/index.d.ts
CHANGED
|
@@ -16,27 +16,46 @@ declare const Portal: React$1.FC<{
|
|
|
16
16
|
type IconPropsType = {
|
|
17
17
|
size?: number;
|
|
18
18
|
color?: string;
|
|
19
|
+
colors?: string[];
|
|
19
20
|
};
|
|
20
21
|
|
|
21
22
|
declare const Icons: {
|
|
22
23
|
ArrowRight: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
BashCursor: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
23
25
|
Bun: () => react_jsx_runtime.JSX.Element;
|
|
26
|
+
Code: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
24
27
|
Copy: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
25
28
|
Comment: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
Components: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
Disabled: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
Dot: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
Eye: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
26
33
|
Error: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
27
34
|
GalleryVertical: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
28
35
|
GalleryVerticalEnd: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
29
|
-
|
|
36
|
+
GradientSquare: ({ size, colors, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
Github: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
30
38
|
Info: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
Link: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
Logo: ({ size: size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
31
41
|
Npm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
OpenedBook: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
Package: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
Palette: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
PaperCode: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
Play: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
32
47
|
Pnpm: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
33
48
|
Heart: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
Resize: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
34
50
|
Share: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
Star: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
52
|
+
Stars: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
35
53
|
Storybook: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
36
54
|
Success: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
37
55
|
User: ({ size, color }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
56
|
+
UserGroup: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
38
57
|
Warning: ({ size, color, }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
39
58
|
Yarn: ({ size }: IconPropsType) => react_jsx_runtime.JSX.Element;
|
|
40
59
|
};
|
|
41
60
|
|
|
42
|
-
export { Icons, Portal, type RippleParams, renderRipple };
|
|
61
|
+
export { type IconPropsType, Icons, Portal, type RippleParams, renderRipple };
|