@spelyco/react-lib 1.0.0-a4ad2a8e-beta → 1.0.0-c0454a79-beta
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -118,6 +118,12 @@ declare const theme: (primaryColor?: string) => {
|
|
|
118
118
|
lg?: string | undefined;
|
|
119
119
|
xl?: string | undefined;
|
|
120
120
|
} | undefined;
|
|
121
|
+
fontWeights?: {
|
|
122
|
+
[x: string & {}]: string | undefined;
|
|
123
|
+
bold?: string | undefined;
|
|
124
|
+
regular?: string | undefined;
|
|
125
|
+
medium?: string | undefined;
|
|
126
|
+
} | undefined;
|
|
121
127
|
breakpoints?: {
|
|
122
128
|
[x: string & {}]: string | undefined;
|
|
123
129
|
md?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,12 @@ declare const theme: (primaryColor?: string) => {
|
|
|
118
118
|
lg?: string | undefined;
|
|
119
119
|
xl?: string | undefined;
|
|
120
120
|
} | undefined;
|
|
121
|
+
fontWeights?: {
|
|
122
|
+
[x: string & {}]: string | undefined;
|
|
123
|
+
bold?: string | undefined;
|
|
124
|
+
regular?: string | undefined;
|
|
125
|
+
medium?: string | undefined;
|
|
126
|
+
} | undefined;
|
|
121
127
|
breakpoints?: {
|
|
122
128
|
[x: string & {}]: string | undefined;
|
|
123
129
|
md?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spelyco/react-lib",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-c0454a79-beta",
|
|
4
4
|
"description": "Shared React hooks and utilities for Spelyco UI packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"clean": "rm -rf dist"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@mantine/core": ">=
|
|
35
|
+
"@mantine/core": ">=9",
|
|
36
36
|
"react": ">=18"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@mantine/core": "^
|
|
39
|
+
"@mantine/core": "^9.0.1",
|
|
40
40
|
"@spelyco/tsconfig": "*",
|
|
41
41
|
"@testing-library/react": "^16.1.0",
|
|
42
42
|
"@types/react": "^19.2.14",
|