@beterdichtbij/component-library 0.60.0 → 0.60.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 (62) hide show
  1. package/README.md +12 -12
  2. package/dist/bd-component-lib.cjs.js +53 -53
  3. package/dist/bd-component-lib.css +1 -1
  4. package/dist/bd-component-lib.es.js +18 -17
  5. package/dist/bd-component-lib.umd.js +54 -54
  6. package/dist/locales/en.json +10 -10
  7. package/dist/locales/nl.json +98 -85
  8. package/dist/scss/_alert.scss +11 -11
  9. package/dist/scss/_article.scss +23 -23
  10. package/dist/scss/_assign-conversation-modal.scss +13 -13
  11. package/dist/scss/_attachments.scss +107 -107
  12. package/dist/scss/_badge.scss +18 -18
  13. package/dist/scss/_base.scss +1 -1
  14. package/dist/scss/_button.scss +74 -74
  15. package/dist/scss/_card.scss +56 -56
  16. package/dist/scss/_chatcloud.scss +93 -93
  17. package/dist/scss/_collapsable-card.scss +107 -107
  18. package/dist/scss/_content-library-card-message-template.scss +131 -127
  19. package/dist/scss/_content-library-card.scss +135 -135
  20. package/dist/scss/_content-library-modal.scss +46 -47
  21. package/dist/scss/_content-library-overview.scss +4 -4
  22. package/dist/scss/_content-library-split-button.scss +19 -19
  23. package/dist/scss/_conversation-to-text-modal.scss +32 -32
  24. package/dist/scss/_dropdown.scss +113 -113
  25. package/dist/scss/_dropzone.scss +77 -77
  26. package/dist/scss/_extern.scss +1 -1
  27. package/dist/scss/_form-field.scss +12 -12
  28. package/dist/scss/_form-multiple-checkbox.scss +47 -47
  29. package/dist/scss/_forms.scss +2 -2
  30. package/dist/scss/_header.scss +170 -170
  31. package/dist/scss/_icon-luscii-logo.scss +31 -31
  32. package/dist/scss/_icons.scss +57 -57
  33. package/dist/scss/_image-attachment-modal.scss +91 -91
  34. package/dist/scss/_input-group.scss +2 -2
  35. package/dist/scss/_markdown-editor.scss +98 -98
  36. package/dist/scss/_message-template-form-modal.scss +42 -39
  37. package/dist/scss/_mobile-menu.scss +91 -91
  38. package/dist/scss/_modal.scss +173 -173
  39. package/dist/scss/_notification-button.scss +29 -29
  40. package/dist/scss/_pagination.scss +40 -40
  41. package/dist/scss/_phone-number-edit-modal.scss +35 -35
  42. package/dist/scss/_pill.scss +89 -89
  43. package/dist/scss/_profile-image.scss +34 -34
  44. package/dist/scss/_table-sort-header.scss +13 -13
  45. package/dist/scss/_table.scss +16 -16
  46. package/dist/scss/_templates.scss +323 -323
  47. package/dist/scss/_toast.scss +69 -69
  48. package/dist/scss/_user-information.scss +34 -34
  49. package/dist/scss/_video-call-toast.scss +100 -100
  50. package/dist/scss/_zoomslider.scss +77 -77
  51. package/dist/scss/base/variables.scss +210 -210
  52. package/dist/scss/component-library-styling.scss +46 -46
  53. package/dist/scss/extern/_bootstrap.scss +19 -19
  54. package/dist/scss/extern/_prime-vue.scss +550 -550
  55. package/dist/scss/forms/_form-check.scss +15 -15
  56. package/dist/scss/forms/_form-input.scss +9 -9
  57. package/dist/scss/mixins.scss +78 -78
  58. package/dist/scss/templates/_change-password-template.scss +8 -8
  59. package/dist/scss/templates/_content-library-template.scss +139 -139
  60. package/dist/scss/templates/_not-found-template.scss +5 -5
  61. package/dist/stores/SessionTimeOutStore.ts +46 -46
  62. package/package.json +129 -129
