@beterdichtbij/component-library 0.70.1 → 0.71.0-alpha.1

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 +57 -57
  3. package/dist/bd-component-lib.css +1 -1
  4. package/dist/bd-component-lib.es.js +106 -50
  5. package/dist/bd-component-lib.umd.js +97 -97
  6. package/dist/components/templates/BDVideoCallTemplate/BDVideoCallTemplate.vue.d.ts +0 -2
  7. package/dist/locales/en.json +42 -10
  8. package/dist/locales/nl.json +143 -137
  9. package/dist/scss/_active-filters.scss +65 -65
  10. package/dist/scss/_alert.scss +5 -5
  11. package/dist/scss/_article.scss +20 -20
  12. package/dist/scss/_assign-conversation-modal.scss +13 -13
  13. package/dist/scss/_attachments.scss +107 -107
  14. package/dist/scss/_badge.scss +18 -18
  15. package/dist/scss/_button.scss +74 -74
  16. package/dist/scss/_card.scss +56 -56
  17. package/dist/scss/_chatcloud.scss +98 -98
  18. package/dist/scss/_collapsable-card.scss +107 -107
  19. package/dist/scss/_content-library-card-message-template.scss +136 -136
  20. package/dist/scss/_content-library-card.scss +158 -158
  21. package/dist/scss/_content-library-modal.scss +8 -8
  22. package/dist/scss/_content-library-overview.scss +4 -4
  23. package/dist/scss/_content-library-split-button.scss +23 -23
  24. package/dist/scss/_conversation-to-text-modal.scss +36 -36
  25. package/dist/scss/_dropdown.scss +113 -113
  26. package/dist/scss/_extern.scss +1 -1
  27. package/dist/scss/_file-upload-preview.scss +53 -53
  28. package/dist/scss/_file-upload.scss +26 -26
  29. package/dist/scss/_filter-card.scss +64 -64
  30. package/dist/scss/_form-field.scss +12 -12
  31. package/dist/scss/_form-multiple-checkbox.scss +51 -51
  32. package/dist/scss/_forms.scss +2 -2
  33. package/dist/scss/_header.scss +170 -170
  34. package/dist/scss/_icon-luscii-logo.scss +31 -31
  35. package/dist/scss/_icons.scss +38 -38
  36. package/dist/scss/_image-attachment-modal.scss +91 -91
  37. package/dist/scss/_input-group.scss +2 -2
  38. package/dist/scss/_loader.scss +59 -59
  39. package/dist/scss/_markdown-editor.scss +114 -114
  40. package/dist/scss/_message-template-form-modal.scss +47 -47
  41. package/dist/scss/_mixins.scss +78 -78
  42. package/dist/scss/_mobile-menu.scss +91 -91
  43. package/dist/scss/_modal.scss +176 -176
  44. package/dist/scss/_notification-button.scss +29 -29
  45. package/dist/scss/_pagination.scss +56 -56
  46. package/dist/scss/_phone-number-edit-modal.scss +35 -35
  47. package/dist/scss/_pill-container.scss +26 -26
  48. package/dist/scss/_pill.scss +63 -63
  49. package/dist/scss/_profile-image.scss +34 -34
  50. package/dist/scss/_table-sort-header.scss +13 -13
  51. package/dist/scss/_table.scss +16 -16
  52. package/dist/scss/_templates.scss +318 -317
  53. package/dist/scss/_toast.scss +69 -69
  54. package/dist/scss/_user-information.scss +34 -34
  55. package/dist/scss/_user.scss +21 -21
  56. package/dist/scss/_video-call-toast.scss +100 -100
  57. package/dist/scss/_zoomslider.scss +77 -77
  58. package/dist/scss/base/variables.scss +210 -210
  59. package/dist/scss/extern/_bootstrap.scss +14 -14
  60. package/dist/scss/extern/_prime-vue.scss +551 -551
  61. package/dist/scss/forms/_form-check.scss +16 -16
  62. package/dist/scss/forms/_form-input.scss +9 -9
  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 +9 -9
  67. package/dist/scss/templates/_video-call-template.scss +212 -0
  68. package/dist/stores/SessionTimeOutStore.ts +46 -46
  69. package/package.json +133 -133
