@devtron-labs/devtron-fe-common-lib 1.9.6-beta-2 → 1.9.7

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.
@@ -2,5 +2,5 @@ export { default as ConfirmationModal, BaseConfirmationModal } from './Confirmat
2
2
  export { DeleteConfirmationModal } from './DeleteConfirmationModal';
3
3
  export { ForceDeleteConfirmationModal } from './ForceDeleteConfirmationModal';
4
4
  export { CannotDeleteModal } from './CannotDeleteModal';
5
- export { ConfirmationModalVariantType, type ConfirmationModalProps, type DeleteConfirmationModalProps } from './types';
5
+ export { ConfirmationModalVariantType, type ConfirmationModalProps } from './types';
6
6
  export { ConfirmationModalProvider } from './ConfirmationModalContext';
@@ -3,4 +3,3 @@ export * from './SelectPickerTextArea.component';
3
3
  export { default as FilterSelectPicker } from './FilterSelectPicker';
4
4
  export * from './type';
5
5
  export { getSelectPickerOptionByValue } from './utils';
6
- export * from './AsyncSelectPicker.component';
@@ -6,7 +6,6 @@ import { GroupBase, GroupHeadingProps, Props as ReactSelectProps, SelectInstance
6
6
  import { CreatableProps } from 'react-select/creatable';
7
7
  import { TooltipProps } from '@Common/Tooltip/types';
8
8
  import { ResizableTagTextAreaProps } from '../../../Common/CustomTagSelector';
9
- import { AsyncProps } from 'react-select/async';
10
9
  import { FormFieldWrapperProps } from '../FormFieldWrapper/types';
11
10
  export interface SelectPickerOptionType<OptionValue = string | number> extends OptionType<OptionValue, ReactNode> {
12
11
  /**
@@ -195,9 +194,4 @@ export interface FilterSelectPickerProps extends Required<Pick<SelectPickerProps
195
194
  handleApplyFilter: (filtersToApply: SelectPickerOptionType<number | string>[]) => void;
196
195
  }
197
196
  export type SelectPickerTextAreaProps = Omit<SelectPickerProps<string, false>, 'selectRef' | 'inputValue' | 'onInputChange' | 'controlShouldRenderValue' | 'onKeyDown' | 'onCreateOption' | 'shouldRenderTextArea'> & Pick<ResizableTagTextAreaProps, 'maxHeight' | 'minHeight' | 'refVar' | 'dependentRefs'>;
198
- export interface AsyncSelectProps extends Partial<Pick<FormFieldWrapperProps, 'error' | 'layout' | 'label' | 'helperText' | 'warningText' | 'required' | 'fullWidth' | 'borderConfig' | 'borderRadiusConfig' | 'labelTippyCustomizedConfig' | 'labelTooltipConfig' | 'ariaLabel' | 'inputId'>>, AsyncProps<SelectPickerOptionType, boolean, GroupBase<SelectPickerOptionType>>, Partial<Pick<SelectPickerProps, 'size' | 'menuSize' | 'variant' | 'shouldMenuAlignRight'>> {
199
- getIsOptionValid?: (option: SelectPickerOptionType) => boolean;
200
- isGroupHeadingSelectable?: boolean;
201
- loadingOptions?: SelectPickerOptionType[];
202
- }
203
197
  export {};