@dxs-ts/eveli-ide 0.0.335 → 0.0.337

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.
Files changed (24) hide show
  1. package/build/{cssMode-DmTnttDD.js → cssMode-kzDmJz14.js} +1 -1
  2. package/build/eveli-task-comments/EveliTaskCommentBody.d.ts +20 -0
  3. package/build/eveli-task-comments/EveliTaskComments.d.ts +0 -1
  4. package/build/eveli-task-comments/Thread.d.ts +0 -1
  5. package/build/eveli-task-composer/EveliTaskBody.d.ts +6 -0
  6. package/build/eveli-task-composer/EveliTaskCountIndicator.d.ts +15 -0
  7. package/build/{freemarker2-BLpvso6e.js → freemarker2-zUj1Gb-k.js} +1 -1
  8. package/build/{handlebars-C1HjRG34.js → handlebars--zoPwf6H.js} +1 -1
  9. package/build/{html-C7XQgxkD.js → html-UGaMev_W.js} +1 -1
  10. package/build/{htmlMode-m3SpzpjC.js → htmlMode-B9LEFg-l.js} +1 -1
  11. package/build/{index-B1selNy0.js → index-DNj-Gqg0.js} +40397 -40345
  12. package/build/index.js +1 -1
  13. package/build/{javascript-DDkxezjA.js → javascript-BwLfEsqy.js} +1 -1
  14. package/build/{jsonMode-BW0bXlxZ.js → jsonMode-C307L0Jg.js} +1 -1
  15. package/build/{liquid-wgQ-ZTQu.js → liquid-J7YBK6NL.js} +1 -1
  16. package/build/{mdx-DCTG9lVs.js → mdx-DTBYFpmD.js} +1 -1
  17. package/build/{python-CC1Lgz2p.js → python-BqoChU_t.js} +1 -1
  18. package/build/{razor-6JM7Yx4m.js → razor-D2Jd85GP.js} +1 -1
  19. package/build/{tsMode-CbJ9OfHk.js → tsMode-0HEv_b7i.js} +1 -1
  20. package/build/{typescript-YG5Ia42x.js → typescript-CBplDs2D.js} +1 -1
  21. package/build/{xml-DQuNQWHh.js → xml-DvyTX2KT.js} +1 -1
  22. package/build/{yaml-DAKmAF5H.js → yaml-BxHtJPLm.js} +1 -1
  23. package/package.json +2 -2
  24. package/build/eveli-task-comments/CommentLocal.d.ts +0 -12
@@ -1,4 +1,4 @@
1
- import { m as et } from "./index-B1selNy0.js";
1
+ import { m as et } from "./index-DNj-Gqg0.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
@@ -0,0 +1,20 @@
1
+ import { default as React } from 'react';
2
+ import { TaskApi } from '../api-task';
3
+ type EveliTaskCommentBodyProps = {
4
+ comment: TaskApi.Comment;
5
+ children: React.ReactNode;
6
+ task: TaskApi.Task;
7
+ isExternalThread?: boolean;
8
+ setReply: React.Dispatch<React.SetStateAction<boolean>>;
9
+ };
10
+ export declare const EveliTaskCommentBody: React.FC<EveliTaskCommentBodyProps>;
11
+ export declare const MUI_NAME = "EveliTaskCommentBody";
12
+ export interface EveliTaskCommentBodyClasses {
13
+ root: string;
14
+ }
15
+ export type EveliTaskCommentBodyClassKey = keyof EveliTaskCommentBodyClasses;
16
+ export declare const EveliTaskCommentBodyRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
17
+ ownerState: EveliTaskCommentBodyProps;
18
+ }, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}>;
19
+ export declare const useUtilityClasses: () => Record<"body" | "header" | "icon" | "root", string>;
20
+ export {};
@@ -3,7 +3,6 @@ import { TaskApi } from '../api-task';
3
3
  export type EveliTaskCommentsProps = {
4
4
  task: TaskApi.Task;
5
5
  isExternalThread: boolean;
6
- isThreaded?: boolean | undefined;
7
6
  reload: () => void;
8
7
  };
9
8
  export declare const EveliTaskComments: React.FC<EveliTaskCommentsProps>;
@@ -4,7 +4,6 @@ type Props = {
4
4
  comments: TaskApi.Comment[];
5
5
  task: TaskApi.Task;
6
6
  isExternalThread?: boolean;
7
- isThreaded?: boolean;
8
7
  setReply: React.Dispatch<React.SetStateAction<boolean>>;
9
8
  };
10
9
  export declare const Thread: React.FC<Props>;
@@ -3,6 +3,7 @@ import { TaskApi } from '../api-task';
3
3
  export declare const classes: {
4
4
  accordionSummary: {
5
5
  display: string;
6
+ alignItems: string;
6
7
  "& .Mui-expanded": {
7
8
  marginBottom: number;
8
9
  marginTop: number;
@@ -16,6 +17,11 @@ export declare const classes: {
16
17
  accordionDetails: {
17
18
  pt: number;
18
19
  };
20
+ spacer: {
21
+ width: string;
22
+ display: string;
23
+ justifyContent: string;
24
+ };
19
25
  };
20
26
  export interface EveliTaskBodyProps {
21
27
  task: TaskApi.Task;
@@ -0,0 +1,15 @@
1
+ import { default as React } from 'react';
2
+ export declare const EveliTaskCountIndicator: React.FC<{
3
+ count: number | undefined;
4
+ }>;
5
+ export declare const MUI_NAME = "EveliTaskCountIndicator";
6
+ export interface EveliTaskCountIndicatorClasses {
7
+ root: string;
8
+ }
9
+ export type EveliTaskCountIndicatorClassKey = keyof EveliTaskCountIndicatorClasses;
10
+ export declare const EveliTaskCountIndicatorRoot: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').AvatarOwnProps & import('@mui/material').AvatarSlotsAndSlotProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
11
+ ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
12
+ }, "children" | "variant" | "style" | "className" | "classes" | "slots" | "slotProps" | "sx" | "sizes" | "alt" | "src" | "srcSet" | "imgProps">, "children" | "id" | "ref" | "key" | "variant" | "slot" | "style" | "title" | "onFocus" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classes" | "slots" | "slotProps" | "sx" | "sizes" | "alt" | "src" | "srcSet" | "imgProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
13
+ count: number | undefined;
14
+ }, {}, {}>;
15
+ export declare const useUtilityClasses: () => Record<"root" | "hasCount", string>;
@@ -1,4 +1,4 @@
1
- import { m as f } from "./index-B1selNy0.js";
1
+ import { m as f } from "./index-DNj-Gqg0.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-B1selNy0.js";
1
+ import { m as l } from "./index-DNj-Gqg0.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-B1selNy0.js";
1
+ import { m as s } from "./index-DNj-Gqg0.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-B1selNy0.js";
1
+ import { m as lt } from "./index-DNj-Gqg0.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)