bhl-forms 0.0.81 → 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 +60 -6
- 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 +6 -6
- 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
package/dist/bhl-forms.es.js
CHANGED
|
@@ -11404,7 +11404,7 @@ const checkBoxClassification = {
|
|
|
11404
11404
|
};
|
|
11405
11405
|
const buttonClassification = {
|
|
11406
11406
|
wrapper: "t-mb-1",
|
|
11407
|
-
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-
|
|
11407
|
+
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",
|
|
11408
11408
|
outer: "!t-mb-2 t-mt-4"
|
|
11409
11409
|
};
|
|
11410
11410
|
var theme = {
|
|
@@ -15710,12 +15710,21 @@ const _sfc_main = {
|
|
|
15710
15710
|
},
|
|
15711
15711
|
setup(__props) {
|
|
15712
15712
|
const props2 = __props;
|
|
15713
|
-
const picked = ref();
|
|
15714
|
-
|
|
15713
|
+
const picked = ref(new Date());
|
|
15714
|
+
const updateNodeValue = (newValue) => {
|
|
15715
15715
|
const offset = newValue.getTimezoneOffset();
|
|
15716
15716
|
newValue = new Date(newValue.getTime() - offset * 60 * 1e3);
|
|
15717
15717
|
newValue = newValue.toISOString().split("T")[0];
|
|
15718
15718
|
props2.context.node.input(newValue);
|
|
15719
|
+
};
|
|
15720
|
+
onMounted(() => {
|
|
15721
|
+
if (!picked.value) {
|
|
15722
|
+
return;
|
|
15723
|
+
}
|
|
15724
|
+
updateNodeValue(picked.value);
|
|
15725
|
+
});
|
|
15726
|
+
watch$1(picked, (newValue, oldValue) => {
|
|
15727
|
+
updateNodeValue(newValue);
|
|
15719
15728
|
});
|
|
15720
15729
|
return (_ctx, _cache) => {
|
|
15721
15730
|
return openBlock(), createBlock(unref(script), {
|