@devtron-labs/devtron-fe-common-lib 1.15.0-beta-4 → 1.15.0-beta-6
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-Bn33DGW1.js → @code-editor-Dl9tRpgZ.js} +5365 -5402
- package/dist/{@common-rjsf-B-Or0nFb.js → @common-rjsf-JKKuV1A0.js} +222 -230
- package/dist/Common/Dialogs/Types.d.ts +0 -17
- package/dist/Common/Dialogs/index.d.ts +0 -1
- package/dist/Common/RJSF/widgets/Checkbox.d.ts +1 -1
- package/dist/Common/Types.d.ts +1 -43
- package/dist/Common/index.d.ts +0 -2
- package/dist/Pages/ResourceBrowser/types.d.ts +0 -5
- package/dist/Shared/Components/DocLink/types.d.ts +1 -0
- package/dist/Shared/Components/DocLink/utils.d.ts +1 -1
- package/dist/Shared/Components/Icon/Icon.d.ts +3 -3
- package/dist/Shared/Components/Switch/Switch.component.d.ts +1 -1
- package/dist/Shared/Components/Switch/types.d.ts +11 -2
- package/dist/Shared/Components/Switch/utils.d.ts +2 -2
- package/dist/Shared/Components/SwitchThemeDialog/SwitchThemeDialog.component.d.ts +3 -0
- package/dist/Shared/Components/SwitchThemeDialog/index.d.ts +2 -0
- package/dist/Shared/Components/SwitchThemeDialog/types.d.ts +35 -0
- package/dist/Shared/Components/ToggleResolveScopedVariables/ToggleResolveScopedVariables.component.d.ts +1 -1
- package/dist/Shared/Components/ToggleResolveScopedVariables/types.d.ts +1 -1
- package/dist/Shared/Components/index.d.ts +1 -0
- package/dist/Shared/Providers/types.d.ts +28 -10
- package/dist/Shared/types.d.ts +0 -1
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/ic-asterisk.ab224e72.svg +3 -0
- package/dist/assets/ic-world-globe.877fa6a0.svg +3 -0
- package/dist/index.js +763 -765
- package/package.json +3 -3
- package/dist/Common/Dialogs/ConfirmationDialog.d.ts +0 -11
- package/dist/Common/InfoColorBar/InfoColourbar.d.ts +0 -6
- package/dist/Common/Toggle/Toggle.d.ts +0 -18
- package/dist/assets/ic-cloud-upload.6f45f51c.svg +0 -3
- package/dist/assets/ic-minus.aac464f7.svg +0 -3
- package/dist/assets/ic-swap.38b2ac9e.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.15.0-beta-
|
3
|
+
"version": "1.15.0-beta-6",
|
4
4
|
"description": "Supporting common component library",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -72,7 +72,7 @@
|
|
72
72
|
"sharp": "^0.33.5",
|
73
73
|
"svgo": "^3.3.2",
|
74
74
|
"typescript": "5.5.4",
|
75
|
-
"vite": "5.4.
|
75
|
+
"vite": "5.4.19",
|
76
76
|
"vite-plugin-dts": "4.0.3",
|
77
77
|
"vite-plugin-image-optimizer": "^1.1.8",
|
78
78
|
"vite-plugin-lib-inject-css": "2.1.1",
|
@@ -135,7 +135,7 @@
|
|
135
135
|
"react-dom": "^17.0.2"
|
136
136
|
},
|
137
137
|
"vite-plugin-svgr": {
|
138
|
-
"vite": "5.4.
|
138
|
+
"vite": "5.4.19"
|
139
139
|
},
|
140
140
|
"react-virtualized-sticky-tree": {
|
141
141
|
"react": "^17.0.2",
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { ConfirmationDialogBodyType, ConfirmationDialogButtonGroupType, ConfirmationDialogIconType, ConfirmationDialogType } from './Types';
|
2
|
-
/**
|
3
|
-
* @deprecated use confirmation modal instead
|
4
|
-
*/
|
5
|
-
declare const ConfirmationDialog: {
|
6
|
-
({ className, children, close }: ConfirmationDialogType): JSX.Element;
|
7
|
-
Icon: ({ src, className }: ConfirmationDialogIconType) => JSX.Element;
|
8
|
-
Body: ({ title, subtitle, children }: ConfirmationDialogBodyType) => JSX.Element;
|
9
|
-
ButtonGroup: ({ children }: ConfirmationDialogButtonGroupType) => JSX.Element;
|
10
|
-
};
|
11
|
-
export default ConfirmationDialog;
|
@@ -1,6 +0,0 @@
|
|
1
|
-
import { InfoColourBarType } from '../Types';
|
2
|
-
/**
|
3
|
-
* @deprecated Use InfoBlock instead
|
4
|
-
*/
|
5
|
-
declare const InfoColourBar: ({ message, classname, Icon, iconClass, iconSize, renderActionButton, linkText, redirectLink, linkOnClick, linkClass, internalLink, styles, hideIcon, textConfig, }: InfoColourBarType) => JSX.Element;
|
6
|
-
export default InfoColourBar;
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import { CHECKBOX_VALUE } from '../Types';
|
2
|
-
declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dataTestId, Icon, iconClass, throttleOnChange, shouldToggleValueOnLabelClick, isLoading, value, isControlled, ...props }: {
|
3
|
-
[x: string]: any;
|
4
|
-
selected?: boolean;
|
5
|
-
onSelect?: any;
|
6
|
-
color?: string;
|
7
|
-
rootClassName?: string;
|
8
|
-
disabled?: boolean;
|
9
|
-
dataTestId?: string;
|
10
|
-
Icon?: any;
|
11
|
-
iconClass?: string;
|
12
|
-
throttleOnChange?: boolean;
|
13
|
-
shouldToggleValueOnLabelClick?: boolean;
|
14
|
-
isLoading?: boolean;
|
15
|
-
value?: CHECKBOX_VALUE;
|
16
|
-
isControlled?: boolean;
|
17
|
-
}) => JSX.Element;
|
18
|
-
export default Toggle;
|
@@ -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="M9 19.498H6.75A5.25 5.25 0 1 1 8.055 9.162M7.5 11.998a7.5 7.5 0 1 1 13.5 4.5m-9.932-1.318 3.182-3.182m0 0 3.182 3.182m-3.182-3.182v7.5" vector-effect="non-scaling-stroke"/>
|
3
|
-
</svg>
|
@@ -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.516 9.786h4.5m0 0v-4.5m0 4.5C18.29 7.52 16.139 3.628 13 3c-2.5-.5-4 .5-6 2M2 8.35h6v6H2v-6Zm12 4.531h8v8h-8v-8Z" vector-effect="non-scaling-stroke"/>
|
3
|
-
</svg>
|