@devtron-labs/devtron-fe-common-lib 1.9.5-beta-6 → 1.9.5-beta-9

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 (40) hide show
  1. package/dist/{@code-editor-BaJODWZj.js → @code-editor-C0e1IoNR.js} +6362 -6391
  2. package/dist/{@common-rjsf-Cb6U-gEn.js → @common-rjsf-C2tT-Yzm.js} +2 -2
  3. package/dist/{@framer-motion-Cx1gSa6-.js → @framer-motion-BMix-3PQ.js} +972 -893
  4. package/dist/{@react-dates-ukcBEyJ1.js → @react-dates-FNIvOaO3.js} +1 -1
  5. package/dist/{@react-select-Cas7oOFN.js → @react-select-BAjvyAuv.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-DRihF7_6.js → @react-virtualized-sticky-tree-DDmpdscl.js} +1 -1
  7. package/dist/{@vendor-xG1dUtf3.js → @vendor-C56_0-C8.js} +12759 -13079
  8. package/dist/Common/API/types.d.ts +1 -1
  9. package/dist/Common/Constants.d.ts +0 -2
  10. package/dist/Common/Types.d.ts +0 -4
  11. package/dist/Shared/Components/CustomInput/CustomInput.d.ts +1 -1
  12. package/dist/Shared/Components/CustomInput/types.d.ts +1 -5
  13. package/dist/Shared/Components/DevtronLicenseCard/DevtronLicenseCard.d.ts +1 -1
  14. package/dist/Shared/Components/DevtronLicenseCard/InstallationFingerprintInfo.d.ts +3 -0
  15. package/dist/Shared/Components/DevtronLicenseCard/index.d.ts +1 -2
  16. package/dist/Shared/Components/DevtronLicenseCard/types.d.ts +3 -17
  17. package/dist/Shared/Components/DevtronLicenseCard/utils.d.ts +1 -2
  18. package/dist/Shared/Components/FormFieldWrapper/FormFieldWrapper.d.ts +1 -1
  19. package/dist/Shared/Components/FormFieldWrapper/index.d.ts +0 -1
  20. package/dist/Shared/Components/FormFieldWrapper/types.d.ts +0 -4
  21. package/dist/Shared/Components/Icon/Icon.d.ts +0 -1
  22. package/dist/Shared/Components/LoginBanner/constants.d.ts +3 -1
  23. package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
  24. package/dist/Shared/Components/Textarea/Textarea.component.d.ts +1 -1
  25. package/dist/Shared/Components/index.d.ts +0 -3
  26. package/dist/Shared/Helpers.d.ts +2 -2
  27. package/dist/Shared/types.d.ts +18 -2
  28. package/dist/index.js +695 -699
  29. package/package.json +1 -2
  30. package/dist/Shared/Components/CountrySelect/CountrySelect.component.d.ts +0 -3
  31. package/dist/Shared/Components/CountrySelect/index.d.ts +0 -1
  32. package/dist/Shared/Components/CountrySelect/types.d.ts +0 -7
  33. package/dist/Shared/Components/CountrySelect/utils.d.ts +0 -4
  34. package/dist/Shared/Components/FlagImage/FlagImage.component.d.ts +0 -3
  35. package/dist/Shared/Components/FlagImage/index.d.ts +0 -1
  36. package/dist/Shared/Components/FlagImage/types.d.ts +0 -5
  37. package/dist/Shared/Components/PhoneInput/PhoneInput.component.d.ts +0 -3
  38. package/dist/Shared/Components/PhoneInput/index.d.ts +0 -1
  39. package/dist/Shared/Components/PhoneInput/types.d.ts +0 -11
  40. package/dist/assets/ic-caret-left.3df25a7c.svg +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.9.5-beta-6",
3
+ "version": "1.9.5-beta-9",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -123,7 +123,6 @@
123
123
  "react-dates": "^21.8.0",
124
124
  "react-diff-viewer-continued": "^3.4.0",
125
125
  "react-draggable": "^4.4.5",
126
- "react-international-phone": "^4.5.0",
127
126
  "react-monaco-editor": "^0.54.0",
128
127
  "react-virtualized-sticky-tree": "^3.0.0-beta18",
129
128
  "sass": "^1.69.7",
@@ -1,3 +0,0 @@
1
- import { CountrySelectProps } from './types';
2
- declare const CountrySelect: ({ selectedCountry, label, required, error, handleChange, placeholder, name, variant, size, }: CountrySelectProps) => JSX.Element;
3
- export default CountrySelect;
@@ -1 +0,0 @@
1
- export { default as CountrySelect } from './CountrySelect.component';
@@ -1,7 +0,0 @@
1
- import { CountryISO2Type } from '../../index';
2
- import { SelectPickerProps } from '../SelectPicker';
3
- export interface CountrySelectProps extends Pick<SelectPickerProps, 'required' | 'label' | 'error' | 'placeholder' | 'size'>, Required<Pick<SelectPickerProps, 'name'>> {
4
- selectedCountry: CountryISO2Type;
5
- handleChange: (iso2: CountryISO2Type) => void;
6
- variant?: 'default' | 'selectPhoneCode';
7
- }
@@ -1,4 +0,0 @@
1
- import { ParsedCountry } from 'react-international-phone';
2
- import { CountrySelectProps } from './types';
3
- import { SelectPickerOptionType } from '../SelectPicker';
4
- export declare const getCountryOptions: (variant: CountrySelectProps["variant"]) => SelectPickerOptionType<ParsedCountry>[];
@@ -1,3 +0,0 @@
1
- import { FlagImageProps } from './types';
2
- declare const FlagImage: ({ country, size }: FlagImageProps) => JSX.Element;
3
- export default FlagImage;
@@ -1 +0,0 @@
1
- export { default as FlagImage } from './FlagImage.component';
@@ -1,5 +0,0 @@
1
- import { CountryISO2Type } from '../../index';
2
- export interface FlagImageProps {
3
- country: CountryISO2Type;
4
- size?: number;
5
- }
@@ -1,3 +0,0 @@
1
- import { PhoneInputProps } from './types';
2
- declare const PhoneInput: ({ error, onChange, required, phoneNumberInputName, countryCodeSelectName, phoneValue, countryCodeSelectSize, }: PhoneInputProps) => JSX.Element;
3
- export default PhoneInput;
@@ -1 +0,0 @@
1
- export { default as PhoneInput } from './PhoneInput.component';
@@ -1,11 +0,0 @@
1
- import { ComponentProps } from 'react';
2
- import { CountrySelect } from '../CountrySelect';
3
- export interface PhoneInputProps {
4
- phoneValue: string;
5
- onChange: (value: string) => void;
6
- error?: string | null;
7
- countryCodeSelectName: string;
8
- phoneNumberInputName: string;
9
- required?: boolean;
10
- countryCodeSelectSize?: ComponentProps<typeof CountrySelect>['size'];
11
- }
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M15 19.5 7.5 12 15 4.5" vector-effect="non-scaling-stroke"/>
3
- </svg>