@trackunit/react-components 1.22.12 → 1.22.15
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 +5 -5
- package/src/components/GridAreas/types.d.ts +1 -1
- package/src/components/KPICard/KPICard.d.ts +1 -1
- package/src/components/ListItem/ListItem.d.ts +1 -1
- package/src/components/Menu/MenuItem/MenuItem.variants.d.ts +1 -1
- package/src/components/Menu/MoreMenu/MoreMenu.d.ts +1 -1
- package/src/components/PreferenceCard/PreferenceCard.d.ts +1 -1
- package/src/components/Skeleton/SkeletonBlock/SkeletonBlock.d.ts +1 -1
- package/src/components/Skeleton/SkeletonLabel/SkeletonLabel.d.ts +1 -1
- package/src/components/SkeletonLines/SkeletonLines.d.ts +1 -1
- package/src/components/ToggleGroup/ToggleGroup.d.ts +1 -1
- package/src/components/buttons/Button/Button.d.ts +1 -1
- package/src/components/buttons/IconButton/IconButton.d.ts +1 -1
- package/src/hooks/useTextSearch.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-components",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.15",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"@floating-ui/react": "^0.26.25",
|
|
14
14
|
"string-ts": "^2.0.0",
|
|
15
15
|
"tailwind-merge": "^2.0.0",
|
|
16
|
-
"@trackunit/ui-design-tokens": "1.11.
|
|
17
|
-
"@trackunit/css-class-variance-utilities": "1.11.
|
|
18
|
-
"@trackunit/shared-utils": "1.13.
|
|
19
|
-
"@trackunit/ui-icons": "1.11.
|
|
16
|
+
"@trackunit/ui-design-tokens": "1.11.106",
|
|
17
|
+
"@trackunit/css-class-variance-utilities": "1.11.109",
|
|
18
|
+
"@trackunit/shared-utils": "1.13.109",
|
|
19
|
+
"@trackunit/ui-icons": "1.11.105",
|
|
20
20
|
"es-toolkit": "^1.39.10",
|
|
21
21
|
"@tanstack/react-virtual": "3.13.12",
|
|
22
22
|
"dequal": "^2.0.3",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
1
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
2
2
|
import { IconName } from "@trackunit/ui-icons";
|
|
3
3
|
import { MouseEventHandler, ReactElement, ReactNode } from "react";
|
|
4
4
|
import { Refable } from "../../common/Refable";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { VariantProps } from "@trackunit/css-class-variance-utilities";
|
|
2
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
2
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
3
3
|
import { tailwindPalette, ThemeColors } from "@trackunit/ui-design-tokens";
|
|
4
4
|
import { MouseEventHandler, ReactElement, ReactNode, Ref } from "react";
|
|
5
5
|
import { CommonProps } from "../../common/CommonProps";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type VariantProps } from "@trackunit/css-class-variance-utilities";
|
|
2
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
2
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
3
3
|
import { cvaInteractableItem } from "../../InteractableItem/InteractableItem.variants";
|
|
4
4
|
import { MenuItemVariant } from "./MenuItem";
|
|
5
5
|
type CvaMenuItemProps = Partial<MappedOmit<VariantProps<typeof cvaInteractableItem>, "cursor" | "focus" | "selection">> & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MakePropertyOptional, MappedOmit } from "@trackunit/shared-utils";
|
|
1
|
+
import type { MakePropertyOptional, MappedOmit } from "@trackunit/shared-utils";
|
|
2
2
|
import { ReactElement, ReactNode } from "react";
|
|
3
3
|
import { CommonProps } from "../../../common/CommonProps";
|
|
4
4
|
import type { Styleable } from "../../../common/Styleable";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { VariantProps } from "@trackunit/css-class-variance-utilities";
|
|
2
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
2
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
3
3
|
import { IconName } from "@trackunit/ui-icons";
|
|
4
4
|
import { ReactElement, ReactNode } from "react";
|
|
5
5
|
import { CommonProps } from "../../common/CommonProps";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StringWithAutocompleteOptions } from "@trackunit/shared-utils";
|
|
1
|
+
import type { StringWithAutocompleteOptions } from "@trackunit/shared-utils";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
import { CommonProps } from "../../../common/CommonProps";
|
|
4
4
|
import { Refable } from "../../../common/Refable";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StringWithAutocompleteOptions } from "@trackunit/shared-utils";
|
|
1
|
+
import type { StringWithAutocompleteOptions } from "@trackunit/shared-utils";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
import { CommonProps } from "../../../common/CommonProps";
|
|
4
4
|
import { Refable } from "../../../common/Refable";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StringWithAutocompleteOptions } from "@trackunit/shared-utils";
|
|
1
|
+
import type { StringWithAutocompleteOptions } from "@trackunit/shared-utils";
|
|
2
2
|
import { CommonProps } from "../../common/CommonProps";
|
|
3
3
|
import { Refable } from "../../common/Refable";
|
|
4
4
|
import type { Styleable } from "../../common/Styleable";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { VariantProps } from "@trackunit/css-class-variance-utilities";
|
|
2
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
2
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
3
3
|
import { IconName } from "@trackunit/ui-icons";
|
|
4
4
|
import { Dispatch, MouseEventHandler, ReactElement, SetStateAction } from "react";
|
|
5
5
|
import { CommonProps } from "../../common/CommonProps";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
1
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
2
2
|
import { ReactElement, ReactNode, Ref } from "react";
|
|
3
3
|
import { Size } from "../../../common/Size";
|
|
4
4
|
import { ButtonCommonProps, ButtonType } from "../shared/ButtonProps";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MappedOmit } from "@trackunit/shared-utils";
|
|
1
|
+
import type { MappedOmit } from "@trackunit/shared-utils";
|
|
2
2
|
import { ComponentType, JSX, ReactElement, ReactNode, Ref } from "react";
|
|
3
3
|
import { Size } from "../../../common/Size";
|
|
4
4
|
import { ButtonCommonProps } from "../shared/ButtonProps";
|