@surrealdb/ui 1.0.59 → 1.0.60
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 +6 -6
- package/dist/ui.d.ts +6 -6
- package/dist/ui.js +753 -751
- package/dist/ui.js.map +1 -1
- package/package.json +1 -1
package/dist/fonts.d.ts
CHANGED
|
@@ -102,15 +102,15 @@ declare module "@mantine/core" {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
declare module "@mantine/core" {
|
|
105
|
-
type
|
|
106
|
-
interface
|
|
107
|
-
|
|
105
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
106
|
+
interface MantineThemeSizesOverride {
|
|
107
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
declare module "@mantine/core" {
|
|
112
|
-
type
|
|
113
|
-
interface
|
|
114
|
-
|
|
112
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
113
|
+
interface MantineThemeColorsOverride {
|
|
114
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
115
115
|
}
|
|
116
116
|
}
|
package/dist/ui.d.ts
CHANGED
|
@@ -1758,15 +1758,15 @@ declare module "@mantine/core" {
|
|
|
1758
1758
|
}
|
|
1759
1759
|
|
|
1760
1760
|
declare module "@mantine/core" {
|
|
1761
|
-
type
|
|
1762
|
-
interface
|
|
1763
|
-
|
|
1761
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
1762
|
+
interface MantineThemeSizesOverride {
|
|
1763
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
1764
1764
|
}
|
|
1765
1765
|
}
|
|
1766
1766
|
|
|
1767
1767
|
declare module "@mantine/core" {
|
|
1768
|
-
type
|
|
1769
|
-
interface
|
|
1770
|
-
|
|
1768
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
1769
|
+
interface MantineThemeColorsOverride {
|
|
1770
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
1771
1771
|
}
|
|
1772
1772
|
}
|