@valtimo/layout 13.3.0 → 13.4.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/fesm2022/valtimo-layout.mjs +953 -442
- package/fesm2022/valtimo-layout.mjs.map +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/widget-container/widget-container.component.d.ts +4 -3
- package/lib/components/widget-container/widget-container.component.d.ts.map +1 -1
- package/lib/components/widget-custom/widget-custom.component.d.ts +1 -1
- package/lib/components/widget-custom/widget-custom.component.d.ts.map +1 -1
- package/lib/components/widget-field/widget-field.component.d.ts +4 -2
- package/lib/components/widget-field/widget-field.component.d.ts.map +1 -1
- package/lib/components/widget-formio/widget-formio.component.d.ts +1 -1
- package/lib/components/widget-formio/widget-formio.component.d.ts.map +1 -1
- package/lib/components/widget-interactive-table/index.d.ts +2 -0
- package/lib/components/widget-interactive-table/index.d.ts.map +1 -0
- package/lib/components/widget-interactive-table/widget-interactive-table.component.d.ts +37 -0
- package/lib/components/widget-interactive-table/widget-interactive-table.component.d.ts.map +1 -0
- package/lib/components/widget-management/management/widget-management.component.d.ts +8 -2
- package/lib/components/widget-management/management/widget-management.component.d.ts.map +1 -1
- package/lib/components/widget-management/management-content/fields/widget-management-fields.component.d.ts +2 -0
- package/lib/components/widget-management/management-content/fields/widget-management-fields.component.d.ts.map +1 -1
- package/lib/components/widget-management/management-content/interactive-table/widget-management-interactive-table.component.d.ts +30 -0
- package/lib/components/widget-management/management-content/interactive-table/widget-management-interactive-table.component.d.ts.map +1 -0
- package/lib/components/widget-management/management-content/table/widget-management-table.component.d.ts +3 -2
- package/lib/components/widget-management/management-content/table/widget-management-table.component.d.ts.map +1 -1
- package/lib/components/widget-management/management-editor/widget-management-editor.component.d.ts +14 -4
- package/lib/components/widget-management/management-editor/widget-management-editor.component.d.ts.map +1 -1
- package/lib/components/widget-management/management-wizard/steps/widget-wizard-content-step/widget-wizard-content-step.component.d.ts +2 -1
- package/lib/components/widget-management/management-wizard/steps/widget-wizard-content-step/widget-wizard-content-step.component.d.ts.map +1 -1
- package/lib/components/widget-management/management-wizard/widget-management-wizard.component.d.ts +28 -9
- package/lib/components/widget-management/management-wizard/widget-management-wizard.component.d.ts.map +1 -1
- package/lib/constants/widget.constants.d.ts.map +1 -1
- package/lib/interfaces/widget-content-component.interface.d.ts +1 -0
- package/lib/interfaces/widget-content-component.interface.d.ts.map +1 -1
- package/lib/layout.module.d.ts +2 -1
- package/lib/layout.module.d.ts.map +1 -1
- package/lib/models/widget-content.model.d.ts +7 -3
- package/lib/models/widget-content.model.d.ts.map +1 -1
- package/lib/models/widget-editor.model.d.ts.map +1 -1
- package/lib/models/widget-wizard.model.d.ts +7 -2
- package/lib/models/widget-wizard.model.d.ts.map +1 -1
- package/lib/models/widget.model.d.ts +15 -4
- package/lib/models/widget.model.d.ts.map +1 -1
- package/lib/services/index.d.ts +0 -1
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/widget-layout.service.d.ts +1 -1
- package/lib/services/widget-layout.service.d.ts.map +1 -1
- package/lib/services/widget-wizard.service.d.ts +9 -1
- package/lib/services/widget-wizard.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
- package/public_api.d.ts.map +1 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import { WidgetCollectionContent, WidgetContentProperties, WidgetCustomContent, WidgetFieldsContent, WidgetTableContent } from './widget-content.model';
|
|
2
|
+
import { WidgetCollectionContent, WidgetContentProperties, WidgetCustomContent, WidgetFieldsContent, WidgetTableContent, WidgetInteractiveTableContent } from './widget-content.model';
|
|
3
3
|
import { WidgetDisplayType } from './widget-display.model';
|
|
4
4
|
declare enum WidgetType {
|
|
5
5
|
FIELDS = "fields",
|
|
6
|
+
INTERACTIVE_TABLE = "interactive-table",
|
|
6
7
|
TABLE = "table",
|
|
7
8
|
CUSTOM = "custom",
|
|
8
9
|
COLLECTION = "collection",
|
|
@@ -12,7 +13,9 @@ type WidgetWidth = 1 | 2 | 3 | 4;
|
|
|
12
13
|
type CollectionFieldWidth = 'half' | 'full';
|
|
13
14
|
interface WidgetAction {
|
|
14
15
|
name?: string;
|
|
15
|
-
processDefinitionKey
|
|
16
|
+
processDefinitionKey?: string;
|
|
17
|
+
caseDefinitionKey?: string;
|
|
18
|
+
navigateTo?: string;
|
|
16
19
|
}
|
|
17
20
|
interface BasicWidget {
|
|
18
21
|
type: WidgetType;
|
|
@@ -42,6 +45,14 @@ interface TableWidget extends BasicWidget {
|
|
|
42
45
|
type: WidgetType.TABLE;
|
|
43
46
|
properties: WidgetTableContent;
|
|
44
47
|
}
|
|
48
|
+
interface InteractiveTableWidget extends BasicWidget {
|
|
49
|
+
type: WidgetType.INTERACTIVE_TABLE;
|
|
50
|
+
properties: WidgetInteractiveTableContent;
|
|
51
|
+
}
|
|
52
|
+
interface InteractiveTableWidget extends BasicWidget {
|
|
53
|
+
type: WidgetType.INTERACTIVE_TABLE;
|
|
54
|
+
properties: WidgetInteractiveTableContent;
|
|
55
|
+
}
|
|
45
56
|
interface CustomWidget extends BasicWidget {
|
|
46
57
|
type: WidgetType.CUSTOM;
|
|
47
58
|
properties: WidgetCustomContent;
|
|
@@ -52,7 +63,7 @@ interface FormioWidget extends BasicWidget {
|
|
|
52
63
|
formDefinitionName: string;
|
|
53
64
|
};
|
|
54
65
|
}
|
|
55
|
-
type Widget = FieldsWidget | CollectionWidget | CustomWidget | TableWidget | FormioWidget;
|
|
66
|
+
type Widget = FieldsWidget | CollectionWidget | CustomWidget | TableWidget | InteractiveTableWidget | FormioWidget;
|
|
56
67
|
type WidgetWithUuid = Widget & {
|
|
57
68
|
uuid: string;
|
|
58
69
|
};
|
|
@@ -103,5 +114,5 @@ interface CustomWidgetConfig {
|
|
|
103
114
|
[componentKey: string]: Type<any>;
|
|
104
115
|
}
|
|
105
116
|
type WidgetComponentMap = Record<WidgetType, Type<any>>;
|
|
106
|
-
export { BasicWidget, Widget, WidgetAction, WidgetConfigurationBin, WidgetContentHeightsPx, WidgetContentHeightsPxWithContainerWidth, WidgetPackResult, WidgetType, WidgetWidth, WidgetWidthsPx, WidgetWithUuid, WidgetXY, CollectionFieldWidth, FieldsWidget, FieldsWidgetValue, CollectionWidget, CustomWidgetConfig, CustomWidget, TableWidget, WidgetPackResultItem, WidgetPackResultItemsByRow, FormioWidgetWidgetWithUuid, MaxRectsResult, WidgetComponentMap, };
|
|
117
|
+
export { BasicWidget, Widget, WidgetAction, WidgetConfigurationBin, WidgetContentHeightsPx, WidgetContentHeightsPxWithContainerWidth, WidgetPackResult, WidgetType, WidgetWidth, WidgetWidthsPx, WidgetWithUuid, WidgetXY, CollectionFieldWidth, FieldsWidget, FieldsWidgetValue, CollectionWidget, CustomWidgetConfig, CustomWidget, TableWidget, InteractiveTableWidget, WidgetPackResultItem, WidgetPackResultItemsByRow, FormioWidgetWidgetWithUuid, MaxRectsResult, WidgetComponentMap, };
|
|
107
118
|
//# sourceMappingURL=widget.model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/models/widget.model.ts"],"names":[],"mappings":"AAeA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AACnC,OAAO,EACL,uBAAuB,EACvB,uBAAuB,EACvB,mBAAmB,EACnB,mBAAmB,EACnB,kBAAkB,
|
|
1
|
+
{"version":3,"file":"widget.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/models/widget.model.ts"],"names":[],"mappings":"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"}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import Muuri from 'muuri';
|
|
4
|
-
import { WidgetWithUuid } from '../models';
|
|
4
|
+
import { WidgetWithUuid } from '../models/widget.model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class WidgetLayoutService implements OnDestroy {
|
|
7
7
|
private readonly _containerWidthSubject$;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-layout.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/services/widget-layout.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAa,SAAS,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAML,UAAU,EAIX,MAAM,MAAM,CAAC;AACd,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,cAAc,EAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"widget-layout.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/services/widget-layout.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAa,SAAS,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,EAML,UAAU,EAIX,MAAM,MAAM,CAAC;AACd,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,cAAc,EAAC,MAAM,wBAAwB,CAAC;;AAGtD,qBACa,mBAAoB,YAAW,SAAS;IACnD,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAA4C;IACpF,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAsD;IACvF,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAA8C;IACxF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAA2C;IAC1E,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAuB;IAE5D,OAAO,KAAK,OAAO,GAElB;IAED,OAAO,KAAK,gBAAgB,GAE3B;IAED,IAAW,gBAAgB,IAAI,UAAU,CAAC,MAAM,CAAC,CAIhD;IAED,OAAO,KAAK,SAAS,GAEpB;IAED,OAAO,KAAK,kBAAkB,GAE7B;IAED,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAqC;IAC/E,OAAO,CAAC,QAAQ,CAAC,8BAA8B,CAAqC;IAEpF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;IAErD,IAAW,OAAO,IAAI,UAAU,CAAC,OAAO,CAAC,CAexC;;IAMM,WAAW,IAAI,IAAI;IAInB,QAAQ,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IAI5B,kBAAkB,IAAI,IAAI;IAI1B,UAAU,CAAC,OAAO,EAAE,cAAc,EAAE,GAAG,IAAI;IAI3C,yBAAyB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAM7C,8BAA8B,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAMlD,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAItC,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAQvC,KAAK,IAAI,IAAI;IASpB,OAAO,CAAC,qBAAqB;yCAxGlB,mBAAmB;6CAAnB,mBAAmB;CAkH/B"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { Signal, WritableSignal } from '@angular/core';
|
|
1
|
+
import { Injector, Signal, WritableSignal } from '@angular/core';
|
|
2
2
|
import { BasicWidget, WidgetAction, WidgetContentProperties, WidgetStyle, WidgetType, WidgetTypeSelection, WidgetWidth } from '../models';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class WidgetWizardService {
|
|
6
|
+
private readonly injector;
|
|
5
7
|
readonly $selectedWidget: WritableSignal<WidgetTypeSelection | null>;
|
|
6
8
|
readonly $widgetWidth: WritableSignal<WidgetWidth | null>;
|
|
7
9
|
readonly $widgetStyle: WritableSignal<WidgetStyle | null>;
|
|
@@ -9,11 +11,17 @@ export declare class WidgetWizardService {
|
|
|
9
11
|
readonly $widgetTitle: WritableSignal<string | null>;
|
|
10
12
|
readonly $widgetKey: WritableSignal<string | null>;
|
|
11
13
|
readonly $widgetActions: WritableSignal<WidgetAction[] | undefined>;
|
|
14
|
+
private _defaultWidth;
|
|
15
|
+
get defaultWidth(): WidgetWidth;
|
|
12
16
|
readonly $widgetsConfig: Signal<BasicWidget>;
|
|
13
17
|
readonly $editMode: WritableSignal<boolean>;
|
|
18
|
+
get editMode$(): Observable<boolean>;
|
|
14
19
|
readonly $usedWidgetKeys: WritableSignal<string[]>;
|
|
15
20
|
readonly $availableWidgetTypes: WritableSignal<WidgetType[] | null>;
|
|
21
|
+
constructor(injector: Injector);
|
|
16
22
|
resetWizard(): void;
|
|
23
|
+
setDefaultWidth(width: number): void;
|
|
24
|
+
private isWidgetWidth;
|
|
17
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetWizardService, never>;
|
|
18
26
|
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetWizardService>;
|
|
19
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-wizard.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/services/widget-wizard.service.ts"],"names":[],"mappings":"AAgBA,OAAO,
|
|
1
|
+
{"version":3,"file":"widget-wizard.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/layout/src/lib/services/widget-wizard.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,QAAQ,EAER,MAAM,EAEN,cAAc,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,WAAW,EACX,YAAY,EACZ,uBAAuB,EACvB,WAAW,EACX,UAAU,EACV,mBAAmB,EACnB,WAAW,EACZ,MAAM,WAAW,CAAC;AACnB,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;;AAGhC,qBAGa,mBAAmB;IAyClB,OAAO,CAAC,QAAQ,CAAC,QAAQ;IAxCrC,SAAgB,eAAe,EAAE,cAAc,CAAC,mBAAmB,GAAG,IAAI,CAAC,CAAgB;IAE3F,SAAgB,YAAY,EAAE,cAAc,CAAC,WAAW,GAAG,IAAI,CAAC,CAAgB;IAEhF,SAAgB,YAAY,EAAE,cAAc,CAAC,WAAW,GAAG,IAAI,CAAC,CAAgB;IAEhF,SAAgB,cAAc,EAAE,cAAc,CAAC,uBAAuB,GAAG,IAAI,CAAC,CAAgB;IAE9F,SAAgB,YAAY,EAAE,cAAc,CAAC,MAAM,GAAG,IAAI,CAAC,CAAgB;IAE3E,SAAgB,UAAU,EAAE,cAAc,CAAC,MAAM,GAAG,IAAI,CAAC,CAAgB;IAEzE,SAAgB,cAAc,EAAE,cAAc,CAAC,YAAY,EAAE,GAAG,SAAS,CAAC,CAAqB;IAE/F,OAAO,CAAC,aAAa,CAAe;IAEpC,IAAW,YAAY,IAAI,WAAW,CAErC;IAED,SAAgB,cAAc,EAAE,MAAM,CAAC,WAAW,CAAC,CAQ/C;IAEJ,SAAgB,SAAS,EAAE,cAAc,CAAC,OAAO,CAAC,CAAiB;IAEnE,IAAW,SAAS,IAAI,UAAU,CAAC,OAAO,CAAC,CAE1C;IAED,SAAgB,eAAe,EAAE,cAAc,CAAC,MAAM,EAAE,CAAC,CAAc;IAEvE,SAAgB,qBAAqB,EAAE,cAAc,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC,CAAgB;gBAE7D,QAAQ,EAAE,QAAQ;IAExC,WAAW,IAAI,IAAI;IAWnB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAM3C,OAAO,CAAC,aAAa;yCA5DV,mBAAmB;6CAAnB,mBAAmB;CA+D/B"}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
package/public_api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/layout/src/public_api.ts"],"names":[],"mappings":"AAoBA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0CAA0C,CAAC;AACzD,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/layout/src/public_api.ts"],"names":[],"mappings":"AAoBA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
|