bhl-forms 0.0.15 → 0.0.16

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.
@@ -10712,64 +10712,64 @@ const fireStepEvent = (formNode) => (stepResult, stepHistory2, stepQueue2) => {
10712
10712
  }
10713
10713
  };
10714
10714
  const textClassification = {
10715
- label: "block mb-1 font-bold text-sm formkit-invalid:text-red-500",
10715
+ label: "t-block t-mb-1 t-font-bold t-text-sm formkit-invalid:t-text-red-500",
10716
10716
  inner: `
10717
- max-w-lg
10718
- border
10719
- border-gray-400
10720
- formkit-invalid:border-red-500
10721
- rounded-lg mb-1
10722
- overflow-hidden
10723
- focus-within:border-blue-500
10717
+ t-max-w-lg
10718
+ t-border
10719
+ t-border-gray-400
10720
+ formkit-invalid:t-border-red-500
10721
+ t-rounded-lg t-mb-1
10722
+ t-overflow-hidden
10723
+ focus-within:t-border-blue-500
10724
10724
  `,
10725
- input: "w-full h-10 px-3 border-none text-base text-gray-700 placeholder-gray-400"
10725
+ input: "t-w-full t-h-10 t-px-3 t-border-none t-text-base t-text-gray-700 t-placeholder-gray-400"
10726
10726
  };
10727
10727
  const boxClassification = {
10728
- fieldset: "max-w-md border border-gray-400 rounded-md px-2 pb-1",
10729
- legend: "font-bold text-sm",
10730
- wrapper: "flex items-center mb-1 cursor-pointer",
10731
- help: "mb-2",
10732
- input: "form-check-input appearance-none h-5 w-5 mr-2 border border-gray-500 rounded-sm bg-white checked:bg-blue-500 focus:outline-none focus:ring-0 transition duration-100",
10733
- label: "text-sm text-gray-700"
10728
+ fieldset: "t-max-w-md t-border t-border-gray-400 t-rounded-md t-px-2 t-pb-1",
10729
+ legend: "t-font-bold t-text-sm",
10730
+ wrapper: "t-flex t-items-center t-mb-1 t-cursor-pointer",
10731
+ help: "t-mb-2",
10732
+ input: "t-form-check-input t-appearance-none t-h-5 t-w-5 t-mr-2 t-border t-border-gray-500 t-rounded-sm t-bg-white checked:t-bg-blue-500 focus:t-outline-none focus:t-ring-0 t-transition t-duration-100",
10733
+ label: "t-text-sm t-text-gray-700"
10734
10734
  };
10735
10735
  const buttonClassification = {
10736
- wrapper: "mb-1",
10737
- input: "bg-red-500 hover:bg-blue-700 text-white text-lg font-normal py-4 px-10 rounded",
10738
- outer: "mb-0"
10736
+ wrapper: "t-mb-1",
10737
+ input: "t-bg-red-500 hover:t-bg-blue-700 t-text-white t-text-lg t-font-normal t-py-4 t-px-10 t-rounded",
10738
+ outer: "t-mb-0"
10739
10739
  };
10740
10740
  var theme = {
10741
10741
  global: {
10742
- outer: "mb-5 formkit-disabled:opacity-50",
10743
- help: "text-xs text-gray-500",
10744
- messages: "list-none p-0 mt-1 mb-0",
10745
- message: "text-red-500 mb-1 text-xs"
10742
+ outer: "t-mb-5 formkit-disabled:t-opacity-50",
10743
+ help: "t-text-xs t-text-gray-500",
10744
+ messages: "t-list-none t-p-0 t-mt-1 t-mb-0",
10745
+ message: "t-text-red-500 t-mb-1 t-text-xs"
10746
10746
  },
10747
10747
  button: buttonClassification,
10748
10748
  color: {
10749
- label: "block mb-1 font-bold text-sm",
10750
- input: "w-16 h-8 appearance-none cursor-pointer border border-gray-300 rounded-md mb-2 p-1"
10749
+ label: "t-block t-mb-1 t-font-bold t-text-sm",
10750
+ input: "t-w-16 t-h-8 t-appearance-none t-cursor-pointer t-border t-border-gray-300 t-rounded-md t-mb-2 t-p-1"
10751
10751
  },
10752
10752
  date: textClassification,
10753
10753
  "datetime-local": textClassification,
10754
10754
  checkbox: boxClassification,
10755
10755
  email: textClassification,
10756
10756
  file: {
10757
- label: "block mb-1 font-bold text-sm",
10758
- inner: "max-w-md cursor-pointer",
10759
- input: "text-gray-600 text-sm mb-1 file:mr-4 file:py-2 file:px-4 file:rounded-full file:border-0 file:text-sm file:bg-blue-500 file:text-white hover:file:bg-blue-600",
10760
- noFiles: "block text-gray-800 text-sm mb-1",
10761
- fileItem: "block flex text-gray-800 text-sm mb-1",
10762
- removeFiles: "ml-auto text-blue-500 text-sm"
10757
+ label: "t-block t-mb-1 t-font-bold t-text-sm",
10758
+ inner: "t-max-w-md t-cursor-pointer",
10759
+ input: "t-text-gray-600 t-text-sm t-mb-1 file:t-mr-4 file:t-py-2 file:t-px-4 file:t-rounded-full file:t-border-0 file:t-text-sm file:t-bg-blue-500 file:t-text-white hover:file:t-bg-blue-600",
10760
+ noFiles: "t-block t-text-gray-800 t-text-sm t-mb-1",
10761
+ fileItem: "t-block t-flex t-text-gray-800 t-text-sm mb-1",
10762
+ removeFiles: "t-ml-auto t-text-blue-500 t-text-sm"
10763
10763
  },
10764
10764
  month: textClassification,
10765
10765
  number: textClassification,
10766
10766
  password: textClassification,
10767
10767
  radio: __spreadProps(__spreadValues({}, boxClassification), {
10768
- input: boxClassification.input.replace("rounded-sm", "rounded-full")
10768
+ input: boxClassification.input.replace("t-rounded-sm", "t-rounded-full")
10769
10769
  }),
10770
10770
  range: {
10771
- inner: "max-w-md",
10772
- input: "form-range appearance-none w-full h-2 p-0 bg-gray-200 rounded-full focus:outline-none focus:ring-0 focus:shadow-none"
10771
+ inner: "t-max-w-md",
10772
+ input: "t-form-range t-appearance-none t-w-full t-h-2 t-p-0 t-bg-gray-200 t-rounded-full focus:t-outline-none focus:t-ring-0 focus:t-shadow-none"
10773
10773
  },
10774
10774
  search: textClassification,
10775
10775
  select: textClassification,
@@ -10777,7 +10777,7 @@ var theme = {
10777
10777
  tel: textClassification,
10778
10778
  text: textClassification,
10779
10779
  textarea: __spreadProps(__spreadValues({}, textClassification), {
10780
- input: "block w-full h-32 px-3 pt-1 border-none text-base text-gray-700 placeholder-gray-400 placeholder:text-sm focus:shadow-outline"
10780
+ input: "t-block t-w-full t-h-32 t-px-3 t-pt-1 t-border-none t-text-base t-text-gray-700 t-placeholder-gray-400 placeholder:t-text-sm focus:t-shadow-outline"
10781
10781
  }),
10782
10782
  time: textClassification,
10783
10783
  url: textClassification,