@prosperitainova/mirage-ui 1.0.98 → 1.1.0

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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { InputCurrencyProps } from "./InputCurrency";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const InputNumberStories: {
@@ -10,7 +10,8 @@ export type TableProps = {
10
10
  columns: TableColumn<any>[];
11
11
  data: any[];
12
12
  dataSpacer?: number;
13
- highlightedRows?: number[];
13
+ disabledRows?: number[];
14
+ selectedRows?: number[];
14
15
  };
15
16
  declare const Table: (props: TableProps) => JSX.Element;
16
17
  export default Table;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TableProps } from "./Table";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const TableStories: {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export type ToggleProps = {
2
3
  mode: "small" | "large";
3
4
  actived?: boolean;
package/dist/index.d.ts CHANGED
@@ -259,7 +259,8 @@ type TableProps = {
259
259
  columns: TableColumn<any>[];
260
260
  data: any[];
261
261
  dataSpacer?: number;
262
- highlightedRows?: number[];
262
+ disabledRows?: number[];
263
+ selectedRows?: number[];
263
264
  };
264
265
  declare const Table: (props: TableProps) => JSX.Element;
265
266
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.0.98",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {