@surrealdb/ui 1.0.93 → 1.0.94
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 +22 -14
- package/dist/ui.js +1 -0
- package/dist/yoopta.d.ts +14 -14
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -1826,6 +1826,14 @@ export declare interface SpanNode extends CommonAttrs {
|
|
|
1826
1826
|
children: InlineNode[];
|
|
1827
1827
|
}
|
|
1828
1828
|
|
|
1829
|
+
export declare function Spinner({ size, color, className, title, ...props }: SpinnerProps): ReactNode;
|
|
1830
|
+
|
|
1831
|
+
export declare interface SpinnerProps extends BoxProps {
|
|
1832
|
+
size?: MantineSize;
|
|
1833
|
+
color?: MantineColor;
|
|
1834
|
+
title?: string;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1829
1837
|
export declare type StateFields = {
|
|
1830
1838
|
[prop: string]: StateField<any>;
|
|
1831
1839
|
};
|
|
@@ -2090,20 +2098,6 @@ declare interface ZeroOrMoreNode {
|
|
|
2090
2098
|
|
|
2091
2099
|
export { }
|
|
2092
2100
|
|
|
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
|
-
|
|
2107
2101
|
declare module "@mantine/core" {
|
|
2108
2102
|
type SurrealVariant = "surreal";
|
|
2109
2103
|
type SurrealInputVariant = SurrealVariant | "gradient";
|
|
@@ -2222,3 +2216,17 @@ declare module "@mantine/core" {
|
|
|
2222
2216
|
variant?: SurrealVariant | "spaced";
|
|
2223
2217
|
}
|
|
2224
2218
|
}
|
|
2219
|
+
|
|
2220
|
+
declare module "@mantine/core" {
|
|
2221
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
2222
|
+
interface MantineThemeColorsOverride {
|
|
2223
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
2224
|
+
}
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
declare module "@mantine/core" {
|
|
2228
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
2229
|
+
interface MantineThemeSizesOverride {
|
|
2230
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
2231
|
+
}
|
|
2232
|
+
}
|
package/dist/ui.js
CHANGED
|
@@ -17192,6 +17192,7 @@ export {
|
|
|
17192
17192
|
Gd as SYNTAX_THEME_CONFIG,
|
|
17193
17193
|
_m as Since,
|
|
17194
17194
|
VS as Spacer,
|
|
17195
|
+
Oh as Spinner,
|
|
17195
17196
|
JP as SurrealCodeBlock,
|
|
17196
17197
|
Fs as SurrealLink,
|
|
17197
17198
|
eh as SurrealistMini,
|
package/dist/yoopta.d.ts
CHANGED
|
@@ -1,19 +1,5 @@
|
|
|
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
|
-
|
|
10
|
-
declare module "@mantine/core" {
|
|
11
|
-
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
12
|
-
interface MantineThemeSizesOverride {
|
|
13
|
-
spacing: Record<ExtendedCustomSizes, string>;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
3
|
declare module "@mantine/core" {
|
|
18
4
|
type SurrealVariant = "surreal";
|
|
19
5
|
type SurrealInputVariant = SurrealVariant | "gradient";
|
|
@@ -132,3 +118,17 @@ declare module "@mantine/core" {
|
|
|
132
118
|
variant?: SurrealVariant | "spaced";
|
|
133
119
|
}
|
|
134
120
|
}
|
|
121
|
+
|
|
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
|
+
declare module "@mantine/core" {
|
|
130
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
131
|
+
interface MantineThemeSizesOverride {
|
|
132
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
133
|
+
}
|
|
134
|
+
}
|