@colijnit/sharedcomponents 255.1.11 → 255.1.12
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/3rdpartylicenses.txt +1405 -0
- package/bundles/colijnit-sharedcomponents.umd.js +1 -1
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +2 -2
- package/favicon.ico +0 -0
- package/fesm2015/colijnit-sharedcomponents.js +1 -1
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +12 -0
- package/lib/components/activity-list/style/_layout.scss +4 -2
- package/lib/components/activity-overview-component/style/_layout.scss +4 -2
- package/main.fb2a972348d07d7127fb.js +1 -0
- package/package.json +1 -1
- package/polyfills.907fe9d1887c5de17993.js +1 -0
- package/runtime.8aac21847ed3d3829cca.js +1 -0
- package/styles.8fce26887e7ff9657567.css +1 -0
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<title>Sharedcomponents</title>
|
|
4
|
+
<base href="/">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
7
|
+
<style>@charset "UTF-8";@import url(https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);body,html{margin:0;overflow:hidden}body,html{width:100%;height:100%}*{box-sizing:border-box;padding:0;margin:0}</style><link rel="stylesheet" href="styles.8fce26887e7ff9657567.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.8fce26887e7ff9657567.css"></noscript></head>
|
|
8
|
+
<body>
|
|
9
|
+
<app-root></app-root>
|
|
10
|
+
<script src="runtime.8aac21847ed3d3829cca.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.fb2a972348d07d7127fb.js" defer></script>
|
|
11
|
+
|
|
12
|
+
</body></html>
|
|
@@ -57,12 +57,11 @@
|
|
|
57
57
|
|
|
58
58
|
.activity-fired-triggers {
|
|
59
59
|
position: absolute;
|
|
60
|
-
left:
|
|
60
|
+
left: 0px;
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: row;
|
|
63
63
|
column-gap: 5px;
|
|
64
64
|
align-items: center;
|
|
65
|
-
|
|
66
65
|
.activity-fired-trigger {
|
|
67
66
|
border-radius: 5px;
|
|
68
67
|
background-color: $sc-color-trigger;
|
|
@@ -71,6 +70,9 @@
|
|
|
71
70
|
padding-bottom: 5px;
|
|
72
71
|
padding-left: 20px;
|
|
73
72
|
padding-right: 20px;
|
|
73
|
+
span {
|
|
74
|
+
color: #FFF;
|
|
75
|
+
}
|
|
74
76
|
}
|
|
75
77
|
}
|
|
76
78
|
.icon-indicators {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
font-size: 12px;
|
|
28
28
|
padding: 4px 15px;
|
|
29
29
|
border-radius: 5px;
|
|
30
|
-
background: #
|
|
30
|
+
background: #5FDCB399;
|
|
31
31
|
border: 1px solid #5FDCB3;
|
|
32
32
|
white-space: nowrap;
|
|
33
33
|
color: #FFF;
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
.overview-main {
|
|
77
77
|
display: flex;
|
|
78
78
|
width: 100%;
|
|
79
|
-
flex-direction:
|
|
79
|
+
flex-direction: column;
|
|
80
80
|
flex-wrap: wrap;
|
|
81
81
|
column-gap: 10px;
|
|
82
82
|
row-gap: 5px;
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
height: auto;
|
|
94
94
|
padding: 5px 15px;
|
|
95
95
|
cursor: pointer;
|
|
96
|
+
margin-right: auto;
|
|
96
97
|
&:after {
|
|
97
98
|
display: none;
|
|
98
99
|
}
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
height: auto;
|
|
110
111
|
padding: 5px 15px;
|
|
111
112
|
cursor: pointer;
|
|
113
|
+
margin-right: auto;
|
|
112
114
|
span {
|
|
113
115
|
font-size: 10px;
|
|
114
116
|
color: #5FDCB3;
|