@beterdichtbij/component-library 0.72.7-alpha.1 → 0.73.0-beta.0
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/dist/bd-component-lib.cjs.js +2 -2
- package/dist/bd-component-lib.es.js +288 -227
- package/dist/bd-component-lib.umd.js +2 -2
- package/dist/components/icons/IconBlur.vue.d.ts +2 -0
- package/dist/components/icons/IconParticipant.vue.d.ts +2 -0
- package/dist/locales/en.json +7 -1
- package/dist/locales/nl.json +7 -1
- package/dist/scss/_alert.scss +0 -6
- package/dist/scss/_article.scss +0 -11
- package/dist/scss/_card.scss +0 -6
- package/dist/scss/_chatcloud.scss +19 -20
- package/dist/scss/_collapsable-card.scss +4 -0
- package/dist/scss/_templates.scss +59 -5
- package/dist/scss/templates/_not-found-template.scss +0 -26
- package/dist/scss/templates/_video-call-template.scss +63 -0
- package/package.json +3 -3
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
package/dist/locales/en.json
CHANGED
|
@@ -23,7 +23,13 @@
|
|
|
23
23
|
"serviceDesk": "Service desk",
|
|
24
24
|
"endCall": "End call",
|
|
25
25
|
"closeWindow": "Close window",
|
|
26
|
-
"switchCamera": "Switch camera"
|
|
26
|
+
"switchCamera": "Switch camera",
|
|
27
|
+
"microphoneMute": "Mute microphone",
|
|
28
|
+
"microphoneUnmute": "Unmute microphone",
|
|
29
|
+
"cameraOff": "Turn off camera",
|
|
30
|
+
"cameraOn": "Turn on camera",
|
|
31
|
+
"backgroundBlur": "Blur background",
|
|
32
|
+
"backgroundUnblur": "Unblur background"
|
|
27
33
|
},
|
|
28
34
|
"help": {
|
|
29
35
|
"placeholderSettingsHelpTitle": "Connection issues?",
|
package/dist/locales/nl.json
CHANGED
|
@@ -124,7 +124,13 @@
|
|
|
124
124
|
"serviceDesk": "Servicedesk",
|
|
125
125
|
"endCall": "Gesprek beëindigen",
|
|
126
126
|
"closeWindow": "Venster sluiten",
|
|
127
|
-
"switchCamera": "Wissel camera"
|
|
127
|
+
"switchCamera": "Wissel camera",
|
|
128
|
+
"microphoneMute": "Microfoon uitzetten",
|
|
129
|
+
"microphoneUnmute": "Microfoon aanzetten",
|
|
130
|
+
"cameraOff": "Camera uitzetten",
|
|
131
|
+
"cameraOn": "Camera aanzetten",
|
|
132
|
+
"backgroundBlur": "Achtergrond vervagen",
|
|
133
|
+
"backgroundUnblur": "Achtergrond niet vervagen"
|
|
128
134
|
},
|
|
129
135
|
"help": {
|
|
130
136
|
"placeholderSettingsHelpTitle": "Problemen met de verbinding?",
|
package/dist/scss/_alert.scss
CHANGED
package/dist/scss/_article.scss
CHANGED
|
@@ -8,20 +8,9 @@ article {
|
|
|
8
8
|
background-color: $white;
|
|
9
9
|
border-radius: 8px;
|
|
10
10
|
|
|
11
|
-
@media (max-width: 400px) {
|
|
12
|
-
.bd-profile-picture {
|
|
13
|
-
display: none;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
11
|
header{
|
|
18
12
|
display: flex;
|
|
19
13
|
justify-content: space-between;
|
|
20
|
-
gap: 8px;
|
|
21
|
-
|
|
22
|
-
@media (max-width: 400px) {
|
|
23
|
-
flex-direction: column;
|
|
24
|
-
}
|
|
25
14
|
}
|
|
26
15
|
|
|
27
16
|
footer {
|
package/dist/scss/_card.scss
CHANGED
|
@@ -5,13 +5,9 @@
|
|
|
5
5
|
.card-header {
|
|
6
6
|
background-color: $primary;
|
|
7
7
|
display: flex;
|
|
8
|
-
flex-wrap: wrap;
|
|
9
|
-
gap: 8px;
|
|
10
8
|
align-items: center;
|
|
11
9
|
justify-content: space-between;
|
|
12
10
|
position: relative;
|
|
13
|
-
min-height: 60px;
|
|
14
|
-
height: auto;
|
|
15
11
|
|
|
16
12
|
&.danger {
|
|
17
13
|
background-color: $red-header;
|
|
@@ -27,8 +23,6 @@
|
|
|
27
23
|
margin-bottom: 0;
|
|
28
24
|
font-size: 1.25rem;
|
|
29
25
|
line-height: 23px;
|
|
30
|
-
overflow-wrap: anywhere;
|
|
31
|
-
hyphens: auto;
|
|
32
26
|
}
|
|
33
27
|
}
|
|
34
28
|
|
|
@@ -13,31 +13,27 @@
|
|
|
13
13
|
|
|
14
14
|
&__header {
|
|
15
15
|
display: flex;
|
|
16
|
-
flex-wrap: wrap;
|
|
17
16
|
justify-content: space-between;
|
|
18
17
|
margin-bottom: 12px;
|
|
19
|
-
gap: 8px;
|
|
20
18
|
|
|
21
19
|
@include media-breakpoint-down(md) {
|
|
22
20
|
flex-direction: column;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
hyphens: auto;
|
|
21
|
+
button {
|
|
22
|
+
width: 80px;
|
|
23
|
+
margin-top: 12px;
|
|
24
|
+
}
|
|
28
25
|
}
|
|
29
26
|
}
|
|
30
27
|
|
|
31
28
|
&__body {
|
|
32
29
|
word-break: break-word;
|
|
33
|
-
|
|
34
30
|
.card-body &{
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
31
|
+
ul {
|
|
32
|
+
padding:revert;
|
|
33
|
+
padding-left:2rem;
|
|
34
|
+
list-style-type: revert;
|
|
35
|
+
margin:revert;
|
|
36
|
+
}
|
|
41
37
|
}
|
|
42
38
|
}
|
|
43
39
|
|
|
@@ -78,22 +74,25 @@
|
|
|
78
74
|
}
|
|
79
75
|
}
|
|
80
76
|
|
|
77
|
+
|
|
81
78
|
&.sender {
|
|
82
79
|
flex-direction: row-reverse;
|
|
83
80
|
padding-right: revert;
|
|
84
81
|
padding-left: 80px;
|
|
85
82
|
}
|
|
86
83
|
|
|
87
|
-
@include media-breakpoint-down(
|
|
88
|
-
padding-left:
|
|
89
|
-
padding-right:
|
|
84
|
+
@include media-breakpoint-down(md) {
|
|
85
|
+
padding-left: 6px;
|
|
86
|
+
padding-right: 30px;
|
|
90
87
|
|
|
91
88
|
&.sender {
|
|
92
|
-
padding-left:
|
|
93
|
-
padding-right:
|
|
89
|
+
padding-left: 30px;
|
|
90
|
+
padding-right: 6px;
|
|
94
91
|
}
|
|
92
|
+
}
|
|
95
93
|
|
|
96
|
-
|
|
94
|
+
.bd-profile-picture {
|
|
95
|
+
@include media-breakpoint-down(md) {
|
|
97
96
|
display: none;
|
|
98
97
|
}
|
|
99
98
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
align-items: center;
|
|
12
12
|
border-bottom: none;
|
|
13
13
|
padding: 0 16px;
|
|
14
|
+
height: 60px;
|
|
14
15
|
|
|
15
16
|
h2 {
|
|
16
17
|
color: #fff;
|
|
@@ -68,6 +69,9 @@
|
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
@include media-breakpoint-down(md) {
|
|
72
|
+
min-height: revert;
|
|
73
|
+
height: 60px;
|
|
74
|
+
|
|
71
75
|
&.round-corners-md {
|
|
72
76
|
border-radius: $border-radius-default !important;
|
|
73
77
|
}
|
|
@@ -19,10 +19,8 @@
|
|
|
19
19
|
border-top-right-radius: 8px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
flex-wrap: wrap;
|
|
25
|
-
gap: 1rem;
|
|
22
|
+
button {
|
|
23
|
+
margin-right : 1rem;
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
img {
|
|
@@ -31,7 +29,37 @@
|
|
|
31
29
|
}
|
|
32
30
|
}
|
|
33
31
|
|
|
34
|
-
&.
|
|
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 {
|
|
35
63
|
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
36
64
|
|
|
37
65
|
.bd-profile-picture{
|
|
@@ -241,6 +269,32 @@
|
|
|
241
269
|
padding-bottom: 3px;
|
|
242
270
|
}
|
|
243
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
|
+
}
|
|
244
298
|
}
|
|
245
299
|
|
|
246
300
|
@media (max-width: map-get($grid-breakpoints, sm)) {
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
.not-found-template {
|
|
2
|
-
padding-top: 0px;
|
|
3
|
-
|
|
4
2
|
h1 {
|
|
5
3
|
margin: 0;
|
|
6
4
|
}
|
|
@@ -9,28 +7,4 @@
|
|
|
9
7
|
text-align: left;
|
|
10
8
|
margin: 0;
|
|
11
9
|
}
|
|
12
|
-
|
|
13
|
-
.center-screen {
|
|
14
|
-
display: flex;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
align-items: center;
|
|
17
|
-
text-align: center;
|
|
18
|
-
min-height: 100vh;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.container-warning {
|
|
22
|
-
display: flex;
|
|
23
|
-
flex-direction: column;
|
|
24
|
-
align-items: center;
|
|
25
|
-
justify-content: center;
|
|
26
|
-
gap: 20px;
|
|
27
|
-
background-color: #fff;
|
|
28
|
-
width: 500px;
|
|
29
|
-
border-radius: 8px;
|
|
30
|
-
padding: 40px;
|
|
31
|
-
|
|
32
|
-
@media (max-width: 384px) {
|
|
33
|
-
padding: 10px;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
10
|
}
|
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
margin-bottom: 20px;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
+
.bd-btn {
|
|
9
|
+
display: flex;
|
|
10
|
+
gap: 8px;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
align-items: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
8
15
|
.incoming,
|
|
9
16
|
.outgoing {
|
|
10
17
|
.card {
|
|
@@ -111,6 +118,62 @@
|
|
|
111
118
|
height: 200px;
|
|
112
119
|
}
|
|
113
120
|
|
|
121
|
+
&__controls {
|
|
122
|
+
display: flex;
|
|
123
|
+
gap: 10px;
|
|
124
|
+
justify-content: center;
|
|
125
|
+
|
|
126
|
+
.bd-btn {
|
|
127
|
+
border-radius: 50%;
|
|
128
|
+
width: 56px;
|
|
129
|
+
height: 56px;
|
|
130
|
+
|
|
131
|
+
&.blur-button {
|
|
132
|
+
&.off {
|
|
133
|
+
border: 2px solid $gray-500;
|
|
134
|
+
background: $gray-200;
|
|
135
|
+
|
|
136
|
+
.icon-participant {
|
|
137
|
+
path {
|
|
138
|
+
fill: $gray-700;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.icon-blur {
|
|
143
|
+
circle {
|
|
144
|
+
fill: $gray-700;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.icon {
|
|
150
|
+
position: absolute;
|
|
151
|
+
width: auto;
|
|
152
|
+
height: auto;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.share-button {
|
|
159
|
+
background: none;
|
|
160
|
+
color: $primary;
|
|
161
|
+
border: 2px solid $primary;
|
|
162
|
+
|
|
163
|
+
path {
|
|
164
|
+
fill: $primary;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
&.btn-danger {
|
|
168
|
+
color: $danger;
|
|
169
|
+
border: 2px solid $danger;
|
|
170
|
+
|
|
171
|
+
path {
|
|
172
|
+
fill: $danger;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
114
177
|
.permissions-denied__video {
|
|
115
178
|
display: flex;
|
|
116
179
|
align-items: center;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@beterdichtbij/component-library",
|
|
3
3
|
"description": "Component library voor BeterDichtbij design system",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.73.0-beta.0",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": "24.x",
|
|
8
8
|
"npm": "11.x"
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
],
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"vue": "^3.5.38",
|
|
58
|
-
"@azure/communication-calling": "^1.
|
|
59
|
-
"@azure/communication-common": "^2.
|
|
58
|
+
"@azure/communication-calling": "^1.43.1",
|
|
59
|
+
"@azure/communication-common": "^2.4.2"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@primeuix/themes": "^2.0.3",
|