@ikatec/nebula-react 1.9.0-beta.1 → 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.
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: React$1.ForwardRefExoticComponent<DrawerPrimitive.DialogProps & React$1.RefAttributes<void>>;
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: React$1.ForwardRefExoticComponent<DrawerPrimitive.DialogProps & React$1.RefAttributes<void>>;
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 = React25__namespace.forwardRef(({ ...props }) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Root, { modal: false, ...props }));
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";
@@ -8824,7 +8826,7 @@ var Tooltip = React25__namespace.forwardRef(
8824
8826
  ),
8825
8827
  ...props,
8826
8828
  children: [
8827
- content2,
8829
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "nebula-ds [&_[class*='text-typography-']]:!text-inherit", children: content2 }),
8828
8830
  /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Arrow, { className: "nebula-ds fill-tooltip-background" })
8829
8831
  ]
8830
8832
  }
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 = React25.forwardRef(({ ...props }) => /* @__PURE__ */ jsx(DialogPrimitive.Root, { modal: false, ...props }));
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";
@@ -8781,7 +8783,7 @@ var Tooltip = React25.forwardRef(
8781
8783
  ),
8782
8784
  ...props,
8783
8785
  children: [
8784
- content2,
8786
+ /* @__PURE__ */ jsx("div", { className: "nebula-ds [&_[class*='text-typography-']]:!text-inherit", children: content2 }),
8785
8787
  /* @__PURE__ */ jsx(TooltipPrimitive.Arrow, { className: "nebula-ds fill-tooltip-background" })
8786
8788
  ]
8787
8789
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikatec/nebula-react",
3
- "version": "1.9.0-beta.1",
3
+ "version": "1.9.0-beta.3",
4
4
  "description": "React components for Nebula Design System",
5
5
  "publishConfig": {
6
6
  "access": "public"