@beterdichtbij/component-library 0.38.0 → 0.39.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 +27 -27
- package/dist/bd-component-lib.es.js +3245 -3187
- package/dist/bd-component-lib.umd.js +27 -27
- package/dist/components/organisms/BDModal/BDModal.vue.d.ts +11 -0
- package/dist/components/organisms/BDSessionTimeOutModal/BDSessionTimeOutModal.vue.d.ts +44 -0
- package/dist/components/organisms/BDSessionTimeOutModal/BDSessionTimeOutModal.vue.d.ts.map +1 -0
- package/dist/composables/useSessionTimeOut.d.ts +7 -0
- package/dist/index.d.ts +3 -1
- package/dist/interfaces/BDModalProps.d.ts +1 -0
- package/package.json +2 -1
|
@@ -35,6 +35,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
35
|
required: true;
|
|
36
36
|
default: boolean;
|
|
37
37
|
};
|
|
38
|
+
hideCloseButton: {
|
|
39
|
+
type: __PropType<boolean>;
|
|
40
|
+
required: true;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
38
43
|
disableSubmitButton: {
|
|
39
44
|
type: __PropType<boolean>;
|
|
40
45
|
required: true;
|
|
@@ -81,6 +86,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
86
|
required: true;
|
|
82
87
|
default: boolean;
|
|
83
88
|
};
|
|
89
|
+
hideCloseButton: {
|
|
90
|
+
type: __PropType<boolean>;
|
|
91
|
+
required: true;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
84
94
|
disableSubmitButton: {
|
|
85
95
|
type: __PropType<boolean>;
|
|
86
96
|
required: true;
|
|
@@ -103,6 +113,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
103
113
|
hideFooterCancelButton: boolean;
|
|
104
114
|
hideFooterSubmitButton: boolean;
|
|
105
115
|
hideFooter: boolean;
|
|
116
|
+
hideCloseButton: boolean;
|
|
106
117
|
disableSubmitButton: boolean;
|
|
107
118
|
}, {}>;
|
|
108
119
|
export default _sfc_main;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<Readonly<{
|
|
2
|
+
expiredTitle?: any;
|
|
3
|
+
expiredMessage?: any;
|
|
4
|
+
expiredButtonText?: any;
|
|
5
|
+
almostExpiredTitle?: any;
|
|
6
|
+
almostExpiredMessage?: any;
|
|
7
|
+
almostExpiredButtonText?: any;
|
|
8
|
+
almostExpiredCancelButtonText?: any;
|
|
9
|
+
threshold?: any;
|
|
10
|
+
warningThreshold?: any;
|
|
11
|
+
getTime?: any;
|
|
12
|
+
setTaskId?: any;
|
|
13
|
+
setNewTime?: any;
|
|
14
|
+
logout?: any;
|
|
15
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
|
|
16
|
+
expiredTitle?: any;
|
|
17
|
+
expiredMessage?: any;
|
|
18
|
+
expiredButtonText?: any;
|
|
19
|
+
almostExpiredTitle?: any;
|
|
20
|
+
almostExpiredMessage?: any;
|
|
21
|
+
almostExpiredButtonText?: any;
|
|
22
|
+
almostExpiredCancelButtonText?: any;
|
|
23
|
+
threshold?: any;
|
|
24
|
+
warningThreshold?: any;
|
|
25
|
+
getTime?: any;
|
|
26
|
+
setTaskId?: any;
|
|
27
|
+
setNewTime?: any;
|
|
28
|
+
logout?: any;
|
|
29
|
+
}>>>, {
|
|
30
|
+
readonly expiredTitle?: any;
|
|
31
|
+
readonly expiredMessage?: any;
|
|
32
|
+
readonly expiredButtonText?: any;
|
|
33
|
+
readonly almostExpiredTitle?: any;
|
|
34
|
+
readonly almostExpiredMessage?: any;
|
|
35
|
+
readonly almostExpiredButtonText?: any;
|
|
36
|
+
readonly almostExpiredCancelButtonText?: any;
|
|
37
|
+
readonly threshold?: any;
|
|
38
|
+
readonly warningThreshold?: any;
|
|
39
|
+
readonly getTime?: any;
|
|
40
|
+
readonly setTaskId?: any;
|
|
41
|
+
readonly setNewTime?: any;
|
|
42
|
+
readonly logout?: any;
|
|
43
|
+
}, {}>;
|
|
44
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BDSessionTimeOutModal.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/BDSessionTimeOutModal/BDSessionTimeOutModal.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iIAAiI,CAAC;AACxJ,cAAc,iIAAiI,CAAC;AAChJ,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const useSessionTimeOut: (threshold: number | null, warningThreshold: number | null, getTime: Function, setTaskId: Function, setNewTime: Function, logout: Function) => {
|
|
2
|
+
IsExpired: import("vue").ComputedRef<boolean>;
|
|
3
|
+
Minutes: import("vue").ComputedRef<number>;
|
|
4
|
+
Seconds: import("vue").ComputedRef<number>;
|
|
5
|
+
OnLogOut: () => void;
|
|
6
|
+
OnSubmit: () => void;
|
|
7
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -36,8 +36,10 @@ import BDHeader from "./components/organisms/BDHeader/BDHeader.vue";
|
|
|
36
36
|
import BDImageAttachmentModal from "./components/organisms/BDImageAttachmentModal/BDImageAttachmentModal.vue";
|
|
37
37
|
import BDPhoneNumberEditModal from "./components/organisms/BDPhoneNumberEditModal/BDPhoneNumberEditModal.vue";
|
|
38
38
|
import BDModal from "./components/organisms/BDModal/BDModal.vue";
|
|
39
|
+
import BDSessionTimeOutModal from "./components/organisms/BDSessionTimeOutModal/BDSessionTimeOutModal.vue";
|
|
39
40
|
import { useModal } from "./composables/useModal";
|
|
40
41
|
import { useServerErrors } from "./composables/useServerErrors";
|
|
42
|
+
import { useSessionTimeOut } from "./composables/useSessionTimeOut";
|
|
41
43
|
import { useToaster } from "./composables/useToaster";
|
|
42
44
|
import { useValidation } from "./composables/useValidation";
|
|
43
45
|
import useZoom from "./composables/useZoom";
|
|
@@ -47,4 +49,4 @@ import { type ConfirmPhoneNumberUpdateData } from './types/ConfirmPhoneNumberUpd
|
|
|
47
49
|
import { type StartPhoneNumberUpdateData } from './types/StartPhoneNumberUpdateData';
|
|
48
50
|
import { type ValidationChangePasswordData } from './types/ValidationChangePasswordData';
|
|
49
51
|
import { getDisplayDate } from "./utils/display-date";
|
|
50
|
-
export { BDChatCloud, BDCol, BDContainer, BDRow, BDButton, BDLogo, BDLink, BDDropdownItem, BDDropdown, BDAlert, BDProfileImage, BDZoomslider, BDCard, BDChangePasswordTemplate, BDCollapsableCard, BDModal, BDFormInput, BDFormInvalidFeedback, BDInputGroup, BDBadge, BDForm, BDPagination, BDDropzone, BDMarkdownEditor, BDFormSelect, BDFormCheckbox, BDArticle, BDUser, BDToast, BDAttachmentPreviewList, BDImageAttachmentPreviewList, BDHeader, BDMobileMenu, BDTable, BDPill, BDImageAttachmentModal, BDPhoneNumberEditModal, IconAcademy, IconArrowDown, IconArrowUp, IconAttachment, IconBold, IconBulletList, IconCalendar, IconCardView, IconCaretDown, IconCaretLeft, IconCaretRight, IconCheck, IconClose, IconComment, IconDownloadImage, IconEdit, IconError, IconEyeShow, IconEyeSlash, IconFile, IconHyperlink, IconInfo, IconItalic, IconListView, IconMenu, IconOrderedList, IconRemove, IconService, IconSort, IconSortAsc, IconSortDesc, IconSortNone, IconTriangleExclamation, IconUnderline, IconContactPerson, ChangePasswordData, ConfirmPhoneNumberUpdateData, StartPhoneNumberUpdateData, ValidationChangePasswordData, useModal, useServerErrors, useToaster, useValidation, useZoom, vBdTooltip, getDisplayDate, };
|
|
52
|
+
export { BDChatCloud, BDCol, BDContainer, BDRow, BDButton, BDLogo, BDLink, BDDropdownItem, BDDropdown, BDAlert, BDProfileImage, BDZoomslider, BDCard, BDChangePasswordTemplate, BDCollapsableCard, BDModal, BDFormInput, BDFormInvalidFeedback, BDInputGroup, BDBadge, BDForm, BDPagination, BDDropzone, BDMarkdownEditor, BDFormSelect, BDFormCheckbox, BDArticle, BDUser, BDToast, BDAttachmentPreviewList, BDImageAttachmentPreviewList, BDHeader, BDMobileMenu, BDTable, BDPill, BDImageAttachmentModal, BDPhoneNumberEditModal, BDSessionTimeOutModal, IconAcademy, IconArrowDown, IconArrowUp, IconAttachment, IconBold, IconBulletList, IconCalendar, IconCardView, IconCaretDown, IconCaretLeft, IconCaretRight, IconCheck, IconClose, IconComment, IconDownloadImage, IconEdit, IconError, IconEyeShow, IconEyeSlash, IconFile, IconHyperlink, IconInfo, IconItalic, IconListView, IconMenu, IconOrderedList, IconRemove, IconService, IconSort, IconSortAsc, IconSortDesc, IconSortNone, IconTriangleExclamation, IconUnderline, IconContactPerson, ChangePasswordData, ConfirmPhoneNumberUpdateData, StartPhoneNumberUpdateData, ValidationChangePasswordData, useModal, useServerErrors, useSessionTimeOut, useToaster, useValidation, useZoom, vBdTooltip, getDisplayDate, };
|
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.39.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"dayjs": "^1.11.13",
|
|
71
71
|
"dropzone": "5.9.3",
|
|
72
72
|
"maska": "2.1.11",
|
|
73
|
+
"pinia": "2.1",
|
|
73
74
|
"uid": "2.0.2"
|
|
74
75
|
},
|
|
75
76
|
"devDependencies": {
|