@ikatec/nebula-react 1.9.0-beta.2 → 1.9.0-beta.3
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.
|
Binary file
|
package/dist/index.d.mts
CHANGED
|
@@ -108,7 +108,10 @@ interface SeparatorProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Se
|
|
|
108
108
|
}
|
|
109
109
|
declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
110
110
|
|
|
111
|
-
declare const ActionBar:
|
|
111
|
+
declare const ActionBar: {
|
|
112
|
+
({ ...props }: React$1.ComponentProps<typeof DrawerPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
113
|
+
displayName: string;
|
|
114
|
+
};
|
|
112
115
|
declare const ActionBarTrigger: React$1.ForwardRefExoticComponent<Omit<DrawerPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
113
116
|
declare const ActionBarPortal: {
|
|
114
117
|
(props: React$1.ComponentProps<typeof DrawerPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -108,7 +108,10 @@ interface SeparatorProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Se
|
|
|
108
108
|
}
|
|
109
109
|
declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
110
110
|
|
|
111
|
-
declare const ActionBar:
|
|
111
|
+
declare const ActionBar: {
|
|
112
|
+
({ ...props }: React$1.ComponentProps<typeof DrawerPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
113
|
+
displayName: string;
|
|
114
|
+
};
|
|
112
115
|
declare const ActionBarTrigger: React$1.ForwardRefExoticComponent<Omit<DrawerPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
113
116
|
declare const ActionBarPortal: {
|
|
114
117
|
(props: React$1.ComponentProps<typeof DrawerPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -415,7 +415,9 @@ var Separator = React25__namespace.forwardRef(
|
|
|
415
415
|
}
|
|
416
416
|
);
|
|
417
417
|
Separator.displayName = "Separator";
|
|
418
|
-
var ActionBar =
|
|
418
|
+
var ActionBar = ({
|
|
419
|
+
...props
|
|
420
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Root, { modal: false, ...props });
|
|
419
421
|
ActionBar.displayName = "ActionBar";
|
|
420
422
|
var ActionBarTrigger = React25__namespace.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Trigger, { ref, ...props }));
|
|
421
423
|
ActionBarTrigger.displayName = "ActionBarTrigger";
|
package/dist/index.mjs
CHANGED
|
@@ -372,7 +372,9 @@ var Separator = React25.forwardRef(
|
|
|
372
372
|
}
|
|
373
373
|
);
|
|
374
374
|
Separator.displayName = "Separator";
|
|
375
|
-
var ActionBar =
|
|
375
|
+
var ActionBar = ({
|
|
376
|
+
...props
|
|
377
|
+
}) => /* @__PURE__ */ jsx(DialogPrimitive.Root, { modal: false, ...props });
|
|
376
378
|
ActionBar.displayName = "ActionBar";
|
|
377
379
|
var ActionBarTrigger = React25.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx(DialogPrimitive.Trigger, { ref, ...props }));
|
|
378
380
|
ActionBarTrigger.displayName = "ActionBarTrigger";
|
package/package.json
CHANGED
|
Binary file
|