@surrealdb/ui 1.0.95 → 1.0.97
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/icons.d.ts +6 -6
- package/dist/ui.d.ts +7 -6
- package/dist/ui.js +3940 -3778
- package/dist/ui.js.map +1 -1
- package/dist/yoopta.d.ts +6 -6
- package/package.json +1 -1
package/dist/icons.d.ts
CHANGED
|
@@ -466,15 +466,15 @@ declare module "@mantine/core" {
|
|
|
466
466
|
}
|
|
467
467
|
|
|
468
468
|
declare module "@mantine/core" {
|
|
469
|
-
type
|
|
470
|
-
interface
|
|
471
|
-
|
|
469
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
470
|
+
interface MantineThemeColorsOverride {
|
|
471
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
472
472
|
}
|
|
473
473
|
}
|
|
474
474
|
|
|
475
475
|
declare module "@mantine/core" {
|
|
476
|
-
type
|
|
477
|
-
interface
|
|
478
|
-
|
|
476
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
477
|
+
interface MantineThemeSizesOverride {
|
|
478
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
479
479
|
}
|
|
480
480
|
}
|
package/dist/ui.d.ts
CHANGED
|
@@ -309,6 +309,7 @@ export declare type CDNImageElementMap = {
|
|
|
309
309
|
export declare interface CDNImageProps {
|
|
310
310
|
nodeType: "void";
|
|
311
311
|
code: string;
|
|
312
|
+
alt: string;
|
|
312
313
|
}
|
|
313
314
|
|
|
314
315
|
export declare const CDNVideo: YooptaPlugin<CDNVideoElementMap>;
|
|
@@ -2226,15 +2227,15 @@ declare module "@mantine/core" {
|
|
|
2226
2227
|
}
|
|
2227
2228
|
|
|
2228
2229
|
declare module "@mantine/core" {
|
|
2229
|
-
type
|
|
2230
|
-
interface
|
|
2231
|
-
|
|
2230
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
2231
|
+
interface MantineThemeColorsOverride {
|
|
2232
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
2232
2233
|
}
|
|
2233
2234
|
}
|
|
2234
2235
|
|
|
2235
2236
|
declare module "@mantine/core" {
|
|
2236
|
-
type
|
|
2237
|
-
interface
|
|
2238
|
-
|
|
2237
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
2238
|
+
interface MantineThemeSizesOverride {
|
|
2239
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
2239
2240
|
}
|
|
2240
2241
|
}
|