@colijnit/corecomponents_v12 12.1.3 → 12.1.5

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 (27) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +69 -8
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12.metadata.json +1 -1
  4. package/esm2015/lib/components/input-text/input-text.component.js +3 -3
  5. package/esm2015/lib/components/list-of-values/list-of-values.component.js +6 -1
  6. package/esm2015/lib/components/responsive-text/responsive-text.component.js +24 -0
  7. package/esm2015/lib/components/responsive-text/responsive-text.module.js +19 -0
  8. package/esm2015/lib/directives/overlay/overlay.directive.js +23 -8
  9. package/esm2015/public-api.js +3 -1
  10. package/fesm2015/colijnit-corecomponents_v12.js +69 -10
  11. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  12. package/lib/components/co-dialog/style/_layout.scss +3 -0
  13. package/lib/components/filter-item/style/_layout.scss +10 -0
  14. package/lib/components/filter-item/style/_material-definition.scss +5 -0
  15. package/lib/components/input-text/style/_material-definition.scss +1 -0
  16. package/lib/components/list-of-values/list-of-values.component.d.ts +1 -0
  17. package/lib/components/list-of-values/style/_layout.scss +10 -0
  18. package/lib/components/list-of-values/style/_material-definition.scss +5 -0
  19. package/lib/components/responsive-text/responsive-text.component.d.ts +4 -0
  20. package/lib/components/responsive-text/responsive-text.module.d.ts +2 -0
  21. package/lib/components/responsive-text/style/_layout.scss +9 -0
  22. package/lib/components/responsive-text/style/_material-definition.scss +0 -0
  23. package/lib/components/responsive-text/style/_theme.scss +4 -0
  24. package/lib/components/responsive-text/style/material.scss +4 -0
  25. package/lib/directives/overlay/overlay.directive.d.ts +2 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +2 -0
@@ -31,6 +31,9 @@
31
31
  min-width: $cc-co-dialog-min-width;
32
32
  transform: translate(-50%, -50%);
33
33
  width: auto;
34
+ .co-dialog-wrapper {
35
+ width: 100%;
36
+ }
34
37
  }
35
38
  }
36
39
  .dialog-header {
@@ -27,6 +27,16 @@
27
27
  width: $cc-co-filter-item-header-icon-size;
28
28
  }
29
29
  }
30
+ .collapsible-header {
31
+ .collapsible-button {
32
+ border-color: $cc-co-filter-item-collapsible-header-search-border;
33
+ color: $cc-co-filter-item-collapsible-header-search-color;
34
+ &:hover {
35
+ background: $cc-co-filter-item-collapsible-header-search-hover-background;
36
+ color: $cc-co-filter-item-collapsible-header-search-hover-color;
37
+ }
38
+ }
39
+ }
30
40
  }
31
41
 
32
42
  .co-filter-item-collection-content {
@@ -13,8 +13,13 @@ $cc-co-filter-item-header-border-color: #DCE4EA !default;
13
13
  $cc-co-filter-item-header-border-width: 0 !default;
14
14
  $cc-co-filter-item-header-icon-size: 30px !default;
15
15
 
16
+
16
17
  $cc-co-filter-item-collapsible-content-padding: 0 10px 20px 10px !default;
17
18
  $cc-co-filter-item-collapsible-width: 95% !default;
19
+ $cc-co-filter-item-collapsible-header-search-color: $cc-color-action !default;
20
+ $cc-co-filter-item-collapsible-header-search-hover-background: $cc-color-action !default;
21
+ $cc-co-filter-item-collapsible-header-search-border: $cc-color-action !default;
22
+ $cc-co-filter-item-collapsible-header-search-hover-color: $cc-color-light !default;
18
23
 
19
24
  $cc-co-filter-item-collection-results-container-padding: 10px !default;
20
25
  $cc-co-filter-item-collection-results-background-color: $cc-color-light !default;
@@ -10,6 +10,7 @@ $cc-co-input-text-icon-max-height: 80px !default;
10
10
  $cc-co-input-text-icon-size: 50% !default;
11
11
  $cc-co-input-text-icon-margin-number: 0 !default;
12
12
  $cc-co-input-text-spacer-width: $cc-input-border-width !default;
13
+ $cc-co-input-text-right-spacer-width: 0 !default;
13
14
  $cc-co-input-text-spacer-color: $cc-input-border-color !default;
14
15
  //$cc-co-input-label-color: $cc-color-border !default;
15
16
  //$cc-co-input-label-font-style: normal !default;
@@ -16,6 +16,7 @@ export declare class ListOfValuesComponent extends BaseInputComponent<any> imple
16
16
  label: string;
17
17
  customCssClass: string;
18
18
  searchDisabled: boolean;
19
+ closeAfterOptionChosen: boolean;
19
20
  showClass(): boolean;
20
21
  isSelectOpen: boolean;
21
22
  state: string;
@@ -32,6 +32,16 @@
32
32
  box-shadow: none;
33
33
  }
