@surrealdb/ui 1.0.98 → 1.0.99
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/{CLAUDE.md → AGENTS.md} +9 -0
- package/dist/icons.d.ts +11 -9
- package/dist/icons.js +25 -24
- package/dist/icons.js.map +1 -1
- package/dist/ui.css +1 -1
- package/dist/ui.d.ts +11 -9
- package/dist/ui.js +760 -753
- package/dist/ui.js.map +1 -1
- package/dist/yoopta.d.ts +9 -9
- package/package.json +1 -1
package/dist/yoopta.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
declare module "@mantine/core" {
|
|
4
11
|
type SurrealVariant = "surreal";
|
|
5
12
|
type SurrealInputVariant = SurrealVariant | "gradient";
|
|
@@ -94,7 +101,7 @@ declare module "@mantine/core" {
|
|
|
94
101
|
variant?: SurrealVariant;
|
|
95
102
|
}
|
|
96
103
|
interface SegmentedControlProps {
|
|
97
|
-
variant?:
|
|
104
|
+
variant?: "gradient";
|
|
98
105
|
}
|
|
99
106
|
interface KbdProps {
|
|
100
107
|
variant?: SurrealVariant;
|
|
@@ -109,7 +116,7 @@ declare module "@mantine/core" {
|
|
|
109
116
|
variant?: SurrealVariant;
|
|
110
117
|
}
|
|
111
118
|
interface TabsProps {
|
|
112
|
-
variant?: "default" | "outline" | "pills" | "gradient";
|
|
119
|
+
variant?: "default" | "outline" | "pills" | "gradient" | SurrealVariant;
|
|
113
120
|
}
|
|
114
121
|
interface TableProps {
|
|
115
122
|
variant?: SurrealVariant;
|
|
@@ -119,13 +126,6 @@ declare module "@mantine/core" {
|
|
|
119
126
|
}
|
|
120
127
|
}
|
|
121
128
|
|
|
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
129
|
declare module "@mantine/core" {
|
|
130
130
|
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
131
131
|
interface MantineThemeSizesOverride {
|