pge-front-common 14.2.35 → 14.2.36

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/lib/index.d.ts CHANGED
@@ -688,6 +688,7 @@ interface TreeSelectProps {
688
688
  display?: "comma" | "chip" | undefined;
689
689
  filter?: boolean | undefined;
690
690
  selectionMode?: "checkbox" | "multiple" | "single";
691
+ showSelectAll?: boolean;
691
692
  }
692
693
  type TreeSelectOptions = {
693
694
  label: string;
@@ -696,7 +697,7 @@ type TreeSelectOptions = {
696
697
  children?: TreeSelectOptions[];
697
698
  };
698
699
 
699
- declare const TreeSelect: ({ label, value, restrictionMessage, onChange, isError, disabled, placeholder, required, display, filter, options, selectionMode, }: TreeSelectProps) => React__default.JSX.Element;
700
+ declare const TreeSelect: ({ label, value, restrictionMessage, onChange, isError, disabled, placeholder, required, display, filter, options, selectionMode, showSelectAll, }: TreeSelectProps) => React__default.JSX.Element;
700
701
 
701
702
  declare const IconDownload: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.Element;
702
703