@devtron-labs/devtron-fe-common-lib 1.8.11 → 1.9.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.
- package/dist/{@code-editor-NsRH8fYx.js → @code-editor-Bfon6vuF.js} +3874 -3866
- package/dist/{@common-rjsf-Dw8DpcgR.js → @common-rjsf-CCHh6LV_.js} +2 -2
- package/dist/{@framer-motion-DWs0_8aB.js → @framer-motion-DHFT2Onf.js} +1 -1
- package/dist/{@react-dates-CHCZFrgt.js → @react-dates-H99Kf-Gu.js} +243 -243
- package/dist/{@react-select-Dn2Z7PBK.js → @react-select-DaoN_kK0.js} +1 -1
- package/dist/{@react-virtualized-sticky-tree-KcWdTSlv.js → @react-virtualized-sticky-tree-BSYoHRT0.js} +1 -1
- package/dist/{@vendor-C6JiJKw0.js → @vendor-CmKnC58P.js} +14229 -13589
- package/dist/Shared/Components/Confetti/Confetti.component.d.ts +2 -0
- package/dist/Shared/Components/Confetti/index.d.ts +1 -0
- package/dist/Shared/Components/ConfirmationModal/types.d.ts +4 -0
- package/dist/Shared/Components/LogoutCard.d.ts +1 -1
- package/dist/Shared/Components/index.d.ts +1 -0
- package/dist/Shared/Providers/ThemeProvider/index.d.ts +1 -0
- package/dist/Shared/Providers/ThemeProvider/types.d.ts +5 -1
- package/dist/index.js +677 -675
- package/package.json +2 -1
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Confetti } from './Confetti.component';
|
@@ -63,6 +63,10 @@ export type ConfirmationModalProps<isConfig extends boolean = false> = PropsWith
|
|
63
63
|
* @deprecated Used to extend the width to 500px and remove gap between title and subTitle.
|
64
64
|
*/
|
65
65
|
isLandscapeView?: boolean;
|
66
|
+
/**
|
67
|
+
* @default false
|
68
|
+
*/
|
69
|
+
showConfetti?: boolean;
|
66
70
|
}> & ButtonConfigAndVariantType<isConfig> & (isConfig extends false ? {
|
67
71
|
/**
|
68
72
|
* Function to handle modal close action.
|
@@ -5,6 +5,6 @@ interface LogoutCardType {
|
|
5
5
|
setShowLogOutCard: React.Dispatch<React.SetStateAction<boolean>>;
|
6
6
|
showLogOutCard: boolean;
|
7
7
|
}
|
8
|
-
export declare const LOGOUT_CARD_BASE_BUTTON_CLASS = "dc__unset-button-styles dc__content-space px-12 py-
|
8
|
+
export declare const LOGOUT_CARD_BASE_BUTTON_CLASS = "dc__unset-button-styles dc__content-space px-12 py-8 fs-13 fw-4 lh-20 cursor w-100 flex left br-4";
|
9
9
|
declare const LogoutCard: ({ className, userFirstLetter, setShowLogOutCard, showLogOutCard }: LogoutCardType) => JSX.Element;
|
10
10
|
export default LogoutCard;
|
@@ -30,7 +30,11 @@ export interface ThemeContextType extends ThemeConfigType {
|
|
30
30
|
handleShowSwitchThemeLocationTippyChange: (isVisible: boolean) => void;
|
31
31
|
showThemeSwitcherDialog: boolean;
|
32
32
|
handleThemeSwitcherDialogVisibilityChange: (isVisible: boolean) => void;
|
33
|
-
handleThemePreferenceChange: (updatedThemePreference: ThemePreferenceType
|
33
|
+
handleThemePreferenceChange: (updatedThemePreference: ThemePreferenceType,
|
34
|
+
/**
|
35
|
+
* @description If update is local we won't update local storage and analytics
|
36
|
+
* */
|
37
|
+
isLocalUpdate?: boolean) => void;
|
34
38
|
}
|
35
39
|
export interface ThemeProviderProps {
|
36
40
|
children: ReactNode;
|