@ioca/react 1.1.8 → 1.1.9

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.
@@ -79,7 +79,7 @@ interface CompositionButton extends ForwardRefExoticComponent<IButton & RefAttri
79
79
 
80
80
  declare const _default$3: CompositionButton;
81
81
 
82
- interface ICard {
82
+ interface ICard extends HTMLAttributes<HTMLDivElement> {
83
83
  hideShadow?: boolean;
84
84
  border?: boolean;
85
85
  style?: CSSProperties;
@@ -337,6 +337,7 @@ interface IForm extends HTMLAttributes<HTMLFormElement> {
337
337
  };
338
338
  initialValues?: Record<string, any>;
339
339
  width?: string | number;
340
+ gap?: string | number;
340
341
  onEnter?: (values: Record<string, any>, form: IFormInstance) => void;
341
342
  }
342
343
  interface IField {
@@ -749,6 +750,7 @@ interface ITabs {
749
750
  bar?: boolean;
750
751
  barClass?: string;
751
752
  toggable?: boolean;
753
+ navsJustify?: "start" | "center" | "end";
752
754
  className?: string;
753
755
  children?: ReactNode;
754
756
  style?: CSSProperties;
@@ -773,6 +775,7 @@ interface ITag extends HTMLAttributes<HTMLSpanElement> {
773
775
  outline?: boolean;
774
776
  round?: boolean;
775
777
  size?: "small" | "normal" | "large" | "extreme";
778
+ hoverShowClose?: boolean;
776
779
  onClick?: (e: MouseEvent) => void;
777
780
  onClose?: (e: MouseEvent) => void;
778
781
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ioca/react",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",