@devtron-labs/devtron-fe-common-lib 1.0.4-beta-5 → 1.0.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/Common/Policy.Types.d.ts +1 -1
- package/dist/Common/RJSF/Form.d.ts +1 -1
- package/dist/Common/Types.d.ts +1 -5
- package/dist/Shared/Components/Plugin/types.d.ts +1 -4
- package/dist/Shared/types.d.ts +3 -26
- package/dist/{cssMode-xGDksLg-.js → cssMode-gww6t3hp.js} +1 -1
- package/dist/{freemarker2-DwBDhEWu.js → freemarker2-C1os6hIq.js} +1 -1
- package/dist/{handlebars--lczMrSO.js → handlebars-CmWqAujF.js} +1 -1
- package/dist/{html-BdTnDt9r.js → html-BWCasgP8.js} +1 -1
- package/dist/{htmlMode-CEP1Iu1K.js → htmlMode-DiTBN6Js.js} +1 -1
- package/dist/{index-CvyOfGCo.js → index-CVB3HT05.js} +5814 -5820
- package/dist/index.js +1 -1
- package/dist/{javascript-DDWuN0k2.js → javascript-BeOM6Qv2.js} +1 -1
- package/dist/{jsonMode-CjV0gIm0.js → jsonMode-Bl54KSwi.js} +1 -1
- package/dist/{liquid-DcLZbzv8.js → liquid-DY8vDLW2.js} +1 -1
- package/dist/{mdx-BVb8mkxF.js → mdx-B2Mz4NGq.js} +1 -1
- package/dist/{python-DBD-sslJ.js → python-C6TJoNd_.js} +1 -1
- package/dist/{razor-DB-DLT3P.js → razor-_0bOceUt.js} +1 -1
- package/dist/{tsMode-CP0aXtAc.js → tsMode-oYMu1Njq.js} +1 -1
- package/dist/{typescript-DMOFvCYB.js → typescript-CcKDJsd9.js} +1 -1
- package/dist/{xml-DBQvcclk.js → xml-D2kxdtyf.js} +1 -1
- package/dist/{yaml-e7OtpUnA.js → yaml-DetA8HO7.js} +1 -1
- package/package.json +1 -1
|
@@ -67,7 +67,7 @@ export type ProcessPluginDataParamsType = {
|
|
|
67
67
|
/**
|
|
68
68
|
* Would be sent in case we have to get data for steps
|
|
69
69
|
*/
|
|
70
|
-
requiredPluginIds?: PluginDetailPayloadType['
|
|
70
|
+
requiredPluginIds?: PluginDetailPayloadType['pluginIds'];
|
|
71
71
|
} & (ProcessPluginDataCIParamsType | ProcessPluginDataCDParamsType);
|
|
72
72
|
export declare enum ConsequenceAction {
|
|
73
73
|
/**
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as RJSF } from '@rjsf/core';
|
|
2
2
|
import { FormProps } from './types';
|
|
3
|
-
export declare const RJSFForm: import('react').ForwardRefExoticComponent<Pick<FormProps, "children" | "className" | "id" | "onFocus" | "onBlur" | "onChange" | "onSubmit" | "onError" | "action" | "
|
|
3
|
+
export declare const RJSFForm: import('react').ForwardRefExoticComponent<Pick<FormProps, "children" | "className" | "id" | "onFocus" | "onBlur" | "onChange" | "onSubmit" | "onError" | "action" | "disabled" | "name" | "target" | "tagName" | "autoComplete" | "noValidate" | "readonly" | "schema" | "uiSchema" | "formContext" | "formData" | "idPrefix" | "idSeparator" | "fields" | "templates" | "widgets" | "translateString" | "acceptcharset" | "acceptCharset" | "enctype" | "method" | "customValidate" | "extraErrors" | "extraErrorsBlockSubmit" | "noHtml5Validate" | "liveValidate" | "liveOmit" | "omitExtraData" | "showErrorList" | "transformErrors" | "focusOnFirstError" | "experimental_defaultFormStateBehavior" | "_internalFormWrapper"> & import('react').RefAttributes<RJSF<unknown, import('json-schema').JSONSchema7, import('@rjsf/utils').GenericObjectType>>>;
|
package/dist/Common/Types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { default as React, ReactNode, CSSProperties, ReactElement
|
|
1
|
+
import { default as React, ReactNode, CSSProperties, ReactElement } from 'react';
|
|
2
2
|
import { Placement } from 'tippy.js';
|
|
3
3
|
import { UserGroupDTO } from '../Pages/GlobalConfigurations';
|
|
4
4
|
import { ImageComment, ReleaseTag } from './ImageTags.Types';
|
|
@@ -25,11 +25,7 @@ export interface ResponseType<T = any> {
|
|
|
25
25
|
}
|
|
26
26
|
export interface APIOptions {
|
|
27
27
|
timeout?: number;
|
|
28
|
-
/**
|
|
29
|
-
* @deprecated Use abortController instead
|
|
30
|
-
*/
|
|
31
28
|
signal?: AbortSignal;
|
|
32
|
-
abortControllerRef?: MutableRefObject<AbortController>;
|
|
33
29
|
preventAutoLogout?: boolean;
|
|
34
30
|
}
|
|
35
31
|
export interface OptionType<T = string, K = string> {
|
|
@@ -68,10 +68,7 @@ export interface PluginDetailServiceParamsType {
|
|
|
68
68
|
shouldShowError?: boolean;
|
|
69
69
|
signal?: AbortSignal;
|
|
70
70
|
}
|
|
71
|
-
export interface PluginDetailPayloadType extends Pick<PluginDetailServiceParamsType, 'appId'> {
|
|
72
|
-
pluginId?: PluginDetailServiceParamsType['pluginIds'];
|
|
73
|
-
parentPluginId?: PluginDetailServiceParamsType['parentPluginIds'];
|
|
74
|
-
parentPluginIdentifier?: PluginDetailServiceParamsType['parentPluginIdentifiers'][number];
|
|
71
|
+
export interface PluginDetailPayloadType extends Pick<PluginDetailServiceParamsType, 'appId' | 'parentPluginIds' | 'pluginIds' | 'parentPluginIdentifiers'> {
|
|
75
72
|
}
|
|
76
73
|
export interface PluginListFiltersType extends Pick<BaseFilterQueryParams<unknown>, 'searchKey'> {
|
|
77
74
|
selectedTags: string[];
|
package/dist/Shared/types.d.ts
CHANGED
|
@@ -640,7 +640,7 @@ interface CommonTabArgsType {
|
|
|
640
640
|
isSelected: boolean;
|
|
641
641
|
title?: string;
|
|
642
642
|
isDeleted?: boolean;
|
|
643
|
-
|
|
643
|
+
position: number;
|
|
644
644
|
iconPath?: string;
|
|
645
645
|
dynamicTitle?: string;
|
|
646
646
|
showNameOnSelect?: boolean;
|
|
@@ -658,34 +658,11 @@ interface CommonTabArgsType {
|
|
|
658
658
|
value: string;
|
|
659
659
|
}[];
|
|
660
660
|
};
|
|
661
|
-
/**
|
|
662
|
-
* If true, the fixed tab remains mounted on initial load of the component
|
|
663
|
-
*
|
|
664
|
-
* Note: Not for dynamic tabs atm
|
|
665
|
-
*
|
|
666
|
-
* @default false
|
|
667
|
-
*/
|
|
668
|
-
shouldRemainMounted?: boolean;
|
|
669
661
|
}
|
|
670
|
-
export
|
|
671
|
-
type: 'fixed';
|
|
672
|
-
/**
|
|
673
|
-
* Unique identifier for the fixed tab
|
|
674
|
-
*
|
|
675
|
-
* Note: Shouldn't contain '-'
|
|
676
|
-
*/
|
|
677
|
-
id: string;
|
|
678
|
-
idPrefix?: never;
|
|
679
|
-
} | {
|
|
680
|
-
type: 'dynamic';
|
|
681
|
-
id?: never;
|
|
662
|
+
export interface InitTabType extends CommonTabArgsType {
|
|
682
663
|
idPrefix: string;
|
|
683
|
-
}
|
|
664
|
+
}
|
|
684
665
|
export interface DynamicTabType extends CommonTabArgsType {
|
|
685
666
|
id: string;
|
|
686
|
-
/**
|
|
687
|
-
* Id of the last active tab before switching to current tab
|
|
688
|
-
*/
|
|
689
|
-
lastActiveTabId: string | null;
|
|
690
667
|
}
|
|
691
668
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var Fe = Object.defineProperty;
|
|
2
2
|
var Le = (e, n, i) => n in e ? Fe(e, n, { enumerable: !0, configurable: !0, writable: !0, value: i }) : e[n] = i;
|
|
3
3
|
var k = (e, n, i) => Le(e, typeof n != "symbol" ? n + "" : n, i);
|
|
4
|
-
import { m as je } from "./index-
|
|
4
|
+
import { m as je } from "./index-CVB3HT05.js";
|
|
5
5
|
/*!-----------------------------------------------------------------------------
|
|
6
6
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7
7
|
* Version: 0.44.0(3e047efd345ff102c8c61b5398fb30845aaac166)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./index-
|
|
1
|
+
import { m as f } from "./index-CVB3HT05.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.44.0(3e047efd345ff102c8c61b5398fb30845aaac166)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-CVB3HT05.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.44.0(3e047efd345ff102c8c61b5398fb30845aaac166)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-CVB3HT05.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.44.0(3e047efd345ff102c8c61b5398fb30845aaac166)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var Be = Object.defineProperty;
|
|
2
2
|
var $e = (e, n, i) => n in e ? Be(e, n, { enumerable: !0, configurable: !0, writable: !0, value: i }) : e[n] = i;
|
|
3
3
|
var k = (e, n, i) => $e(e, typeof n != "symbol" ? n + "" : n, i);
|
|
4
|
-
import { m as qe } from "./index-
|
|
4
|
+
import { m as qe } from "./index-CVB3HT05.js";
|
|
5
5
|
/*!-----------------------------------------------------------------------------
|
|
6
6
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7
7
|
* Version: 0.44.0(3e047efd345ff102c8c61b5398fb30845aaac166)
|