@beterdichtbij/component-library 0.59.0 → 0.60.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 +1 -1
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +430 -37
- package/dist/bd-component-lib.umd.js +2 -2
- package/dist/components/modals/BDMessageTemplateFormModal/BDMessageTemplateFormModal.vue.d.ts +26 -0
- package/dist/components/molecules/BDFormMultipleCheckbox/BDFormMultipleCheckbox.vue.d.ts +18 -0
- package/dist/components/organisms/BDMessageTemplateForm/BDMessageTemplateForm.vue.d.ts +20 -0
- package/dist/index.d.ts +2 -1
- package/dist/scss/_form-multiple-checkbox.scss +48 -0
- package/dist/scss/_message-template-form-modal.scss +40 -0
- package/dist/scss/component-library-styling.scss +2 -0
- package/dist/utils/caret-location.d.ts +5 -0
- package/package.json +1 -1
|
@@ -32610,10 +32610,403 @@ var { showSuccessToast: OK } = FW(), kK = (e, t, n) => {
|
|
|
32610
32610
|
_: 1
|
|
32611
32611
|
}, 8, ["modal-class"]));
|
|
32612
32612
|
}
|
|
32613
|
-
});
|
|
32613
|
+
}), BK = /* @__PURE__ */ "direction.boxSizing.width.height.overflowX.overflowY.borderTopWidth.borderRightWidth.borderBottomWidth.borderLeftWidth.borderStyle.paddingTop.paddingRight.paddingBottom.paddingLeft.fontStyle.fontVariant.fontWeight.fontStretch.fontSize.fontSizeAdjust.lineHeight.fontFamily.textAlign.textTransform.textIndent.textDecoration.letterSpacing.wordSpacing.tabSize.MozTabSize".split("."), VK = typeof window < "u", HK = VK && window.mozInnerScreenX !== null;
|
|
32614
|
+
function UK(e, t, n) {
|
|
32615
|
+
if (!VK) throw Error("textarea-caret-position#getCaretCoordinates should only be called in a browser");
|
|
32616
|
+
let r = n && n.debug || !1;
|
|
32617
|
+
if (r) {
|
|
32618
|
+
let e = document.querySelector("#input-textarea-caret-position-mirror-div");
|
|
32619
|
+
e && e.parentNode.removeChild(e);
|
|
32620
|
+
}
|
|
32621
|
+
let i = document.createElement("div");
|
|
32622
|
+
i.id = "input-textarea-caret-position-mirror-div", document.body.appendChild(i);
|
|
32623
|
+
let a = i.style, o = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle, s = e.nodeName === "INPUT";
|
|
32624
|
+
a.whiteSpace = "pre-wrap", s || (a.wordWrap = "break-word"), a.position = "absolute", r || (a.visibility = "hidden"), BK.forEach(function(e) {
|
|
32625
|
+
if (s && e === "lineHeight") if (o.boxSizing === "border-box") {
|
|
32626
|
+
let e = parseInt(o.height), t = parseInt(o.paddingTop) + parseInt(o.paddingBottom) + parseInt(o.borderTopWidth) + parseInt(o.borderBottomWidth), n = t + parseInt(o.lineHeight);
|
|
32627
|
+
e > n ? a.lineHeight = e - t + "px" : e === n ? a.lineHeight = o.lineHeight : a.lineHeight = 0;
|
|
32628
|
+
} else a.lineHeight = o.height;
|
|
32629
|
+
else a[e] = o[e];
|
|
32630
|
+
}), HK ? e.scrollHeight > parseInt(o.height) && (a.overflowY = "scroll") : a.overflow = "hidden", i.textContent = e.value.substring(0, t), s && (i.textContent = i.textContent.replace(/\s/g, "\xA0"));
|
|
32631
|
+
let c = document.createElement("span");
|
|
32632
|
+
c.textContent = e.value.substring(t) || ".", i.appendChild(c);
|
|
32633
|
+
let l = {
|
|
32634
|
+
top: c.offsetTop + parseInt(o.borderTopWidth),
|
|
32635
|
+
left: c.offsetLeft + parseInt(o.borderLeftWidth),
|
|
32636
|
+
height: parseInt(o.lineHeight)
|
|
32637
|
+
};
|
|
32638
|
+
return r ? c.style.backgroundColor = "#aaa" : document.body.removeChild(i), l;
|
|
32639
|
+
}
|
|
32640
|
+
typeof module < "u" && module.exports !== void 0 ? module.exports = UK : VK && (window.getCaretCoordinates = UK);
|
|
32641
|
+
//#endregion
|
|
32642
|
+
//#region src/components/molecules/BDFormMultipleCheckbox/BDFormMultipleCheckbox.vue
|
|
32643
|
+
var WK = [
|
|
32644
|
+
"id",
|
|
32645
|
+
"value",
|
|
32646
|
+
"disabled"
|
|
32647
|
+
], GK = ["for"], KK = { class: "invalid-feedback" }, qK = {
|
|
32648
|
+
__name: "BDFormMultipleCheckbox",
|
|
32649
|
+
props: {
|
|
32650
|
+
modelValue: {
|
|
32651
|
+
type: Array,
|
|
32652
|
+
required: !0
|
|
32653
|
+
},
|
|
32654
|
+
options: {
|
|
32655
|
+
type: Array,
|
|
32656
|
+
required: !0
|
|
32657
|
+
},
|
|
32658
|
+
selectAllText: {
|
|
32659
|
+
type: String,
|
|
32660
|
+
default: null
|
|
32661
|
+
},
|
|
32662
|
+
state: {
|
|
32663
|
+
type: Boolean,
|
|
32664
|
+
default: !0
|
|
32665
|
+
},
|
|
32666
|
+
errorMessage: {
|
|
32667
|
+
type: String,
|
|
32668
|
+
default: null
|
|
32669
|
+
},
|
|
32670
|
+
overflow: {
|
|
32671
|
+
type: Boolean,
|
|
32672
|
+
default: !1
|
|
32673
|
+
}
|
|
32674
|
+
},
|
|
32675
|
+
emits: ["update:modelValue", "on-input"],
|
|
32676
|
+
setup(e, { emit: n }) {
|
|
32677
|
+
let r = e, i = n, { t: o } = ud(), s = N(r.modelValue), c = a(() => r.selectAllText ? r.selectAllText : o("form.multipleCheckbox.defaultButton")), d = a(() => {
|
|
32678
|
+
let e = "bd-form-multiple-checkbox";
|
|
32679
|
+
return r.state || (e += " is-invalid"), r.overflow && (e += " overflow-form-control"), e;
|
|
32680
|
+
}), f = a(() => r.errorMessage ? r.errorMessage : o("form.multipleCheckbox.defaultErrorMessage"));
|
|
32681
|
+
fe(() => r.modelValue, (e) => {
|
|
32682
|
+
s.value = e;
|
|
32683
|
+
}), fe(s, (e) => {
|
|
32684
|
+
i("update:modelValue", e);
|
|
32685
|
+
});
|
|
32686
|
+
function h() {
|
|
32687
|
+
s.value = r.options.map((e) => e.value), g();
|
|
32688
|
+
}
|
|
32689
|
+
function g() {
|
|
32690
|
+
i("on-input", s.value);
|
|
32691
|
+
}
|
|
32692
|
+
return (n, r) => (A(), l(t, null, [u("div", { class: T(d.value) }, [m(B, {
|
|
32693
|
+
variant: "outline-primary",
|
|
32694
|
+
size: "sm",
|
|
32695
|
+
onClick: h
|
|
32696
|
+
}, {
|
|
32697
|
+
default: z(() => [p(L(c.value), 1)]),
|
|
32698
|
+
_: 1
|
|
32699
|
+
}), (A(!0), l(t, null, P(e.options, (e) => (A(), l("div", {
|
|
32700
|
+
class: "form-check",
|
|
32701
|
+
key: e.value
|
|
32702
|
+
}, [me(u("input", {
|
|
32703
|
+
class: "form-check-input",
|
|
32704
|
+
type: "checkbox",
|
|
32705
|
+
id: e.value,
|
|
32706
|
+
value: e.value,
|
|
32707
|
+
"onUpdate:modelValue": r[0] ||= (e) => s.value = e,
|
|
32708
|
+
disabled: e.disabled
|
|
32709
|
+
}, null, 8, WK), [[ce, s.value]]), u("label", {
|
|
32710
|
+
class: "form-check-label",
|
|
32711
|
+
for: e.value
|
|
32712
|
+
}, L(e.text), 9, GK)]))), 128))], 2), u("div", KK, [m(Un), p(" " + L(f.value), 1)])], 64));
|
|
32713
|
+
}
|
|
32714
|
+
}, JK = {
|
|
32715
|
+
key: 0,
|
|
32716
|
+
class: "pills-list__wrapper"
|
|
32717
|
+
}, YK = { class: "pills-list__ul" }, XK = {
|
|
32718
|
+
__name: "BDMessageTemplateForm",
|
|
32719
|
+
props: {
|
|
32720
|
+
modelValue: {
|
|
32721
|
+
type: Object,
|
|
32722
|
+
required: !0
|
|
32723
|
+
},
|
|
32724
|
+
validation: {
|
|
32725
|
+
type: Object,
|
|
32726
|
+
default: () => ({
|
|
32727
|
+
title: { state: null },
|
|
32728
|
+
text: { state: null },
|
|
32729
|
+
category: { state: null },
|
|
32730
|
+
ownerId: { state: null }
|
|
32731
|
+
})
|
|
32732
|
+
},
|
|
32733
|
+
practitionerOptions: {
|
|
32734
|
+
type: Array,
|
|
32735
|
+
default: null
|
|
32736
|
+
},
|
|
32737
|
+
departmentOptions: {
|
|
32738
|
+
type: Array,
|
|
32739
|
+
default: null
|
|
32740
|
+
},
|
|
32741
|
+
categoryOptions: {
|
|
32742
|
+
type: Array,
|
|
32743
|
+
default: null
|
|
32744
|
+
},
|
|
32745
|
+
files: { type: Array },
|
|
32746
|
+
contentLibraryExternalProviders: {
|
|
32747
|
+
type: Array,
|
|
32748
|
+
default: () => []
|
|
32749
|
+
}
|
|
32750
|
+
},
|
|
32751
|
+
emits: [
|
|
32752
|
+
"show-attachment",
|
|
32753
|
+
"action",
|
|
32754
|
+
"on-input"
|
|
32755
|
+
],
|
|
32756
|
+
setup(e, { emit: n }) {
|
|
32757
|
+
let { showModal: r } = PW("attachment-upload-modal"), i = e, o = n, { t: d } = ud();
|
|
32758
|
+
N(!1), N(!0);
|
|
32759
|
+
let f = N({
|
|
32760
|
+
top: null,
|
|
32761
|
+
left: null
|
|
32762
|
+
}), p = N([]), h = a(() => void 0), g = a(() => i.validation.category.state === !1 ? "is-invalid" : ""), _ = a(() => [...i.categoryOptions ? i.categoryOptions.map((e) => ({
|
|
32763
|
+
text: e.name,
|
|
32764
|
+
value: e.name
|
|
32765
|
+
})) : [], ...p.value]);
|
|
32766
|
+
a(() => {
|
|
32767
|
+
if (i.modelValue.tag) return _.value.filter((e) => e.text.toLowerCase().indexOf(i.modelValue.tag.toLowerCase()) !== -1);
|
|
32768
|
+
}), a(() => GetContentLibraryExternalProviders.value[0].img);
|
|
32769
|
+
let v = a(() => {
|
|
32770
|
+
let e = i.modelValue.files || [], t = i.files || [];
|
|
32771
|
+
return [...e, ...t];
|
|
32772
|
+
});
|
|
32773
|
+
a(() => !f.value.top || !f.value.left ? "" : `top: ${f.value.top}; left: ${f.value.left};`), fe(i.modelValue, (e) => {
|
|
32774
|
+
j();
|
|
32775
|
+
}), O(() => {
|
|
32776
|
+
i.modelValue.category.length > 0 && k();
|
|
32777
|
+
});
|
|
32778
|
+
function y(e) {
|
|
32779
|
+
e && !_.value.some((t) => t.value === e) && (p.value = [{
|
|
32780
|
+
text: e,
|
|
32781
|
+
value: e
|
|
32782
|
+
}]);
|
|
32783
|
+
}
|
|
32784
|
+
function b(e) {
|
|
32785
|
+
o("show-attachment", e);
|
|
32786
|
+
}
|
|
32787
|
+
function x(e) {
|
|
32788
|
+
o("action", {
|
|
32789
|
+
action: "content-library",
|
|
32790
|
+
provider: e
|
|
32791
|
+
});
|
|
32792
|
+
}
|
|
32793
|
+
function S(e) {
|
|
32794
|
+
w(i.files, e), w(i.modelValue.files, e);
|
|
32795
|
+
}
|
|
32796
|
+
function w(e, t) {
|
|
32797
|
+
let n;
|
|
32798
|
+
n = t.obj.FileId ? e.findIndex((e) => e.FileId === t.obj.FileId) : e.findIndex((e) => e.CorrelationId === t.obj.CorrelationId), n !== -1 && e.splice(n, 1);
|
|
32799
|
+
}
|
|
32800
|
+
function E(e) {
|
|
32801
|
+
e.name === "delete-attachment" ? S(e) : e.name === "image-attachment" && b(e);
|
|
32802
|
+
}
|
|
32803
|
+
function D() {
|
|
32804
|
+
r();
|
|
32805
|
+
}
|
|
32806
|
+
function k() {
|
|
32807
|
+
let e = document.querySelector(".ti-new-tag-input-wrapper");
|
|
32808
|
+
e && (e.style.display = "none");
|
|
32809
|
+
}
|
|
32810
|
+
function j() {
|
|
32811
|
+
o("on-input", i.modelValue);
|
|
32812
|
+
}
|
|
32813
|
+
return (n, r) => (A(), s(Sg, null, {
|
|
32814
|
+
default: z(() => [
|
|
32815
|
+
m(vg, {
|
|
32816
|
+
label: R(d)("createEditReplyTemplates.titleLabel"),
|
|
32817
|
+
"label-for": "message-template-input-title"
|
|
32818
|
+
}, {
|
|
32819
|
+
default: z(() => [m(hg, {
|
|
32820
|
+
id: "message-template-input-title",
|
|
32821
|
+
type: "text",
|
|
32822
|
+
modelValue: e.modelValue.title,
|
|
32823
|
+
"onUpdate:modelValue": r[0] ||= (t) => e.modelValue.title = t,
|
|
32824
|
+
placeholder: R(d)("createEditReplyTemplates.titlePlaceHolder"),
|
|
32825
|
+
state: e.validation.title.state,
|
|
32826
|
+
"invalid-feedback-text": e.validation.title.errorLabel,
|
|
32827
|
+
onInput: j
|
|
32828
|
+
}, null, 8, [
|
|
32829
|
+
"modelValue",
|
|
32830
|
+
"placeholder",
|
|
32831
|
+
"state",
|
|
32832
|
+
"invalid-feedback-text"
|
|
32833
|
+
])]),
|
|
32834
|
+
_: 1
|
|
32835
|
+
}, 8, ["label"]),
|
|
32836
|
+
m(vg, { label: R(d)("createEditReplyTemplates.replyTemplateLabel") }, {
|
|
32837
|
+
default: z(() => [m(gU, {
|
|
32838
|
+
modelValue: e.modelValue.text,
|
|
32839
|
+
"onUpdate:modelValue": r[1] ||= (t) => e.modelValue.text = t,
|
|
32840
|
+
placeholder: R(d)("detailConversation.replyForm.textPlaceHolder"),
|
|
32841
|
+
errorText: R(d)("validation.default"),
|
|
32842
|
+
files: v.value,
|
|
32843
|
+
state: e.validation.text.state,
|
|
32844
|
+
variant: "full",
|
|
32845
|
+
"api-url": h.value,
|
|
32846
|
+
onUpload: D,
|
|
32847
|
+
onAction: E
|
|
32848
|
+
}, {
|
|
32849
|
+
default: z(() => [e.modelValue.pills ? (A(), l("div", JK, [u("ul", YK, [(A(!0), l(t, null, P(e.modelValue.pills, (e, t) => (A(), l("li", {
|
|
32850
|
+
key: t,
|
|
32851
|
+
class: "pills-list__li"
|
|
32852
|
+
}, [m(Qg, C({ ref_for: !0 }, e), null, 16)]))), 128))])])) : c("", !0)]),
|
|
32853
|
+
_: 1
|
|
32854
|
+
}, 8, [
|
|
32855
|
+
"modelValue",
|
|
32856
|
+
"placeholder",
|
|
32857
|
+
"errorText",
|
|
32858
|
+
"files",
|
|
32859
|
+
"state",
|
|
32860
|
+
"api-url"
|
|
32861
|
+
]), m(qh, {
|
|
32862
|
+
"content-library-providers": i.contentLibraryExternalProviders,
|
|
32863
|
+
"is-external-only": !0,
|
|
32864
|
+
onContentLibrary: x
|
|
32865
|
+
}, null, 8, ["content-library-providers"])]),
|
|
32866
|
+
_: 1
|
|
32867
|
+
}, 8, ["label"]),
|
|
32868
|
+
r[4] ||= u("div", { class: "form-splitter" }, null, -1),
|
|
32869
|
+
m(vg, { label: R(d)("createEditReplyTemplates.newSharedWithLabel") }, {
|
|
32870
|
+
default: z(() => [e.departmentOptions ? (A(), s(qK, {
|
|
32871
|
+
key: 0,
|
|
32872
|
+
modelValue: e.modelValue.sharedWithDepartment,
|
|
32873
|
+
"onUpdate:modelValue": r[2] ||= (t) => e.modelValue.sharedWithDepartment = t,
|
|
32874
|
+
options: e.departmentOptions,
|
|
32875
|
+
overflow: "",
|
|
32876
|
+
onOnInput: j
|
|
32877
|
+
}, null, 8, ["modelValue", "options"])) : c("", !0)]),
|
|
32878
|
+
_: 1
|
|
32879
|
+
}, 8, ["label"]),
|
|
32880
|
+
m(vg, {
|
|
32881
|
+
label: R(d)("createEditReplyTemplates.categoryLabel"),
|
|
32882
|
+
"label-for": "input-select-category"
|
|
32883
|
+
}, {
|
|
32884
|
+
default: z(() => [m(R(FG), {
|
|
32885
|
+
modelValue: e.modelValue.category,
|
|
32886
|
+
"onUpdate:modelValue": r[3] ||= (t) => e.modelValue.category = t,
|
|
32887
|
+
options: _.value,
|
|
32888
|
+
label: "text",
|
|
32889
|
+
onSearch: y
|
|
32890
|
+
}, null, 8, ["modelValue", "options"]), m(Yh, {
|
|
32891
|
+
class: T(g.value),
|
|
32892
|
+
state: e.validation.category.state,
|
|
32893
|
+
text: e.validation.category.errorLabel
|
|
32894
|
+
}, null, 8, [
|
|
32895
|
+
"class",
|
|
32896
|
+
"state",
|
|
32897
|
+
"text"
|
|
32898
|
+
])]),
|
|
32899
|
+
_: 1
|
|
32900
|
+
}, 8, ["label"])
|
|
32901
|
+
]),
|
|
32902
|
+
_: 1
|
|
32903
|
+
}));
|
|
32904
|
+
}
|
|
32905
|
+
}, ZK = {
|
|
32906
|
+
__name: "BDMessageTemplateFormModal",
|
|
32907
|
+
props: {
|
|
32908
|
+
modelValue: {
|
|
32909
|
+
type: Object,
|
|
32910
|
+
required: !0
|
|
32911
|
+
},
|
|
32912
|
+
files: { type: Array },
|
|
32913
|
+
visible: {
|
|
32914
|
+
type: Boolean,
|
|
32915
|
+
default: null
|
|
32916
|
+
},
|
|
32917
|
+
editable: {
|
|
32918
|
+
type: Boolean,
|
|
32919
|
+
default: !1
|
|
32920
|
+
},
|
|
32921
|
+
departmentOptions: { type: Array },
|
|
32922
|
+
practitionerOptions: { type: Array },
|
|
32923
|
+
categoryOptions: { type: Array },
|
|
32924
|
+
serverErrors: {
|
|
32925
|
+
type: Array,
|
|
32926
|
+
default: null
|
|
32927
|
+
},
|
|
32928
|
+
validation: {
|
|
32929
|
+
type: Object,
|
|
32930
|
+
required: !0
|
|
32931
|
+
},
|
|
32932
|
+
contentLibraryExternalProviders: {
|
|
32933
|
+
type: Array,
|
|
32934
|
+
default: () => []
|
|
32935
|
+
}
|
|
32936
|
+
},
|
|
32937
|
+
emits: [
|
|
32938
|
+
"show-attachment",
|
|
32939
|
+
"action",
|
|
32940
|
+
"on-submit",
|
|
32941
|
+
"close",
|
|
32942
|
+
"on-input"
|
|
32943
|
+
],
|
|
32944
|
+
setup(e, { emit: t }) {
|
|
32945
|
+
let n = e, r = t, { t: i } = ud(), o = N(JSON.parse(JSON.stringify(n.modelValue))), c = a(() => n.modelValue.id ? i("messageTemplateFormModal.editTitle") : i("messageTemplateFormModal.createTitle")), l = a(() => n.modelValue.id ? i("modals.edit") : i("modals.add"));
|
|
32946
|
+
fe(() => n.modelValue, (e) => {
|
|
32947
|
+
o.value = JSON.parse(JSON.stringify(e));
|
|
32948
|
+
}, {
|
|
32949
|
+
immediate: !0,
|
|
32950
|
+
deep: !0
|
|
32951
|
+
});
|
|
32952
|
+
function u(e) {
|
|
32953
|
+
r("show-attachment", e.obj);
|
|
32954
|
+
}
|
|
32955
|
+
function d(e) {
|
|
32956
|
+
r("action", e);
|
|
32957
|
+
}
|
|
32958
|
+
function f() {
|
|
32959
|
+
let e = JSON.parse(JSON.stringify(o.value));
|
|
32960
|
+
typeof e.category != "string" && (e.category = e.category.value ?? ""), r("on-submit", e);
|
|
32961
|
+
}
|
|
32962
|
+
function p() {
|
|
32963
|
+
r("close");
|
|
32964
|
+
}
|
|
32965
|
+
function h() {
|
|
32966
|
+
r("on-input", o.value);
|
|
32967
|
+
}
|
|
32968
|
+
return (t, r) => (A(), s(NW, {
|
|
32969
|
+
id: "message-template-form-modal",
|
|
32970
|
+
title: c.value,
|
|
32971
|
+
"submit-button-title": l.value,
|
|
32972
|
+
"server-errors": e.serverErrors,
|
|
32973
|
+
visible: e.visible,
|
|
32974
|
+
onSubmit: f,
|
|
32975
|
+
onCancel: p
|
|
32976
|
+
}, {
|
|
32977
|
+
default: z(() => [m(XK, {
|
|
32978
|
+
modelValue: o.value,
|
|
32979
|
+
"onUpdate:modelValue": r[0] ||= (e) => o.value = e,
|
|
32980
|
+
departmentOptions: e.departmentOptions,
|
|
32981
|
+
practitionerOptions: e.practitionerOptions,
|
|
32982
|
+
categoryOptions: e.categoryOptions,
|
|
32983
|
+
validation: e.validation,
|
|
32984
|
+
files: e.files,
|
|
32985
|
+
"content-library-external-providers": n.contentLibraryExternalProviders,
|
|
32986
|
+
onOnInput: h,
|
|
32987
|
+
onAction: d,
|
|
32988
|
+
onShowAttachment: u
|
|
32989
|
+
}, null, 8, [
|
|
32990
|
+
"modelValue",
|
|
32991
|
+
"departmentOptions",
|
|
32992
|
+
"practitionerOptions",
|
|
32993
|
+
"categoryOptions",
|
|
32994
|
+
"validation",
|
|
32995
|
+
"files",
|
|
32996
|
+
"content-library-external-providers"
|
|
32997
|
+
])]),
|
|
32998
|
+
_: 1
|
|
32999
|
+
}, 8, [
|
|
33000
|
+
"title",
|
|
33001
|
+
"submit-button-title",
|
|
33002
|
+
"server-errors",
|
|
33003
|
+
"visible"
|
|
33004
|
+
]));
|
|
33005
|
+
}
|
|
33006
|
+
};
|
|
32614
33007
|
//#endregion
|
|
32615
33008
|
//#region src/composables/useZoom.ts
|
|
32616
|
-
function
|
|
33009
|
+
function QK() {
|
|
32617
33010
|
let e = N(0), t = N(!0), n = N(null), r = N({
|
|
32618
33011
|
top: 0,
|
|
32619
33012
|
left: 0,
|
|
@@ -32646,16 +33039,16 @@ function BK() {
|
|
|
32646
33039
|
}
|
|
32647
33040
|
//#endregion
|
|
32648
33041
|
//#region src/components/modals/BDImageAttachmentModal/BDImageAttachmentModal.vue?vue&type=script&setup=true&lang.ts
|
|
32649
|
-
var
|
|
33042
|
+
var $K = ["src", "alt"], eq = {
|
|
32650
33043
|
key: 0,
|
|
32651
33044
|
class: "show-spinner"
|
|
32652
|
-
},
|
|
33045
|
+
}, tq = {
|
|
32653
33046
|
class: "spinner-border text-primary",
|
|
32654
33047
|
role: "status"
|
|
32655
|
-
},
|
|
33048
|
+
}, nq = ["textContent"], rq = ["href"], iq = /* @__PURE__ */ g({
|
|
32656
33049
|
__name: "BDImageAttachmentModal",
|
|
32657
33050
|
setup(e, { expose: t }) {
|
|
32658
|
-
let { showModal: n } = PW("image-attachment-modal"), { zoom: r, imageHolderRef: i, SetZoom: o, OnMouseDown: d, OnMouseMove: f, OnMouseUp: p } =
|
|
33051
|
+
let { showModal: n } = PW("image-attachment-modal"), { zoom: r, imageHolderRef: i, SetZoom: o, OnMouseDown: d, OnMouseMove: f, OnMouseUp: p } = QK(), { t: h } = ud(), g = N(!0), _ = N({
|
|
32659
33052
|
BerichtId: 0,
|
|
32660
33053
|
Id: void 0,
|
|
32661
33054
|
MimeType: null,
|
|
@@ -32705,11 +33098,11 @@ var VK = ["src", "alt"], HK = {
|
|
|
32705
33098
|
class: T(["image-preview-modal", R(o)]),
|
|
32706
33099
|
onLoad: b,
|
|
32707
33100
|
draggable: !1
|
|
32708
|
-
}, null, 42,
|
|
32709
|
-
g.value ? (A(), l("div",
|
|
33101
|
+
}, null, 42, $K)) : c("", !0)], 544),
|
|
33102
|
+
g.value ? (A(), l("div", eq, [u("div", tq, [u("span", {
|
|
32710
33103
|
class: "visually-hidden",
|
|
32711
33104
|
textContent: L(y.value)
|
|
32712
|
-
}, null, 8,
|
|
33105
|
+
}, null, 8, nq)])])) : c("", !0),
|
|
32713
33106
|
m(Lo, {
|
|
32714
33107
|
modelValue: R(r),
|
|
32715
33108
|
"onUpdate:modelValue": t[3] ||= (e) => x(r) ? r.value = e : null,
|
|
@@ -32720,12 +33113,12 @@ var VK = ["src", "alt"], HK = {
|
|
|
32720
33113
|
variant: "primary",
|
|
32721
33114
|
class: "download-image",
|
|
32722
33115
|
textContent: L(v.value)
|
|
32723
|
-
}, null, 8, ["textContent"])], 8,
|
|
33116
|
+
}, null, 8, ["textContent"])], 8, rq)
|
|
32724
33117
|
]),
|
|
32725
33118
|
_: 1
|
|
32726
33119
|
}, 8, ["class", "title"]));
|
|
32727
33120
|
}
|
|
32728
|
-
}),
|
|
33121
|
+
}), aq = { key: 0 }, oq = { key: 1 }, sq = { key: 2 }, cq = { key: 3 }, lq = { key: 1 }, uq = { key: 2 }, dq = ["href"], fq = /* @__PURE__ */ g({
|
|
32729
33122
|
__name: "BDVideoCallConfirmationModal",
|
|
32730
33123
|
props: [
|
|
32731
33124
|
"isMissingCameraPermission",
|
|
@@ -32751,21 +33144,21 @@ var VK = ["src", "alt"], HK = {
|
|
|
32751
33144
|
variant: "warning"
|
|
32752
33145
|
}, {
|
|
32753
33146
|
default: z(() => [u("p", null, L(_.value), 1), u("ul", null, [
|
|
32754
|
-
r.isMissingCameraPermission ? (A(), l("li",
|
|
32755
|
-
r.isMissingMicrophonePermission ? (A(), l("li",
|
|
32756
|
-
r.isMissingMobileActivation ? (A(), l("li",
|
|
32757
|
-
r.isMissingVideoConferencingSupport ? (A(), l("li",
|
|
33147
|
+
r.isMissingCameraPermission ? (A(), l("li", aq, L(v.value), 1)) : c("", !0),
|
|
33148
|
+
r.isMissingMicrophonePermission ? (A(), l("li", oq, L(y.value), 1)) : c("", !0),
|
|
33149
|
+
r.isMissingMobileActivation ? (A(), l("li", sq, L(f.value), 1)) : c("", !0),
|
|
33150
|
+
r.isMissingVideoConferencingSupport ? (A(), l("li", cq, L(m.value), 1)) : c("", !0)
|
|
32758
33151
|
])]),
|
|
32759
33152
|
_: 1
|
|
32760
|
-
})) : r.participantName ? (A(), l("p",
|
|
33153
|
+
})) : r.participantName ? (A(), l("p", lq, [
|
|
32761
33154
|
p(L(x.value) + " ", 1),
|
|
32762
33155
|
u("b", null, L(r.participantName), 1),
|
|
32763
33156
|
t[0] ||= p("?", -1)
|
|
32764
|
-
])) : (A(), l("p",
|
|
33157
|
+
])) : (A(), l("p", uq, L(b.value), 1)), u("p", null, [u("a", {
|
|
32765
33158
|
href: r.videoTestUrl,
|
|
32766
33159
|
target: "blank",
|
|
32767
33160
|
rel: "noopener noreferrer"
|
|
32768
|
-
}, L(S.value), 9,
|
|
33161
|
+
}, L(S.value), 9, dq), u("span", null, "\xA0" + L(C.value), 1)])]),
|
|
32769
33162
|
_: 1
|
|
32770
33163
|
}, 8, [
|
|
32771
33164
|
"title",
|
|
@@ -32774,7 +33167,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32774
33167
|
"hide-footer-submit-button"
|
|
32775
33168
|
]));
|
|
32776
33169
|
}
|
|
32777
|
-
}),
|
|
33170
|
+
}), pq = () => ({
|
|
32778
33171
|
ResetValidation: (e) => {
|
|
32779
33172
|
for (let t in e.value) e.value[t].state = null;
|
|
32780
33173
|
},
|
|
@@ -32782,7 +33175,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32782
33175
|
for (let t in e) if (e[t].state === !1) return !1;
|
|
32783
33176
|
return !0;
|
|
32784
33177
|
}
|
|
32785
|
-
}),
|
|
33178
|
+
}), mq = { class: "template change-password-template" }, hq = { class: "template-title" }, gq = { key: 0 }, _q = { key: 1 }, vq = { class: "bd-form-field" }, yq = { class: "bd-form-field" }, bq = { class: "bd-form-field" }, xq = { class: "bd-form-buttons" }, Sq = /* @__PURE__ */ g({
|
|
32786
33179
|
__name: "BDChangePasswordTemplate",
|
|
32787
33180
|
props: {
|
|
32788
33181
|
templateTitle: {},
|
|
@@ -32800,7 +33193,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32800
33193
|
submitPassword: { type: Function }
|
|
32801
33194
|
},
|
|
32802
33195
|
setup(e) {
|
|
32803
|
-
let { t: n } = ud(), { showDangerToast: r, showWarningToast: i, showSuccessToast: a } = FW(), { errorMessages: o, errorMessageText: d, MapServerErrors: f, ResetServerErrors: h } = LW(null), { ValidationObjectIsValid: g } =
|
|
33196
|
+
let { t: n } = ud(), { showDangerToast: r, showWarningToast: i, showSuccessToast: a } = FW(), { errorMessages: o, errorMessageText: d, MapServerErrors: f, ResetServerErrors: h } = LW(null), { ValidationObjectIsValid: g } = pq(), _ = e, v = N({
|
|
32804
33197
|
password: "",
|
|
32805
33198
|
passwordNew: "",
|
|
32806
33199
|
passwordRepeat: ""
|
|
@@ -32835,14 +33228,14 @@ var VK = ["src", "alt"], HK = {
|
|
|
32835
33228
|
}, S = () => {
|
|
32836
33229
|
v.value.password === "" && v.value.passwordNew === "" && v.value.passwordRepeat === "" || (v.value.password = "", v.value.passwordNew = "", v.value.passwordRepeat = "", y.value.password.state = null, y.value.passwordNew.state = null, y.value.passwordRepeat.state = null, h(), i(n("changePasswordTemplate.toasters.reset")));
|
|
32837
33230
|
};
|
|
32838
|
-
return (n, r) => (A(), l("main",
|
|
33231
|
+
return (n, r) => (A(), l("main", mq, [m(Oe, { class: "container-xl" }, {
|
|
32839
33232
|
default: z(() => [m(ke, { class: "justify-content-md-center template-header" }, {
|
|
32840
33233
|
default: z(() => [m(De, {
|
|
32841
33234
|
xs: 12,
|
|
32842
33235
|
md: 10,
|
|
32843
33236
|
lg: 7
|
|
32844
33237
|
}, {
|
|
32845
|
-
default: z(() => [u("h1",
|
|
33238
|
+
default: z(() => [u("h1", hq, L(_.templateTitle), 1)]),
|
|
32846
33239
|
_: 1
|
|
32847
33240
|
})]),
|
|
32848
33241
|
_: 1
|
|
@@ -32871,7 +33264,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32871
33264
|
R(o) || R(d) ? (A(), s(ke, { key: 0 }, {
|
|
32872
33265
|
default: z(() => [m(De, null, {
|
|
32873
33266
|
default: z(() => [m(vo, { variant: "danger" }, {
|
|
32874
|
-
default: z(() => [R(o) ? (A(), l("div",
|
|
33267
|
+
default: z(() => [R(o) ? (A(), l("div", gq, [u("ul", null, [(A(!0), l(t, null, P(R(o), (e, t) => (A(), l("li", { key: t }, [m(Lr), u("span", null, L(e), 1)]))), 128))])])) : (A(), l("div", _q, L(R(d)), 1))]),
|
|
32875
33268
|
_: 1
|
|
32876
33269
|
})]),
|
|
32877
33270
|
_: 1
|
|
@@ -32889,7 +33282,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32889
33282
|
onReset: ge(S, ["prevent"]),
|
|
32890
33283
|
class: "form"
|
|
32891
33284
|
}, [
|
|
32892
|
-
u("div",
|
|
33285
|
+
u("div", vq, [m(hg, {
|
|
32893
33286
|
modelValue: R(v).password,
|
|
32894
33287
|
"onUpdate:modelValue": r[0] ||= (e) => R(v).password = e,
|
|
32895
33288
|
label: e.currentPasswordLabel,
|
|
@@ -32902,7 +33295,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32902
33295
|
"state",
|
|
32903
33296
|
"invalid-feedback-text"
|
|
32904
33297
|
])]),
|
|
32905
|
-
u("div",
|
|
33298
|
+
u("div", yq, [m(hg, {
|
|
32906
33299
|
modelValue: R(v).passwordNew,
|
|
32907
33300
|
"onUpdate:modelValue": r[1] ||= (e) => R(v).passwordNew = e,
|
|
32908
33301
|
label: e.newPasswordLabel,
|
|
@@ -32915,7 +33308,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32915
33308
|
"state",
|
|
32916
33309
|
"invalid-feedback-text"
|
|
32917
33310
|
])]),
|
|
32918
|
-
u("div",
|
|
33311
|
+
u("div", bq, [m(hg, {
|
|
32919
33312
|
modelValue: R(v).passwordRepeat,
|
|
32920
33313
|
"onUpdate:modelValue": r[2] ||= (e) => R(v).passwordRepeat = e,
|
|
32921
33314
|
label: e.confirmNewPasswordLabel,
|
|
@@ -32928,7 +33321,7 @@ var VK = ["src", "alt"], HK = {
|
|
|
32928
33321
|
"state",
|
|
32929
33322
|
"invalid-feedback-text"
|
|
32930
33323
|
])]),
|
|
32931
|
-
u("div",
|
|
33324
|
+
u("div", xq, [m(B, { type: "submit" }, {
|
|
32932
33325
|
default: z(() => [p(L(e.submitButtonText), 1)]),
|
|
32933
33326
|
_: 1
|
|
32934
33327
|
}), m(B, {
|
|
@@ -32955,17 +33348,17 @@ var VK = ["src", "alt"], HK = {
|
|
|
32955
33348
|
_: 1
|
|
32956
33349
|
})]));
|
|
32957
33350
|
}
|
|
32958
|
-
}),
|
|
33351
|
+
}), Cq = { class: "template not-found-template" }, wq = { class: "center-screen" }, Tq = { class: "container-warning" }, Eq = ["textContent"], Dq = ["textContent"], Oq = /* @__PURE__ */ g({
|
|
32959
33352
|
__name: "BDNotFoundTemplate",
|
|
32960
33353
|
props: { buttonText: { type: String } },
|
|
32961
33354
|
emits: ["navigate"],
|
|
32962
33355
|
setup(e, { emit: t }) {
|
|
32963
33356
|
let { t: n } = ud(), r = e, i = t, o = a(() => r.buttonText || n("notFoundTemplate.buttonDefault")), s = a(() => n("notFoundTemplate.title")), c = a(() => n("notFoundTemplate.description")), d = () => i("navigate");
|
|
32964
|
-
return (e, t) => (A(), l("main",
|
|
32965
|
-
default: z(() => [u("div",
|
|
33357
|
+
return (e, t) => (A(), l("main", Cq, [m(Oe, { class: "container-xl" }, {
|
|
33358
|
+
default: z(() => [u("div", wq, [u("div", Tq, [
|
|
32966
33359
|
m(Ya),
|
|
32967
|
-
u("h5", { textContent: L(s.value) }, null, 8,
|
|
32968
|
-
u("p", { textContent: L(c.value) }, null, 8,
|
|
33360
|
+
u("h5", { textContent: L(s.value) }, null, 8, Eq),
|
|
33361
|
+
u("p", { textContent: L(c.value) }, null, 8, Dq),
|
|
32969
33362
|
m(B, {
|
|
32970
33363
|
onClick: d,
|
|
32971
33364
|
variant: "primary",
|
|
@@ -32976,15 +33369,15 @@ var VK = ["src", "alt"], HK = {
|
|
|
32976
33369
|
_: 1
|
|
32977
33370
|
})]));
|
|
32978
33371
|
}
|
|
32979
|
-
}),
|
|
33372
|
+
}), kq = (e) => {
|
|
32980
33373
|
let t = /<a\b[^>]*>.*?<\/a>/gi, n = [], r;
|
|
32981
33374
|
for (; (r = t.exec(e)) !== null;) n.push({
|
|
32982
33375
|
start: r.index,
|
|
32983
33376
|
end: r.index + r[0].length
|
|
32984
33377
|
});
|
|
32985
33378
|
return e.replace(/(https?:\/\/[^\s<>"',]+|www\.[^\s<>"',]+)/g, (e, t, r) => n.some((e) => r >= e.start && r < e.end) ? e : `<a href="${e.startsWith("www.") ? `http://${e}` : e}" target="_blank" rel="noopener noreferrer">${e}</a>`);
|
|
32986
|
-
},
|
|
32987
|
-
e.component("BDAlert", vo), e.component("BDArticle", zg), e.component("BDAssignConversationModal", KW), e.component("BDAttachmentPreviewList", hP), e.component("BDAttachmentUploadModal", qW), e.component("BDBadge", xg), e.component("BDButton", B), e.component("BDCard", Yo), e.component("BDChangePasswordTemplate",
|
|
33379
|
+
}, Aq = (e, t) => `<p><a href="${e}" title="${t}" target="_blank" rel="noopener noreferrer">${t}</a></p>`, jq = (e) => e.startsWith("http://") || e.startsWith("https://"), Mq = { install: (e) => {
|
|
33380
|
+
e.component("BDAlert", vo), e.component("BDArticle", zg), e.component("BDAssignConversationModal", KW), e.component("BDAttachmentPreviewList", hP), e.component("BDAttachmentUploadModal", qW), e.component("BDBadge", xg), e.component("BDButton", B), e.component("BDCard", Yo), e.component("BDChangePasswordTemplate", Sq), e.component("BDChatCloud", IU), e.component("BDCol", De), e.component("BDCollapsableCard", $o), e.component("BDConfirmationModal", GW), e.component("BDContentLibraryModal", vK), e.component("BDConversationToTextModal", zK), e.component("BDContentLibrarySplitButton", qh), e.component("BDContentLibraryTemplate", _K), e.component("BDContainer", Oe), e.component("BDDropdown", rW), e.component("BDDropdownItem", C_), e.component("BDDropzone", N_), e.component("BDForm", Sg), e.component("BDFormCheckbox", Ig), e.component("BDFormInput", hg), e.component("BDFormInvalidFeedback", Yh), e.component("BDFormSelect", Pg), e.component("BDHeader", uW), e.component("BDImageAttachmentModal", iq), e.component("BDImageAttachmentPreviewList", wP), e.component("BDInputGroup", vg), e.component("BDLink", je), e.component("BDLogo", Pe), e.component("BDMarkdownEditor", gU), e.component("BDMessageTemplateFormModal", ZK), e.component("BDMobileMenu", CU), e.component("BDModal", NW), e.component("BDNotFoundTemplate", Oq), e.component("BDPagination", kg), e.component("BDPhoneNumberEditModal", HW), e.component("BDPill", Qg), e.component("BDPractitionerHeader", wW), e.component("BDProfileImage", Bo), e.component("BDRow", ke), e.component("BDSessionTimeOutModal", WW), e.component("BDTable", GU), e.component("BDToast", Wg), e.component("BDUser", OU), e.component("BDUserInformation", r_), e.component("BDVideoCallConfirmationModal", fq), e.component("BDVideoCallToast", nW), e.component("BDZoomslider", Lo), e.component("BDDate", S_), e.component("IconAcademy", Re), e.component("IconArrowDown", He), e.component("IconArrowUp", Ke), e.component("IconAttachment", Xe), e.component("IconBold", et), e.component("IconBulletList", it), e.component("IconCalendar", ct), e.component("IconCall", ft), e.component("IconCallReject", gt), e.component("IconCardView", bt), e.component("IconCaretDown", wt), e.component("IconCaretLeft", Ot), e.component("IconCaretRight", Mt), e.component("IconCheck", It), e.component("IconClipboard", Bt), e.component("IconClose", Wt), e.component("IconComment", Jt), e.component("IconCommentActive", Qt), e.component("IconCommonFileEmpty", sn), e.component("IconCommonFileWarning", dn), e.component("IconCommentStatic", nn), e.component("IconContactPerson", hn), e.component("IconCopy", yn), e.component("IconDelete", Cn), e.component("IconDoubleCheck", Dn), e.component("IconDownloadImage", jn), e.component("IconEdit", Fn), e.component("IconEndCall", zn), e.component("IconError", Un), e.component("IconExternal", qn), e.component("IconEyeShow", Zn), e.component("IconEyeSlash", tr), e.component("IconFile", ar), e.component("IconFileAdded", lr), e.component("IconForward", pr), e.component("IconHix", _r), e.component("IconHyperlink", xr), e.component("IconImageFileLandscape", Tr), e.component("IconImageFileWarning", kr), e.component("IconInbox", Nr), e.component("IconInfo", Lr), e.component("IconInformationCircle", Vr), e.component("IconItalic", Gr), e.component("IconListView", Yr), e.component("IconLock", $r), e.component("IconLusciiEscalated", ri), e.component("IconLusciiLogo", si), e.component("IconLusciiOpen", di), e.component("IconLusciiPriorityHigh", hi), e.component("IconLusciiPriorityLow", yi), e.component("IconLusciiPriorityMedium", Ci), e.component("IconMenu", Di), e.component("IconMessage", ji), e.component("IconMessageForward", Fi), e.component("IconMicrophoneSlash", Ri), e.component("IconMicrosoftTeams", Hi), e.component("IconMin", Ki), e.component("IconOrderedList", Xi), e.component("IconPlus", ea), e.component("IconRefresh", ia), e.component("IconRemove", ca), e.component("IconSananetLogo", pa), e.component("IconService", _a), e.component("IconShareScreen", xa), e.component("IconSingleNeutral", Ta), e.component("IconSort", ka), e.component("IconSortAsc", Na), e.component("IconSortDesc", La), e.component("IconSortNone", Va), e.component("IconTriangleDown", Ga), e.component("IconTriangleExclamation", Ya), e.component("IconUnderline", $a), e.component("IconVideoDisabled", oo), e.component("IconVideocall", ro), e.component("IconWarning", uo), e.component("IconZorgkaart", ho), e.directive("vBDTooltip", dU);
|
|
32988
33381
|
} };
|
|
32989
33382
|
//#endregion
|
|
32990
|
-
export { vo as BDAlert, zg as BDArticle, KW as BDAssignConversationModal, hP as BDAttachmentPreviewList, qW as BDAttachmentUploadModal, xg as BDBadge, B as BDButton, Yo as BDCard,
|
|
33383
|
+
export { vo as BDAlert, zg as BDArticle, KW as BDAssignConversationModal, hP as BDAttachmentPreviewList, qW as BDAttachmentUploadModal, xg as BDBadge, B as BDButton, Yo as BDCard, Sq as BDChangePasswordTemplate, IU as BDChatCloud, De as BDCol, $o as BDCollapsableCard, GW as BDConfirmationModal, Oe as BDContainer, vK as BDContentLibraryModal, qh as BDContentLibrarySplitButton, _K as BDContentLibraryTemplate, zK as BDConversationToTextModal, S_ as BDDate, rW as BDDropdown, C_ as BDDropdownItem, N_ as BDDropzone, Sg as BDForm, Ig as BDFormCheckbox, hg as BDFormInput, Yh as BDFormInvalidFeedback, Pg as BDFormSelect, uW as BDHeader, iq as BDImageAttachmentModal, wP as BDImageAttachmentPreviewList, vg as BDInputGroup, je as BDLink, Pe as BDLogo, gU as BDMarkdownEditor, ZK as BDMessageTemplateFormModal, CU as BDMobileMenu, NW as BDModal, Oq as BDNotFoundTemplate, kg as BDPagination, HW as BDPhoneNumberEditModal, Qg as BDPill, wW as BDPractitionerHeader, Bo as BDProfileImage, ke as BDRow, WW as BDSessionTimeOutModal, GU as BDTable, Wg as BDToast, OU as BDUser, r_ as BDUserInformation, fq as BDVideoCallConfirmationModal, nW as BDVideoCallToast, Lo as BDZoomslider, kK as CopyChatMessageToClipboard, AK as CopyChatMessagesToClipboard, jK as CopyHl7MessagesToClipboard, Aq as CreateHyperlinkParagraph, OP as CreateThumbnailUri, Re as IconAcademy, He as IconArrowDown, Ke as IconArrowUp, Xe as IconAttachment, et as IconBold, it as IconBulletList, ct as IconCalendar, ft as IconCall, gt as IconCallReject, bt as IconCardView, wt as IconCaretDown, Ot as IconCaretLeft, Mt as IconCaretRight, It as IconCheck, Bt as IconClipboard, Wt as IconClose, Jt as IconComment, Qt as IconCommentActive, nn as IconCommentStatic, sn as IconCommonFileEmpty, dn as IconCommonFileWarning, hn as IconContactPerson, yn as IconCopy, Cn as IconDelete, Dn as IconDoubleCheck, jn as IconDownloadImage, Fn as IconEdit, zn as IconEndCall, Un as IconError, qn as IconExternal, Zn as IconEyeShow, tr as IconEyeSlash, ar as IconFile, lr as IconFileAdded, pr as IconForward, _r as IconHix, xr as IconHyperlink, Tr as IconImageFileLandscape, kr as IconImageFileWarning, Nr as IconInbox, Lr as IconInfo, Vr as IconInformationCircle, Gr as IconItalic, Yr as IconListView, $r as IconLock, ri as IconLusciiEscalated, si as IconLusciiLogo, di as IconLusciiOpen, hi as IconLusciiPriorityHigh, yi as IconLusciiPriorityLow, Ci as IconLusciiPriorityMedium, Di as IconMenu, ji as IconMessage, Fi as IconMessageForward, Ri as IconMicrophoneSlash, Hi as IconMicrosoftTeams, Ki as IconMin, Xi as IconOrderedList, ea as IconPlus, ia as IconRefresh, ca as IconRemove, pa as IconSananetLogo, _a as IconService, xa as IconShareScreen, Ta as IconSingleNeutral, ka as IconSort, Na as IconSortAsc, La as IconSortDesc, Va as IconSortNone, Ga as IconTriangleDown, Ya as IconTriangleExclamation, $a as IconUnderline, oo as IconVideoDisabled, ro as IconVideocall, uo as IconWarning, ho as IconZorgkaart, TP as MapAttachmentsForApi, jP as MapToAttachmentObjects, kq as TransformHyperlinks, jq as ValidateUrl, Mq as default, b_ as getDisplayDateNumeric, __ as getDisplayDateTextual, y_ as getDisplayDateTimeNumeric, v_ as getDisplayDateTimeTextual, PW as useModal, hW as usePopover, LW as useServerErrors, UW as useSessionTimeOut, FW as useToaster, pq as useValidation, pW as useWindow, QK as useZoom, dU as vBdTooltip };
|