@tecof/theme-editor 0.0.21 → 0.0.22

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/index.mjs CHANGED
@@ -1029,6 +1029,7 @@ var createLanguageField = (options = {}) => {
1029
1029
  const { label, labelIcon, visible, ...fieldOptions } = options;
1030
1030
  return {
1031
1031
  type: "custom",
1032
+ _fieldType: "language",
1032
1033
  label,
1033
1034
  labelIcon,
1034
1035
  visible,
@@ -1319,6 +1320,7 @@ var createEditorField = (options = {}) => {
1319
1320
  const { label, labelIcon, visible, ...fieldOptions } = options;
1320
1321
  return {
1321
1322
  type: "custom",
1323
+ _fieldType: "editor",
1322
1324
  label,
1323
1325
  labelIcon,
1324
1326
  visible,
@@ -22839,6 +22841,7 @@ var createUploadField = (options = {}) => {
22839
22841
  const { label, labelIcon, visible, ...fieldOptions } = options;
22840
22842
  return {
22841
22843
  type: "custom",
22844
+ _fieldType: "upload",
22842
22845
  label,
22843
22846
  labelIcon,
22844
22847
  visible,
@@ -23533,6 +23536,7 @@ var createCodeEditorField = (options = {}) => {
23533
23536
  const { label, labelIcon, visible, ...fieldOptions } = options;
23534
23537
  return {
23535
23538
  type: "custom",
23539
+ _fieldType: "code",
23536
23540
  label,
23537
23541
  labelIcon,
23538
23542
  visible,
@@ -23775,6 +23779,7 @@ var createLinkField = (options = {}) => {
23775
23779
  const { label, labelIcon, visible, ...fieldOptions } = options;
23776
23780
  return {
23777
23781
  type: "custom",
23782
+ _fieldType: "link",
23778
23783
  label,
23779
23784
  labelIcon,
23780
23785
  visible,
@@ -23955,6 +23960,7 @@ var createColorField = (options = {}) => {
23955
23960
  const { label, labelIcon, visible, ...fieldOptions } = options;
23956
23961
  return {
23957
23962
  type: "custom",
23963
+ _fieldType: "color",
23958
23964
  label,
23959
23965
  labelIcon,
23960
23966
  visible,