Skip to content

Commit

Permalink
chore(main): release zeta-web 0.3.0 (#1)
Browse files Browse the repository at this point in the history
* chore(main): release zeta-web 0.3.0

* Generated locales

---------

Co-authored-by: github-actions <[email protected]>
  • Loading branch information
thelukewalton and github-actions committed Dec 3, 2024
1 parent ecbc8d9 commit da14d9a
Show file tree
Hide file tree
Showing 7 changed files with 151 additions and 116 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0"
".": "0.3.0"
}
2 changes: 1 addition & 1 deletion .storybook/preview-head.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
}
.sbdocs.sbdocs-content:last-child:after {
/* x-release-please-start-version */
content: "zeta-web v0.2.0";
content: "zeta-web v0.3.0";
/* x-release-please-end */
}
details.repo-header {
Expand Down
208 changes: 135 additions & 73 deletions CHANGELOG.md

Large diffs are not rendered by default.

39 changes: 3 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
<details class="repo-header">
<summary>Zebra Repository Information</summary>
<ul>
<li> Zebra Business Unit : DMO - Innovation & Design</li>
<li> Zebra Manager : ncvt73 </li>
<li> Zebra Repo Admin: ncvt73 </li>
<li> Zebra Jira Project ID: UX </li>
<li> Product: Zebra Design System (Zeta) - Web Components Library </li>
<li> Topics: none </li>
</ul>
</details>

<h1 class='sbdocs-title'>@zebra-fed/zeta-web</h1>

Zeta Web is a native web component library created by Zebra Technologies written in TypeScript.
Expand All @@ -31,16 +19,6 @@ Zeta Web Components can be directly used in many web frameworks.
1. Install `@zebra-fed/zeta-web`

```sh
# NPM
npm install git+https://github.com/zebratechnologies/zeta-web.git
# YARN
yarn add git+https://github.com/zebratechnologies/zeta-web.git
```

<details>
<summary>🚧 <b>Note</b>: Public npm / yarn links coming soon.</summary>

```sh
# Future install instructions
# NPM
Expand All @@ -49,8 +27,6 @@ Zeta Web Components can be directly used in many web frameworks.
yarn add @zebra-fed/zeta-web
```

</details>

2. Import the desired Zeta Web Component into your app:

```js
Expand All @@ -64,14 +40,8 @@ Zeta Web Components can be directly used in many web frameworks.
or in HTML,

```html
<link
rel="stylesheet"
href="./node_modules/@zebra-fed/zeta-web/dist/style.css"
/>
<script
type="module"
src="./node_modules/@zebra-fed/zeta-web/dist/components/button/button.js"
></script>
<link rel="stylesheet" href="./node_modules/@zebra-fed/zeta-web/dist/style.css" />
<script type="module" src="./node_modules/@zebra-fed/zeta-web/dist/components/button/button.js"></script>
```

You can also import the full package:
Expand All @@ -84,10 +54,7 @@ Zeta Web Components can be directly used in many web frameworks.
This is a temporary step for now. This will be automatically imported where needed in the future.

```html
<link
rel="stylesheet"
href="./node_modules/@zebra-fed/zeta-icons/dist/style.css"
/>
<link rel="stylesheet" href="./node_modules/@zebra-fed/zeta-icons/dist/style.css" />
```

4. Use the Web Component like any HTML element
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zebra-fed/zeta-web",
"version": "0.2.0",
"version": "0.3.0",
"files": [
"dist",
"custom-elements.json",
Expand All @@ -17,7 +17,13 @@
"./index.css": "./dist/index.css"
},
"description": "Zebra Zeta Design System - Web Components",
"repository": "https://github.com/zebratechnologies/zeta-web",
"repository": {
"type": "git",
"url": "git+https://github.com/ZebraDevs/zeta-web.git"
},
"publishConfig": {
"access": "public"
},
"author": "Zebra Front-end Development Team",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ export {
ZetaTopAppbar,
ZetaUploadItem,
ZetaWorkcloudIndicator
};
};

0 comments on commit da14d9a

Please sign in to comment.