@inera/ids-react 4.3.0 → 4.4.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 +2 -0
- package/api.js +2 -0
- package/components/dialog/dialog.d.ts +1 -0
- package/components/dialog/dialog.js +2 -1
- package/components/expandable/expandable.d.ts +4 -1
- package/components/expandable/expandable.js +4 -0
- package/components/icons/icon-chat.d.ts +3 -0
- package/components/icons/icon-chat.js +12 -0
- package/components/icons/icon-prescription.d.ts +3 -0
- package/components/icons/icon-prescription.js +12 -0
- package/package.json +2 -2
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
|
}>;
|
|
@@ -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
|
+
}>;
|
|
@@ -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
|
+
"version": "4.4.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"react": "*"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@inera/ids-core": "4.
|
|
8
|
+
"@inera/ids-core": "4.4.x",
|
|
9
9
|
"@lit-labs/react": "^1.1.0"
|
|
10
10
|
},
|
|
11
11
|
"main": "api.js",
|