@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.
Files changed (49) hide show
  1. package/dist/{@code-editor-C6vUQZWA.js → @code-editor-DF4xpSML.js} +5382 -5312
  2. package/dist/{@common-rjsf-Dz9zHsX6.js → @common-rjsf-DkYtZEPs.js} +2 -2
  3. package/dist/{@framer-motion-BCnBBNCY.js → @framer-motion-C9i0O6dh.js} +1 -1
  4. package/dist/{@react-dates-B3W7S3ht.js → @react-dates-DEMedmhG.js} +20 -20
  5. package/dist/{@react-select-DSiYA_G3.js → @react-select-DD4GMsWv.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-DIgmxudW.js → @react-virtualized-sticky-tree-BlYAzsAg.js} +1 -1
  7. package/dist/{@vendor-C7-HiwfO.js → @vendor-CIA81cZg.js} +3715 -3676
  8. package/dist/Common/Constants.d.ts +0 -1
  9. package/dist/Common/Helper.d.ts +1 -1
  10. package/dist/Common/Hooks/UseRegisterShortcut/utils.d.ts +1 -1
  11. package/dist/Common/RJSF/Form.d.ts +1 -1
  12. package/dist/Common/Tooltip/index.d.ts +1 -0
  13. package/dist/Common/Types.d.ts +1 -2
  14. package/dist/Common/index.d.ts +0 -1
  15. package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/DeploymentTemplate/types.d.ts +0 -4
  16. package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/types.d.ts +1 -1
  17. package/dist/Shared/Components/Button/Button.component.d.ts +2 -2
  18. package/dist/Shared/Components/Button/types.d.ts +10 -10
  19. package/dist/Shared/Components/CICDHistory/constants.d.ts +1 -1
  20. package/dist/Shared/Components/CICDHistory/types.d.ts +0 -8
  21. package/dist/Shared/Components/CustomInput/CustomInput.d.ts +3 -0
  22. package/dist/Shared/Components/CustomInput/PasswordField.d.ts +3 -0
  23. package/dist/Shared/Components/CustomInput/constants.d.ts +3 -0
  24. package/dist/Shared/Components/CustomInput/index.d.ts +3 -0
  25. package/dist/Shared/Components/CustomInput/types.d.ts +36 -0
  26. package/dist/Shared/Components/FormFieldWrapper/FormFieldLabel.d.ts +1 -1
  27. package/dist/Shared/Components/FormFieldWrapper/FormFieldWrapper.d.ts +1 -1
  28. package/dist/Shared/Components/FormFieldWrapper/types.d.ts +19 -4
  29. package/dist/Shared/Components/GenericSectionErrorState/GenericSectionErrorState.component.d.ts +1 -1
  30. package/dist/Shared/Components/GenericSectionErrorState/types.d.ts +5 -18
  31. package/dist/Shared/Components/ReactSelect/utils.d.ts +0 -1
  32. package/dist/Shared/Components/Security/SecurityModal/utils.d.ts +2 -2
  33. package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
  34. package/dist/Shared/Components/Textarea/Textarea.component.d.ts +1 -1
  35. package/dist/Shared/Components/index.d.ts +1 -0
  36. package/dist/Shared/Helpers.d.ts +4 -2
  37. package/dist/Shared/Providers/types.d.ts +0 -14
  38. package/dist/Shared/Services/ToastManager/types.d.ts +3 -3
  39. package/dist/Shared/Services/common.service.d.ts +1 -2
  40. package/dist/Shared/Services/types.d.ts +0 -6
  41. package/dist/Shared/Store/IndexStore.d.ts +1 -1
  42. package/dist/assets/@code-editor.css +1 -1
  43. package/dist/assets/ic-visibility-off.d91d3844.svg +19 -0
  44. package/dist/assets/ic-visibility-on.7505dd12.svg +20 -0
  45. package/dist/index.js +475 -479
  46. package/package.json +1 -1
  47. package/dist/Common/CustomInput/CustomInput.d.ts +0 -2
  48. package/dist/Common/CustomInput/Types.d.ts +0 -30
  49. 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-2",
3
+ "version": "1.7.2-beta-3",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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';