@zidsa/zidmui 1.4.38 → 1.4.39

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +27 -25
  3. package/package.json +9 -1
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Zid
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,40 +1,42 @@
1
- ## Installation
1
+ <!-- markdownlint-disable-next-line -->
2
+ <p align="center">
3
+ <a href="https://zid.sa/en/" rel="noopener" target="_blank"><img width="200" src="https://firebasestorage.googleapis.com/v0/b/standards-site-beta.appspot.com/o/documents%2Fd2n52d1l8uy%2F72b4eea4275%2F%5BZid%5D%20Logo_EN_1733924236833_2500x2500.png?alt=media&token=3387b769f69" alt="Zid logo"></a>
4
+ </p>
5
+
6
+ <h1 align="center">Zid MUI</h1>
7
+
8
+ <div align="center">
2
9
 
3
- This project uses pnpm as package manager, It's imperative to use pnpm to keep package lock consistent. Please make sure to install it first https://pnpm.io/installation.
10
+ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/zidsa/zidmui/blob/HEAD/LICENSE)
11
+ [![npm latest package](https://img.shields.io/npm/v/@zidsa/zidmui/latest.svg)](https://www.npmjs.com/package/@zidsa/zidmui)
12
+ [![npm downloads](https://img.shields.io/npm/dm/@zidsa/zidmui.svg)](https://www.npmjs.com/package/@zidsa/zidmui)
13
+
14
+ </div>
15
+
16
+ [Zid MUI](https://kit.zid.sa) is a React component library built on the [Parcel](https://brand.zid.sa) design system, adhering to [Zid's brand guidelines](https://brand.zid.sa). It provides shared components, icons, hooks, and theme utilities for building consistent UIs across Zid products.
17
+
18
+ ## Installation
4
19
 
5
20
  ```sh
6
21
  pnpm add @zidsa/zidmui
7
22
  ```
8
23
 
9
- Install https://taskfile.dev/installation/ to run project tasks
24
+ ## Documentation
10
25
 
11
- ```bash
12
- $ task install
13
- ```
26
+ Get started in the [Zid MUI documentation](https://kit.zid.sa).
14
27
 
15
- ## Running the app
28
+ ## Questions
16
29
 
17
- ```bash
18
- # run build
19
- $ task build
30
+ For how-to questions and bug reports, please use [GitHub Issues](https://github.com/zidsa/zidmui/issues).
20
31
 
21
- # list all available tasks
22
- $ task
23
- ```
32
+ ## Contributing
24
33
 
25
- ## Test
34
+ Read the [contributing guide](/CONTRIBUTING.md) to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.
26
35
 
27
- ```bash
28
- # unit tests
29
- $ task test
30
- ```
36
+ ## Changelog
31
37
 
32
- ## Lint
38
+ The [changelog](https://github.com/zidsa/zidmui/releases) is regularly updated to reflect what's changed in each new release.
33
39
 
34
- ```bash
35
- # lint and fix any issues
36
- $ task lint
40
+ ## License
37
41
 
38
- # lint and and report any issues without fixing them
39
- $ task lint-check
40
- ```
42
+ This project is licensed under the terms of the [MIT license](/LICENSE).
package/package.json CHANGED
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "@zidsa/zidmui",
3
3
  "type": "module",
4
- "version": "1.4.38",
4
+ "version": "1.4.39",
5
5
  "description": "Zid MUI shared components and utilities",
6
6
  "author": "Abdulaziz Homaily <a.homaily@gmail.com>",
7
7
  "license": "MIT",
8
+ "keywords": [
9
+ "react",
10
+ "react-component",
11
+ "mui",
12
+ "material-ui",
13
+ "material design",
14
+ "zid"
15
+ ],
8
16
  "publishConfig": {
9
17
  "registry": "https://registry.npmjs.org/",
10
18
  "access": "public"