@dxs-ts/eveli-ide 0.0.194 → 0.0.196
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/build/{cssMode-BMaVFtVB.js → cssMode-DwNv8JmE.js} +1 -1
- package/build/eveli-datepicker/EveliDatePicker.d.ts +2 -5
- package/build/eveli-services/CreateOrEditWorkflowDialog.d.ts +1 -1
- package/build/eveli-table/EveliTable.d.ts +2 -0
- package/build/eveli-table/EveliTableOptionsDrawer.d.ts +2 -0
- package/build/eveli-table/VerticalButtonColumn.d.ts +1 -0
- package/build/eveli-table/index.d.ts +1 -0
- package/build/eveli-table/useUtilityClasses.d.ts +8 -0
- package/build/eveli-task-composer/Priority.d.ts +5 -3
- package/build/eveli-task-composer/RadioGroupPopover.d.ts +3 -3
- package/build/eveli-task-composer/Status.d.ts +5 -4
- package/build/eveli-task-composer/TaskCreate.d.ts +1 -1
- package/build/eveli-task-composer/TaskFormState.d.ts +31 -0
- package/build/{freemarker2-B3mYo67q.js → freemarker2-DB34dwRT.js} +1 -1
- package/build/{handlebars-DZhD9MYb.js → handlebars-B1onWayl.js} +1 -1
- package/build/{html-DpAx2aRS.js → html-DM5PFDK2.js} +1 -1
- package/build/{htmlMode-BauMA9gC.js → htmlMode-BYSEW3dD.js} +1 -1
- package/build/{index-C-J_Fjnm.js → index-DUMUiI3B.js} +64434 -65771
- package/build/index.js +1 -1
- package/build/{javascript-B83hLLJn.js → javascript-CPW2Oof_.js} +1 -1
- package/build/{jsonMode-CQM5xLB4.js → jsonMode-diNbZgpC.js} +1 -1
- package/build/{liquid-Bv6Er2yE.js → liquid-DHUdRUwr.js} +1 -1
- package/build/{mdx-P7JOT1Bz.js → mdx-CDVoK-7z.js} +1 -1
- package/build/{python-l_AjK93O.js → python-Dr-dK0It.js} +1 -1
- package/build/{razor-BHEEIQXf.js → razor-TS7cevAA.js} +1 -1
- package/build/{tsMode-CKPKov19.js → tsMode-DQGkO3w5.js} +1 -1
- package/build/{typescript-B7qzBJVs.js → typescript-B8xfHdoi.js} +1 -1
- package/build/{xml-DZDalV6v.js → xml-vQJ2ajqG.js} +1 -1
- package/build/{yaml-BPolyDLa.js → yaml-wJrmizEO.js} +1 -1
- package/package.json +5 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as et } from "./index-
|
|
1
|
+
import { m as et } from "./index-DUMUiI3B.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export type EveliDatePickerProps = {
|
|
3
|
-
field: any;
|
|
4
|
-
form: any;
|
|
5
|
-
meta: any;
|
|
6
|
-
id: String;
|
|
7
3
|
label: String;
|
|
8
4
|
readonly?: boolean;
|
|
9
5
|
fullWidth?: boolean;
|
|
10
|
-
|
|
6
|
+
value: string | Date | undefined | null;
|
|
7
|
+
onChange?: (newValue: Date | null) => void;
|
|
11
8
|
};
|
|
12
9
|
export declare const EveliDatePicker: React.FC<EveliDatePickerProps>;
|
|
@@ -2,7 +2,7 @@ import { default as React } from 'react';
|
|
|
2
2
|
import { PublicationApi } from '../api-publications';
|
|
3
3
|
export interface CreateOrEditWorkflowDialogProps {
|
|
4
4
|
onSubmit: () => void;
|
|
5
|
-
workflow: PublicationApi.AssetService
|
|
5
|
+
workflow: PublicationApi.AssetService;
|
|
6
6
|
open: boolean;
|
|
7
7
|
setOpen: (open: boolean) => void;
|
|
8
8
|
dialobTags: PublicationApi.AssetFormTag[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VerticalButtonColumn: React.FC;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { EveliTable } from './EveliTable';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const EveliTableRootClassName = "EveliTable";
|
|
2
|
+
export declare const useUtilityClasses: () => Record<"col" | "row" | "root" | "headerRow" | "headerCell" | "rowCell", string>;
|
|
3
|
+
export declare const EveliTableRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
4
|
+
export declare const EveliTableHeaderRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
5
|
+
export declare const EveliTableRowRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
6
|
+
export declare const EveliTableColRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
|
|
7
|
+
width: string;
|
|
8
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
interface Props
|
|
1
|
+
import { TaskApi } from '../api-task';
|
|
2
|
+
interface Props {
|
|
3
3
|
label: string;
|
|
4
4
|
readonly?: boolean;
|
|
5
|
+
value: TaskApi.TaskPriority | undefined;
|
|
6
|
+
handleCallback: (newValue: TaskApi.TaskPriority) => void;
|
|
5
7
|
}
|
|
6
|
-
export declare const Priority: ({ label, readonly,
|
|
8
|
+
export declare const Priority: ({ label, readonly, value, handleCallback }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export {};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { FieldInputProps } from 'formik';
|
|
2
1
|
import { TaskApi } from '../api-task';
|
|
3
|
-
interface CommonProps
|
|
2
|
+
interface CommonProps {
|
|
4
3
|
label: string;
|
|
5
4
|
readonly?: boolean;
|
|
6
5
|
messages: Record<string, {
|
|
@@ -8,7 +7,8 @@ interface CommonProps extends FieldInputProps<""> {
|
|
|
8
7
|
defaultMessage: string;
|
|
9
8
|
}>;
|
|
10
9
|
colorMap: TaskApi.ColorMap;
|
|
10
|
+
value: string | undefined;
|
|
11
11
|
handleCallback?: (newValue: string) => void;
|
|
12
12
|
}
|
|
13
|
-
declare const RadioGroupPopover: ({ label, readonly, messages, colorMap, handleCallback,
|
|
13
|
+
declare const RadioGroupPopover: ({ label, readonly, messages, colorMap, handleCallback, value }: CommonProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export default RadioGroupPopover;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
interface Props
|
|
1
|
+
import { TaskApi } from '../api-task';
|
|
2
|
+
interface Props {
|
|
3
3
|
label: string;
|
|
4
4
|
readonly?: boolean;
|
|
5
|
-
|
|
5
|
+
value: TaskApi.TaskStatus | undefined;
|
|
6
|
+
handleCallback: (newValue: TaskApi.TaskStatus) => void;
|
|
6
7
|
}
|
|
7
|
-
export declare const StatusComponent: ({ label, readonly, handleCallback,
|
|
8
|
+
export declare const StatusComponent: ({ label, readonly, handleCallback, value }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -8,7 +8,7 @@ type Props = {
|
|
|
8
8
|
groups: IamApi.UserGroup[];
|
|
9
9
|
getUsers: (groupName: string[]) => Promise<IamApi.GroupMember[]>;
|
|
10
10
|
editTask: TaskApi.Task;
|
|
11
|
-
handleSubmit: (task: TaskApi.Task) => void
|
|
11
|
+
handleSubmit: (task: TaskApi.Task) => Promise<void>;
|
|
12
12
|
cancel: () => void;
|
|
13
13
|
componentResolver?: ComponentResolver;
|
|
14
14
|
externalThreads?: boolean;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { TaskApi } from '../api-task';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
export interface TaskFormProps {
|
|
4
|
+
clientIdentificator: string | undefined;
|
|
5
|
+
priority: TaskApi.TaskPriority | undefined;
|
|
6
|
+
subject: string | undefined;
|
|
7
|
+
description: string | undefined;
|
|
8
|
+
dueDate: Date | undefined | null;
|
|
9
|
+
status: TaskApi.TaskStatus | undefined;
|
|
10
|
+
assignedUser: string | undefined;
|
|
11
|
+
assignedUserEmail: string | undefined;
|
|
12
|
+
assignedRoles: string[] | undefined;
|
|
13
|
+
additionalInfo: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface TaskFormDelegateProps {
|
|
16
|
+
currentState: TaskFormProps;
|
|
17
|
+
isSubmitting: boolean;
|
|
18
|
+
isValid: boolean;
|
|
19
|
+
dirty: boolean;
|
|
20
|
+
errors: {
|
|
21
|
+
subject: string | undefined;
|
|
22
|
+
assignedUser: string | undefined;
|
|
23
|
+
};
|
|
24
|
+
onSubmit: () => Promise<void>;
|
|
25
|
+
setFieldValue<FieldName extends keyof TaskFormProps>(fieldName: FieldName, fieldValue: TaskFormProps[FieldName]): void;
|
|
26
|
+
}
|
|
27
|
+
export declare const TaskFormState: React.FC<{
|
|
28
|
+
task: TaskApi.Task;
|
|
29
|
+
children: React.FC<TaskFormDelegateProps>;
|
|
30
|
+
onSubmit: (task: TaskApi.Task) => Promise<void>;
|
|
31
|
+
}>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./index-
|
|
1
|
+
import { m as f } from "./index-DUMUiI3B.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-DUMUiI3B.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-DUMUiI3B.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as lt } from "./index-
|
|
1
|
+
import { m as lt } from "./index-DUMUiI3B.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|