@devtron-labs/devtron-fe-common-lib 1.5.5-beta-1 → 1.5.5
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.
@@ -79,7 +79,7 @@ export declare enum SelectPickerVariantType {
|
|
79
79
|
DEFAULT = "default",
|
80
80
|
BORDER_LESS = "border-less"
|
81
81
|
}
|
82
|
-
export type SelectPickerProps<OptionValue = number | string, IsMulti extends boolean = false> = Pick<SelectProps<OptionValue, IsMulti>, 'name' | 'classNamePrefix' | 'options' | 'value' | 'onChange' | 'isSearchable' | 'isClearable' | 'hideSelectedOptions' | 'controlShouldRenderValue' | 'closeMenuOnSelect' | 'isDisabled' | 'isLoading' | 'required' | 'isOptionDisabled' | 'placeholder' | 'menuPosition' | 'getOptionLabel' | 'getOptionValue' | 'isOptionSelected' | 'menuIsOpen' | 'onMenuOpen' | 'onMenuClose' | 'autoFocus' | 'onBlur' | 'onKeyDown' | 'formatOptionLabel' | 'onInputChange' | 'inputValue'
|
82
|
+
export type SelectPickerProps<OptionValue = number | string, IsMulti extends boolean = false> = Pick<SelectProps<OptionValue, IsMulti>, 'name' | 'classNamePrefix' | 'options' | 'value' | 'onChange' | 'isSearchable' | 'isClearable' | 'hideSelectedOptions' | 'controlShouldRenderValue' | 'closeMenuOnSelect' | 'isDisabled' | 'isLoading' | 'required' | 'isOptionDisabled' | 'placeholder' | 'menuPosition' | 'getOptionLabel' | 'getOptionValue' | 'isOptionSelected' | 'menuIsOpen' | 'onMenuOpen' | 'onMenuClose' | 'autoFocus' | 'onBlur' | 'onKeyDown' | 'formatOptionLabel' | 'onInputChange' | 'inputValue'> & Partial<Pick<SelectProps<OptionValue, IsMulti>, 'renderMenuListFooter' | 'shouldRenderCustomOptions' | 'renderCustomOptions' | 'icon' | 'showSelectedOptionIcon' | 'renderOptionsFooter' | 'shouldRenderTextArea'>> & Required<Pick<SelectProps<OptionValue, IsMulti>, 'inputId'>> & Partial<Pick<CreatableProps<SelectPickerOptionType<OptionValue>, IsMulti, GroupBase<SelectPickerOptionType<OptionValue>>>, 'onCreateOption' | 'formatCreateLabel' | 'menuPortalTarget'>> & {
|
83
83
|
/**
|
84
84
|
* Error message for the select
|
85
85
|
*/
|
package/dist/Shared/types.d.ts
CHANGED
@@ -116,7 +116,6 @@ export interface iNode extends Node {
|
|
116
116
|
childNodes: iNodes;
|
117
117
|
type: NodeType;
|
118
118
|
status: string;
|
119
|
-
pNode?: iNode;
|
120
119
|
}
|
121
120
|
export interface ResourceTree {
|
122
121
|
conditions: any;
|
@@ -665,12 +664,19 @@ interface CommonTabArgsType {
|
|
665
664
|
* Title for the tab
|
666
665
|
*/
|
667
666
|
title?: string;
|
667
|
+
isDeleted?: boolean;
|
668
668
|
/**
|
669
669
|
* Type for the tab
|
670
670
|
*
|
671
671
|
* Note: Fixed tabs are always places before dynamic tabs
|
672
672
|
*/
|
673
673
|
type: 'fixed' | 'dynamic';
|
674
|
+
/**
|
675
|
+
* Path of the icon for the tab
|
676
|
+
*
|
677
|
+
* @default ''
|
678
|
+
*/
|
679
|
+
iconPath?: string;
|
674
680
|
/**
|
675
681
|
* Dynamic title for the tab
|
676
682
|
*
|