@surrealdb/ui 1.0.92 → 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 +8 -8
- package/dist/ui.js +1492 -1492
- package/dist/ui.js.map +1 -1
- package/dist/yoopta.d.ts +7 -7
- 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;
|
|
@@ -2097,6 +2097,13 @@ declare module "@mantine/core" {
|
|
|
2097
2097
|
}
|
|
2098
2098
|
}
|
|
2099
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
|
+
|
|
2100
2107
|
declare module "@mantine/core" {
|
|
2101
2108
|
type SurrealVariant = "surreal";
|
|
2102
2109
|
type SurrealInputVariant = SurrealVariant | "gradient";
|
|
@@ -2215,10 +2222,3 @@ declare module "@mantine/core" {
|
|
|
2215
2222
|
variant?: SurrealVariant | "spaced";
|
|
2216
2223
|
}
|
|
2217
2224
|
}
|
|
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
|
-
}
|