Skip to content

Commit

Permalink
[Official] - Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaSetyadi committed Jun 6, 2022
1 parent 2d7a9ab commit 21bb4a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "form-gear",
"version": "0.1.3",
"version": "1.0.0",
"description": "FormGear is a framework engine for dynamic form creation and complex form processing and validation for data collection.",
"info": "It is easy to use and efficiently handle nested inquiries to capture everything down to the last detail. Unlike other similar framework, validation is handled in a FALSE condition in which each field is validated against a test equation. This leads to a more efficient and effective way to validate each component.",
"homepage": "https://solid-form-gear.vercel.app/",
Expand Down
6 changes: 3 additions & 3 deletions src/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Form: Component<{
if(componentIndex !== -1 && (reference.details[componentIndex].answer) && (reference.details[componentIndex].enable)) answer = reference.details[componentIndex].answer;
return answer;
}
const [renderGear, setRenderGear] = createSignal('FormGear-0.1.4 🚀:');
const [renderGear, setRenderGear] = createSignal('FormGear-1.0.0 🚀:');

const [prop, setProp] = createSignal(getProp(''));
const [config, setConfig] = createSignal(getConfig());
Expand Down Expand Up @@ -202,7 +202,7 @@ const Form: Component<{
setNote('details','notes',updatedNote);
}
})
setRenderGear('FormGear-0.1.4 ♻️:')
setRenderGear('FormGear-1.0.0 ♻️:')
}
// console.timeEnd('response ');
// console.timeEnd('');
Expand Down Expand Up @@ -858,7 +858,7 @@ const Form: Component<{
sidebar-span absolute inset-y-0 left-0 transform -translate-x-full transition-transform duration-500 ease-in-out md:relative md:translate-x-0 z-10">
<div class=" text-gray-400 tracking-wider flex justify-between ">
<div class="text-lg block p-4 text-gray-600 dark:text-white font-bold sm:text-xl" innerHTML={ props.template.details.acronym
+ '<div class="text-xs font-light text-gray-600 ">🚀0.1.4 📋'+ template.details.version + ' ✔️'+ validation.details.version + ' </div> '} />
+ '<div class="text-xs font-light text-gray-600 ">🚀1.0.0 📋'+ template.details.version + ' ✔️'+ validation.details.version + ' </div> '} />

<button type="button"
class="md:hidden p-2 mobile-menu-button " onClick={sidebarCollapse}>
Expand Down
2 changes: 1 addition & 1 deletion src/FormGear.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { toastInfo } from "./FormInput";

export function FormGear(referenceFetch, templateFetch, presetFetch, responseFetch, validationFetch, remarkFetch, config, uploadHandler, GpsHandler, offlineSearch, onlineSearch, mobileExit, setResponseMobile, setSubmitMobile, openMap) {

console.log('form-gear@0.1.3');
console.log('form-gear@1.0.0');
// console.time('FormGear renders successfully in ');
let timeStart = new Date();
let stuff = {"reference" : referenceFetch, "template" : templateFetch, "preset" : presetFetch, "response" : responseFetch, "validation" : validationFetch, "remark" : remarkFetch};
Expand Down

0 comments on commit 21bb4a7

Please sign in to comment.