@trackunit/react-components 1.18.20 → 1.18.22

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-components",
3
- "version": "1.18.20",
3
+ "version": "1.18.22",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -14,10 +14,10 @@
14
14
  "@floating-ui/react": "^0.26.25",
15
15
  "string-ts": "^2.0.0",
16
16
  "tailwind-merge": "^2.0.0",
17
- "@trackunit/ui-design-tokens": "1.11.72",
18
- "@trackunit/css-class-variance-utilities": "1.11.74",
19
- "@trackunit/shared-utils": "1.13.74",
20
- "@trackunit/ui-icons": "1.11.71",
17
+ "@trackunit/ui-design-tokens": "1.11.73",
18
+ "@trackunit/css-class-variance-utilities": "1.11.75",
19
+ "@trackunit/shared-utils": "1.13.75",
20
+ "@trackunit/ui-icons": "1.11.72",
21
21
  "@tanstack/react-router": "1.114.29",
22
22
  "es-toolkit": "^1.39.10",
23
23
  "@tanstack/react-virtual": "3.13.12",
@@ -161,11 +161,6 @@ type BrowserShortcutKeys<TShortcut> = TShortcut extends BrowserReservedModC ? "m
161
161
  type BrowserReservedErrorMessage<TShortcut> = ReservedMessage<"Browser", BrowserShortcutKeys<TShortcut>, BrowserShortcutFeature<TShortcut>>;
162
162
  /** Union of all reserved shortcuts (app + browser) */
163
163
  type ReservedShortcut = AppReservedShortcut | BrowserReservedShortcut;
164
- /**
165
- * Type predicate that returns true if the shortcut is reserved.
166
- * Reserved shortcuts cannot be used without explicit ts-expect-error.
167
- */
168
- export type IsReservedShortcut<TShortcut extends ShortcutDefinition> = TShortcut extends ReservedShortcut ? true : false;
169
164
  /** Maps any reserved shortcut to its specific error message */
170
165
  type ReservedErrorMessage<TShortcut> = TShortcut extends AppReservedShortcut ? AppReservedErrorMessage<TShortcut> : TShortcut extends BrowserReservedShortcut ? BrowserReservedErrorMessage<TShortcut> : never;
171
166
  /**