@itcase/forms 1.1.29 → 1.1.30

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.
@@ -2704,6 +2704,7 @@ const FinalForm = /*#__PURE__*/React__default.default.forwardRef(function FinalF
2704
2704
  notificationCloseButton,
2705
2705
  notificationType,
2706
2706
  renderFieldsWrapper = wrapperChildren => wrapperChildren,
2707
+ shapeStrengthClass,
2707
2708
  before,
2708
2709
  after,
2709
2710
  isLoading,
@@ -2737,7 +2738,7 @@ const FinalForm = /*#__PURE__*/React__default.default.forwardRef(function FinalF
2737
2738
  modifiedSinceLastSubmit
2738
2739
  }) => {
2739
2740
  return /*#__PURE__*/React__default.default.createElement("form", {
2740
- className: clsx__default.default(className, 'form', type && `form_type_${type}`, buttonPosition && `form_button-position_${buttonPosition}`, directionClass, fillClass, shapeClass, elevationClass),
2741
+ className: clsx__default.default(className, 'form', type && `form_type_${type}`, buttonPosition && `form_button-position_${buttonPosition}`, directionClass && `direction_${directionClass}`, fillClass && `fill_${fillClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, elevationClass && `elevation_${elevationClass}`),
2741
2742
  name: formName
2742
2743
  // We no need set reference to html element, we need reference to "final-form" instance
2743
2744
  ,
@@ -2693,6 +2693,7 @@ const FinalForm = /*#__PURE__*/React.forwardRef(function FinalForm(props, ref) {
2693
2693
  notificationCloseButton,
2694
2694
  notificationType,
2695
2695
  renderFieldsWrapper = wrapperChildren => wrapperChildren,
2696
+ shapeStrengthClass,
2696
2697
  before,
2697
2698
  after,
2698
2699
  isLoading,
@@ -2726,7 +2727,7 @@ const FinalForm = /*#__PURE__*/React.forwardRef(function FinalForm(props, ref) {
2726
2727
  modifiedSinceLastSubmit
2727
2728
  }) => {
2728
2729
  return /*#__PURE__*/React.createElement("form", {
2729
- className: clsx(className, 'form', type && `form_type_${type}`, buttonPosition && `form_button-position_${buttonPosition}`, directionClass, fillClass, shapeClass, elevationClass),
2730
+ className: clsx(className, 'form', type && `form_type_${type}`, buttonPosition && `form_button-position_${buttonPosition}`, directionClass && `direction_${directionClass}`, fillClass && `fill_${fillClass}`, shapeClass && `shape_${shapeClass}`, shapeStrengthClass && `shape-strength_${shapeStrengthClass}`, elevationClass && `elevation_${elevationClass}`),
2730
2731
  name: formName
2731
2732
  // We no need set reference to html element, we need reference to "final-form" instance
2732
2733
  ,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/forms",
3
- "version": "1.1.29",
3
+ "version": "1.1.30",
4
4
  "description": "Forms fields, inputs, etc.",
5
5
  "keywords": [],
6
6
  "license": "MIT",