@avalabs/k2-alpine 1.235.0 → 1.246.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/components/Button/SquareButton.d.ts +11 -1
- package/dist/components/Glow/Glow.d.ts +4 -2
- package/dist/components/Tilt/Tilt.d.ts +5 -1
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +2789 -2687
- package/dist/index.js.map +1 -1
- package/dist/theme/theme.d.ts +12 -0
- package/package.json +7 -7
package/dist/theme/theme.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ declare module '@mui/material/styles' {
|
|
|
21
21
|
accountDetails?: ThemeComponentStylesOverride;
|
|
22
22
|
appBar?: ThemeComponentStylesOverride;
|
|
23
23
|
drawer?: ThemeComponentStylesOverride;
|
|
24
|
+
buttonDisconnect?: ThemeComponentStylesOverride;
|
|
24
25
|
buttonDisabled?: ThemeComponentStylesOverride;
|
|
25
26
|
buttonHoverWithBoxShadow?: ThemeComponentStylesOverride;
|
|
26
27
|
buttonFocused?: ThemeComponentStylesOverride;
|
|
@@ -43,6 +44,7 @@ declare module '@mui/material/styles' {
|
|
|
43
44
|
appBar?: ThemeComponentStylesOverride;
|
|
44
45
|
drawer?: ThemeComponentStylesOverride;
|
|
45
46
|
buttonDisabled?: ThemeComponentStylesOverride;
|
|
47
|
+
buttonDisconnect?: ThemeComponentStylesOverride;
|
|
46
48
|
buttonHoverWithBoxShadow?: ThemeComponentStylesOverride;
|
|
47
49
|
buttonFocused?: ThemeComponentStylesOverride;
|
|
48
50
|
tableCell?: ThemeComponentStylesOverride;
|
|
@@ -161,6 +163,11 @@ declare module '@mui/material/styles' {
|
|
|
161
163
|
positiveChange: string;
|
|
162
164
|
negativeChange: string;
|
|
163
165
|
};
|
|
166
|
+
tabs: {
|
|
167
|
+
scrollButton: {
|
|
168
|
+
background: string;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
164
171
|
}
|
|
165
172
|
interface PaletteOptions {
|
|
166
173
|
alphaMatch?: {
|
|
@@ -243,6 +250,11 @@ declare module '@mui/material/styles' {
|
|
|
243
250
|
positiveChange?: string;
|
|
244
251
|
negativeChange?: string;
|
|
245
252
|
};
|
|
253
|
+
tabs?: {
|
|
254
|
+
scrollButton?: {
|
|
255
|
+
background?: string;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
246
258
|
}
|
|
247
259
|
interface TypeBackground {
|
|
248
260
|
backdrop: string;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@avalabs/k2-alpine",
|
|
3
3
|
"author": "Ava Labs",
|
|
4
4
|
"license": "Limited Ecosystem License",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.246.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.cjs",
|
|
8
8
|
"module": "dist/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dayjs": "^1.11.13",
|
|
32
32
|
"lodash-es": "4.17.21",
|
|
33
33
|
"react-country-flag": "3.1.0",
|
|
34
|
-
"react-day-picker": "^9.
|
|
34
|
+
"react-day-picker": "^9.9.0",
|
|
35
35
|
"sonner": "^2.0.3"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"@storybook/react-vite": "8.6.12",
|
|
55
55
|
"@storybook/test": "8.6.12",
|
|
56
56
|
"@types/lodash-es": "4.17.12",
|
|
57
|
-
"@types/react": "
|
|
58
|
-
"@types/react-dom": "
|
|
59
|
-
"@vitejs/plugin-react": "
|
|
57
|
+
"@types/react": "19.1.8",
|
|
58
|
+
"@types/react-dom": "19.1.6",
|
|
59
|
+
"@vitejs/plugin-react": "4.6.0",
|
|
60
60
|
"motion": "^12.5.0",
|
|
61
61
|
"react": "19.1.0",
|
|
62
62
|
"react-dom": "19.1.0",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"rimraf": "^6.0.1",
|
|
65
65
|
"storybook": "8.6.12",
|
|
66
66
|
"storybook-dark-mode": "^4.0.2",
|
|
67
|
-
"typescript": "
|
|
68
|
-
"vite": "
|
|
67
|
+
"typescript": "5.8.3",
|
|
68
|
+
"vite": "7.0.4",
|
|
69
69
|
"vite-plugin-dts": "^4.5.0"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|