@beterdichtbij/component-library 0.72.4-beta.0 → 0.72.4

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.
Files changed (69) hide show
  1. package/README.md +12 -12
  2. package/dist/bd-component-lib.cjs.js +55 -55
  3. package/dist/bd-component-lib.css +1 -1
  4. package/dist/bd-component-lib.es.js +11 -11
  5. package/dist/bd-component-lib.umd.js +56 -56
  6. package/dist/locales/en.json +79 -79
  7. package/dist/locales/nl.json +180 -180
  8. package/dist/scss/_active-filters.scss +65 -65
  9. package/dist/scss/_alert.scss +11 -9
  10. package/dist/scss/_article.scss +31 -31
  11. package/dist/scss/_assign-conversation-modal.scss +13 -13
  12. package/dist/scss/_attachments.scss +107 -107
  13. package/dist/scss/_badge.scss +18 -18
  14. package/dist/scss/_button.scss +80 -80
  15. package/dist/scss/_card.scss +62 -61
  16. package/dist/scss/_chatcloud.scss +99 -101
  17. package/dist/scss/_collapsable-card.scss +103 -103
  18. package/dist/scss/_content-library-card-message-template.scss +136 -136
  19. package/dist/scss/_content-library-card.scss +158 -158
  20. package/dist/scss/_content-library-modal.scss +8 -8
  21. package/dist/scss/_content-library-overview.scss +4 -4
  22. package/dist/scss/_content-library-split-button.scss +23 -23
  23. package/dist/scss/_conversation-to-text-modal.scss +36 -36
  24. package/dist/scss/_dropdown.scss +113 -113
  25. package/dist/scss/_extern.scss +1 -1
  26. package/dist/scss/_file-upload-preview.scss +53 -53
  27. package/dist/scss/_file-upload.scss +26 -26
  28. package/dist/scss/_filter-card.scss +64 -64
  29. package/dist/scss/_form-field.scss +12 -12
  30. package/dist/scss/_form-multiple-checkbox.scss +51 -51
  31. package/dist/scss/_forms.scss +3 -3
  32. package/dist/scss/_header.scss +170 -170
  33. package/dist/scss/_icon-luscii-logo.scss +31 -31
  34. package/dist/scss/_icons.scss +38 -38
  35. package/dist/scss/_image-attachment-modal.scss +91 -91
  36. package/dist/scss/_input-group.scss +2 -2
  37. package/dist/scss/_loader.scss +59 -59
  38. package/dist/scss/_markdown-editor.scss +114 -114
  39. package/dist/scss/_message-template-form-modal.scss +47 -47
  40. package/dist/scss/_mixins.scss +78 -78
  41. package/dist/scss/_mobile-menu.scss +91 -91
  42. package/dist/scss/_modal.scss +182 -182
  43. package/dist/scss/_notification-button.scss +29 -29
  44. package/dist/scss/_pagination.scss +56 -56
  45. package/dist/scss/_phone-number-edit-modal.scss +35 -35
  46. package/dist/scss/_pill-container.scss +26 -26
  47. package/dist/scss/_pill.scss +63 -63
  48. package/dist/scss/_profile-image.scss +34 -34
  49. package/dist/scss/_table-sort-header.scss +13 -13
  50. package/dist/scss/_table.scss +16 -16
  51. package/dist/scss/_templates.scss +264 -294
  52. package/dist/scss/_toast.scss +69 -69
  53. package/dist/scss/_user-information.scss +34 -34
  54. package/dist/scss/_user.scss +21 -21
  55. package/dist/scss/_video-call-toast.scss +100 -100
  56. package/dist/scss/_zoomslider.scss +77 -77
  57. package/dist/scss/base/variables.scss +210 -210
  58. package/dist/scss/extern/_bootstrap.scss +14 -14
  59. package/dist/scss/extern/_prime-vue.scss +551 -551
  60. package/dist/scss/forms/_form-check.scss +16 -16
  61. package/dist/scss/forms/_form-input.scss +9 -9
  62. package/dist/scss/forms/_form-select.scss +4 -4
  63. package/dist/scss/main.scss +52 -52
  64. package/dist/scss/templates/_change-password-template.scss +8 -8
  65. package/dist/scss/templates/_content-library-template.scss +135 -135
  66. package/dist/scss/templates/_not-found-template.scss +35 -36
  67. package/dist/scss/templates/_video-call-template.scss +225 -225
  68. package/dist/stores/SessionTimeOutStore.ts +46 -46
  69. package/package.json +133 -133
