@colijnit/corecomponents_v12 255.1.3 → 255.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.
@@ -99,7 +99,7 @@
99
99
  }
100
100
  }
101
101
 
102
- &.close-button {
102
+ &.close-button, &.delete-button {
103
103
  height: $cc-dialog-btn-size;
104
104
  width: $cc-dialog-btn-size;
105
105
  border-color: $cc-dialog-btn-border-color;
@@ -11,7 +11,7 @@ $cc-co-dialog-header-padding: 0 0 10px 0 !default;
11
11
  $cc-co-dialog-header-margin: 0 0 10px 0 !default;
12
12
  $cc-co-dialog-header-border-style: solid !default;
13
13
  $cc-co-dialog-header-border-color: $cc-color-border !default;
14
- $cc-co-dialog-header-border-width: 0 0 1px 0 !default;
14
+ $cc-co-dialog-header-border-width: 0 0 0 0 !default;
15
15
  $cc-co-dialog-header-close-button-background-color: transparent !default;
16
16
  $cc-co-dialog-header-close-button-right: 20px !default;
17
17
  $cc-co-dialog-header-close-button-top: 10px !default;
@@ -0,0 +1,5 @@
1
+ export declare class HourSchedulingTestObjectComponent {
2
+ showClass(): boolean;
3
+ title: string;
4
+ subTitle: string;
5
+ }
@@ -0,0 +1,31 @@
1
+ import { OnInit, ChangeDetectorRef, TemplateRef } from '@angular/core';
2
+ interface SchedulingObject {
3
+ start: number;
4
+ end: number;
5
+ title?: string;
6
+ subTitle?: string;
7
+ }
8
+ export declare class HourSchedulingComponent implements OnInit {
9
+ private cdRef;
10
+ showClass: boolean;
11
+ schedule: any;
12
+ startTimeProp: string;
13
+ endTimeProp: string;
14
+ objectsProp: string;
15
+ customTemplate: TemplateRef<any>;
16
+ customTemplateUsed: boolean;
17
+ hours: string[];
18
+ scheduledObjects: {
19
+ [hour: string]: SchedulingObject[];
20
+ };
21
+ private draggedObject;
22
+ constructor(cdRef: ChangeDetectorRef);
23
+ ngOnInit(): void;
24
+ private generateTimeBlocks;
25
+ private getObjectsForHour;
26
+ formatHour(hour: number): string;
27
+ onDragStart(event: DragEvent, obj: SchedulingObject): void;
28
+ onDragOver(event: DragEvent): void;
29
+ onDrop(event: DragEvent, hour: string): void;
30
+ }
31
+ export {};
@@ -0,0 +1,2 @@
1
+ export declare class HourSchedulingComponentModule {
2
+ }
@@ -154,7 +154,7 @@ $cc-radiobutton-color-action: #5FDCB3 !default;
154
154
 
155
155
  /* dialog */
156
156
  $cc-dialog-header-title-font-size: 14px !default;
157
- $cc-dialog-header-title-margin: 0 0 20px 0 !default;
157
+ $cc-dialog-header-title-margin: 0 0 0 0 !default;
158
158
  $cc-dialog-header-title-font-weight: bold !default;
159
159
  $cc-dialog-footer-justify-content: center !default;
160
160
  $cc-dialog-footer-column-gap: 10px !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "255.1.3",
3
+ "version": "255.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
@@ -126,3 +126,5 @@ export * from './lib/service/base-module-screen-config.service';
126
126
  export * from './lib/service/base-module.service';
127
127
  export * from './lib/translation/core-components-translation.module';
128
128
  export * from './lib/translation/core-components-translation.service';
129
+ export * from './lib/components/hour-scheduling/hour-scheduling.component';
130
+ export * from './lib/components/hour-scheduling/hour-scheduling.module';