@aic-kits/react 0.15.7 → 0.16.0
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 +174 -231
- package/dist/index.js +4725 -5930
- package/dist/theme/components/button.d.ts +2 -2
- package/dist/utils/responsiveness.d.ts +1 -1
- package/package.json +5 -5
|
@@ -12,11 +12,11 @@ export interface ButtonSizeConfig {
|
|
|
12
12
|
borderWidth: BorderWidth;
|
|
13
13
|
fontWeight: FontWeight;
|
|
14
14
|
iconWeight: IconWeight;
|
|
15
|
-
}
|
|
16
|
-
export interface ButtonThemeConfig {
|
|
17
15
|
squircleBorderRadii: {
|
|
18
16
|
[key in ButtonCorner]: Radius;
|
|
19
17
|
};
|
|
18
|
+
}
|
|
19
|
+
export interface ButtonThemeConfig {
|
|
20
20
|
loadingConfig: {
|
|
21
21
|
size: Size;
|
|
22
22
|
};
|
|
@@ -10,7 +10,7 @@ export type ResponsiveKey = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
|
10
10
|
export declare const RESPONSIVE_BREAKPOINTS: Record<ResponsiveKey, number>;
|
|
11
11
|
/**
|
|
12
12
|
* The breakpoints used in the responsive system.
|
|
13
|
-
|
|
13
|
+
* @public
|
|
14
14
|
*/
|
|
15
15
|
export declare const RESPONSIVE_BREAKPOINT_KEYS: ResponsiveKey[];
|
|
16
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aic-kits/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@phosphor-icons/react": "^2.1.7",
|
|
31
|
-
"lodash": "^4.17.21"
|
|
32
|
-
"styled-components": "^6.1.16"
|
|
31
|
+
"lodash": "^4.17.21"
|
|
33
32
|
},
|
|
34
33
|
"peerDependencies": {
|
|
35
34
|
"react": "^19.0.0",
|
|
36
|
-
"react-dom": "^19.0.0"
|
|
35
|
+
"react-dom": "^19.0.0",
|
|
36
|
+
"styled-components": "^6"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@emotion/is-prop-valid": "^1.3.1",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"vite-plugin-dts": "^4.3.0",
|
|
47
47
|
"vitest": "^2.1.8"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "b25e1684a42ce3072260801da5045377ce00268d"
|
|
50
50
|
}
|