@devtron-labs/devtron-fe-common-lib 1.7.2-beta-2 → 1.7.2-beta-3
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-C6vUQZWA.js → @code-editor-DF4xpSML.js} +5382 -5312
- package/dist/{@common-rjsf-Dz9zHsX6.js → @common-rjsf-DkYtZEPs.js} +2 -2
- package/dist/{@framer-motion-BCnBBNCY.js → @framer-motion-C9i0O6dh.js} +1 -1
- package/dist/{@react-dates-B3W7S3ht.js → @react-dates-DEMedmhG.js} +20 -20
- package/dist/{@react-select-DSiYA_G3.js → @react-select-DD4GMsWv.js} +1 -1
- package/dist/{@react-virtualized-sticky-tree-DIgmxudW.js → @react-virtualized-sticky-tree-BlYAzsAg.js} +1 -1
- package/dist/{@vendor-C7-HiwfO.js → @vendor-CIA81cZg.js} +3715 -3676
- package/dist/Common/Constants.d.ts +0 -1
- package/dist/Common/Helper.d.ts +1 -1
- package/dist/Common/Hooks/UseRegisterShortcut/utils.d.ts +1 -1
- package/dist/Common/RJSF/Form.d.ts +1 -1
- package/dist/Common/Tooltip/index.d.ts +1 -0
- package/dist/Common/Types.d.ts +1 -2
- package/dist/Common/index.d.ts +0 -1
- package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/DeploymentTemplate/types.d.ts +0 -4
- package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/types.d.ts +1 -1
- package/dist/Shared/Components/Button/Button.component.d.ts +2 -2
- package/dist/Shared/Components/Button/types.d.ts +10 -10
- package/dist/Shared/Components/CICDHistory/constants.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/types.d.ts +0 -8
- package/dist/Shared/Components/CustomInput/CustomInput.d.ts +3 -0
- package/dist/Shared/Components/CustomInput/PasswordField.d.ts +3 -0
- package/dist/Shared/Components/CustomInput/constants.d.ts +3 -0
- package/dist/Shared/Components/CustomInput/index.d.ts +3 -0
- package/dist/Shared/Components/CustomInput/types.d.ts +36 -0
- package/dist/Shared/Components/FormFieldWrapper/FormFieldLabel.d.ts +1 -1
- package/dist/Shared/Components/FormFieldWrapper/FormFieldWrapper.d.ts +1 -1
- package/dist/Shared/Components/FormFieldWrapper/types.d.ts +19 -4
- package/dist/Shared/Components/GenericSectionErrorState/GenericSectionErrorState.component.d.ts +1 -1
- package/dist/Shared/Components/GenericSectionErrorState/types.d.ts +5 -18
- package/dist/Shared/Components/ReactSelect/utils.d.ts +0 -1
- package/dist/Shared/Components/Security/SecurityModal/utils.d.ts +2 -2
- package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
- package/dist/Shared/Components/Textarea/Textarea.component.d.ts +1 -1
- package/dist/Shared/Components/index.d.ts +1 -0
- package/dist/Shared/Helpers.d.ts +4 -2
- package/dist/Shared/Providers/types.d.ts +0 -14
- package/dist/Shared/Services/ToastManager/types.d.ts +3 -3
- package/dist/Shared/Services/common.service.d.ts +1 -2
- package/dist/Shared/Services/types.d.ts +0 -6
- package/dist/Shared/Store/IndexStore.d.ts +1 -1
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/ic-visibility-off.d91d3844.svg +19 -0
- package/dist/assets/ic-visibility-on.7505dd12.svg +20 -0
- package/dist/index.js +475 -479
- package/package.json +1 -1
- package/dist/Common/CustomInput/CustomInput.d.ts +0 -2
- package/dist/Common/CustomInput/Types.d.ts +0 -30
- package/dist/Common/CustomInput/index.d.ts +0 -2
package/package.json
CHANGED
@@ -1,2 +0,0 @@
|
|
1
|
-
import { CustomInputProps } from './Types';
|
2
|
-
export declare const CustomInput: ({ name, value, error, onChange, onFocus, label, type, disabled, labelClassName, placeholder, tabIndex, dataTestid, isRequiredField, autoFocus, rootClassName, autoComplete, helperText, onBlur, readOnly, noTrim, onKeyPress, defaultValue, onKeyDown, required, additionalErrorInfo, inputWrapClassName, inputProps, }: CustomInputProps) => JSX.Element;
|
@@ -1,30 +0,0 @@
|
|
1
|
-
import { default as React, HTMLInputTypeAttribute, InputHTMLAttributes, ReactNode } from 'react';
|
2
|
-
export interface CustomInputProps {
|
3
|
-
name: string;
|
4
|
-
value: string | number;
|
5
|
-
onChange: (e: any) => void;
|
6
|
-
onFocus?: (e: any) => void;
|
7
|
-
autoComplete?: string;
|
8
|
-
label?: string | React.ReactNode;
|
9
|
-
labelClassName?: string;
|
10
|
-
type?: HTMLInputTypeAttribute;
|
11
|
-
disabled?: boolean;
|
12
|
-
placeholder?: string;
|
13
|
-
tabIndex?: number;
|
14
|
-
dataTestid?: string;
|
15
|
-
isRequiredField?: boolean;
|
16
|
-
autoFocus?: boolean;
|
17
|
-
rootClassName?: string;
|
18
|
-
error?: string[] | string;
|
19
|
-
helperText?: ReactNode;
|
20
|
-
onBlur?: (e: any) => void;
|
21
|
-
readOnly?: boolean;
|
22
|
-
noTrim?: boolean;
|
23
|
-
onKeyPress?: (e: any) => void;
|
24
|
-
defaultValue?: string | number | ReadonlyArray<string> | undefined;
|
25
|
-
onKeyDown?: (e: any) => void;
|
26
|
-
required?: boolean;
|
27
|
-
additionalErrorInfo?: React.ReactNode;
|
28
|
-
inputWrapClassName?: string;
|
29
|
-
inputProps?: InputHTMLAttributes<HTMLInputElement>;
|
30
|
-
}
|