@beterdichtbij/component-library 0.71.0-beta.3 → 0.71.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 (68) 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 +5 -5
  10. package/dist/scss/_article.scss +20 -20
  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 +74 -74
  15. package/dist/scss/_card.scss +56 -56
  16. package/dist/scss/_chatcloud.scss +98 -98
  17. package/dist/scss/_collapsable-card.scss +107 -107
  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 +2 -2
  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 +176 -176
  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 +318 -318
  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/main.scss +52 -52
  63. package/dist/scss/templates/_change-password-template.scss +8 -8
  64. package/dist/scss/templates/_content-library-template.scss +135 -135
  65. package/dist/scss/templates/_not-found-template.scss +9 -9
  66. package/dist/scss/templates/_video-call-template.scss +225 -225
  67. package/dist/stores/SessionTimeOutStore.ts +46 -46
  68. package/package.json +133 -133
@@ -1,78 +1,78 @@
1
- @mixin alert($color, $bg-color) {
2
- border-radius: 8px;
3
- padding: 15px;
4
- font-size: 16px;
5
- background-color: $bg-color;
6
- color: $color;
7
- border: 1px solid $color;
8
- svg {
9
- fill: $color;
10
- &.icon{
11
- margin-right:8px;
12
- }
13
- }
14
- }
15
-
16
- @mixin badge($color, $bg-color) {
17
- border-radius: 8px;
18
- padding: 5px 8px;
19
- font-weight: 500;
20
- font-style: normal;
21
- font-size: 0.75rem;
22
- line-height: 0.875rem;
23
- background-color: $bg-color;
24
- color: $color;
25
- svg {
26
- fill: $color;
27
- height: 12px;
28
- width: 12px;
29
- &.icon{
30
- margin-right:8px;
31
- }
32
- }
33
- }
34
-
35
- @mixin button($variant, $color, $bg-color, $hover-color, $hover-bg-color, $hover-border-color, $border, $solid, $border-color) {
36
- color: $color;
37
- background-color: $bg-color;
38
- border:$border $solid $border-color;
39
-
40
- svg:not(.icon-microsoft-teams) {
41
- fill: $color;
42
- path{
43
- fill:$color
44
- }
45
- }
46
-
47
- &:hover, &:focus{
48
- color: $hover-color;
49
- background-color: $hover-bg-color;
50
- border:$border $solid $hover-border-color;
51
-
52
- svg {
53
- fill: $hover-color;
54
- path{
55
- fill:$hover-color;
56
- }
57
- }
58
- }
59
-
60
- &:active{
61
- color: $color;
62
- background-color: $bg-color;
63
- border:$border $solid $border-color;
64
-
65
- svg {
66
- fill: $color;
67
- path{
68
- fill:$color
69
- }
70
- }
71
- }
72
-
73
- &.disabled{
74
- opacity: 0.5;
75
- color: $color;
76
- background-color: $bg-color;
77
- }
78
- }
1
+ @mixin alert($color, $bg-color) {
2
+ border-radius: 8px;
3
+ padding: 15px;
4
+ font-size: 16px;
5
+ background-color: $bg-color;
6
+ color: $color;
7
+ border: 1px solid $color;
8
+ svg {
9
+ fill: $color;
10
+ &.icon{
11
+ margin-right:8px;
12
+ }
13
+ }
14
+ }
15
+
16
+ @mixin badge($color, $bg-color) {
17
+ border-radius: 8px;
18
+ padding: 5px 8px;
19
+ font-weight: 500;
20
+ font-style: normal;
21
+ font-size: 0.75rem;
22
+ line-height: 0.875rem;
23
+ background-color: $bg-color;
24
+ color: $color;
25
+ svg {
26
+ fill: $color;
27
+ height: 12px;
28
+ width: 12px;
29
+ &.icon{
30
+ margin-right:8px;
31
+ }
32
+ }
33
+ }
34
+
35
+ @mixin button($variant, $color, $bg-color, $hover-color, $hover-bg-color, $hover-border-color, $border, $solid, $border-color) {
36
+ color: $color;
37
+ background-color: $bg-color;
38
+ border:$border $solid $border-color;
39
+
40
+ svg:not(.icon-microsoft-teams) {
41
+ fill: $color;
42
+ path{
43
+ fill:$color
44
+ }
45
+ }
46
+
47
+ &:hover, &:focus{
48
+ color: $hover-color;
49
+ background-color: $hover-bg-color;
50
+ border:$border $solid $hover-border-color;
51
+
52
+ svg {
53
+ fill: $hover-color;
54
+ path{
55
+ fill:$hover-color;
56
+ }
57
+ }
58
+ }
59
+
60
+ &:active{
61
+ color: $color;
62
+ background-color: $bg-color;
63
+ border:$border $solid $border-color;
64
+
65
+ svg {
66
+ fill: $color;
67
+ path{
68
+ fill:$color
69
+ }
70
+ }
71
+ }
72
+
73
+ &.disabled{
74
+ opacity: 0.5;
75
+ color: $color;
76
+ background-color: $bg-color;
77
+ }
78
+ }
@@ -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,177 +1,177 @@
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
- .icon-close {
44
- width: 24px;
45
- height: 24px;
46
- background-color: $blue-text;
47
- display: inline-block;
48
- padding: 4px;
49
- border-radius: 50%;
50
-
51
- path {
52
- fill: $color-white;
53
- }
54
-
55
- &:hover {
56
- background-color: $color-lightblue;
57
-
58
- path {
59
- fill: $blue-text;
60
- }
61
- }
62
- }
63
- }
64
-
65
- @include media-breakpoint-up(md) {
66
- padding: 30px 65px 15px 65px;
67
- }
68
-
69
- @include media-breakpoint-down(md) {
70
- flex-direction: column-reverse;
71
- align-items: center;
72
- justify-content: center;
73
- padding: .75rem;
74
- margin-top: 0px;
75
-
76
- > * {
77
- width: 100%;
78
- text-align: center;
79
- }
80
-
81
- button.btn-close {
82
- top: initial;
83
- right: initial;
84
- position: initial;
85
- margin: auto;
86
- font-size: 0.9em;
87
- padding: initial;
88
- height: initial;
89
- }
90
- }
91
- }
92
-
93
- .modal-body {
94
- border: 0px;
95
- // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
96
- border-radius: inherit;
97
-
98
- @include media-breakpoint-up(md) {
99
- padding: 15px 65px 30px 65px;
100
- }
101
-
102
- > p:last-of-type {
103
- margin-bottom: 0;
104
- }
105
- }
106
-
107
- &:has(.modal-footer) .modal-body {
108
- @include media-breakpoint-up(md) {
109
- padding: 15px 65px;
110
- }
111
- }
112
-
113
- .modal-footer {
114
- justify-content: flex-start;
115
- // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
116
- border-radius: inherit;
117
-
118
- button {
119
- margin: 0 2px;
120
-
121
- &:first-child {
122
- margin-left: 0;
123
- }
124
-
125
- &:last-child {
126
- margin-right: 0;
127
- }
128
- }
129
-
130
- @include media-breakpoint-up(md) {
131
- padding: 15px 65px 30px 65px;
132
- }
133
-
134
- @include media-breakpoint-down(md) {
135
- display: flex;
136
- align-items: center;
137
- justify-content: center;
138
- padding: .75rem;
139
-
140
- > button {
141
- width: 100%;
142
- margin: 2px 0;
143
-
144
- &:first-child {
145
- margin-top: 0;
146
- }
147
-
148
- &:last-child {
149
- margin-bottom: 0;
150
- }
151
- }
152
- }
153
- }
154
-
155
- .btn-close {
156
- align-self: baseline;
157
- }
158
-
159
- .modal-title {
160
- font-family: $font-secondary;
161
- font-weight: $font-normal;
162
- font-size: 31px;
163
- color: $color-darkblue;
164
- letter-spacing: 0;
165
-
166
- @include media-breakpoint-down(sm) {
167
- margin-top: 20px;
168
- line-height:normal;
169
- }
170
-
171
- .title-image {
172
- height: 31px;
173
- margin-right: 10px;
174
- }
175
- }
176
- }
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
+ .icon-close {
44
+ width: 24px;
45
+ height: 24px;
46
+ background-color: $blue-text;
47
+ display: inline-block;
48
+ padding: 4px;
49
+ border-radius: 50%;
50
+
51
+ path {
52
+ fill: $color-white;
53
+ }
54
+
55
+ &:hover {
56
+ background-color: $color-lightblue;
57
+
58
+ path {
59
+ fill: $blue-text;
60
+ }
61
+ }
62
+ }
63
+ }
64
+
65
+ @include media-breakpoint-up(md) {
66
+ padding: 30px 65px 15px 65px;
67
+ }
68
+
69
+ @include media-breakpoint-down(md) {
70
+ flex-direction: column-reverse;
71
+ align-items: center;
72
+ justify-content: center;
73
+ padding: .75rem;
74
+ margin-top: 0px;
75
+
76
+ > * {
77
+ width: 100%;
78
+ text-align: center;
79
+ }
80
+
81
+ button.btn-close {
82
+ top: initial;
83
+ right: initial;
84
+ position: initial;
85
+ margin: auto;
86
+ font-size: 0.9em;
87
+ padding: initial;
88
+ height: initial;
89
+ }
90
+ }
91
+ }
92
+
93
+ .modal-body {
94
+ border: 0px;
95
+ // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
96
+ border-radius: inherit;
97
+
98
+ @include media-breakpoint-up(md) {
99
+ padding: 15px 65px 30px 65px;
100
+ }
101
+
102
+ > p:last-of-type {
103
+ margin-bottom: 0;
104
+ }
105
+ }
106
+
107
+ &:has(.modal-footer) .modal-body {
108
+ @include media-breakpoint-up(md) {
109
+ padding: 15px 65px;
110
+ }
111
+ }
112
+
113
+ .modal-footer {
114
+ justify-content: flex-start;
115
+ // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
116
+ border-radius: inherit;
117
+
118
+ button {
119
+ margin: 0 2px;
120
+
121
+ &:first-child {
122
+ margin-left: 0;
123
+ }
124
+
125
+ &:last-child {
126
+ margin-right: 0;
127
+ }
128
+ }
129
+
130
+ @include media-breakpoint-up(md) {
131
+ padding: 15px 65px 30px 65px;
132
+ }
133
+
134
+ @include media-breakpoint-down(md) {
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
138
+ padding: .75rem;
139
+
140
+ > button {
141
+ width: 100%;
142
+ margin: 2px 0;
143
+
144
+ &:first-child {
145
+ margin-top: 0;
146
+ }
147
+
148
+ &:last-child {
149
+ margin-bottom: 0;
150
+ }
151
+ }
152
+ }
153
+ }
154
+
155
+ .btn-close {
156
+ align-self: baseline;
157
+ }
158
+
159
+ .modal-title {
160
+ font-family: $font-secondary;
161
+ font-weight: $font-normal;
162
+ font-size: 31px;
163
+ color: $color-darkblue;
164
+ letter-spacing: 0;
165
+
166
+ @include media-breakpoint-down(sm) {
167
+ margin-top: 20px;
168
+ line-height:normal;
169
+ }
170
+
171
+ .title-image {
172
+ height: 31px;
173
+ margin-right: 10px;
174
+ }
175
+ }
176
+ }
177
177
  }