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