@beterdichtbij/component-library 0.56.0 → 0.56.2
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 +55 -55
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +3246 -3211
- package/dist/bd-component-lib.umd.js +37 -37
- package/dist/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue.d.ts +20 -3
- package/dist/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue.d.ts.map +1 -1
- package/dist/locales/nl.json +2 -3
- package/dist/scss/_collapsable-card.scss +4 -29
- package/dist/scss/_content-library-modal.scss +0 -26
- package/dist/scss/_content-library-split-button.scss +20 -0
- package/dist/scss/_header.scss +6 -0
- package/dist/scss/_modal.scss +8 -0
- package/dist/scss/component-library-styling.scss +1 -0
- package/dist/src/components/atoms/BDCollapsableCard/BDCollapsableCard.vue.d.ts +11 -0
- package/dist/src/interfaces/BDCollapsableCardProps.d.ts +1 -0
- package/dist/src/types/BootstrapSizes.d.ts +1 -0
- package/package.json +1 -1
package/dist/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue.d.ts
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare const _sfc_main: {
|
|
2
|
+
__name: string;
|
|
3
|
+
props: {
|
|
4
|
+
contentLibraryProviders: {
|
|
5
|
+
type: ArrayConstructor;
|
|
6
|
+
default: () => never[];
|
|
7
|
+
};
|
|
8
|
+
isExternalOnly: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
emits: string[];
|
|
14
|
+
setup(__props: any, { emit }: {
|
|
15
|
+
emit: any;
|
|
16
|
+
}): (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}>;
|
|
19
|
+
};
|
|
20
|
+
export default _sfc_main;
|
|
4
21
|
//# sourceMappingURL=BDContentLibrarySplitButton.vue.d.ts.map
|
package/dist/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BDContentLibrarySplitButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BDContentLibrarySplitButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue"],"names":[],"mappings":"AAYA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;CA4Gd,CAAA;AAID,eAAe,SAAS,CAAA"}
|
package/dist/locales/nl.json
CHANGED
|
@@ -9,12 +9,11 @@
|
|
|
9
9
|
"attachmentUploadModal": {
|
|
10
10
|
"title": "Bijlage toevoegen",
|
|
11
11
|
"submitButton": "Toevoegen",
|
|
12
|
-
"infoMessage": "Kies je bestand",
|
|
12
|
+
"infoMessage": "Kies je bestand.",
|
|
13
13
|
"addAttachmentButton": "Bijlage toevoegen",
|
|
14
14
|
"errorMessage": "Fout opgetreden",
|
|
15
15
|
"fileTooBigErrorMessage": "Bestand is te groot.",
|
|
16
|
-
"fileSizeExceededMessage": "Bestanden mogen maximaal 10 MB groot zijn."
|
|
17
|
-
"officeDocumentsNotSupportedByMobileMessage": "Bestandstypes: .docx (Word), .doc (Word), .xls (Excel), .xlsx (Excel) worden niet standaard ondersteund op de mobiele telefoon. Deze kunnen alleen worden bekeken als de bijbehorende app is geïnstalleerd op de mobiele telefoon of als de patiënt BeterDichtbij gebruikt op een computer."
|
|
16
|
+
"fileSizeExceededMessage": "Bestanden mogen maximaal 10 MB groot zijn."
|
|
18
17
|
},
|
|
19
18
|
"contentLibraryCard": {
|
|
20
19
|
"insert": "Invoegen"
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
&.round-corners {
|
|
68
|
-
border-radius: $border-radius-default;
|
|
68
|
+
border-radius: $border-radius-default !important;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
@include media-breakpoint-down(md) {
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
height: 60px;
|
|
74
74
|
|
|
75
75
|
&.round-corners-md {
|
|
76
|
-
border-radius: $border-radius-default;
|
|
76
|
+
border-radius: $border-radius-default !important;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
@include media-breakpoint-down(sm) {
|
|
81
81
|
&.round-corners-sm {
|
|
82
|
-
border-radius: $border-radius-default;
|
|
82
|
+
border-radius: $border-radius-default !important;
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
}
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
display: none;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
&.collapse {
|
|
95
95
|
@include media-breakpoint-up(lg) {
|
|
96
96
|
&.open-collapse-lg {
|
|
97
97
|
display: block !important
|
|
@@ -104,30 +104,5 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
-
|
|
108
|
-
.collapse-body {
|
|
109
|
-
padding: 20px;
|
|
110
|
-
|
|
111
|
-
ul {
|
|
112
|
-
list-style: none;
|
|
113
|
-
padding: 0px;
|
|
114
|
-
margin: 0px;
|
|
115
|
-
|
|
116
|
-
&:not(:last-of-type) {
|
|
117
|
-
border-bottom: 1px solid $color-bg;
|
|
118
|
-
margin-bottom: 20px;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
li {
|
|
123
|
-
font-size: 1rem;
|
|
124
|
-
line-height: 1.375rem;
|
|
125
|
-
word-wrap: break-word;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
label {
|
|
129
|
-
margin-right: 0.4rem;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
107
|
}
|
|
133
108
|
}
|
|
@@ -45,30 +45,4 @@
|
|
|
45
45
|
text-align: center;
|
|
46
46
|
font-weight: bold;
|
|
47
47
|
}
|
|
48
|
-
|
|
49
|
-
@media (min-width: 768px) and (max-width: 1199px) {
|
|
50
|
-
.col-md-6 {
|
|
51
|
-
flex: 0 0 auto;
|
|
52
|
-
width: 100%;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@media (min-width: 850px) and (max-width: 1199px) {
|
|
57
|
-
.col-lg-3 {
|
|
58
|
-
flex: 0 0 auto;
|
|
59
|
-
width: 40%;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.col-lg-9 {
|
|
63
|
-
flex: 0 0 auto;
|
|
64
|
-
width: 60%;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.content-library-header {
|
|
68
|
-
.col-lg-7 {
|
|
69
|
-
flex: 0 0 auto;
|
|
70
|
-
width: 100%;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
48
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.bd-content-library-split-button {
|
|
2
|
+
// Empty ::after element with extra height is added by PrimeVue.
|
|
3
|
+
.p-button-icon-only::after {
|
|
4
|
+
display: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.menu-item {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
gap: 8px;
|
|
11
|
+
padding: 8px;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
font-size: 1rem;
|
|
14
|
+
|
|
15
|
+
.icon-image {
|
|
16
|
+
width: 18px;
|
|
17
|
+
height: 18px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
package/dist/scss/_header.scss
CHANGED
package/dist/scss/_modal.scss
CHANGED
|
@@ -10,6 +10,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
10
10
|
required: true;
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
|
+
collapseOn: {
|
|
14
|
+
type: __PropType<import('../../../types/BootstrapSizes').bootstrapSizes | null>;
|
|
15
|
+
required: true;
|
|
16
|
+
default: null;
|
|
17
|
+
};
|
|
13
18
|
showOn: {
|
|
14
19
|
type: __PropType<import('../../../types/BootstrapSizes').bootstrapSizes>;
|
|
15
20
|
required: true;
|
|
@@ -31,6 +36,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
31
36
|
required: true;
|
|
32
37
|
default: boolean;
|
|
33
38
|
};
|
|
39
|
+
collapseOn: {
|
|
40
|
+
type: __PropType<import('../../../types/BootstrapSizes').bootstrapSizes | null>;
|
|
41
|
+
required: true;
|
|
42
|
+
default: null;
|
|
43
|
+
};
|
|
34
44
|
showOn: {
|
|
35
45
|
type: __PropType<import('../../../types/BootstrapSizes').bootstrapSizes>;
|
|
36
46
|
required: true;
|
|
@@ -44,6 +54,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
44
54
|
}>>, {
|
|
45
55
|
title: string;
|
|
46
56
|
disabled: boolean;
|
|
57
|
+
collapseOn: import('../../../types/BootstrapSizes').bootstrapSizes | null;
|
|
47
58
|
showOn: import('../../../types/BootstrapSizes').bootstrapSizes;
|
|
48
59
|
visible: boolean;
|
|
49
60
|
}, {}>;
|