@inera/ids-react 3.0.2 → 3.1.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
@@ -49,6 +49,7 @@ export * from "./components/tag/tag";
49
49
  export * from "./components/stepper/stepper";
50
50
  export * from "./components/form/toggle/toggle";
51
51
  export * from "./components/icon-region/icon-region";
52
+ export * from "./components/navigation/local/navigation-local";
52
53
  export * from './components/icons/icon-1177';
53
54
  export * from './components/icons/icon-agent';
54
55
  export * from './components/icons/icon-arrow';
@@ -144,6 +145,7 @@ export * from './components/icons/icon-test-tube-empty';
144
145
  export * from './components/icons/icon-test-tube';
145
146
  export * from './components/icons/icon-toggle-card';
146
147
  export * from './components/icons/icon-toggle-list';
148
+ export * from './components/icons/icon-trash';
147
149
  export * from './components/icons/icon-twitter';
148
150
  export * from './components/icons/icon-uppsala';
149
151
  export * from './components/icons/icon-user';
package/api.js CHANGED
@@ -49,6 +49,7 @@ export { IDSTag } from './components/tag/tag.js';
49
49
  export { IDSStep, IDSStepper } from './components/stepper/stepper.js';
50
50
  export { IDSToggle } from './components/form/toggle/toggle.js';
51
51
  export { IDSIconRegion } from './components/icon-region/icon-region.js';
52
+ export { IDSNavigationLocal } from './components/navigation/local/navigation-local.js';
52
53
  export { IDSIcon1177 } from './components/icons/icon-1177.js';
53
54
  export { IDSIconAgent } from './components/icons/icon-agent.js';
54
55
  export { IDSIconArrow } from './components/icons/icon-arrow.js';
@@ -144,6 +145,7 @@ export { IDSIconTestTubeEmpty } from './components/icons/icon-test-tube-empty.js
144
145
  export { IDSIconTestTube } from './components/icons/icon-test-tube.js';
145
146
  export { IDSIconToggleCard } from './components/icons/icon-toggle-card.js';
146
147
  export { IDSIconToggleList } from './components/icons/icon-toggle-list.js';
148
+ export { IDSIconTrash } from './components/icons/icon-trash.js';
147
149
  export { IDSIconTwitter } from './components/icons/icon-twitter.js';
148
150
  export { IDSIconUppsala } from './components/icons/icon-uppsala.js';
149
151
  export { IDSIconUser } from './components/icons/icon-user.js';
@@ -0,0 +1,3 @@
1
+ import '@inera/ids-core/components/icons/trash/register';
2
+ import { IDSIconTrash as Icon } from '@inera/ids-core/components/icons/trash/icon-trash-element';
3
+ export declare const IDSIconTrash: import("@lit-labs/react").ReactWebComponent<Icon, {}>;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import '@inera/ids-core/components/icons/trash/register';
3
+ import { IDSIconTrash as IDSIconTrash$1 } from '@inera/ids-core/components/icons/trash/icon-trash-element';
4
+ import { createComponent } from '@lit-labs/react';
5
+
6
+ const IDSIconTrash = createComponent({
7
+ tagName: 'ids-icon-trash',
8
+ elementClass: IDSIconTrash$1,
9
+ react: React,
10
+ });
11
+
12
+ export { IDSIconTrash };
@@ -0,0 +1,3 @@
1
+ import '@inera/ids-core/components/navigation/local/register';
2
+ import { IDSNavigationLocal as NavigationLocal } from '@inera/ids-core/components/navigation/local/navigation-local-element';
3
+ export declare const IDSNavigationLocal: import("@lit-labs/react").ReactWebComponent<NavigationLocal, {}>;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit-labs/react';
3
+ import '@inera/ids-core/components/navigation/local/register';
4
+ import { IDSNavigationLocal as IDSNavigationLocal$1 } from '@inera/ids-core/components/navigation/local/navigation-local-element';
5
+
6
+ const IDSNavigationLocal = createComponent({
7
+ tagName: 'ids-navigation-local',
8
+ elementClass: IDSNavigationLocal$1,
9
+ react: React
10
+ });
11
+
12
+ export { IDSNavigationLocal };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@inera/ids-react",
3
- "version": "3.0.2",
3
+ "version": "3.1.0",
4
4
  "peerDependencies": {
5
5
  "react": "*"
6
6
  },
7
7
  "dependencies": {
8
- "@inera/ids-core": "3.0.x",
8
+ "@inera/ids-core": "3.1.x",
9
9
  "@lit-labs/react": "^1.1.0"
10
10
  },
11
11
  "main": "api.js",