@incursa/ui-kit 0.2.1 → 0.3.0
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 +20 -10
- package/dist/inc-design-language.css +328 -61
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.js +128 -0
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/package.json +5 -1
- package/src/inc-design-language.js +128 -0
- package/src/inc-design-language.scss +256 -8
package/README.md
CHANGED
|
@@ -56,6 +56,8 @@ Licensed under Apache 2.0.
|
|
|
56
56
|
Three-column detail example with action rail.
|
|
57
57
|
- `native-patterns.html`
|
|
58
58
|
Native-first details/menu/dialog example.
|
|
59
|
+
- `overlay-workflows.html`
|
|
60
|
+
Modal and offcanvas workflow example with validation and assignment flows.
|
|
59
61
|
- `reference.html`
|
|
60
62
|
Copy/paste catalog for the standard controls and markup patterns.
|
|
61
63
|
- `states.html`
|
|
@@ -116,7 +118,7 @@ If you just want the look in another app:
|
|
|
116
118
|
3. Load the CSS after your reset or base stylesheet.
|
|
117
119
|
4. Load the optional JS near the end of the page.
|
|
118
120
|
5. Use the `inc-*` classes shown in `reference.html` for direct copy/paste control markup.
|
|
119
|
-
6. Check `states.html`, `forms-and-validation.html`,
|
|
121
|
+
6. Check `states.html`, `forms-and-validation.html`, `data-grid-advanced.html`, and `overlay-workflows.html` for the workflow-heavy patterns that do not read well as isolated snippets.
|
|
120
122
|
7. Use `demo.html`, `work-queue.html`, `record-detail.html`, and `native-patterns.html` for fuller page composition.
|
|
121
123
|
|
|
122
124
|
## Use it as a package
|
|
@@ -198,10 +200,26 @@ This repository is set up for:
|
|
|
198
200
|
|
|
199
201
|
- CI on pushes and pull requests via `.github/workflows/ci.yml`
|
|
200
202
|
- GitHub Pages showcase deployment from `main` via `.github/workflows/pages.yml`
|
|
201
|
-
- npm Trusted Publishing on
|
|
203
|
+
- npm Trusted Publishing on `v*` tag pushes via `.github/workflows/npm-publish.yml`
|
|
202
204
|
- Public release hygiene through `LICENSE`, `CHANGELOG.md`, `CONTRIBUTING.md`, and `RELEASING.md`
|
|
203
205
|
- Brand assets in `assets/brand/` so README and future docs do not depend on external image hosting
|
|
204
206
|
|
|
207
|
+
## Release flow
|
|
208
|
+
|
|
209
|
+
For normal releases:
|
|
210
|
+
|
|
211
|
+
1. Merge the source changes you want on `main`.
|
|
212
|
+
2. Run the release helper from PowerShell:
|
|
213
|
+
|
|
214
|
+
```powershell
|
|
215
|
+
.\release.ps1 -ReleaseType patch -Changelog @"
|
|
216
|
+
- Summarize the release here.
|
|
217
|
+
- Add more markdown if needed.
|
|
218
|
+
"@
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
Use `minor` or `major` when needed. The script verifies the repo state, bumps the version, runs the package validation step, updates `CHANGELOG.md`, creates the release commit and tag, and pushes them. Pushing the tag publishes the package to npm automatically.
|
|
222
|
+
|
|
205
223
|
## Use it as source
|
|
206
224
|
|
|
207
225
|
If you want to keep editing it:
|
|
@@ -221,11 +239,3 @@ $inc-font-family-sans: "Aptos", "Segoe UI", sans-serif;
|
|
|
221
239
|
|
|
222
240
|
@import "./src/inc-design-language";
|
|
223
241
|
```
|
|
224
|
-
|
|
225
|
-
## Suggested next extensions
|
|
226
|
-
|
|
227
|
-
- Add a spacing/visibility utility layer if you want the package to stand more independently from Bootstrap utilities.
|
|
228
|
-
- Split tables into clearer grid families if products start diverging:
|
|
229
|
-
base, compact review grid, analytics grid, and spreadsheet-like grid.
|
|
230
|
-
- Add modal/offcanvas examples that use the same drawer and validation primitives shown in the new pages.
|
|
231
|
-
- Replace the `@extend`-heavy wrappers with mixins or direct declarations if you want less Bootstrap coupling over time.
|