@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.
- package/dist/{@code-editor-C1bUSZ0_.js → @code-editor-BevBTMAP.js} +3746 -3835
- package/dist/{@common-rjsf-BDKZKYJ4.js → @common-rjsf-CdehJ2YJ.js} +2 -2
- package/dist/{@framer-motion-FKAND_5t.js → @framer-motion-Bucw936X.js} +1 -1
- package/dist/{@react-dates-Cc7UHR4b.js → @react-dates-CHrHV-f7.js} +20 -20
- package/dist/{@react-select-B2Icx1Me.js → @react-select-lIFcHtle.js} +953 -1010
- package/dist/{@react-virtualized-sticky-tree-Du399kou.js → @react-virtualized-sticky-tree-D2b5Kavd.js} +1 -1
- package/dist/{@vendor-CSolG4o7.js → @vendor-FTN5ZOvi.js} +7451 -7490
- package/dist/Shared/Components/ConfirmationModal/index.d.ts +1 -1
- package/dist/Shared/Components/SelectPicker/index.d.ts +0 -1
- package/dist/Shared/Components/SelectPicker/type.d.ts +0 -6
- package/dist/index.js +779 -780
- package/package.json +1 -1
- package/dist/Shared/Components/SelectPicker/AsyncSelectPicker.component.d.ts +0 -2
@@ -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
|
5
|
+
export { ConfirmationModalVariantType, type ConfirmationModalProps } from './types';
|
6
6
|
export { ConfirmationModalProvider } from './ConfirmationModalContext';
|
@@ -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 {};
|