@lowcodeunit/applications-flow-common 1.34.71-lets-get-social-ish → 1.34.74-lets-get-social-ish
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/controls/dfs-modifiers-form/dfs-modifiers-form.component.mjs +13 -4
- package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +3 -3
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +5 -5
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +19 -9
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +18 -9
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.d.ts +1 -0
- package/lib/elements/slotted-card/slotted-card.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -34,6 +34,7 @@ export declare class DFSModifiersFormComponent implements OnInit {
|
|
|
34
34
|
get PriorityFormControl(): AbstractControl;
|
|
35
35
|
get ScriptFormControl(): AbstractControl;
|
|
36
36
|
get ScriptIDFormControl(): AbstractControl;
|
|
37
|
+
get ScriptTypeFormControl(): AbstractControl;
|
|
37
38
|
get StateDataTokenFormControl(): AbstractControl;
|
|
38
39
|
get State(): ApplicationsFlowState;
|
|
39
40
|
get TypeFormControl(): AbstractControl;
|
|
@@ -10,7 +10,7 @@ export declare class SlottedCardComponent implements OnInit {
|
|
|
10
10
|
MainSlotDescription: string;
|
|
11
11
|
MainIcon: string;
|
|
12
12
|
ShowMainIcon: boolean;
|
|
13
|
-
|
|
13
|
+
CardTitle: string;
|
|
14
14
|
SecondarySlotDescription: string;
|
|
15
15
|
MainActionClicked: EventEmitter<{}>;
|
|
16
16
|
get State(): ApplicationsFlowState;
|
|
@@ -19,5 +19,5 @@ export declare class SlottedCardComponent implements OnInit {
|
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
MainActionClickEvent(): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlottedCardComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SlottedCardComponent, "lcu-slotted-card", never, { "ActionText": "action-text"; "ActionPath": "action-path"; "Icon": "icon"; "MainSlotDescription": "main-slot-description"; "MainIcon": "main-icon"; "ShowMainIcon": "show-main-icon"; "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlottedCardComponent, "lcu-slotted-card", never, { "ActionText": "action-text"; "ActionPath": "action-path"; "Icon": "icon"; "MainSlotDescription": "main-slot-description"; "MainIcon": "main-icon"; "ShowMainIcon": "show-main-icon"; "CardTitle": "card-title"; "SecondarySlotDescription": "secondary-slot-description"; }, { "MainActionClicked": "main-action-clicked"; }, never, ["*", "*", "[secondary]"]>;
|
|
23
23
|
}
|