@surrealdb/ui 1.0.61 → 1.0.62
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 +7 -7
- package/dist/ui.d.ts +17 -7
- package/dist/ui.js +3903 -3696
- package/dist/ui.js.map +1 -1
- package/package.json +1 -1
package/dist/fonts.d.ts
CHANGED
|
@@ -1,12 +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
3
|
declare module "@mantine/core" {
|
|
11
4
|
type SurrealVariant = "surreal";
|
|
12
5
|
type SurrealInputVariant = SurrealVariant | "filled";
|
|
@@ -108,6 +101,13 @@ declare module "@mantine/core" {
|
|
|
108
101
|
}
|
|
109
102
|
}
|
|
110
103
|
|
|
104
|
+
declare module "@mantine/core" {
|
|
105
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
106
|
+
interface MantineThemeColorsOverride {
|
|
107
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
111
|
declare module "@mantine/core" {
|
|
112
112
|
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
113
113
|
interface MantineThemeSizesOverride {
|
package/dist/ui.d.ts
CHANGED
|
@@ -899,6 +899,16 @@ export declare function parseEmphasis(text: string, startIndex: number): {
|
|
|
899
899
|
|
|
900
900
|
export declare function parseHeading(state: ParserState): void;
|
|
901
901
|
|
|
902
|
+
/**
|
|
903
|
+
* Parse an HTML `<table>` element into the same TableNode AST
|
|
904
|
+
* that the markdown `| ... |` table parser produces.
|
|
905
|
+
*
|
|
906
|
+
* Handles `<thead>`, `<tbody>`, `<tr>`, `<th>`, `<td>`, and common
|
|
907
|
+
* inline HTML elements inside cells (`<strong>`, `<em>`, `<mark>`,
|
|
908
|
+
* `<code>`, `<a>`).
|
|
909
|
+
*/
|
|
910
|
+
export declare function parseHtmlTable(state: ParserState, attrs: Record<string, string>): void;
|
|
911
|
+
|
|
902
912
|
export declare function parseHtmlTag(state: ParserState): void;
|
|
903
913
|
|
|
904
914
|
export declare function parseHtmlTagInline(text: string, startIndex: number): {
|
|
@@ -1656,13 +1666,6 @@ export declare const VIVID_THEME: ThemeConfig_2;
|
|
|
1656
1666
|
|
|
1657
1667
|
export { }
|
|
1658
1668
|
|
|
1659
|
-
declare module "@mantine/core" {
|
|
1660
|
-
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
1661
|
-
interface MantineThemeColorsOverride {
|
|
1662
|
-
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
1663
|
-
}
|
|
1664
|
-
}
|
|
1665
|
-
|
|
1666
1669
|
declare module "@mantine/core" {
|
|
1667
1670
|
type SurrealVariant = "surreal";
|
|
1668
1671
|
type SurrealInputVariant = SurrealVariant | "filled";
|
|
@@ -1764,6 +1767,13 @@ declare module "@mantine/core" {
|
|
|
1764
1767
|
}
|
|
1765
1768
|
}
|
|
1766
1769
|
|
|
1770
|
+
declare module "@mantine/core" {
|
|
1771
|
+
type ExtendedCustomColors = "obsidian" | "slate" | import("@mantine/core").DefaultMantineColor;
|
|
1772
|
+
interface MantineThemeColorsOverride {
|
|
1773
|
+
colors: Record<ExtendedCustomColors, import("@mantine/core").MantineColorsTuple>;
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1767
1777
|
declare module "@mantine/core" {
|
|
1768
1778
|
type ExtendedCustomSizes = import("@mantine/core").DefaultMantineSize | "2xl" | "3xl";
|
|
1769
1779
|
interface MantineThemeSizesOverride {
|