@beterdichtbij/component-library 0.56.1 → 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.
@@ -1,4 +1,21 @@
1
- import "/home/vsts/work/1/s/src/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue?vue&type=style&index=0&scoped=cef09491&lang.scss";
2
- declare const _default: any;
3
- export default _default;
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
@@ -1 +1 @@
1
- {"version":3,"file":"BDContentLibrarySplitButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/BDContentLibrarySplitButton/BDContentLibrarySplitButton.vue"],"names":[],"mappings":"AA2HA,OAAO,uJAAuJ,CAAA;;AAG9J,wBAAqF"}
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"}
@@ -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
- .collapse {
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
+ }
@@ -1,4 +1,12 @@
1
1
  .modal.bd-modal {
2
+ &.modal-xl {
3
+ @include media-breakpoint-down(xl) {
4
+ .modal-dialog {
5
+ max-width: 100%;
6
+ }
7
+ }
8
+ }
9
+
2
10
  .modal-dialog {
3
11
  min-height: 100%;
4
12
  display: flex;
@@ -15,6 +15,7 @@
15
15
  @import "content-library-card";
16
16
  @import "content-library-modal";
17
17
  @import "content-library-overview";
18
+ @import "content-library-split-button";
18
19
  @import "conversation-to-text-modal";
19
20
  @import "dropdown";
20
21
  @import "dropzone";
@@ -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
  }, {}>;
@@ -2,6 +2,7 @@ import { bootstrapSizes } from '../types/BootstrapSizes';
2
2
  export interface BDCollapsableCardProps {
3
3
  title: string;
4
4
  disabled: boolean;
5
+ collapseOn: bootstrapSizes | null;
5
6
  showOn: bootstrapSizes;
6
7
  visible: boolean;
7
8
  }
@@ -4,5 +4,6 @@ export declare const BOOTSTRAP_SIZES: {
4
4
  readonly SM: "sm";
5
5
  readonly MD: "md";
6
6
  readonly LG: "lg";
7
+ readonly XL: "xl";
7
8
  };
8
9
  export type bootstrapSizes = GenericEnum<typeof BOOTSTRAP_SIZES>;
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.56.1",
5
+ "version": "0.56.2",
6
6
  "engines": {
7
7
  "node": "24.x",
8
8
  "npm": "11.x"