@surrealdb/ui 1.0.91 → 1.0.93
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 +15 -15
- package/dist/ui.js +1534 -1533
- package/dist/ui.js.map +1 -1
- package/dist/yoopta.d.ts +14 -14
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -568,7 +568,7 @@ export declare function getBrandsafeImageURL(imageId: string | undefined, width?
|
|
|
568
568
|
|
|
569
569
|
export declare function getBrandsafeVideoURL(videoId: string | undefined, format?: "mp4" | "webm" | "mov", controls?: boolean): string | undefined;
|
|
570
570
|
|
|
571
|
-
declare interface Heading {
|
|
571
|
+
export declare interface Heading {
|
|
572
572
|
id: string;
|
|
573
573
|
text: string;
|
|
574
574
|
depth: 1 | 2 | 3 | 4 | 5 | 6;
|
|
@@ -2090,6 +2090,20 @@ declare interface ZeroOrMoreNode {
|
|
|
2090
2090
|
|
|
2091
2091
|
export { }
|
|
2092
2092
|
|
|
2093
|
+
declare module "@mantine/core" {
|
|
2094
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
2095
|
+
interface MantineThemeColorsOverride {
|
|
2096
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
2097
|
+
}
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
declare module "@mantine/core" {
|
|
2101
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
2102
|
+
interface MantineThemeSizesOverride {
|
|
2103
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2093
2107
|
declare module "@mantine/core" {
|
|
2094
2108
|
type SurrealVariant = "surreal";
|
|
2095
2109
|
type SurrealInputVariant = SurrealVariant | "gradient";
|
|
@@ -2208,17 +2222,3 @@ declare module "@mantine/core" {
|
|
|
2208
2222
|
variant?: SurrealVariant | "spaced";
|
|
2209
2223
|
}
|
|
2210
2224
|
}
|
|
2211
|
-
|
|
2212
|
-
declare module "@mantine/core" {
|
|
2213
|
-
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
2214
|
-
interface MantineThemeColorsOverride {
|
|
2215
|
-
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
2216
|
-
}
|
|
2217
|
-
}
|
|
2218
|
-
|
|
2219
|
-
declare module "@mantine/core" {
|
|
2220
|
-
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
2221
|
-
interface MantineThemeSizesOverride {
|
|
2222
|
-
spacing: Record<ExtendedCustomSizes, string>;
|
|
2223
|
-
}
|
|
2224
|
-
}
|