@colijnit/configurator 261.20.4 → 261.20.6

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.
Files changed (23) hide show
  1. package/colijnit-configurator-261.20.6.tgz +0 -0
  2. package/fesm2022/colijnit-configurator.mjs +988 -288
  3. package/fesm2022/colijnit-configurator.mjs.map +1 -1
  4. package/index.d.ts +139 -36
  5. package/lib/components/answers-slideout/style/_layout.scss +2 -2
  6. package/lib/components/configuration-preset/style/_layout.scss +42 -0
  7. package/lib/components/configuration-preset/style/_material-definition.scss +5 -0
  8. package/lib/components/configuration-preset/style/_theme.scss +20 -0
  9. package/lib/components/configuration-preset/style/material.scss +3 -0
  10. package/lib/components/configuration-preset-dialog/style/_layout.scss +82 -0
  11. package/lib/components/configuration-preset-dialog/style/_material-definition.scss +5 -0
  12. package/lib/components/configuration-preset-dialog/style/_theme.scss +7 -0
  13. package/lib/components/configuration-preset-dialog/style/material.scss +3 -0
  14. package/lib/components/product-configurator/style/_layout.scss +4 -0
  15. package/lib/components/product-configurator/style/_material-definition.scss +1 -0
  16. package/lib/components/product-configurator/style/_theme.scss +7 -1
  17. package/lib/components/product-configurator-selector/style/_layout.scss +26 -1
  18. package/lib/components/product-configurator-selector/style/_theme.scss +20 -3
  19. package/lib/components/product-configurator-selector-option-checkbox/style/_theme.scss +3 -0
  20. package/lib/components/product-configurator-selector-option-tile/style/_layout.scss +12 -4
  21. package/lib/components/product-configurator-selector-option-tile/style/_theme.scss +28 -2
  22. package/lib/style/_variables.scss +20 -7
  23. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnDestroy, OnInit, EventEmitter, PipeTransform, TemplateRef, ElementRef, QueryList, AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
+ import { OnDestroy, OnInit, EventEmitter, PipeTransform, TemplateRef, ElementRef, QueryList, AfterViewInit, ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
3
3
  import * as THREE from 'three';
4
4
  import { Object3D, Material, Vector3, Euler, Color, Side, PerspectiveCamera, Scene, Mesh, WebGLRenderer, Camera, Vector2, Light, Intersection } from 'three';
5
5
  import { SafeHtml, EventManager, DomSanitizer, SafeStyle } from '@angular/platform-browser';
@@ -27,12 +27,13 @@ import { Font } from 'three/examples/jsm/loaders/FontLoader.js';
27
27
  import { DeviceDetectorService } from 'ngx-device-detector';
28
28
  import { ColorSpace } from 'three/src/constants.js';
29
29
  import * as i3 from '@angular/common';
30
- import * as i5 from '@colijnit/corecomponents_v12';
30
+ import * as i3$1 from '@colijnit/corecomponents_v12';
31
31
  import * as i7 from '@angular/forms';
32
32
  import { Color as Color$1 } from '@colijnit/configuratorapi/build/model/color';
33
33
  import { Tag } from '@colijnit/configuratorapi/build/model/tag';
34
- import * as i3$1 from '@angular/material/icon';
35
- import * as i4 from '@angular/material/button';
34
+ import * as i4 from '@angular/cdk/clipboard';
35
+ import * as i3$2 from '@angular/material/icon';
36
+ import * as i4$1 from '@angular/material/button';
36
37
  import { ConfigurationDisplayOption } from '@colijnit/configuratorapi/build/enum/refcode/configuration-display-option.enum';
37
38
 
38
39
  declare class ConfiguratorErrorMessage {
@@ -116,6 +117,11 @@ declare class IntersectedObjects {
116
117
  constructor(parent?: any, child?: any);
117
118
  }
118
119
 
120
+ declare enum PresetDialogMode {
121
+ SAVE = 0,
122
+ LOAD = 1
123
+ }
124
+
119
125
  declare class AppEventService {
120
126
  instanceSet: BehaviorSubject<string>;
121
127
  answerCountReceived: BehaviorSubject<number>;
@@ -137,6 +143,7 @@ declare class AppEventService {
137
143
  articleInfoReceived: Subject<string>;
138
144
  onObjectSelected: Subject<IntersectedObjects>;
139
145
  onObjectUnSelected: Subject<boolean>;
146
+ changeConfigurationPresetDialogMode: Subject<PresetDialogMode>;
140
147
  static ɵfac: i0.ɵɵFactoryDeclaration<AppEventService, never>;
141
148
  static ɵprov: i0.ɵɵInjectableDeclaration<AppEventService>;
142
149
  }
@@ -217,6 +224,9 @@ declare class SettingOptions {
217
224
  useExternalOpenSave?: boolean;
218
225
  floorFadeStart?: number;
219
226
  floorFadeEnd?: number;
227
+ maxVisibleTiles: number;
228
+ maxVisibleSmallTiles: number;
229
+ groupedShowAllBtn: boolean;
220
230
  }
221
231
 
222
232
  declare class RenderParameters {
@@ -451,6 +461,8 @@ declare class ConfiguratorService {
451
461
  getImage(key: number | string, publication: number, thumb: boolean, tableName?: TableName): Promise<DataServiceResponseData>;
452
462
  copyInstance(instanceId: string, shouldSaveCurrentInstanceId: boolean, showLoader?: boolean): Promise<DataServiceResponseData>;
453
463
  saveConfigurations(showLoader?: boolean): Promise<boolean>;
464
+ storePreset(instanceId: string, showLoader?: boolean): Promise<DataServiceResponseData>;
465
+ initForPreset(presetId: string, goodId: number, showLoader?: boolean): Promise<DataServiceResponseData>;
454
466
  googleTranslateEnabled(): Promise<boolean>;
455
467
  getDefaultLanguage(upId: number): Promise<string>;
456
468
  getGoogleTranslation(sourceLang: string, targetLang: string, list: string[]): Promise<string>;
@@ -545,6 +557,8 @@ declare class ConfiguratorConnectorService implements OnDestroy {
545
557
  getInternalParameter(parameter: InternalParam): Promise<string>;
546
558
  emptySelections(): void;
547
559
  saveConfigurations(): Promise<void>;
560
+ storePreset(instanceId: string, showLoader?: boolean): Promise<DataServiceResponseData>;
561
+ initForPreset(presetId: string, goodId: number, showLoader?: boolean): Promise<DataServiceResponseData>;
548
562
  getDefaultLanguage(upId: number): Promise<string>;
549
563
  googleTranslateEnabled(): Promise<boolean>;
550
564
  getGoogleTranslation(sourceLang: string, targetLang: string, list: string[]): Promise<string>;
@@ -1539,6 +1553,7 @@ declare enum IconEnum {
1539
1553
  ArrowTurnRight = "arrow_turn_right",
1540
1554
  ArrowTurnRightRegular = "arrow_turn_right_regular",
1541
1555
  ArCircle = "ar_circle",
1556
+ BarsLightFull = "bars_light_full",
1542
1557
  Brush = "brush",
1543
1558
  CameraSolid = "camera_solid",
1544
1559
  CameraTopdown = "camera_topdown",
@@ -1563,6 +1578,7 @@ declare enum IconEnum {
1563
1578
  ConfFrame = "conf_frame",
1564
1579
  ConfPlane = "conf_plane",
1565
1580
  CopyLight = "copy_light",
1581
+ CopyRegularFull = "copy_regular_full",
1566
1582
  Couch = "couch",
1567
1583
  Cross = "cross",
1568
1584
  CubeOutline = "cube-outline",
@@ -1575,7 +1591,9 @@ declare enum IconEnum {
1575
1591
  EditButton = "edit-button",
1576
1592
  Expand = "expand",
1577
1593
  FillDripLight = "fill_drip_light",
1594
+ FloppyDiskLightFull = "floppy_disk_light_full",
1578
1595
  Flower = "flower",
1596
+ FolderOpenLightFull = "folder_open_light_full",
1579
1597
  GaugeHighSolidFull = "gauge_high_solid_full",
1580
1598
  GaugeLowSolidFull = "gauge_low_solid_full",
1581
1599
  GaugeMaxSolidFull = "gauge_max_solid_full",
@@ -1629,6 +1647,7 @@ declare enum IconEnum {
1629
1647
  WandMagicSparkles = "wand_magic_sparkles",
1630
1648
  WifiSolidFull = "wifi_solid_full",
1631
1649
  XmarkLight = "xmark_light",
1650
+ XmarkLightFull = "xmark_light_full",
1632
1651
  XmarkRegular = "xmark_regular"
1633
1652
  }
1634
1653
 
@@ -2283,6 +2302,7 @@ declare class ConfiguratorComponent implements OnDestroy {
2283
2302
  canCloseConfigurator: boolean;
2284
2303
  animateSlideout: boolean;
2285
2304
  showHeaderInformation: boolean;
2305
+ showSaveAndLoadConfiguration: boolean;
2286
2306
  buildResult: EventEmitter<ConfigurationResultObject>;
2287
2307
  isLoading: EventEmitter<boolean>;
2288
2308
  updateProgressBar: EventEmitter<boolean>;
@@ -2299,7 +2319,7 @@ declare class ConfiguratorComponent implements OnDestroy {
2299
2319
  handleCloseErrorDialog(): void;
2300
2320
  private _handleArticleNotFound;
2301
2321
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfiguratorComponent, never>;
2302
- static ɵcmp: i0.ɵɵComponentDeclaration<ConfiguratorComponent, "co-configurator", never, { "showLoader": { "alias": "showLoader"; "required": false; }; "showProgressBar": { "alias": "showProgressBar"; "required": false; }; "showErrorMessages": { "alias": "showErrorMessages"; "required": false; }; "outputErrorMessages": { "alias": "outputErrorMessages"; "required": false; }; "canCloseConfigurator": { "alias": "canCloseConfigurator"; "required": false; }; "animateSlideout": { "alias": "animateSlideout"; "required": false; }; "showHeaderInformation": { "alias": "showHeaderInformation"; "required": false; }; }, { "buildResult": "buildResult"; "isLoading": "isLoading"; "updateProgressBar": "updateProgressBar"; "errorMessages": "errorMessages"; "showChange": "showChange"; }, never, never, false, never>;
2322
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfiguratorComponent, "co-configurator", never, { "showLoader": { "alias": "showLoader"; "required": false; }; "showProgressBar": { "alias": "showProgressBar"; "required": false; }; "showErrorMessages": { "alias": "showErrorMessages"; "required": false; }; "outputErrorMessages": { "alias": "outputErrorMessages"; "required": false; }; "canCloseConfigurator": { "alias": "canCloseConfigurator"; "required": false; }; "animateSlideout": { "alias": "animateSlideout"; "required": false; }; "showHeaderInformation": { "alias": "showHeaderInformation"; "required": false; }; "showSaveAndLoadConfiguration": { "alias": "showSaveAndLoadConfiguration"; "required": false; }; }, { "buildResult": "buildResult"; "isLoading": "isLoading"; "updateProgressBar": "updateProgressBar"; "errorMessages": "errorMessages"; "showChange": "showChange"; }, never, never, false, never>;
2303
2323
  }
2304
2324
 
2305
2325
  declare class ProgressBarComponent {
@@ -2326,7 +2346,7 @@ declare class ConfiguratorLoaderComponent {
2326
2346
 
2327
2347
  declare class ConfiguratorLoaderModule {
2328
2348
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfiguratorLoaderModule, never>;
2329
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfiguratorLoaderModule, [typeof ConfiguratorLoaderComponent], [typeof i5.LoaderModule, typeof i5.IconModule, typeof i3.CommonModule], [typeof ConfiguratorLoaderComponent]>;
2349
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ConfiguratorLoaderModule, [typeof ConfiguratorLoaderComponent], [typeof i3$1.LoaderModule, typeof i3$1.IconModule, typeof i3.CommonModule], [typeof ConfiguratorLoaderComponent]>;
2330
2350
  static ɵinj: i0.ɵɵInjectorDeclaration<ConfiguratorLoaderModule>;
2331
2351
  }
2332
2352
 
@@ -2492,7 +2512,7 @@ declare class PipesModule {
2492
2512
 
2493
2513
  declare class ConfiguratorDialogModule {
2494
2514
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfiguratorDialogModule, never>;
2495
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfiguratorDialogModule, [typeof ConfiguratorErrorDialogComponent, typeof ConfiguratorExportDialogComponent, typeof ConfiguratorCameraSettingsComponent], [typeof PipesModule, typeof i5.IconModule, typeof i3.CommonModule, typeof i7.FormsModule], [typeof ConfiguratorErrorDialogComponent, typeof ConfiguratorExportDialogComponent, typeof ConfiguratorCameraSettingsComponent]>;
2515
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ConfiguratorDialogModule, [typeof ConfiguratorErrorDialogComponent, typeof ConfiguratorExportDialogComponent, typeof ConfiguratorCameraSettingsComponent], [typeof PipesModule, typeof i3$1.IconModule, typeof i3.CommonModule, typeof i7.FormsModule], [typeof ConfiguratorErrorDialogComponent, typeof ConfiguratorExportDialogComponent, typeof ConfiguratorCameraSettingsComponent]>;
2496
2516
  static ɵinj: i0.ɵɵInjectorDeclaration<ConfiguratorDialogModule>;
2497
2517
  }
2498
2518
 
@@ -2507,6 +2527,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
2507
2527
  canCloseConfigurator: boolean;
2508
2528
  animateSlideout: boolean;
2509
2529
  showHeaderInformation: boolean;
2530
+ showSaveAndLoadConfiguration: boolean;
2510
2531
  buildFinished: EventEmitter<ConfigurationResultObject>;
2511
2532
  showChange: EventEmitter<boolean>;
2512
2533
  showElementToolbar: boolean;
@@ -2526,7 +2547,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
2526
2547
  private _handleTemplateChange;
2527
2548
  private _handleBuildResult;
2528
2549
  static ɵfac: i0.ɵɵFactoryDeclaration<ThreedselectorComponent, never>;
2529
- static ɵcmp: i0.ɵɵComponentDeclaration<ThreedselectorComponent, "co-threedselector", never, { "selections": { "alias": "selections"; "required": false; }; "canCloseConfigurator": { "alias": "canCloseConfigurator"; "required": false; }; "animateSlideout": { "alias": "animateSlideout"; "required": false; }; "showHeaderInformation": { "alias": "showHeaderInformation"; "required": false; }; }, { "customizeButtonClicked": "customizeButtonClicked"; "buildFinished": "buildFinished"; "showChange": "showChange"; }, never, never, false, never>;
2550
+ static ɵcmp: i0.ɵɵComponentDeclaration<ThreedselectorComponent, "co-threedselector", never, { "selections": { "alias": "selections"; "required": false; }; "canCloseConfigurator": { "alias": "canCloseConfigurator"; "required": false; }; "animateSlideout": { "alias": "animateSlideout"; "required": false; }; "showHeaderInformation": { "alias": "showHeaderInformation"; "required": false; }; "showSaveAndLoadConfiguration": { "alias": "showSaveAndLoadConfiguration"; "required": false; }; }, { "customizeButtonClicked": "customizeButtonClicked"; "buildFinished": "buildFinished"; "showChange": "showChange"; }, never, never, false, never>;
2530
2551
  }
2531
2552
 
2532
2553
  declare class LiteSelectorComponent implements OnDestroy {
@@ -2544,6 +2565,7 @@ declare class LiteSelectorComponent implements OnDestroy {
2544
2565
  canClose: boolean;
2545
2566
  animateSlideout: boolean;
2546
2567
  customDimensions: boolean;
2568
+ showSaveAndLoadConfiguration: boolean;
2547
2569
  readonly showChange: EventEmitter<boolean>;
2548
2570
  readonly answerChosen: EventEmitter<Answer>;
2549
2571
  answerToShowFromSelectionText: string;
@@ -2560,7 +2582,7 @@ declare class LiteSelectorComponent implements OnDestroy {
2560
2582
  onSelectionsSummaryDeleteSelection(selection: Selection): Promise<void>;
2561
2583
  onAnswersSlideoutAnswerChosen(answerSelected: any): void;
2562
2584
  static ɵfac: i0.ɵɵFactoryDeclaration<LiteSelectorComponent, never>;
2563
- static ɵcmp: i0.ɵɵComponentDeclaration<LiteSelectorComponent, "co-lite-selector", never, { "showAnswers": { "alias": "showAnswers"; "required": false; }; "show": { "alias": "show"; "required": false; }; "showSelections": { "alias": "showSelections"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "canClose": { "alias": "canClose"; "required": false; }; "animateSlideout": { "alias": "animateSlideout"; "required": false; }; "customDimensions": { "alias": "customDimensions"; "required": false; }; }, { "showChange": "showChange"; "answerChosen": "answerChosen"; }, never, never, false, never>;
2585
+ static ɵcmp: i0.ɵɵComponentDeclaration<LiteSelectorComponent, "co-lite-selector", never, { "showAnswers": { "alias": "showAnswers"; "required": false; }; "show": { "alias": "show"; "required": false; }; "showSelections": { "alias": "showSelections"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "canClose": { "alias": "canClose"; "required": false; }; "animateSlideout": { "alias": "animateSlideout"; "required": false; }; "customDimensions": { "alias": "customDimensions"; "required": false; }; "showSaveAndLoadConfiguration": { "alias": "showSaveAndLoadConfiguration"; "required": false; }; }, { "showChange": "showChange"; "answerChosen": "answerChosen"; }, never, never, false, never>;
2564
2586
  }
2565
2587
 
2566
2588
  declare class AnswerCardComponent implements OnInit {
@@ -2748,13 +2770,13 @@ declare class AnswersInfoDialogComponent implements OnInit {
2748
2770
 
2749
2771
  declare class AnswersInfoDialogModule {
2750
2772
  static ɵfac: i0.ɵɵFactoryDeclaration<AnswersInfoDialogModule, never>;
2751
- static ɵmod: i0.ɵɵNgModuleDeclaration<AnswersInfoDialogModule, [typeof AnswersInfoDialogComponent], [typeof i3.CommonModule, typeof PipesModule, typeof i5.IconModule], [typeof AnswersInfoDialogComponent]>;
2773
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AnswersInfoDialogModule, [typeof AnswersInfoDialogComponent], [typeof i3.CommonModule, typeof PipesModule, typeof i3$1.IconModule], [typeof AnswersInfoDialogComponent]>;
2752
2774
  static ɵinj: i0.ɵɵInjectorDeclaration<AnswersInfoDialogModule>;
2753
2775
  }
2754
2776
 
2755
2777
  declare class AnswerCardModule {
2756
2778
  static ɵfac: i0.ɵɵFactoryDeclaration<AnswerCardModule, never>;
2757
- static ɵmod: i0.ɵɵNgModuleDeclaration<AnswerCardModule, [typeof AnswerCardComponent], [typeof i3.CommonModule, typeof i5.CardModule, typeof PipesModule, typeof i5.CardModule, typeof i5.InputTextModule, typeof i5.IconModule, typeof AnswersInfoDialogModule, typeof i5.CardModule, typeof i5.ButtonModule], [typeof AnswerCardComponent]>;
2779
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AnswerCardModule, [typeof AnswerCardComponent], [typeof i3.CommonModule, typeof i3$1.CardModule, typeof PipesModule, typeof i3$1.CardModule, typeof i3$1.InputTextModule, typeof i3$1.IconModule, typeof AnswersInfoDialogModule, typeof i3$1.CardModule, typeof i3$1.ButtonModule], [typeof AnswerCardComponent]>;
2758
2780
  static ɵinj: i0.ɵɵInjectorDeclaration<AnswerCardModule>;
2759
2781
  }
2760
2782
 
@@ -2772,7 +2794,7 @@ declare class ImageZoomComponent {
2772
2794
 
2773
2795
  declare class ImageZoomModule {
2774
2796
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageZoomModule, never>;
2775
- static ɵmod: i0.ɵɵNgModuleDeclaration<ImageZoomModule, [typeof ImageZoomComponent], [typeof i5.IconModule, typeof i3.CommonModule], [typeof ImageZoomComponent]>;
2797
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ImageZoomModule, [typeof ImageZoomComponent], [typeof i3$1.IconModule, typeof i3.CommonModule], [typeof ImageZoomComponent]>;
2776
2798
  static ɵinj: i0.ɵɵInjectorDeclaration<ImageZoomModule>;
2777
2799
  }
2778
2800
 
@@ -2794,7 +2816,7 @@ declare class ColorFilterComponent {
2794
2816
 
2795
2817
  declare class ColorFilterModule {
2796
2818
  static ɵfac: i0.ɵɵFactoryDeclaration<ColorFilterModule, never>;
2797
- static ɵmod: i0.ɵɵNgModuleDeclaration<ColorFilterModule, [typeof ColorFilterComponent], [typeof i5.IconModule], [typeof ColorFilterComponent]>;
2819
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ColorFilterModule, [typeof ColorFilterComponent], [typeof i3$1.IconModule], [typeof ColorFilterComponent]>;
2798
2820
  static ɵinj: i0.ɵɵInjectorDeclaration<ColorFilterModule>;
2799
2821
  }
2800
2822
 
@@ -2845,7 +2867,7 @@ declare class DirectivesModule {
2845
2867
 
2846
2868
  declare class AnswersSlideoutModule {
2847
2869
  static ɵfac: i0.ɵɵFactoryDeclaration<AnswersSlideoutModule, never>;
2848
- static ɵmod: i0.ɵɵNgModuleDeclaration<AnswersSlideoutModule, [typeof AnswersSlideoutComponent], [typeof SlideoutModule, typeof PipesModule, typeof i3.CommonModule, typeof i5.IconModule, typeof i5.PriceDisplayPipeModule, typeof AnswerCardModule, typeof ImageZoomModule, typeof ColorFilterModule, typeof TagFilterModule, typeof DirectivesModule], [typeof AnswersSlideoutComponent]>;
2870
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AnswersSlideoutModule, [typeof AnswersSlideoutComponent], [typeof SlideoutModule, typeof PipesModule, typeof i3.CommonModule, typeof i3$1.IconModule, typeof i3$1.PriceDisplayPipeModule, typeof AnswerCardModule, typeof ImageZoomModule, typeof ColorFilterModule, typeof TagFilterModule, typeof DirectivesModule], [typeof AnswersSlideoutComponent]>;
2849
2871
  static ɵinj: i0.ɵɵInjectorDeclaration<AnswersSlideoutModule>;
2850
2872
  }
2851
2873
 
@@ -2859,6 +2881,7 @@ declare class SelectionsSummaryComponent implements OnDestroy {
2859
2881
  canClose: boolean;
2860
2882
  answersTemplate: TemplateRef<any>;
2861
2883
  answerToShowFromSelectionText: string;
2884
+ showSaveAndLoadConfiguration: boolean;
2862
2885
  customDimensions: boolean;
2863
2886
  disableMouse: boolean;
2864
2887
  handledocumentMouseUp(event: any): void;
@@ -2879,7 +2902,7 @@ declare class SelectionsSummaryComponent implements OnDestroy {
2879
2902
  handleDelete(event: MouseEvent, sel: Selection): void;
2880
2903
  toggleElement(sel: Selection): void;
2881
2904
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectionsSummaryComponent, never>;
2882
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectionsSummaryComponent, "co-selections-summary", never, { "selections": { "alias": "selections"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "canClose": { "alias": "canClose"; "required": false; }; "answersTemplate": { "alias": "answersTemplate"; "required": false; }; "answerToShowFromSelectionText": { "alias": "answerToShowFromSelectionText"; "required": false; }; "customDimensions": { "alias": "customDimensions"; "required": false; }; }, { "closeClick": "closeClick"; "cancelAnswers": "cancelAnswers"; "selectSelection": "selectSelection"; "repeatSelection": "repeatSelection"; "deleteSelection": "deleteSelection"; }, never, never, false, never>;
2905
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectionsSummaryComponent, "co-selections-summary", never, { "selections": { "alias": "selections"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "canClose": { "alias": "canClose"; "required": false; }; "answersTemplate": { "alias": "answersTemplate"; "required": false; }; "answerToShowFromSelectionText": { "alias": "answerToShowFromSelectionText"; "required": false; }; "showSaveAndLoadConfiguration": { "alias": "showSaveAndLoadConfiguration"; "required": false; }; "customDimensions": { "alias": "customDimensions"; "required": false; }; }, { "closeClick": "closeClick"; "cancelAnswers": "cancelAnswers"; "selectSelection": "selectSelection"; "repeatSelection": "repeatSelection"; "deleteSelection": "deleteSelection"; }, never, never, false, never>;
2883
2906
  }
2884
2907
 
2885
2908
  declare class CoSummaryLine implements AfterViewInit {
@@ -2931,7 +2954,7 @@ declare class CoSummaryLine implements AfterViewInit {
2931
2954
 
2932
2955
  declare class CoSummaryLineModule {
2933
2956
  static ɵfac: i0.ɵɵFactoryDeclaration<CoSummaryLineModule, never>;
2934
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoSummaryLineModule, [typeof CoSummaryLine], [typeof PipesModule, typeof i3.CommonModule, typeof i5.PriceDisplayPipeModule, typeof i5.ImageModule, typeof i5.IconModule], [typeof CoSummaryLine]>;
2957
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoSummaryLineModule, [typeof CoSummaryLine], [typeof PipesModule, typeof i3.CommonModule, typeof i3$1.PriceDisplayPipeModule, typeof i3$1.ImageModule, typeof i3$1.IconModule], [typeof CoSummaryLine]>;
2935
2958
  static ɵinj: i0.ɵɵInjectorDeclaration<CoSummaryLineModule>;
2936
2959
  }
2937
2960
 
@@ -2965,9 +2988,30 @@ declare class SelectionsSummaryLineModule {
2965
2988
  static ɵinj: i0.ɵɵInjectorDeclaration<SelectionsSummaryLineModule>;
2966
2989
  }
2967
2990
 
2991
+ declare class ConfigurationPresetComponent {
2992
+ iconService: IconCacheService;
2993
+ private _appEventService;
2994
+ readonly icons: typeof IconEnum;
2995
+ isSaveLoadMenuOpen: boolean;
2996
+ showClass(): boolean;
2997
+ closeSaveLoadMenu(): void;
2998
+ constructor(iconService: IconCacheService, _appEventService: AppEventService);
2999
+ toggleSaveLoadMenu(event: MouseEvent): void;
3000
+ handleSavePresetClicked(): void;
3001
+ handleLoadPresetClicked(): void;
3002
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationPresetComponent, never>;
3003
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurationPresetComponent, "co-configuration-preset", never, {}, {}, never, never, false, never>;
3004
+ }
3005
+
3006
+ declare class ConfigurationPresetModule {
3007
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationPresetModule, never>;
3008
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigurationPresetModule, [typeof ConfigurationPresetComponent], [typeof PipesModule, typeof i3$1.ButtonModule, typeof i3$1.IconModule, typeof i3$1.InputTextModule, typeof i4.CdkCopyToClipboard], [typeof ConfigurationPresetComponent]>;
3009
+ static ɵinj: i0.ɵɵInjectorDeclaration<ConfigurationPresetModule>;
3010
+ }
3011
+
2968
3012
  declare class SelectionsSummaryModule {
2969
3013
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectionsSummaryModule, never>;
2970
- static ɵmod: i0.ɵɵNgModuleDeclaration<SelectionsSummaryModule, [typeof SelectionsSummaryComponent], [typeof CoSummaryLineModule, typeof i3.CommonModule, typeof PipesModule, typeof i5.PriceDisplayPipeModule, typeof SelectionsSummaryLineModule, typeof i5.IconModule], [typeof SelectionsSummaryComponent]>;
3014
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SelectionsSummaryModule, [typeof SelectionsSummaryComponent], [typeof CoSummaryLineModule, typeof i3.CommonModule, typeof PipesModule, typeof i3$1.PriceDisplayPipeModule, typeof SelectionsSummaryLineModule, typeof i3$1.IconModule, typeof ConfigurationPresetModule], [typeof SelectionsSummaryComponent]>;
2971
3015
  static ɵinj: i0.ɵɵInjectorDeclaration<SelectionsSummaryModule>;
2972
3016
  }
2973
3017
 
@@ -3003,6 +3047,7 @@ declare class ProductConfiguratorComponent implements OnInit, OnDestroy {
3003
3047
  showLabel: boolean;
3004
3048
  canClose: boolean;
3005
3049
  customDimensions: boolean;
3050
+ showSaveAndLoadConfiguration: boolean;
3006
3051
  readonly showChange: EventEmitter<boolean>;
3007
3052
  readonly answerChosen: EventEmitter<Answer>;
3008
3053
  valutaSymbol: string;
@@ -3019,17 +3064,16 @@ declare class ProductConfiguratorComponent implements OnInit, OnDestroy {
3019
3064
  onSelectionsSummarySelectSelection(chosenOption: SelectorStructure): Promise<void>;
3020
3065
  handleCloseClick(): void;
3021
3066
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorComponent, never>;
3022
- static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorComponent, "co-product-configurator", never, { "show": { "alias": "show"; "required": false; }; "showHeaderInformation": { "alias": "showHeaderInformation"; "required": false; }; "showSelections": { "alias": "showSelections"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "canClose": { "alias": "canClose"; "required": false; }; "customDimensions": { "alias": "customDimensions"; "required": false; }; }, { "showChange": "showChange"; "answerChosen": "answerChosen"; }, never, never, false, never>;
3067
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorComponent, "co-product-configurator", never, { "show": { "alias": "show"; "required": false; }; "showHeaderInformation": { "alias": "showHeaderInformation"; "required": false; }; "showSelections": { "alias": "showSelections"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "canClose": { "alias": "canClose"; "required": false; }; "customDimensions": { "alias": "customDimensions"; "required": false; }; "showSaveAndLoadConfiguration": { "alias": "showSaveAndLoadConfiguration"; "required": false; }; }, { "showChange": "showChange"; "answerChosen": "answerChosen"; }, never, never, false, never>;
3023
3068
  }
3024
3069
 
3025
- declare class ProductConfiguratorSelectorComponent implements OnInit {
3070
+ declare class ProductConfiguratorSelectorComponent implements OnInit, OnChanges {
3026
3071
  configuratorConnectorService: ConfiguratorConnectorService;
3027
3072
  settingsService: SettingsService;
3028
3073
  iconService: IconCacheService;
3029
- showClass(): boolean;
3074
+ get hostClasses(): string;
3030
3075
  readonly icons: typeof IconEnum;
3031
3076
  exceptionContainer?: ElementRef;
3032
- get hostClasses(): string;
3033
3077
  selection: SelectorStructure;
3034
3078
  options: SelectorWithOptions[];
3035
3079
  lastNodeWithChildren: boolean;
@@ -3037,20 +3081,41 @@ declare class ProductConfiguratorSelectorComponent implements OnInit {
3037
3081
  treeLevelIndex: number;
3038
3082
  isActive: boolean;
3039
3083
  markAsException: boolean;
3084
+ showAll: boolean;
3085
+ suppressSubShowMore: boolean;
3086
+ useGroupedParentVisibility: boolean;
3040
3087
  activate: EventEmitter<void>;
3041
- get selectionIndexText(): string;
3042
3088
  selectionClass: string;
3043
3089
  listOfChoices: SelectorStructure[];
3044
3090
  activeChildIndex: number;
3091
+ localShowAll: boolean;
3092
+ get selectionIndexText(): string;
3093
+ get expandButtonText(): string;
3094
+ get suppressSubShowMoreForChildren(): boolean;
3095
+ get groupedRemainingTilesCount(): number;
3096
+ get useGroupedVisibilityForChildren(): boolean;
3045
3097
  constructor(configuratorConnectorService: ConfiguratorConnectorService, settingsService: SettingsService, iconService: IconCacheService);
3046
3098
  ngOnInit(): void;
3099
+ ngOnChanges(changes: SimpleChanges): void;
3047
3100
  showAndScroll(): void;
3048
3101
  onSubHeaderClick(): void;
3102
+ onShowAllClick(): void;
3103
+ getIsChildVisible(index: number): boolean;
3104
+ isGroupedSection(): boolean;
3105
+ shouldShowExpandButton(): boolean;
3106
+ getChildShowAll(): boolean;
3107
+ private _shouldBeVisible;
3108
+ private _setActiveChildIndexFromSelection;
3109
+ private _hasSelectedOption;
3110
+ private _countRemainingTiles;
3111
+ private _countGroupedTilesToReveal;
3112
+ private _countAllTiles;
3113
+ private _remainingTilesForLeaf;
3049
3114
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorComponent, never>;
3050
- static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorSelectorComponent, "co-product-configurator-selector", never, { "selection": { "alias": "selection"; "required": false; }; "options": { "alias": "options"; "required": false; }; "lastNodeWithChildren": { "alias": "lastNodeWithChildren"; "required": false; }; "selectionIndex": { "alias": "selectionIndex"; "required": false; }; "treeLevelIndex": { "alias": "treeLevelIndex"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "markAsException": { "alias": "markAsException"; "required": false; }; }, { "activate": "activate"; }, never, never, false, never>;
3115
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorSelectorComponent, "co-product-configurator-selector", never, { "selection": { "alias": "selection"; "required": false; }; "options": { "alias": "options"; "required": false; }; "lastNodeWithChildren": { "alias": "lastNodeWithChildren"; "required": false; }; "selectionIndex": { "alias": "selectionIndex"; "required": false; }; "treeLevelIndex": { "alias": "treeLevelIndex"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "markAsException": { "alias": "markAsException"; "required": false; }; "showAll": { "alias": "showAll"; "required": false; }; "suppressSubShowMore": { "alias": "suppressSubShowMore"; "required": false; }; "useGroupedParentVisibility": { "alias": "useGroupedParentVisibility"; "required": false; }; }, { "activate": "activate"; }, never, never, false, never>;
3051
3116
  }
3052
3117
 
3053
- declare class ProductConfiguratorSelectorOptionComponent implements OnInit {
3118
+ declare class ProductConfiguratorSelectorOptionComponent implements OnInit, OnChanges {
3054
3119
  configuratorConnectorService: ConfiguratorConnectorService;
3055
3120
  settingsService: SettingsService;
3056
3121
  productConfiguratorService: ProductConfiguratorService;
@@ -3058,6 +3123,8 @@ declare class ProductConfiguratorSelectorOptionComponent implements OnInit {
3058
3123
  selection: SelectorStructure;
3059
3124
  listOfChoices: SelectorStructure[];
3060
3125
  markAsException: boolean;
3126
+ showGlobalAll: boolean;
3127
+ groupedSubShow: boolean;
3061
3128
  configurationDisplayOption: typeof ConfigurationDisplayOption;
3062
3129
  selectionClass: string;
3063
3130
  showAllTiles: boolean;
@@ -3065,14 +3132,18 @@ declare class ProductConfiguratorSelectorOptionComponent implements OnInit {
3065
3132
  maxVisibleSmallTiles: number;
3066
3133
  visibleAnswers: SelectorStructure[];
3067
3134
  remainingTilesCount: number;
3135
+ readonly smallTileOptions: ConfigurationDisplayOption[];
3136
+ readonly largeTileOptions: ConfigurationDisplayOption[];
3068
3137
  constructor(configuratorConnectorService: ConfiguratorConnectorService, settingsService: SettingsService, productConfiguratorService: ProductConfiguratorService);
3069
3138
  ngOnInit(): void;
3139
+ ngOnChanges(changes: SimpleChanges): void;
3070
3140
  selectionClicked(answer: SelectorStructure): void;
3071
3141
  showMore(): void;
3072
3142
  showLess(): void;
3143
+ getTileClass(): string;
3073
3144
  private _calculateVisibleAnswers;
3074
3145
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorOptionComponent, never>;
3075
- static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorSelectorOptionComponent, "co-product-configurator-selector-option", never, { "selection": { "alias": "selection"; "required": false; }; "listOfChoices": { "alias": "listOfChoices"; "required": false; }; "markAsException": { "alias": "markAsException"; "required": false; }; }, {}, never, never, false, never>;
3146
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorSelectorOptionComponent, "co-product-configurator-selector-option", never, { "selection": { "alias": "selection"; "required": false; }; "listOfChoices": { "alias": "listOfChoices"; "required": false; }; "markAsException": { "alias": "markAsException"; "required": false; }; "showGlobalAll": { "alias": "showGlobalAll"; "required": false; }; "groupedSubShow": { "alias": "groupedSubShow"; "required": false; }; }, {}, never, never, false, never>;
3076
3147
  }
3077
3148
 
3078
3149
  declare class ProductConfiguratorSelectorOptionTileComponent {
@@ -3083,16 +3154,17 @@ declare class ProductConfiguratorSelectorOptionTileComponent {
3083
3154
  readonly icons: typeof IconEnum;
3084
3155
  option: SelectorStructure;
3085
3156
  tileClass: string;
3157
+ noLabel: boolean;
3086
3158
  selectionClicked: EventEmitter<void>;
3087
3159
  constructor(configuratorConnectorService: ConfiguratorConnectorService, iconService: IconCacheService, settingsService: SettingsService);
3088
3160
  changeSelection(): void;
3089
3161
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorOptionTileComponent, never>;
3090
- static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorSelectorOptionTileComponent, "co-product-configurator-selector-option-tile", never, { "option": { "alias": "option"; "required": false; }; "tileClass": { "alias": "tileClass"; "required": false; }; }, { "selectionClicked": "selectionClicked"; }, never, never, false, never>;
3162
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProductConfiguratorSelectorOptionTileComponent, "co-product-configurator-selector-option-tile", never, { "option": { "alias": "option"; "required": false; }; "tileClass": { "alias": "tileClass"; "required": false; }; "noLabel": { "alias": "noLabel"; "required": false; }; }, { "selectionClicked": "selectionClicked"; }, never, never, false, never>;
3091
3163
  }
3092
3164
 
3093
3165
  declare class ProductConfiguratorSelectorOptionTileModule {
3094
3166
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorOptionTileModule, never>;
3095
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionTileModule, [typeof ProductConfiguratorSelectorOptionTileComponent], [typeof i5.IconModule, typeof i3.CommonModule, typeof PipesModule], [typeof ProductConfiguratorSelectorOptionTileComponent]>;
3167
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionTileModule, [typeof ProductConfiguratorSelectorOptionTileComponent], [typeof i3$1.IconModule, typeof i3.CommonModule, typeof PipesModule], [typeof ProductConfiguratorSelectorOptionTileComponent]>;
3096
3168
  static ɵinj: i0.ɵɵInjectorDeclaration<ProductConfiguratorSelectorOptionTileModule>;
3097
3169
  }
3098
3170
 
@@ -3112,7 +3184,7 @@ declare class ProductConfiguratorOptionCheckboxComponent {
3112
3184
 
3113
3185
  declare class ProductConfiguratorSelectorOptionCheckboxModule {
3114
3186
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorOptionCheckboxModule, never>;
3115
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionCheckboxModule, [typeof ProductConfiguratorOptionCheckboxComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i5.IconModule], [typeof ProductConfiguratorOptionCheckboxComponent]>;
3187
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionCheckboxModule, [typeof ProductConfiguratorOptionCheckboxComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i3$1.IconModule], [typeof ProductConfiguratorOptionCheckboxComponent]>;
3116
3188
  static ɵinj: i0.ɵɵInjectorDeclaration<ProductConfiguratorSelectorOptionCheckboxModule>;
3117
3189
  }
3118
3190
 
@@ -3132,7 +3204,7 @@ declare class ProductConfiguratorSelectorOptionButtonComponent {
3132
3204
 
3133
3205
  declare class ProductConfiguratorSelectorOptionButtonModule {
3134
3206
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorOptionButtonModule, never>;
3135
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionButtonModule, [typeof ProductConfiguratorSelectorOptionButtonComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i5.IconModule], [typeof ProductConfiguratorSelectorOptionButtonComponent]>;
3207
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionButtonModule, [typeof ProductConfiguratorSelectorOptionButtonComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i3$1.IconModule], [typeof ProductConfiguratorSelectorOptionButtonComponent]>;
3136
3208
  static ɵinj: i0.ɵɵInjectorDeclaration<ProductConfiguratorSelectorOptionButtonModule>;
3137
3209
  }
3138
3210
 
@@ -3153,7 +3225,7 @@ declare class ProductConfiguratorSelectorOptionDropDownComponent {
3153
3225
 
3154
3226
  declare class ProductConfiguratorSelectorOptionDropdownModule {
3155
3227
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorOptionDropdownModule, never>;
3156
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionDropdownModule, [typeof ProductConfiguratorSelectorOptionDropDownComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i5.IconModule], [typeof ProductConfiguratorSelectorOptionDropDownComponent]>;
3228
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorOptionDropdownModule, [typeof ProductConfiguratorSelectorOptionDropDownComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i3$1.IconModule], [typeof ProductConfiguratorSelectorOptionDropDownComponent]>;
3157
3229
  static ɵinj: i0.ɵɵInjectorDeclaration<ProductConfiguratorSelectorOptionDropdownModule>;
3158
3230
  }
3159
3231
 
@@ -3165,19 +3237,50 @@ declare class ProductConfiguratorSelectorOptionModule {
3165
3237
 
3166
3238
  declare class ProductConfiguratorSelectorModule {
3167
3239
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorSelectorModule, never>;
3168
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorModule, [typeof ProductConfiguratorSelectorComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i5.IconModule, typeof ProductConfiguratorSelectorOptionModule], [typeof ProductConfiguratorSelectorComponent]>;
3240
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorSelectorModule, [typeof ProductConfiguratorSelectorComponent], [typeof PipesModule, typeof i3.CommonModule, typeof i3$1.IconModule, typeof ProductConfiguratorSelectorOptionModule], [typeof ProductConfiguratorSelectorComponent]>;
3169
3241
  static ɵinj: i0.ɵɵInjectorDeclaration<ProductConfiguratorSelectorModule>;
3170
3242
  }
3171
3243
 
3172
3244
  declare class ProductConfiguratorModule {
3173
3245
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductConfiguratorModule, never>;
3174
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorModule, [typeof ProductConfiguratorComponent], [typeof i3.CommonModule, typeof i3$1.MatIconModule, typeof i4.MatButtonModule, typeof i5.CardModule, typeof SlideoutModule, typeof i5.PriceDisplayPipeModule, typeof i5.ButtonModule, typeof i5.InputTextModule, typeof i7.FormsModule, typeof PipesModule, typeof i5.IconModule, typeof i5.TooltipDirectiveModule, typeof ProductConfiguratorSelectorModule], [typeof ProductConfiguratorComponent]>;
3246
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProductConfiguratorModule, [typeof ProductConfiguratorComponent], [typeof i3.CommonModule, typeof i3$2.MatIconModule, typeof i4$1.MatButtonModule, typeof i3$1.CardModule, typeof SlideoutModule, typeof i3$1.PriceDisplayPipeModule, typeof i3$1.ButtonModule, typeof i3$1.InputTextModule, typeof i7.FormsModule, typeof PipesModule, typeof i3$1.IconModule, typeof i3$1.TooltipDirectiveModule, typeof ProductConfiguratorSelectorModule, typeof ConfigurationPresetModule], [typeof ProductConfiguratorComponent]>;
3175
3247
  static ɵinj: i0.ɵɵInjectorDeclaration<ProductConfiguratorModule>;
3176
3248
  }
3177
3249
 
3250
+ declare class ConfigurationPresetDialogComponent implements OnDestroy {
3251
+ iconService: IconCacheService;
3252
+ private _configuringService;
3253
+ private _configuratorConnectorService;
3254
+ private _dictionaryService;
3255
+ private _appEventService;
3256
+ readonly icons: typeof IconEnum;
3257
+ readonly presetDialogMode: typeof PresetDialogMode;
3258
+ showClass(): boolean;
3259
+ showDialog: boolean;
3260
+ instanceIdInput: string;
3261
+ dialogMode: PresetDialogMode;
3262
+ showValidationErrors: boolean;
3263
+ validationError: string;
3264
+ private _subs;
3265
+ constructor(iconService: IconCacheService, _configuringService: ConfiguringService, _configuratorConnectorService: ConfiguratorConnectorService, _dictionaryService: DictionaryService, _appEventService: AppEventService);
3266
+ ngOnDestroy(): void;
3267
+ handleOpenDialog(mode: PresetDialogMode): void;
3268
+ handleCloseClick(): void;
3269
+ handleCopySuccess(): void;
3270
+ loadConfiguration(): void;
3271
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationPresetDialogComponent, never>;
3272
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurationPresetDialogComponent, "co-configuration-preset-dialog", never, {}, {}, never, never, false, never>;
3273
+ }
3274
+
3275
+ declare class ConfigurationPresetDialogModule {
3276
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationPresetDialogModule, never>;
3277
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigurationPresetDialogModule, [typeof ConfigurationPresetDialogComponent], [typeof PipesModule, typeof i3$1.ButtonModule, typeof i3$1.IconModule, typeof i3$1.InputTextModule, typeof i4.CdkCopyToClipboard], [typeof ConfigurationPresetDialogComponent]>;
3278
+ static ɵinj: i0.ɵɵInjectorDeclaration<ConfigurationPresetDialogModule>;
3279
+ }
3280
+
3178
3281
  declare class ThreedselectorModule {
3179
3282
  static ɵfac: i0.ɵɵFactoryDeclaration<ThreedselectorModule, never>;
3180
- static ɵmod: i0.ɵɵNgModuleDeclaration<ThreedselectorModule, [typeof ThreedselectorComponent], [typeof LiteSelectorModule, typeof ProductConfiguratorModule, typeof i3.CommonModule], [typeof ThreedselectorComponent]>;
3283
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ThreedselectorModule, [typeof ThreedselectorComponent], [typeof LiteSelectorModule, typeof ProductConfiguratorModule, typeof i3.CommonModule, typeof ConfigurationPresetDialogModule], [typeof ThreedselectorComponent]>;
3181
3284
  static ɵinj: i0.ɵɵInjectorDeclaration<ThreedselectorModule>;
3182
3285
  }
3183
3286
 
@@ -3239,7 +3342,7 @@ declare class ElementButtonsComponent implements OnDestroy {
3239
3342
 
3240
3343
  declare class ElementButtonsModule {
3241
3344
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementButtonsModule, never>;
3242
- static ɵmod: i0.ɵɵNgModuleDeclaration<ElementButtonsModule, [typeof ElementButtonsComponent], [typeof i5.IconModule, typeof i3.CommonModule], [typeof ElementButtonsComponent]>;
3345
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ElementButtonsModule, [typeof ElementButtonsComponent], [typeof i3$1.IconModule, typeof i3.CommonModule], [typeof ElementButtonsComponent]>;
3243
3346
  static ɵinj: i0.ɵɵInjectorDeclaration<ElementButtonsModule>;
3244
3347
  }
3245
3348
 
@@ -3267,7 +3370,7 @@ declare class ElementToolbarComponent implements OnDestroy {
3267
3370
 
3268
3371
  declare class ElementToolbarModule {
3269
3372
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementToolbarModule, never>;
3270
- static ɵmod: i0.ɵɵNgModuleDeclaration<ElementToolbarModule, [typeof ElementToolbarComponent], [typeof PipesModule, typeof i5.IconModule, typeof i3.CommonModule], [typeof ElementToolbarComponent]>;
3373
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ElementToolbarModule, [typeof ElementToolbarComponent], [typeof PipesModule, typeof i3$1.IconModule, typeof i3.CommonModule], [typeof ElementToolbarComponent]>;
3271
3374
  static ɵinj: i0.ɵɵInjectorDeclaration<ElementToolbarModule>;
3272
3375
  }
3273
3376
 
@@ -3291,7 +3394,7 @@ declare class SceneOptionsComponent implements OnDestroy {
3291
3394
 
3292
3395
  declare class SelectionsModule {
3293
3396
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectionsModule, never>;
3294
- static ɵmod: i0.ɵɵNgModuleDeclaration<SelectionsModule, [typeof SceneOptionsComponent], [typeof i3.CommonModule, typeof i5.IconModule, typeof PipesModule], [typeof SceneOptionsComponent]>;
3397
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SelectionsModule, [typeof SceneOptionsComponent], [typeof i3.CommonModule, typeof i3$1.IconModule, typeof PipesModule], [typeof SceneOptionsComponent]>;
3295
3398
  static ɵinj: i0.ɵɵInjectorDeclaration<SelectionsModule>;
3296
3399
  }
3297
3400
 
@@ -60,10 +60,10 @@
60
60
  }
61
61
 
62
62
  &:not(.custom-dimensions) co-slideout {
63
- width: 500px;
63
+ width: 640px;
64
64
  max-width: 60vw;
65
65
  top: 40px;
66
- max-height: calc(100% - 100px);
66
+ max-height: calc(100% - 40px);
67
67
  padding: 30px;
68
68
  }
69
69
 
@@ -0,0 +1,42 @@
1
+ @import "../../../style/mixin.scss";
2
+
3
+ @include export-module('co-configuration-preset-layout') {
4
+ .co-configuration-preset {
5
+ .save-load-configuration-buttons {
6
+ display: flex;
7
+ justify-content: end;
8
+ flex-direction: column;
9
+ .preset-button {
10
+ cursor: pointer;
11
+ width: 100%;
12
+ padding: 0;
13
+ background: none;
14
+ }
15
+ }
16
+ .save-load-config-wrapper {
17
+ position: relative;
18
+ .open-save-load {
19
+ cursor: pointer;
20
+ }
21
+ }
22
+
23
+ .save-load-configuration-buttons {
24
+ position: absolute;
25
+ top: 100%;
26
+ right: 0;
27
+ opacity: 0;
28
+ visibility: hidden;
29
+ transform: translateY(-8px);
30
+ pointer-events: none;
31
+ transition: opacity 200ms ease, transform 200ms ease;
32
+ z-index: 10;
33
+ }
34
+
35
+ .save-load-configuration-buttons.is-open {
36
+ opacity: 1;
37
+ visibility: visible;
38
+ transform: translateY(0);
39
+ pointer-events: auto;
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,5 @@
1
+ :root {
2
+ --success-text-color: #155724;
3
+ --success-background-color: #d4edda;
4
+ --success-border-color: #c3e6cb;
5
+ }
@@ -0,0 +1,20 @@
1
+ @import "../../../style/mixin.scss";
2
+
3
+ @include export-module('co-configuration-preset-theme') {
4
+ .co-configuration-preset {
5
+ .save-load-configuration-buttons {
6
+ box-shadow: 1px 1px 4px 1px rgba(151, 146, 132, 0.3);
7
+ padding: 5px;
8
+ .preset-button {
9
+ color: var(--link-text-color);
10
+ .co-icon {
11
+ svg {
12
+ path {
13
+ fill: var(--link-text-color);
14
+ }
15
+ }
16
+ }
17
+ }
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,3 @@
1
+ @use './_material-definition.scss';
2
+ @use './_layout.scss';
3
+ @use './_theme.scss';