@devtron-labs/devtron-fe-common-lib 1.14.2-pre-1 → 1.14.2-pre-2
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-zWEg20o7.js → @code-editor-CWnTtIDS.js} +6807 -6750
- package/dist/{@common-rjsf-DjtgOsYa.js → @common-rjsf-BjWA-aUY.js} +1 -1
- package/dist/Common/Constants.d.ts +3 -1
- package/dist/Shared/Components/ActionMenu/types.d.ts +31 -4
- package/dist/Shared/Components/ActionMenu/useActionMenu.hook.d.ts +4 -2
- package/dist/Shared/Components/Button/Button.component.d.ts +1 -1
- package/dist/Shared/Components/Button/constants.d.ts +1 -0
- package/dist/Shared/Components/Button/types.d.ts +14 -1
- package/dist/Shared/Components/Button/utils.d.ts +1 -1
- package/dist/Shared/Components/DocLink/DocLink.d.ts +1 -1
- package/dist/Shared/Components/DocLink/constants.d.ts +2 -2
- package/dist/Shared/Components/DocLink/types.d.ts +1 -1
- package/dist/Shared/Components/FeatureDescription/types.d.ts +1 -1
- package/dist/Shared/Components/Header/ProfileMenu.d.ts +2 -0
- package/dist/Shared/Components/Header/types.d.ts +4 -0
- package/dist/Shared/Components/Header/utils.d.ts +0 -2
- package/dist/Shared/Components/ModalSidebarPanel/types.d.ts +1 -1
- package/dist/Shared/Components/NumbersCount/index.d.ts +1 -0
- package/dist/Shared/Components/Popover/Popover.component.d.ts +1 -1
- package/dist/Shared/Components/Popover/types.d.ts +5 -3
- package/dist/Shared/Components/Security/SecurityModal/utils.d.ts +1 -1
- package/dist/Shared/Components/Switch/types.d.ts +2 -1
- package/dist/Shared/Components/ThemeSwitcher/ThemeSwitcher.component.d.ts +1 -1
- package/dist/Shared/Components/ThemeSwitcher/index.d.ts +0 -1
- package/dist/Shared/Components/ThemeSwitcher/types.d.ts +1 -1
- package/dist/Shared/Providers/types.d.ts +5 -1
- package/dist/Shared/types.d.ts +20 -0
- package/dist/assets/@code-editor.css +1 -1
- package/dist/index.js +377 -377
- package/package.json +1 -1
- package/dist/Shared/Components/LogoutCard.d.ts +0 -10
package/package.json
CHANGED
@@ -1,10 +0,0 @@
|
|
1
|
-
import { default as React } from 'react';
|
2
|
-
interface LogoutCardType {
|
3
|
-
className: string;
|
4
|
-
userFirstLetter: string;
|
5
|
-
setShowLogOutCard: React.Dispatch<React.SetStateAction<boolean>>;
|
6
|
-
showLogOutCard: boolean;
|
7
|
-
}
|
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
|
-
declare const LogoutCard: ({ className, userFirstLetter, setShowLogOutCard, showLogOutCard }: LogoutCardType) => JSX.Element;
|
10
|
-
export default LogoutCard;
|