@medway-ui/core 1.9.0 → 1.9.2
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/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -161,7 +161,10 @@ declare function DialogHeader({ className, separator, ...props }: React.Componen
|
|
|
161
161
|
declare function DialogFooter({ className, separator, ...props }: React.ComponentProps<"div"> & {
|
|
162
162
|
separator?: boolean;
|
|
163
163
|
}): react_jsx_runtime.JSX.Element;
|
|
164
|
-
declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>
|
|
164
|
+
declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: React.ComponentProps<typeof Dialog$1.Title> & {
|
|
165
|
+
iconLeft?: React.ReactNode;
|
|
166
|
+
iconRight?: React.ReactNode;
|
|
167
|
+
}): react_jsx_runtime.JSX.Element;
|
|
165
168
|
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
166
169
|
|
|
167
170
|
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -161,7 +161,10 @@ declare function DialogHeader({ className, separator, ...props }: React.Componen
|
|
|
161
161
|
declare function DialogFooter({ className, separator, ...props }: React.ComponentProps<"div"> & {
|
|
162
162
|
separator?: boolean;
|
|
163
163
|
}): react_jsx_runtime.JSX.Element;
|
|
164
|
-
declare function DialogTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>
|
|
164
|
+
declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: React.ComponentProps<typeof Dialog$1.Title> & {
|
|
165
|
+
iconLeft?: React.ReactNode;
|
|
166
|
+
iconRight?: React.ReactNode;
|
|
167
|
+
}): react_jsx_runtime.JSX.Element;
|
|
165
168
|
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
166
169
|
|
|
167
170
|
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|