@surrealdb/ui 1.2.5 → 1.2.7
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/fonts.d.ts +6 -6
- package/dist/icons.d.ts +28 -6
- package/dist/icons.js +137 -126
- package/dist/icons.js.map +1 -1
- package/dist/ui.d.ts +28 -6
- package/dist/ui.js +1225 -1214
- package/dist/ui.js.map +1 -1
- package/package.json +1 -1
package/dist/fonts.d.ts
CHANGED
|
@@ -120,15 +120,15 @@ declare module "@mantine/core" {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
declare module "@mantine/core" {
|
|
123
|
-
type
|
|
124
|
-
interface
|
|
125
|
-
|
|
123
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
124
|
+
interface MantineThemeSizesOverride {
|
|
125
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
declare module "@mantine/core" {
|
|
130
|
-
type
|
|
131
|
-
interface
|
|
132
|
-
|
|
130
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
131
|
+
interface MantineThemeColorsOverride {
|
|
132
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
133
133
|
}
|
|
134
134
|
}
|
package/dist/icons.d.ts
CHANGED
|
@@ -223,6 +223,28 @@ export declare const KeyboardOption: string;
|
|
|
223
223
|
|
|
224
224
|
export declare const KeyboardShift: string;
|
|
225
225
|
|
|
226
|
+
export declare const LangC: string;
|
|
227
|
+
|
|
228
|
+
export declare const LangDotNet: string;
|
|
229
|
+
|
|
230
|
+
export declare const LangGo: string;
|
|
231
|
+
|
|
232
|
+
export declare const LangJava: string;
|
|
233
|
+
|
|
234
|
+
export declare const LangJavaScript: string;
|
|
235
|
+
|
|
236
|
+
export declare const LangKotlin: string;
|
|
237
|
+
|
|
238
|
+
export declare const LangMojo: string;
|
|
239
|
+
|
|
240
|
+
export declare const LangPHP: string;
|
|
241
|
+
|
|
242
|
+
export declare const LangPython: string;
|
|
243
|
+
|
|
244
|
+
export declare const LangRust: string;
|
|
245
|
+
|
|
246
|
+
export declare const LangSwift: string;
|
|
247
|
+
|
|
226
248
|
export declare const List: string;
|
|
227
249
|
|
|
228
250
|
export declare const Live: string;
|
|
@@ -497,15 +519,15 @@ declare module "@mantine/core" {
|
|
|
497
519
|
}
|
|
498
520
|
|
|
499
521
|
declare module "@mantine/core" {
|
|
500
|
-
type
|
|
501
|
-
interface
|
|
502
|
-
|
|
522
|
+
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
523
|
+
interface MantineThemeSizesOverride {
|
|
524
|
+
spacing: Record<ExtendedCustomSizes, string>;
|
|
503
525
|
}
|
|
504
526
|
}
|
|
505
527
|
|
|
506
528
|
declare module "@mantine/core" {
|
|
507
|
-
type
|
|
508
|
-
interface
|
|
509
|
-
|
|
529
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
530
|
+
interface MantineThemeColorsOverride {
|
|
531
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
510
532
|
}
|
|
511
533
|
}
|