@prokodo/ui 1.0.2 → 1.0.3
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
CHANGED
|
@@ -64,16 +64,6 @@ Each component is built for **lazy loading**, works seamlessly with **React Serv
|
|
|
64
64
|
|
|
65
65
|
This makes `@prokodo/ui` ideal for modern SSR apps using Next.js or Remix, with excellent Time-to-Interactive (TTI) and Core Web Vitals.
|
|
66
66
|
|
|
67
|
-
## 📄 License & Usage
|
|
68
|
-
|
|
69
|
-
| | |
|
|
70
|
-
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
71
|
-
| **License** | [Apache-2.0](LICENSE) — free for production use, modification, and redistribution |
|
|
72
|
-
| **Trademark** | "prokodo" and the prokodo logo are trademarks of prokodo (Christian Salat). See [TRADEMARKS.md](TRADEMARKS.md) |
|
|
73
|
-
| **Brand theme** | Signature visuals (logo, illustrations, special glow patterns) may appear in docs/Storybook but are not distributed in the npm package |
|
|
74
|
-
| **Contributing** | Sign-off required (DCO 1.1). See [CONTRIBUTING.md](CONTRIBUTING.md) |
|
|
75
|
-
| **Security** | Responsible disclosure via GitHub Advisories. See [SECURITY.md](SECURITY.md) |
|
|
76
|
-
|
|
77
67
|
---
|
|
78
68
|
|
|
79
69
|
## 🚀 Getting Started
|
|
@@ -96,29 +86,15 @@ npm install @prokodo/ui
|
|
|
96
86
|
| 🎨 Interactive component explorer | [ui.prokodo.com/storybook](https://ui.prokodo.com/storybook) |
|
|
97
87
|
| 📦 npm | [npmjs.com/package/@prokodo/ui](https://www.npmjs.com/package/@prokodo/ui) |
|
|
98
88
|
|
|
99
|
-
##
|
|
100
|
-
|
|
101
|
-
| | |
|
|
102
|
-
| --------------------------------- | ------------------------------------------------------------ |
|
|
103
|
-
| 📖 Docs & API reference | [ui.prokodo.com](https://ui.prokodo.com) |
|
|
104
|
-
| 🎨 Component explorer (Storybook) | [ui.prokodo.com/storybook](https://ui.prokodo.com/storybook) |
|
|
105
|
-
|
|
106
|
-
## 🛠 Local Development
|
|
107
|
-
|
|
108
|
-
```bash
|
|
109
|
-
pnpm i
|
|
110
|
-
pnpm dev # Start Vite dev server
|
|
111
|
-
pnpm storybook # Start Storybook locally
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
To build:
|
|
115
|
-
|
|
116
|
-
```bash
|
|
117
|
-
pnpm run build
|
|
118
|
-
pnpm run storybook:build
|
|
119
|
-
```
|
|
89
|
+
## 📄 License & Usage
|
|
120
90
|
|
|
121
|
-
|
|
91
|
+
| | |
|
|
92
|
+
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
93
|
+
| **License** | [Apache-2.0](LICENSE) — free for production use, modification, and redistribution |
|
|
94
|
+
| **Trademark** | "prokodo" and the prokodo logo are trademarks of prokodo (Christian Salat). See [TRADEMARKS.md](TRADEMARKS.md) |
|
|
95
|
+
| **Brand theme** | Signature visuals (logo, illustrations, special glow patterns) may appear in docs/Storybook but are not distributed in the npm package |
|
|
96
|
+
| **Contributing** | Sign-off required (DCO 1.1). See [CONTRIBUTING.md](CONTRIBUTING.md) |
|
|
97
|
+
| **Security** | Responsible disclosure via GitHub Advisories. See [SECURITY.md](SECURITY.md) |
|
|
122
98
|
|
|
123
99
|
This library is published under the [Apache License 2.0](LICENSE).
|
|
124
100
|
|
|
@@ -158,6 +158,8 @@
|
|
|
158
158
|
align-items: center;
|
|
159
159
|
z-index: var(--pk-z-modal);
|
|
160
160
|
background-color: rgb(var(--pk-color-overlay-rgb)/var(--pk-color-overlay-alpha));
|
|
161
|
+
}
|
|
162
|
+
.prokodo-Dialog__backdrop {
|
|
161
163
|
animation: Dialog_backdropFadeIn var(--pk-timing-normal) ease;
|
|
162
164
|
}
|
|
163
165
|
.prokodo-Dialog__backdrop--is-visible {
|
|
@@ -158,6 +158,8 @@
|
|
|
158
158
|
align-items: center;
|
|
159
159
|
z-index: var(--pk-z-modal);
|
|
160
160
|
background-color: rgb(var(--pk-color-overlay-rgb)/var(--pk-color-overlay-alpha));
|
|
161
|
+
}
|
|
162
|
+
.prokodo-Dialog__backdrop {
|
|
161
163
|
animation: Dialog_backdropFadeIn var(--pk-timing-normal) ease;
|
|
162
164
|
}
|
|
163
165
|
.prokodo-Dialog__backdrop--is-visible {
|
package/dist/theme.css
CHANGED
|
@@ -2495,6 +2495,8 @@ html[data-theme=dark],
|
|
|
2495
2495
|
align-items: center;
|
|
2496
2496
|
z-index: var(--pk-z-modal);
|
|
2497
2497
|
background-color: rgb(var(--pk-color-overlay-rgb)/var(--pk-color-overlay-alpha));
|
|
2498
|
+
}
|
|
2499
|
+
.prokodo-Dialog__backdrop {
|
|
2498
2500
|
animation: Dialog_backdropFadeIn var(--pk-timing-normal) ease;
|
|
2499
2501
|
}
|
|
2500
2502
|
.prokodo-Dialog__backdrop--is-visible {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prokodo/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "UI components for production-grade Next.js + Headless CMS (Strapi, Contentful, Headless WordPress) websites by prokodo – built for Core Web Vitals & SEO.",
|
|
6
6
|
"sideEffects": [
|