@wizishop/wizi-block 3.3.54 → 3.3.55-beta
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/assets/i18n/fr.json +1 -1
- package/assets/images/icons/Icon_AvisClient.svg +27 -48
- package/assets/images/icons/Icon_Citation.svg +9 -34
- package/assets/images/icons/Icon_Diaporama.svg +63 -33
- package/assets/images/icons/Icon_Faq.svg +20 -1
- package/assets/images/icons/Icon_Formulaire.svg +24 -44
- package/assets/images/icons/Icon_Html.svg +16 -37
- package/assets/images/icons/Icon_ImgAvecTexte.svg +36 -67
- package/assets/images/icons/Icon_LancerVideo.svg +23 -30
- package/assets/images/icons/Icon_ListProd.svg +31 -46
- package/assets/images/icons/Icon_Map.svg +67 -38
- package/assets/images/icons/Icon_Newsletter.svg +26 -37
- package/assets/images/icons/Icon_PlusieursImg.svg +44 -150
- package/assets/images/icons/Icon_PlusieursTxt.svg +48 -77
- package/assets/images/icons/Icon_Rassurances.svg +28 -59
- package/assets/images/icons/Icon_ReseauxSociaux.svg +35 -96
- package/assets/images/icons/Icon_Separateur.svg +9 -45
- package/assets/images/icons/Icon_Temoignage.svg +14 -35
- package/assets/images/icons/Icon_Timer.svg +55 -57
- package/assets/images/icons/Icon_TxtDansImage.svg +37 -27
- package/assets/images/icons/Icon_VideoDeFond.svg +14 -50
- package/assets/images/icons/Icon_ZoomProd.svg +32 -41
- package/bundles/wizishop-wizi-block.umd.js +86 -41
- package/bundles/wizishop-wizi-block.umd.js.map +1 -1
- package/bundles/wizishop-wizi-block.umd.min.js +1 -1
- package/bundles/wizishop-wizi-block.umd.min.js.map +1 -1
- package/esm2015/lib/components/blocks/blocks.component.js +10 -3
- package/esm2015/lib/components/configs/configs.component.js +16 -2
- package/esm2015/lib/dtos/forms/forms.dto.js +6 -3
- package/esm2015/lib/services/blocks/images/images-banner.service.js +2 -2
- package/esm2015/lib/services/blocks/images/images-simple.service.js +2 -2
- package/esm2015/lib/services/blocks/launch-videos/launch-videos-button.service.js +2 -2
- package/esm2015/lib/services/blocks/launch-videos/launch-videos-buttontxt.service.js +2 -2
- package/esm2015/lib/services/blocks/sliders/sliders-double-imageright.service.js +2 -2
- package/esm2015/lib/services/blocks/sliders/sliders-fullpage.service.js +2 -2
- package/esm2015/lib/services/blocks/sliders/sliders-imageright.service.js +2 -2
- package/esm2015/lib/services/blocks/sliders/sliders-with-banner.service.js +2 -2
- package/esm2015/lib/services/blocks/text-backgrounds/text-backgrounds-simple.service.js +2 -2
- package/esm2015/lib/services/blocks/text-backgrounds/text-backgrounds-with-banner.service.js +2 -2
- package/esm2015/lib/services/blocks/text-backgrounds/text-backgrounds-with-txt.service.js +2 -2
- package/esm2015/lib/services/blocks/videos/videos-simple.service.js +5 -5
- package/esm2015/lib/services/blocks/videos/videos-txt-content.service.js +5 -5
- package/esm2015/lib/services/blocks/videos/videos-txt-left.service.js +5 -5
- package/esm2015/lib/services/blocks/videos/videos-txt.service.js +5 -5
- package/esm2015/lib/shared/components/structure-config/structure-config.component.js +8 -4
- package/esm2015/lib/shared/components/structure-tools/structure-tools.component.js +14 -4
- package/esm2015/lib/structures/images/double/images-double.component.js +2 -2
- package/esm2015/lib/structures/images/four-images-title/four-images-title.component.js +2 -2
- package/esm2015/lib/structures/images/two-images-title-text/two-images-title-text.component.js +2 -2
- package/esm2015/lib/structures/text-backgrounds/link/text-backgrounds-link.component.js +2 -2
- package/esm2015/lib/wizi-block.component.js +6 -2
- package/fesm2015/wizishop-wizi-block.js +84 -42
- package/fesm2015/wizishop-wizi-block.js.map +1 -1
- package/lib/components/blocks/blocks.component.d.ts +4 -0
- package/lib/components/configs/configs.component.d.ts +1 -0
- package/lib/dtos/forms/forms.dto.d.ts +3 -1
- package/lib/shared/components/structure-config/structure-config.component.d.ts +2 -0
- package/lib/shared/components/structure-tools/structure-tools.component.d.ts +4 -1
- package/lib/wizi-block.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizi-block.scss +5302 -5043
- package/wizishop-wizi-block.metadata.json +1 -1
|
@@ -13,13 +13,17 @@ export declare class BlocksComponent implements OnInit {
|
|
|
13
13
|
private externalConfigService;
|
|
14
14
|
contents: Array<any>;
|
|
15
15
|
dynamicHidden: any[];
|
|
16
|
+
selectedConfig: any;
|
|
16
17
|
hideConfig: boolean;
|
|
17
18
|
translation: TranslationsDto;
|
|
18
19
|
preview: boolean;
|
|
20
|
+
blockHover: boolean;
|
|
21
|
+
configActive: boolean;
|
|
19
22
|
parsedContent: any[];
|
|
20
23
|
constructor(wiziBlockService: WiziBlockService, resolver: ComponentFactoryResolver, contentService: ContentService, configService: ConfigService, externalConfigService: ExternalConfigService);
|
|
21
24
|
ngOnInit(): void;
|
|
22
25
|
setHideConfig(): void;
|
|
26
|
+
switchHover(event: any): void;
|
|
23
27
|
addThis(index: any, type: any): void;
|
|
24
28
|
addThisSelected(selected: any, verbose: any): void;
|
|
25
29
|
isHiddenBLocks(id: any): boolean;
|
|
@@ -26,6 +26,7 @@ export declare class ConfigsComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
getValueHelp(value: any, index: any): string;
|
|
27
27
|
checkHelp(index: any): boolean;
|
|
28
28
|
updateChanges($event: any, key: any): void;
|
|
29
|
+
updateChangesReverse($event: any, key: any): void;
|
|
29
30
|
updateContent(): void;
|
|
30
31
|
updateNumber(event: any, index: any): void;
|
|
31
32
|
ngOnDestroy(): void;
|
|
@@ -196,13 +196,15 @@ export declare class FormsContentDto {
|
|
|
196
196
|
value: any;
|
|
197
197
|
step: Array<string>;
|
|
198
198
|
stepKey: Array<string>;
|
|
199
|
+
labelEnable: string;
|
|
200
|
+
reverseShow: boolean;
|
|
199
201
|
/**
|
|
200
202
|
* 0: On
|
|
201
203
|
* 1: Off
|
|
202
204
|
*/
|
|
203
205
|
state: Array<string>;
|
|
204
206
|
iconHelp: boolean;
|
|
205
|
-
constructor(id: any, label: any, type: any, value: boolean | string | number, placeholder: any, help?: string | Array<string>, step?: any[], stepKey?: any[], state?: any[], iconHelp?: boolean);
|
|
207
|
+
constructor(id: any, label: any, type: any, value: boolean | string | number, placeholder: any, help?: string | Array<string>, step?: any[], stepKey?: any[], state?: any[], iconHelp?: boolean, labelEnable?: string, reverseShow?: boolean);
|
|
206
208
|
}
|
|
207
209
|
export declare class FormsDto<T> {
|
|
208
210
|
block: any;
|
|
@@ -12,6 +12,8 @@ export declare class StructureConfigComponent implements OnInit {
|
|
|
12
12
|
blockUUID: any;
|
|
13
13
|
position: string;
|
|
14
14
|
isFullwidth: boolean;
|
|
15
|
+
small: boolean;
|
|
16
|
+
extraSmall: boolean;
|
|
15
17
|
thisComponentActive: boolean;
|
|
16
18
|
hideThis: boolean;
|
|
17
19
|
readonly TYPE_CONFIG_POSITION_RIGHT_TOP = "is-right-top";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ContentService } from '../../../services/utils/content.service';
|
|
3
3
|
import { ConfigService } from '../../../services/utils/config.service';
|
|
4
4
|
import { WiziBlockService } from '../../../services/wizi-block.service';
|
|
@@ -8,12 +8,15 @@ export declare class StructureToolsComponent implements OnInit, OnDestroy {
|
|
|
8
8
|
private configService;
|
|
9
9
|
uuid: string;
|
|
10
10
|
dynamicHiddenStructure: boolean;
|
|
11
|
+
isHover: boolean;
|
|
12
|
+
isAlwaysHover: boolean;
|
|
11
13
|
deleteButton: ElementRef;
|
|
12
14
|
hideConfig: boolean;
|
|
13
15
|
name: string;
|
|
14
16
|
currentLength: number;
|
|
15
17
|
currentIndex: number;
|
|
16
18
|
blockIsHidden: boolean;
|
|
19
|
+
configIsActivated: EventEmitter<any>;
|
|
17
20
|
private contentEventSubscription;
|
|
18
21
|
constructor(wiziBlockService: WiziBlockService, contentService: ContentService, configService: ConfigService);
|
|
19
22
|
ngOnInit(): void;
|