@surrealdb/ui 1.0.83 → 1.0.85
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/ui.d.ts +6 -6
- package/dist/ui.js +2224 -2214
- package/dist/ui.js.map +1 -1
- package/dist/yoopta.d.ts +6 -6
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -2137,15 +2137,15 @@ declare module "@mantine/core" {
|
|
|
2137
2137
|
}
|
|
2138
2138
|
|
|
2139
2139
|
declare module "@mantine/core" {
|
|
2140
|
-
type
|
|
2141
|
-
interface
|
|
2142
|
-
|
|
2140
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
2141
|
+
interface MantineThemeColorsOverride {
|
|
2142
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
2143
2143
|
}
|
|
2144
2144
|
}
|
|
2145
2145
|
|
|
2146
2146
|
declare module "@mantine/core" {
|
|
2147
|
-
type
|
|
2148
|
-
interface
|
|
2149
|
-
|
|
2147
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
2148
|
+
interface MantineThemeSizesOverride {
|
|
2149
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
2150
2150
|
}
|
|
2151
2151
|
}
|