@surrealdb/ui 1.0.91 → 1.0.92
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 +7 -7
- package/dist/ui.js +46 -45
- package/dist/ui.js.map +1 -1
- package/dist/yoopta.d.ts +7 -7
- package/package.json +1 -1
package/dist/yoopta.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export { }
|
|
2
2
|
|
|
3
|
+
declare module "@mantine/core" {
|
|
4
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
5
|
+
interface MantineThemeColorsOverride {
|
|
6
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
3
10
|
declare module "@mantine/core" {
|
|
4
11
|
type SurrealVariant = "surreal";
|
|
5
12
|
type SurrealInputVariant = SurrealVariant | "gradient";
|
|
@@ -119,13 +126,6 @@ declare module "@mantine/core" {
|
|
|
119
126
|
}
|
|
120
127
|
}
|
|
121
128
|
|
|
122
|
-
declare module "@mantine/core" {
|
|
123
|
-
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
124
|
-
interface MantineThemeColorsOverride {
|
|
125
|
-
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
129
|
declare module "@mantine/core" {
|
|
130
130
|
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
131
131
|
interface MantineThemeSizesOverride {
|