@beterdichtbij/component-library 0.55.1 → 0.56.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.
Files changed (25) hide show
  1. package/dist/bd-component-lib.cjs.js +65 -65
  2. package/dist/bd-component-lib.css +1 -1
  3. package/dist/bd-component-lib.es.js +2958 -2902
  4. package/dist/bd-component-lib.umd.js +63 -63
  5. package/dist/components/modals/BDConfirmationModal/BDConfirmationModal.vue.d.ts +11 -0
  6. package/dist/components/modals/BDConfirmationModal/BDConfirmationModal.vue.d.ts.map +1 -0
  7. package/dist/components/modals/BDContentLibraryModal/BDContentLibraryModal.vue.d.ts +0 -4
  8. package/dist/components/modals/BDContentLibraryModal/BDContentLibraryModal.vue.d.ts.map +1 -1
  9. package/dist/components/organisms/BDContentLibraryOverview/BDContentLibraryOverview.vue.d.ts +1 -1
  10. package/dist/components/organisms/BDContentLibraryOverview/BDContentLibraryOverview.vue.d.ts.map +1 -1
  11. package/dist/index.d.ts +2 -1
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/scss/_content-library-card.scss +254 -0
  14. package/dist/scss/_content-library-modal.scss +24 -3
  15. package/dist/scss/_content-library-overview.scss +5 -0
  16. package/dist/scss/_image-attachment-modal.scss +92 -0
  17. package/dist/scss/_input-group.scss +3 -0
  18. package/dist/scss/_modal.scss +4 -93
  19. package/dist/scss/component-library-styling.scss +5 -0
  20. package/dist/scss/templates/_content-library-template.scss +53 -0
  21. package/dist/src/components/modals/BDConfirmationModal/BDConfirmationModal.vue.d.ts +20 -0
  22. package/dist/src/components/modals/BDContentLibraryModal/BDContentLibraryModal.vue.d.ts +0 -9
  23. package/dist/src/types/ButtonColorVariants.d.ts +1 -0
  24. package/package.json +1 -1
  25. /package/dist/scss/{form-field.scss → _form-field.scss} +0 -0
@@ -0,0 +1,20 @@
1
+ export default _sfc_main;
2
+ declare const _sfc_main: import("vue").DefineComponent<Readonly<{
3
+ description?: any;
4
+ modalTitle?: any;
5
+ modalId?: any;
6
+ submitButtonText?: any;
7
+ cancelButtonText?: any;
8
+ }>, {}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
9
+ description?: any;
10
+ modalTitle?: any;
11
+ modalId?: any;
12
+ submitButtonText?: any;
13
+ cancelButtonText?: any;
14
+ }>>>, {
15
+ readonly description?: any;
16
+ readonly modalTitle?: any;
17
+ readonly modalId?: any;
18
+ readonly submitButtonText?: any;
19
+ readonly cancelButtonText?: any;
20
+ }, {}>;
@@ -14,10 +14,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
14
14
  type: BooleanConstructor;
15
15
  default: null;
16
16
  };
17
- modalTitle: {
18
- type: StringConstructor;
19
- default: null;
20
- };
21
17
  loading: {
22
18
  type: BooleanConstructor;
23
19
  default: boolean;
@@ -37,10 +33,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
37
33
  type: BooleanConstructor;
38
34
  default: null;
39
35
  };
40
- modalTitle: {
41
- type: StringConstructor;
42
- default: null;
43
- };
44
36
  loading: {
45
37
  type: BooleanConstructor;
46
38
  default: boolean;
@@ -54,6 +46,5 @@ declare const _sfc_main: import("vue").DefineComponent<{
54
46
  }, {
55
47
  loading: boolean;
56
48
  visible: boolean;
57
- modalTitle: string;
58
49
  providerSelectOptions: unknown[];
59
50
  }, {}>;
@@ -13,5 +13,6 @@ export declare const BTN_COLOR_VARIANTS: {
13
13
  readonly DARK: "dark";
14
14
  readonly REMOVE: "remove";
15
15
  readonly NEUTRAL: "neutral";
16
+ readonly ICON: "icon";
16
17
  };
17
18
  export type btnColorVariants = GenericEnum<typeof BTN_COLOR_VARIANTS>;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@beterdichtbij/component-library",
3
3
  "description": "Component library voor BeterDichtbij design system",
4
4
  "private": false,
5
- "version": "0.55.1",
5
+ "version": "0.56.0",
6
6
  "engines": {
7
7
  "node": "24.x",
8
8
  "npm": "11.x"
File without changes