@admin-layout/tailwind-ui 12.2.4-alpha.1 → 12.2.4-alpha.6

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.
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ /**
3
+ * SPA/Tauri Root ErrorBoundary Component
4
+ *
5
+ * This error boundary is specifically designed for SPA mode (like Tauri apps)
6
+ * where useLoaderData and useNavigate may not be available in error contexts.
7
+ *
8
+ * Key differences from RemixErrorBoundary:
9
+ * - Does NOT use useLoaderData (causes "Cannot useLoaderData in an errorElement" error)
10
+ * - Does NOT use useNavigate (can fail in root error contexts)
11
+ * - Uses window.location.href for navigation instead
12
+ * - Renders complete HTML document (required for root-level error boundaries)
13
+ *
14
+ * Usage in root.tsx:
15
+ * export { SPAErrorBoundary as ErrorBoundary } from '@admin-layout/tailwind-ui';
16
+ */
17
+ export declare function SPAErrorBoundary(): React.JSX.Element;
18
+ //# sourceMappingURL=SPAErrorBoundary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SPAErrorBoundary.d.ts","sourceRoot":"","sources":["../../../src/components/ErrorHandlers/SPAErrorBoundary.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,gBAAgB,sBAkH/B"}
@@ -0,0 +1,110 @@
1
+ import*as React from'react';import {useRouteError,isRouteErrorResponse,Meta,Links,Scripts}from'@remix-run/react';import {logger}from'@cdm-logger/client';/**
2
+ * SPA/Tauri Root ErrorBoundary Component
3
+ *
4
+ * This error boundary is specifically designed for SPA mode (like Tauri apps)
5
+ * where useLoaderData and useNavigate may not be available in error contexts.
6
+ *
7
+ * Key differences from RemixErrorBoundary:
8
+ * - Does NOT use useLoaderData (causes "Cannot useLoaderData in an errorElement" error)
9
+ * - Does NOT use useNavigate (can fail in root error contexts)
10
+ * - Uses window.location.href for navigation instead
11
+ * - Renders complete HTML document (required for root-level error boundaries)
12
+ *
13
+ * Usage in root.tsx:
14
+ * export { SPAErrorBoundary as ErrorBoundary } from '@admin-layout/tailwind-ui';
15
+ */
16
+ function SPAErrorBoundary() {
17
+ const error = useRouteError();
18
+ React.useEffect(() => {
19
+ logger.error('Root Route Error:', error);
20
+ console.error('Root Route Error:', error);
21
+ }, [error]);
22
+ const handleGoHome = () => {
23
+ // Use direct location change instead of useNavigate to avoid router context issues
24
+ window.location.href = '/';
25
+ };
26
+ if (isRouteErrorResponse(error)) {
27
+ return React.createElement("html", {
28
+ lang: "en"
29
+ }, React.createElement("head", null, React.createElement("meta", {
30
+ charSet: "utf-8"
31
+ }), React.createElement("meta", {
32
+ name: "viewport",
33
+ content: "width=device-width, initial-scale=1"
34
+ }), React.createElement("title", null, error.status, " - ", error.statusText), React.createElement(Meta, null), React.createElement(Links, null)), React.createElement("body", null, React.createElement("div", {
35
+ className: "flex min-h-screen items-center justify-center bg-gray-50 px-4 py-12 sm:px-6 lg:px-8"
36
+ }, React.createElement("div", {
37
+ className: "w-full max-w-md space-y-8 text-center"
38
+ }, React.createElement("div", {
39
+ className: "mb-4 flex justify-center"
40
+ }, React.createElement("div", {
41
+ className: "flex h-16 w-16 items-center justify-center rounded-full bg-red-100"
42
+ }, React.createElement("svg", {
43
+ className: "h-8 w-8 text-red-500",
44
+ fill: "none",
45
+ viewBox: "0 0 24 24",
46
+ stroke: "currentColor"
47
+ }, React.createElement("path", {
48
+ strokeLinecap: "round",
49
+ strokeLinejoin: "round",
50
+ strokeWidth: 2,
51
+ d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
52
+ })))), React.createElement("div", null, React.createElement("h1", {
53
+ className: "text-6xl font-bold text-gray-900"
54
+ }, error.status), React.createElement("h2", {
55
+ className: "mt-2 text-2xl font-bold tracking-tight text-gray-900"
56
+ }, error.statusText), error.data && React.createElement("p", {
57
+ className: "mt-2 text-sm text-gray-600"
58
+ }, error.data)), React.createElement("div", {
59
+ className: "mt-6"
60
+ }, React.createElement("button", {
61
+ onClick: handleGoHome,
62
+ className: "inline-flex items-center rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition-colors"
63
+ }, "Go back home")))), React.createElement(Scripts, null)));
64
+ }
65
+ const errorMessage = error instanceof Error ? error.message : 'An unexpected error occurred';
66
+ const errorStack = error instanceof Error ? error.stack : undefined;
67
+ return React.createElement("html", {
68
+ lang: "en"
69
+ }, React.createElement("head", null, React.createElement("meta", {
70
+ charSet: "utf-8"
71
+ }), React.createElement("meta", {
72
+ name: "viewport",
73
+ content: "width=device-width, initial-scale=1"
74
+ }), React.createElement("title", null, "Application Error"), React.createElement(Meta, null), React.createElement(Links, null)), React.createElement("body", null, React.createElement("div", {
75
+ className: "flex min-h-screen items-center justify-center bg-gray-50 px-4 py-12 sm:px-6 lg:px-8"
76
+ }, React.createElement("div", {
77
+ className: "w-full max-w-2xl space-y-8"
78
+ }, React.createElement("div", {
79
+ className: "mb-4 flex justify-center"
80
+ }, React.createElement("div", {
81
+ className: "flex h-16 w-16 items-center justify-center rounded-full bg-red-100"
82
+ }, React.createElement("svg", {
83
+ className: "h-8 w-8 text-red-500",
84
+ fill: "none",
85
+ viewBox: "0 0 24 24",
86
+ stroke: "currentColor"
87
+ }, React.createElement("path", {
88
+ strokeLinecap: "round",
89
+ strokeLinejoin: "round",
90
+ strokeWidth: 2,
91
+ d: "M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
92
+ })))), React.createElement("div", {
93
+ className: "text-center"
94
+ }, React.createElement("h1", {
95
+ className: "text-3xl font-bold tracking-tight text-gray-900"
96
+ }, "Application Error"), React.createElement("p", {
97
+ className: "mt-2 text-lg text-red-600"
98
+ }, errorMessage), errorStack && process.env.NODE_ENV !== 'production' && React.createElement("details", {
99
+ className: "mt-4 text-left"
100
+ }, React.createElement("summary", {
101
+ className: "cursor-pointer text-sm font-medium text-gray-700 hover:text-gray-900"
102
+ }, "Stack trace (development only)"), React.createElement("pre", {
103
+ className: "mt-2 overflow-auto rounded-md bg-gray-100 p-4 text-xs text-gray-800 max-h-96"
104
+ }, errorStack))), React.createElement("div", {
105
+ className: "mt-6 text-center"
106
+ }, React.createElement("button", {
107
+ onClick: handleGoHome,
108
+ className: "inline-flex items-center rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition-colors"
109
+ }, "Go back home")))), React.createElement(Scripts, null)));
110
+ }export{SPAErrorBoundary};//# sourceMappingURL=SPAErrorBoundary.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SPAErrorBoundary.js","sources":["../../../src/components/ErrorHandlers/SPAErrorBoundary.tsx"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;AAkBG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -2,4 +2,5 @@ export * from './ApplicationErrorHandler';
2
2
  export * from './ErrorBoundary';
