@inera/ids-react 4.3.0 → 4.5.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
@@ -62,6 +62,7 @@ export * from './components/icons/icon-call-active';
62
62
  export * from './components/icons/icon-camera-off';
63
63
  export * from './components/icons/icon-camera-on';
64
64
  export * from './components/icons/icon-camera-switch';
65
+ export * from './components/icons/icon-chat';
65
66
  export * from './components/icons/icon-chart-bar';
66
67
  export * from './components/icons/icon-chart-line';
67
68
  export * from './components/icons/icon-check';
@@ -123,6 +124,7 @@ export * from './components/icons/icon-office-building';
123
124
  export * from './components/icons/icon-orebro';
124
125
  export * from './components/icons/icon-organization';
125
126
  export * from './components/icons/icon-ostergotland';
127
+ export * from './components/icons/icon-prescription';
126
128
  export * from './components/icons/icon-plus';
127
129
  export * from './components/icons/icon-print';
128
130
  export * from './components/icons/icon-question';
package/api.js CHANGED
@@ -62,6 +62,7 @@ export { IDSIconCallActive } from './components/icons/icon-call-active.js';
62
62
  export { IDSIconCameraOff } from './components/icons/icon-camera-off.js';
63
63
  export { IDSIconCameraOn } from './components/icons/icon-camera-on.js';
64
64
  export { IDSIconCameraSwitch } from './components/icons/icon-camera-switch.js';
65
+ export { IDSIconChat } from './components/icons/icon-chat.js';
65
66
  export { IDSIconChartBar } from './components/icons/icon-chart-bar.js';
66
67
  export { IDSIconChartLine } from './components/icons/icon-chart-line.js';
67
68
  export { IDSIconCheck } from './components/icons/icon-check.js';
@@ -123,6 +124,7 @@ export { IDSIconOfficeBuilding } from './components/icons/icon-office-building.j
123
124
  export { IDSIconOrebro } from './components/icons/icon-orebro.js';
124
125
  export { IDSIconOrganization } from './components/icons/icon-organization.js';
125
126
  export { IDSIconOstergotland } from './components/icons/icon-ostergotland.js';
127
+ export { IDSIconPrescription } from './components/icons/icon-prescription.js';
126
128
  export { IDSIconPlus } from './components/icons/icon-plus.js';
127
129
  export { IDSIconPrint } from './components/icons/icon-print.js';
128
130
  export { IDSIconQuestion } from './components/icons/icon-question.js';
@@ -2,4 +2,5 @@ import '@inera/ids-core/components/dialog/register';
2
2
  import { IDSDialog as Dialog } from '@inera/ids-core/components/dialog/dialog-element';
3
3
  export declare const IDSDialog: import("@lit-labs/react").ReactWebComponent<Dialog, {
4
4
  onClosed: string;
5
+ onOpen: string;
5
6
  }>;
@@ -8,7 +8,8 @@ const IDSDialog = createComponent({
8
8
  elementClass: IDSDialog$1,
9
9
  react: React,
10
10
  events: {
11
- onClosed: 'closed'
11
+ onClosed: 'closed',
12
+ onOpen: 'open'
12
13
  }
13
14
  });
14
15
 
@@ -1,3 +1,6 @@
1
1
  import '@inera/ids-core/components/expandable/register';
2
2
  import { IDSExpandable as Expandable } from '@inera/ids-core/components/expandable/expandable-element';
3
- export declare const IDSExpandable: import("@lit-labs/react").ReactWebComponent<Expandable, {}>;
3
+ export declare const IDSExpandable: import("@lit-labs/react").ReactWebComponent<Expandable, {
4
+ onClosed: string;
5
+ onExpanded: string;
6
+ }>;
@@ -7,6 +7,10 @@ const IDSExpandable = createComponent({
7
7
  tagName: 'ids-expandable',
8
8
  elementClass: IDSExpandable$1,
9
9
  react: React,
10
+ events: {
11
+ onClosed: 'closed',
12
+ onExpanded: 'expanded'
13
+ }
10
14
  });
11
15
 
12
16
  export { IDSExpandable };
@@ -0,0 +1,3 @@
1
+ import '@inera/ids-core/components/icons/chat/register';
2
+ import { IDSIconChat as Icon } from '@inera/ids-core/components/icons/chat/icon-chat-element';
3
+ export declare const IDSIconChat: import("@lit-labs/react").ReactWebComponent<Icon, {}>;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import '@inera/ids-core/components/icons/chat/register';
3
+ import { IDSIconChat as IDSIconChat$1 } from '@inera/ids-core/components/icons/chat/icon-chat-element';
4
+ import { createComponent } from '@lit-labs/react';
5
+
6
+ const IDSIconChat = createComponent({
7
+ tagName: 'ids-icon-chat',
8
+ elementClass: IDSIconChat$1,
9
+ react: React,
10
+ });
11
+
12
+ export { IDSIconChat };
@@ -0,0 +1,3 @@
1
+ import '@inera/ids-core/components/icons/prescription/register';
2
+ import { IDSIconPrescription as Icon } from '@inera/ids-core/components/icons/prescription/icon-prescription-element';
3
+ export declare const IDSIconPrescription: import("@lit-labs/react").ReactWebComponent<Icon, {}>;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import '@inera/ids-core/components/icons/prescription/register';
3
+ import { IDSIconPrescription as IDSIconPrescription$1 } from '@inera/ids-core/components/icons/prescription/icon-prescription-element';
4
+ import { createComponent } from '@lit-labs/react';
5
+
6
+ const IDSIconPrescription = createComponent({
7
+ tagName: 'ids-icon-prescription',
8
+ elementClass: IDSIconPrescription$1,
9
+ react: React,
10
+ });
11
+
12
+ export { IDSIconPrescription };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@inera/ids-react",
3
- "version": "4.3.0",
3
+ "version": "4.5.0",
4
4
  "peerDependencies": {
5
5
  "react": "*"
6
6
  },
7
7
  "dependencies": {
8
- "@inera/ids-core": "4.3.x",
8
+ "@inera/ids-core": "4.5.x",
9
9
  "@lit-labs/react": "^1.1.0"
10
10
  },
11
11
  "main": "api.js",