@ng-nest/ui 20.0.5 → 20.0.6

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.
@@ -333,7 +333,7 @@ declare class XCheckboxComponent extends XCheckboxProperty implements OnChanges,
333
333
  labelMapSignal: _angular_core.Signal<{
334
334
  [x: string]: boolean;
335
335
  }>;
336
- checkboxType: _angular_core.Signal<"initial" | "button" | "icon" | "tag">;
336
+ checkboxType: _angular_core.Signal<"button" | "icon" | "tag" | "initial">;
337
337
  constructor();
338
338
  ngOnChanges(changes: SimpleChanges): void;
339
339
  ngOnDestroy(): void;
package/core/index.d.ts CHANGED
@@ -1730,6 +1730,11 @@ interface XTreeConfig {
1730
1730
  virtualScrollHeight?: string;
1731
1731
  itemSize?: number;
1732
1732
  caseSensitive?: boolean;
1733
+ order?: {
1734
+ property: string;
1735
+ order: 'asc' | 'desc';
1736
+ }[];
1737
+ includeChildren?: boolean;
1733
1738
  }
1734
1739
  interface XTextareaConfig {
1735
1740
  clearable?: boolean;
@@ -1755,6 +1760,11 @@ interface XTreeSelectConfig {
1755
1760
  showPath?: boolean;
1756
1761
  separator?: string;
1757
1762
  onlyLeaf?: boolean;
1763
+ order?: {
1764
+ property: string;
1765
+ order: 'asc' | 'desc';
1766
+ }[];
1767
+ includeChildren?: boolean;
1758
1768
  }
1759
1769
  interface XUploadConfig {
1760
1770
  download?: boolean;