@devtron-labs/devtron-fe-common-lib 1.11.0 → 1.11.2-patch-1

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 (26) hide show
  1. package/dist/{@code-editor-DdSJQRDu.js → @code-editor-CiShIP5_.js} +6620 -6450
  2. package/dist/{@common-rjsf-BSElpl3x.js → @common-rjsf-Bu0YXRkk.js} +2 -2
  3. package/dist/{@framer-motion-DMD7dX-G.js → @framer-motion-Cml-gz9w.js} +1 -1
  4. package/dist/{@react-dates-DxmDHBUI.js → @react-dates-DEWMrndL.js} +1 -1
  5. package/dist/{@react-select-BR4eLpVa.js → @react-select-B43S0w-3.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-Ca-pl6uN.js → @react-virtualized-sticky-tree-BE6ZM10U.js} +1 -1
  7. package/dist/{@vendor-DZHtXPTX.js → @vendor-BSXzBjCJ.js} +16497 -15576
  8. package/dist/Common/Constants.d.ts +1 -0
  9. package/dist/Shared/Components/Confetti/Confetti.component.d.ts +1 -0
  10. package/dist/Shared/Components/Confetti/index.d.ts +1 -1
  11. package/dist/Shared/Components/Header/utils.d.ts +1 -1
  12. package/dist/Shared/Components/License/ActivateLicenseDialog.d.ts +3 -0
  13. package/dist/Shared/Components/License/License.components.d.ts +5 -0
  14. package/dist/Shared/Components/License/index.d.ts +5 -0
  15. package/dist/Shared/Components/License/services.d.ts +1 -0
  16. package/dist/Shared/Components/{DevtronLicenseCard → License}/types.d.ts +12 -0
  17. package/dist/Shared/Components/License/utils.d.ts +7 -0
  18. package/dist/Shared/Components/QRCode.d.ts +10 -0
  19. package/dist/Shared/Components/index.d.ts +2 -1
  20. package/dist/index.d.ts +1 -0
  21. package/dist/index.js +847 -843
  22. package/package.json +2 -1
  23. package/dist/Shared/Components/DevtronLicenseCard/InstallationFingerprintInfo.d.ts +0 -3
  24. package/dist/Shared/Components/DevtronLicenseCard/index.d.ts +0 -4
  25. package/dist/Shared/Components/DevtronLicenseCard/utils.d.ts +0 -6
  26. /package/dist/Shared/Components/{DevtronLicenseCard → License}/DevtronLicenseCard.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.11.0",
3
+ "version": "1.11.2-patch-1",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -120,6 +120,7 @@
120
120
  "jsonpath-plus": "^10.3.0",
121
121
  "marked": "^13.0.3",
122
122
  "nanoid": "^3.3.8",
123
+ "qrcode.react": "^4.2.0",
123
124
  "react-canvas-confetti": "^2.0.7",
124
125
  "react-dates": "^21.8.0",
125
126
  "react-diff-viewer-continued": "^3.4.0",
@@ -1,3 +0,0 @@
1
- import { InstallFingerprintInfoProps } from './types';
2
- declare const InstallationFingerprintInfo: ({ fingerprint, showHelpTooltip }: InstallFingerprintInfoProps) => JSX.Element;
3
- export default InstallationFingerprintInfo;
@@ -1,4 +0,0 @@
1
- export { default as DevtronLicenseCard } from './DevtronLicenseCard';
2
- export { parseDevtronLicenseDTOIntoLicenseCardData } from './utils';
3
- export { default as InstallationFingerprintInfo } from './InstallationFingerprintInfo';
4
- export * from './types';
@@ -1,6 +0,0 @@
1
- import { DevtronLicenseCardProps, DevtronLicenseDTO, LicenseStatus } from '../../index';
2
- export declare const getLicenseColorsAccordingToStatus: (licenseStatus: LicenseStatus) => {
3
- bgColor: string;
4
- textColor: string;
5
- };
6
- export declare const parseDevtronLicenseDTOIntoLicenseCardData: <isCentralDashboard extends boolean = false>(licenseDTO: DevtronLicenseDTO<isCentralDashboard>, currentUserEmail?: isCentralDashboard extends true ? string : never) => Omit<DevtronLicenseCardProps, "appTheme">;