@colijnit/corecomponents_v12 12.0.18 → 12.0.21

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 (54) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +283 -81
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12.d.ts +14 -16
  4. package/colijnit-corecomponents_v12.metadata.json +1 -1
  5. package/esm2015/colijnit-corecomponents_v12.js +15 -17
  6. package/esm2015/lib/components/base/base-input.component.js +181 -36
  7. package/esm2015/lib/components/carousel-3d/carousel-3d.component.js +12 -6
  8. package/esm2015/lib/components/co-dialog/co-dialog.module.js +1 -3
  9. package/esm2015/lib/components/collapsible/collapsible.component.js +10 -2
  10. package/esm2015/lib/components/drop-down-list/drop-down-list.component.js +1 -1
  11. package/esm2015/lib/components/drop-down-list/drop-down.module.js +6 -6
  12. package/esm2015/lib/components/form/form.component.js +18 -18
  13. package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +1 -1
  14. package/esm2015/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.component.js +1 -1
  15. package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +1 -1
  16. package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +1 -1
  17. package/esm2015/lib/components/input-text/input-text.component.js +15 -4
  18. package/esm2015/lib/components/input-text/input-text.module.js +1 -1
  19. package/esm2015/lib/components/input-textarea/input-textarea.component.js +8 -8
  20. package/esm2015/lib/components/multi-select-list/multi-select-list.module.js +6 -6
  21. package/esm2015/lib/components/validation-error/validation-error.component.js +13 -1
  22. package/esm2015/lib/components/validation-error/validation-error.module.js +4 -2
  23. package/esm2015/public-api.js +3 -1
  24. package/fesm2015/colijnit-corecomponents_v12.js +246 -69
  25. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  26. package/lib/components/base/base-input.component.d.ts +23 -5
  27. package/lib/components/co-kanban/style/_layout.scss +4 -0
  28. package/lib/components/co-kanban/style/_material-definition.scss +2 -0
  29. package/lib/components/drop-down-list/style/_layout.scss +2 -1
  30. package/lib/components/drop-down-list/style/_material-definition.scss +2 -0
  31. package/lib/components/form/form.component.d.ts +2 -3
  32. package/lib/components/input-checkbox/style/_material-definition.scss +1 -2
  33. package/lib/components/input-checkbox/style/material.scss +2 -0
  34. package/lib/components/input-checkbox-multi-select/style/_layout.scss +5 -1
  35. package/lib/components/input-checkbox-multi-select/style/_material-definition.scss +2 -0
  36. package/lib/components/input-combo-box/style/_layout.scss +4 -2
  37. package/lib/components/input-combo-box/style/_material-definition.scss +2 -0
  38. package/lib/components/input-date-picker/style/_layout.scss +2 -1
  39. package/lib/components/input-date-picker/style/_material-definition.scss +4 -0
  40. package/lib/components/input-listbox/style/_layout.scss +0 -1
  41. package/lib/components/input-listbox/style/_material-definition.scss +2 -2
  42. package/lib/components/input-text/style/_layout.scss +32 -0
  43. package/lib/components/input-text/style/_material-definition.scss +3 -0
  44. package/lib/components/input-text/style/_theme.scss +21 -1
  45. package/lib/components/input-textarea/style/_theme.scss +1 -0
  46. package/lib/components/multi-select-list/style/_layout.scss +2 -1
  47. package/lib/components/multi-select-list/style/_material-definition.scss +2 -0
  48. package/lib/components/multi-select-list/style/_theme.scss +5 -1
  49. package/lib/components/validation-error/style/_layout.scss +10 -2
  50. package/lib/components/validation-error/validation-error.component.d.ts +6 -0
  51. package/lib/style/_input.mixins.scss +4 -3
  52. package/lib/style/_variables.scss +41 -1
  53. package/package.json +1 -1
  54. package/public-api.d.ts +2 -0
@@ -16,9 +16,11 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
16
16
  protected ngZoneWrapper?: NgZoneWrapperService;
17
17
  elementRef?: ElementRef;
18
18
  validationErrorContainer: ViewContainerRef;
