@surrealdb/ui 1.0.17 → 1.0.18
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/fonts.d.ts +3 -3
- package/dist/ui.d.ts +3 -3
- package/package.json +1 -1
package/dist/fonts.d.ts
CHANGED
|
@@ -85,15 +85,15 @@ declare module "@mantine/core" {
|
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
|
|
89
88
|
declare module "@mantine/core" {
|
|
89
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
90
90
|
interface MantineThemeColorsOverride {
|
|
91
|
-
colors: Record<ExtendedCustomColors, MantineColorsTuple>;
|
|
91
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
|
|
96
95
|
declare module "@mantine/core" {
|
|
96
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
97
97
|
interface MantineThemeSizesOverride {
|
|
98
98
|
spacing: Record<ExtendedCustomSizes, string>;
|
|
99
99
|
}
|
package/dist/ui.d.ts
CHANGED
|
@@ -1234,15 +1234,15 @@ declare module "@mantine/core" {
|
|
|
1234
1234
|
}
|
|
1235
1235
|
}
|
|
1236
1236
|
|
|
1237
|
-
|
|
1238
1237
|
declare module "@mantine/core" {
|
|
1238
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
1239
1239
|
interface MantineThemeColorsOverride {
|
|
1240
|
-
colors: Record<ExtendedCustomColors, MantineColorsTuple>;
|
|
1240
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
1241
1241
|
}
|
|
1242
1242
|
}
|
|
1243
1243
|
|
|
1244
|
-
|
|
1245
1244
|
declare module "@mantine/core" {
|
|
1245
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
1246
1246
|
interface MantineThemeSizesOverride {
|
|
1247
1247
|
spacing: Record<ExtendedCustomSizes, string>;
|
|
1248
1248
|
}
|