@@ -1,92 +1,92 @@
1
- #image-attachment-modal {
2
- &.modal-lg {
3
- --bs-modal-width: 1200px;
4
- }
5
-
6
- .image-preview-image-holder {
7
- width: 100%;
8
- height: 100%;
9
- overflow: auto;
10
- cursor: grab;
11
- -webkit-touch-callout: none;
12
- -webkit-user-select: none;
13
- -khtml-user-select: none;
14
- -moz-user-select: none;
15
- -ms-user-select: none;
16
- user-select: none;
17
- margin-left: auto;
18
- margin-right: auto;
19
-
20
- .image-preview-modal {
21
- margin: 0px auto;
22
- display: block;
23
- user-select: none;
24
- width: auto;
25
- height: auto;
26
- max-width: 600px;
27
- max-height: 400px;
28
- transition: transform .2s;
29
- transform-origin: top;
30
- z-index: 1;
31
-
32
- @include media-breakpoint-down(sm) {
33
- max-width: 300px;
34
- max-height: 200px;
35
- }
36
-
37
- // Zoom didn't work when the styling was incorporated into the Vue component.
38
- &.zoom {
39
- &-1 {
40
- transform: scale(1.25);
41
- }
42
-
43
- &-2 {
44
- transform: scale(1.5);
45
- }
46
-
47
- &-3 {
48
- transform: scale(1.75);
49
- }
50
-
51
- &-4 {
52
- transform: scale(2);
53
- }
54
- }
55
- }
56
- }
57
-
58
- .image-preview-bd-zoom-slider, .download-image {
59
- width: 250px;
60
- margin-left: auto;
61
- margin-right: auto;
62
- margin-top: 50px;
63
- z-index: 2;
64
- }
65
-
66
- .download-image {
67
- width: 250px;
68
- display: block;
69
- margin-left: auto;
70
- margin-right: auto;
71
- margin-top: 30px;
72
- margin-bottom: 30px;
73
- z-index: 3;
74
- }
75
-
76
- .show-spinner {
77
- width: 100px;
78
- height: 50px;
79
- display: flex;
80
- justify-content: center;
81
- align-items: center;
82
- margin: auto;
83
- }
84
-
85
- .modal-footer {
86
- display: none;
87
- }
88
-
89
- a {
90
- text-decoration: none;
91
- }
1
+ #image-attachment-modal {
2
+ &.modal-lg {
3
+ --bs-modal-width: 1200px;
4
+ }
5
+
6
+ .image-preview-image-holder {
7
+ width: 100%;
8
+ height: 100%;
9
+ overflow: auto;
10
+ cursor: grab;
11
+ -webkit-touch-callout: none;
12
+ -webkit-user-select: none;
13
+ -khtml-user-select: none;
14
+ -moz-user-select: none;
15
+ -ms-user-select: none;
16
+ user-select: none;
17
+ margin-left: auto;
18
+ margin-right: auto;
19
+
20
+ .image-preview-modal {
21
+ margin: 0px auto;
22
+ display: block;
23
+ user-select: none;
24
+ width: auto;
25
+ height: auto;
26
+ max-width: 600px;
27
+ max-height: 400px;
28
+ transition: transform .2s;
29
+ transform-origin: top;
30
+ z-index: 1;
31
+
32
+ @include media-breakpoint-down(sm) {
33
+ max-width: 300px;
34
+ max-height: 200px;
35
+ }
36
+
37
+ // Zoom didn't work when the styling was incorporated into the Vue component.
38
+ &.zoom {
39
+ &-1 {
40
+ transform: scale(1.25);
41
+ }
42
+
43
+ &-2 {
44
+ transform: scale(1.5);
45
+ }
46
+
47
+ &-3 {
48
+ transform: scale(1.75);
49
+ }
50
+
51
+ &-4 {
52
+ transform: scale(2);
53
+ }
54
+ }
55
+ }
56
+ }
57
+
58
+ .image-preview-bd-zoom-slider, .download-image {
59
+ width: 250px;
60
+ margin-left: auto;
61
+ margin-right: auto;
62
+ margin-top: 50px;
63
+ z-index: 2;
64
+ }
65
+
66
+ .download-image {
67
+ width: 250px;
68
+ display: block;
69
+ margin-left: auto;
70
+ margin-right: auto;
71
+ margin-top: 30px;
72
+ margin-bottom: 30px;
73
+ z-index: 3;
74
+ }
75
+
76
+ .show-spinner {
77
+ width: 100px;
78
+ height: 50px;
79
+ display: flex;
80
+ justify-content: center;
81
+ align-items: center;
82
+ margin: auto;
83
+ }
84
+
85
+ .modal-footer {
86
+ display: none;
87
+ }
88
+
89
+ a {
90
+ text-decoration: none;
91
+ }
92
92
  }