19
+ _ngModel: NgModel;
19
20
  get ngModel(): NgModel;
20
21
  static BaseFormInputComponentIndex: number;
21
22
  static HiddenClass: string;
23
+ showSaveCancel: boolean;
22
24
  set model(value: T);
23
25
  get model(): T;
24
26
  label: string;
@@ -61,7 +63,6 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
61
63
  readonly modelChange: EventEmitter<any>;
62
64
  readonly userModelChange: EventEmitter<any>;
63
65
  readonly hiddenChange: EventEmitter<boolean>;
64
- _ngModel: NgModel;
65
66
  focused: boolean;
66
67
  formComponent: FormComponent;
67
68
  formInput: boolean;
@@ -81,17 +82,25 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
81
82
  get touchedInvalid(): boolean;
82
83
  get valid(): boolean;
83
84
  get validationDisabled(): boolean;
85
+ onClick(event: MouseEvent): void;
86
+ onFocusIn(): void;
87
+ handleDocumentScroll(): void;
88
+ handleWindowResize(): void;
89
+ handleKeyDown(event: KeyboardEvent): void;
84
90
  get canChange(): boolean;
85
91
  get control(): FormControl;
86
92
  get formInputInstance(): BaseInputComponent<T>;
87
93
  get isDestroyed(): boolean;
88
- showValidationError(error: string): void;
89
94
  input: HTMLInputElement | HTMLTextAreaElement;
95
+ keepFocus: boolean;
96
+ canSaveOrCancel: boolean;
90
97
  objectConfigName: string;
91
98
  protected _markedAsUserTouched: boolean;
92
99
  protected _destroyed: boolean;
93
100
  protected _hasOnPushCdStrategy: boolean;
94
101
  protected _model: T;
102
+ protected _initialModel: T;
103
+ protected _initialModelSet: boolean;
95
104
  private _errorValidationComponent;
96
105
  private _decimals;
97
106
  private _hidden;
@@ -111,15 +120,18 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
111
120
  ngOnInit(): void;
112
121
  ngAfterViewInit(): void;
113
122
  ngOnDestroy(): void;
123
+ commit: (model: any) => Promise<boolean>;
124
+ commitClick(event?: MouseEvent): Promise<void>;
125
+ cancelClick(event?: MouseEvent): void;
126
+ showValidationError(error: string): void;
114
127
  /**
115
128
  * Emits a modelChange event with given value, indicating that the model of this form input
116
129
  * has changed and its new value is given value. Also emits userModelChange if markedAsUserTouched.
117
130
  */
118
131
  setModel(value: any): void;
119
- onClick(event: MouseEvent): void;
120
- onFocusIn(): void;
121
132
  requestFocus(): void;
122
- doBlur(): void;
133
+ doFocus(event: any): any;
134
+ doBlur(event?: any): any;
123
135
  detectChanges(): void;
124
136
  markForCheck(): void;
125
137
  detectChangesAfterAngular(): void;
@@ -148,4 +160,10 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
148
160
  private _updateSelfInForm;
149
161
  private _removeSelfFromForm;
150
162
  private _addSelfToForm;
163
+ private _prepareInput;
164
+ private _findInputNode;
165
+ private _positionValidationError;
166
+ private _handleKeyDown;
167
+ private _createNewFocusEvent;
168
+ private _setFocusOnNextPossibleInput;
151
169
  }
@@ -11,6 +11,10 @@
11
11
  color: $cc-kanban-header-text-color;
12
12
  }
13
13
 
14
+ div.e-kanban-content {
15
+ max-height: $cc-kanban-content-max-height;
16
+ }
17
+
14
18
  div.e-item-count {
15
19
  font-family: $cc-kanban-header-item-count-font-family;
16
20
  font-size: $cc-kanban-header-item-count-font-size;
@@ -11,6 +11,8 @@ $cc-kanban-header-border: 1px solid transparent !default;
11
11
  $cc-kanban-header-padding: 5px 8px !default;
12
12
  $cc-kanban-header-margin-bottom: 0 !default;
13
13
 
14
+ $cc-kanban-content-max-height: auto !default;
15
+
14
16
  $cc-kanban-card-background-color: #ffffff !default;
15
17
  $cc-kanban-card-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 16%) !default;
