@devtron-labs/devtron-fe-common-lib 1.3.0-beta-15 → 1.3.0-patch-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 (31) hide show
  1. package/dist/{@code-editor-DV0fyuSh.js → @code-editor-D7WIPIH6.js} +3219 -3130
  2. package/dist/{@common-rjsf-DfO3w4MK.js → @common-rjsf-Dutr2PBz.js} +63 -63
  3. package/dist/{@framer-motion-CdZdgA-3.js → @framer-motion-DHzxZlAx.js} +1 -1
  4. package/dist/{@react-dates-CjgLNGq7.js → @react-dates-BZU5RIqe.js} +20 -20
  5. package/dist/{@react-select-Bplb1slj.js → @react-select-Dx53b3Wk.js} +1 -1
  6. package/dist/{@vendor-dqBtmXrA.js → @vendor-BG3OpQCq.js} +3213 -3174
  7. package/dist/Common/Constants.d.ts +1 -0
  8. package/dist/Common/CustomTagSelector/Types.d.ts +12 -14
  9. package/dist/Common/CustomTagSelector/index.d.ts +1 -1
  10. package/dist/Common/CustomTagSelector/tags.utils.d.ts +13 -0
  11. package/dist/Common/DraggableWrapper/types.d.ts +1 -0
  12. package/dist/Common/Helper.d.ts +2 -1
  13. package/dist/Common/Types.d.ts +20 -4
  14. package/dist/Shared/Components/DynamicDataTable/types.d.ts +2 -0
  15. package/dist/Shared/Components/TagsKeyValueTable/TagsContainer.d.ts +3 -0
  16. package/dist/Shared/Components/TagsKeyValueTable/constants.d.ts +4 -0
  17. package/dist/Shared/Components/TagsKeyValueTable/index.d.ts +4 -0
  18. package/dist/Shared/Components/TagsKeyValueTable/types.d.ts +12 -0
  19. package/dist/Shared/Components/TagsKeyValueTable/utils.d.ts +3 -0
  20. package/dist/Shared/Components/index.d.ts +1 -1
  21. package/dist/Shared/types.d.ts +19 -1
  22. package/dist/assets/@code-editor.css +1 -1
  23. package/dist/index.d.ts +0 -1
  24. package/dist/index.js +616 -610
  25. package/package.json +1 -1
  26. package/dist/Common/CustomTagSelector/TagLabelSelect.d.ts +0 -2
  27. package/dist/Common/CustomTagSelector/TagSelector.utils.d.ts +0 -12
  28. package/dist/Shared/Components/AnimatedDeployButton/AnimatedDeployButton.d.ts +0 -3
  29. package/dist/Shared/Components/AnimatedDeployButton/index.d.ts +0 -1
  30. package/dist/Shared/Components/AnimatedDeployButton/types.d.ts +0 -3
  31. package/dist/assets/DeployAudio.566e45df.mp3 +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.3.0-beta-15",
3
+ "version": "1.3.0-patch-3",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,2 +0,0 @@
1
- import { TagLabelSelectType } from './Types';
2
- export declare const TagLabelSelect: ({ isCreateApp, labelTags, setLabelTags, tabIndex, hidePropagateTag }: TagLabelSelectType) => JSX.Element;
@@ -1,12 +0,0 @@
1
- export declare const baseSelectStyles: {
2
- control: (base: any, state: any) => any;
3
- singleValue: (base: any, state: any) => any;
4
- placeholder: (base: any, state: any) => any;
5
- option: (base: any, state: any) => any;
6
- dropdownIndicator: (styles: any) => any;
7
- valueContainer: (base: any, state: any) => any;
8
- indicatorsContainer: (base: any, state: any) => any;
9
- menu: (base: any, state: any) => any;
10
- };
11
- export declare const validateKubernetesKey: (key: string) => void;
12
- export declare const validateKubernetesValue: (value: string) => void;
@@ -1,3 +0,0 @@
1
- import { AnimatedDeployButtonProps } from './types';
2
- declare const AnimatedDeployButton: ({ onButtonClick }: AnimatedDeployButtonProps) => JSX.Element;
3
- export default AnimatedDeployButton;
@@ -1 +0,0 @@
1
- export { default as AnimatedDeployButton } from './AnimatedDeployButton';
@@ -1,3 +0,0 @@
1
- export interface AnimatedDeployButtonProps {
2
- onButtonClick: (e: any, disableDeployButton: boolean) => void;
3
- }