@@ -1,183 +1,183 @@
1
- .modal.bd-modal {
2
-
3
- backdrop-filter: brightness(0.7);
4
-
5
- &.modal-xl {
6
- @include media-breakpoint-down(xl) {
7
- .modal-dialog {
8
- max-width: 100%;
9
- }
10
- }
11
- }
12
-
13
- .modal-dialog {
14
- min-height: 100%;
15
- display: flex;
16
- align-items: center;
17
- margin: 0 auto;
18
-
19
- .modal-content {
20
- background: #f5f5f5;
21
- }
22
-
23
- .modal-header {
24
- display: flex;
25
- align-items: center;
26
- justify-content: space-between;
27
- // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
28
- border-radius: inherit;
29
-
30
- button.btn-close {
31
- top: 20px;
32
- right: 20px;
33
- position: absolute;
34
- padding: revert;
35
- margin: revert;
36
- height: revert;
37
- display: flex;
38
- gap: 4px;
39
- background: transparent;
40
- background-image: initial;
41
- color: $gray-primary;
42
-
43
- &:focus-visible {
44
- outline: 3px solid $blue-dark;
45
- outline-offset: 2px;
46
- }
47
-
48
- .icon-close {
49
- width: 24px;
50
- height: 24px;
51
- background-color: $blue-text;
52
- display: inline-block;
53
- padding: 4px;
54
- border-radius: 50%;
55
-
56
- path {
57
- fill: $color-white;
58
- }
59
-
60
- &:hover {
61
- background-color: $color-lightblue;
62
-
63
- path {
64
- fill: $blue-text;
65
- }
66
- }
67
- }
68
- }
69
-
70
- @include media-breakpoint-up(md) {
71
- padding: 30px 65px 15px 65px;
72
- }
73
-
74
- @include media-breakpoint-down(md) {
75
- flex-direction: column-reverse;
76
- align-items: center;
77
- justify-content: center;
78
- padding: .75rem;
79
- margin-top: 0px;
80
-
81
- > * {
82
- width: 100%;
83
- text-align: center;
84
- }
85
-
86
- button.btn-close {
87
- top: initial;
88
- right: initial;
89
- position: initial;
90
- margin: auto;
91
- font-size: 0.9em;
92
- padding: initial;
93
- height: initial;
94
- }
95
- }
96
- }
97
-
98
- .modal-body {
99
- border: 0px;
100
- // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
101
- border-radius: inherit;
102
-
103
- @include media-breakpoint-up(md) {
104
- padding: 15px 65px 30px 65px;
105
- }
106
-
107
- > p:last-of-type {
108
- margin-bottom: 0;
109
- }
110
- }
111
-
112
- &:has(.modal-footer) .modal-body {
113
- @include media-breakpoint-up(md) {
114
- padding: 15px 65px;
115
- }
116
- }
117
-
118
- .modal-footer {
119
- justify-content: flex-start;
120
- gap: 5px;
121
- // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
122
- border-radius: inherit;
123
-
124
- button {
125
- margin: 0 2px;
126
-
127
- &:first-child {
128
- margin-left: 0;
129
- }
130
-
131
- &:last-child {
132
- margin-right: 0;
133
- }
134
- }
135
-
136
- @include media-breakpoint-up(md) {
137
- padding: 15px 65px 30px 65px;
138
- }
139
-
140
- @include media-breakpoint-down(md) {
141
- display: flex;
142
- align-items: center;
143
- justify-content: center;
144
- padding: .75rem;
145
-
146
- > button {
147
- width: 100%;
148
- margin: 2px 0;
149
-
150
- &:first-child {
151
- margin-top: 0;
152
- }
153
-
154
- &:last-child {
155
- margin-bottom: 0;
156
- }
157
- }
158
- }
159
- }
160
-
161
- .btn-close {
162
- align-self: baseline;
163
- }
164
-
165
- .modal-title {
166
- font-family: $font-secondary;
167
- font-weight: $font-normal;
168
- font-size: 31px;
169
- color: $color-darkblue;
170
- letter-spacing: 0;
171
-
172
- @include media-breakpoint-down(sm) {
173
- margin-top: 20px;
174
- line-height:normal;
175
- }
176
-
177
- .title-image {
178
- height: 31px;
179
- margin-right: 10px;
180
- }
181
- }
182
- }
1
+ .modal.bd-modal {
2
+
3
+ backdrop-filter: brightness(0.7);
4
+
5
+ &.modal-xl {
6
+ @include media-breakpoint-down(xl) {
7
+ .modal-dialog {
8
+ max-width: 100%;
9
+ }
10
+ }
11
+ }
12
+
13
+ .modal-dialog {
14
+ min-height: 100%;
15
+ display: flex;
16
+ align-items: center;
17
+ margin: 0 auto;
18
+
19
+ .modal-content {
20
+ background: #f5f5f5;
21
+ }
22
+
23
+ .modal-header {
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
28
+ border-radius: inherit;
29
+
30
+ button.btn-close {
31
+ top: 20px;
32
+ right: 20px;
33
+ position: absolute;
34
+ padding: revert;
35
+ margin: revert;
36
+ height: revert;
37
+ display: flex;
38
+ gap: 4px;
39
+ background: transparent;
40
+ background-image: initial;
41
+ color: $gray-primary;
42
+
43
+ &:focus-visible {
44
+ outline: 3px solid $blue-dark;
45
+ outline-offset: 2px;
46
+ }
47
+
48
+ .icon-close {
49
+ width: 24px;
50
+ height: 24px;
51
+ background-color: $blue-text;
52
+ display: inline-block;
53
+ padding: 4px;
54
+ border-radius: 50%;
55
+
56
+ path {
57
+ fill: $color-white;
58
+ }
59
+
60
+ &:hover {
61
+ background-color: $color-lightblue;
62
+
63
+ path {
64
+ fill: $blue-text;
65
+ }
66
+ }
67
+ }
68
+ }
69
+
70
+ @include media-breakpoint-up(md) {
71
+ padding: 30px 65px 15px 65px;
72
+ }
73
+
74
+ @include media-breakpoint-down(md) {
75
+ flex-direction: column-reverse;
76
+ align-items: center;
77
+ justify-content: center;
78
+ padding: .75rem;
79
+ margin-top: 0px;
80
+
81
+ > * {
82
+ width: 100%;
83
+ text-align: center;
84
+ }
85
+
86
+ button.btn-close {
87
+ top: initial;
88
+ right: initial;
89
+ position: initial;
90
+ margin: auto;
91
+ font-size: 0.9em;
92
+ padding: initial;
93
+ height: initial;
94
+ }
95
+ }
96
+ }
97
+
98
+ .modal-body {
99
+ border: 0px;
100
+ // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
101
+ border-radius: inherit;
102
+
103
+ @include media-breakpoint-up(md) {
104
+ padding: 15px 65px 30px 65px;
105
+ }
106
+
107
+ > p:last-of-type {
108
+ margin-bottom: 0;
109
+ }
110
+ }
111
+
112
+ &:has(.modal-footer) .modal-body {
113
+ @include media-breakpoint-up(md) {
114
+ padding: 15px 65px;
115
+ }
116
+ }
117
+
118
+ .modal-footer {
119
+ justify-content: flex-start;
120
+ gap: 5px;
121
+ // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
122
+ border-radius: inherit;
123
+
124
+ button {
125
+ margin: 0 2px;
126
+
127
+ &:first-child {
128
+ margin-left: 0;
129
+ }
130
+
131
+ &:last-child {
132
+ margin-right: 0;
133
+ }
134
+ }
135
+
136
+ @include media-breakpoint-up(md) {
137
+ padding: 15px 65px 30px 65px;
138
+ }
139
+
140
+ @include media-breakpoint-down(md) {
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: center;
144
+ padding: .75rem;
145
+
146
+ > button {
147
+ width: 100%;
148
+ margin: 2px 0;
149
+
150
+ &:first-child {
151
+ margin-top: 0;
152
+ }
153
+
154
+ &:last-child {
155
+ margin-bottom: 0;
156
+ }
157
+ }
158
+ }
159
+ }
160
+
161
+ .btn-close {
162
+ align-self: baseline;
163
+ }
164
+
165
+ .modal-title {
166
+ font-family: $font-secondary;
167
+ font-weight: $font-normal;
168
+ font-size: 31px;
169
+ color: $color-darkblue;
170
+ letter-spacing: 0;
171
+
172
+ @include media-breakpoint-down(sm) {
173
+ margin-top: 20px;
174
+ line-height:normal;
175
+ }
176
+
177
+ .title-image {
178
+ height: 31px;
179
+ margin-right: 10px;
180
+ }
181
+ }
182
+ }
183
183
  }
@@ -1,30 +1,30 @@
1
- .bd-notification-button {
2
- display: flex;
3
- position: relative;
4
- justify-content: center;
5
- align-items: center;
6
- text-decoration: none;
7
- width: 40px;
8
- height: 40px;
9
- font-size: 18px;
10
-
11
- img {
12
- width: 100%;
13
- height: 100%
14
- }
15
-
16
- .number-circle {
17
- position: absolute;
18
- top: 5px;
19
- right: 5px;
20
- border-radius: 50%;
21
- width: 12px;
22
- height: 12px;
23
- background: #3594cf;
24
- color: #ffffff;
25
- font-size: 10px;
26
- display: flex;
27
- justify-content: center;
28
- align-items: center;
29
- }
1
+ .bd-notification-button {
2
+ display: flex;
3
+ position: relative;
4
+ justify-content: center;
5
+ align-items: center;
6
+ text-decoration: none;
7
+ width: 40px;
8
+ height: 40px;
9
+ font-size: 18px;
10
+
11
+ img {
12
+ width: 100%;
13
+ height: 100%
14
+ }
15
+
16
+ .number-circle {
17
+ position: absolute;
18
+ top: 5px;
19
+ right: 5px;
20
+ border-radius: 50%;
21
+ width: 12px;
22
+ height: 12px;
23
+ background: #3594cf;
24
+ color: #ffffff;
25
+ font-size: 10px;
26
+ display: flex;
27
+ justify-content: center;
28
+ align-items: center;
29
+ }
30
30
  }
@@ -1,57 +1,57 @@
1
- .page-link, .page-link:hover {
2
- width: 40px;
3
- height: 40px;
4
- border:$pagination-border-width solid $pagination-border-color;
5
- border-radius: $pagination-border-radius;
6
- font-weight: $font-semibold;
7
- color: $pagination-color;
8
- background-color: $white;
9
- cursor: pointer;
10
- user-select: none;
11
-
12
- .active &{
13
- border-color: $primary;
14
- background-color: $white;
15
- color: $font-color-primary;
16
-
17
- .colleague & {
18
- border-color: $color-colleague;
19
- }
20
-
21
- }
22
-
23
- .disabled &{
24
- border: none;
25
- background-color: transparent;
26
- }
27
- }
28
-
29
- .bd-pagination {
30
- .pagination {
31
- display: block;
32
- text-align: center;
33
- margin-bottom: 0px;
34
-
35
- &.colleague {
36
- .page-item:not(.active) .page-link {
37
- color: $color-colleague;
38
- }
39
- }
40
-
41
- .page-item {
42
- background-color: $white;
43
- display: inline-block;
44
- margin: 4px;
45
- vertical-align: top;
46
-
47
- .page-link {
48
- color: $blue;
49
-
50
- svg {
51
- color: $color-darkblue;
52
- margin: 0;
53
- }
54
- }
55
- }
56
- }
1
+ .page-link, .page-link:hover {
2
+ width: 40px;
3
+ height: 40px;
4
+ border:$pagination-border-width solid $pagination-border-color;
5
+ border-radius: $pagination-border-radius;
6
+ font-weight: $font-semibold;
7
+ color: $pagination-color;
8
+ background-color: $white;
9
+ cursor: pointer;
10
+ user-select: none;
11
+
12
+ .active &{
13
+ border-color: $primary;
14
+ background-color: $white;
15
+ color: $font-color-primary;
16
+
17
+ .colleague & {
18
+ border-color: $color-colleague;
19
+ }
20
+
21
+ }
22
+
23
+ .disabled &{
24
+ border: none;
25
+ background-color: transparent;
26
+ }
27
+ }
28
+
29
+ .bd-pagination {
30
+ .pagination {
31
+ display: block;
32
+ text-align: center;
33
+ margin-bottom: 0px;
34
+
35
+ &.colleague {
36
+ .page-item:not(.active) .page-link {
37
+ color: $color-colleague;
38
+ }
39
+ }
40
+
41
+ .page-item {
42
+ background-color: $white;
43
+ display: inline-block;
44
+ margin: 4px;
45
+ vertical-align: top;
46
+
47
+ .page-link {
48
+ color: $blue;
49
+
50
+ svg {
51
+ color: $color-darkblue;
52
+ margin: 0;
53
+ }
54
+ }
55
+ }
56
+ }
57
57
  }
@@ -1,36 +1,36 @@
1
- #phone-number-edit-modal {
2
- #form-input-telefoonnummer {
3
- flex: 1;
4
- }
5
-
6
- .alert-danger {
7
- ul {
8
- list-style: none;
9
- margin: 0;
10
- padding: 0;
11
- }
12
- }
13
-
14
- .mobile-device {
15
- display: none;
16
- }
17
-
18
- .tablet-device-up {
19
- display: block;
20
- }
21
-
22
- @media (max-width: 576px) {
23
- #form-input-phone-number .form-input-with-button {
24
- gap: 0;
25
- margin-bottom: 8px;
26
- }
27
-
28
- .mobile-device {
29
- display: block;
30
- }
31
-
32
- .tablet-device-up {
33
- display: none;
34
- }
35
- }
1
+ #phone-number-edit-modal {
2
+ #form-input-telefoonnummer {
3
+ flex: 1;
4
+ }
5
+
6
+ .alert-danger {
7
+ ul {
8
+ list-style: none;
9
+ margin: 0;
10
+ padding: 0;
11
+ }
12
+ }
13
+
14
+ .mobile-device {
15
+ display: none;
16
+ }
17
+
18
+ .tablet-device-up {
19
+ display: block;
20
+ }
21
+
22
+ @media (max-width: 576px) {
23
+ #form-input-phone-number .form-input-with-button {
24
+ gap: 0;
25
+ margin-bottom: 8px;
26
+ }
27
+
28
+ .mobile-device {
29
+ display: block;
30
+ }
31
+
32
+ .tablet-device-up {
33
+ display: none;
34
+ }
35
+ }
36
36
  }
