@surrealdb/ui 1.0.82 → 1.0.83

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 CHANGED
@@ -2137,15 +2137,15 @@ declare module "@mantine/core" {
2137
2137
  }
2138
2138
 
2139
2139
  declare module "@mantine/core" {
2140
- type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
2141
- interface MantineThemeColorsOverride {
2142
- colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
2140
+ type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
2141
+ interface MantineThemeSizesOverride {
2142
+ spacing: Record<ExtendedCustomSizes, string>;
2143
2143
  }
2144
2144
  }
2145
2145
 
2146
2146
  declare module "@mantine/core" {
2147
- type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
2148
- interface MantineThemeSizesOverride {
2149
- spacing: Record<ExtendedCustomSizes, string>;
2147
+ type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
2148
+ interface MantineThemeColorsOverride {
2149
+ colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
2150
2150
  }
2151
2151
  }