@colijnit/sharedcomponents 262.1.6 → 262.1.8
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/fesm2022/colijnit-sharedcomponents.mjs +3749 -490
- package/fesm2022/colijnit-sharedcomponents.mjs.map +1 -1
- package/index.d.ts +615 -14
- package/lib/components/activity-timeline/style/_layout.scss +60 -0
- package/lib/components/activity-timeline/style/_material-definition.scss +9 -0
- package/lib/components/activity-timeline/style/_theme.scss +4 -0
- package/lib/components/activity-timeline/style/material.scss +4 -0
- package/lib/components/avatar/style/_layout.scss +4 -0
- package/lib/components/avatar/style/_material-definition.scss +0 -0
- package/lib/components/avatar/style/_theme.scss +4 -0
- package/lib/components/avatar/style/material.scss +4 -0
- package/lib/components/input-calculation-key/style/_layout.scss +4 -0
- package/lib/components/input-calculation-key/style/_material-definition.scss +0 -0
- package/lib/components/input-calculation-key/style/_theme.scss +4 -0
- package/lib/components/input-calculation-key/style/material.scss +4 -0
- package/lib/components/input-duration/style/_layout.scss +5 -0
- package/lib/components/input-duration/style/_material-definition.scss +0 -0
- package/lib/components/input-duration/style/_theme.scss +4 -0
- package/lib/components/input-duration/style/material.scss +4 -0
- package/lib/components/input-search-employee/style/_layout.scss +4 -0
- package/lib/components/input-search-employee/style/_material-definition.scss +0 -0
- package/lib/components/input-search-employee/style/_theme.scss +4 -0
- package/lib/components/input-search-employee/style/material.scss +4 -0
- package/lib/components/task-modifyer/style/_layout.scss +22 -2
- package/lib/components/timeline/style/_layout.scss +71 -0
- package/lib/components/timeline/style/_material-definition.scss +22 -0
- package/lib/components/timeline/style/_theme.scss +4 -0
- package/lib/components/timeline/style/material.scss +4 -0
- package/package.json +1 -1
- package/lib/components/search-presets/js-preset files/search-preset-overview.component.scss +0 -11
- package/lib/components/search-presets/js-preset files/search-preset-save-dialog.component.scss +0 -23
- package/lib/components/search-presets/js-preset files/search-presets-pinned.component.scss +0 -57
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
@include export-module('co-activity-timeline-layout') {
|
|
2
|
+
.co-activity-timeline {
|
|
3
|
+
.leaf-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
gap: $leaf-wrapper-gap;
|
|
7
|
+
}
|
|
8
|
+
.leaf-task-open {
|
|
9
|
+
position: absolute;
|
|
10
|
+
right: 0;
|
|
11
|
+
bottom: 0;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
}
|
|
14
|
+
.co-activity-leaf {
|
|
15
|
+
.leaf-header {
|
|
16
|
+
font-size: $leaf-header-font-size;
|
|
17
|
+
}
|
|
18
|
+
.leaf-body {
|
|
19
|
+
.trigger-wrapper {
|
|
20
|
+
display: flex;
|
|
21
|
+
gap: $leaf-trigger-wrapper-gap;
|
|
22
|
+
.workflow-state {
|
|
23
|
+
font-size: 11px;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
gap: $leaf-trigger-state-end-gap;
|
|
27
|
+
&.next {
|
|
28
|
+
gap: $leaf-trigger-state-gap;
|
|
29
|
+
}
|
|
30
|
+
&.ended {
|
|
31
|
+
color: $leaf-trigger-state-end-color;
|
|
32
|
+
}
|
|
33
|
+
.co-icon {
|
|
34
|
+
svg {
|
|
35
|
+
fill: $leaf-trigger-state-end-color;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
.trigger-button {
|
|
40
|
+
padding: 7px 15px;
|
|
41
|
+
border: 1px solid $leaf-trigger-state-color;
|
|
42
|
+
color: $leaf-trigger-state-color;
|
|
43
|
+
border-radius: $leaf-trigger-state-border-radius;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
background: #FFF;
|
|
46
|
+
transition: all 0.2s ease-in-out;
|
|
47
|
+
&:hover {
|
|
48
|
+
color: #FFF;
|
|
49
|
+
background: $leaf-trigger-state-color;
|
|
50
|
+
transition: all 0.2s ease-in-out;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
.remark-content {
|
|
56
|
+
font-size: $leaf-header-font-size;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
$leaf-header-font-size: 12px !default;
|
|
2
|
+
|
|
3
|
+
$leaf-wrapper-gap: 15px !default;
|
|
4
|
+
$leaf-trigger-wrapper-gap: 15px !default;
|
|
5
|
+
$leaf-trigger-state-end-gap: 3px !default;
|
|
6
|
+
$leaf-trigger-state-gap: 5px !default;
|
|
7
|
+
$leaf-trigger-state-end-color: #5FDCB3 !default;
|
|
8
|
+
$leaf-trigger-state-color: #1A73E8;
|
|
9
|
+
$leaf-trigger-state-border-radius: 3px !default;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
@include export-module('co-task-modifier') {
|
|
2
|
-
.co-task-modifier{
|
|
3
|
-
|
|
2
|
+
.co-task-modifier {
|
|
3
|
+
.co-dialog-wrapper {
|
|
4
|
+
max-width: 600px;
|
|
5
|
+
height: 650px;
|
|
6
|
+
}
|
|
7
|
+
.dialog-header {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: row;
|
|
10
|
+
justify-content: space-between;
|
|
11
|
+
align-items: center;
|
|
12
|
+
font-size: 16px;
|
|
13
|
+
padding: 0;
|
|
14
|
+
.header-title-wrapper {
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
gap: 10px;
|
|
18
|
+
.co-icon {
|
|
19
|
+
width: 20px;
|
|
20
|
+
height: 20px;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
4
24
|
}
|
|
5
25
|
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@include export-module('co-timeline-layout') {
|
|
2
|
+
.co-timeline {
|
|
3
|
+
.co-timeline-wrapper {
|
|
4
|
+
padding: $timeline-wrapper-padding;
|
|
5
|
+
}
|
|
6
|
+
.year-item {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
gap: $timeline-year-item-gap;
|
|
10
|
+
}
|
|
11
|
+
.state-change-wrapper {
|
|
12
|
+
display: flex;
|
|
13
|
+
gap: $timeline-state-change-gap;
|
|
14
|
+
background: $timeline-state-change-background;
|
|
15
|
+
padding: $timeline-state-change-padding;
|
|
16
|
+
width: fit-content;
|
|
17
|
+
border-radius: $timeline-state-change-border-radius;
|
|
18
|
+
.state-change-content {
|
|
19
|
+
display: flex;
|
|
20
|
+
gap: $timeline-state-change-content-gap;
|
|
21
|
+
font-size: $timeline-state-change-content-font-size;
|
|
22
|
+
color: $timeline-state-change-content-color;
|
|
23
|
+
text-transform: uppercase;
|
|
24
|
+
.change-desc {
|
|
25
|
+
font-weight: $timeline-state-change-change-desc-font-weight;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
.state-change-date {
|
|
29
|
+
font-size: $timeline-state-change-date-font-size;
|
|
30
|
+
color: $timeline-state-change-content-color;
|
|
31
|
+
font-weight: $timeline-state-change-date-font-weight;
|
|
32
|
+
text-transform: uppercase;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
.timeline-item-wrapper {
|
|
36
|
+
display: flex;
|
|
37
|
+
border-radius: $timeline-item-wrapper-border-radius;
|
|
38
|
+
padding: $timeline-item-wrapper-padding;
|
|
39
|
+
box-shadow: $timeline-item-wrapper-box-shadow;
|
|
40
|
+
background-color: $timeline-item-wrapper-background;
|
|
41
|
+
min-width: $timeline-item-wrapper-min-width;
|
|
42
|
+
width: fit-content;
|
|
43
|
+
}
|
|
44
|
+
.timeline-item {
|
|
45
|
+
display: flex;
|
|
46
|
+
width: 100%;
|
|
47
|
+
position: relative;
|
|
48
|
+
align-items: start;
|
|
49
|
+
gap: $timeline-item-gap;
|
|
50
|
+
.timeline-date-wrapper {
|
|
51
|
+
position: absolute;
|
|
52
|
+
right: 0;
|
|
53
|
+
top: 0;
|
|
54
|
+
.timeline-date {
|
|
55
|
+
font-size: $timeline-item-date-font-size;
|
|
56
|
+
display: flex;
|
|
57
|
+
align-items: center;
|
|
58
|
+
gap: $timeline-item-date-gap;
|
|
59
|
+
color: $timeline-item-date-color;
|
|
60
|
+
.co-icon {
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
.co-icon {
|
|
66
|
+
width: $timeline-item-icon-size;
|
|
67
|
+
height: $timeline-item-icon-size;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
$timeline-wrapper-padding: 15px 0 30px 0 !default;
|
|
2
|
+
$timeline-year-item-gap: 20px !default;
|
|
3
|
+
$timeline-state-change-gap: 30px !default;
|
|
4
|
+
$timeline-state-change-background: #E2E8F0 !default;
|
|
5
|
+
$timeline-state-change-padding: 10px 15px !default;
|
|
6
|
+
$timeline-state-change-border-radius: 15px !default;
|
|
7
|
+
$timeline-state-change-content-gap: 3px !default;
|
|
8
|
+
$timeline-state-change-content-font-size: 10px !default;
|
|
9
|
+
$timeline-state-change-content-color: #334155 !default;
|
|
10
|
+
$timeline-state-change-change-desc-font-weight: 600 !important;
|
|
11
|
+
$timeline-state-change-date-font-size: 9px !default;
|
|
12
|
+
$timeline-state-change-date-font-weight: 300 !default;
|
|
13
|
+
$timeline-item-wrapper-border-radius: 5px !default;
|
|
14
|
+
$timeline-item-wrapper-padding: 10px !default;
|
|
15
|
+
$timeline-item-wrapper-box-shadow: 0 3px 5px 1px #0000001a !default;
|
|
16
|
+
$timeline-item-wrapper-background: #FFFFFF !default;
|
|
17
|
+
$timeline-item-wrapper-min-width: 50% !default;
|
|
18
|
+
$timeline-item-gap: 15px !default;
|
|
19
|
+
$timeline-item-date-font-size: 9px !default;
|
|
20
|
+
$timeline-item-date-gap: 15px !default;
|
|
21
|
+
$timeline-item-date-color: #172121 !default;
|
|
22
|
+
$timeline-item-icon-size: 15px !default;
|
package/package.json
CHANGED
package/lib/components/search-presets/js-preset files/search-preset-save-dialog.component.scss
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
#preset-save-dialog:not(.is-mobile) .co-dialog-wrapper {
|
|
2
|
-
width: 400px;
|
|
3
|
-
min-height: 200px;
|
|
4
|
-
max-height: 500px;
|
|
5
|
-
|
|
6
|
-
.save-dialog-contents {
|
|
7
|
-
width: 100%;
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-direction: column;
|
|
10
|
-
row-gap: 10px;
|
|
11
|
-
padding: 10px;
|
|
12
|
-
|
|
13
|
-
.co-input-text {
|
|
14
|
-
width: 100%;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.co-list-of-values {
|
|
18
|
-
width: 100%;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
:host {
|
|
2
|
-
width: 100%;
|
|
3
|
-
padding: 2px;
|
|
4
|
-
min-height: 30px;
|
|
5
|
-
display: flex;
|
|
6
|
-
.preset-button {
|
|
7
|
-
display: block;
|
|
8
|
-
}
|
|
9
|
-
.pinned-presets-row {
|
|
10
|
-
width: 100%;
|
|
11
|
-
display: flex;
|
|
12
|
-
flex-direction: row;
|
|
13
|
-
column-gap: 5px;
|
|
14
|
-
padding: 10px 10px 10px 20px;
|
|
15
|
-
justify-content: flex-start;
|
|
16
|
-
flex-wrap: wrap;
|
|
17
|
-
}
|
|
18
|
-
.presets-wrapper {
|
|
19
|
-
display: flex;
|
|
20
|
-
align-items: center;
|
|
21
|
-
flex-wrap: wrap;
|
|
22
|
-
gap: 5px
|
|
23
|
-
}
|
|
24
|
-
.presets {
|
|
25
|
-
height: 16px;
|
|
26
|
-
font-size: 10px;
|
|
27
|
-
color: #000000;
|
|
28
|
-
background: #f5f5fa;
|
|
29
|
-
border-radius: 5px;
|
|
30
|
-
padding: 2px 7px;
|
|
31
|
-
user-select: none;
|
|
32
|
-
|
|
33
|
-
&.active {
|
|
34
|
-
color: #FFFFFF;
|
|
35
|
-
background: red;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.show-all-button {
|
|
40
|
-
height: 16px;
|
|
41
|
-
font-size: 10px;
|
|
42
|
-
color: #000000;
|
|
43
|
-
display: flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
background: #FFFFFF;
|
|
46
|
-
border: 1px solid;
|
|
47
|
-
border-radius: 5px;
|
|
48
|
-
padding: 2px 7px;
|
|
49
|
-
cursor: pointer;
|
|
50
|
-
|
|
51
|
-
&:hover {
|
|
52
|
-
background: #1A73E8;
|
|
53
|
-
color: #FFF;
|
|
54
|
-
filter: none;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|