@trackunit/react-table-base-components 1.4.58 → 1.4.62
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.
- package/package.json +9 -9
- package/src/BaseTable.stories.d.ts +1 -1
- package/src/components/ButtonCell/ButtonCell.stories.d.ts +1 -1
- package/src/components/CheckboxCell/CheckboxCell.stories.d.ts +1 -1
- package/src/components/DateTimeCell/DateTimeCell.stories.d.ts +1 -1
- package/src/components/IdentityCell/IdentityCell.stories.d.ts +1 -1
- package/src/components/ImageCell/ImageCell.stories.d.ts +1 -1
- package/src/components/IndicatorCell/IndicatorCell.stories.d.ts +1 -1
- package/src/components/LinkCell/LinkCell.stories.d.ts +1 -1
- package/src/components/MultiRowTableCell/MultiRowTableCell.stories.d.ts +1 -1
- package/src/components/MultiValueTextCell/MultiValueTextCell.stories.d.ts +1 -1
- package/src/components/NoticeCell/NoticeCell.stories.d.ts +1 -1
- package/src/components/NumberCell/NumberCell.stories.d.ts +1 -1
- package/src/components/PlainDateCell/PlainDateCell.stories.d.ts +1 -1
- package/src/components/RowActions/RowActions.stories.d.ts +6 -5
- package/src/components/SortIndicator.stories.d.ts +1 -1
- package/src/components/TagsCell/TagsCell.stories.d.ts +1 -1
- package/src/components/TextCell/TextCell.stories.d.ts +1 -1
- package/index.esm.d.ts +0 -1
- /package/{index.cjs.d.ts → index.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-table-base-components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.62",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"react": "19.0.0",
|
|
11
11
|
"@js-temporal/polyfill": "^0.4.4",
|
|
12
|
-
"@trackunit/react-components": "1.5.
|
|
13
|
-
"@trackunit/ui-icons": "1.4.
|
|
14
|
-
"@trackunit/react-form-components": "1.4.
|
|
15
|
-
"@trackunit/css-class-variance-utilities": "1.4.
|
|
16
|
-
"@trackunit/date-and-time-utils": "1.4.
|
|
17
|
-
"@trackunit/shared-utils": "1.6.
|
|
18
|
-
"@trackunit/react-test-setup": "1.1.
|
|
12
|
+
"@trackunit/react-components": "1.5.55",
|
|
13
|
+
"@trackunit/ui-icons": "1.4.37",
|
|
14
|
+
"@trackunit/react-form-components": "1.4.62",
|
|
15
|
+
"@trackunit/css-class-variance-utilities": "1.4.37",
|
|
16
|
+
"@trackunit/date-and-time-utils": "1.4.37",
|
|
17
|
+
"@trackunit/shared-utils": "1.6.37",
|
|
18
|
+
"@trackunit/react-test-setup": "1.1.37"
|
|
19
19
|
},
|
|
20
20
|
"module": "./index.esm.js",
|
|
21
21
|
"main": "./index.cjs.js",
|
|
22
|
-
"types": "./index.
|
|
22
|
+
"types": "./index.d.ts"
|
|
23
23
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Meta, StoryObj } from "@storybook/react";
|
|
1
|
+
import { Meta, StoryObj } from "@storybook/react-webpack5";
|
|
2
2
|
import { MultiRowTableCell } from "./MultiRowTableCell";
|
|
3
3
|
type Story = StoryObj<typeof MultiRowTableCell>;
|
|
4
4
|
declare const meta: Meta<typeof MultiRowTableCell>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { Meta, StoryObj } from "@storybook/react";
|
|
1
|
+
import { Meta, StoryObj } from "@storybook/react-webpack5";
|
|
2
2
|
import { RowActions } from "./RowActions";
|
|
3
|
+
type Story = StoryObj<typeof RowActions>;
|
|
3
4
|
declare const meta: Meta<typeof RowActions>;
|
|
4
5
|
export default meta;
|
|
5
6
|
export declare const packageName: () => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export declare const SingleAction:
|
|
7
|
-
export declare const MultipleActions:
|
|
8
|
-
export declare const NoActions:
|
|
9
|
-
export declare const OnlyDangerActions:
|
|
7
|
+
export declare const SingleAction: Story;
|
|
8
|
+
export declare const MultipleActions: Story;
|
|
9
|
+
export declare const NoActions: Story;
|
|
10
|
+
export declare const OnlyDangerActions: Story;
|
package/index.esm.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./src/index";
|
|
File without changes
|