16
18
  $cc-kanban-card-border: 1px solid transparent !default;
@@ -1,7 +1,8 @@
1
1
  @include export-module('cc-co-drop-down-list-layout') {
2
2
  .co-drop-down-list {
3
- position: relative; // for validation message
4
3
  @include input;
4
+ font-family: $cc-co-drop-down-list-font-family;
5
+ font-size: $cc-co-drop-down-list-font-size;
5
6
  .e-dropdownlist {
6
7
  height: 100%;
7
8
  span {
@@ -0,0 +1,2 @@
1
+ $cc-co-drop-down-list-font-family: $cc-font-family !default;
2
+ $cc-co-drop-down-list-font-size: $cc-font-size-default !default;
@@ -1,8 +1,8 @@
1
1
  import { AfterViewInit, EventEmitter, OnDestroy, OnInit } from "@angular/core";
2
2
  import { FormControl, FormGroup } from "@angular/forms";
3
3
  import { Subject } from "rxjs";
4
- import { BaseInputComponent } from '../base/base-input.component';
5
- import { FormMasterService } from '../../core/service/form-master.service';
4
+ import { BaseInputComponent } from "../base/base-input.component";
5
+ import { FormMasterService } from "../../core/service/form-master.service";
6
6
  export declare class FormComponent implements AfterViewInit, OnDestroy, OnInit {
7
7
  private _formMaster;
8
8
  set readonly(value: boolean);
@@ -31,7 +31,6 @@ export declare class FormComponent implements AfterViewInit, OnDestroy, OnInit {
31
31
  checkUpdateValidity(): boolean;
32
32
  isTouched(): boolean;
33
33
  isValid(): boolean;
34
- onEnterKey(event: KeyboardEvent): void;
35
34
  reset(): void;
36
35
  submit(throughFormMaster?: boolean): boolean;
37
36
  showErrorTooltipOnFormGroupControl(key: string): void;
@@ -1,2 +1 @@
1
- @import "ej2-base/styles/material.scss";
2
- @import "ej2-buttons/styles/material.scss";
1
+
@@ -3,3 +3,5 @@
3
3
  @import "./material-definition";
4
4
  @import "./layout";
5
5
  @import "./theme";
6
+ @import "ej2-base/styles/material.scss";
7
+ @import "ej2-buttons/styles/material.scss";
@@ -1,3 +1,7 @@
1
1
  @include export-module('cc-input-checkbox-multi-select-layout') {
2
-
2
+ .co-input-checkbox-multi-select {
3
+ @include input;
4
+ font-family: $cc-co-input-checkbox-multi-select-font-family;
5
+ font-size: $cc-co-input-checkbox-multi-select-font-size;
6
+ }
3
7
  }
@@ -1,3 +1,5 @@
1
+ $cc-co-input-checkbox-multi-select-font-family: $cc-font-family !default;
2
+ $cc-co-input-checkbox-multi-select-font-size: $cc-font-size-default !default;
1
3
  @import 'ej2-base/styles/material.scss';
2
4
  @import 'ej2-buttons/styles/material.scss';
3
5
  @import 'ej2-dropdowns/styles/material.scss';
@@ -1,11 +1,13 @@
1
1
  @include export-module('cc-input-combo-box-layout') {
2
2
  .co-input-combo-box {
3
- position: relative; // for validation message
4
3
  @include input;
4
+ font-family: $cc-co-input-combo-box-font-family;
5
+ font-size: $cc-co-input-combo-box-font-size;
6
+ border-bottom: 1px solid $cc-color-border;
5
7
  .e-combobox {
6
8
  height: 100%;
7
9
  div {
8
- height: 100%;
10
+ height: calc(100% - #{$cc-input-margin-top});
9
11
  }
10
12
  }
11
13
  }
@@ -0,0 +1,2 @@
1
+ $cc-co-input-combo-box-font-family: $cc-font-family !default;
2
+ $cc-co-input-combo-box-font-size: $cc-font-size-default !default;
@@ -1,6 +1,7 @@
1
1
  @include export-module('cc-input-date-picker-layout') {
2
2
  .co-input-date {
3
- position: relative; // for validation message
4
3
  @include input;
4
+ font-family: $cc-co-input-date-font-family;
5
+ font-size: $cc-co-input-date-font-size;
5
6
  }
6
7
  }
@@ -1,3 +1,7 @@
1
+ $cc-co-input-date-font-family: $cc-font-family !default;
2
+ $cc-co-input-date-font-size: $cc-font-size-default !default;
3
+ $input-border: none;
4
+ @import 'ej2-inputs/styles/input/_material-definition.scss';
1
5
  @import 'ej2-base/styles/material.scss';
2
6
  @import 'ej2-buttons/styles/material.scss';
3
7
  @import 'ej2-inputs/styles/material.scss';
@@ -1,6 +1,5 @@
1
1
  @include export-module('cc-input-listbox-layout') {
2
2
  .co-input-listbox {
3
- position: relative; // for validation message
4
3
  @include input;
5
4
  font-family: $cc-co-input-listbox-font-family;
6
5
  font-size: $cc-co-input-listbox-font-size;
@@ -3,8 +3,8 @@ $cc-co-input-listbox-font-size: $cc-font-size-default !default;
3
3
  $cc-co-input-listbox-font-color: $cc-color-dark !default;
4
4
  $cc-co-input-listbox-max-height: 200px !default;
5
5
  $cc-co-input-listbox-header-font-family: $cc-font-family !default;
6
- $cc-co-input-listbox-header-font-size: $cc-font-size-default !default;
7
- $cc-co-input-listbox-header-font-color: $cc-color-dark !default;
6
+ $cc-co-input-listbox-header-font-size: $cc-font-size-input-label !default;
7
+ $cc-co-input-listbox-header-font-color: $cc-color-label !default;
8
8
  $cc-co-input-listbox-header-margin: 5px 0 !default;
9
9
  $cc-co-input-listbox-item-selected-background-color: $cc-color-action !default;
10
10
  $cc-co-input-listbox-item-selected-color: $cc-color-light !default;
@@ -12,5 +12,37 @@
12
12
  margin: ($cc-item-size - 8px) / 2 0 0;
13
13
  outline: none;
14
14
  }
15
+ .input-save-cancel-button-wrapper {
16
+ position: absolute;
17
+ padding: 5px 0 0 5px;
18
+ top: -36px;
19
+ right: 0;
20
+ display: flex;
21
+ column-gap: 2px;
22
+ transform-origin: center bottom;
23
+ .input-save-cancel-button {
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: center;
27
+ height: 30px;
28
+ width: 30px;
29
+ &.save {
30
+ background: $cc-co-input-text-button-background;
31
+ &:before {
32
+ content: "\2713";
33
+ font-size: 20px;
34
+ color: $cc-co-input-text-commit-color;
35
+ }
36
+ }
37
+ &.cancel {
38
+ background: #DAD9D9;
39
+ &:before {
40
+ content: "x";
41
+ font-size: 20px;
42
+ color: $cc-co-input-text-cancel-color;
43
+ }
44
+ }
45
+ }
46
+ }
15
47
  }
16
48
  }
@@ -2,3 +2,6 @@ $cc-co-input-text-font-family: $cc-font-family !default;
2
2
  $cc-co-input-text-font-size: $cc-font-size-default !default;
3
3
  $cc-co-input-text-font-color: $cc-color-dark !default;
4
4
  $cc-co-input-text-border-color: $cc-color-border !default;
5
+ $cc-co-input-text-button-background: $cc-color-form-input-border !default;
6
+ $cc-co-input-text-commit-color: green !default;
7
+ $cc-co-input-text-cancel-color: red !default;
@@ -1,3 +1,23 @@
1
1
  @include export-module('cc-input-text-theme') {
2
-
2
+ .co-input-text {
3
+ input {
4
+ background: transparent;
5
+ }
6
+ .input-save-cancel-button-wrapper {
7
+ .input-save-cancel-button {
8
+ &.save {
9
+ background: $cc-co-input-text-button-background;
10
+ &:before {
11
+ color: $cc-co-input-text-commit-color;
12
+ }
13
+ }
14
+ &.cancel {
15
+ background: $cc-co-input-text-button-background;
16
+ &:before {
17
+ color: $cc-co-input-text-cancel-color;
18
+ }
19
+ }
20
+ }
21
+ }
22
+ }
3
23
  }
@@ -2,6 +2,7 @@
2
2
  .co-input-textarea {
3
3
  color: $cc-co-input-textarea-font-color;
4
4
  textarea {
5
+ background: transparent;
5
6
  border-color: $cc-co-input-textarea-border-color;
6
7
  }
7
8
  }
@@ -1,7 +1,8 @@
1
1
  @include export-module('cc-multi-select-list-layout') {
2
2
  .co-multi-select-list {
3
- position: relative; // for validation message
4
3
  @include input;
4
+ font-family: $cc-co-multi-select-list-font-family;
5
+ font-size: $cc-co-multi-select-list-font-size;
5
6
  .e-multiselect {
6
7
  height: 100%;
7
8
  div {
@@ -1,3 +1,5 @@
1
+ $cc-co-multi-select-list-font-family: $cc-font-family !default;
2
+ $cc-co-multi-select-list-font-size: $cc-font-size-default !default;
1
3
  @import 'ej2-base/styles/material.scss';
2
4
  @import 'ej2-buttons/styles/material.scss';
3
5
  @import 'ej2-dropdowns/styles/material.scss';
@@ -1,3 +1,7 @@
1
1
  @include export-module('cc-multi-select-list-theme') {
2
-
2
+ .co-multi-select-list {
3
+ input {
4
+ color: blue;
5
+ }
6
+ }
3
7
  }
@@ -2,8 +2,11 @@
2
2
  .co-validation-error {
3
3
  font-family: $cc-validation-error-font-family;
4
4
  font-size: $cc-validation-error-font-size;
5
- display: block;
6
- position: absolute;
5
+ display: flex;
6
+ flex-direction: row;
7
+ align-items: center;
8
+ column-gap: 10px;
9
+ position: fixed;
7
10
  padding: $cc-validation-error-padding;
8
11
  min-height: 20px;
9
12
  min-width: 200px;
@@ -32,6 +35,11 @@
32
35
  z-index: 1;
33
36
  }
34
37
  }
38
+ .validation-error-content {
39
+ display: flex;
40
+ flex-direction: row;
41
+ align-items: center;
42
+ }
35
43
  }
36
44
 
37
45
 
@@ -1,4 +1,10 @@
1
+ import { IconCacheService } from "../icon/icon-cache.service";
1
2
  export declare class ValidationErrorComponent {
3
+ icons: IconCacheService;
4
+ readonly Icons: any;
2
5
  error: string;
6
+ top: number;
7
+ left: number;
3
8
  showClass(): boolean;
9
+ constructor(icons: IconCacheService);
4
10
  }
@@ -6,6 +6,7 @@
6
6
  .required-indicator {
7
7
  display: none;
8
8
  position: absolute;
9
+ background: transparent;
9
10
  top: $cc-input-required-mark-width-height;
10
11
  right: $cc-input-required-mark-width-height;
11
12
  pointer-events: none;
@@ -16,12 +17,12 @@
16
17
  content: "\2713";
17
18
  width: $cc-input-required-mark-width-height;
18
19
  height: $cc-input-required-mark-width-height;
19
- background-color: white;
20
+ background: transparent;
20
21
  color: $cc-color-valid;
21
22
  }
22
23
  }
23
24
  &:not(.custom-height) {
24
- height: $cc-item-size - 8px;
25
+ height: $cc-item-size - 10px;
25
26
  padding-bottom: 7px;
26
27
  border-bottom: 1px solid;
27
28
  border-color: $cc-color-border;
@@ -41,7 +42,7 @@
41
42
  label {
42
43
  width: 100%;
43
44
  color: $cc-color-label;
44
- font-size: 13px;
45
+ font-size: $cc-font-size-input-label;
45
46
  position: absolute;
46
47
  top: $cc-item-size / 2;
47
48
  transform: translateY(-50%);
@@ -82,11 +82,13 @@ $cc-shadow-size-small: 5px !default;
82
82
  $cc-item-size-very-small: 20px !default;
83
83
  $cc-action-size: 40px !default;
84
84
 
85
- $cc-font-size-input-label: 11px !default;
85
+ $cc-font-size-input-label: 13px !default;
86
86
  $cc-font-size-small: 13px !default;
87
87
  $cc-font-size-default: 15px !default;
88
88
  $cc-font-size-medium: 12px !default;
89
89
 
90
+ $cc-input-margin-top: 16px !default;
91
+
90
92
  $cc-popup-background-dark: #484F60 !default;
91
93
  $cc-popup-background-white: #FFFFFF !default;
92
94
  $cc-popup-background-grey: #CFD0D1 !default;
@@ -103,3 +105,41 @@ $cc-pretty-hover-transition-time: 0.14s !default;
103
105
  $cc-font-size-value-text: 13px !default;
104
106
 
105
107
  $cc-input-required-mark-width-height: 7px;
108
+
109
+ /* checkbox */
110
+ $cc-checkbox-border-radius: 2px !default;
111
+ $cc-checkbox-background-color: $cc-color-light !default;
112
+ $cc-checkbox-border-color: $cc-color-border !default;
113
+ $cc-checkbox-check-background-color: $cc-color-action !default;
114
+ $cc-checkbox-check-border-color: $cc-color-action !default;
115
+ $cc-checkbox-check-color: $cc-color-light !default;
116
+ $cc-checkbox-hover-background-color: $cc-checkbox-background-color !default;
117
+ $cc-checkbox-hover-border-color: $cc-checkbox-border-color !default;
118
+ $cc-checkbox-check-hover-background-color: $cc-checkbox-check-background-color !default;
119
+ $cc-checkbox-check-hover-border-color: $cc-checkbox-check-border-color !default;
120
+ $cc-checkbox-check-hover-color: $cc-checkbox-check-color !default;
121
+ /************/
122
+
123
+ /* syncfusion overrides */
124
+ $input-header-font-color: $cc-color-label;
125
+ $input-placeholder: $cc-color-label;
126
+ $input-active-border-color: transparent;
127
+ $input-group-border-type-focus: none;
128
+ $input-group-full-border: none;
129
+ $input-margin-top: $cc-input-margin-top;
130
+ $input-group-full-border-width: 0;
131
+ $input-group-border-width-focus: 0;
132
+
133
+ $cbox-border-radius: $cc-checkbox-border-radius;
134
+ $cbox-bgcolor: $cc-checkbox-background-color;
135
+ $cbox-border-color: $cc-checkbox-border-color;
136
+ $cbox-checkmark-bgcolor: $cc-checkbox-check-background-color;
137
+ $cbox-checkmark-border-color: $cc-checkbox-check-border-color;
138
+ $cbox-checkmark-color: $cc-checkbox-check-color;
139
+ $cbox-hover-bgcolor: $cc-checkbox-hover-background-color;
140
+ $cbox-hover-border-color: $cc-checkbox-hover-border-color;
141
+ $cbox-checkmark-hover-bgcolor: $cc-checkbox-check-hover-background-color;
142
+ $cbox-checkmark-hover-border-color: $cc-checkbox-check-hover-border-color;
143
+ $cbox-checkmark-hover-color: $cc-checkbox-check-hover-color;
144
+ /************************/
145
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "12.0.18",
3
+ "version": "12.0.21",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -71,3 +71,5 @@ export * from './lib/components/simple-grid/simple-grid.component';
71
71
  export * from './lib/components/simple-grid/simple-grid.module';
72
72
  export * from './lib/components/carousel-3d/carousel-3d.component';
73
73
  export * from './lib/components/carousel-3d/carousel-3d.module';
74
+ export * from './lib/pipes/price-display.pipe';
75
+ export * from './lib/pipes/price-display-pipe.module';