@beterdichtbij/component-library 0.42.2 → 0.43.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 +58 -36
- package/dist/bd-component-lib.es.js +10939 -7833
- package/dist/bd-component-lib.umd.js +58 -36
- package/dist/components/{organisms → templates}/BDChangePasswordTemplate/BDChangePasswordTemplate.vue.d.ts.map +1 -1
- package/dist/components/templates/BDNotFoundTemplate/BDNotFoundTemplate.vue.d.ts +12 -0
- package/dist/components/templates/BDNotFoundTemplate/BDNotFoundTemplate.vue.d.ts.map +1 -0
- package/dist/locales/en.json +7 -0
- package/dist/locales/nl.json +7 -0
- package/dist/scss/_button.scss +5 -12
- package/dist/scss/_templates.scss +2 -6
- package/dist/scss/base/variables.scss +1 -1
- package/dist/scss/templates/_not-found-template.scss +6 -0
- package/package.json +3 -2
- /package/dist/components/{organisms → templates}/BDChangePasswordTemplate/BDChangePasswordTemplate.vue.d.ts +0 -0
- /package/dist/scss/{_change-password-template.scss → templates/_change-password-template.scss} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BDChangePasswordTemplate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/
|
|
1
|
+
{"version":3,"file":"BDChangePasswordTemplate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/templates/BDChangePasswordTemplate/BDChangePasswordTemplate.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uIAAuI,CAAC;AAC9J,cAAc,uIAAuI,CAAC;AACtJ,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
buttonText: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
5
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "navigate"[], "navigate", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
buttonText: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
}>> & {
|
|
10
|
+
onNavigate?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
}, {}, {}>;
|
|
12
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BDNotFoundTemplate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/templates/BDNotFoundTemplate/BDNotFoundTemplate.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,2HAA2H,CAAC;AAClJ,cAAc,2HAA2H,CAAC;AAC1I,eAAe,SAAS,CAAC"}
|
package/dist/scss/_button.scss
CHANGED
|
@@ -34,19 +34,12 @@ $btn-variants:
|
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
.btn
|
|
37
|
+
.btn {
|
|
38
38
|
&.disabled {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.btn.btn-primary {
|
|
46
|
-
&:disabled {
|
|
47
|
-
opacity: 1;
|
|
48
|
-
color: $white;
|
|
49
|
-
background-color: $blue-pastel;
|
|
39
|
+
background-color: $white;
|
|
40
|
+
border: 1px solid $gray-4;
|
|
41
|
+
opacity: 0.5;
|
|
42
|
+
color: $gray-primary;
|
|
50
43
|
}
|
|
51
44
|
}
|
|
52
45
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import "templates/not-found-template";
|
|
2
|
+
@import "templates/change-password-template";
|
|
1
3
|
// TODO split up per template component
|
|
2
4
|
|
|
3
5
|
.template {
|
|
@@ -84,12 +86,6 @@
|
|
|
84
86
|
}
|
|
85
87
|
}
|
|
86
88
|
|
|
87
|
-
&.change-password-template {
|
|
88
|
-
.alert ul {
|
|
89
|
-
padding-top: 0px;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
89
|
.bd-card-template {
|
|
94
90
|
margin-bottom: 50px;
|
|
95
91
|
padding: 56px;
|
|
@@ -46,7 +46,7 @@ $green-dark: #006B3E; // groen donker: hover button success
|
|
|
46
46
|
$gray: #D1D4DB; // grijs : border button secondary,
|
|
47
47
|
$gray-4: #BEC3CD; // grijs 4: border inputfields
|
|
48
48
|
$gray-6: #F2F3F5; // grijs 6:
|
|
49
|
-
$gray-7: #
|
|
49
|
+
$gray-7: #f1f5f9; // grijs 7: button secondary bg-color hover /border $bg-color-btn-secondary-hover
|
|
50
50
|
$gray-secondary: #6B758A; // grijs secondair: subtitles, date cardview
|
|
51
51
|
$gray-primary: #394156; // grijs primair: headings default tekst color
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beterdichtbij/component-library",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.43.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -71,7 +71,8 @@
|
|
|
71
71
|
"dropzone": "5.9.3",
|
|
72
72
|
"maska": "2.1.11",
|
|
73
73
|
"pinia": "2.1",
|
|
74
|
-
"uid": "2.0.2"
|
|
74
|
+
"uid": "2.0.2",
|
|
75
|
+
"vue-i18n": "^9.4.1"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
78
|
"@azure/static-web-apps-cli": "1.1.4",
|
|
File without changes
|
/package/dist/scss/{_change-password-template.scss → templates/_change-password-template.scss}
RENAMED
|
File without changes
|