@inera/ids-react 1.13.2 → 2.0.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/api.d.ts CHANGED
@@ -42,3 +42,5 @@ export * from "./components/expandable/expandable";
42
42
  export * from "./components/popover/popover";
43
43
  export * from "./components/progressbar/progressbar";
44
44
  export * from "./components/badge/badge";
45
+ export * from "./components/tooltip/tooltip";
46
+ export * from "./components/navigation/content/navigation-content";
package/api.js CHANGED
@@ -42,3 +42,5 @@ export { IDSExpandable } from './components/expandable/expandable.js';
42
42
  export { IDSPopover, IDSPopoverContent } from './components/popover/popover.js';
43
43
  export { IDSProgressbar } from './components/progressbar/progressbar.js';
44
44
  export { IDSBadge } from './components/badge/badge.js';
45
+ export { IDSTooltip } from './components/tooltip/tooltip.js';
46
+ export { IDSNavigationContent } from './components/navigation/content/navigation-content.js';
@@ -0,0 +1,2 @@
1
+ import '@inera/ids-core/components/navigation/content/register';
2
+ export declare const IDSNavigationContent: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit-labs/react';
3
+ import '@inera/ids-core/components/navigation/content/register';
4
+ import { IDSNavigationContent as IDSNavigationContent$1 } from '@inera/ids-core/components/navigation/content/navigation-content-element';
5
+
6
+ var IDSNavigationContent = createComponent(React, 'ids-navigation-content', IDSNavigationContent$1);
7
+
8
+ export { IDSNavigationContent };
@@ -0,0 +1,2 @@
1
+ import '@inera/ids-core/components/tooltip/register';
2
+ export declare const IDSTooltip: React.ForwardRefExoticComponent<any>;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import '@inera/ids-core/components/tooltip/register';
3
+ import { IDSTooltip as IDSTooltip$1 } from '@inera/ids-core/components/tooltip/tooltip-element';
4
+ import { createComponent } from '@lit-labs/react';
5
+
6
+ var IDSTooltip = createComponent(React, 'ids-tooltip', IDSTooltip$1);
7
+
8
+ export { IDSTooltip };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@inera/ids-react",
3
- "version": "1.13.2",
3
+ "version": "2.0.0",
4
4
  "peerDependencies": {
5
5
  "react": "*"
6
6
  },
7
7
  "dependencies": {
8
- "@inera/ids-core": "1.13.x",
8
+ "@inera/ids-core": "2.0.x",
9
9
  "@lit-labs/react": "^1.0.2"
10
10
  },
11
11
  "main": "api.js",