@devtron-labs/devtron-fe-common-lib 1.7.2 → 1.7.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-DNNW9VT4.js → @code-editor-DF4xpSML.js} +5777 -5691
- package/dist/{@common-rjsf-BwlfG32o.js → @common-rjsf-DkYtZEPs.js} +2 -2
- package/dist/{@framer-motion-C88ROIS4.js → @framer-motion-C9i0O6dh.js} +1 -1
- package/dist/{@react-dates-Ct1VA7V6.js → @react-dates-DEMedmhG.js} +1 -1
- package/dist/{@react-select-qU4oRypC.js → @react-select-DD4GMsWv.js} +1 -1
- package/dist/{@react-virtualized-sticky-tree-DmvoaDNw.js → @react-virtualized-sticky-tree-BlYAzsAg.js} +1 -1
- package/dist/{@vendor-C6rSXA7p.js → @vendor-CIA81cZg.js} +2343 -2346
- package/dist/Common/RJSF/Form.d.ts +1 -1
- package/dist/Common/Tooltip/index.d.ts +1 -0
- package/dist/Common/index.d.ts +0 -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/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/ReactSelect/utils.d.ts +0 -1
- 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/Services/ToastManager/types.d.ts +3 -3
- 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 +345 -346
- package/package.json +3 -3
- 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,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@devtron-labs/devtron-fe-common-lib",
|
3
|
-
"version": "1.7.
|
3
|
+
"version": "1.7.3",
|
4
4
|
"description": "Supporting common component library",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -84,7 +84,7 @@
|
|
84
84
|
"@rjsf/utils": "^5.13.3",
|
85
85
|
"@rjsf/validator-ajv8": "^5.13.3",
|
86
86
|
"@typeform/embed-react": "2.20.0",
|
87
|
-
"dompurify": "^3.
|
87
|
+
"dompurify": "^3.2.4",
|
88
88
|
"patch-package": "^8.0.0",
|
89
89
|
"react": "^17.0.2",
|
90
90
|
"react-dom": "^17.0.2",
|
@@ -111,7 +111,7 @@
|
|
111
111
|
"dayjs": "^1.11.13",
|
112
112
|
"fast-json-patch": "^3.1.1",
|
113
113
|
"framer-motion": "^6.5.1",
|
114
|
-
"jsonpath-plus": "^10.
|
114
|
+
"jsonpath-plus": "^10.3.0",
|
115
115
|
"marked": "^13.0.3",
|
116
116
|
"nanoid": "^3.3.8",
|
117
117
|
"react-codemirror-merge": "4.23.6",
|
@@ -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
|
-
}
|