@valtimo/case 13.4.0 → 13.5.0-release-0.0.0.3
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-case.mjs +325 -264
- package/fesm2022/valtimo-case.mjs.map +1 -1
- package/lib/case-routing.module.d.ts.map +1 -1
- package/lib/case.module.d.ts.map +1 -1
- package/lib/components/case-detail/case-detail.component.d.ts +2 -2
- package/lib/components/case-detail/case-detail.component.d.ts.map +1 -1
- package/lib/components/case-detail/tab/widgets/components/collection/case-widget-collection.component.d.ts +2 -3
- package/lib/components/case-detail/tab/widgets/components/collection/case-widget-collection.component.d.ts.map +1 -1
- package/lib/components/case-detail/tab/widgets/components/custom/case-widget-custom.component.d.ts +10 -2
- package/lib/components/case-detail/tab/widgets/components/custom/case-widget-custom.component.d.ts.map +1 -1
- package/lib/components/case-detail/tab/widgets/components/field/case-widget-field.component.d.ts +3 -3
- package/lib/components/case-detail/tab/widgets/components/field/case-widget-field.component.d.ts.map +1 -1
- package/lib/components/case-detail/tab/widgets/components/formio/case-widget-formio.component.d.ts +8 -2
- package/lib/components/case-detail/tab/widgets/components/formio/case-widget-formio.component.d.ts.map +1 -1
- package/lib/components/case-detail/tab/widgets/components/map/case-widget-map.component.d.ts +29 -0
- package/lib/components/case-detail/tab/widgets/components/map/case-widget-map.component.d.ts.map +1 -0
- package/lib/components/case-detail/tab/widgets/widgets.component.d.ts +2 -3
- package/lib/components/case-detail/tab/widgets/widgets.component.d.ts.map +1 -1
- package/lib/components/case-list/case-list.component.d.ts.map +1 -1
- package/lib/models/case-widget.model.d.ts +3 -71
- package/lib/models/case-widget.model.d.ts.map +1 -1
- package/lib/models/index.d.ts +1 -3
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/tab-api.model.d.ts +2 -1
- package/lib/models/tab-api.model.d.ts.map +1 -1
- package/lib/services/case-menu.service.d.ts +4 -2
- package/lib/services/case-menu.service.d.ts.map +1 -1
- package/lib/services/case-widgets-api.service.d.ts +2 -2
- package/lib/services/case-widgets-api.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/lib/models/case-widget-content.model.d.ts +0 -52
- package/lib/models/case-widget-content.model.d.ts.map +0 -1
- package/lib/models/case-widget-display.model.d.ts +0 -62
- package/lib/models/case-widget-display.model.d.ts.map +0 -1
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
declare enum CaseWidgetDisplayTypeKey {
|
|
2
|
-
TEXT = "text",
|
|
3
|
-
BOOLEAN = "boolean",
|
|
4
|
-
CURRENCY = "currency",
|
|
5
|
-
DATE = "date",
|
|
6
|
-
DATE_TIME = "datetime",
|
|
7
|
-
ENUM = "enum",
|
|
8
|
-
NUMBER = "number",
|
|
9
|
-
PERCENT = "percent",
|
|
10
|
-
LINK = "link"
|
|
11
|
-
}
|
|
12
|
-
interface CaseWidgetTextDisplayType {
|
|
13
|
-
type: CaseWidgetDisplayTypeKey.TEXT;
|
|
14
|
-
ellipsisCharacterLimit: number;
|
|
15
|
-
hideWhenEmpty: boolean;
|
|
16
|
-
}
|
|
17
|
-
interface CaseWidgetBooleanDisplayType {
|
|
18
|
-
type: CaseWidgetDisplayTypeKey.BOOLEAN;
|
|
19
|
-
hideWhenEmpty: boolean;
|
|
20
|
-
}
|
|
21
|
-
interface CaseWidgetCurrencyDisplayType {
|
|
22
|
-
type: CaseWidgetDisplayTypeKey.CURRENCY;
|
|
23
|
-
currencyCode?: string;
|
|
24
|
-
display?: string;
|
|
25
|
-
digitsInfo?: string;
|
|
26
|
-
hideWhenEmpty: boolean;
|
|
27
|
-
}
|
|
28
|
-
interface CaseWidgetDateDisplayType {
|
|
29
|
-
type: CaseWidgetDisplayTypeKey.DATE;
|
|
30
|
-
format?: string;
|
|
31
|
-
hideWhenEmpty: boolean;
|
|
32
|
-
}
|
|
33
|
-
interface CaseWidgetDateTimeDisplayType {
|
|
34
|
-
type: CaseWidgetDisplayTypeKey.DATE_TIME;
|
|
35
|
-
format?: string;
|
|
36
|
-
hideWhenEmpty: boolean;
|
|
37
|
-
}
|
|
38
|
-
interface CaseWidgetEnumDisplayType {
|
|
39
|
-
type: CaseWidgetDisplayTypeKey.ENUM;
|
|
40
|
-
values: {
|
|
41
|
-
[key: string]: string;
|
|
42
|
-
};
|
|
43
|
-
hideWhenEmpty: boolean;
|
|
44
|
-
}
|
|
45
|
-
interface CaseWidgetNumberDisplayType {
|
|
46
|
-
type: CaseWidgetDisplayTypeKey.NUMBER;
|
|
47
|
-
digitsInfo?: string;
|
|
48
|
-
hideWhenEmpty: boolean;
|
|
49
|
-
}
|
|
50
|
-
interface CaseWidgetPercentDisplayType {
|
|
51
|
-
type: CaseWidgetDisplayTypeKey.PERCENT;
|
|
52
|
-
digitsInfo?: string;
|
|
53
|
-
hideWhenEmpty: boolean;
|
|
54
|
-
}
|
|
55
|
-
interface CaseWidgetLinkDisplayType {
|
|
56
|
-
type: CaseWidgetDisplayTypeKey.LINK;
|
|
57
|
-
linkText?: string;
|
|
58
|
-
hideWhenEmpty: boolean;
|
|
59
|
-
}
|
|
60
|
-
type CaseWidgetDisplayType = CaseWidgetTextDisplayType | CaseWidgetBooleanDisplayType | CaseWidgetCurrencyDisplayType | CaseWidgetDateDisplayType | CaseWidgetDateTimeDisplayType | CaseWidgetEnumDisplayType | CaseWidgetNumberDisplayType | CaseWidgetPercentDisplayType | CaseWidgetLinkDisplayType;
|
|
61
|
-
export { CaseWidgetBooleanDisplayType, CaseWidgetCurrencyDisplayType, CaseWidgetDateDisplayType, CaseWidgetDateTimeDisplayType, CaseWidgetDisplayType, CaseWidgetDisplayTypeKey, CaseWidgetEnumDisplayType, CaseWidgetNumberDisplayType, CaseWidgetPercentDisplayType, CaseWidgetTextDisplayType, CaseWidgetLinkDisplayType, };
|
|
62
|
-
//# sourceMappingURL=case-widget-display.model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"case-widget-display.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/case/src/lib/models/case-widget-display.model.ts"],"names":[],"mappings":"AAgBA,aAAK,wBAAwB;IAC3B,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,SAAS,aAAa;IACtB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,IAAI,SAAS;CACd;AAED,UAAU,yBAAyB;IACjC,IAAI,EAAE,wBAAwB,CAAC,IAAI,CAAC;IACpC,sBAAsB,EAAE,MAAM,CAAC;IAC/B,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,4BAA4B;IACpC,IAAI,EAAE,wBAAwB,CAAC,OAAO,CAAC;IACvC,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,6BAA6B;IACrC,IAAI,EAAE,wBAAwB,CAAC,QAAQ,CAAC;IACxC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,yBAAyB;IACjC,IAAI,EAAE,wBAAwB,CAAC,IAAI,CAAC;IACpC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,6BAA6B;IACrC,IAAI,EAAE,wBAAwB,CAAC,SAAS,CAAC;IACzC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,yBAAyB;IACjC,IAAI,EAAE,wBAAwB,CAAC,IAAI,CAAC;IACpC,MAAM,EAAE;QACN,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;KACvB,CAAC;IACF,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,2BAA2B;IACnC,IAAI,EAAE,wBAAwB,CAAC,MAAM,CAAC;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,4BAA4B;IACpC,IAAI,EAAE,wBAAwB,CAAC,OAAO,CAAC;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,yBAAyB;IACjC,IAAI,EAAE,wBAAwB,CAAC,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,KAAK,qBAAqB,GACtB,yBAAyB,GACzB,4BAA4B,GAC5B,6BAA6B,GAC7B,yBAAyB,GACzB,6BAA6B,GAC7B,yBAAyB,GACzB,2BAA2B,GAC3B,4BAA4B,GAC5B,yBAAyB,CAAC;AAE9B,OAAO,EACL,4BAA4B,EAC5B,6BAA6B,EAC7B,yBAAyB,EACzB,6BAA6B,EAC7B,qBAAqB,EACrB,wBAAwB,EACxB,yBAAyB,EACzB,2BAA2B,EAC3B,4BAA4B,EAC5B,yBAAyB,EACzB,yBAAyB,GAC1B,CAAC"}
|