@devtron-labs/devtron-fe-common-lib 1.7.10-beta-3 → 1.7.10-beta-5
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-BsK5fCSI.js → @code-editor-CFOMvxTS.js} +2010 -2007
- package/dist/{@common-rjsf-Bb_8MHi8.js → @common-rjsf-DIWBDK09.js} +1 -1
- package/dist/Common/CodeEditor/types.d.ts +1 -1
- package/dist/Common/Toggle/Toggle.d.ts +2 -1
- package/dist/Common/Types.d.ts +9 -0
- package/dist/index.js +784 -783
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { j as t, J as P } from "./@vendor-CIA81cZg.js";
|
2
2
|
import R, { forwardRef as $ } from "react";
|
3
3
|
import L, { getDefaultRegistry as D } from "@rjsf/core";
|
4
|
-
import { T as v, c as H, a as U, i as k, b as y, d as S, S as J } from "./@code-editor-
|
4
|
+
import { T as v, c as H, a as U, i as k, b as y, d as S, S as J } from "./@code-editor-CFOMvxTS.js";
|
5
5
|
import M, { components as A } from "react-select";
|
6
6
|
import { ReactComponent as V } from "./assets/ic-chevron-down.fc70d7a7.svg";
|
7
7
|
import { getUiOptions as C, getTemplate as B, getSubmitButtonOptions as W, ADDITIONAL_PROPERTY_FLAG as I, errorId as q, englishStringTranslator as K, TranslatableString as Y, titleId as z, canExpand as G, deepEquals as Q } from "@rjsf/utils";
|
@@ -74,7 +74,7 @@ export interface CodeEditorHeaderComposition {
|
|
74
74
|
ValidationError?: React.FC<any>;
|
75
75
|
Clipboard?: React.FC<any>;
|
76
76
|
}
|
77
|
-
|
77
|
+
type ActionTypes = 'changeLanguage' | 'setDiff' | 'setTheme' | 'setCode' | 'setDefaultCode' | 'setHeight';
|
78
78
|
export interface Action {
|
79
79
|
type: ActionTypes;
|
80
80
|
value: any;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dataTestId, Icon, iconClass, throttleOnChange, ...props }: {
|
1
|
+
declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dataTestId, Icon, iconClass, throttleOnChange, preventDefaultOnLabel, ...props }: {
|
2
2
|
[x: string]: any;
|
3
3
|
selected?: boolean;
|
4
4
|
onSelect?: any;
|
@@ -9,5 +9,6 @@ declare const Toggle: ({ selected, onSelect, color, rootClassName, disabled, dat
|
|
9
9
|
Icon?: any;
|
10
10
|
iconClass?: string;
|
11
11
|
throttleOnChange?: boolean;
|
12
|
+
preventDefaultOnLabel?: boolean;
|
12
13
|
}) => JSX.Element;
|
13
14
|
export default Toggle;
|
package/dist/Common/Types.d.ts
CHANGED
@@ -927,4 +927,13 @@ export interface UserRole extends ResponseType {
|
|
927
927
|
canManageAllAccess?: boolean;
|
928
928
|
};
|
929
929
|
}
|
930
|
+
export declare enum ActionTypes {
|
931
|
+
MANAGER = "manager",
|
932
|
+
ADMIN = "admin",
|
933
|
+
TRIGGER = "trigger",
|
934
|
+
VIEW = "view",
|
935
|
+
UPDATE = "update",
|
936
|
+
EDIT = "edit",
|
937
|
+
APPROVER = "approver"
|
938
|
+
}
|
930
939
|
export {};
|