@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.
@@ -1 +1 @@
1
- {"version":3,"file":"BDChangePasswordTemplate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/BDChangePasswordTemplate/BDChangePasswordTemplate.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uIAAuI,CAAC;AAC9J,cAAc,uIAAuI,CAAC;AACtJ,eAAe,SAAS,CAAC"}
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"}
@@ -0,0 +1,7 @@
1
+ {
2
+ "notFoundTemplate": {
3
+ "title": "Page not found",
4
+ "description": "The page you're looking for couldn't be found. Check the URL or go back to the mainpage.",
5
+ "buttonDefault": "Back to mainpage"
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "notFoundTemplate": {
3
+ "title": "Pagina niet gevonden",
4
+ "description": "De pagina die je zoekt kon niet gevonden worden. Controleer de URL of ga terug naar de hoofdpagina.",
5
+ "buttonDefault": "Terug naar hoofdpagina"
6
+ }
7
+ }
@@ -34,19 +34,12 @@ $btn-variants:
34
34
  }
35
35
  }
36
36
 
37
- .btn-outline-tertiary {
37
+ .btn {
38
38
  &.disabled {
39
- opacity: 1;
40
- color: #afb8cc;
41
- background-color: #f2f3f5;
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: #F7F8FA; // grijs 7: button secondary bg-color hover /border
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
 
@@ -0,0 +1,6 @@
1
+ .not-found-template {
2
+ p {
3
+ text-align: left;
4
+ margin: 0;
5
+ }
6
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@beterdichtbij/component-library",
3
3
  "private": false,
4
- "version": "0.42.2",
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",