ymy-components 0.0.11 → 0.0.13
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.js +49 -21
- package/dist/index.es.js +2618 -1607
- package/dist/src/index.d.ts +5 -2
- package/package.json +4 -2
package/dist/src/index.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export interface AnimatedTextProps {
|
|
|
11
11
|
htmlElement?: keyof JSX.IntrinsicElements;
|
|
12
12
|
fadeIn?: boolean;
|
|
13
13
|
}
|
|
14
|
-
|
|
15
14
|
export declare const AnimatedText: React.FC<AnimatedTextProps>;
|
|
16
15
|
|
|
17
16
|
export interface BannerButtonProps {
|
|
@@ -23,5 +22,9 @@ export interface BannerButtonProps {
|
|
|
23
22
|
};
|
|
24
23
|
buttonType?: 'primary' | 'secondary';
|
|
25
24
|
}
|
|
26
|
-
|
|
27
25
|
export declare const BannerButton: React.FC<BannerButtonProps>;
|
|
26
|
+
|
|
27
|
+
export interface CircleIconButtonProps {
|
|
28
|
+
iconType: 'person' | 'qr';
|
|
29
|
+
}
|
|
30
|
+
export declare const CircleIconButton: React.FC<CircleIconButtonProps>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ymy-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.13",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
"@react-spring/web": "^9.7.5",
|
|
39
39
|
"react": "^18.0.0",
|
|
40
40
|
"react-dom": "^18.0.0",
|
|
41
|
-
"styled-components": "^6.1.16"
|
|
41
|
+
"styled-components": "^6.1.16",
|
|
42
|
+
"@reduxjs/toolkit": "^2.6.1",
|
|
43
|
+
"react-redux": "^9.2.0"
|
|
42
44
|
}
|
|
43
45
|
}
|