@trackunit/react-modal 1.6.34 → 1.6.35

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-modal",
3
- "version": "1.6.34",
3
+ "version": "1.6.35",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -8,14 +8,14 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "react": "19.0.0",
11
- "@trackunit/react-components": "1.7.33",
12
- "@trackunit/react-core-hooks": "1.6.26",
13
- "@trackunit/css-class-variance-utilities": "1.6.24",
14
- "@trackunit/i18n-library-translation": "1.6.27",
15
- "@trackunit/react-test-setup": "1.3.24",
11
+ "@trackunit/react-components": "1.7.34",
12
+ "@trackunit/react-core-hooks": "1.6.27",
13
+ "@trackunit/css-class-variance-utilities": "1.6.25",
14
+ "@trackunit/i18n-library-translation": "1.6.28",
15
+ "@trackunit/react-test-setup": "1.3.25",
16
16
  "@floating-ui/react": "^0.26.25",
17
17
  "@floating-ui/react-dom": "2.1.2",
18
- "@trackunit/ui-design-tokens": "1.6.25"
18
+ "@trackunit/ui-design-tokens": "1.6.26"
19
19
  },
20
20
  "module": "./index.esm.js",
21
21
  "main": "./index.cjs.js",
@@ -1,10 +1,10 @@
1
1
  import { Meta, StoryObj } from "@storybook/react-webpack5";
2
- import { Modal, ModalProps } from "./Modal";
2
+ import { Modal } from "./Modal";
3
3
  type Story = StoryObj<typeof Modal>;
4
4
  declare const meta: Meta<typeof Modal>;
5
5
  export default meta;
6
6
  export declare const packageName: () => import("react/jsx-runtime").JSX.Element;
7
- export declare const OverviewTemplate: (props: ModalProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const OverviewTemplate: () => import("react/jsx-runtime").JSX.Element;
8
8
  export declare const Default: Story;
9
9
  export declare const IncorrectUsageErrorModal: (closeOnOutsideClick: true) => import("react/jsx-runtime").JSX.Element;
10
10
  export declare const CorrectUsagePrimaryAction: (closeOnOutsideClick: true) => import("react/jsx-runtime").JSX.Element;
@@ -12,3 +12,4 @@ export declare const IncorrectUsageLongText: (closeOnOutsideClick: true) => impo
12
12
  export declare const CorrectUsageImportantAction: (closeOnOutsideClick: true) => import("react/jsx-runtime").JSX.Element;
13
13
  export declare const IncorrectAccessibility: (closeOnOutsideClick: false) => import("react/jsx-runtime").JSX.Element;
14
14
  export declare const CorrectAccessibility: (closeOnOutsideClick: true) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const CorrectStateManagement: () => import("react/jsx-runtime").JSX.Element;