@@ -1,318 +1,319 @@
1
- @import "templates/change-password-template";
2
- @import "templates/content-library-template";
3
- @import "templates/not-found-template";
4
- // TODO split up per template component
5
-
6
- .template {
7
- @media (max-width: map-get($grid-breakpoints, md)) {
8
- .template-title {
9
- padding-left:1rem;
10
- }
11
-
12
- .container, .row {
13
- --bs-gutter-x: 0;
14
- }
15
-
16
- .container {
17
- border-top-left-radius: 8px;
18
- border-top-right-radius: 8px;
19
- }
20
-
21
- button {
22
- margin-right : 1rem;
23
- }
24
-
25
- img {
26
- border-top-left-radius: 8px;
27
- border-top-right-radius: 8px;
28
- }
29
- }
30
-
31
- &.my-organization-template {
32
- .template-header-col {
33
- display: flex;
34
- justify-content: space-between;
35
-
36
- h2 {
37
- line-height: 2.375rem;
38
- }
39
- }
40
-
41
- .bd-card-description {
42
- padding:0 2rem;
43
-
44
- h3 {
45
- font-size: 20px;
46
- font-weight: 700;
47
- line-height: 25px;
48
- }
49
-
50
- .city {
51
- font-family: Work Sans, sans-serif;
52
- font-size: 16px;
53
- font-weight: 400;
54
- line-height: 24px;
55
- text-align: left;
56
- color: #6B758A;
57
- }
58
- }
59
- }
60
-
61
- &.profile-edit-template, &.change-password-template {
62
- @media (max-width: map-get($grid-breakpoints, md)) {
63
-
64
- .bd-profile-picture{
65
- width:80px;
66
- height: 80px;
67
- }
68
- }
69
-
70
- .vue-date-picker {
71
- // Style only applies when dialog is above.
72
- .dp__arrow_bottom + div .dp__calendar {
73
- $week-height: 45px;
74
- height: $week-height * 6;
75
- }
76
-
77
- .dp__theme_light {
78
- flex: 1;
79
- --dp-font-family: $font-primary;
80
- --dp-primary-color: #3594CF;
81
- --dp-text-color : $font-color-primary;
82
-
83
- .btn {
84
- height: 38px;
85
- }
86
- }
87
- }
88
- }
89
-
90
- .bd-card-template {
91
- margin-bottom: 50px;
92
- padding: 56px;
93
-
94
- @media (max-width: map-get($grid-breakpoints, md)) {
95
- padding: 1rem;
96
- }
97
-
98
- .card-body{
99
- padding:revert;
100
- }
101
-
102
- .bd-card-img {
103
- display:flex;
104
- gap: 18px;
105
- margin-bottom: 2rem;
106
-
107
- button,.btn,.btn-link{
108
- align-self: center;
109
- }
110
- }
111
-
112
- .form-input-with-button{
113
- display:flex;
114
- gap: 0.5rem;
115
- }
116
- .form-label{
117
- margin-bottom:0.25rem;
118
- span.form-label-optional {
119
- font-weight:400;
120
- }
121
- }
122
-
123
- &.my-organization-card {
124
- padding: 0px;
125
-
126
- .bd-card-img {
127
- padding: 0px;
128
- width: 100%;
129
- height: 250px;
130
-
131
- img {
132
- object-fit: cover;
133
- border-bottom-left-radius: 0px;
134
- border-bottom-right-radius: 0px;
135
- }
136
- }
137
- }
138
- }
139
-
140
- &.overview-template {
141
- .bd-dropdown.dropdown .dropdown-toggle {
142
- display: flex;
143
- align-items: center;
144
- font-weight: 500;
145
- font-size: 13px;
146
- letter-spacing: 0;
147
- line-height: 24px;
148
- margin-right: 0px;
149
- text-decoration: none;
150
- }
151
-
152
- .bd-form-checkbox {
153
- margin-bottom: 22px;
154
- font-family: $font-family-base;
155
- }
156
-
157
- .bd-article {
158
- margin-bottom: 16px;
159
- padding: 20px;
160
- cursor: pointer;
161
-
162
- header {
163
- position: relative;
164
-
165
- .bd-date {
166
- color: $secondary;
167
- font-size: .875rem;
168
- font-weight: 400;
169
- text-wrap: nowrap;
170
- }
171
-
172
- .bd-counter {
173
- margin-right: 0px;
174
- }
175
-
176
- .bd-user__information header {
177
- justify-content: flex-start;
178
- }
179
- }
180
-
181
- .bd-dropdown .dropdown-menu {
182
- padding: 0px;
183
-
184
- .dropdown-item {
185
- cursor: pointer;
186
- line-height: normal;
187
- padding: 8px 20px;
188
- }
189
- }
190
- }
191
-
192
- .bd-badge {
193
- margin-right:auto;
194
- margin: 0px 4px;
195
- align-self:flex-start;
196
- }
197
-
198
- .bd-text{
199
- line-height: 1.375rem;
200
- max-height: 2.75rem;
201
- overflow: hidden;
202
- display: -webkit-box;
203
- -webkit-box-orient: vertical;
204
- overflow: hidden;
205
- -webkit-line-clamp: 2;
206
-
207
- p {
208
- margin-bottom: 0px;
209
- }
210
- }
211
-
212
- .bd-body-card {
213
- display: flex;
214
- justify-content: space-between;
215
-
216
- @media (max-width: map-get($grid-breakpoints, md)) {
217
- flex-direction: column;
218
- align-items:flex-end;
219
- >*:first-child {
220
- align-self: stretch;
221
- }
222
- }
223
-
224
-
225
- }
226
-
227
- .bd-dropdown {
228
- margin-right: 0px;
229
- }
230
-
231
- .bd-counter {
232
- display:none
233
- }
234
-
235
- .bd-article.is-unread {
236
- border-right: 4px solid $primary;
237
-
238
- .bd-date {
239
- color: $primary;
240
- font-weight: 500;
241
- }
242
-
243
- .bd-counter {
244
- display: block;
245
- width: 20px;
246
- height: 20px;
247
- border-radius: 12px;
248
- background-color: $primary;
249
- margin-top:6px;
250
- }
251
- }
252
- }
253
-
254
- &.detail-conversation-template{
255
- .bd-card-template {
256
- margin-top: 20px;
257
- }
258
-
259
- .spinner-border {
260
- width: 1rem;
261
- height: 1rem;
262
- --bs-spinner-border-width: 0.15em;
263
- }
264
-
265
- .icon-eye-show {
266
- height: 25px;
267
- width: 25px;
268
- padding-bottom: 3px;
269
- }
270
- }
271
-
272
- &.not-found-template {
273
- padding-top: 0px;
274
-
275
- .center-screen {
276
- display: flex;
277
- justify-content: center;
278
- align-items: center;
279
- text-align: center;
280
- min-height: 100vh;
281
- }
282
-
283
- .container-warning {
284
- display: flex;
285
- flex-direction: column;
286
- align-items: center;
287
- justify-content: center;
288
- gap: 20px;
289
- background-color: #fff;
290
- height: 319px;
291
- width: 500px;
292
- border-radius: 8px;
293
- padding: 40px;
294
-
295
- }
296
- }
297
- }
298
-
299
- @media (max-width: map-get($grid-breakpoints, sm)) {
300
- .template {
301
- &.overview-template {
302
- .bd-form-checkbox {
303
- padding-left:2.8rem;
304
- margin-bottom: 12px;
305
- }
306
-
307
- .conversations-container {
308
- padding: 0px;
309
-
310
- .bd-article {
311
- margin-bottom: 5px;
312
- border-radius: 0px;
313
- padding: 16px;
314
- }
315
- }
316
- }
317
- }
1
+ @import "templates/change-password-template";
2
+ @import "templates/content-library-template";
3
+ @import "templates/not-found-template";
4
+ @import "templates/video-call-template";
5
+ // TODO split up per template component
6
+
7
+ .template {
8
+ @media (max-width: map-get($grid-breakpoints, md)) {
9
+ .template-title {
10
+ padding-left:1rem;
11
+ }
12
+
13
+ .container, .row {
14
+ --bs-gutter-x: 0;
15
+ }
16
+
17
+ .container {
18
+ border-top-left-radius: 8px;
19
+ border-top-right-radius: 8px;
20
+ }
21
+
22
+ button {
23
+ margin-right : 1rem;
24
+ }
25
+
26
+ img {
27
+ border-top-left-radius: 8px;
28
+ border-top-right-radius: 8px;
29
+ }
30
+ }
31
+
32
+ &.my-organization-template {
33
+ .template-header-col {
34
+ display: flex;
35
+ justify-content: space-between;
36
+
37
+ h2 {
38
+ line-height: 2.375rem;
39
+ }
40
+ }
41
+
42
+ .bd-card-description {
43
+ padding:0 2rem;
44
+
45
+ h3 {
46
+ font-size: 20px;
47
+ font-weight: 700;
48
+ line-height: 25px;
49
+ }
50
+
51
+ .city {
52
+ font-family: Work Sans, sans-serif;
53
+ font-size: 16px;
54
+ font-weight: 400;
55
+ line-height: 24px;
56
+ text-align: left;
57
+ color: #6B758A;
58
+ }
59
+ }
60
+ }
61
+
62
+ &.profile-edit-template, &.change-password-template {
63
+ @media (max-width: map-get($grid-breakpoints, md)) {
64
+
65
+ .bd-profile-picture{
66
+ width:80px;
67
+ height: 80px;
68
+ }
69
+ }
70
+
71
+ .vue-date-picker {
72
+ // Style only applies when dialog is above.
73
+ .dp__arrow_bottom + div .dp__calendar {
74
+ $week-height: 45px;
75
+ height: $week-height * 6;
76
+ }
77
+
78
+ .dp__theme_light {
79
+ flex: 1;
80
+ --dp-font-family: $font-primary;
81
+ --dp-primary-color: #3594CF;
82
+ --dp-text-color : $font-color-primary;
83
+
84
+ .btn {
85
+ height: 38px;
86
+ }
87
+ }
88
+ }
89
+ }
90
+
91
+ .bd-card-template {
92
+ margin-bottom: 50px;
93
+ padding: 56px;
94
+
95
+ @media (max-width: map-get($grid-breakpoints, md)) {
96
+ padding: 1rem;
97
+ }
98
+
99
+ .card-body{
100
+ padding:revert;
101
+ }
102
+
103
+ .bd-card-img {
104
+ display:flex;
105
+ gap: 18px;
106
+ margin-bottom: 2rem;
107
+
108
+ button,.btn,.btn-link{
109
+ align-self: center;
110
+ }
111
+ }
112
+
113
+ .form-input-with-button{
114
+ display:flex;
115
+ gap: 0.5rem;
116
+ }
117
+ .form-label{
118
+ margin-bottom:0.25rem;
119
+ span.form-label-optional {
120
+ font-weight:400;
121
+ }
122
+ }
123
+
124
+ &.my-organization-card {
125
+ padding: 0px;
126
+
127
+ .bd-card-img {
128
+ padding: 0px;
129
+ width: 100%;
130
+ height: 250px;
131
+
132
+ img {
133
+ object-fit: cover;
134
+ border-bottom-left-radius: 0px;
135
+ border-bottom-right-radius: 0px;
136
+ }
137
+ }
138
+ }
139
+ }
140
+
141
+ &.overview-template {
142
+ .bd-dropdown.dropdown .dropdown-toggle {
143
+ display: flex;
144
+ align-items: center;
145
+ font-weight: 500;
146
+ font-size: 13px;
147
+ letter-spacing: 0;
148
+ line-height: 24px;
149
+ margin-right: 0px;
150
+ text-decoration: none;
151
+ }
152
+
153
+ .bd-form-checkbox {
154
+ margin-bottom: 22px;
155
+ font-family: $font-family-base;
156
+ }
157
+
158
+ .bd-article {
159
+ margin-bottom: 16px;
160
+ padding: 20px;
161
+ cursor: pointer;
162
+
163
+ header {
164
+ position: relative;
165
+
166
+ .bd-date {
167
+ color: $secondary;
168
+ font-size: .875rem;
169
+ font-weight: 400;
170
+ text-wrap: nowrap;
171
+ }
172
+
173
+ .bd-counter {
174
+ margin-right: 0px;
175
+ }
176
+
177
+ .bd-user__information header {
178
+ justify-content: flex-start;
179
+ }
180
+ }
181
+
182
+ .bd-dropdown .dropdown-menu {
183
+ padding: 0px;
184
+
185
+ .dropdown-item {
186
+ cursor: pointer;
187
+ line-height: normal;
188
+ padding: 8px 20px;
189
+ }
190
+ }
191
+ }
192
+
193
+ .bd-badge {
194
+ margin-right:auto;
195
+ margin: 0px 4px;
196
+ align-self:flex-start;
197
+ }
198
+
199
+ .bd-text{
200
+ line-height: 1.375rem;
201
+ max-height: 2.75rem;
202
+ overflow: hidden;
203
+ display: -webkit-box;
204
+ -webkit-box-orient: vertical;
205
+ overflow: hidden;
206
+ -webkit-line-clamp: 2;
207
+
208
+ p {
209
+ margin-bottom: 0px;
210
+ }
211
+ }
212
+
213
+ .bd-body-card {
214
+ display: flex;
215
+ justify-content: space-between;
216
+
217
+ @media (max-width: map-get($grid-breakpoints, md)) {
218
+ flex-direction: column;
219
+ align-items:flex-end;
220
+ >*:first-child {
221
+ align-self: stretch;
222
+ }
223
+ }
224
+
225
+
226
+ }
227
+
228
+ .bd-dropdown {
229
+ margin-right: 0px;
230
+ }
231
+
232
+ .bd-counter {
233
+ display:none
234
+ }
235
+
236
+ .bd-article.is-unread {
237
+ border-right: 4px solid $primary;
238
+
239
+ .bd-date {
240
+ color: $primary;
241
+ font-weight: 500;
242
+ }
243
+
244
+ .bd-counter {
245
+ display: block;
246
+ width: 20px;
247
+ height: 20px;
248
+ border-radius: 12px;
249
+ background-color: $primary;
250
+ margin-top:6px;
251
+ }
252
+ }
253
+ }
254
+
255
+ &.detail-conversation-template{
256
+ .bd-card-template {
257
+ margin-top: 20px;
258
+ }
259
+
260
+ .spinner-border {
261
+ width: 1rem;
262
+ height: 1rem;
263
+ --bs-spinner-border-width: 0.15em;
264
+ }
265
+
266
+ .icon-eye-show {
267
+ height: 25px;
268
+ width: 25px;
269
+ padding-bottom: 3px;
270
+ }
271
+ }
272
+
273
+ &.not-found-template {
274
+ padding-top: 0px;
275
+
276
+ .center-screen {
277
+ display: flex;
278
+ justify-content: center;
279
+ align-items: center;
280
+ text-align: center;
281
+ min-height: 100vh;
282
+ }
283
+
284
+ .container-warning {
285
+ display: flex;
286
+ flex-direction: column;
287
+ align-items: center;
288
+ justify-content: center;
289
+ gap: 20px;
290
+ background-color: #fff;
291
+ height: 319px;
292
+ width: 500px;
293
+ border-radius: 8px;
294
+ padding: 40px;
295
+
296
+ }
297
+ }
298
+ }
299
+
300
+ @media (max-width: map-get($grid-breakpoints, sm)) {
301
+ .template {
302
+ &.overview-template {
303
+ .bd-form-checkbox {
304
+ padding-left:2.8rem;
305
+ margin-bottom: 12px;
306
+ }
307
+
308
+ .conversations-container {
309
+ padding: 0px;
310
+
311
+ .bd-article {
312
+ margin-bottom: 5px;
313
+ border-radius: 0px;
314
+ padding: 16px;
315
+ }
316
+ }
317
+ }
318
+ }
318
319
  }