@beterdichtbij/component-library 0.67.1 → 0.67.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/README.md +12 -12
- package/dist/bd-component-lib.cjs.js +55 -55
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +11 -11
- package/dist/bd-component-lib.umd.js +56 -56
- package/dist/locales/en.json +10 -10
- package/dist/locales/nl.json +137 -137
- package/dist/scss/_active-filters.scss +65 -65
- package/dist/scss/_alert.scss +11 -11
- package/dist/scss/_article.scss +23 -23
- package/dist/scss/_assign-conversation-modal.scss +13 -13
- package/dist/scss/_attachments.scss +107 -107
- package/dist/scss/_badge.scss +18 -18
- package/dist/scss/_base.scss +1 -1
- package/dist/scss/_button.scss +74 -74
- package/dist/scss/_card.scss +56 -56
- package/dist/scss/_chatcloud.scss +98 -98
- package/dist/scss/_collapsable-card.scss +107 -107
- package/dist/scss/_content-library-card-message-template.scss +136 -136
- package/dist/scss/_content-library-card.scss +158 -158
- package/dist/scss/_content-library-modal.scss +8 -8
- package/dist/scss/_content-library-overview.scss +4 -4
- package/dist/scss/_content-library-split-button.scss +19 -19
- package/dist/scss/_conversation-to-text-modal.scss +36 -32
- package/dist/scss/_dropdown.scss +113 -113
- package/dist/scss/_extern.scss +1 -1
- package/dist/scss/_file-upload-preview.scss +53 -53
- package/dist/scss/_file-upload.scss +26 -26
- package/dist/scss/_filter-card.scss +64 -64
- package/dist/scss/_form-field.scss +12 -12
- package/dist/scss/_form-multiple-checkbox.scss +51 -51
- package/dist/scss/_forms.scss +2 -2
- package/dist/scss/_header.scss +170 -170
- package/dist/scss/_icon-luscii-logo.scss +31 -31
- package/dist/scss/_icons.scss +38 -38
- package/dist/scss/_image-attachment-modal.scss +91 -91
- package/dist/scss/_input-group.scss +2 -2
- package/dist/scss/_loader.scss +59 -59
- package/dist/scss/_markdown-editor.scss +114 -108
- package/dist/scss/_message-template-form-modal.scss +47 -47
- package/dist/scss/_mobile-menu.scss +91 -91
- package/dist/scss/_modal.scss +176 -176
- package/dist/scss/_notification-button.scss +29 -29
- package/dist/scss/_pagination.scss +40 -40
- package/dist/scss/_phone-number-edit-modal.scss +35 -35
- package/dist/scss/_pill.scss +89 -89
- package/dist/scss/_profile-image.scss +34 -34
- package/dist/scss/_table-sort-header.scss +13 -13
- package/dist/scss/_table.scss +16 -16
- package/dist/scss/_templates.scss +323 -323
- package/dist/scss/_toast.scss +69 -69
- package/dist/scss/_user-information.scss +34 -34
- package/dist/scss/_user.scss +13 -13
- package/dist/scss/_video-call-toast.scss +100 -100
- package/dist/scss/_zoomslider.scss +77 -77
- package/dist/scss/base/typography.scss +15 -15
- package/dist/scss/base/variables.scss +210 -210
- package/dist/scss/component-library-styling.scss +50 -50
- package/dist/scss/extern/_bootstrap.scss +14 -14
- package/dist/scss/extern/_prime-vue.scss +551 -551
- package/dist/scss/forms/_form-check.scss +16 -16
- package/dist/scss/forms/_form-input.scss +9 -9
- package/dist/scss/mixins.scss +78 -78
- package/dist/scss/templates/_change-password-template.scss +8 -8
- package/dist/scss/templates/_content-library-template.scss +135 -135
- package/dist/scss/templates/_not-found-template.scss +5 -5
- package/dist/stores/SessionTimeOutStore.ts +46 -46
- package/package.json +133 -133
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
.bd-file-upload-preview {
|
|
2
|
-
display: inline-block;
|
|
3
|
-
|
|
4
|
-
.preview-details {
|
|
5
|
-
position: relative;
|
|
6
|
-
|
|
7
|
-
.preview-image {
|
|
8
|
-
min-width: 150px;
|
|
9
|
-
height: 88px;
|
|
10
|
-
object-fit: contain;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.mark-container {
|
|
14
|
-
display: block;
|
|
15
|
-
border-radius: 50%;
|
|
16
|
-
width: 21px;
|
|
17
|
-
height: 21px;
|
|
18
|
-
margin: 0px auto;
|
|
19
|
-
|
|
20
|
-
&.success {
|
|
21
|
-
background-color: $green;
|
|
22
|
-
|
|
23
|
-
svg {
|
|
24
|
-
transform: translateY(-2px);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&.pending {
|
|
29
|
-
background-color: $white;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.remove-button {
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: -10px;
|
|
36
|
-
right: -10px;
|
|
37
|
-
margin: 0;
|
|
38
|
-
width: 21px;
|
|
39
|
-
height: 21px;
|
|
40
|
-
border-radius: 50%;
|
|
41
|
-
padding: 0px;
|
|
42
|
-
background-color: $primary;
|
|
43
|
-
display: flex;
|
|
44
|
-
justify-content: center;
|
|
45
|
-
align-items: center;
|
|
46
|
-
|
|
47
|
-
.icon {
|
|
48
|
-
margin: revert;
|
|
49
|
-
transform: revert;
|
|
50
|
-
transition: revert;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
1
|
+
.bd-file-upload-preview {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
|
|
4
|
+
.preview-details {
|
|
5
|
+
position: relative;
|
|
6
|
+
|
|
7
|
+
.preview-image {
|
|
8
|
+
min-width: 150px;
|
|
9
|
+
height: 88px;
|
|
10
|
+
object-fit: contain;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.mark-container {
|
|
14
|
+
display: block;
|
|
15
|
+
border-radius: 50%;
|
|
16
|
+
width: 21px;
|
|
17
|
+
height: 21px;
|
|
18
|
+
margin: 0px auto;
|
|
19
|
+
|
|
20
|
+
&.success {
|
|
21
|
+
background-color: $green;
|
|
22
|
+
|
|
23
|
+
svg {
|
|
24
|
+
transform: translateY(-2px);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.pending {
|
|
29
|
+
background-color: $white;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.remove-button {
|
|
34
|
+
position: absolute;
|
|
35
|
+
top: -10px;
|
|
36
|
+
right: -10px;
|
|
37
|
+
margin: 0;
|
|
38
|
+
width: 21px;
|
|
39
|
+
height: 21px;
|
|
40
|
+
border-radius: 50%;
|
|
41
|
+
padding: 0px;
|
|
42
|
+
background-color: $primary;
|
|
43
|
+
display: flex;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
align-items: center;
|
|
46
|
+
|
|
47
|
+
.icon {
|
|
48
|
+
margin: revert;
|
|
49
|
+
transform: revert;
|
|
50
|
+
transition: revert;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
54
|
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
.bd-file-upload {
|
|
2
|
-
position: relative;
|
|
3
|
-
color: $color-darkblue;
|
|
4
|
-
font-family: $font-family-base;
|
|
5
|
-
width:fit-content;
|
|
6
|
-
|
|
7
|
-
.p-fileupload {
|
|
8
|
-
border: 0;
|
|
9
|
-
border-radius: 0;
|
|
10
|
-
background: none;
|
|
11
|
-
|
|
12
|
-
.p-fileupload-header {
|
|
13
|
-
border: none;
|
|
14
|
-
margin-bottom: 20px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.filename {
|
|
18
|
-
color: $color-darkblue;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.preview-container {
|
|
23
|
-
position: relative;
|
|
24
|
-
display: inline-block;
|
|
25
|
-
text-align: center;
|
|
26
|
-
}
|
|
1
|
+
.bd-file-upload {
|
|
2
|
+
position: relative;
|
|
3
|
+
color: $color-darkblue;
|
|
4
|
+
font-family: $font-family-base;
|
|
5
|
+
width:fit-content;
|
|
6
|
+
|
|
7
|
+
.p-fileupload {
|
|
8
|
+
border: 0;
|
|
9
|
+
border-radius: 0;
|
|
10
|
+
background: none;
|
|
11
|
+
|
|
12
|
+
.p-fileupload-header {
|
|
13
|
+
border: none;
|
|
14
|
+
margin-bottom: 20px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.filename {
|
|
18
|
+
color: $color-darkblue;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.preview-container {
|
|
23
|
+
position: relative;
|
|
24
|
+
display: inline-block;
|
|
25
|
+
text-align: center;
|
|
26
|
+
}
|
|
27
27
|
}
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
.bd-filter-card {
|
|
2
|
-
.card-body {
|
|
3
|
-
padding: 16px;
|
|
4
|
-
|
|
5
|
-
.bd-input-group {
|
|
6
|
-
font-size: 15px;
|
|
7
|
-
margin-bottom: 8px;
|
|
8
|
-
|
|
9
|
-
&:last-of-type {
|
|
10
|
-
margin-bottom: 0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
label {
|
|
14
|
-
word-break: break-word;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
label, button {
|
|
18
|
-
font-size: 15px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.form-label {
|
|
22
|
-
margin-bottom: 8px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.bd-form-checkbox {
|
|
26
|
-
display: flex;
|
|
27
|
-
margin-bottom: 2px;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.collapse-button {
|
|
31
|
-
padding: 0;
|
|
32
|
-
font-weight: 700;
|
|
33
|
-
height: 24px;
|
|
34
|
-
line-height: normal;
|
|
35
|
-
|
|
36
|
-
&-last {
|
|
37
|
-
margin-bottom: 0;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
svg {
|
|
41
|
-
margin-right: 4px;
|
|
42
|
-
margin-bottom: 2px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
> .collapsed-show {
|
|
46
|
-
display: none;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
> .collapsed-hide {
|
|
50
|
-
display: inline-block;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&.collapsed {
|
|
54
|
-
> .collapsed-show {
|
|
55
|
-
display: inline-block;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
> .collapsed-hide {
|
|
59
|
-
display: none;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
.bd-filter-card {
|
|
2
|
+
.card-body {
|
|
3
|
+
padding: 16px;
|
|
4
|
+
|
|
5
|
+
.bd-input-group {
|
|
6
|
+
font-size: 15px;
|
|
7
|
+
margin-bottom: 8px;
|
|
8
|
+
|
|
9
|
+
&:last-of-type {
|
|
10
|
+
margin-bottom: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
label {
|
|
14
|
+
word-break: break-word;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
label, button {
|
|
18
|
+
font-size: 15px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.form-label {
|
|
22
|
+
margin-bottom: 8px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.bd-form-checkbox {
|
|
26
|
+
display: flex;
|
|
27
|
+
margin-bottom: 2px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.collapse-button {
|
|
31
|
+
padding: 0;
|
|
32
|
+
font-weight: 700;
|
|
33
|
+
height: 24px;
|
|
34
|
+
line-height: normal;
|
|
35
|
+
|
|
36
|
+
&-last {
|
|
37
|
+
margin-bottom: 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
svg {
|
|
41
|
+
margin-right: 4px;
|
|
42
|
+
margin-bottom: 2px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
> .collapsed-show {
|
|
46
|
+
display: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
> .collapsed-hide {
|
|
50
|
+
display: inline-block;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&.collapsed {
|
|
54
|
+
> .collapsed-show {
|
|
55
|
+
display: inline-block;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
> .collapsed-hide {
|
|
59
|
+
display: none;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
65
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
.bd-form-field {
|
|
2
|
-
margin-bottom: 27px;
|
|
3
|
-
|
|
4
|
-
.form-input-with-button{
|
|
5
|
-
display: flex;
|
|
6
|
-
gap: 0.5rem;
|
|
7
|
-
justify-content: space-between;
|
|
8
|
-
|
|
9
|
-
.btn{
|
|
10
|
-
height:auto;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
1
|
+
.bd-form-field {
|
|
2
|
+
margin-bottom: 27px;
|
|
3
|
+
|
|
4
|
+
.form-input-with-button{
|
|
5
|
+
display: flex;
|
|
6
|
+
gap: 0.5rem;
|
|
7
|
+
justify-content: space-between;
|
|
8
|
+
|
|
9
|
+
.btn{
|
|
10
|
+
height:auto;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
13
|
}
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
.bd-form-multiple-checkbox {
|
|
2
|
-
width: auto;
|
|
3
|
-
background: #ffffff;
|
|
4
|
-
border-radius: 5px;
|
|
5
|
-
padding: 12px 12px;
|
|
6
|
-
border: 1px solid #abb0be;
|
|
7
|
-
|
|
8
|
-
label {
|
|
9
|
-
font-weight: 400;
|
|
10
|
-
line-height: normal;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/* width */
|
|
14
|
-
&::-webkit-scrollbar {
|
|
15
|
-
width: 10px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
/* Handle */
|
|
19
|
-
&::-webkit-scrollbar-thumb {
|
|
20
|
-
background: $color-border;
|
|
21
|
-
border-radius: 10px;
|
|
22
|
-
border: solid 3px white;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/* Handle on hover */
|
|
26
|
-
&::-webkit-scrollbar-thumb:hover {
|
|
27
|
-
background: $color-border;
|
|
28
|
-
border: solid 3px white;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
&.is-invalid {
|
|
32
|
-
border: 1px solid $color-red;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&.overflow-form-control {
|
|
36
|
-
max-height: 200px;
|
|
37
|
-
overflow: scroll;
|
|
38
|
-
overflow-x: hidden;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.custom-checkbox {
|
|
42
|
-
margin-bottom: 0px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.custom-control-label {
|
|
46
|
-
line-height: 30px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
button {
|
|
50
|
-
margin-bottom: 10px;
|
|
51
|
-
}
|
|
1
|
+
.bd-form-multiple-checkbox {
|
|
2
|
+
width: auto;
|
|
3
|
+
background: #ffffff;
|
|
4
|
+
border-radius: 5px;
|
|
5
|
+
padding: 12px 12px;
|
|
6
|
+
border: 1px solid #abb0be;
|
|
7
|
+
|
|
8
|
+
label {
|
|
9
|
+
font-weight: 400;
|
|
10
|
+
line-height: normal;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/* width */
|
|
14
|
+
&::-webkit-scrollbar {
|
|
15
|
+
width: 10px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* Handle */
|
|
19
|
+
&::-webkit-scrollbar-thumb {
|
|
20
|
+
background: $color-border;
|
|
21
|
+
border-radius: 10px;
|
|
22
|
+
border: solid 3px white;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* Handle on hover */
|
|
26
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
27
|
+
background: $color-border;
|
|
28
|
+
border: solid 3px white;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.is-invalid {
|
|
32
|
+
border: 1px solid $color-red;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&.overflow-form-control {
|
|
36
|
+
max-height: 200px;
|
|
37
|
+
overflow: scroll;
|
|
38
|
+
overflow-x: hidden;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.custom-checkbox {
|
|
42
|
+
margin-bottom: 0px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.custom-control-label {
|
|
46
|
+
line-height: 30px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
button {
|
|
50
|
+
margin-bottom: 10px;
|
|
51
|
+
}
|
|
52
52
|
}
|
package/dist/scss/_forms.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import "forms/form-check";
|
|
2
|
-
@import "forms/form-input";
|
|
1
|
+
@import "forms/form-check";
|
|
2
|
+
@import "forms/form-input";
|