3
3
  export * from './LayoutErrorBoundary';
4
4
  export * from './RemixErrorBoundary';
5
+ export * from './SPAErrorBoundary';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ErrorHandlers/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ErrorHandlers/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"LanguageMenuDropdown.d.ts","sourceRoot":"","sources":["../../../src/components/LanguageMenuDropdown/LanguageMenuDropdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAOnD,eAAO,MAAM,oBAAoB,GAAI,2BAA2B;IAAE,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,GAAG,CAAA;CAAE,sBAmDvG,CAAC"}
1
+ {"version":3,"file":"LanguageMenuDropdown.d.ts","sourceRoot":"","sources":["../../../src/components/LanguageMenuDropdown/LanguageMenuDropdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAOnD,eAAO,MAAM,oBAAoB,GAAI,2BAA2B;IAAE,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,GAAG,CAAA;CAAE,sBAuDvG,CAAC"}
@@ -23,13 +23,17 @@ import React__default,{useState,useEffect}from'react';import {useTranslation}fro
23
23
  global: true
24
24
  });
25
25
  useEffect(() => {
26
- i18n.changeLanguage(settings.language);
26
+ if (i18n?.changeLanguage) {
27
+ i18n.changeLanguage(settings.language);
28
+ }
27
29
  }, []);
