@trackunit/react-table-base-components 0.0.263 → 0.0.266

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/index.cjs.js CHANGED
@@ -74,7 +74,12 @@ function __rest(s, e) {
74
74
  t[p[i]] = s[p[i]];
75
75
  }
76
76
  return t;
77
- }
77
+ }
78
+
79
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
80
+ var e = new Error(message);
81
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
82
+ };
78
83
 
79
84
  /**
80
85
  * The `<ImageCell>` component is used for displaying images in a table cell.
package/index.esm.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "./src/index";
package/index.esm.js CHANGED
@@ -70,7 +70,12 @@ function __rest(s, e) {
70
70
  t[p[i]] = s[p[i]];
71
71
  }
72
72
  return t;
73
- }
73
+ }
74
+
75
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
76
+ var e = new Error(message);
77
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
78
+ };
74
79
 
75
80
  /**
76
81
  * The `<ImageCell>` component is used for displaying images in a table cell.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-table-base-components",
3
- "version": "0.0.263",
3
+ "version": "0.0.266",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { TableRoot } from "./components/TableRoot";
3
4
  type Story = StoryObj<typeof TableRoot>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { CheckboxCell } from "./CheckboxCell";
3
4
  import "./CheckboxCell.variants";
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { DateTimeCell } from "./DateTimeCell";
3
4
  import "./DateTimeCell.variants";
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  type Story = StoryObj<typeof Image>;
3
4
  declare const meta: Meta<typeof Image>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { IndicatorCell } from "./IndicatorCell";
3
4
  type Story = StoryObj<typeof IndicatorCell>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { LinkCell } from "./LinkCell";
3
4
  type Story = StoryObj<typeof LinkCell>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { MultiValueTextCell } from "./MultiValueTextCell";
3
4
  import "./MultiValueTextCell.variants";
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { NoticeCell } from "./NoticeCell";
3
4
  type Story = StoryObj<typeof NoticeCell>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { NumberCell } from "./NumberCell";
3
4
  import "./NumberCell.variants";
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { SortIndicator } from "./SortIndicator";
3
4
  type Story = StoryObj<typeof SortIndicator>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { TagsCell } from "./TagsCell";
3
4
  type Story = StoryObj<typeof TagsCell>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta, StoryObj } from "@storybook/react";
2
3
  import { TextCell } from "./TextCell";
3
4
  import "./TextCell.variants";