xmlui 0.11.12 → 0.11.15
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/lib/{index-C_siLDTF.js → index-CP9ZIMMT.js} +230 -61
- package/dist/lib/index.css +1 -1
- package/dist/lib/{initMock-BYfY6ibT.js → initMock-C17fxLuA.js} +1 -1
- package/dist/lib/language-server-web-worker.js +1 -1
- package/dist/lib/language-server.js +1 -1
- package/dist/lib/{metadata-utils-2bsMr4Gd.js → metadata-utils-BXGJbvlh.js} +2 -2
- package/dist/lib/{server-common-aCslEKNy.js → server-common-Ce61T1XU.js} +1 -1
- package/dist/lib/testing.d.ts +9 -0
- package/dist/lib/testing.js +14 -0
- package/dist/lib/xmlui-parser.d.ts +1 -0
- package/dist/lib/xmlui.d.ts +4 -0
- package/dist/lib/xmlui.js +1 -1
- package/dist/metadata/{collectedComponentMetadata-CCJh2wtR.js → collectedComponentMetadata-Bn_obqca.js} +229 -60
- package/dist/metadata/{initMock-Dm6pyFPh.js → initMock-DROjRCvI.js} +1 -1
- package/dist/metadata/xmlui-metadata.css +1 -1
- package/dist/metadata/xmlui-metadata.js +1 -1
- package/dist/metadata/xmlui-metadata.umd.cjs +3 -3
- package/dist/standalone/xmlui-standalone.es.d.ts +7 -0
- package/dist/standalone/xmlui-standalone.umd.js +36 -36
- package/package.json +1 -1
|
@@ -581,6 +581,7 @@ declare type ContentSeparatorProps = {
|
|
|
581
581
|
thickness?: number | string;
|
|
582
582
|
length?: number | string;
|
|
583
583
|
orientation?: string;
|
|
584
|
+
hasExplicitLength?: boolean;
|
|
584
585
|
style?: CSSProperties;
|
|
585
586
|
className?: string;
|
|
586
587
|
};
|
|
@@ -743,6 +744,7 @@ declare type DropdownMenuProps = {
|
|
|
743
744
|
triggerButtonThemeColor?: string;
|
|
744
745
|
triggerButtonIcon?: string;
|
|
745
746
|
triggerButtonIconPosition?: IconPosition;
|
|
747
|
+
compact?: boolean;
|
|
746
748
|
};
|
|
747
749
|
|
|
748
750
|
declare function dSetValueApi(): ComponentPropertyMetadata;
|
|
@@ -1143,6 +1145,7 @@ declare type MenuItemProps = {
|
|
|
1143
1145
|
to?: string;
|
|
1144
1146
|
active?: boolean;
|
|
1145
1147
|
enabled?: boolean;
|
|
1148
|
+
compact?: boolean;
|
|
1146
1149
|
};
|
|
1147
1150
|
|
|
1148
1151
|
declare type Message = ValueOrFunction<Renderable, Toast>;
|
|
@@ -1783,6 +1786,7 @@ declare const standaloneExports: {
|
|
|
1783
1786
|
triggerButtonThemeColor?: string;
|
|
1784
1787
|
triggerButtonIcon?: string;
|
|
1785
1788
|
triggerButtonIconPosition?: IconPosition_2;
|
|
1789
|
+
compact?: boolean;
|
|
1786
1790
|
} & default_2.RefAttributes<unknown>>;
|
|
1787
1791
|
MenuItem: default_2.ForwardRefExoticComponent<{
|
|
1788
1792
|
icon?: default_2.ReactNode;
|
|
@@ -1795,11 +1799,13 @@ declare const standaloneExports: {
|
|
|
1795
1799
|
to?: string;
|
|
1796
1800
|
active?: boolean;
|
|
1797
1801
|
enabled?: boolean;
|
|
1802
|
+
compact?: boolean;
|
|
1798
1803
|
} & default_2.RefAttributes<unknown>>;
|
|
1799
1804
|
ContentSeparator: default_2.ForwardRefExoticComponent<{
|
|
1800
1805
|
thickness?: number | string;
|
|
1801
1806
|
length?: number | string;
|
|
1802
1807
|
orientation?: string;
|
|
1808
|
+
hasExplicitLength?: boolean;
|
|
1803
1809
|
style?: default_2.CSSProperties;
|
|
1804
1810
|
className?: string;
|
|
1805
1811
|
} & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -2084,6 +2090,7 @@ declare interface ThemeDefinition extends ThemeDefinitionDetails {
|
|
|
2084
2090
|
name?: string;
|
|
2085
2091
|
extends?: string | Array<string>;
|
|
2086
2092
|
tones?: Record<string | ThemeTone, ThemeDefinitionDetails>;
|
|
2093
|
+
color?: string;
|
|
2087
2094
|
}
|
|
2088
2095
|
|
|
2089
2096
|
declare interface ThemeDefinitionDetails {
|