@justeattakeaway/pie-card 0.21.1 → 0.21.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 +4 -4
- package/src/defs-react.ts +1 -1
- package/src/index.ts +2 -2
- package/src/react.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-card",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.2",
|
|
4
4
|
"description": "PIE Design System Card built using Web Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,12 +37,12 @@
|
|
|
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-webc-core": "0.24.
|
|
45
|
+
"@justeattakeaway/pie-webc-core": "0.24.2"
|
|
46
46
|
},
|
|
47
47
|
"volta": {
|
|
48
48
|
"extends": "../../../package.json"
|
package/src/defs-react.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
-
html, LitElement, unsafeCSS, nothing, TemplateResult, type PropertyValues,
|
|
2
|
+
html, LitElement, unsafeCSS, nothing, type TemplateResult, type PropertyValues,
|
|
3
3
|
} from 'lit';
|
|
4
4
|
import { classMap, type ClassInfo } from 'lit/directives/class-map.js';
|
|
5
5
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
@@ -9,7 +9,7 @@ import styles from './card.scss?inline';
|
|
|
9
9
|
import {
|
|
10
10
|
variants,
|
|
11
11
|
tags,
|
|
12
|
-
CardProps,
|
|
12
|
+
type CardProps,
|
|
13
13
|
defaultProps,
|
|
14
14
|
paddingValues,
|
|
15
15
|
} from './defs';
|
package/src/react.ts
CHANGED