bhl-forms 0.0.82 → 0.0.83
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/bhl-forms.es.js +12 -3
- package/dist/bhl-forms.iife.js +6 -6
- package/dist/bhl-forms.modern.es.js +12 -3
- package/dist/bhl-forms.modern.iife.js +9 -9
- package/dist/bhl-forms.modern.umd.js +9 -9
- package/dist/bhl-forms.umd.js +6 -6
- package/dist/forms/childAndFamily.es.js +4 -4
- package/dist/forms/childAndFamily.iife.js +1 -1
- package/dist/forms/childAndFamily.json +1 -1
- package/dist/forms/civilLawsuit.es.js +6 -6
- package/dist/forms/civilLawsuit.iife.js +1 -1
- package/dist/forms/civilLawsuit.json +1 -1
- package/dist/forms/criminal.es.js +6 -6
- package/dist/forms/criminal.iife.js +1 -1
- package/dist/forms/criminal.json +1 -1
- package/dist/forms/generalLegal.es.js +6 -6
- package/dist/forms/generalLegal.iife.js +1 -1
- package/dist/forms/generalLegal.json +1 -1
- package/dist/forms/generalLegalPopUnder.es.js +9 -84
- package/dist/forms/generalLegalPopUnder.iife.js +1 -1
- package/dist/forms/generalLegalPopUnder.json +1 -1
- package/dist/forms/{generalLegalBankruptcy.es.js → generalLegalPopUnderTF.es.js} +86 -10
- package/dist/forms/generalLegalPopUnderTF.iife.js +1 -0
- package/dist/forms/generalLegalPopUnderTF.json +1 -0
- package/dist/forms/realEstate.es.js +6 -6
- package/dist/forms/realEstate.iife.js +1 -1
- package/dist/forms/realEstate.json +1 -1
- package/dist/forms/testForm.es.js +1 -1
- package/dist/forms/testForm.iife.js +1 -1
- package/dist/forms/testForm.json +1 -1
- package/dist/main.css +1 -1
- package/package.json +1 -1
- package/dist/forms/generalLegalBankruptcy.iife.js +0 -1
- package/dist/forms/generalLegalBankruptcy.json +0 -1
|
@@ -18188,7 +18188,7 @@ var checkBoxClassification = {
|
|
|
18188
18188
|
};
|
|
18189
18189
|
var buttonClassification = {
|
|
18190
18190
|
wrapper: "t-mb-1",
|
|
18191
|
-
input: "t-bg-red-500 hover:t-bg-red-600 t-text-white t-text-xl t-font-normal t-py-4 t-px-9 sm:t-px-
|
|
18191
|
+
input: "t-bg-red-500 hover:t-bg-red-600 t-text-white t-text-xl t-font-normal t-py-4 t-px-9 sm:t-px-11 t-rounded",
|
|
18192
18192
|
outer: "!t-mb-2 t-mt-4"
|
|
18193
18193
|
};
|
|
18194
18194
|
var theme = {
|
|
@@ -22479,12 +22479,21 @@ const _sfc_main = {
|
|
|
22479
22479
|
},
|
|
22480
22480
|
setup(__props) {
|
|
22481
22481
|
const props2 = __props;
|
|
22482
|
-
const picked = ref();
|
|
22483
|
-
|
|
22482
|
+
const picked = ref(new Date());
|
|
22483
|
+
const updateNodeValue = (newValue) => {
|
|
22484
22484
|
const offset = newValue.getTimezoneOffset();
|
|
22485
22485
|
newValue = new Date(newValue.getTime() - offset * 60 * 1e3);
|
|
22486
22486
|
newValue = newValue.toISOString().split("T")[0];
|
|
22487
22487
|
props2.context.node.input(newValue);
|
|
22488
|
+
};
|
|
22489
|
+
onMounted(() => {
|
|
22490
|
+
if (!picked.value) {
|
|
22491
|
+
return;
|
|
22492
|
+
}
|
|
22493
|
+
updateNodeValue(picked.value);
|
|
22494
|
+
});
|
|
22495
|
+
watch$1(picked, (newValue, oldValue) => {
|
|
22496
|
+
updateNodeValue(newValue);
|
|
22488
22497
|
});
|
|
22489
22498
|
return (_ctx, _cache) => {
|
|
22490
22499
|
return openBlock(), createBlock(unref(script), {
|