randmarcomps 1.49.0 → 1.51.0
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/dist/randmarcomps.d.ts +3 -0
- package/dist/randmarcomps.js +835 -805
- package/dist/randmarcomps.umd.cjs +21 -21
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ClassProp } from 'class-variance-authority/types';
|
|
2
2
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
3
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
4
5
|
import { MouseEventHandler } from 'react';
|
|
5
6
|
import { OTPInput } from 'input-otp';
|
|
6
7
|
import * as React_2 from 'react';
|
|
@@ -106,6 +107,8 @@ declare interface InputProps extends Omit<React_2.ComponentProps<"input">, "onCh
|
|
|
106
107
|
onChange?: (e: React_2.ChangeEvent<HTMLInputElement>) => void;
|
|
107
108
|
}
|
|
108
109
|
|
|
110
|
+
export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
|
|
111
|
+
|
|
109
112
|
export declare function Layout({ children, rightMenu, routes, footer, searchResultsRouteName, dashboardTitle, onSignOut, }: LayoutProps): JSX.Element;
|
|
110
113
|
|
|
111
114
|
declare interface LayoutProps {
|