@justeattakeaway/pie-notification 0.12.0 → 0.12.2
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/package.json +6 -6
- package/src/defs-react.ts +1 -1
- package/src/react.ts +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-notification",
|
|
3
3
|
"description": "PIE Design System Notification built using Web Components",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@custom-elements-manifest/analyzer": "0.9.0",
|
|
39
39
|
"@justeattakeaway/pie-components-config": "0.18.0",
|
|
40
|
-
"@justeattakeaway/pie-css": "0.13.
|
|
41
|
-
"@justeattakeaway/pie-wrapper-react": "0.14.
|
|
40
|
+
"@justeattakeaway/pie-css": "0.13.1",
|
|
41
|
+
"@justeattakeaway/pie-wrapper-react": "0.14.2",
|
|
42
42
|
"cem-plugin-module-file-extensions": "0.0.5"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@justeattakeaway/pie-icon-button": "0.28.
|
|
46
|
-
"@justeattakeaway/pie-icons-webc": "0.25.
|
|
47
|
-
"@justeattakeaway/pie-webc-core": "0.24.
|
|
45
|
+
"@justeattakeaway/pie-icon-button": "0.28.14",
|
|
46
|
+
"@justeattakeaway/pie-icons-webc": "0.25.3",
|
|
47
|
+
"@justeattakeaway/pie-webc-core": "0.24.2"
|
|
48
48
|
},
|
|
49
49
|
"volta": {
|
|
50
50
|
"extends": "../../../package.json"
|
package/src/defs-react.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import type React from 'react';
|
|
2
2
|
/**
|
|
3
3
|
* TODO: Update the React base type as soon as the notification component markup is defined
|
|
4
4
|
* Use the React IntrinsicElements interface to find how to map standard HTML elements to existing React Interfaces
|
package/src/react.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { createComponent, EventName } from '@lit/react';
|
|
2
|
+
import { createComponent, type EventName } from '@lit/react';
|
|
3
3
|
import { PieNotification as PieNotificationLit } from './index';
|
|
4
|
-
import { NotificationProps } from './defs';
|
|
4
|
+
import { type NotificationProps } from './defs';
|
|
5
5
|
|
|
6
6
|
export * from './defs';
|
|
7
7
|
|