34
34
  }
35
+ .right-icon {
36
+ min-width: $cc-co-list-of-values-right-icon-spacer-width;
37
+ }
38
+ .input-text-right-icon svg {
39
+ width: $cc-co-list-of-values-right-icon-width;
40
+ height: $cc-co-list-of-values-right-icon-width;
41
+ padding: $cc-co-list-of-values-right-icon-padding;
42
+ background: $cc-co-list-of-values-right-icon-background;
43
+ border-radius: $cc-co-list-of-values-right-icon-radius;
44
+ }
35
45
  }
36
46
  //&.cc-input-focused:not(.no-focus-line) {
37
47
  // @include focus($cc-co-list-of-values-border-focus-style, $cc-co-list-of-values-border-focus-width, $cc-co-list-of-values-border-focus-color, $cc-co-list-of-values-border-radius);
@@ -9,6 +9,11 @@ $cc-co-list-of-values-border-radius: 5px !default;
9
9
  $cc-co-list-of-values-border-hover-style: solid !default;
10
10
  $cc-co-list-of-values-border-hover-width: 2px !default;
11
11
  $cc-co-list-of-values-border-hover-color: $cc-color-input-lov !default;
12
+ $cc-co-list-of-values-right-icon-spacer-width: 0 !default;
13
+ $cc-co-list-of-values-right-icon-width: 24px !default;
14
+ $cc-co-list-of-values-right-icon-background: #f5f5fc !default;
15
+ $cc-co-list-of-values-right-icon-radius: 100% !default;
16
+ $cc-co-list-of-values-right-icon-padding: 5px !default;
12
17
 
13
18
  $cc-co-list-of-values-border-focus-style: solid !default;
14
19
  $cc-co-list-of-values-border-focus-width: 1px !default;
@@ -0,0 +1,4 @@
1
+ export declare class ResponsiveTextComponent {
2
+ text: string;
3
+ showClass(): boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ export declare class ResponsiveTextModule {
2
+ }
@@ -0,0 +1,9 @@
1
+ @include export-module('co-responsive-text-layout') {
2
+ .co-responsive-text {
3
+ svg {
4
+ display: block;
5
+ height: 100%;
6
+ width: 100%;
7
+ }
8
+ }
9
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('co-responsive-text-theme') {
2
+ .co-responsive-text {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -2,9 +2,11 @@ import { ElementRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { OverlayParentDirective } from './overlay-parent.directive';
3
3
  export declare class OverlayDirective implements OnDestroy, OnInit {
4
4
  set parent(value: OverlayParentDirective | ElementRef);
5
+ view: HTMLElement;
5
6
  keepInView: boolean;
6
7
  inheritWidth: boolean;
7
8
  rightAlign: boolean;
9
+ fullSize: boolean;
8
10
  private _elementRef;
9
11
  private _resizeObserver;
10
12
  private _intersectionObserver;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "12.1.3",
3
+ "version": "12.1.5",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -73,6 +73,8 @@ export * from './lib/components/view-mode-buttons/content-view-mode.enum';
73
73
  export * from './lib/components/list-of-values/list-of-values.component';
74
74
  export * from './lib/components/list-of-values/list-of-values-popup.component';
75
75
  export * from './lib/components/list-of-values/list-of-values.module';
76
+ export * from './lib/components/responsive-text/responsive-text.component';
77
+ export * from './lib/components/responsive-text/responsive-text.module';
76
78
  export * from './lib/pipes/price-display.pipe';
77
79
  export * from './lib/pipes/price-display-pipe.module';
78
80
  export * from './lib/pipes/filter.pipe';