@dpuse/dpuse-shared 0.3.627 → 0.3.630
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/dpuse-shared-componentModuleContextModel.es.js +0 -0
- package/dist/dpuse-shared-componentModuleContextModelDimension.es.js +0 -0
- package/dist/dpuse-shared-componentModuleContextModelEntity.es.js +0 -0
- package/dist/dpuse-shared-componentModuleContextModelEntityDataItem.es.js +0 -0
- package/dist/dpuse-shared-componentModuleContextModelEntityEvent.es.js +0 -0
- package/dist/dpuse-shared-componentModuleContextModelEntityPrimaryMeasure.es.js +0 -0
- package/dist/dpuse-shared-componentModuleContextModelSecondaryMeasure.es.js +0 -0
- package/dist/types/src/component/connection/index.d.ts +2 -5
- package/dist/types/src/component/dataView/index.d.ts +2 -4
- package/dist/types/src/component/dimension/index.d.ts +2 -4
- package/dist/types/src/component/eventQuery/index.d.ts +2 -4
- package/dist/types/src/component/index.d.ts +2 -5
- package/dist/types/src/component/module/connector/index.d.ts +2 -4
- package/dist/types/src/component/module/context/index.d.ts +3 -111
- package/dist/types/src/component/module/context/model/dimension/index.d.ts +12 -0
- package/dist/types/src/component/module/context/model/entity/dataItem/index.d.ts +6 -0
- package/dist/types/src/component/module/context/model/entity/event/index.d.ts +7 -0
- package/dist/types/src/component/module/context/model/entity/index.d.ts +13 -0
- package/dist/types/src/component/module/context/model/entity/primaryMeasure/index.d.ts +6 -0
- package/dist/types/src/component/module/context/model/index.d.ts +30 -0
- package/dist/types/src/component/module/context/model/secondaryMeasure/index.d.ts +6 -0
- package/dist/types/src/component/module/presenter/index.d.ts +2 -4
- package/dist/types/src/locale/index.d.ts +4 -0
- package/package.json +29 -1
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentConfig } from '..';
|
|
2
2
|
import { ConnectorConfig } from '../module/connector';
|
|
3
|
-
import { LocaleLabel } from '../../locale';
|
|
3
|
+
import { Localised, LocaleLabel } from '../../locale';
|
|
4
4
|
import { DataSubtypeId, DataTypeId } from '../dataView';
|
|
5
5
|
export interface ConnectionConfig extends ComponentConfig {
|
|
6
6
|
authorisation: Record<string, ConnectionAuthorisationConfig>;
|
|
@@ -8,10 +8,7 @@ export interface ConnectionConfig extends ComponentConfig {
|
|
|
8
8
|
lastVerifiedAt: number;
|
|
9
9
|
notation: string | undefined;
|
|
10
10
|
}
|
|
11
|
-
export type ConnectionLocalisedConfig =
|
|
12
|
-
label: string;
|
|
13
|
-
description: string;
|
|
14
|
-
};
|
|
11
|
+
export type ConnectionLocalisedConfig = Localised<ConnectionConfig>;
|
|
15
12
|
export interface ConnectionAuthorisationConfig {
|
|
16
13
|
accessToken: string;
|
|
17
14
|
accountId: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FileTypeResult } from 'file-type';
|
|
2
2
|
import { Component, ComponentConfig } from '..';
|
|
3
3
|
import { ConnectionNodeConfig, ObjectColumnConfig } from '../connection';
|
|
4
|
+
import { Localised } from '../../locale';
|
|
4
5
|
type DataViewInterface = Component;
|
|
5
6
|
interface DataViewConfig extends ComponentConfig {
|
|
6
7
|
connectionId: string | undefined;
|
|
@@ -9,10 +10,7 @@ interface DataViewConfig extends ComponentConfig {
|
|
|
9
10
|
contentAuditConfig: ContentAuditConfig | undefined;
|
|
10
11
|
relationshipsAuditConfig: RelationshipsAuditConfig | undefined;
|
|
11
12
|
}
|
|
12
|
-
type DataViewLocalisedConfig =
|
|
13
|
-
label: string;
|
|
14
|
-
description: string;
|
|
15
|
-
};
|
|
13
|
+
type DataViewLocalisedConfig = Localised<DataViewConfig>;
|
|
16
14
|
interface PreviewConfig {
|
|
17
15
|
asAt: number;
|
|
18
16
|
commentMarkId?: string | undefined;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ComponentConfig } from '..';
|
|
2
|
+
import { Localised } from '../../locale';
|
|
2
3
|
export interface DimensionConfig extends ComponentConfig {
|
|
3
4
|
placeholder?: string;
|
|
4
5
|
}
|
|
5
|
-
export type DimensionLocalisedConfig =
|
|
6
|
-
label: string;
|
|
7
|
-
description: string;
|
|
8
|
-
};
|
|
6
|
+
export type DimensionLocalisedConfig = Localised<DimensionConfig>;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ComponentConfig } from '..';
|
|
2
|
+
import { Localised } from '../../locale';
|
|
2
3
|
export interface EventQueryConfig extends ComponentConfig {
|
|
3
4
|
placeholder?: string;
|
|
4
5
|
}
|
|
5
|
-
export type EventQueryLocalisedConfig =
|
|
6
|
-
label: string;
|
|
7
|
-
description: string;
|
|
8
|
-
};
|
|
6
|
+
export type EventQueryLocalisedConfig = Localised<EventQueryConfig>;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
import { InferOutput } from 'valibot';
|
|
2
2
|
import { componentConfigSchema, componentReferenceSchema, componentStatusColorIdSchema, componentStatusConfigSchema } from './componentConfig.schema';
|
|
3
|
-
import { LocaleId } from '../locale';
|
|
3
|
+
import { LocaleId, Localised } from '../locale';
|
|
4
4
|
export { componentConfigSchema } from './componentConfig.schema';
|
|
5
5
|
export interface Component {
|
|
6
6
|
readonly config: ComponentConfig;
|
|
7
7
|
}
|
|
8
8
|
export type ComponentConfig = InferOutput<typeof componentConfigSchema>;
|
|
9
|
-
export type ComponentLocalisedConfig =
|
|
10
|
-
label: string;
|
|
11
|
-
description: string;
|
|
12
|
-
};
|
|
9
|
+
export type ComponentLocalisedConfig = Localised<ComponentConfig>;
|
|
13
10
|
export type ComponentReference = InferOutput<typeof componentReferenceSchema>;
|
|
14
11
|
export type ComponentStatus = InferOutput<typeof componentStatusConfigSchema>;
|
|
15
12
|
export type ComponentStatusColorId = InferOutput<typeof componentStatusColorIdSchema>;
|
|
@@ -4,6 +4,7 @@ import { ToolConfig } from '../tool';
|
|
|
4
4
|
import { ConnectionDescriptionConfig, ConnectionNodeConfig } from '../../connection';
|
|
5
5
|
import { connectorCategoryConfigSchema, connectorConfigSchema, connectorOperationNameSchema, connectorUsageIdSchema } from './connectorConfig.schema';
|
|
6
6
|
import { ContentAuditConfig, ParsingRecord, PreviewConfig, ValueDelimiterId } from '../../dataView';
|
|
7
|
+
import { Localised } from '../../../locale';
|
|
7
8
|
import { EngineConnectorActionOptions, EngineUtilities } from '../../../engine';
|
|
8
9
|
export { connectorConfigSchema } from './connectorConfig.schema';
|
|
9
10
|
export interface ConnectorInterface extends Component {
|
|
@@ -27,10 +28,7 @@ export interface ConnectorInterface extends Component {
|
|
|
27
28
|
}
|
|
28
29
|
export type ConnectorConstructor = new (engineUtilities: EngineUtilities, toolConfigs: ToolConfig[]) => ConnectorInterface;
|
|
29
30
|
export type ConnectorConfig = InferOutput<typeof connectorConfigSchema>;
|
|
30
|
-
export type ConnectorLocalisedConfig =
|
|
31
|
-
label: string;
|
|
32
|
-
description: string;
|
|
33
|
-
};
|
|
31
|
+
export type ConnectorLocalisedConfig = Localised<ConnectorConfig>;
|
|
34
32
|
type ConnectorCategoryConfig = InferOutput<typeof connectorCategoryConfigSchema>;
|
|
35
33
|
type ConnectorCategoryLocalisedConfig = Omit<ConnectorCategoryConfig, 'label'> & {
|
|
36
34
|
label: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { InferOutput } from 'valibot';
|
|
2
2
|
import { contextConfigSchema } from './contextConfig.schema';
|
|
3
3
|
import { EngineContextActionOptions } from '../../../engine';
|
|
4
|
-
import {
|
|
4
|
+
import { Localised } from '../../../locale';
|
|
5
5
|
import { ModuleConfig } from '..';
|
|
6
6
|
import { Component, ComponentConfig, ComponentReference } from '../..';
|
|
7
7
|
export { contextConfigSchema } from './contextConfig.schema';
|
|
@@ -15,121 +15,13 @@ export interface ContextConfig1 extends ModuleConfig {
|
|
|
15
15
|
operations: ContextOperation[];
|
|
16
16
|
typeId: 'context';
|
|
17
17
|
}
|
|
18
|
-
export type ContextLocalisedConfig =
|
|
19
|
-
label: string;
|
|
20
|
-
description: string;
|
|
21
|
-
};
|
|
18
|
+
export type ContextLocalisedConfig = Localised<ContextConfig>;
|
|
22
19
|
export type ContextOperation = 'list';
|
|
23
20
|
export interface ContextModelGroupConfig extends ComponentConfig {
|
|
24
21
|
modelRefs: ComponentReference[];
|
|
25
22
|
order: number;
|
|
26
23
|
}
|
|
27
|
-
export type ContextModelGroupLocalisedConfig =
|
|
28
|
-
label: string;
|
|
29
|
-
description: string;
|
|
30
|
-
};
|
|
31
|
-
export interface ContextModelConfig extends ComponentConfig {
|
|
32
|
-
diagramURL?: string;
|
|
33
|
-
dimension: ContextModelDimensionGroupConfig[];
|
|
34
|
-
entities: ContextModelEntityGroupConfig[];
|
|
35
|
-
secondaryMeasures: ContextModelSecondaryMeasureGroupConfig[];
|
|
36
|
-
}
|
|
37
|
-
export type ContextModelLocalisedConfig = Omit<ContextModelConfig, 'label' | 'description'> & {
|
|
38
|
-
label: string;
|
|
39
|
-
description: string;
|
|
40
|
-
};
|
|
41
|
-
export interface ContextModelDimensionGroupConfig {
|
|
42
|
-
id: string;
|
|
43
|
-
label: LocaleLabel;
|
|
44
|
-
description: LocaleLabel;
|
|
45
|
-
dimensionRefs: ComponentReference[];
|
|
46
|
-
}
|
|
47
|
-
export type ContextModelDimensionGroupLocalisedConfig = Omit<ContextModelDimensionGroupConfig, 'label' | 'description'> & {
|
|
48
|
-
label: string;
|
|
49
|
-
description: string;
|
|
50
|
-
};
|
|
51
|
-
export interface ContextModelDimensionConfig {
|
|
52
|
-
id: string;
|
|
53
|
-
label: LocaleLabel;
|
|
54
|
-
hierarchies: ContextModelDimensionHierarchyConfig[];
|
|
55
|
-
}
|
|
56
|
-
export type ContextModelDimensionLocalisedConfig = Omit<ContextModelDimensionConfig, 'label' | 'description'> & {
|
|
57
|
-
label: string;
|
|
58
|
-
description: string;
|
|
59
|
-
};
|
|
60
|
-
export interface ContextModelDimensionHierarchyConfig {
|
|
61
|
-
id: string;
|
|
62
|
-
label: LocaleLabel;
|
|
63
|
-
}
|
|
64
|
-
export type ContextModelDimensionHierarchyLocalisedConfig = Omit<ContextModelDimensionHierarchyConfig, 'label' | 'description'> & {
|
|
65
|
-
label: string;
|
|
66
|
-
description: string;
|
|
67
|
-
};
|
|
68
|
-
export interface ContextModelEntityGroupConfig {
|
|
69
|
-
id: string;
|
|
70
|
-
label: LocaleLabel;
|
|
71
|
-
description?: Record<string, unknown>;
|
|
72
|
-
entityRefs: ComponentReference[];
|
|
73
|
-
}
|
|
74
|
-
export type ContextModelEntityGroupLocalisedConfig = Omit<ContextModelEntityGroupConfig, 'label' | 'description'> & {
|
|
75
|
-
label: string;
|
|
76
|
-
description: string;
|
|
77
|
-
};
|
|
78
|
-
export interface ContextModelEntityConfig {
|
|
79
|
-
id: string;
|
|
80
|
-
label: LocaleLabel;
|
|
81
|
-
labelPlural: LocaleLabel;
|
|
82
|
-
dataItems: ContextModelEntityDataItemConfig[];
|
|
83
|
-
events: ContextModelEntityEventConfig[];
|
|
84
|
-
primaryMeasures: ContextModelEntityPrimaryMeasureConfig[];
|
|
85
|
-
}
|
|
86
|
-
export type ContextModelEntityLocalisedConfig = Omit<ContextModelEntityConfig, 'label' | 'description'> & {
|
|
87
|
-
label: string;
|
|
88
|
-
description: string;
|
|
89
|
-
};
|
|
90
|
-
export interface ContextModelEntityDataItemConfig {
|
|
91
|
-
id: string;
|
|
92
|
-
label: LocaleLabel;
|
|
93
|
-
}
|
|
94
|
-
export type ContextModelEntityDataItemLocalisedConfig = Omit<ContextModelEntityDataItemConfig, 'label' | 'description'> & {
|
|
95
|
-
label: string;
|
|
96
|
-
description: string;
|
|
97
|
-
};
|
|
98
|
-
export interface ContextModelEntityEventConfig {
|
|
99
|
-
id: string;
|
|
100
|
-
labelAction: Record<string, string>;
|
|
101
|
-
labelState: Record<string, string>;
|
|
102
|
-
}
|
|
103
|
-
export type ContextModelEntityEventLocalisedConfig = Omit<ContextModelEntityEventConfig, 'label' | 'description'> & {
|
|
104
|
-
label: string;
|
|
105
|
-
description: string;
|
|
106
|
-
};
|
|
107
|
-
export interface ContextModelEntityPrimaryMeasureConfig {
|
|
108
|
-
id: string;
|
|
109
|
-
label: LocaleLabel;
|
|
110
|
-
}
|
|
111
|
-
export type ContextModelEntityPrimaryMeasureLocalisedConfig = Omit<ContextModelEntityPrimaryMeasureConfig, 'label' | 'description'> & {
|
|
112
|
-
label: string;
|
|
113
|
-
description: string;
|
|
114
|
-
};
|
|
115
|
-
export interface ContextModelSecondaryMeasureGroupConfig {
|
|
116
|
-
id: string;
|
|
117
|
-
label: LocaleLabel;
|
|
118
|
-
description?: Record<string, unknown>;
|
|
119
|
-
secondaryMeasureRefs: ComponentReference[];
|
|
120
|
-
}
|
|
121
|
-
export type ContextModelSecondaryMeasureGroupLocalisedConfig = Omit<ContextModelSecondaryMeasureGroupConfig, 'label' | 'description'> & {
|
|
122
|
-
label: string;
|
|
123
|
-
description: string;
|
|
124
|
-
};
|
|
125
|
-
export interface ContextModelSecondaryMeasureConfig {
|
|
126
|
-
id: string;
|
|
127
|
-
label: LocaleLabel;
|
|
128
|
-
}
|
|
129
|
-
export type ContextModelSecondaryMeasureLocalisedConfig = Omit<ContextModelSecondaryMeasureConfig, 'label' | 'description'> & {
|
|
130
|
-
label: string;
|
|
131
|
-
description: string;
|
|
132
|
-
};
|
|
24
|
+
export type ContextModelGroupLocalisedConfig = Localised<ContextModelGroupConfig>;
|
|
133
25
|
export interface ListContextOptions extends EngineContextActionOptions {
|
|
134
26
|
placeholder: unknown;
|
|
135
27
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LocaleLabel, Localised } from '../../../../../locale';
|
|
2
|
+
export interface ContextModelDimensionConfig {
|
|
3
|
+
id: string;
|
|
4
|
+
label: LocaleLabel;
|
|
5
|
+
hierarchies: ContextModelDimensionHierarchyConfig[];
|
|
6
|
+
}
|
|
7
|
+
export type ContextModelDimensionLocalisedConfig = Localised<ContextModelDimensionConfig>;
|
|
8
|
+
export interface ContextModelDimensionHierarchyConfig {
|
|
9
|
+
id: string;
|
|
10
|
+
label: LocaleLabel;
|
|
11
|
+
}
|
|
12
|
+
export type ContextModelDimensionHierarchyLocalisedConfig = Localised<ContextModelDimensionHierarchyConfig>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Localised } from '../../../../../../locale';
|
|
2
|
+
export interface ContextModelEntityEventConfig {
|
|
3
|
+
id: string;
|
|
4
|
+
labelAction: Record<string, string>;
|
|
5
|
+
labelState: Record<string, string>;
|
|
6
|
+
}
|
|
7
|
+
export type ContextModelEntityEventLocalisedConfig = Localised<ContextModelEntityEventConfig>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ContextModelEntityDataItemConfig } from './dataItem';
|
|
2
|
+
import { ContextModelEntityEventConfig } from './event';
|
|
3
|
+
import { ContextModelEntityPrimaryMeasureConfig } from './primaryMeasure';
|
|
4
|
+
import { LocaleLabel, Localised } from '../../../../../locale';
|
|
5
|
+
export interface ContextModelEntityConfig {
|
|
6
|
+
id: string;
|
|
7
|
+
label: LocaleLabel;
|
|
8
|
+
labelPlural: LocaleLabel;
|
|
9
|
+
dataItems: ContextModelEntityDataItemConfig[];
|
|
10
|
+
events: ContextModelEntityEventConfig[];
|
|
11
|
+
primaryMeasures: ContextModelEntityPrimaryMeasureConfig[];
|
|
12
|
+
}
|
|
13
|
+
export type ContextModelEntityLocalisedConfig = Localised<ContextModelEntityConfig>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { LocaleLabel, Localised } from '../../../../../../locale';
|
|
2
|
+
export interface ContextModelEntityPrimaryMeasureConfig {
|
|
3
|
+
id: string;
|
|
4
|
+
label: LocaleLabel;
|
|
5
|
+
}
|
|
6
|
+
export type ContextModelEntityPrimaryMeasureLocalisedConfig = Localised<ContextModelEntityPrimaryMeasureConfig>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ComponentConfig, ComponentReference } from '../../..';
|
|
2
|
+
import { LocaleLabel, Localised } from '../../../../locale';
|
|
3
|
+
export interface ContextModelConfig extends ComponentConfig {
|
|
4
|
+
diagramURL?: string;
|
|
5
|
+
dimensions: ContextModelDimensionGroupConfig[];
|
|
6
|
+
entities: ContextModelEntityGroupConfig[];
|
|
7
|
+
secondaryMeasures: ContextModelSecondaryMeasureGroupConfig[];
|
|
8
|
+
}
|
|
9
|
+
export type ContextModelLocalisedConfig = Localised<ContextModelConfig>;
|
|
10
|
+
export interface ContextModelDimensionGroupConfig {
|
|
11
|
+
id: string;
|
|
12
|
+
label: LocaleLabel;
|
|
13
|
+
description: LocaleLabel;
|
|
14
|
+
dimensionRefs: ComponentReference[];
|
|
15
|
+
}
|
|
16
|
+
export type ContextModelDimensionGroupLocalisedConfig = Localised<ContextModelDimensionGroupConfig>;
|
|
17
|
+
export interface ContextModelEntityGroupConfig {
|
|
18
|
+
id: string;
|
|
19
|
+
label: LocaleLabel;
|
|
20
|
+
description?: Record<string, unknown>;
|
|
21
|
+
entityRefs: ComponentReference[];
|
|
22
|
+
}
|
|
23
|
+
export type ContextModelEntityGroupLocalisedConfig = Localised<ContextModelEntityGroupConfig>;
|
|
24
|
+
export interface ContextModelSecondaryMeasureGroupConfig {
|
|
25
|
+
id: string;
|
|
26
|
+
label: LocaleLabel;
|
|
27
|
+
description?: Record<string, unknown>;
|
|
28
|
+
secondaryMeasureRefs: ComponentReference[];
|
|
29
|
+
}
|
|
30
|
+
export type ContextModelSecondaryMeasureGroupLocalisedConfig = Localised<ContextModelSecondaryMeasureGroupConfig>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ModuleConfig } from '..';
|
|
2
2
|
import { Component, ComponentReference } from '../..';
|
|
3
|
+
import { Localised } from '../../../locale';
|
|
3
4
|
export { presenterConfigSchema } from './presenterConfig.schema';
|
|
4
5
|
export interface PresenterInterface extends Component {
|
|
5
6
|
readonly config: PresenterConfig;
|
|
@@ -12,8 +13,5 @@ export interface PresenterConfig extends ModuleConfig {
|
|
|
12
13
|
operations: PresenterOperation[];
|
|
13
14
|
typeId: 'presenter';
|
|
14
15
|
}
|
|
15
|
-
export type PresenterLocalisedConfig =
|
|
16
|
-
label: string;
|
|
17
|
-
description: string;
|
|
18
|
-
};
|
|
16
|
+
export type PresenterLocalisedConfig = Localised<PresenterConfig>;
|
|
19
17
|
export type PresenterOperation = 'list' | 'render' | 'setColorMode';
|
|
@@ -2,6 +2,10 @@ export type FlagId = 'es' | 'gb';
|
|
|
2
2
|
export type LocaleId = 'en' | 'es';
|
|
3
3
|
export type LocaleLabel = Partial<Record<LocaleId, string>>;
|
|
4
4
|
export type LocaleLabelMap = ReadonlyMap<string, string>;
|
|
5
|
+
export type Localised<T> = Omit<T, 'label' | 'description'> & {
|
|
6
|
+
label: string;
|
|
7
|
+
description: string;
|
|
8
|
+
};
|
|
5
9
|
export declare const DEFAULT_LOCALE_ID: LocaleId;
|
|
6
10
|
export declare const SUPPORTED_LANGUAGES: {
|
|
7
11
|
id: LocaleId;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dpuse/dpuse-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.630",
|
|
4
4
|
"description": "Common constants, types and utilities used across all DPUse projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|
|
@@ -49,6 +49,34 @@
|
|
|
49
49
|
"import": "./dist/dpuse-shared-componentModuleContext.es.js",
|
|
50
50
|
"types": "./dist/types/src/component/module/context/index.d.ts"
|
|
51
51
|
},
|
|
52
|
+
"./component/module/context/model": {
|
|
53
|
+
"import": "./dist/dpuse-shared-componentModuleContextModel.es.js",
|
|
54
|
+
"types": "./dist/types/src/component/module/context/model/index.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./component/module/context/model/dimension": {
|
|
57
|
+
"import": "./dist/dpuse-shared-componentModuleContextModelDimension.es.js",
|
|
58
|
+
"types": "./dist/types/src/component/module/context/model/dimension/index.d.ts"
|
|
59
|
+
},
|
|
60
|
+
"./component/module/context/model/entity": {
|
|
61
|
+
"import": "./dist/dpuse-shared-componentModuleContextModelEntity.es.js",
|
|
62
|
+
"types": "./dist/types/src/component/module/context/model/entity/index.d.ts"
|
|
63
|
+
},
|
|
64
|
+
"./component/module/context/model/entity/dataItem": {
|
|
65
|
+
"import": "./dist/dpuse-shared-componentModuleContextModelEntityDataItem.es.js",
|
|
66
|
+
"types": "./dist/types/src/component/module/context/model/entity/dataItem/index.d.ts"
|
|
67
|
+
},
|
|
68
|
+
"./component/module/context/model/entity/event": {
|
|
69
|
+
"import": "./dist/dpuse-shared-componentModuleContextModelEntityEvent.es.js",
|
|
70
|
+
"types": "./dist/types/src/component/module/context/model/entity/event/index.d.ts"
|
|
71
|
+
},
|
|
72
|
+
"./component/module/context/model/entity/primaryMeasure": {
|
|
73
|
+
"import": "./dist/dpuse-shared-componentModuleContextModelEntityPrimaryMeasure.es.js",
|
|
74
|
+
"types": "./dist/types/src/component/module/context/model/entity/primaryMeasure/index.d.ts"
|
|
75
|
+
},
|
|
76
|
+
"./component/module/context/model/secondaryMeasure": {
|
|
77
|
+
"import": "./dist/dpuse-shared-componentModuleContextModelSecondaryMeasure.es.js",
|
|
78
|
+
"types": "./dist/types/src/component/module/context/model/secondaryMeasure/index.d.ts"
|
|
79
|
+
},
|
|
52
80
|
"./component/module/presenter": {
|
|
53
81
|
"import": "./dist/dpuse-shared-componentModulePresenter.es.js",
|
|
54
82
|
"types": "./dist/types/src/component/module/presenter/index.d.ts"
|