mapa-library-ui 0.63.0 → 0.65.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/esm2020/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/capability/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/chart/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/dropdown/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/dropdown-tree/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/form/lib/components/input/src/input.component.mjs +3 -3
- package/esm2020/src/lib/components/form/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/group-report/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/input/src/input.component.mjs +3 -3
- package/esm2020/src/lib/components/radio-button/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/scale/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/scale-parameterization/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/slide-toggle/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/components/textarea/lib/core/elements/element-base.mjs +2 -1
- package/esm2020/src/lib/core/guards/authorize-guard/lib/core/enums/permissions.enum.mjs +6 -1
- package/fesm2015/mapa-library-ui-src-lib-components-dropdown-tree.mjs +1 -0
- package/fesm2015/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
- package/fesm2015/mapa-library-ui-src-lib-components-dropdown.mjs +1 -0
- package/fesm2015/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
- package/fesm2015/mapa-library-ui-src-lib-components-form.mjs +2 -2
- package/fesm2015/mapa-library-ui-src-lib-components-form.mjs.map +1 -1
- package/fesm2015/mapa-library-ui-src-lib-components-input.mjs +2 -2
- package/fesm2015/mapa-library-ui-src-lib-components-input.mjs.map +1 -1
- package/fesm2015/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs +5 -0
- package/fesm2015/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs.map +1 -1
- package/fesm2015/mapa-library-ui.mjs +1 -0
- package/fesm2015/mapa-library-ui.mjs.map +1 -1
- package/fesm2020/mapa-library-ui-src-lib-components-dropdown-tree.mjs +1 -0
- package/fesm2020/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
- package/fesm2020/mapa-library-ui-src-lib-components-dropdown.mjs +1 -0
- package/fesm2020/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
- package/fesm2020/mapa-library-ui-src-lib-components-form.mjs +2 -2
- package/fesm2020/mapa-library-ui-src-lib-components-form.mjs.map +1 -1
- package/fesm2020/mapa-library-ui-src-lib-components-input.mjs +2 -2
- package/fesm2020/mapa-library-ui-src-lib-components-input.mjs.map +1 -1
- package/fesm2020/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs +5 -0
- package/fesm2020/mapa-library-ui-src-lib-core-guards-authorize-guard.mjs.map +1 -1
- package/fesm2020/mapa-library-ui.mjs +1 -0
- package/fesm2020/mapa-library-ui.mjs.map +1 -1
- package/lib/core/elements/element-base.d.ts +2 -0
- package/mapa-library-ui-0.65.0.tgz +0 -0
- package/package.json +1 -1
- package/src/lib/components/capability/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/chart/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/dropdown/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/dropdown-tree/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/form/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/group-report/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/radio-button/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/scale/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/scale-parameterization/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/slide-toggle/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/components/textarea/lib/core/elements/element-base.d.ts +2 -0
- package/src/lib/core/guards/authorize-guard/lib/core/enums/permissions.enum.d.ts +5 -0
- package/mapa-library-ui-0.63.0.tgz +0 -0
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -15,6 +15,7 @@ export declare class ElementBase {
|
|
|
15
15
|
controlType: string;
|
|
16
16
|
type: string;
|
|
17
17
|
placeholder?: string;
|
|
18
|
+
readonly: boolean;
|
|
18
19
|
hint?: string;
|
|
19
20
|
prefix?: string;
|
|
20
21
|
suffix?: string;
|
|
@@ -45,6 +46,7 @@ export declare class ElementBase {
|
|
|
45
46
|
controlType?: string;
|
|
46
47
|
type?: string;
|
|
47
48
|
placeholder?: string;
|
|
49
|
+
readonly?: boolean;
|
|
48
50
|
hint?: string;
|
|
49
51
|
prefix?: string;
|
|
50
52
|
suffix?: string;
|
|
@@ -28,6 +28,11 @@ export declare enum Permissions {
|
|
|
28
28
|
V5MenuMyTests = "V5MenuMyTests",
|
|
29
29
|
V5TestsInvitationsSend = "V5TestsInvitationsSend",
|
|
30
30
|
V5TestsInvitationAndEvaluationView = "V5TestsInvitationAndEvaluationView",
|
|
31
|
+
V5TestsInvitationUniqueLinkCreateNew = "V5TestsInvitationUniqueLinkCreateNew",
|
|
32
|
+
V5TestsInvitationUniqueLinkEdit = "V5TestsInvitationUniqueLinkEdit",
|
|
33
|
+
V5TestsInvitationUniqueLinkDelete = "V5TestsInvitationUniqueLinkDelete",
|
|
34
|
+
V5TestsInvitationUniqueLinkViewList = "V5TestsInvitationUniqueLinkViewList",
|
|
35
|
+
V5TestsInvitationUniqueLinkView = "V5TestsInvitationUniqueLinkView",
|
|
31
36
|
V5MenuMyReports = "V5MenuMyReports",
|
|
32
37
|
V5MenuConfiguration = "V5MenuConfiguration",
|
|
33
38
|
V5CustomReportCreate = "V5CustomReportCreate",
|
|
Binary file
|