@colijnit/corecomponents_v12 255.1.2 → 255.1.3

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.
@@ -0,0 +1,13 @@
1
+ @include export-module('cc-hour-scheduling-test-object-layout') {
2
+ .co-hour-scheduling-test-object {
3
+ .object-content {
4
+ display: flex;
5
+ flex-direction: column;
6
+ gap: 4px; /* Small gap between title and subTitle */
7
+ }
8
+
9
+ .title {
10
+ font-weight: bold; /* Make the title bold */
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('cc-test-object-theme') {
2
+ .co-test-object {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -0,0 +1,49 @@
1
+ @import "../components/hour-scheduling-test-object/style/material.scss";
2
+
3
+ @include export-module('cc-hour-scheduling-layout') {
4
+ .co-hour-scheduling {
5
+ display: flex;
6
+ flex-direction: column;
7
+
8
+ .time-block {
9
+ display: flex;
10
+ justify-content: space-between;
11
+ align-items: center;
12
+ padding: 10px;
13
+ border: 1px solid #ccc;
14
+ margin-bottom: 10px;
15
+ background-color: #f0f0f0;
16
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
17
+ }
18
+
19
+ .hour-label {
20
+ font-weight: bold;
21
+ margin-right: 10px;
22
+ }
23
+
24
+ .object-display {
25
+ flex-grow: 1;
26
+ display: flex;
27
+ flex-direction: column;
28
+ gap: 10px;
29
+ min-height: 100px;
30
+ border: 1px dashed #999;
31
+ padding: 10px;
32
+ }
33
+
34
+ .scheduled-object {
35
+ padding: 5px 10px;
36
+ background-color: #4CAF50;
37
+ color: white;
38
+ border-radius: 3px;
39
+ cursor: pointer;
40
+ display: flex;
41
+ flex-direction: column;
42
+ gap: 0.5em;
43
+
44
+ .title {
45
+ font-weight: bold;
46
+ }
47
+ }
48
+ }
49
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('cc-hour-scheduling-theme') {
2
+ .co-hour-scheduling {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "255.1.2",
3
+ "version": "255.1.3",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {