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.
@@ -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 {