@devtron-labs/devtron-fe-common-lib 1.7.2-beta-1 → 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.
Files changed (38) hide show
  1. package/dist/{@code-editor-B63wjusN.js → @code-editor-DF4xpSML.js} +5786 -5717
  2. package/dist/{@common-rjsf-DnWwXM4S.js → @common-rjsf-DkYtZEPs.js} +2 -2
  3. package/dist/{@framer-motion-C88ROIS4.js → @framer-motion-C9i0O6dh.js} +1 -1
  4. package/dist/{@react-dates-Ct1VA7V6.js → @react-dates-DEMedmhG.js} +1 -1
  5. package/dist/{@react-select-qU4oRypC.js → @react-select-DD4GMsWv.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-DmvoaDNw.js → @react-virtualized-sticky-tree-BlYAzsAg.js} +1 -1
  7. package/dist/{@vendor-C6rSXA7p.js → @vendor-CIA81cZg.js} +2343 -2346
  8. package/dist/Common/Constants.d.ts +0 -1
  9. package/dist/Common/RJSF/Form.d.ts +1 -1
  10. package/dist/Common/Tooltip/index.d.ts +1 -0
  11. package/dist/Common/index.d.ts +0 -1
  12. package/dist/Pages/GlobalConfigurations/DeploymentCharts/types.d.ts +8 -6
  13. package/dist/Shared/Components/Button/Button.component.d.ts +2 -2
  14. package/dist/Shared/Components/Button/types.d.ts +10 -10
  15. package/dist/Shared/Components/CustomInput/CustomInput.d.ts +3 -0
  16. package/dist/Shared/Components/CustomInput/PasswordField.d.ts +3 -0
  17. package/dist/Shared/Components/CustomInput/constants.d.ts +3 -0
  18. package/dist/Shared/Components/CustomInput/index.d.ts +3 -0
  19. package/dist/Shared/Components/CustomInput/types.d.ts +36 -0
  20. package/dist/Shared/Components/FormFieldWrapper/FormFieldLabel.d.ts +1 -1
  21. package/dist/Shared/Components/FormFieldWrapper/FormFieldWrapper.d.ts +1 -1
  22. package/dist/Shared/Components/FormFieldWrapper/types.d.ts +19 -4
  23. package/dist/Shared/Components/ReactSelect/utils.d.ts +0 -1
  24. package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
  25. package/dist/Shared/Components/Textarea/Textarea.component.d.ts +1 -1
  26. package/dist/Shared/Components/index.d.ts +1 -0
  27. package/dist/Shared/Helpers.d.ts +4 -2
  28. package/dist/Shared/Services/ToastManager/types.d.ts +3 -3
  29. package/dist/Shared/types.d.ts +0 -4
  30. package/dist/Shared/validations.d.ts +0 -1
  31. package/dist/assets/@code-editor.css +1 -1
  32. package/dist/assets/ic-visibility-off.d91d3844.svg +19 -0
  33. package/dist/assets/ic-visibility-on.7505dd12.svg +20 -0
  34. package/dist/index.js +334 -336
  35. package/package.json +3 -3
  36. package/dist/Common/CustomInput/CustomInput.d.ts +0 -2
  37. package/dist/Common/CustomInput/Types.d.ts +0 -30
  38. 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.2-beta-1",
3
+ "version": "1.7.2-beta-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.0.2",
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.0.0",
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
- }
@@ -1,2 +0,0 @@
1
- export * from './CustomInput';
2
- export * from './Types';