@beterdichtbij/component-library 0.64.10 → 0.65.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.
@@ -4,7 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
4
4
  $slots: S;
5
5
  });
6
6
  declare const __VLS_component: import('vue').DefineComponent<{}, {
7
- $emit: (event: "close" | "action" | "show-attachment" | "on-submit" | "on-input" | "change-department", ...args: any[]) => void;
7
+ $emit: (event: "close" | "on-input" | "change-department" | "action" | "show-attachment" | "on-submit", ...args: any[]) => void;
8
8
  modelValue: Record<string, any>;
9
9
  visible: boolean;
10
10
  validation: Record<string, any>;
@@ -1,37 +1,20 @@
1
+ import { BDTableProps } from '../../../interfaces/BDTableProps';
1
2
  declare function __VLS_template(): {
2
3
  attrs: Partial<{}>;
3
- slots: Partial<Record<`header_${any}`, (_: {}) => any>> & Partial<Record<any, (_: {
4
- row: any;
5
- item: any;
6
- value: any;
7
- }) => any>>;
4
+ slots: any;
8
5
  refs: {};
9
6
  rootEl: HTMLDivElement;
10
7
  };
11
8
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
- declare const __VLS_component: import('vue').DefineComponent<{
13
- items?: any;
14
- sortDesc?: any;
15
- fields?: any;
16
- sortBy?: any;
17
- tbodyTrClass?: any;
18
- emptyText?: any;
19
- }, {
9
+ declare const __VLS_component: import('vue').DefineComponent<BDTableProps, {
20
10
  Refresh: () => void;
21
11
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
12
  "row-click": (...args: any[]) => void;
23
13
  "sort-changed": (...args: any[]) => void;
24
- }, string, import('vue').PublicProps, Readonly<{
25
- items?: any;
26
- sortDesc?: any;
27
- fields?: any;
28
- sortBy?: any;
29
- tbodyTrClass?: any;
30
- emptyText?: any;
31
- }> & Readonly<{
14
+ }, string, import('vue').PublicProps, Readonly<BDTableProps> & Readonly<{
32
15
  "onRow-click"?: ((...args: any[]) => any) | undefined;
33
16
  "onSort-changed"?: ((...args: any[]) => any) | undefined;
34
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
35
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
36
19
  export default _default;
37
20
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,7 +4,7 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
4
4
  $slots: S;
5
5
  });
6
6
  declare const __VLS_component: import('vue').DefineComponent<{}, {
7
- $emit: (event: "update:modelValue" | "action" | "show-attachment" | "on-input" | "change-department" | "change-text" | "change-title", ...args: any[]) => void;
7
+ $emit: (event: "update:modelValue" | "on-input" | "change-department" | "action" | "show-attachment" | "change-text" | "change-title", ...args: any[]) => void;
8
8
  modelValue: Record<string, any>;
9
9
  validation: Record<string, any>;
10
10
  practitionerOptions: unknown[];
@@ -8,21 +8,21 @@ type __VLS_Props = {
8
8
  };
9
9
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
10
  delete: (id: any) => any;
11
+ "on-input": (form: any) => any;
11
12
  create: () => any;
12
13
  update: (category: string) => any;
13
14
  "show-attachment": (attachment: any) => any;
14
15
  "on-insert": (id: any) => any;
15
16
  "on-change": (id: any) => any;
16
- "on-input": (form: any) => any;
17
17
  "provider-changed": (value: any) => any;
18
18
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
19
  onDelete?: ((id: any) => any) | undefined;
20
+ "onOn-input"?: ((form: any) => any) | undefined;
20
21
  onCreate?: (() => any) | undefined;
21
22
  onUpdate?: ((category: string) => any) | undefined;
22
23
  "onShow-attachment"?: ((attachment: any) => any) | undefined;
23
24
  "onOn-insert"?: ((id: any) => any) | undefined;
24
25
  "onOn-change"?: ((id: any) => any) | undefined;
25
- "onOn-input"?: ((form: any) => any) | undefined;
26
26
  "onProvider-changed"?: ((value: any) => any) | undefined;
27
27
  }>, {
28
28
  loading: boolean;
package/dist/index.d.ts CHANGED
@@ -26,6 +26,7 @@ import { default as BDUserInformation } from './components/atoms/BDUserInformati
26
26
  import { default as BDDate } from './components/atoms/BDDate/BDDate.vue';
27
27
  import { default as BDDropdownItem } from './components/molecules/BDDropdownItem/BDDropdownItem.vue';
28
28
  import { default as BDFileUpload } from './components/molecules/BDFileUpload/BDFileUpload.vue';
29
+ import { default as BDFormMultipleCheckbox } from './components/molecules/BDFormMultipleCheckbox/BDFormMultipleCheckbox.vue';
29
30
  import { default as BDMarkdownEditor } from './components/molecules/BDMarkdownEditor/BDMarkdownEditor.vue';
30
31
  import { default as BDMobileMenu } from './components/molecules/BDMobileMenu/BDMobileMenu.vue';
31
32
  import { default as BDUser } from './components/molecules/BDUser/BDUser.vue';
@@ -69,4 +70,4 @@ import { getDisplayDateNumeric, getDisplayDateTimeNumeric, getDisplayDateTimeTex
69
70
  import { TransformHyperlinks, CreateHyperlinkParagraph, ValidateUrl } from './utils/hyperlink';
70
71
  import { CreateThumbnailUri, MapAttachmentsForApi, MapToAttachmentObjects } from './utils/attachment';
71
72
  import { AttachedFiles, AttachedFile } from './interfaces/BDFileUploadProps';
72
- export { BDAlert, BDArticle, BDAttachmentPreviewList, BDAttachmentUploadModal, BDBadge, BDAssignConversationModal, BDButton, BDCard, BDChangePasswordTemplate, BDChatCloud, BDCol, BDCollapsableCard, BDConfirmationModal, BDContentLibraryModal, BDConversationToTextModal, BDContentLibrarySplitButton, BDContentLibraryTemplate, BDContainer, BDDropdown, BDDropdownItem, BDFileUpload, BDForm, BDFormCheckbox, BDFormInput, BDFormInvalidFeedback, BDFormSelect, BDHeader, BDImageAttachmentModal, BDImageAttachmentPreviewList, BDInputGroup, BDLink, BDLogo, BDMarkdownEditor, BDMessageTemplateFormModal, BDMobileMenu, BDModal, BDNotFoundTemplate, BDPagination, BDPhoneNumberEditModal, BDPill, BDPractitionerHeader, BDProfileImage, BDRow, BDSessionTimeOutModal, BDTable, BDToast, BDUser, BDUserInformation, BDVideoCallConfirmationModal, BDVideoCallToast, BDZoomslider, BDDate, IconAcademy, IconArrowDown, IconArrowUp, IconAttachment, IconBold, IconBulletList, IconCalendar, IconCall, IconCallReject, IconCardView, IconCaretDown, IconCaretLeft, IconCaretRight, IconCheck, IconClipboard, IconClose, IconComment, IconCommentActive, IconCommentStatic, IconCommonFileEmpty, IconCommonFileWarning, IconContactPerson, IconCopy, IconDelete, IconDoubleCheck, IconDownloadImage, IconEdit, IconEndCall, IconError, IconExternal, IconEyeShow, IconEyeSlash, IconFile, IconFileAdded, IconForward, IconHix, IconHyperlink, IconImageFileLandscape, IconImageFileWarning, IconInbox, IconInfo, IconInformationCircle, IconItalic, IconListView, IconLock, IconLusciiEscalated, IconLusciiLogo, IconLusciiOpen, IconLusciiPriorityHigh, IconLusciiPriorityLow, IconLusciiPriorityMedium, IconMenu, IconMessage, IconMessageForward, IconMicrophoneSlash, IconMicrosoftTeams, IconMin, IconOrderedList, IconPlus, IconRefresh, IconRemove, IconSananetLogo, IconService, IconShareScreen, IconSingleNeutral, IconSort, IconSortAsc, IconSortDesc, IconSortNone, IconTriangleDown, IconTriangleExclamation, IconUnderline, IconVideocall, IconVideoDisabled, IconWarning, IconZorgkaart, ChangePasswordData, ConfirmPhoneNumberUpdateData, StartPhoneNumberUpdateData, ValidationChangePasswordData, useModal, usePopover, useServerErrors, useSessionTimeOut, useToaster, useValidation, useWindow, useZoom, vBdTooltip, CopyChatMessagesToClipboard, CopyChatMessageToClipboard, CopyHl7MessagesToClipboard, getDisplayDateNumeric, getDisplayDateTimeNumeric, getDisplayDateTimeTextual, getDisplayDateTextual, TransformHyperlinks, CreateHyperlinkParagraph, ValidateUrl, CreateThumbnailUri, MapAttachmentsForApi, MapToAttachmentObjects, type AttachedFiles, type AttachedFile, };
73
+ export { BDAlert, BDArticle, BDAttachmentPreviewList, BDAttachmentUploadModal, BDBadge, BDAssignConversationModal, BDButton, BDCard, BDChangePasswordTemplate, BDChatCloud, BDCol, BDCollapsableCard, BDConfirmationModal, BDContentLibraryModal, BDConversationToTextModal, BDContentLibrarySplitButton, BDContentLibraryTemplate, BDContainer, BDDropdown, BDDropdownItem, BDFileUpload, BDForm, BDFormCheckbox, BDFormInput, BDFormInvalidFeedback, BDFormMultipleCheckbox, BDFormSelect, BDHeader, BDImageAttachmentModal, BDImageAttachmentPreviewList, BDInputGroup, BDLink, BDLogo, BDMarkdownEditor, BDMessageTemplateFormModal, BDMobileMenu, BDModal, BDNotFoundTemplate, BDPagination, BDPhoneNumberEditModal, BDPill, BDPractitionerHeader, BDProfileImage, BDRow, BDSessionTimeOutModal, BDTable, BDToast, BDUser, BDUserInformation, BDVideoCallConfirmationModal, BDVideoCallToast, BDZoomslider, BDDate, IconAcademy, IconArrowDown, IconArrowUp, IconAttachment, IconBold, IconBulletList, IconCalendar, IconCall, IconCallReject, IconCardView, IconCaretDown, IconCaretLeft, IconCaretRight, IconCheck, IconClipboard, IconClose, IconComment, IconCommentActive, IconCommentStatic, IconCommonFileEmpty, IconCommonFileWarning, IconContactPerson, IconCopy, IconDelete, IconDoubleCheck, IconDownloadImage, IconEdit, IconEndCall, IconError, IconExternal, IconEyeShow, IconEyeSlash, IconFile, IconFileAdded, IconForward, IconHix, IconHyperlink, IconImageFileLandscape, IconImageFileWarning, IconInbox, IconInfo, IconInformationCircle, IconItalic, IconListView, IconLock, IconLusciiEscalated, IconLusciiLogo, IconLusciiOpen, IconLusciiPriorityHigh, IconLusciiPriorityLow, IconLusciiPriorityMedium, IconMenu, IconMessage, IconMessageForward, IconMicrophoneSlash, IconMicrosoftTeams, IconMin, IconOrderedList, IconPlus, IconRefresh, IconRemove, IconSananetLogo, IconService, IconShareScreen, IconSingleNeutral, IconSort, IconSortAsc, IconSortDesc, IconSortNone, IconTriangleDown, IconTriangleExclamation, IconUnderline, IconVideocall, IconVideoDisabled, IconWarning, IconZorgkaart, ChangePasswordData, ConfirmPhoneNumberUpdateData, StartPhoneNumberUpdateData, ValidationChangePasswordData, useModal, usePopover, useServerErrors, useSessionTimeOut, useToaster, useValidation, useWindow, useZoom, vBdTooltip, CopyChatMessagesToClipboard, CopyChatMessageToClipboard, CopyHl7MessagesToClipboard, getDisplayDateNumeric, getDisplayDateTimeNumeric, getDisplayDateTimeTextual, getDisplayDateTextual, TransformHyperlinks, CreateHyperlinkParagraph, ValidateUrl, CreateThumbnailUri, MapAttachmentsForApi, MapToAttachmentObjects, type AttachedFiles, type AttachedFile, };
@@ -0,0 +1,15 @@
1
+ export interface BDTableProps {
2
+ fields: Array<BDTableFieldProps>;
3
+ items: Array<any>;
4
+ sortBy: string;
5
+ sortDesc: boolean;
6
+ tbodyTrClass?: (item: any) => string;
7
+ emptyText?: string;
8
+ }
9
+ export interface BDTableFieldProps {
10
+ key: string;
11
+ label: string;
12
+ isVisible?: boolean;
13
+ sortable: boolean;
14
+ dateFormat?: string;
15
+ }
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.64.10",
5
+ "version": "0.65.0",
6
6
  "engines": {
7
7
  "node": "24.x",
8
8
  "npm": "11.x"