28
30
  const handleLanguageChange = value => {
29
31
  const language = filteredLanguages.find(lang => lang.key === value);
30
32
  if (language) {
31
33
  setCurrentLang(language);
32
- i18n.changeLanguage(language.key);
34
+ if (i18n?.changeLanguage) {
35
+ i18n.changeLanguage(language.key);
36
+ }
33
37
  setSettings(settings, {
34
38
  language: language.key
35
39
  });
@@ -1 +1 @@
1
- {"version":3,"file":"LanguageMenuDropdown.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"LanguageMenuDropdown.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export declare const SingleInput: React.ForwardRefExoticComponent<Omit<Required<Pick<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "onFocus" | "onBlur" | "onKeyDown" | "onPaste" | "aria-label" | "autoComplete" | "inputMode" | "onInput"> & {
2
+ export declare const SingleInput: React.ForwardRefExoticComponent<Omit<Required<Pick<React.InputHTMLAttributes<HTMLInputElement>, "value" | "autoComplete" | "inputMode" | "aria-label" | "onPaste" | "onFocus" | "onBlur" | "onChange" | "onInput" | "onKeyDown"> & {
3
3
  ref: React.RefCallback<HTMLInputElement>;
4
4
  placeholder: string | undefined;
5
5
  className: string;
package/lib/index.js CHANGED
@@ -1 +1 @@
1
- export{default as PageLoading}from'./components/PageLoading/index.js';export{ApplicationErrorHandler}from'./components/ErrorHandlers/ApplicationErrorHandler.js';export{ErrorBoundary}from'./components/ErrorHandlers/ErrorBoundary.js';export{LayoutErrorBoundary}from'./components/ErrorHandlers/LayoutErrorBoundary.js';export{RemixErrorBoundary}from'./components/ErrorHandlers/RemixErrorBoundary.js';export{ReactTable}from'./components/ReactTable/Table.js';export{DefaultColumnFilter,SelectColumnFilter}from'./components/ReactTable/TableFilters.js';export{Error404}from'./components/ErrorPages/404.js';export{Error500}from'./components/ErrorPages/500.js';export{Error403}from'./components/ErrorPages/403.js';export{PageContainer}from'./components/PageContainer/PageContainer.js';export{Spin}from'./components/Spin/index.js';export{OTPInput}from'./components/OTP/OTPInput.js';export{SingleInput}from'./components/OTP/SingleInput.js';export{useOTPInput}from'./components/OTP/hooks.js';export{OTPVerification}from'./components/OTP/OTPVerification.js';export{SearchInput}from'./components/Search/SearchInput.js';export{Select,SelectContent,SelectItem,SelectSearch,SelectTrigger,SelectValue}from'./components/Select/Select.js';export{DatePicker}from'./components/DatePicker/DatePicker.js';export{TailwindUiButton}from'./components/Button/Button.js';export{TailwindThemeProvider,ThemeContext,themes}from'./components/ThemeProvider/ThemeProvider.js';export{ThemeToggle}from'./components/ThemeProvider/ThemeToggle.js';export{LanguageMenuDropdown}from'./components/LanguageMenuDropdown/LanguageMenuDropdown.js';export{useTheme}from'./hooks/useTheme.js';export{useWindowSize}from'./hooks/useWindowSize.js';export{ToastContainer,useToast,useToastCloseAll}from'./hooks/useToast.js';export{useMediaQuery}from'./hooks/useMediaQuery.js';export{cn}from'./utils/util.js';//# sourceMappingURL=index.js.map
1
+ export{default as PageLoading}from'./components/PageLoading/index.js';export{ApplicationErrorHandler}from'./components/ErrorHandlers/ApplicationErrorHandler.js';export{ErrorBoundary}from'./components/ErrorHandlers/ErrorBoundary.js';export{LayoutErrorBoundary}from'./components/ErrorHandlers/LayoutErrorBoundary.js';export{RemixErrorBoundary}from'./components/ErrorHandlers/RemixErrorBoundary.js';export{SPAErrorBoundary}from'./components/ErrorHandlers/SPAErrorBoundary.js';export{ReactTable}from'./components/ReactTable/Table.js';export{DefaultColumnFilter,SelectColumnFilter}from'./components/ReactTable/TableFilters.js';export{Error404}from'./components/ErrorPages/404.js';export{Error500}from'./components/ErrorPages/500.js';export{Error403}from'./components/ErrorPages/403.js';export{PageContainer}from'./components/PageContainer/PageContainer.js';export{Spin}from'./components/Spin/index.js';export{OTPInput}from'./components/OTP/OTPInput.js';export{SingleInput}from'./components/OTP/SingleInput.js';export{useOTPInput}from'./components/OTP/hooks.js';export{OTPVerification}from'./components/OTP/OTPVerification.js';export{SearchInput}from'./components/Search/SearchInput.js';export{Select,SelectContent,SelectItem,SelectSearch,SelectTrigger,SelectValue}from'./components/Select/Select.js';export{DatePicker}from'./components/DatePicker/DatePicker.js';export{TailwindUiButton}from'./components/Button/Button.js';export{TailwindThemeProvider,ThemeContext,themes}from'./components/ThemeProvider/ThemeProvider.js';export{ThemeToggle}from'./components/ThemeProvider/ThemeToggle.js';export{LanguageMenuDropdown}from'./components/LanguageMenuDropdown/LanguageMenuDropdown.js';export{useTheme}from'./hooks/useTheme.js';export{useWindowSize}from'./hooks/useWindowSize.js';export{ToastContainer,useToast,useToastCloseAll}from'./hooks/useToast.js';export{useMediaQuery}from'./hooks/useMediaQuery.js';export{cn}from'./utils/util.js';//# sourceMappingURL=index.js.map
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "containerClassName" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "noScriptCSSFallback"> & {
2
+ declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "maxLength" | "onChange" | "containerClassName" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "noScriptCSSFallback"> & {
3
3
  value?: string;
4
4
  onChange?: (newValue: string) => unknown;
5
5
  maxLength: number;
@@ -12,7 +12,7 @@ declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHT
12
12
  } & {
13
13
  render: (props: import("input-otp").RenderProps) => React.ReactNode;
14
14
  children?: never;
15
- } & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "containerClassName" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "noScriptCSSFallback"> & {
15
+ } & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "maxLength" | "onChange" | "containerClassName" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "noScriptCSSFallback"> & {
16
16
  value?: string;
17
17
  onChange?: (newValue: string) => unknown;
18
18
  maxLength: number;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import * as ResizablePrimitive from 'react-resizable-panels';
3
3
  declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React.JSX.Element;
4
- declare const ResizablePanel: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLHeadingElement | HTMLParagraphElement | HTMLDetailsElement | HTMLPreElement | HTMLSelectElement | HTMLOptionElement | HTMLOptGroupElement | HTMLInputElement | HTMLTableElement | HTMLTableSectionElement | HTMLTableRowElement | HTMLTableCellElement | HTMLSpanElement | HTMLImageElement | HTMLUListElement | HTMLLIElement | HTMLAnchorElement | HTMLObjectElement | HTMLLinkElement | HTMLMapElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLFormElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLLabelElement | HTMLLegendElement | HTMLMetaElement | HTMLMeterElement | HTMLOListElement | HTMLOutputElement | HTMLProgressElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLStyleElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTitleElement | HTMLTrackElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
4
+ declare const ResizablePanel: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLHeadingElement | HTMLParagraphElement | HTMLDetailsElement | HTMLPreElement | HTMLHtmlElement | HTMLHeadElement | HTMLBodyElement | HTMLMetaElement | HTMLTitleElement | HTMLScriptElement | HTMLSelectElement | HTMLOptionElement | HTMLOptGroupElement | HTMLInputElement | HTMLTableElement | HTMLTableSectionElement | HTMLTableRowElement | HTMLTableCellElement | HTMLSpanElement | HTMLImageElement | HTMLUListElement | HTMLLIElement | HTMLAnchorElement | HTMLObjectElement | HTMLLinkElement | HTMLMapElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLFormElement | HTMLHRElement | HTMLIFrameElement | HTMLLabelElement | HTMLLegendElement | HTMLMeterElement | HTMLOListElement | HTMLOutputElement | HTMLProgressElement | HTMLSlotElement | HTMLSourceElement | HTMLStyleElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTrackElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
5
5
  className?: string | undefined;
6
6
  collapsedSize?: number | undefined;
7
7
  collapsible?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admin-layout/tailwind-ui",
3
- "version": "12.2.4-alpha.1",
3
+ "version": "12.2.4-alpha.6",
4
4
  "description": "Sample core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -10,7 +10,7 @@
10
10
  "./components/*": "./lib/components/*",
11
11
  "./hooks/*": "./lib/hooks/*",
12
12
  "./shardui/util": "./lib/utils/util.js",
13
- "./shardui": "./lib/shardui/*",
13
+ "./shardui": "./lib/shardui/index.js",
14
14
  "./shardui/*": "./lib/shardui/*"
15
15
  },
16
16
  "main": "lib/index.js",
@@ -29,13 +29,14 @@
29
29
  "watch": "npm run build:lib:watch"
30
30
  },
31
31
  "dependencies": {
32
- "@admin-layout/client": "12.2.4-alpha.1",
32
+ "@admin-layout/client": "12.2.4-alpha.6",
33
33
  "@radix-ui/react-accordion": "^1.2.0",
34
34
  "@radix-ui/react-alert-dialog": "^1.1.1",
35
35
  "@radix-ui/react-aspect-ratio": "^1.1.0",
36
36
  "@radix-ui/react-avatar": "^1.1.0",
37
37
  "@radix-ui/react-checkbox": "^1.1.1",
38
38
  "@radix-ui/react-collapsible": "^1.1.0",
39
+ "@radix-ui/react-compose-refs": "^1.1.0",
39
40
  "@radix-ui/react-context-menu": "^2.2.1",
40
41
  "@radix-ui/react-dialog": "^1.1.1",
41
42
  "@radix-ui/react-dropdown-menu": "^2.1.1",
@@ -89,5 +90,5 @@
89
90
  "typescript": {
90
91
  "definition": "lib/index.d.ts"
91
92
  },
92
- "gitHead": "f80e1b60eea1e3d755b88c840a068fde92219a5d"
93
+ "gitHead": "ea9378bac8a406983554066b5e79c2df377f58e9"
93
94
  }