ados-rcm 1.1.331 → 1.1.333

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.
@@ -3,6 +3,7 @@ import { TUseValues } from '../../AHooks/useValues';
3
3
  import { IABaseProps } from '../ABase/ABase';
4
4
  import { IAWrapProps } from '../AWrap/AWrap';
5
5
  export type TAEditorType = 'Primary' | 'ReadOnly' | 'Raw' | 'Error';
6
+ export type TAEditorSize = 'Med' | 'Large';
6
7
  export interface IAEditorProps extends IABaseProps, IAWrapProps {
7
8
  onEnterPress?: (value: string) => void;
8
9
  type?: TAEditorType;
@@ -16,6 +17,7 @@ export interface IAEditorProps extends IABaseProps, IAWrapProps {
16
17
  minHeight?: string | number;
17
18
  contentHeight?: number;
18
19
  maxHeight?: number;
20
+ toolbarSize?: TAEditorSize;
19
21
  }
20
22
  export declare const AEditor: (props: IAEditorProps) => React.ReactNode;
21
23
  export declare const FileSizeTrans: (size: any) => string;
@@ -65,7 +65,5 @@ export default class JaeKanTableUI {
65
65
  private getBoundingRectWithCache;
66
66
  pasteHandler(): void;
67
67
  private cleanupTableUI;
68
- private checkTableRemoval;
69
- private findParentTable;
70
68
  }
71
69
  export {};
@@ -147,7 +147,8 @@ export declare const Icons: Readonly<{
147
147
  Table: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
148
148
  Minus: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
149
149
  EditorArrow: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
150
+ Target: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
150
151
  }>;
151
- export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircleCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "PersonOutline" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "TriangleAlert2" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "RowSortUp" | "RowSortDown" | "RowSortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "CloudSync" | "CalendarDay" | "DateRange" | "PlayArrow" | "Mail" | "MailOutline" | "Bell" | "Download" | "Folder" | "FolderPost" | "FolderOpen" | "FolderCopy" | "FolderAdd" | "FolderMove" | "FirstPage" | "LastPage" | "NavigateBefore" | "NavigateNext" | "ListAdd" | "ListRemove" | "Cancel" | "Article" | "Info" | "Type" | "PersonAdd" | "CheckNormal" | "Create" | "PersonRemove" | "Refresh" | "Undo" | "Gear" | "TriangleUp" | "TriangleDown" | "CircleHelp" | "Cow" | "CircleAlertOutline" | "CircleAlert" | "Manager" | "ManagerOutline" | "Admin" | "Equalizer" | "ABC" | "Auth" | "AuthAdd" | "Switch" | "Add" | "Edit" | "EditOff" | "Delete" | "Save" | "Remove" | "Sync" | "X" | "MoreVertical" | "MoreHorizontal" | "Verified" | "NonVerified" | "Edit2" | "Trash" | "AddRowBelow" | "AddRowAbove" | "AddColRight" | "AddColLeft" | "RemoveCol" | "RemoveRow" | "Table" | "Minus" | "EditorArrow")[];
152
+ export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircleCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "PersonOutline" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "TriangleAlert2" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "RowSortUp" | "RowSortDown" | "RowSortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "CloudSync" | "CalendarDay" | "DateRange" | "PlayArrow" | "Mail" | "MailOutline" | "Bell" | "Download" | "Folder" | "FolderPost" | "FolderOpen" | "FolderCopy" | "FolderAdd" | "FolderMove" | "FirstPage" | "LastPage" | "NavigateBefore" | "NavigateNext" | "ListAdd" | "ListRemove" | "Cancel" | "Article" | "Info" | "Type" | "PersonAdd" | "CheckNormal" | "Create" | "PersonRemove" | "Refresh" | "Undo" | "Gear" | "TriangleUp" | "TriangleDown" | "CircleHelp" | "Cow" | "CircleAlertOutline" | "CircleAlert" | "Manager" | "ManagerOutline" | "Admin" | "Equalizer" | "ABC" | "Auth" | "AuthAdd" | "Switch" | "Add" | "Edit" | "EditOff" | "Delete" | "Save" | "Remove" | "Sync" | "X" | "MoreVertical" | "MoreHorizontal" | "Verified" | "NonVerified" | "Edit2" | "Trash" | "AddRowBelow" | "AddRowAbove" | "AddColRight" | "AddColLeft" | "RemoveCol" | "RemoveRow" | "Table" | "Minus" | "EditorArrow" | "Target")[];
152
153
  export type TIcons = keyof typeof Icons;
153
154
  export {};
@@ -71,6 +71,9 @@ export declare const Resources: {
71
71
  'Right click to open properties': string;
72
72
  Default: string;
73
73
  };
74
+ AWrap: {
75
+ Asterisk: string;
76
+ };
74
77
  };
75
78
  export type TResource = typeof Resources;
76
79
  export type TResourceType = keyof TResource;
@@ -1,6 +1,33 @@
1
1
  import { default as React } from 'react';
2
+ import { TIcons } from '../AIcon/AIcon';
2
3
  export declare const AWrapTypes: readonly ["Default", "Error"];
3
4
  export type TAWrapTypes = (typeof AWrapTypes)[number];
5
+ export interface IAWrapLabelProps {
6
+ /**
7
+ * className? : string
8
+ *
9
+ * Description : Additional className for the label
10
+ */
11
+ className?: string;
12
+ /**
13
+ * prefix? : React.ReactNode
14
+ *
15
+ * Description : Content to display before the label (icon, bullet point, etc.)
16
+ */
17
+ prefix?: React.ReactNode | TIcons | boolean;
18
+ /**
19
+ * asterisk? : boolean
20
+ *
21
+ * Description : Whether to display an asterisk (*) after the label
22
+ */
23
+ asterisk?: boolean;
24
+ /**
25
+ * style? : React.CSSProperties
26
+ *
27
+ * Description : Additional styles for the label
28
+ */
29
+ style?: React.CSSProperties;
30
+ }
4
31
  export interface IAWrapProps {
5
32
  /**
6
33
  * wrapProps? : React.HTMLAttributes<HTMLDivElement>
@@ -32,6 +59,12 @@ export interface IAWrapProps {
32
59
  * Description : label of AWrap
33
60
  */
34
61
  label?: React.ReactNode;
62
+ /**
63
+ * labelProps? : IAWrapLabelProps
64
+ *
65
+ * Description : props for the label
66
+ */
67
+ labelProps?: IAWrapLabelProps;
35
68
  /**
36
69
  * children? : React.ReactNode
37
70
  *