@acorex/modules 20.7.12 → 20.7.13
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/data-management/index.d.ts +250 -4
- package/document-management/index.d.ts +4 -2
- package/fesm2022/acorex-modules-data-management.mjs +1 -1
- package/fesm2022/acorex-modules-data-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-document-management.mjs +338 -90
- package/fesm2022/acorex-modules-document-management.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3,12 +3,17 @@ import { Injector, InjectionToken } from '@angular/core';
|
|
|
3
3
|
import * as i1 from '@acorex/platform/layout/widget-core';
|
|
4
4
|
import { AXPWidgetConfig, AXPValueWidgetComponent, AXPWidgetNode, AXPWidgetCoreContextChangeEvent, AXPMetaDataDefinition } from '@acorex/platform/layout/widget-core';
|
|
5
5
|
import { AXPEntity, AXPMenuProvider, AXPMenuProviderContext } from '@acorex/platform/common';
|
|
6
|
-
import { AXPEntityModel, AXMEntityCrudServiceImpl, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityPreloadEntity, AXPEntityActionPlugin } from '@acorex/platform/layout/entity';
|
|
6
|
+
import { AXPEntityModel, AXMEntityCrudServiceImpl, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityPreloadEntity, AXPEntityDefinitionRegistryService, AXPEntityActionPlugin } from '@acorex/platform/layout/entity';
|
|
7
7
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
8
|
-
import { AXPFilterDefinition, AXPDataSourceDefinition, AXPFilterClause, AXPDataSourceDataFieldDefinition, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviderContext, AXPTagProvider, AXPTag } from '@acorex/platform/core';
|
|
8
|
+
import { AXPFilterDefinition, AXPDataSourceDefinition, AXPFilterClause, AXPDataSourceDataFieldDefinition, AXPOptionsData, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviderContext, AXPTagProvider, AXPTag } from '@acorex/platform/core';
|
|
9
9
|
import { AXDataSource, AXDataSourceOperator, AXFilterLogic } from '@acorex/cdk/common';
|
|
10
10
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
11
11
|
import * as _acorex_modules_data_management from '@acorex/modules/data-management';
|
|
12
|
+
import { AXTranslationService } from '@acorex/core/translation';
|
|
13
|
+
import { AXPLayoutBuilderService, AXPDynamicFormDefinition } from '@acorex/platform/layout/builder';
|
|
14
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
15
|
+
import { AXDialogService } from '@acorex/components/dialog';
|
|
16
|
+
import { AXPDataSelectorService, AXPWidgetPropertyViewerService } from '@acorex/platform/layout/components';
|
|
12
17
|
|
|
13
18
|
declare class AXMQueryEntityModule {
|
|
14
19
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXMQueryEntityModule, never>;
|
|
@@ -1757,6 +1762,247 @@ declare const AXP_DEFAULT_DATABASE_TYPE_PROVIDER: {
|
|
|
1757
1762
|
multi: boolean;
|
|
1758
1763
|
};
|
|
1759
1764
|
|
|
1765
|
+
declare const AXPMetaDataSelectorWidget: AXPWidgetConfig<AXPMetaDataSelectorWidgetConfigType>;
|
|
1766
|
+
type AXPMetaDataSelectorWidgetConfigType = {
|
|
1767
|
+
type: 'editor';
|
|
1768
|
+
};
|
|
1769
|
+
|
|
1770
|
+
/**
|
|
1771
|
+
* Represents a single metadata field within a group
|
|
1772
|
+
*/
|
|
1773
|
+
interface AXMMetaDataSelectorField {
|
|
1774
|
+
id: string;
|
|
1775
|
+
name: string;
|
|
1776
|
+
title: string;
|
|
1777
|
+
description?: string;
|
|
1778
|
+
interface: string;
|
|
1779
|
+
configuration?: {
|
|
1780
|
+
isRequired?: boolean;
|
|
1781
|
+
placeholder?: string;
|
|
1782
|
+
[key: string]: any;
|
|
1783
|
+
};
|
|
1784
|
+
status: 'active' | 'deleted' | 'temporary';
|
|
1785
|
+
order: number;
|
|
1786
|
+
isNewlyAdded?: boolean;
|
|
1787
|
+
}
|
|
1788
|
+
/**
|
|
1789
|
+
* Represents a group of metadata fields
|
|
1790
|
+
*/
|
|
1791
|
+
interface AXMMetaDataSelectorGroup {
|
|
1792
|
+
id: string;
|
|
1793
|
+
name: string;
|
|
1794
|
+
title?: string;
|
|
1795
|
+
description?: string;
|
|
1796
|
+
order: number;
|
|
1797
|
+
fields: AXMMetaDataSelectorField[];
|
|
1798
|
+
isNewlyAdded?: boolean;
|
|
1799
|
+
}
|
|
1800
|
+
/**
|
|
1801
|
+
* Overall state for the meta-data selector widget
|
|
1802
|
+
*/
|
|
1803
|
+
interface AXMMetaDataSelectorState {
|
|
1804
|
+
groups: AXMMetaDataSelectorGroup[];
|
|
1805
|
+
mode: 'designer' | 'preview';
|
|
1806
|
+
selectedFieldId?: string;
|
|
1807
|
+
selectedGroupId?: string;
|
|
1808
|
+
}
|
|
1809
|
+
/**
|
|
1810
|
+
* Value structure stored in entity (simplified for persistence)
|
|
1811
|
+
*/
|
|
1812
|
+
interface AXMMetaDataSelectorValue {
|
|
1813
|
+
groups: Array<{
|
|
1814
|
+
name: string;
|
|
1815
|
+
title?: string;
|
|
1816
|
+
description?: string;
|
|
1817
|
+
order: number;
|
|
1818
|
+
fields: Array<{
|
|
1819
|
+
id: string;
|
|
1820
|
+
name: string;
|
|
1821
|
+
title: string;
|
|
1822
|
+
description?: string;
|
|
1823
|
+
interface: string;
|
|
1824
|
+
configuration?: AXPOptionsData;
|
|
1825
|
+
order: number;
|
|
1826
|
+
}>;
|
|
1827
|
+
}>;
|
|
1828
|
+
}
|
|
1829
|
+
/**
|
|
1830
|
+
* Convert raw value to designer state
|
|
1831
|
+
*/
|
|
1832
|
+
declare function convertValueToState(value: any): AXMMetaDataSelectorState;
|
|
1833
|
+
/**
|
|
1834
|
+
* Convert designer state to value for persistence
|
|
1835
|
+
*/
|
|
1836
|
+
declare function convertStateToValue(state: AXMMetaDataSelectorState): AXMMetaDataSelectorValue;
|
|
1837
|
+
/**
|
|
1838
|
+
* Create a default group
|
|
1839
|
+
*/
|
|
1840
|
+
declare function createDefaultGroup(): AXMMetaDataSelectorGroup;
|
|
1841
|
+
|
|
1842
|
+
declare class AXPMetaDataSelectorWidgetEditComponent extends AXPValueWidgetComponent<AXMMetaDataSelectorValue> {
|
|
1843
|
+
#private;
|
|
1844
|
+
protected dataSelectorService: AXPDataSelectorService;
|
|
1845
|
+
protected metaDataService: AXMMetaDataDefinitionService<any>;
|
|
1846
|
+
protected entityResolver: AXPEntityDefinitionRegistryService;
|
|
1847
|
+
protected dialogService: AXDialogService;
|
|
1848
|
+
protected translationService: AXTranslationService;
|
|
1849
|
+
protected layoutBuilder: AXPLayoutBuilderService;
|
|
1850
|
+
protected widgetPropertyViewerService: AXPWidgetPropertyViewerService;
|
|
1851
|
+
private readonly DEFAULT_GROUP_NAME;
|
|
1852
|
+
protected designerState: _angular_core.WritableSignal<AXMMetaDataSelectorState>;
|
|
1853
|
+
/**
|
|
1854
|
+
* Check if the widget is in readonly mode
|
|
1855
|
+
*/
|
|
1856
|
+
protected readonly: _angular_core.Signal<boolean>;
|
|
1857
|
+
/**
|
|
1858
|
+
* Check if a group is the default group
|
|
1859
|
+
*/
|
|
1860
|
+
protected isDefaultGroup: (groupName: string) => boolean;
|
|
1861
|
+
/**
|
|
1862
|
+
* Check if we can delete a group (more than 1 group exists)
|
|
1863
|
+
*/
|
|
1864
|
+
protected canDeleteGroup: _angular_core.Signal<boolean>;
|
|
1865
|
+
/**
|
|
1866
|
+
* Disable preview when no groups or all groups are empty
|
|
1867
|
+
*/
|
|
1868
|
+
protected isPreviewDisabled: _angular_core.Signal<boolean>;
|
|
1869
|
+
/**
|
|
1870
|
+
* Get all groups for rendering
|
|
1871
|
+
*/
|
|
1872
|
+
protected groups: _angular_core.Signal<AXMMetaDataSelectorGroup[]>;
|
|
1873
|
+
/**
|
|
1874
|
+
* Get groups data formatted for meta-data-form component (only active fields)
|
|
1875
|
+
*/
|
|
1876
|
+
protected previewGroups: _angular_core.Signal<{
|
|
1877
|
+
name: string;
|
|
1878
|
+
title: string | undefined;
|
|
1879
|
+
description: string | undefined;
|
|
1880
|
+
fields: {
|
|
1881
|
+
name: string;
|
|
1882
|
+
title: string;
|
|
1883
|
+
description: string | undefined;
|
|
1884
|
+
interface: string;
|
|
1885
|
+
configuration: {
|
|
1886
|
+
[key: string]: any;
|
|
1887
|
+
isRequired?: boolean;
|
|
1888
|
+
placeholder?: string;
|
|
1889
|
+
} | undefined;
|
|
1890
|
+
defaultValue: any;
|
|
1891
|
+
}[];
|
|
1892
|
+
}[]>;
|
|
1893
|
+
/**
|
|
1894
|
+
* Convert preview groups to form definition for layout renderer
|
|
1895
|
+
*/
|
|
1896
|
+
protected previewFormDefinition: _angular_core.Signal<AXPDynamicFormDefinition>;
|
|
1897
|
+
/**
|
|
1898
|
+
* Convert a field to form field definition
|
|
1899
|
+
*/
|
|
1900
|
+
private convertFieldToFormDefinition;
|
|
1901
|
+
/**
|
|
1902
|
+
* Parse interface configuration from metadata
|
|
1903
|
+
*/
|
|
1904
|
+
private parseInterfaceConfig;
|
|
1905
|
+
/**
|
|
1906
|
+
* Parse validations from interface configuration
|
|
1907
|
+
*/
|
|
1908
|
+
private parseValidations;
|
|
1909
|
+
/**
|
|
1910
|
+
* Sanitize group name for use as identifier
|
|
1911
|
+
*/
|
|
1912
|
+
private sanitizeGroupName;
|
|
1913
|
+
/**
|
|
1914
|
+
* Handle adding a new group
|
|
1915
|
+
*/
|
|
1916
|
+
handleAddGroupClick(): Promise<void>;
|
|
1917
|
+
/**
|
|
1918
|
+
* Handle editing a group
|
|
1919
|
+
*/
|
|
1920
|
+
handleGroupEdit(group: AXMMetaDataSelectorGroup): Promise<void>;
|
|
1921
|
+
/**
|
|
1922
|
+
* Handle removing a group
|
|
1923
|
+
* Ensures at least 1 group always exists
|
|
1924
|
+
*/
|
|
1925
|
+
handleGroupRemove(group: AXMMetaDataSelectorGroup): Promise<void>;
|
|
1926
|
+
/**
|
|
1927
|
+
* Handle group drag and drop
|
|
1928
|
+
*/
|
|
1929
|
+
handleGroupDrop(event: CdkDragDrop<AXMMetaDataSelectorGroup[]>): void;
|
|
1930
|
+
/**
|
|
1931
|
+
* Handle adding fields to a group
|
|
1932
|
+
*/
|
|
1933
|
+
handleAddFieldToGroup(group: AXMMetaDataSelectorGroup): Promise<void>;
|
|
1934
|
+
/**
|
|
1935
|
+
* Handle field editing - allows overriding the field's interface property
|
|
1936
|
+
*/
|
|
1937
|
+
handleFieldEdit(field: AXMMetaDataSelectorField): Promise<void>;
|
|
1938
|
+
/**
|
|
1939
|
+
* Handle field removal
|
|
1940
|
+
*/
|
|
1941
|
+
handleFieldRemove(field: AXMMetaDataSelectorField, groupId: string): void;
|
|
1942
|
+
/**
|
|
1943
|
+
* Handle field revert (undo deletion)
|
|
1944
|
+
*/
|
|
1945
|
+
handleFieldRevert(field: AXMMetaDataSelectorField, groupId: string): void;
|
|
1946
|
+
/**
|
|
1947
|
+
* Handle field drag and drop (within and between groups)
|
|
1948
|
+
*/
|
|
1949
|
+
handleFieldDrop(event: CdkDragDrop<AXMMetaDataSelectorField[]>, targetGroupName: string): void;
|
|
1950
|
+
/**
|
|
1951
|
+
* Get all group drop list IDs for connected drag & drop
|
|
1952
|
+
*/
|
|
1953
|
+
getAllGroupDropLists(): string[];
|
|
1954
|
+
/**
|
|
1955
|
+
* Handle preview button click - opens preview in a dialog using layout builder
|
|
1956
|
+
*/
|
|
1957
|
+
handlePreviewClick(): Promise<void>;
|
|
1958
|
+
/**
|
|
1959
|
+
* Sync internal state to external value
|
|
1960
|
+
* Ensures at least 1 group always exists
|
|
1961
|
+
*/
|
|
1962
|
+
private syncStateToValue;
|
|
1963
|
+
/**
|
|
1964
|
+
* Parse interface field to extract widget type
|
|
1965
|
+
*/
|
|
1966
|
+
protected parseInterfaceType(interfaceValue: string): string;
|
|
1967
|
+
/**
|
|
1968
|
+
* Get widget icon for a field
|
|
1969
|
+
*/
|
|
1970
|
+
protected getWidgetIcon(interfaceValue: string): string;
|
|
1971
|
+
/**
|
|
1972
|
+
* Get widget title for a field
|
|
1973
|
+
*/
|
|
1974
|
+
protected getWidgetTitle(interfaceValue: string): string;
|
|
1975
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPMetaDataSelectorWidgetEditComponent, never>;
|
|
1976
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPMetaDataSelectorWidgetEditComponent, "axp-meta-data-selector-widget-edit", never, {}, {}, never, never, true, never>;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
declare class AXPMetaDataSelectorWidgetViewComponent extends AXPValueWidgetComponent<any> {
|
|
1980
|
+
/**
|
|
1981
|
+
* Returns a comma-separated list of selected meta titles.
|
|
1982
|
+
* Extracting this logic into a getter keeps the template simple and
|
|
1983
|
+
* avoids using arrow functions, which are not allowed in Angular
|
|
1984
|
+
* interpolation expressions.
|
|
1985
|
+
*/
|
|
1986
|
+
get display(): string;
|
|
1987
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPMetaDataSelectorWidgetViewComponent, never>;
|
|
1988
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPMetaDataSelectorWidgetViewComponent, "axp-meta-data-selector-widget-view", never, {}, {}, never, never, true, never>;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
type MetaDataSelectorPluginOptions = {
|
|
1992
|
+
title?: string;
|
|
1993
|
+
renderGroupsAsSections?: boolean;
|
|
1994
|
+
};
|
|
1995
|
+
/**
|
|
1996
|
+
* meta-data-selector plugin
|
|
1997
|
+
*
|
|
1998
|
+
* Dynamic behavior:
|
|
1999
|
+
* - Creates a single property for metadata selector configuration
|
|
2000
|
+
* - Dynamically generates entity groups and meta-data-form widgets based on configured groups
|
|
2001
|
+
* - Each metadata group becomes a separate entity section with its own meta-data-form widget
|
|
2002
|
+
* - Reads group configuration at runtime from the field value
|
|
2003
|
+
*/
|
|
2004
|
+
declare const metaDataSelectorPlugin: AXPEntityActionPlugin;
|
|
2005
|
+
|
|
1760
2006
|
/**
|
|
1761
2007
|
* Metadata Evaluator Scope Provider
|
|
1762
2008
|
*
|
|
@@ -1825,5 +2071,5 @@ declare const AXMPermissionsKeys: {
|
|
|
1825
2071
|
};
|
|
1826
2072
|
};
|
|
1827
2073
|
|
|
1828
|
-
export { AXMColumnFilterSelectorWidget, AXMColumnFilterSelectorWidgetColumnComponent, AXMColumnFilterSelectorWidgetEditComponent, AXMColumnFilterSelectorWidgetFilterComponent, AXMColumnFilterSelectorWidgetPrintComponent, AXMColumnFilterSelectorWidgetViewComponent, AXMDataManagementFeatureKeys, AXMDataManagementModule, AXMDataSourceEntityModule, AXMDataSourceOutputType, AXMDataSourceService, AXMDataSourceServiceImpl, AXMDataSourceType, AXMDefaultAggregateFunctionProvider, AXMDefaultDatabaseTypeProvider, AXMEntityProvider, AXMMenuProvider, AXMMetaDataDefinitionEntityModule, AXMMetaDataDefinitionService, AXMMetaDataFeatureModule, AXMMetadataEvaluatorScopeProvider, AXMPMetaDataDefinitionServiceImpl, AXMPermissionsKeys, AXMQueryEntityModule, AXMQueryService, AXMQueryServiceImpl, AXMTagEntityModule, AXMTagEntityService, AXMTagsFeatureModule, AXM_COLUMN_DEF_WIDGET, AXM_FILTER_DEF_WIDGET, AXPAggregateBuilderComponent, AXPAggregateFunctionService, AXPAggregateFunctionsRegistry, AXPColumnsBuilderComponent, AXPDataManagementMenuKeys, AXPDatabaseTypeService, AXPGroupByBuilderComponent, AXPQueryBuilderComponent, AXPQueryBuilderWidget, AXPQueryBuilderWidgetColumnComponent, AXPQueryBuilderWidgetDesignerComponent, AXPQueryBuilderWidgetEditComponent, AXPQueryBuilderWidgetViewComponent, AXPRawQueryBuilderComponent, AXPSortBuilderComponent, AXPSystemTagProvider, AXPWhereBuilderComponent, AXP_AGGREGATE_FUNCTION_PROVIDER, AXP_DATABASE_TYPE_PROVIDER, AXP_DEFAULT_AGGREGATE_FUNCTION_PROVIDER, AXP_DEFAULT_DATABASE_TYPE_PROVIDER, META_DATA_FORM_FIELD, META_DATA_SELECTOR_FIELD, RootConfig, dataSourceEntityFactory, factory, metaDataDefinitionFactory, queryFactory, tagsPlugin };
|
|
1829
|
-
export type { AXMColumnFilterSelectorWidgetConfigType, AXMDataManagementQueryEntityModel, AXMDataSourceEntityModel, AXMDataSourceFilter, AXMDataSourceOutputTypeOption, AXMDataSourceTypeOption, AXMMetaDataDefinitionEntityModel, AXMQueryEntityModel, AXMTag, AXPAggregateCategory, AXPAggregateFunctionDefinition, AXPAggregateFunctionProvider, AXPAggregateFunctionProviderToken, AXPAggregateOperation, AXPDatabaseType, AXPDatabaseTypeDefinition, AXPDatabaseTypeProvider, AXPDatabaseTypeProviderToken, AXPQueryBuilderData, AXPQueryBuilderWidgetConfigType, AXPQueryExecutionResult, AXPQueryOutputType, AXPQuerySortRule, AXPTagPluginOptions, ColumnFilterValue };
|
|
2074
|
+
export { AXMColumnFilterSelectorWidget, AXMColumnFilterSelectorWidgetColumnComponent, AXMColumnFilterSelectorWidgetEditComponent, AXMColumnFilterSelectorWidgetFilterComponent, AXMColumnFilterSelectorWidgetPrintComponent, AXMColumnFilterSelectorWidgetViewComponent, AXMDataManagementFeatureKeys, AXMDataManagementModule, AXMDataSourceEntityModule, AXMDataSourceOutputType, AXMDataSourceService, AXMDataSourceServiceImpl, AXMDataSourceType, AXMDefaultAggregateFunctionProvider, AXMDefaultDatabaseTypeProvider, AXMEntityProvider, AXMMenuProvider, AXMMetaDataDefinitionEntityModule, AXMMetaDataDefinitionService, AXMMetaDataFeatureModule, AXMMetadataEvaluatorScopeProvider, AXMPMetaDataDefinitionServiceImpl, AXMPermissionsKeys, AXMQueryEntityModule, AXMQueryService, AXMQueryServiceImpl, AXMTagEntityModule, AXMTagEntityService, AXMTagsFeatureModule, AXM_COLUMN_DEF_WIDGET, AXM_FILTER_DEF_WIDGET, AXPAggregateBuilderComponent, AXPAggregateFunctionService, AXPAggregateFunctionsRegistry, AXPColumnsBuilderComponent, AXPDataManagementMenuKeys, AXPDatabaseTypeService, AXPGroupByBuilderComponent, AXPMetaDataSelectorWidget, AXPMetaDataSelectorWidgetEditComponent, AXPMetaDataSelectorWidgetViewComponent, AXPQueryBuilderComponent, AXPQueryBuilderWidget, AXPQueryBuilderWidgetColumnComponent, AXPQueryBuilderWidgetDesignerComponent, AXPQueryBuilderWidgetEditComponent, AXPQueryBuilderWidgetViewComponent, AXPRawQueryBuilderComponent, AXPSortBuilderComponent, AXPSystemTagProvider, AXPWhereBuilderComponent, AXP_AGGREGATE_FUNCTION_PROVIDER, AXP_DATABASE_TYPE_PROVIDER, AXP_DEFAULT_AGGREGATE_FUNCTION_PROVIDER, AXP_DEFAULT_DATABASE_TYPE_PROVIDER, META_DATA_FORM_FIELD, META_DATA_SELECTOR_FIELD, RootConfig, convertStateToValue, convertValueToState, createDefaultGroup, dataSourceEntityFactory, factory, metaDataDefinitionFactory, metaDataSelectorPlugin, queryFactory, tagsPlugin };
|
|
2075
|
+
export type { AXMColumnFilterSelectorWidgetConfigType, AXMDataManagementQueryEntityModel, AXMDataSourceEntityModel, AXMDataSourceFilter, AXMDataSourceOutputTypeOption, AXMDataSourceTypeOption, AXMMetaDataDefinitionEntityModel, AXMMetaDataSelectorField, AXMMetaDataSelectorGroup, AXMMetaDataSelectorState, AXMMetaDataSelectorValue, AXMQueryEntityModel, AXMTag, AXPAggregateCategory, AXPAggregateFunctionDefinition, AXPAggregateFunctionProvider, AXPAggregateFunctionProviderToken, AXPAggregateOperation, AXPDatabaseType, AXPDatabaseTypeDefinition, AXPDatabaseTypeProvider, AXPDatabaseTypeProviderToken, AXPMetaDataSelectorWidgetConfigType, AXPQueryBuilderData, AXPQueryBuilderWidgetConfigType, AXPQueryExecutionResult, AXPQueryOutputType, AXPQuerySortRule, AXPTagPluginOptions, ColumnFilterValue, MetaDataSelectorPluginOptions };
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { Injector, Type, OnInit } from '@angular/core';
|
|
3
3
|
import * as i9 from '@acorex/platform/layout/widget-core';
|
|
4
|
-
import {
|
|
4
|
+
import { AXPValueWidgetComponent, AXPWidgetCoreContextChangeEvent, AXPWidgetNode, AXPWidgetConfig } from '@acorex/platform/layout/widget-core';
|
|
5
5
|
import * as i10 from '@acorex/components/media-viewer';
|
|
6
6
|
import * as i11 from '@acorex/platform/workflow';
|
|
7
7
|
import { AXPWorkflowService } from '@acorex/platform/workflow';
|
|
8
8
|
import * as _acorex_platform_common from '@acorex/platform/common';
|
|
9
9
|
import { AXPEntity, AXPFileStorageService, AXPFilterOperatorMiddlewareService, AXPFileType, AXPFileTypeInfoProvider, AXPFileTypeProviderService, AXPMenuProvider, AXPMenuProviderContext, AXPSearchCommandProvider, AXPSearchResult, AXPSettingDefinitionProvider, AXPSettingDefinitionProviderContext } from '@acorex/platform/common';
|
|
10
10
|
import { AXPEntityModel, AXMEntityCrudServiceImpl, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityPreloadEntity } from '@acorex/platform/layout/entity';
|
|
11
|
+
import { AXMMetaDataSelectorValue } from '@acorex/modules/data-management';
|
|
11
12
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
12
13
|
import { AXPFileListItem, AXPMetaData, AXPApplicationUserReference, AXPPlatformScope, AXPQueryRequest, AXPHookService, AXPActionMenuItem, AXPDeviceService, AXPBackButton, AXPBreadcrumbItem, AXPExecuteCommand } from '@acorex/platform/core';
|
|
13
14
|
import * as _acorex_platform_themes_shared from '@acorex/platform/themes/shared';
|
|
@@ -165,7 +166,8 @@ interface AXMDocumentManagementDocumentTypeEntityModel extends AXPEntityModel<st
|
|
|
165
166
|
enableExpiration: boolean;
|
|
166
167
|
requiresReview: boolean;
|
|
167
168
|
reviewFirst?: boolean;
|
|
168
|
-
|
|
169
|
+
/** Metadata field definitions (meta-data-selector value; used by meta-data-form-editor). */
|
|
170
|
+
metaDataList?: AXMMetaDataSelectorValue;
|
|
169
171
|
type: DocumentTypeFileOutput;
|
|
170
172
|
}
|
|
171
173
|
|
|
@@ -10191,5 +10191,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
10191
10191
|
* Generated bundle index. Do not edit.
|
|
10192
10192
|
*/
|
|
10193
10193
|
|
|
10194
|
-
export { AXMColumnFilterSelectorWidget, AXMColumnFilterSelectorWidgetColumnComponent, AXMColumnFilterSelectorWidgetEditComponent, AXMColumnFilterSelectorWidgetFilterComponent, AXMColumnFilterSelectorWidgetPrintComponent, AXMColumnFilterSelectorWidgetViewComponent, AXMDataManagementFeatureKeys, AXMDataManagementModule, AXMDataSourceEntityModule, AXMDataSourceOutputType, AXMDataSourceService, AXMDataSourceServiceImpl, AXMDataSourceType, AXMDefaultAggregateFunctionProvider, AXMDefaultDatabaseTypeProvider, AXMEntityProvider, AXMMenuProvider, AXMMetaDataDefinitionEntityModule, AXMMetaDataDefinitionService, AXMMetaDataFeatureModule, AXMMetadataEvaluatorScopeProvider, AXMPMetaDataDefinitionServiceImpl, AXMPermissionsKeys, AXMQueryEntityModule, AXMQueryService, AXMQueryServiceImpl, AXMTagEntityModule, AXMTagEntityService, AXMTagsFeatureModule, AXM_COLUMN_DEF_WIDGET, AXM_FILTER_DEF_WIDGET, AXPAggregateBuilderComponent, AXPAggregateFunctionService, AXPAggregateFunctionsRegistry, AXPColumnsBuilderComponent, AXPDataManagementMenuKeys, AXPDatabaseTypeService, AXPGroupByBuilderComponent, AXPQueryBuilderComponent, AXPQueryBuilderWidget, AXPQueryBuilderWidgetColumnComponent, AXPQueryBuilderWidgetDesignerComponent, AXPQueryBuilderWidgetEditComponent, AXPQueryBuilderWidgetViewComponent, AXPRawQueryBuilderComponent, AXPSortBuilderComponent, AXPSystemTagProvider, AXPWhereBuilderComponent, AXP_AGGREGATE_FUNCTION_PROVIDER, AXP_DATABASE_TYPE_PROVIDER, AXP_DEFAULT_AGGREGATE_FUNCTION_PROVIDER, AXP_DEFAULT_DATABASE_TYPE_PROVIDER, META_DATA_FORM_FIELD, META_DATA_SELECTOR_FIELD, RootConfig, dataSourceEntityFactory, factory, metaDataDefinitionFactory, queryFactory, tagsPlugin };
|
|
10194
|
+
export { AXMColumnFilterSelectorWidget, AXMColumnFilterSelectorWidgetColumnComponent, AXMColumnFilterSelectorWidgetEditComponent, AXMColumnFilterSelectorWidgetFilterComponent, AXMColumnFilterSelectorWidgetPrintComponent, AXMColumnFilterSelectorWidgetViewComponent, AXMDataManagementFeatureKeys, AXMDataManagementModule, AXMDataSourceEntityModule, AXMDataSourceOutputType, AXMDataSourceService, AXMDataSourceServiceImpl, AXMDataSourceType, AXMDefaultAggregateFunctionProvider, AXMDefaultDatabaseTypeProvider, AXMEntityProvider, AXMMenuProvider, AXMMetaDataDefinitionEntityModule, AXMMetaDataDefinitionService, AXMMetaDataFeatureModule, AXMMetadataEvaluatorScopeProvider, AXMPMetaDataDefinitionServiceImpl, AXMPermissionsKeys, AXMQueryEntityModule, AXMQueryService, AXMQueryServiceImpl, AXMTagEntityModule, AXMTagEntityService, AXMTagsFeatureModule, AXM_COLUMN_DEF_WIDGET, AXM_FILTER_DEF_WIDGET, AXPAggregateBuilderComponent, AXPAggregateFunctionService, AXPAggregateFunctionsRegistry, AXPColumnsBuilderComponent, AXPDataManagementMenuKeys, AXPDatabaseTypeService, AXPGroupByBuilderComponent, AXPMetaDataSelectorWidget, AXPMetaDataSelectorWidgetEditComponent, AXPMetaDataSelectorWidgetViewComponent, AXPQueryBuilderComponent, AXPQueryBuilderWidget, AXPQueryBuilderWidgetColumnComponent, AXPQueryBuilderWidgetDesignerComponent, AXPQueryBuilderWidgetEditComponent, AXPQueryBuilderWidgetViewComponent, AXPRawQueryBuilderComponent, AXPSortBuilderComponent, AXPSystemTagProvider, AXPWhereBuilderComponent, AXP_AGGREGATE_FUNCTION_PROVIDER, AXP_DATABASE_TYPE_PROVIDER, AXP_DEFAULT_AGGREGATE_FUNCTION_PROVIDER, AXP_DEFAULT_DATABASE_TYPE_PROVIDER, META_DATA_FORM_FIELD, META_DATA_SELECTOR_FIELD, RootConfig, convertStateToValue, convertValueToState, createDefaultGroup, dataSourceEntityFactory, factory, metaDataDefinitionFactory, metaDataSelectorPlugin, queryFactory, tagsPlugin };
|
|
10195
10195
|
//# sourceMappingURL=acorex-modules-data-management.mjs.map
|