@provoly/hypervisor 0.0.81 → 0.0.82
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/esm2022/src/lib/general/i18n/en.translations.mjs +2 -2
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +2 -2
- package/esm2022/src/lib/general/procedure-actions/action-parameters/action-parameter.component.mjs +1 -1
- package/esm2022/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.mjs +1 -1
- package/esm2022/src/lib/general/procedure-actions/action-parameters/email/email-action-display.component.mjs +1 -1
- package/esm2022/src/lib/general/procedure-actions/action-parameters/email/email-action-parameter.component.mjs +1 -1
- package/esm2022/src/lib/general/procedure-actions/action-parameters/no-param/no-params-action-display.component.mjs +16 -0
- package/esm2022/src/lib/general/procedure-actions/action-parameters/other/other-action-display.component.mjs +3 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/other/other-action-parameter.component.mjs +3 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/phone/phone-action-display.component.mjs +16 -0
- package/esm2022/src/lib/general/procedure-actions/action-parameters/phone/phone-action-parameter.component.mjs +18 -0
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.mjs +3 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-parameter.component.mjs +3 -3
- package/esm2022/src/lib/general/procedure-actions/actions-types.constant.mjs +12 -12
- package/esm2022/src/lib/general/procedure-actions/procedure-actions.component.mjs +5 -2
- package/esm2022/src/lib/general/public-api.mjs +4 -4
- package/esm2022/src/lib/hypervisor.module.mjs +10 -10
- package/fesm2022/provoly-hypervisor.mjs +55 -52
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/general/i18n/en.translations.d.ts +1 -1
- package/src/lib/general/i18n/fr.translations.d.ts +1 -1
- package/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.d.ts +5 -8
- package/src/lib/general/procedure-actions/action-parameters/email/email-action-display.component.d.ts +6 -1
- package/src/lib/general/procedure-actions/action-parameters/email/email-action-parameter.component.d.ts +2 -1
- package/src/lib/general/procedure-actions/action-parameters/no-param/{no-param-action-display.component.d.ts → no-params-action-display.component.d.ts} +2 -1
- package/src/lib/general/procedure-actions/action-parameters/other/other-action-display.component.d.ts +5 -1
- package/src/lib/general/procedure-actions/action-parameters/other/other-action-parameter.component.d.ts +2 -1
- package/src/lib/general/procedure-actions/action-parameters/phone/phone-action-display.component.d.ts +12 -0
- package/src/lib/general/procedure-actions/action-parameters/phone/phone-action-parameter.component.d.ts +9 -0
- package/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.d.ts +6 -1
- package/src/lib/general/procedure-actions/action-parameters/service/service-action-parameter.component.d.ts +2 -1
- package/src/lib/general/procedure-actions/actions-types.constant.d.ts +3 -2
- package/src/lib/general/public-api.d.ts +3 -3
- package/src/lib/hypervisor.module.d.ts +4 -4
- package/esm2022/src/lib/general/procedure-actions/action-parameters/no-param/no-param-action-display.component.mjs +0 -16
- package/esm2022/src/lib/general/procedure-actions/action-parameters/sms/sms-action-display.component.mjs +0 -16
- package/esm2022/src/lib/general/procedure-actions/action-parameters/sms/sms-action-parameter.component.mjs +0 -18
- package/src/lib/general/procedure-actions/action-parameters/sms/sms-action-display.component.d.ts +0 -7
- package/src/lib/general/procedure-actions/action-parameters/sms/sms-action-parameter.component.d.ts +0 -8
package/package.json
CHANGED
package/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.d.ts
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import { HypAction } from '../../../model/procedure/hyp-action.interface';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
4
|
-
other: string;
|
|
5
|
-
}
|
|
6
|
-
export declare class HvyBaseParameterActionComponent {
|
|
3
|
+
export declare class HvyBaseParameterActionComponent<T extends HypAction> {
|
|
7
4
|
_action: any;
|
|
8
|
-
set action(action:
|
|
9
|
-
get action():
|
|
5
|
+
set action(action: T);
|
|
6
|
+
get action(): T;
|
|
10
7
|
constructor();
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HvyBaseParameterActionComponent
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HvyBaseParameterActionComponent
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HvyBaseParameterActionComponent<any>, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HvyBaseParameterActionComponent<any>, "hvy-base-action-parameter", never, { "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
10
|
}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypAction } from '../../../../model/procedure/hyp-action.interface';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
4
|
+
export interface HypEmailAction extends HypAction {
|
|
5
|
+
name: string;
|
|
6
|
+
email: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class HvyEmailActionDisplayComponent extends HvyBaseParameterActionComponent<HypEmailAction> {
|
|
4
9
|
constructor();
|
|
5
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyEmailActionDisplayComponent, never>;
|
|
6
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<HvyEmailActionDisplayComponent, "hvy-email-action-display", never, {}, {}, never, never, false, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypEmailAction } from './email-action-display.component';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HvyEmailActionParameterComponent extends HvyBaseParameterActionComponent {
|
|
4
|
+
export declare class HvyEmailActionParameterComponent extends HvyBaseParameterActionComponent<HypEmailAction> {
|
|
4
5
|
static PATTERN: RegExp;
|
|
5
6
|
constructor();
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyEmailActionParameterComponent, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypAction } from '../../../../model/procedure/hyp-action.interface';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HvyNoParamsActionDisplayComponent extends HvyBaseParameterActionComponent {
|
|
4
|
+
export declare class HvyNoParamsActionDisplayComponent extends HvyBaseParameterActionComponent<HypAction> {
|
|
4
5
|
constructor();
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyNoParamsActionDisplayComponent, never>;
|
|
6
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<HvyNoParamsActionDisplayComponent, "hvy-no-params-action-display", never, {}, {}, never, never, false, never>;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypAction } from '../../../../model/procedure/hyp-action.interface';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
4
|
+
export interface HypOtherAction extends HypAction {
|
|
5
|
+
name: string;
|
|
6
|
+
}
|
|
7
|
+
export declare class HvyOtherActionDisplayComponent extends HvyBaseParameterActionComponent<HypOtherAction> {
|
|
4
8
|
constructor();
|
|
5
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyOtherActionDisplayComponent, never>;
|
|
6
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<HvyOtherActionDisplayComponent, "hvy-other-action-display", never, {}, {}, never, never, false, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypOtherAction } from './other-action-display.component';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HvyOtherActionParameterComponent extends HvyBaseParameterActionComponent {
|
|
4
|
+
export declare class HvyOtherActionParameterComponent extends HvyBaseParameterActionComponent<HypOtherAction> {
|
|
4
5
|
constructor();
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyOtherActionParameterComponent, never>;
|
|
6
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<HvyOtherActionParameterComponent, "hvy-other-action-parameter", never, {}, {}, never, never, false, never>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypAction } from '../../../../model/procedure/hyp-action.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface HypPhoneAction extends HypAction {
|
|
5
|
+
name: string;
|
|
6
|
+
number: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class HvyPhoneActionDisplayComponent extends HvyBaseParameterActionComponent<HypPhoneAction> {
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HvyPhoneActionDisplayComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HvyPhoneActionDisplayComponent, "hvy-phone-action-display", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypPhoneAction } from './phone-action-display.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HvyPhoneActionParameterComponent extends HvyBaseParameterActionComponent<HypPhoneAction> {
|
|
5
|
+
static PATTERN: RegExp;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HvyPhoneActionParameterComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HvyPhoneActionParameterComponent, "hvy-phone-action-parameter", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypAction } from '../../../../model/procedure/hyp-action.interface';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
4
|
+
export interface HypServiceAction extends HypAction {
|
|
5
|
+
name: string;
|
|
6
|
+
externalServiceId: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class HvyServiceActionDisplayComponent extends HvyBaseParameterActionComponent<HypServiceAction> {
|
|
4
9
|
constructor();
|
|
5
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyServiceActionDisplayComponent, never>;
|
|
6
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<HvyServiceActionDisplayComponent, "hvy-service-action-display", never, {}, {}, never, never, false, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
+
import { HypServiceAction } from './service-action-display.component';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HvyServiceActionParameterComponent extends HvyBaseParameterActionComponent {
|
|
4
|
+
export declare class HvyServiceActionParameterComponent extends HvyBaseParameterActionComponent<HypServiceAction> {
|
|
4
5
|
constructor();
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyServiceActionParameterComponent, never>;
|
|
6
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<HvyServiceActionParameterComponent, "hvy-service-action-parameter", never, {}, {}, never, never, false, never>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
2
|
import { HvyBaseParameterActionComponent } from './action-parameters/base-parameter-action.component';
|
|
3
|
+
import { HypAction } from '../../model/procedure/hyp-action.interface';
|
|
3
4
|
export declare const ACTIONS_TYPES: {
|
|
4
5
|
values: {
|
|
5
6
|
[key: string]: {
|
|
6
|
-
display: undefined | Type<HvyBaseParameterActionComponent
|
|
7
|
-
parameter: undefined | Type<HvyBaseParameterActionComponent
|
|
7
|
+
display: undefined | Type<HvyBaseParameterActionComponent<HypAction>>;
|
|
8
|
+
parameter: undefined | Type<HvyBaseParameterActionComponent<HypAction>>;
|
|
8
9
|
validator: ((action: any) => boolean) | undefined;
|
|
9
10
|
};
|
|
10
11
|
};
|
|
@@ -16,9 +16,9 @@ export * from './procedure-actions/action-parameters/action-parameter.component'
|
|
|
16
16
|
export * from './procedure-actions/action-parameters/base-parameter-action.component';
|
|
17
17
|
export * from './procedure-actions/action-parameters/other/other-action-parameter.component';
|
|
18
18
|
export * from './procedure-actions/action-parameters/other/other-action-display.component';
|
|
19
|
-
export * from './procedure-actions/action-parameters/no-param/no-
|
|
20
|
-
export * from './procedure-actions/action-parameters/
|
|
21
|
-
export * from './procedure-actions/action-parameters/
|
|
19
|
+
export * from './procedure-actions/action-parameters/no-param/no-params-action-display.component';
|
|
20
|
+
export * from './procedure-actions/action-parameters/phone/phone-action-parameter.component';
|
|
21
|
+
export * from './procedure-actions/action-parameters/phone/phone-action-display.component';
|
|
22
22
|
export * from './procedure-actions/action-parameters/email/email-action-parameter.component';
|
|
23
23
|
export * from './procedure-actions/action-parameters/email/email-action-display.component';
|
|
24
24
|
export * from './procedure-actions/action-parameters/service/service-action-parameter.component';
|
|
@@ -28,9 +28,9 @@ import * as i23 from "./general/procedure-actions/action-parameters/action-param
|
|
|
28
28
|
import * as i24 from "./general/procedure-actions/action-parameters/base-parameter-action.component";
|
|
29
29
|
import * as i25 from "./general/procedure-actions/action-parameters/other/other-action-parameter.component";
|
|
30
30
|
import * as i26 from "./general/procedure-actions/action-parameters/other/other-action-display.component";
|
|
31
|
-
import * as i27 from "./general/procedure-actions/action-parameters/no-param/no-
|
|
32
|
-
import * as i28 from "./general/procedure-actions/action-parameters/
|
|
33
|
-
import * as i29 from "./general/procedure-actions/action-parameters/
|
|
31
|
+
import * as i27 from "./general/procedure-actions/action-parameters/no-param/no-params-action-display.component";
|
|
32
|
+
import * as i28 from "./general/procedure-actions/action-parameters/phone/phone-action-parameter.component";
|
|
33
|
+
import * as i29 from "./general/procedure-actions/action-parameters/phone/phone-action-display.component";
|
|
34
34
|
import * as i30 from "./general/procedure-actions/action-parameters/email/email-action-display.component";
|
|
35
35
|
import * as i31 from "./general/procedure-actions/action-parameters/email/email-action-parameter.component";
|
|
36
36
|
import * as i32 from "./general/procedure-actions/action-parameters/service/service-action-parameter.component";
|
|
@@ -54,6 +54,6 @@ export declare class PvyHypervisorModule {
|
|
|
54
54
|
url: string;
|
|
55
55
|
}, store: Store<any>, i18nService: PryI18nService);
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<PvyHypervisorModule, never>;
|
|
57
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.
|
|
57
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.HvyPhoneActionParameterComponent, typeof i29.HvyPhoneActionDisplayComponent, typeof i30.HvyEmailActionDisplayComponent, typeof i31.HvyEmailActionParameterComponent, typeof i32.HvyServiceActionParameterComponent, typeof i33.HvyServiceActionDisplayComponent, typeof i34.ProcedureActionsComponent], [typeof i35.StoreFeatureModule, typeof i35.StoreFeatureModule, typeof i35.StoreFeatureModule, typeof i35.StoreFeatureModule, typeof i36.EffectsFeatureModule, typeof i37.NgForOf, typeof i37.AsyncPipe, typeof i38.PryI18nModule, typeof i38.PryCoreModule, typeof i37.NgStyle, typeof i39.PryCheckboxModule, typeof i40.FormsModule, typeof i41.RouterLink, typeof i38.PrySinceDateModule, typeof i37.DatePipe, typeof i38.PryIconModule, typeof i37.KeyValuePipe, typeof i38.PrySelectModule, typeof i37.JsonPipe, typeof i38.PryDatePickerModule, typeof i37.NgIf], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.HvyPhoneActionParameterComponent, typeof i29.HvyPhoneActionDisplayComponent, typeof i30.HvyEmailActionDisplayComponent, typeof i31.HvyEmailActionParameterComponent, typeof i32.HvyServiceActionParameterComponent, typeof i33.HvyServiceActionDisplayComponent]>;
|
|
58
58
|
static ɵinj: i0.ɵɵInjectorDeclaration<PvyHypervisorModule>;
|
|
59
59
|
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@provoly/dashboard";
|
|
5
|
-
export class HvyNoParamsActionDisplayComponent extends HvyBaseParameterActionComponent {
|
|
6
|
-
constructor() {
|
|
7
|
-
super();
|
|
8
|
-
}
|
|
9
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: HvyNoParamsActionDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.4", type: HvyNoParamsActionDisplayComponent, selector: "hvy-no-params-action-display", usesInheritance: true, ngImport: i0, template: "<div class=\"param-line\">\n <p>\n {{ '@hvy.procedure.action.' + action.type | i18n }}\n </p>\n</div>\n", dependencies: [{ kind: "pipe", type: i1.I18nPipe, name: "i18n" }] }); }
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: HvyNoParamsActionDisplayComponent, decorators: [{
|
|
13
|
-
type: Component,
|
|
14
|
-
args: [{ selector: 'hvy-no-params-action-display', template: "<div class=\"param-line\">\n <p>\n {{ '@hvy.procedure.action.' + action.type | i18n }}\n </p>\n</div>\n" }]
|
|
15
|
-
}], ctorParameters: () => [] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tcGFyYW0tYWN0aW9uLWRpc3BsYXkuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJvdm9seS9oeXBlcnZpc29yL3NyYy9saWIvZ2VuZXJhbC9wcm9jZWR1cmUtYWN0aW9ucy9hY3Rpb24tcGFyYW1ldGVycy9uby1wYXJhbS9uby1wYXJhbS1hY3Rpb24tZGlzcGxheS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2h5cGVydmlzb3Ivc3JjL2xpYi9nZW5lcmFsL3Byb2NlZHVyZS1hY3Rpb25zL2FjdGlvbi1wYXJhbWV0ZXJzL25vLXBhcmFtL25vLXBhcmFtcy1hY3Rpb24tZGlzcGxheS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLG9DQUFvQyxDQUFDOzs7QUFNckYsTUFBTSxPQUFPLGlDQUFrQyxTQUFRLCtCQUErQjtJQUNwRjtRQUNFLEtBQUssRUFBRSxDQUFDO0lBQ1YsQ0FBQzs4R0FIVSxpQ0FBaUM7a0dBQWpDLGlDQUFpQywyRkNQOUMsOEdBS0E7OzJGREVhLGlDQUFpQztrQkFKN0MsU0FBUzsrQkFDRSw4QkFBOEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEh2eUJhc2VQYXJhbWV0ZXJBY3Rpb25Db21wb25lbnQgfSBmcm9tICcuLi9iYXNlLXBhcmFtZXRlci1hY3Rpb24uY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaHZ5LW5vLXBhcmFtcy1hY3Rpb24tZGlzcGxheScsXG4gIHRlbXBsYXRlVXJsOiAnLi9uby1wYXJhbXMtYWN0aW9uLWRpc3BsYXkuY29tcG9uZW50Lmh0bWwnXG59KVxuZXhwb3J0IGNsYXNzIEh2eU5vUGFyYW1zQWN0aW9uRGlzcGxheUNvbXBvbmVudCBleHRlbmRzIEh2eUJhc2VQYXJhbWV0ZXJBY3Rpb25Db21wb25lbnQge1xuICBjb25zdHJ1Y3RvcigpIHtcbiAgICBzdXBlcigpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwicGFyYW0tbGluZVwiPlxuICA8cD5cbiAgICB7eyAnQGh2eS5wcm9jZWR1cmUuYWN0aW9uLicgKyBhY3Rpb24udHlwZSB8IGkxOG4gfX1cbiAgPC9wPlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@provoly/dashboard";
|
|
5
|
-
export class HvySmsActionDisplayComponent extends HvyBaseParameterActionComponent {
|
|
6
|
-
constructor() {
|
|
7
|
-
super();
|
|
8
|
-
}
|
|
9
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: HvySmsActionDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.4", type: HvySmsActionDisplayComponent, selector: "hvy-sms-action-display", usesInheritance: true, ngImport: i0, template: "<div class=\"param-line\">\n <p>\n {{ '@hvy.procedure.action.' + action.type | i18n }} <b>{{ action.name | i18n }}</b>\n {{ '@hvy.procedure.action.to' | i18n }} <b>{{ action.number | i18n }}</b>\n </p>\n</div>\n", dependencies: [{ kind: "pipe", type: i1.I18nPipe, name: "i18n" }] }); }
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: HvySmsActionDisplayComponent, decorators: [{
|
|
13
|
-
type: Component,
|
|
14
|
-
args: [{ selector: 'hvy-sms-action-display', template: "<div class=\"param-line\">\n <p>\n {{ '@hvy.procedure.action.' + action.type | i18n }} <b>{{ action.name | i18n }}</b>\n {{ '@hvy.procedure.action.to' | i18n }} <b>{{ action.number | i18n }}</b>\n </p>\n</div>\n" }]
|
|
15
|
-
}], ctorParameters: () => [] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21zLWFjdGlvbi1kaXNwbGF5LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Byb3ZvbHkvaHlwZXJ2aXNvci9zcmMvbGliL2dlbmVyYWwvcHJvY2VkdXJlLWFjdGlvbnMvYWN0aW9uLXBhcmFtZXRlcnMvc21zL3Ntcy1hY3Rpb24tZGlzcGxheS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2h5cGVydmlzb3Ivc3JjL2xpYi9nZW5lcmFsL3Byb2NlZHVyZS1hY3Rpb25zL2FjdGlvbi1wYXJhbWV0ZXJzL3Ntcy9zbXMtYWN0aW9uLWRpc3BsYXkuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQzs7O0FBTXJGLE1BQU0sT0FBTyw0QkFBNkIsU0FBUSwrQkFBK0I7SUFDL0U7UUFDRSxLQUFLLEVBQUUsQ0FBQztJQUNWLENBQUM7OEdBSFUsNEJBQTRCO2tHQUE1Qiw0QkFBNEIscUZDUHpDLDZOQU1BOzsyRkRDYSw0QkFBNEI7a0JBSnhDLFNBQVM7K0JBQ0Usd0JBQXdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBIdnlCYXNlUGFyYW1ldGVyQWN0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1wYXJhbWV0ZXItYWN0aW9uLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2h2eS1zbXMtYWN0aW9uLWRpc3BsYXknLFxuICB0ZW1wbGF0ZVVybDogJy4vc21zLWFjdGlvbi1kaXNwbGF5LmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBIdnlTbXNBY3Rpb25EaXNwbGF5Q29tcG9uZW50IGV4dGVuZHMgSHZ5QmFzZVBhcmFtZXRlckFjdGlvbkNvbXBvbmVudCB7XG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHN1cGVyKCk7XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJwYXJhbS1saW5lXCI+XG4gIDxwPlxuICAgIHt7ICdAaHZ5LnByb2NlZHVyZS5hY3Rpb24uJyArIGFjdGlvbi50eXBlIHwgaTE4biB9fSA8Yj57eyBhY3Rpb24ubmFtZSB8IGkxOG4gfX08L2I+XG4gICAge3sgJ0BodnkucHJvY2VkdXJlLmFjdGlvbi50bycgfCBpMThuIH19IDxiPnt7IGFjdGlvbi5udW1iZXIgfCBpMThuIH19PC9iPlxuICA8L3A+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/forms";
|
|
5
|
-
import * as i2 from "@provoly/dashboard";
|
|
6
|
-
export class HvySmsActionParameterComponent extends HvyBaseParameterActionComponent {
|
|
7
|
-
static { this.PATTERN = new RegExp('^(?:(?:\\+|00)33|0)[1-9][0-9]{8}$'); }
|
|
8
|
-
constructor() {
|
|
9
|
-
super();
|
|
10
|
-
}
|
|
11
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: HvySmsActionParameterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.4", type: HvySmsActionParameterComponent, selector: "hvy-sms-action-parameter", usesInheritance: true, ngImport: i0, template: "<div class=\"param-line\">\n <p>{{ '@hvy.procedure.action.' + action.type | i18n }}</p>\n <input type=\"text\" [(ngModel)]=\"_action.name\" class=\"a-form-field\" maxlength=\"30\" />\n <p class=\"to\">{{ '@hvy.procedure.action.to' | i18n }}</p>\n <input type=\"text\" [(ngModel)]=\"_action.number\" class=\"a-form-field phone\" />\n</div>\n", dependencies: [{ kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "pipe", type: i2.I18nPipe, name: "i18n" }] }); }
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.4", ngImport: i0, type: HvySmsActionParameterComponent, decorators: [{
|
|
15
|
-
type: Component,
|
|
16
|
-
args: [{ selector: 'hvy-sms-action-parameter', template: "<div class=\"param-line\">\n <p>{{ '@hvy.procedure.action.' + action.type | i18n }}</p>\n <input type=\"text\" [(ngModel)]=\"_action.name\" class=\"a-form-field\" maxlength=\"30\" />\n <p class=\"to\">{{ '@hvy.procedure.action.to' | i18n }}</p>\n <input type=\"text\" [(ngModel)]=\"_action.number\" class=\"a-form-field phone\" />\n</div>\n" }]
|
|
17
|
-
}], ctorParameters: () => [] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21zLWFjdGlvbi1wYXJhbWV0ZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJvdm9seS9oeXBlcnZpc29yL3NyYy9saWIvZ2VuZXJhbC9wcm9jZWR1cmUtYWN0aW9ucy9hY3Rpb24tcGFyYW1ldGVycy9zbXMvc21zLWFjdGlvbi1wYXJhbWV0ZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJvdm9seS9oeXBlcnZpc29yL3NyYy9saWIvZ2VuZXJhbC9wcm9jZWR1cmUtYWN0aW9ucy9hY3Rpb24tcGFyYW1ldGVycy9zbXMvc21zLWFjdGlvbi1wYXJhbWV0ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQzs7OztBQU1yRixNQUFNLE9BQU8sOEJBQStCLFNBQVEsK0JBQStCO2FBQzFFLFlBQU8sR0FBRyxJQUFJLE1BQU0sQ0FBQyxtQ0FBbUMsQ0FBQyxBQUFsRCxDQUFtRDtJQUNqRTtRQUNFLEtBQUssRUFBRSxDQUFDO0lBQ1YsQ0FBQzs4R0FKVSw4QkFBOEI7a0dBQTlCLDhCQUE4Qix1RkNQM0MsMFZBTUE7OzJGRENhLDhCQUE4QjtrQkFKMUMsU0FBUzsrQkFDRSwwQkFBMEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEh2eUJhc2VQYXJhbWV0ZXJBY3Rpb25Db21wb25lbnQgfSBmcm9tICcuLi9iYXNlLXBhcmFtZXRlci1hY3Rpb24uY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaHZ5LXNtcy1hY3Rpb24tcGFyYW1ldGVyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3Ntcy1hY3Rpb24tcGFyYW1ldGVyLmNvbXBvbmVudC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBIdnlTbXNBY3Rpb25QYXJhbWV0ZXJDb21wb25lbnQgZXh0ZW5kcyBIdnlCYXNlUGFyYW1ldGVyQWN0aW9uQ29tcG9uZW50IHtcbiAgc3RhdGljIFBBVFRFUk4gPSBuZXcgUmVnRXhwKCdeKD86KD86XFxcXCt8MDApMzN8MClbMS05XVswLTldezh9JCcpO1xuICBjb25zdHJ1Y3RvcigpIHtcbiAgICBzdXBlcigpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwicGFyYW0tbGluZVwiPlxuICA8cD57eyAnQGh2eS5wcm9jZWR1cmUuYWN0aW9uLicgKyBhY3Rpb24udHlwZSB8IGkxOG4gfX08L3A+XG4gIDxpbnB1dCB0eXBlPVwidGV4dFwiIFsobmdNb2RlbCldPVwiX2FjdGlvbi5uYW1lXCIgY2xhc3M9XCJhLWZvcm0tZmllbGRcIiBtYXhsZW5ndGg9XCIzMFwiIC8+XG4gIDxwIGNsYXNzPVwidG9cIj57eyAnQGh2eS5wcm9jZWR1cmUuYWN0aW9uLnRvJyB8IGkxOG4gfX08L3A+XG4gIDxpbnB1dCB0eXBlPVwidGV4dFwiIFsobmdNb2RlbCldPVwiX2FjdGlvbi5udW1iZXJcIiBjbGFzcz1cImEtZm9ybS1maWVsZCBwaG9uZVwiIC8+XG48L2Rpdj5cbiJdfQ==
|
package/src/lib/general/procedure-actions/action-parameters/sms/sms-action-display.component.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HvySmsActionDisplayComponent extends HvyBaseParameterActionComponent {
|
|
4
|
-
constructor();
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HvySmsActionDisplayComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HvySmsActionDisplayComponent, "hvy-sms-action-display", never, {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
package/src/lib/general/procedure-actions/action-parameters/sms/sms-action-parameter.component.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HvySmsActionParameterComponent extends HvyBaseParameterActionComponent {
|
|
4
|
-
static PATTERN: RegExp;
|
|
5
|
-
constructor();
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HvySmsActionParameterComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HvySmsActionParameterComponent, "hvy-sms-action-parameter", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|