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