@ioca/react 1.1.0 → 1.1.1

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.
@@ -190,6 +190,7 @@ interface IDatagrid {
190
190
  loading?: boolean;
191
191
  empty?: ReactNode;
192
192
  cellPadding?: string | number;
193
+ cellEllipsis?: boolean;
193
194
  height?: number | string;
194
195
  style?: CSSProperties;
195
196
  className?: string;
@@ -462,6 +463,7 @@ interface ILoading extends HTMLAttributes<HTMLDivElement> {
462
463
  icon?: ReactNode;
463
464
  text?: ReactNode;
464
465
  size?: number | string;
466
+ absolute?: boolean;
465
467
  }
466
468
 
467
469
  declare const Loading: (props: ILoading) => JSX.Element;
@@ -608,6 +610,7 @@ interface IStep {
608
610
  className?: string;
609
611
  line?: ReactNode;
610
612
  children?: ReactNode;
613
+ asList?: boolean;
611
614
  renderIcon?: (i: number, status: string) => ReactNode;
612
615
  onClick?: (i: number) => void;
613
616
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@ioca/react",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
7
7
  "build": "tsc && vite build",
8
8
  "preview": "vite preview",
9
9
  "make": "node templates/index.js",
10
- "lib": "tsc && npx rollup -c"
10
+ "lib": "rm -rf lib && npx rollup -c"
11
11
  },
12
12
  "dependencies": {
13
13
  "@ricons/material": "^0.12.0",