@proximus/lavender-angular 2.0.0-alpha.114 → 2.0.0-alpha.116
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.
|
@@ -12212,6 +12212,36 @@ class PxDrawer {
|
|
|
12212
12212
|
get closedby() {
|
|
12213
12213
|
return this.elementRef.nativeElement['closedby'];
|
|
12214
12214
|
}
|
|
12215
|
+
set fullscreen(value) {
|
|
12216
|
+
this.elementRef.nativeElement['fullscreen'] = value;
|
|
12217
|
+
}
|
|
12218
|
+
get fullscreen() {
|
|
12219
|
+
return this.elementRef.nativeElement['fullscreen'];
|
|
12220
|
+
}
|
|
12221
|
+
set fullscreenMobile(value) {
|
|
12222
|
+
this.elementRef.nativeElement['fullscreenMobile'] = value;
|
|
12223
|
+
}
|
|
12224
|
+
get fullscreenMobile() {
|
|
12225
|
+
return this.elementRef.nativeElement['fullscreenMobile'];
|
|
12226
|
+
}
|
|
12227
|
+
set fullscreenTablet(value) {
|
|
12228
|
+
this.elementRef.nativeElement['fullscreenTablet'] = value;
|
|
12229
|
+
}
|
|
12230
|
+
get fullscreenTablet() {
|
|
12231
|
+
return this.elementRef.nativeElement['fullscreenTablet'];
|
|
12232
|
+
}
|
|
12233
|
+
set fullscreenLaptop(value) {
|
|
12234
|
+
this.elementRef.nativeElement['fullscreenLaptop'] = value;
|
|
12235
|
+
}
|
|
12236
|
+
get fullscreenLaptop() {
|
|
12237
|
+
return this.elementRef.nativeElement['fullscreenLaptop'];
|
|
12238
|
+
}
|
|
12239
|
+
set fullscreenDesktop(value) {
|
|
12240
|
+
this.elementRef.nativeElement['fullscreenDesktop'] = value;
|
|
12241
|
+
}
|
|
12242
|
+
get fullscreenDesktop() {
|
|
12243
|
+
return this.elementRef.nativeElement['fullscreenDesktop'];
|
|
12244
|
+
}
|
|
12215
12245
|
HIDE_EVENT = new EventEmitter();
|
|
12216
12246
|
constructor(elementRef) {
|
|
12217
12247
|
this.elementRef = elementRef;
|
|
@@ -12220,7 +12250,7 @@ class PxDrawer {
|
|
|
12220
12250
|
});
|
|
12221
12251
|
}
|
|
12222
12252
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
12223
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", closeButtonAriaLabel: ["close-button-aria-label", "closeButtonAriaLabel"], openedby: "openedby", closedby: "closedby" }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12253
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxDrawer, selector: "px-drawer", inputs: { open: "open", closeButtonAriaLabel: ["close-button-aria-label", "closeButtonAriaLabel"], openedby: "openedby", closedby: "closedby", fullscreen: "fullscreen", fullscreenMobile: ["fullscreen--mobile", "fullscreenMobile"], fullscreenTablet: ["fullscreen--tablet", "fullscreenTablet"], fullscreenLaptop: ["fullscreen--laptop", "fullscreenLaptop"], fullscreenDesktop: ["fullscreen--desktop", "fullscreenDesktop"] }, outputs: { HIDE_EVENT: "HIDE_EVENT" }, ngImport: i0 });
|
|
12224
12254
|
}
|
|
12225
12255
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxDrawer, decorators: [{
|
|
12226
12256
|
type: Directive,
|
|
@@ -12236,6 +12266,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
12236
12266
|
type: Input
|
|
12237
12267
|
}], closedby: [{
|
|
12238
12268
|
type: Input
|
|
12269
|
+
}], fullscreen: [{
|
|
12270
|
+
type: Input
|
|
12271
|
+
}], fullscreenMobile: [{
|
|
12272
|
+
type: Input,
|
|
12273
|
+
args: ['fullscreen--mobile']
|
|
12274
|
+
}], fullscreenTablet: [{
|
|
12275
|
+
type: Input,
|
|
12276
|
+
args: ['fullscreen--tablet']
|
|
12277
|
+
}], fullscreenLaptop: [{
|
|
12278
|
+
type: Input,
|
|
12279
|
+
args: ['fullscreen--laptop']
|
|
12280
|
+
}], fullscreenDesktop: [{
|
|
12281
|
+
type: Input,
|
|
12282
|
+
args: ['fullscreen--desktop']
|
|
12239
12283
|
}], HIDE_EVENT: [{
|
|
12240
12284
|
type: Output
|
|
12241
12285
|
}] } });
|
|
@@ -30289,15 +30333,23 @@ class PxSelectableBoxRadio {
|
|
|
30289
30333
|
get stickyBottom() {
|
|
30290
30334
|
return this.elementRef.nativeElement['stickyBottom'];
|
|
30291
30335
|
}
|
|
30336
|
+
SELECTABLE_BOX_RADIO_CONNECTED_EVENT = new EventEmitter();
|
|
30337
|
+
SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT = new EventEmitter();
|
|
30292
30338
|
change = new EventEmitter();
|
|
30293
30339
|
constructor(elementRef) {
|
|
30294
30340
|
this.elementRef = elementRef;
|
|
30341
|
+
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_CONNECTED_EVENT', (e) => {
|
|
30342
|
+
this.SELECTABLE_BOX_RADIO_CONNECTED_EVENT.emit(e.detail);
|
|
30343
|
+
});
|
|
30344
|
+
this.elementRef.nativeElement.addEventListener('SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT', (e) => {
|
|
30345
|
+
this.SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT.emit(e.detail);
|
|
30346
|
+
});
|
|
30295
30347
|
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
30296
30348
|
this.change.emit(e.detail);
|
|
30297
30349
|
});
|
|
30298
30350
|
}
|
|
30299
30351
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBoxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30300
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelectableBoxRadio, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
30352
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PxSelectableBoxRadio, selector: "px-selectable-box-radio", inputs: { inverted: "inverted", name: "name", value: "value", checked: "checked", disabled: "disabled", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"] }, outputs: { SELECTABLE_BOX_RADIO_CONNECTED_EVENT: "SELECTABLE_BOX_RADIO_CONNECTED_EVENT", SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: "SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT", change: "change" }, ngImport: i0 });
|
|
30301
30353
|
}
|
|
30302
30354
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PxSelectableBoxRadio, decorators: [{
|
|
30303
30355
|
type: Directive,
|
|
@@ -30450,6 +30502,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
30450
30502
|
}], stickyBottom: [{
|
|
30451
30503
|
type: Input,
|
|
30452
30504
|
args: ['sticky-bottom']
|
|
30505
|
+
}], SELECTABLE_BOX_RADIO_CONNECTED_EVENT: [{
|
|
30506
|
+
type: Output
|
|
30507
|
+
}], SELECTABLE_BOX_RADIO_DISCONNECTED_EVENT: [{
|
|
30508
|
+
type: Output
|
|
30453
30509
|
}], change: [{
|
|
30454
30510
|
type: Output
|
|
30455
30511
|
}] } });
|