najwer23morsels 0.8.10 → 0.8.12

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 (2) hide show
  1. package/README.md +5 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,12 @@
1
- The najwer23morsels npm package offers React user interface components that support styling through configurable parameters or by applying custom CSS classes. This design system uses native CSS features, mainly global CSS variables, to enable comprehensive customization of component appearance. Instead of relying on external styling libraries, you can control the look and feel by overriding these CSS variables or by adding your own CSS rules. This method ensures that styling remains straightforward, maintainable, and fully compatible with standard web technologies. By following native CSS conventions, the package provides a flexible and efficient way to adapt the design system to different branding requirements or design preferences while keeping the styling logic clear and easy to manage.
1
+ The najwer23morsels npm package offers React user interface components designed for flexible and customizable styling. It supports styling through configurable parameters passed as React props, allowing you to easily adjust the appearance of components within your React code. Additionally, you can apply custom CSS classes for more granular control.
2
2
 
3
- [![NPM Downloads](https://img.shields.io/npm/dm/najwer23morsels?style=for-the-badge&logo=npm&logoColor=white)](https://www.npmjs.com/package/najwer23morsels)
3
+ This design system leverages native CSS features, primarily global CSS variables, to enable comprehensive customization of component styles. Instead of relying on external styling libraries, you can override these CSS variables or add your own CSS rules to control the look and feel. This approach ensures that styling remains straightforward, maintainable, and fully compatible with standard web technologies.
4
+
5
+ By following native CSS conventions, the package provides a flexible and efficient way to adapt the design system to different branding requirements or design preferences while keeping the styling logic clear and easy to manage. Using React props for styling alongside CSS variable overrides offers a powerful combination for both dynamic and static style customization.
4
6
 
5
7
  # najwer23morsels
6
8
 
7
- [![Storybook](https://img.shields.io/badge/-Storybook-FF4785?style=for-the-badge&logo=storybook&logoColor=white)](https://najwer23.github.io/najwer23morsels) [![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white)](https://github.com/najwer23/najwer23morsels) [![NPM](https://img.shields.io/badge/NPM-%23CB3837.svg?style=for-the-badge&logo=npm&logoColor=white)](https://www.npmjs.com/search?q=najwer23morsels)
9
+ [![Storybook](https://img.shields.io/badge/-Storybook-FF4785?style=for-the-badge&logo=storybook&logoColor=white)](https://najwer23.github.io/najwer23morsels) [![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white)](https://github.com/najwer23/najwer23morsels) [![NPM](https://img.shields.io/badge/NPM-%23CB3837.svg?style=for-the-badge&logo=npm&logoColor=white)](https://www.npmjs.com/search?q=najwer23morsels) [![NPM Downloads](https://img.shields.io/npm/dm/najwer23morsels?style=for-the-badge&logo=npm&logoColor=white)](https://www.npmjs.com/package/najwer23morsels)
8
10
 
9
11
  1. Reusable UI Components
10
12
  2. Documentation and Guidelines
@@ -13,8 +15,6 @@ The najwer23morsels npm package offers React user interface components that supp
13
15
  5. Tree shaking
14
16
  6. Your own custom CSS classes
15
17
 
16
- # Install
17
-
18
18
  ```js
19
19
  yarn add najwer23morsels --dev
20
20
  ```
@@ -23,8 +23,6 @@ yarn add najwer23morsels --dev
23
23
  npm install najwer23morsels --save-dev
24
24
  ```
25
25
 
26
- # Example
27
-
28
26
  ```typescript
29
27
  import { TextBox } from "najwer23morsels/lib/textbox";
30
28
 
@@ -37,8 +35,6 @@ export const Example = () => {
37
35
  }
38
36
  ```
39
37
 
40
- ### Global css variables available
41
-
42
38
  ```css
43
39
  :root {
44
40
  /* Main */
@@ -60,8 +56,6 @@ export const Example = () => {
60
56
  }
61
57
  ```
62
58
 
63
- # Let's connect!
64
-
65
59
  [![Portfolio](https://img.shields.io/badge/Portfolio-9F2B68?style=for-the-badge&logo=paintbrush&logoColor=white)](https://najwer23.github.io/)
66
60
  [![Résumé](https://img.shields.io/badge/Résumé-017745?style=for-the-badge&logo=adobeacrobatreader&logoColor=white)](https://najwer23.github.io/resume/)
67
61
  [![X](https://img.shields.io/badge/X-000000?style=for-the-badge&logo=x&logoColor=white)](https://twitter.com/najwer23)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "najwer23morsels",
3
- "version": "0.8.10",
3
+ "version": "0.8.12",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./lib/index.mjs",
6
6
  "types": "./lib/index.d.ts",