@justeattakeaway/pie-button 0.12.1 → 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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +7 -0
- package/dist/index.js +0 -0
- package/dist/types/index.d.ts +0 -0
- package/dist/types/src/decorators.d.ts +0 -0
- package/dist/types/src/decorators.d.ts.map +0 -0
- package/dist/types/src/defs.d.ts +0 -0
- package/dist/types/src/defs.d.ts.map +0 -0
- package/dist/types/src/index.d.ts +0 -0
- package/dist/types/src/index.d.ts.map +1 -1
- package/package.json +4 -1
- package/src/index.ts +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,6 +6,6 @@ computing gzip size...
|
|
|
6
6
|
[2mdist/[22m[36mindex.js [39m[1m[2m4.32 kB[22m[1m[22m[2m │ gzip: 1.65 kB[22m
|
|
7
7
|
[32m
|
|
8
8
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
9
|
-
[32m✓[39m built in
|
|
10
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
9
|
+
[32m✓[39m built in 24.29s
|
|
10
|
+
[32m[36m[vite:dts][32m Declaration files built in 23021ms.
|
|
11
11
|
[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`1f79d9d1a`](https://github.com/justeattakeaway/pie/commit/1f79d9d1a6fe9160b244e82d956290136b87187b)]:
|
|
8
|
+
- @justeattakeaway/pie-webc-core@0.1.0
|
|
9
|
+
|
|
3
10
|
## 0.12.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
File without changes
|
package/dist/types/index.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/types/src/defs.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAmB,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAmB,MAAM,KAAK,CAAC;AAKlD,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAGlE,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,cAAc,EAAE,CAAC;AAEpD,qBACa,SAAU,SAAQ,UAAU;IAGjC,IAAI,EAAG,WAAW,CAAsB;IAIxC,IAAI,EAAG,WAAW,CAAsB;IAIxC,OAAO,EAAG,cAAc,CAA0B;IAGlD,QAAQ,UAAS;IAGjB,WAAW,UAAS;IAExB,MAAM;IAwBN,MAAM,CAAC,MAAM,0BAAqB;CACrC;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,YAAY,EAAE,SAAS,CAAC;KAC3B;CACJ"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-button",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "PIE design system button built using web components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
},
|
|
18
18
|
"author": "JustEatTakeaway - Design System Web Team",
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@justeattakeaway/pie-webc-core": "workspace:*"
|
|
22
|
+
},
|
|
20
23
|
"volta": {
|
|
21
24
|
"extends": "../../../package.json"
|
|
22
25
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { LitElement, html, unsafeCSS } from 'lit';
|
|
2
2
|
import { classMap } from 'lit/directives/class-map.js';
|
|
3
3
|
import { customElement, property } from 'lit/decorators.js';
|
|
4
|
-
|
|
5
4
|
import styles from './button.scss?inline';
|
|
6
5
|
import { validPropertyValues } from './decorators';
|
|
7
6
|
import { BUTTON_SIZE, BUTTON_TYPE, BUTTON_VARIANT } from './defs';
|