@wizishop/angular-components 15.1.119 → 15.1.121
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/angular-components.scss +155 -124
- package/esm2020/lib/components/border-picker/border-picker.component.mjs +36 -34
- package/esm2020/lib/components/header-page/header-page.component.mjs +1 -1
- package/esm2020/lib/components/hn/h1/h1.component.mjs +12 -3
- package/esm2020/lib/components/hn/h2/h2.component.mjs +16 -6
- package/esm2020/lib/components/hn/h3/h3.component.mjs +12 -3
- package/esm2020/lib/components/hn/h4/h4.component.mjs +12 -3
- package/esm2020/lib/components/multiple-search-plus/multiple-search-plus.component.mjs +1 -1
- package/esm2020/lib/components/slide-in/slide-in.component.mjs +32 -3
- package/fesm2015/wizishop-angular-components.mjs +112 -46
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +112 -46
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/border-picker/border-picker.component.d.ts +6 -10
- package/lib/components/hn/h1/h1.component.d.ts +4 -1
- package/lib/components/hn/h2/h2.component.d.ts +4 -1
- package/lib/components/hn/h3/h3.component.d.ts +4 -1
- package/lib/components/hn/h4/h4.component.d.ts +4 -1
- package/lib/components/slide-in/slide-in.component.d.ts +14 -1
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.121.tgz +0 -0
- package/wizishop-angular-components-15.1.119.tgz +0 -0
|
@@ -1,32 +1,28 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
1
|
+
import { EventEmitter, OnInit, AfterViewInit } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BorderPickerComponent implements ControlValueAccessor {
|
|
4
|
+
export declare class BorderPickerComponent implements ControlValueAccessor, OnInit, AfterViewInit {
|
|
5
5
|
label: string;
|
|
6
6
|
gap: string;
|
|
7
7
|
fontSize: string;
|
|
8
|
-
borderRadius: string;
|
|
9
|
-
firstBtnOption: string;
|
|
10
|
-
secondBtnOption: string;
|
|
11
|
-
thirdBtnOption: string;
|
|
12
8
|
disabled: boolean;
|
|
13
9
|
value: string;
|
|
14
10
|
blurred: EventEmitter<void>;
|
|
15
11
|
borderRadiusChange: EventEmitter<string>;
|
|
16
|
-
showSlider: boolean;
|
|
17
12
|
sliderValue: number;
|
|
18
13
|
constructor();
|
|
19
14
|
onChange: any;
|
|
20
15
|
onTouched: any;
|
|
16
|
+
ngOnInit(): void;
|
|
21
17
|
writeValue(value: string): void;
|
|
22
18
|
registerOnChange(fn: any): void;
|
|
23
19
|
registerOnTouched(fn: any): void;
|
|
24
20
|
setValue(event: any): void;
|
|
21
|
+
private updateSliderPercentage;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
25
23
|
onFocusOut(): void;
|
|
26
|
-
openSlider(): void;
|
|
27
24
|
updateBorderRadius(value: number): void;
|
|
28
25
|
setBorderRadius(value: number): void;
|
|
29
|
-
onClickOutside(event: Event): void;
|
|
30
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<BorderPickerComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BorderPickerComponent, "wac-border-picker", never, { "label": "label"; "gap": "gap"; "fontSize": "fontSize"; "
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BorderPickerComponent, "wac-border-picker", never, { "label": "label"; "gap": "gap"; "fontSize": "fontSize"; "disabled": "disabled"; "value": "value"; }, { "blurred": "blurred"; "borderRadiusChange": "borderRadiusChange"; }, never, never, true, never>;
|
|
32
28
|
}
|
|
@@ -4,7 +4,10 @@ export declare class H1Component {
|
|
|
4
4
|
withImg: boolean;
|
|
5
5
|
center: boolean;
|
|
6
6
|
color: any;
|
|
7
|
+
private _noMargin;
|
|
8
|
+
get noMargin(): boolean;
|
|
9
|
+
set noMargin(value: boolean | string | '');
|
|
7
10
|
constructor();
|
|
8
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<H1Component, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<H1Component, "wac-h1", never, { "annotation": "annotation"; "withImg": "withImg"; "center": "center"; "color": "color"; }, {}, never, ["*"], false, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<H1Component, "wac-h1", never, { "annotation": "annotation"; "withImg": "withImg"; "center": "center"; "color": "color"; "noMargin": "noMargin"; }, {}, never, ["*"], false, never>;
|
|
10
13
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class H2Component implements OnInit {
|
|
4
|
+
private _noMargin;
|
|
5
|
+
get noMargin(): boolean;
|
|
6
|
+
set noMargin(value: boolean | string | '');
|
|
4
7
|
constructor();
|
|
5
8
|
ngOnInit(): void;
|
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<H2Component, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<H2Component, "wac-h2", never, {}, {}, never, ["*"], false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<H2Component, "wac-h2", never, { "noMargin": "noMargin"; }, {}, never, ["*"], false, never>;
|
|
8
11
|
}
|
|
@@ -2,8 +2,11 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class H3Component implements OnInit {
|
|
4
4
|
grey: boolean;
|
|
5
|
+
private _noMargin;
|
|
6
|
+
get noMargin(): boolean;
|
|
7
|
+
set noMargin(value: boolean | string | '');
|
|
5
8
|
constructor();
|
|
6
9
|
ngOnInit(): void;
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<H3Component, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<H3Component, "wac-h3", never, { "grey": "grey"; }, {}, never, ["*"], false, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<H3Component, "wac-h3", never, { "grey": "grey"; "noMargin": "noMargin"; }, {}, never, ["*"], false, never>;
|
|
9
12
|
}
|
|
@@ -2,8 +2,11 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class H4Component implements OnInit {
|
|
4
4
|
grey: boolean;
|
|
5
|
+
private _noMargin;
|
|
6
|
+
get noMargin(): boolean;
|
|
7
|
+
set noMargin(value: boolean | string | '');
|
|
5
8
|
constructor();
|
|
6
9
|
ngOnInit(): void;
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<H4Component, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<H4Component, "wac-h4", never, { "grey": "grey"; }, {}, never, ["*"], false, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<H4Component, "wac-h4", never, { "grey": "grey"; "noMargin": "noMargin"; }, {}, never, ["*"], false, never>;
|
|
9
12
|
}
|
|
@@ -3,7 +3,12 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SlideInComponent {
|
|
4
4
|
title: string;
|
|
5
5
|
isOpen: boolean;
|
|
6
|
+
hasButton: boolean;
|
|
7
|
+
primaryButtonText: string;
|
|
8
|
+
secondaryButtonText: string;
|
|
6
9
|
closed: EventEmitter<void>;
|
|
10
|
+
primaryButtonClick: EventEmitter<void>;
|
|
11
|
+
secondaryButtonClick: EventEmitter<void>;
|
|
7
12
|
/**
|
|
8
13
|
* Ouvre le panneau coulissant
|
|
9
14
|
*/
|
|
@@ -12,6 +17,14 @@ export declare class SlideInComponent {
|
|
|
12
17
|
* Ferme le panneau coulissant
|
|
13
18
|
*/
|
|
14
19
|
close(): void;
|
|
20
|
+
/**
|
|
21
|
+
* Gère le clic sur le bouton primaire
|
|
22
|
+
*/
|
|
23
|
+
onPrimaryButtonClick(): void;
|
|
24
|
+
/**
|
|
25
|
+
* Gère le clic sur le bouton secondaire
|
|
26
|
+
*/
|
|
27
|
+
onSecondaryButtonClick(): void;
|
|
15
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideInComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SlideInComponent, "wac-slide-in", never, { "title": "title"; "isOpen": "isOpen"; }, { "closed": "closed"; }, never, ["*"], false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlideInComponent, "wac-slide-in", never, { "title": "title"; "isOpen": "isOpen"; "hasButton": "hasButton"; "primaryButtonText": "primaryButtonText"; "secondaryButtonText": "secondaryButtonText"; }, { "closed": "closed"; "primaryButtonClick": "primaryButtonClick"; "secondaryButtonClick": "secondaryButtonClick"; }, never, ["*"], false, never>;
|
|
17
30
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|