@inera/ids-react 4.0.0 → 4.2.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.js
CHANGED
|
@@ -35,7 +35,7 @@ export { IDSListItem } from './components/list/item/list-item.js';
|
|
|
35
35
|
export { IDSListItemInfo } from './components/list/item/info/list-item-info.js';
|
|
36
36
|
export { IDSDateLabel } from './components/date-label/date-label.js';
|
|
37
37
|
export { IDSBreadcrumbs, IDSCrumb } from './components/breadcrumbs/breacrumbs.js';
|
|
38
|
-
export { IDSDialog
|
|
38
|
+
export { IDSDialog } from './components/dialog/dialog.js';
|
|
39
39
|
export { IDSCard } from './components/card/card.js';
|
|
40
40
|
export { IDSAgent } from './components/agent/agent.js';
|
|
41
41
|
export { IDSExpandable } from './components/expandable/expandable.js';
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import '@inera/ids-core/components/dialog/register';
|
|
2
2
|
import { IDSDialog as Dialog } from '@inera/ids-core/components/dialog/dialog-element';
|
|
3
|
-
import { IDSDialogActions as DialogActions } from '@inera/ids-core/components/dialog/actions/dialog-actions-element';
|
|
4
3
|
export declare const IDSDialog: import("@lit-labs/react").ReactWebComponent<Dialog, {
|
|
5
4
|
onClosed: string;
|
|
6
5
|
}>;
|
|
7
|
-
export declare const IDSDialogActions: import("@lit-labs/react").ReactWebComponent<DialogActions, {}>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import '@inera/ids-core/components/dialog/register';
|
|
3
3
|
import { IDSDialog as IDSDialog$1 } from '@inera/ids-core/components/dialog/dialog-element';
|
|
4
|
-
import { IDSDialogActions as IDSDialogActions$1 } from '@inera/ids-core/components/dialog/actions/dialog-actions-element';
|
|
5
4
|
import { createComponent } from '@lit-labs/react';
|
|
6
5
|
|
|
7
6
|
const IDSDialog = createComponent({
|
|
@@ -11,11 +10,6 @@ const IDSDialog = createComponent({
|
|
|
11
10
|
events: {
|
|
12
11
|
onClosed: 'closed'
|
|
13
12
|
}
|
|
14
|
-
});
|
|
15
|
-
const IDSDialogActions = createComponent({
|
|
16
|
-
tagName: 'ids-dialog-actions',
|
|
17
|
-
elementClass: IDSDialogActions$1,
|
|
18
|
-
react: React,
|
|
19
13
|
});
|
|
20
14
|
|
|
21
|
-
export { IDSDialog
|
|
15
|
+
export { IDSDialog };
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inera/ids-react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"react": "*"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@inera/ids-core": "4.
|
|
8
|
+
"@inera/ids-core": "4.2.x",
|
|
9
9
|
"@lit-labs/react": "^1.1.0"
|
|
10
10
|
},
|
|
11
11
|
"main": "api.js",
|