@worktile/gantt 16.0.1 → 16.0.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worktile/gantt",
3
- "version": "16.0.1",
3
+ "version": "16.0.2",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "exports": {
6
6
  ".": {
@@ -0,0 +1,47 @@
1
+ .cdk-drag {
2
+ transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
3
+ .cdk-drag-handle {
4
+ visibility: hidden;
5
+ padding: 0 15px 0 3px;
6
+ }
7
+
8
+ &:hover {
9
+ .cdk-drag-handle {
10
+ visibility: visible;
11
+ color: #999;
12
+ }
13
+ }
14
+
15
+ .cdk-drag-disabled {
16
+ &:hover {
17
+ .cdk-drag-handle {
18
+ visibility: hidden;
19
+ }
20
+ }
21
+ }
22
+ }
23
+
24
+ .cdk-drag-placeholder {
25
+ color: transparent !important;
26
+ background: #eee !important;
27
+
28
+ &:hover {
29
+ box-shadow: none;
30
+ }
31
+
32
+ * {
33
+ color: transparent !important;
34
+ visibility: hidden;
35
+ box-shadow: none;
36
+ }
37
+ }
38
+
39
+ .cdk-drag-preview {
40
+ box-sizing: border-box;
41
+ box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.08);
42
+ background: white !important;
43
+ }
44
+
45
+ .cdk-drag-animating {
46
+ transition: none; // transform 250ms cubic-bezier(0, 0, 1, 1);
47
+ }
package/styles/index.scss CHANGED
@@ -1,7 +1,6 @@
1
1
  @use './variables.scss';
2
+ @use './cdk/drag-drop.scss';
2
3
  @use '../gantt.component.scss';
3
- // @use '../components/table/gantt-table.component.scss';
4
- // @use '../components/calendar/calendar.component.scss';
5
4
  @use '../components/table/gantt-table.scss';
6
5
  @use '../components/calendar/calendar.scss';
7
6
  @use '../components/drag-backdrop/drag-backdrop.component.scss';