@@ -1,3 +1,3 @@
1
- .bd-input-group {
2
- display: block;
1
+ .bd-input-group {
2
+ display: block;
3
3
  }
@@ -1,99 +1,99 @@
1
- .bd-markdown-editor {
2
- position: relative;
3
- padding: 0.5rem;
4
- border: 1px solid $gray-500;
5
- background-color: $white;
6
- border-radius: 0.5rem;
7
- position: relative;
8
-
9
-
10
- &.is-invalid {
11
- border: 1px solid $color-red;
12
-
13
- +.invalid-feedback {
14
- display: block;
15
- }
16
- }
17
-
18
- .ProseMirror {
19
- padding: 8px;
20
-
21
- &-focused {
22
- outline: none;
23
- }
24
-
25
- p {
26
- &.is-editor-empty:first-child::before {
27
- content: attr(data-placeholder);
28
- float: left;
29
- color: #adb5bd;
30
- pointer-events: none;
31
- height: 0;
32
- }
33
- }
34
- }
35
-
36
- &__menu-bottom {
37
- display: flex;
38
- gap: 0.5rem;
39
-
40
- .bd-btn {
41
- line-height: unset;
42
- padding: 6px 8px;
43
-
44
- svg {
45
- margin: unset;
46
- }
47
- }
48
-
49
- .popover-body {
50
- padding h3 {
51
- margin-bottom: 5px;
52
- }
53
-
54
- fieldset.form-group {
55
- margin: 0px;
56
- }
57
- }
58
- }
59
-
60
- button {
61
- &.disabled {
62
- border: none;
63
- }
64
- }
65
-
66
- .btn-primary {
67
- background-color: $primary;
68
- }
69
-
70
- .btn-light {
71
- --bs-btn-bg: #{$white};
72
- --bs-btn-hover-bg: #{$gray-200};
73
- }
74
- }
75
-
76
- .bd-link-input-popover.bd-link-input-bottom {
77
- position: absolute;
78
- left: 100px;
79
- margin: auto;
80
- z-index: 1050;
81
- min-width: 300px;
82
- max-width: 500px;
83
- }
84
-
85
- .bd-link-input-popover {
86
- .validation-text {
87
- font-size: 0.7em;
88
- font-weight: 500;
89
- }
90
- }
91
-
92
- .form-control {
93
- display:inline;
94
- margin:8px 0 16px 0;
95
- }
96
-
97
- .form-control::placeholder {
98
- opacity: 0.5;
1
+ .bd-markdown-editor {
2
+ position: relative;
3
+ padding: 0.5rem;
4
+ border: 1px solid $gray-500;
5
+ background-color: $white;
6
+ border-radius: 0.5rem;
7
+ position: relative;
8
+
9
+
10
+ &.is-invalid {
11
+ border: 1px solid $color-red;
12
+
13
+ +.invalid-feedback {
14
+ display: block;
15
+ }
16
+ }
17
+
18
+ .ProseMirror {
19
+ padding: 8px;
20
+
21
+ &-focused {
22
+ outline: none;
23
+ }
24
+
25
+ p {
26
+ &.is-editor-empty:first-child::before {
27
+ content: attr(data-placeholder);
28
+ float: left;
29
+ color: #adb5bd;
30
+ pointer-events: none;
31
+ height: 0;
32
+ }
33
+ }
34
+ }
35
+
36
+ &__menu-bottom {
37
+ display: flex;
38
+ gap: 0.5rem;
39
+
40
+ .bd-btn {
41
+ line-height: unset;
42
+ padding: 6px 8px;
43
+
44
+ svg {
45
+ margin: unset;
46
+ }
47
+ }
48
+
49
+ .popover-body {
50
+ padding h3 {
51
+ margin-bottom: 5px;
52
+ }
53
+
54
+ fieldset.form-group {
55
+ margin: 0px;
56
+ }
57
+ }
58
+ }
59
+
60
+ button {
61
+ &.disabled {
62
+ border: none;
63
+ }
64
+ }
65
+
66
+ .btn-primary {
67
+ background-color: $primary;
68
+ }
69
+
70
+ .btn-light {
71
+ --bs-btn-bg: #{$white};
72
+ --bs-btn-hover-bg: #{$gray-200};
73
+ }
74
+ }
75
+
76
+ .bd-link-input-popover.bd-link-input-bottom {
77
+ position: absolute;
78
+ left: 100px;
79
+ margin: auto;
80
+ z-index: 1050;
81
+ min-width: 300px;
82
+ max-width: 500px;
83
+ }
84
+
85
+ .bd-link-input-popover {
86
+ .validation-text {
87
+ font-size: 0.7em;
88
+ font-weight: 500;
89
+ }
90
+ }
91
+
92
+ .form-control {
93
+ display:inline;
94
+ margin:8px 0 16px 0;
95
+ }
96
+
97
+ .form-control::placeholder {
98
+ opacity: 0.5;
99
99
  }
@@ -1,40 +1,43 @@
1
- #message-template-form-modal {
2
- .bd-markdown-editor {
3
- margin-bottom: 16px;
4
- }
5
-
6
- .textarea-button {
7
- margin-top: 0.75rem;
8
- }
9
-
10
- .preview-attachments {
11
- margin-top: 1rem;
12
- }
13
-
14
- .form-splitter {
15
- width: 100%;
16
- border-top: 2px solid #abb0be;
17
- margin-top: 1rem;
18
- margin-bottom: 1rem;
19
- }
20
-
21
- .bd-input-group > div {
22
- margin-bottom: 1rem;
23
- width: 100%;
24
- }
25
-
26
- .bd-markdown-editor {
27
- ul li {
28
- list-style-type: disc;
29
- margin-left: 2rem;
30
- }
31
-
32
- .attachment-list__item {
33
- list-style-type: none;
34
- }
35
-
36
- .pills-list__li {
37
- list-style-type: none;
38
- }
39
- }
1
+ #message-template-form-modal {
2
+ .bd-markdown-editor {
3
+ margin-bottom: 16px;
4
+ }
5
+
6
+ .textarea-button {
7
+ margin-top: 0.75rem;
8
+ }
9
+
10
+ .preview-attachments {
11
+ margin-top: 1rem;
12
+ }
13
+
14
+ .form-splitter {
15
+ width: 100%;
16
+ border-top: 2px solid #abb0be;
17
+ margin-top: 1rem;
18
+ margin-bottom: 1rem;
19
+ }
20
+
21
+ .bd-input-group {
22
+ margin-bottom: 16px;
23
+
24
+ &:last-of-type {
25
+ margin-bottom: 0;
26
+ }
27
+ }
28
+
29
+ .bd-markdown-editor {
30
+ ul li {
31
+ list-style-type: disc;
32
+ margin-left: 2rem;
33
+ }
34
+
35
+ .attachment-list__item {
36
+ list-style-type: none;
37
+ }
38
+
39
+ .pills-list__li {
40
+ list-style-type: none;
41
+ }
42
+ }
40
43
  }
@@ -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
  }