@@ -1,26 +1,26 @@
1
- .bd-pill-container {
2
- margin-bottom: 20px;
3
-
4
- .bd-chat-cloud-card__footer &{
5
- margin-bottom: 0px;
6
- }
7
-
8
- &__list {
9
- display: flex;
10
- justify-content: flex-start;
11
- flex-flow: wrap;
12
- list-style: none;
13
- gap: 8px;
14
- padding: 5px 0px;
15
-
16
- .bd-chat-cloud-card__footer &{
17
- padding: 0px;
18
- }
19
- }
20
-
21
- &__item {
22
- max-width: 300px;
23
- overflow: auto;
24
- margin: 5px 5px 0px 0px;
25
- }
26
- }
1
+ .bd-pill-container {
2
+ margin-bottom: 20px;
3
+
4
+ .bd-chat-cloud-card__footer &{
5
+ margin-bottom: 0px;
6
+ }
7
+
8
+ &__list {
9
+ display: flex;
10
+ justify-content: flex-start;
11
+ flex-flow: wrap;
12
+ list-style: none;
13
+ gap: 8px;
14
+ padding: 5px 0px;
15
+
16
+ .bd-chat-cloud-card__footer &{
17
+ padding: 0px;
18
+ }
19
+ }
20
+
21
+ &__item {
22
+ max-width: 300px;
23
+ overflow: auto;
24
+ margin: 5px 5px 0px 0px;
25
+ }
26
+ }