@axdspub/axiom-ui-forms 0.3.5 → 0.3.7

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.
Files changed (34) hide show
  1. package/library/axiom-ui-forms.d.ts +3 -1
  2. package/library/esm/_virtual/index10.js +2 -2
  3. package/library/esm/_virtual/index11.js +2 -2
  4. package/library/esm/_virtual/index12.js +2 -2
  5. package/library/esm/_virtual/index3.js +2 -2
  6. package/library/esm/_virtual/index5.js +2 -2
  7. package/library/esm/node_modules/@radix-ui/react-icons/dist/react-icons.esm.js +23 -1
  8. package/library/esm/node_modules/@radix-ui/react-icons/dist/react-icons.esm.js.map +1 -1
  9. package/library/esm/node_modules/ajv/dist/compile/codegen/index.js +1 -1
  10. package/library/esm/node_modules/ajv/dist/compile/validate/index.js +1 -1
  11. package/library/esm/node_modules/ajv/dist/vocabularies/applicator/index.js +1 -1
  12. package/library/esm/node_modules/ajv/dist/vocabularies/core/index.js +1 -1
  13. package/library/esm/node_modules/ajv/dist/vocabularies/validation/index.js +1 -1
  14. package/library/esm/src/Form/Components/FieldCreator.js +4 -3
  15. package/library/esm/src/Form/Components/FieldCreator.js.map +1 -1
  16. package/library/esm/src/Form/Components/FieldLabel.js +44 -28
  17. package/library/esm/src/Form/Components/FieldLabel.js.map +1 -1
  18. package/library/esm/src/Form/Components/InlineMarkdown.js +10 -2
  19. package/library/esm/src/Form/Components/InlineMarkdown.js.map +1 -1
  20. package/library/esm/src/Form/Components/Inputs/Object.js +4 -3
  21. package/library/esm/src/Form/Components/Inputs/Object.js.map +1 -1
  22. package/library/esm/src/Form/Creator/FormCreator.js +2 -2
  23. package/library/esm/src/Form/Creator/FormCreator.js.map +1 -1
  24. package/library/esm/src/Form/Creator/FormHeader.js +4 -3
  25. package/library/esm/src/Form/Creator/FormHeader.js.map +1 -1
  26. package/library/esm/src/Form/Creator/Page.js +1 -1
  27. package/library/esm/src/Form/Creator/Page.js.map +1 -1
  28. package/library/esm/src/Form/Creator/Wizard.js +1 -1
  29. package/library/esm/src/Form/Creator/Wizard.js.map +1 -1
  30. package/library/esm/src/utils/manipulators.js +13 -10
  31. package/library/esm/src/utils/manipulators.js.map +1 -1
  32. package/library/esm/src/utils/schemaToFormHelpers.js +2 -2
  33. package/library/esm/src/utils/schemaToFormHelpers.js.map +1 -1
  34. package/package.json +1 -1
@@ -362,6 +362,7 @@ declare namespace getters {
362
362
  export { getters_getChildFields as getChildFields, getters_getFieldValue as getFieldValue, getters_getFields as getFields, getters_getFieldsFromFormSection as getFieldsFromFormSection, getters_getPathFromField as getPathFromField, getters_getValueFromPath as getValueFromPath, getters_getValueFromRelativePath as getValueFromRelativePath, getters_makeJsonPath as makeJsonPath };
363
363
  }
364
364
 
365
+ declare const cloneObject: (object: any) => any;
365
366
  declare const addFieldPath: (field: IFormField, parentPath?: IFormField[]) => IFormField;
366
367
  declare function copyAndAddPathToFields(formOrContainer: IFormSection | IForm): IForm;
367
368
  declare function copyAndRemovePathFromFields(formOrContainer: IFormSection | IForm): IForm;
@@ -383,13 +384,14 @@ declare const manipulators_assignDefaultValuesToFormValues: typeof assignDefault
383
384
  declare const manipulators_cleanAndUpdateFormValuesWithFieldValue: typeof cleanAndUpdateFormValuesWithFieldValue;
384
385
  declare const manipulators_cleanFormValuesLevel: typeof cleanFormValuesLevel;
385
386
  declare const manipulators_cleanUnusedDependenciesFromFormValues: typeof cleanUnusedDependenciesFromFormValues;
387
+ declare const manipulators_cloneObject: typeof cloneObject;
386
388
  declare const manipulators_copyAndAddPathToFields: typeof copyAndAddPathToFields;
387
389
  declare const manipulators_copyAndRemovePathFromFields: typeof copyAndRemovePathFromFields;
388
390
  declare const manipulators_createOneOfMultipleField: typeof createOneOfMultipleField;
389
391
  declare const manipulators_updateFormValuesWithFieldValue: typeof updateFormValuesWithFieldValue;
390
392
  declare const manipulators_updateFormValuesWithFieldValueInPlace: typeof updateFormValuesWithFieldValueInPlace;
