@mcurros2/microm 1.1.240-0 → 1.1.242-0
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/index.d.ts +70 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +504 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -766,7 +766,7 @@ export type useExecuteServerActionReturnType<TReturn extends ValuesObject> = {
|
|
|
766
766
|
execute: (values?: ValuesObject) => Promise<OperationStatus<TReturn> | undefined>;
|
|
767
767
|
abort: () => void;
|
|
768
768
|
};
|
|
769
|
-
export function useExecuteServerAction<T extends EntityDefinition, TReturn extends ValuesObject>(entity: Entity<T>, actionName: string): useExecuteServerActionReturnType<TReturn>;
|
|
769
|
+
export function useExecuteServerAction<T extends EntityDefinition, TReturn extends ValuesObject>(entity: Entity<T>, actionName: string, doNotExecuteIfEntityValuesUnchanged?: boolean): useExecuteServerActionReturnType<TReturn>;
|
|
770
770
|
export const NotifySuccessDefaultProps: Partial<NotificationProps>;
|
|
771
771
|
export function NotifySuccess(props: NotificationProps): JSX.Element;
|
|
772
772
|
export function NotifyError(props: NotificationProps): JSX.Element;
|
|
@@ -842,6 +842,7 @@ export function CopyToClipboard(props: CopyToClipboardProps): JSX.Element;
|
|
|
842
842
|
export interface CodeBlockProps extends Omit<PrismProps, 'children'> {
|
|
843
843
|
codeText: string;
|
|
844
844
|
}
|
|
845
|
+
export const CodeBlockDefaultProps: Partial<CodeBlockProps>;
|
|
845
846
|
export function CodeBlock(props: CodeBlockProps): JSX.Element;
|
|
846
847
|
export interface DateInputFieldProps extends Omit<DateInputProps, 'autoFocus'> {
|
|
847
848
|
column: EntityColumn<Value>;
|
|
@@ -1524,6 +1525,74 @@ export const EmailServiceConfigurationTitle = "Email Service Configuration";
|
|
|
1524
1525
|
export class EmailServiceConfiguration extends Entity<EmailServiceConfigurationDef> {
|
|
1525
1526
|
constructor(client: MicroMClient, parentKeys?: {});
|
|
1526
1527
|
}
|
|
1528
|
+
export class MicromDeveloperToolsCodeGenDef extends EntityDefinition {
|
|
1529
|
+
columns: {
|
|
1530
|
+
dt_inserttime: EntityColumn<Date>;
|
|
1531
|
+
dt_lu: EntityColumn<Date>;
|
|
1532
|
+
vc_webinsuser: EntityColumn<string>;
|
|
1533
|
+
vc_webluuser: EntityColumn<string>;
|
|
1534
|
+
vc_insuser: EntityColumn<string>;
|
|
1535
|
+
vc_luuser: EntityColumn<string>;
|
|
1536
|
+
vc_classname: EntityColumn<string>;
|
|
1537
|
+
vc_table: EntityColumn<string>;
|
|
1538
|
+
vc_indexes: EntityColumn<string>;
|
|
1539
|
+
vc_sp_get: EntityColumn<string>;
|
|
1540
|
+
vc_sp_update: EntityColumn<string>;
|
|
1541
|
+
vc_sp_iupdate: EntityColumn<string>;
|
|
1542
|
+
vc_sp_updatei: EntityColumn<string>;
|
|
1543
|
+
vc_sp_drop: EntityColumn<string>;
|
|
1544
|
+
vc_sp_idrop: EntityColumn<string>;
|
|
1545
|
+
vc_sp_dropi: EntityColumn<string>;
|
|
1546
|
+
vc_sp_lookup: EntityColumn<string>;
|
|
1547
|
+
vc_sp_brwStandard: EntityColumn<string>;
|
|
1548
|
+
vc_custom_procs: EntityColumn<string>;
|
|
1549
|
+
vc_react_definition: EntityColumn<string>;
|
|
1550
|
+
vc_react_entity: EntityColumn<string>;
|
|
1551
|
+
vc_react_categories: EntityColumn<string>;
|
|
1552
|
+
vc_react_form: EntityColumn<string>;
|
|
1553
|
+
};
|
|
1554
|
+
constructor();
|
|
1555
|
+
}
|
|
1556
|
+
export const MicromDeveloperToolsCodeGenFormDefaultProps: Partial<FormOptions<MicromDeveloperToolsCodeGen>>;
|
|
1557
|
+
export function MicromDeveloperToolsCodeGenForm(props: FormOptions<MicromDeveloperToolsCodeGen>): JSX.Element;
|
|
1558
|
+
export class MicromDeveloperToolsCodeGen extends Entity<MicromDeveloperToolsCodeGenDef> {
|
|
1559
|
+
constructor(client: MicroMClient, parentKeys?: {});
|
|
1560
|
+
}
|
|
1561
|
+
export class MicromEntitiesTypes extends Entity<MicromEntitiesTypesDef> {
|
|
1562
|
+
constructor(client: MicroMClient, parentKeys?: {});
|
|
1563
|
+
}
|
|
1564
|
+
export interface ACTMicromGetGeneratedCodeProps {
|
|
1565
|
+
CodeGenerationLabel: string;
|
|
1566
|
+
TitleLabel: string;
|
|
1567
|
+
icon: ReactNode;
|
|
1568
|
+
FormTitle: string;
|
|
1569
|
+
}
|
|
1570
|
+
export const ACTMicromGetGeneratedCodeDefaultProps: Partial<ACTMicromGetGeneratedCodeProps>;
|
|
1571
|
+
export const ACTMicromGetGeneratedCode: EntityClientAction;
|
|
1572
|
+
export class MicromEntitiesTypesDef extends EntityDefinition {
|
|
1573
|
+
columns: {
|
|
1574
|
+
dt_inserttime: EntityColumn<Date>;
|
|
1575
|
+
dt_lu: EntityColumn<Date>;
|
|
1576
|
+
vc_webinsuser: EntityColumn<string>;
|
|
1577
|
+
vc_webluuser: EntityColumn<string>;
|
|
1578
|
+
vc_insuser: EntityColumn<string>;
|
|
1579
|
+
vc_luuser: EntityColumn<string>;
|
|
1580
|
+
vc_entity_name: EntityColumn<string>;
|
|
1581
|
+
vc_entity_type: EntityColumn<string>;
|
|
1582
|
+
};
|
|
1583
|
+
views: {
|
|
1584
|
+
mty_brwStandard: {
|
|
1585
|
+
name: string;
|
|
1586
|
+
keyMappings: {
|
|
1587
|
+
vc_entity_name: number;
|
|
1588
|
+
};
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
clientActions: {
|
|
1592
|
+
ACTMicromGetGeneratedCode: _EntityClientAction1;
|
|
1593
|
+
};
|
|
1594
|
+
constructor();
|
|
1595
|
+
}
|
|
1527
1596
|
export interface UseFileUploadReturnType {
|
|
1528
1597
|
uploadFiles: (selectedFiles: File[]) => Promise<void>;
|
|
1529
1598
|
deleteFile: (file_id: string, fileGUID: string) => Promise<DBStatusResult>;
|