@frontify/fondue 13.0.0 → 13.1.1

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/index.d.ts CHANGED
@@ -573,11 +573,17 @@ export declare type ExpandButtonProps = DetailedHTMLProps<ButtonHTMLAttributes<H
573
573
 
574
574
  export declare const extractNodeFromElement: (node: ReactElement) => TreeNodeWithoutElements;
575
575
 
576
+ /**
577
+ * @deprecated Please use updated Multiple Combobox component from `@frontify/fondue/components` instead.
578
+ */
576
579
  export declare const FilterableMultiSelect: {
577
580
  ({ items, activeItemKeys, onSelectionChange, ariaLabel, disabled, placeholder, label, type, size, validation, summarizedLabel: summarizedLabelFromProps, indeterminateItemKeys, flip, emphasis, enablePortal, filterLabel, emptyFilteredResultsLabel, }: FilterableMultiSelectProps): ReactElement;
578
581
  displayName: string;
579
582
  };
580
583
 
584
+ /**
585
+ * @deprecated Please use updated Multiple Combobox component from `@frontify/fondue/components` instead.
586
+ */
581
587
  export declare type FilterableMultiSelectItem = {
582
588
  value: string;
583
589
  isCategory?: boolean;
@@ -587,6 +593,9 @@ export declare type FilterableMultiSelectItem = {
587
593
  ariaLabel?: string;
588
594
  };
589
595
 
596
+ /**
597
+ * @deprecated Please use updated Multiple Combobox component from `@frontify/fondue/components` instead.
598
+ */
590
599
  export declare type FilterableMultiSelectProps = {
591
600
  items: FilterableMultiSelectItem[];
592
601
  activeItemKeys: (string | number)[];
@@ -607,11 +616,17 @@ export declare type FilterableMultiSelectProps = {
607
616
  emptyFilteredResultsLabel?: string;
608
617
  };
609
618
 
619
+ /**
620
+ * @deprecated Please use updated Multiple Combobox component from `@frontify/fondue/components` instead.
621
+ */
610
622
  export declare enum FilterableMultiSelectSize {
611
623
  Small = "Small",
612
624
  Medium = "Medium"
613
625
  }
614
626
 
627
+ /**
628
+ * @deprecated Please use updated Multiple Combobox component from `@frontify/fondue/components` instead.
629
+ */
615
630
  export declare enum FilterableMultiSelectType {
616
631
  Default = "Default",
617
632
  Summarized = "Summarized"
@@ -796,6 +811,9 @@ export declare type InternalTreeItemMultiSelectProps = TreeItemMultiselectProps
796
811
  /** @private */
797
812
  export declare type InternalTreeItemProps = TreeItemProps & TreeItemPrivateProps;
798
813
 
814
+ /**
815
+ * @deprecated Please use updated Multiple Select component from `@frontify/fondue/components` instead.
816
+ */
799
817
  export declare type Item = {
800
818
  label: string;
801
819
  value: string;
@@ -943,11 +961,17 @@ export declare type MenuItemType = Omit<MenuItemProps, 'switchComponent'> & {
943
961
  link?: string;
944
962
  };
945
963
 
964
+ /**
965
+ * @deprecated Please use updated Multiple Select component from `@frontify/fondue/components` instead.
966
+ */
946
967
  export declare const MultiSelect: {
947
968
  ({ items, activeItemKeys, onSelectionChange, ariaLabel, disabled, placeholder, label, type, size, validation, summarizedLabel: summarizedLabelFromProps, indeterminateItemKeys, flip, emphasis, enablePortal, }: MultiSelectProps): ReactElement;
948
969
  displayName: string;
949
970
  };
950
971
 
972
+ /**
973
+ * @deprecated Please use updated Multiple Select component from `@frontify/fondue/components` instead.
974
+ */
951
975
  export declare type MultiSelectItem = {
952
976
  value: string;
953
977
  isCategory?: boolean;
@@ -957,6 +981,9 @@ export declare type MultiSelectItem = {
957
981
  ariaLabel?: string;
958
982
  };
959
983
 
984
+ /**
985
+ * @deprecated Please use updated Multiple Select component from `@frontify/fondue/components` instead.
986
+ */
960
987
  export declare type MultiSelectProps = {
961
988
  items: MultiSelectItem[];
962
989
  activeItemKeys: (string | number)[];
@@ -975,11 +1002,17 @@ export declare type MultiSelectProps = {
975
1002
  enablePortal?: boolean;
976
1003
  };
977
1004
 
1005
+ /**
1006
+ * @deprecated Please use updated Multiple Select component from `@frontify/fondue/components` instead.
1007
+ */
978
1008
  export declare enum MultiSelectSize {
979
1009
  Small = "Small",
980
1010
  Medium = "Medium"
981
1011
  }
982
1012
 
1013
+ /**
1014
+ * @deprecated Please use updated Multiple Select component from `@frontify/fondue/components` instead.
1015
+ */
983
1016
  export declare enum MultiSelectType {
984
1017
  Default = "Default",
985
1018
  Summarized = "Summarized"