@justeattakeaway/pie-webc 0.0.0-snapshot-release-20240229152723

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/README.md ADDED
@@ -0,0 +1,39 @@
1
+ <p align="center">
2
+ <img align="center" src="../../../readme_image.png" height="200" alt="">
3
+ </p>
4
+
5
+ <p align="center">
6
+ <a href="https://www.npmjs.com/@justeattakeaway/pie-webc">
7
+ <img alt="GitHub Workflow Status" src="https://img.shields.io/npm/v/@justeattakeaway/pie-webc.svg">
8
+ </a>
9
+ </p>
10
+
11
+ # Table of Contents
12
+
13
+ 1. [Introduction](#pie-webc)
14
+ 2. [Installation](#installation)
15
+ 3. [Contributing](#contributing)
16
+
17
+ ## pie-webc
18
+
19
+ `pie-webc` is a bundle that contains all PIE web components built using the Lit library.
20
+
21
+ This package can be easily integrated into various frontend frameworks and customized through a set of properties.
22
+
23
+ ## Installation
24
+
25
+ To install `pie-webc` in your application, run the following on your command line:
26
+
27
+ ```bash
28
+ # npm
29
+ $ npm i @justeattakeaway/pie-webc
30
+
31
+ # yarn
32
+ $ yarn add @justeattakeaway/pie-webc
33
+ ```
34
+
35
+ For full information on using PIE components as part of an application, check out the [Getting Started Guide](https://github.com/justeattakeaway/pie/wiki/Getting-started-with-PIE-Web-Components).
36
+
37
+ ## Contributing
38
+
39
+ Check out our [contributing guide](https://github.com/justeattakeaway/pie/wiki/Contributing-Guide) for more information on [local development](https://github.com/justeattakeaway/pie/wiki/Contributing-Guide#local-development) and how to run specific [component tests](https://github.com/justeattakeaway/pie/wiki/Contributing-Guide#testing).
@@ -0,0 +1,8 @@
1
+ import { PieButton } from '@justeattakeaway/pie-button';
2
+ import { PieModal } from '@justeattakeaway/pie-modal';
3
+
4
+ export { PieButton }
5
+
6
+ export { PieModal }
7
+
8
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ import { PieButton as r } from "@justeattakeaway/pie-button";
2
+ import { PieModal as f } from "@justeattakeaway/pie-modal";
3
+ export {
4
+ r as PieButton,
5
+ f as PieModal
6
+ };
@@ -0,0 +1,8 @@
1
+ import { PieButton } from '@justeattakeaway/pie-button/dist/react';
2
+ import { PieModal } from '@justeattakeaway/pie-modal/dist/react';
3
+
4
+ export { PieButton }
5
+
6
+ export { PieModal }
7
+
8
+ export { }
package/dist/react.js ADDED
@@ -0,0 +1,6 @@
1
+ import { PieButton as r } from "@justeattakeaway/pie-button/dist/react";
2
+ import { PieModal as f } from "@justeattakeaway/pie-modal/dist/react";
3
+ export {
4
+ r as PieButton,
5
+ f as PieModal
6
+ };
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@justeattakeaway/pie-webc",
3
+ "description": "Component bundle containing all PIE web components",
4
+ "version": "0.0.0-snapshot-release-20240229152723",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "**/*.d.ts"
12
+ ],
13
+ "scripts": {
14
+ "build": "run -T vite build",
15
+ "lint:scripts": "run -T eslint .",
16
+ "lint:scripts:fix": "yarn lint:scripts --fix",
17
+ "lint:style": "echo \"Error: no scss / css to lint\" && exit 0",
18
+ "lint:style:fix": "yarn lint:style --fix",
19
+ "watch": "run -T vite build --watch",
20
+ "test": "echo \"Error: no test specified\" && exit 0",
21
+ "test:ci": "yarn test"
22
+ },
23
+ "author": "Just Eat Takeaway.com - Design System Team",
24
+ "license": "Apache-2.0",
25
+ "devDependencies": {
26
+ "@justeattakeaway/pie-components-config": "0.11.0"
27
+ },
28
+ "dependencies": {
29
+ "@justeattakeaway/pie-button": "0.0.0-snapshot-release-20240229152723",
30
+ "@justeattakeaway/pie-modal": "0.0.0-snapshot-release-20240229152723",
31
+ "@justeattakeaway/pie-webc-core": "0.19.0"
32
+ },
33
+ "volta": {
34
+ "extends": "../../../package.json"
35
+ },
36
+ "sideEffects": [
37
+ "dist/*.js"
38
+ ]
39
+ }