391
393
  declare namespace manipulators {
392
- export { manipulators_addFieldPath as addFieldPath, manipulators_assignDefaultValuesToFormValues as assignDefaultValuesToFormValues, manipulators_cleanAndUpdateFormValuesWithFieldValue as cleanAndUpdateFormValuesWithFieldValue, manipulators_cleanFormValuesLevel as cleanFormValuesLevel, manipulators_cleanUnusedDependenciesFromFormValues as cleanUnusedDependenciesFromFormValues, manipulators_copyAndAddPathToFields as copyAndAddPathToFields, manipulators_copyAndRemovePathFromFields as copyAndRemovePathFromFields, manipulators_createOneOfMultipleField as createOneOfMultipleField, manipulators_updateFormValuesWithFieldValue as updateFormValuesWithFieldValue, manipulators_updateFormValuesWithFieldValueInPlace as updateFormValuesWithFieldValueInPlace };
394
+ export { manipulators_addFieldPath as addFieldPath, manipulators_assignDefaultValuesToFormValues as assignDefaultValuesToFormValues, manipulators_cleanAndUpdateFormValuesWithFieldValue as cleanAndUpdateFormValuesWithFieldValue, manipulators_cleanFormValuesLevel as cleanFormValuesLevel, manipulators_cleanUnusedDependenciesFromFormValues as cleanUnusedDependenciesFromFormValues, manipulators_cloneObject as cloneObject, manipulators_copyAndAddPathToFields as copyAndAddPathToFields, manipulators_copyAndRemovePathFromFields as copyAndRemovePathFromFields, manipulators_createOneOfMultipleField as createOneOfMultipleField, manipulators_updateFormValuesWithFieldValue as updateFormValuesWithFieldValue, manipulators_updateFormValuesWithFieldValueInPlace as updateFormValuesWithFieldValueInPlace };
393
395
  }
394
396
 
395
397
  interface IFormCreatorProps {
@@ -1,4 +1,4 @@
1
- var core = {};
1
+ var validation = {};
2
2
 
3
- export { core as __exports };
3
+ export { validation as __exports };
4
4
  //# sourceMappingURL=index10.js.map
@@ -1,4 +1,4 @@
1
- var validation = {};
1
+ var applicator = {};
2
2
 
3
- export { validation as __exports };
3
+ export { applicator as __exports };
4
4
  //# sourceMappingURL=index11.js.map
@@ -1,4 +1,4 @@
1
- var applicator = {};
1
+ var core = {};
2
2
 
3
- export { applicator as __exports };
3
+ export { core as __exports };
4
4
  //# sourceMappingURL=index12.js.map
@@ -1,4 +1,4 @@
1
- var validate = {};
1
+ var codegen = {};
2
2
 
3
- export { validate as __exports };
3
+ export { codegen as __exports };
4
4
  //# sourceMappingURL=index3.js.map
@@ -1,4 +1,4 @@
1
- var codegen = {};
1
+ var validate = {};
2
2
 
3
- export { codegen as __exports };
3
+ export { validate as __exports };
4
4
  //# sourceMappingURL=index5.js.map
@@ -262,6 +262,28 @@ var InfoCircledIcon = /*#__PURE__*/forwardRef(function (_ref, forwardedRef) {
262
262
  }));
263
263
  });
264
264
 
265
+ var _excluded$3i = ["color"];
266
+ var OpenInNewWindowIcon = /*#__PURE__*/forwardRef(function (_ref, forwardedRef) {
267
+ var _ref$color = _ref.color,
268
+ color = _ref$color === void 0 ? 'currentColor' : _ref$color,
269
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$3i);
270
+
271
+ return createElement("svg", Object.assign({
272
+ width: "15",
273
+ height: "15",
274
+ viewBox: "0 0 15 15",
275
+ fill: "none",
276
+ xmlns: "http://www.w3.org/2000/svg"
277
+ }, props, {
278
+ ref: forwardedRef
279
+ }), createElement("path", {
280
+ fillRule: "evenodd",
281
+ clipRule: "evenodd",
282
+ d: "M12 13C12.5523 13 13 12.5523 13 12V3C13 2.44771 12.5523 2 12 2H3C2.44771 2 2 2.44771 2 3V6.5C2 6.77614 2.22386 7 2.5 7C2.77614 7 3 6.77614 3 6.5V3H12V12H8.5C8.22386 12 8 12.2239 8 12.5C8 12.7761 8.22386 13 8.5 13H12ZM9 6.5C9 6.5001 9 6.50021 9 6.50031V6.50035V9.5C9 9.77614 8.77614 10 8.5 10C8.22386 10 8 9.77614 8 9.5V7.70711L2.85355 12.8536C2.65829 13.0488 2.34171 13.0488 2.14645 12.8536C1.95118 12.6583 1.95118 12.3417 2.14645 12.1464L7.29289 7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H8.5C8.56779 6 8.63244 6.01349 8.69139 6.03794C8.74949 6.06198 8.80398 6.09744 8.85143 6.14433C8.94251 6.23434 8.9992 6.35909 8.99999 6.49708L8.99999 6.49738",
283
+ fill: color
284
+ }));
285
+ });
286
+
265
287
  var _excluded$3n = ["color"];
266
288
  var Pencil1Icon = /*#__PURE__*/forwardRef(function (_ref, forwardedRef) {
267
289
  var _ref$color = _ref.color,
@@ -394,5 +416,5 @@ var UpdateIcon = /*#__PURE__*/forwardRef(function (_ref, forwardedRef) {
394
416
  }));
395
417
  });
396
418
 
397
- export { BorderSolidIcon, CaretLeftIcon, CaretRightIcon, CheckIcon, CopyIcon, Cross1Icon, Cross2Icon, DrawingPinFilledIcon, DropdownMenuIcon, ExclamationTriangleIcon, InfoCircledIcon, Pencil1Icon, PlusIcon, ReloadIcon, SquareIcon, TrashIcon, UpdateIcon };
419
+ export { BorderSolidIcon, CaretLeftIcon, CaretRightIcon, CheckIcon, CopyIcon, Cross1Icon, Cross2Icon, DrawingPinFilledIcon, DropdownMenuIcon, ExclamationTriangleIcon, InfoCircledIcon, OpenInNewWindowIcon, Pencil1Icon, PlusIcon, ReloadIcon, SquareIcon, TrashIcon, UpdateIcon };
398
420
  //# sourceMappingURL=react-icons.esm.js.map