@beterdichtbij/component-library 0.23.0 → 0.24.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 +21 -21
- package/dist/bd-component-lib.es.js +2375 -2355
- package/dist/bd-component-lib.umd.js +27 -27
- package/dist/components/atoms/BDAlert/BDAlert.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDArticle/BDArticle.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDBadge/BDBadge.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDButton/BDButton.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDCard/BDCard.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDCollapsableCard/BDCollapsableCard.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDForm/BDForm.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDFormCheckbox/BDFormCheckbox.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDFormInput/BDFormInput.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDFormInvalidFeedback/BDFormInvalidFeedback.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDFormSelect/BDFormSelect.vue.d.ts +3 -3
- package/dist/components/atoms/BDFormSelect/BDFormSelect.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDInputGroup/BDInputGroup.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDLink/BDLink.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDPagination/BDPagination.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDProfileImage/BDProfileImage.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDToast/BDToast.vue.d.ts.map +1 -1
- package/dist/components/atoms/BDZoomslider/BDZoomslider.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDAttachmentPreviewList/BDAttachmentPreviewList.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDChatCloud/BDChatCloud.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDDropdownItem/BDDropdownItem.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDDropzone/BDDropzone.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDImageAttachmentPreviewList/BDImageAttachmentPreviewList.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDMarkdownEditor/BDMarkdownEditor.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDMobileMenu/BDMobileMenu.vue.d.ts.map +1 -1
- package/dist/components/molecules/BDUser/BDUser.vue.d.ts.map +1 -1
- package/dist/components/organisms/BDDropdown/BDDropdown.vue.d.ts.map +1 -1
- package/dist/components/organisms/BDHeader/BDHeader.vue.d.ts.map +1 -1
- package/dist/components/organisms/BDModal/BDModal.vue.d.ts.map +1 -1
- package/dist/interfaces/BDFormSelectProps.d.ts +2 -1
- package/dist/scss/_button.scss +78 -78
- package/dist/scss/_dropdown.scss +102 -101
- package/dist/scss/_header.scss +109 -109
- package/dist/scss/_toast.scss +69 -69
- package/dist/scss/base/variables.scss +192 -192
- package/dist/scss/component-library-styling.scss +21 -21
- package/dist/scss/mixins.scss +59 -59
- package/dist/types/BDOptionGroup.d.ts +5 -0
- package/package.json +122 -123
package/dist/scss/_header.scss
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
.header-navbar {
|
|
2
|
-
height: 64px;
|
|
3
|
-
display: flex;
|
|
4
|
-
justify-content: space-between;
|
|
5
|
-
align-items: center;
|
|
6
|
-
padding: 0px 15px;
|
|
7
|
-
background-color: white;
|
|
8
|
-
position: fixed;
|
|
9
|
-
top: 0;
|
|
10
|
-
width: 100%;
|
|
11
|
-
z-index: 1000;
|
|
12
|
-
|
|
13
|
-
.bd-hamburger {
|
|
14
|
-
display: none;
|
|
15
|
-
font-size: .9375rem;
|
|
16
|
-
font-family: $font-secondary;
|
|
17
|
-
align-items: center;
|
|
18
|
-
width: 58px;
|
|
19
|
-
justify-content: space-between;
|
|
20
|
-
font-weight: $font-bold;
|
|
21
|
-
cursor: pointer;
|
|
22
|
-
user-select: none;
|
|
23
|
-
|
|
24
|
-
.icon-menu {
|
|
25
|
-
width: 14px;
|
|
26
|
-
font-weight: 900;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.bd-logo {
|
|
31
|
-
cursor: pointer;
|
|
32
|
-
width: 169px;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// css verwijderen als variant button is opgenomen BDButton
|
|
36
|
-
.btn-header {
|
|
37
|
-
color: #394156;
|
|
38
|
-
background-color: transparent;
|
|
39
|
-
font-weight: 400;
|
|
40
|
-
border-radius: 24px;
|
|
41
|
-
padding-left: 16px;
|
|
42
|
-
padding-right: 16px;
|
|
43
|
-
text-decoration: none;
|
|
44
|
-
margin: 0px 4px;
|
|
45
|
-
|
|
46
|
-
&.router-link-active {
|
|
47
|
-
background-color: #f1f2f4;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.bd-btn-settings {
|
|
52
|
-
height: 56px;
|
|
53
|
-
user-select: none;
|
|
54
|
-
|
|
55
|
-
.bd-profile-picture {
|
|
56
|
-
width: 40px;
|
|
57
|
-
height: 40px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.bd-dropdown.dropdown {
|
|
61
|
-
height: 100%;
|
|
62
|
-
|
|
63
|
-
.dropdown-toggle {
|
|
64
|
-
height: 100%;
|
|
65
|
-
margin-right: 0px;
|
|
66
|
-
text-decoration: none;
|
|
67
|
-
font-weight: $font-medium;
|
|
68
|
-
font-family: $headings-font-family;
|
|
69
|
-
|
|
70
|
-
span {
|
|
71
|
-
white-space: nowrap;
|
|
72
|
-
overflow-x: hidden;
|
|
73
|
-
text-overflow: ellipsis;
|
|
74
|
-
max-width: 250px;
|
|
75
|
-
letter-spacing: 0;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
&:hover {
|
|
79
|
-
text-decoration: underline;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.dropdown-menu {
|
|
84
|
-
margin-top: 0px;
|
|
85
|
-
|
|
86
|
-
.dropdown-item:active {
|
|
87
|
-
color: var(--bs-dropdown-link-color);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
94
|
-
.header-options {
|
|
95
|
-
display: none;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.bd-hamburger {
|
|
99
|
-
display: flex;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.bd-logo {
|
|
103
|
-
width: 134px;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.bd-btn-settings, .btn-header {
|
|
107
|
-
display: none !important;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
1
|
+
.header-navbar {
|
|
2
|
+
height: 64px;
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
align-items: center;
|
|
6
|
+
padding: 0px 15px;
|
|
7
|
+
background-color: white;
|
|
8
|
+
position: fixed;
|
|
9
|
+
top: 0;
|
|
10
|
+
width: 100%;
|
|
11
|
+
z-index: 1000;
|
|
12
|
+
|
|
13
|
+
.bd-hamburger {
|
|
14
|
+
display: none;
|
|
15
|
+
font-size: .9375rem;
|
|
16
|
+
font-family: $font-secondary;
|
|
17
|
+
align-items: center;
|
|
18
|
+
width: 58px;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
font-weight: $font-bold;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
user-select: none;
|
|
23
|
+
|
|
24
|
+
.icon-menu {
|
|
25
|
+
width: 14px;
|
|
26
|
+
font-weight: 900;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.bd-logo {
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
width: 169px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// css verwijderen als variant button is opgenomen BDButton
|
|
36
|
+
.btn-header {
|
|
37
|
+
color: #394156;
|
|
38
|
+
background-color: transparent;
|
|
39
|
+
font-weight: 400;
|
|
40
|
+
border-radius: 24px;
|
|
41
|
+
padding-left: 16px;
|
|
42
|
+
padding-right: 16px;
|
|
43
|
+
text-decoration: none;
|
|
44
|
+
margin: 0px 4px;
|
|
45
|
+
|
|
46
|
+
&.router-link-active {
|
|
47
|
+
background-color: #f1f2f4;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.bd-btn-settings {
|
|
52
|
+
height: 56px;
|
|
53
|
+
user-select: none;
|
|
54
|
+
|
|
55
|
+
.bd-profile-picture {
|
|
56
|
+
width: 40px;
|
|
57
|
+
height: 40px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.bd-dropdown.dropdown {
|
|
61
|
+
height: 100%;
|
|
62
|
+
|
|
63
|
+
.dropdown-toggle {
|
|
64
|
+
height: 100%;
|
|
65
|
+
margin-right: 0px;
|
|
66
|
+
text-decoration: none;
|
|
67
|
+
font-weight: $font-medium;
|
|
68
|
+
font-family: $headings-font-family;
|
|
69
|
+
|
|
70
|
+
span {
|
|
71
|
+
white-space: nowrap;
|
|
72
|
+
overflow-x: hidden;
|
|
73
|
+
text-overflow: ellipsis;
|
|
74
|
+
max-width: 250px;
|
|
75
|
+
letter-spacing: 0;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&:hover {
|
|
79
|
+
text-decoration: underline;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dropdown-menu {
|
|
84
|
+
margin-top: 0px;
|
|
85
|
+
|
|
86
|
+
.dropdown-item:active {
|
|
87
|
+
color: var(--bs-dropdown-link-color);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
94
|
+
.header-options {
|
|
95
|
+
display: none;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.bd-hamburger {
|
|
99
|
+
display: flex;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.bd-logo {
|
|
103
|
+
width: 134px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.bd-btn-settings, .btn-header {
|
|
107
|
+
display: none !important;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
110
|
}
|
package/dist/scss/_toast.scss
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
.bd-toast {
|
|
2
|
-
margin: 0.5rem;
|
|
3
|
-
border: 0px;
|
|
4
|
-
margin-left: auto;
|
|
5
|
-
border-left: 4px solid $info;
|
|
6
|
-
|
|
7
|
-
.toast-header {
|
|
8
|
-
border-bottom: 1px solid hsla(203, 62%, 51%, 0.4) ;
|
|
9
|
-
padding: 20px 14px;
|
|
10
|
-
display: flex;
|
|
11
|
-
justify-content: baseline;
|
|
12
|
-
|
|
13
|
-
button {
|
|
14
|
-
margin-left: auto;
|
|
15
|
-
margin-right: 0px;
|
|
16
|
-
background-color: transparent;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
svg {
|
|
20
|
-
fill: $info;
|
|
21
|
-
margin-right: 1rem;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.toast-body {
|
|
26
|
-
padding-left: 20px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&-danger {
|
|
30
|
-
border-color: $danger;
|
|
31
|
-
|
|
32
|
-
.toast-header {
|
|
33
|
-
border-color: hsla(8, 74%, 53%, 0.4);
|
|
34
|
-
|
|
35
|
-
svg {
|
|
36
|
-
fill: $danger;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&-warning {
|
|
42
|
-
border-color: $warning;
|
|
43
|
-
|
|
44
|
-
.toast-header {
|
|
45
|
-
border-color: hsla(48, 100%, 47%, 0.4);
|
|
46
|
-
|
|
47
|
-
svg {
|
|
48
|
-
fill: $warning;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&-success {
|
|
54
|
-
border-color: $success;
|
|
55
|
-
|
|
56
|
-
.toast-header {
|
|
57
|
-
border-color: hsla(155, 100%, 37%,0.4);
|
|
58
|
-
|
|
59
|
-
svg {
|
|
60
|
-
fill: $success
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.toast-container {
|
|
67
|
-
position: fixed;
|
|
68
|
-
bottom: 0px;
|
|
69
|
-
width: 100%;
|
|
1
|
+
.bd-toast {
|
|
2
|
+
margin: 0.5rem;
|
|
3
|
+
border: 0px;
|
|
4
|
+
margin-left: auto;
|
|
5
|
+
border-left: 4px solid $info;
|
|
6
|
+
|
|
7
|
+
.toast-header {
|
|
8
|
+
border-bottom: 1px solid hsla(203, 62%, 51%, 0.4) ;
|
|
9
|
+
padding: 20px 14px;
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: baseline;
|
|
12
|
+
|
|
13
|
+
button {
|
|
14
|
+
margin-left: auto;
|
|
15
|
+
margin-right: 0px;
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
svg {
|
|
20
|
+
fill: $info;
|
|
21
|
+
margin-right: 1rem;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.toast-body {
|
|
26
|
+
padding-left: 20px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&-danger {
|
|
30
|
+
border-color: $danger;
|
|
31
|
+
|
|
32
|
+
.toast-header {
|
|
33
|
+
border-color: hsla(8, 74%, 53%, 0.4);
|
|
34
|
+
|
|
35
|
+
svg {
|
|
36
|
+
fill: $danger;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&-warning {
|
|
42
|
+
border-color: $warning;
|
|
43
|
+
|
|
44
|
+
.toast-header {
|
|
45
|
+
border-color: hsla(48, 100%, 47%, 0.4);
|
|
46
|
+
|
|
47
|
+
svg {
|
|
48
|
+
fill: $warning;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&-success {
|
|
54
|
+
border-color: $success;
|
|
55
|
+
|
|
56
|
+
.toast-header {
|
|
57
|
+
border-color: hsla(155, 100%, 37%,0.4);
|
|
58
|
+
|
|
59
|
+
svg {
|
|
60
|
+
fill: $success
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.toast-container {
|
|
67
|
+
position: fixed;
|
|
68
|
+
bottom: 0px;
|
|
69
|
+
width: 100%;
|
|
70
70
|
}
|