@incursa/ui-kit 1.7.0 → 1.8.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/NOTICE +8 -0
- package/README.md +16 -0
- package/dist/icons/index.js +371 -0
- package/dist/icons/package.json +3 -0
- package/dist/inc-design-language.css +34 -1
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.js +1558 -1462
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/dist/mcp/components/cards.json +3 -3
- package/dist/mcp/components/metrics.json +3 -3
- package/dist/mcp/components/states.json +3 -3
- package/dist/mcp/examples/data-grid-advanced.json +2 -2
- package/dist/mcp/examples/demo.json +2 -2
- package/dist/mcp/examples/overlay-workflows.json +2 -2
- package/dist/mcp/examples/reference.json +2 -2
- package/dist/mcp/examples/states.json +2 -2
- package/dist/mcp/examples/web-components.json +2 -2
- package/dist/mcp/guides/latest.json +2 -2
- package/dist/mcp/guides/package-metadata.json +2 -2
- package/dist/mcp/guides/update.json +2 -2
- package/dist/mcp/install.json +1 -1
- package/dist/mcp/patterns/data-grid-advanced.json +2 -2
- package/dist/mcp/patterns/demo.json +2 -2
- package/dist/mcp/patterns/overlay-workflows.json +2 -2
- package/dist/mcp/patterns/reference.json +2 -2
- package/dist/mcp/patterns/states.json +2 -2
- package/dist/mcp/patterns/web-components.json +2 -2
- package/dist/mcp/resources.json +77 -74
- package/dist/mcp/search-index.json +21 -21
- package/dist/mcp/update.json +2 -2
- package/dist/mcp/worker.mjs +164 -281
- package/dist/mcp/worker.mjs.map +2 -2
- package/dist/web-components/README.md +4 -0
- package/dist/web-components/components/actions.js +149 -2
- package/dist/web-components/components/feedback.js +63 -12
- package/dist/web-components/index.js +501 -14
- package/package.json +10 -3
- package/src/icons/index.js +229 -0
- package/src/icons/package.json +3 -0
- package/src/inc-design-language.js +12 -11
- package/src/inc-design-language.scss +38 -1
- package/src/web-components/README.md +4 -0
- package/src/web-components/components/actions.js +149 -2
- package/src/web-components/components/feedback.js +63 -12
package/dist/mcp/update.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"title": "Update",
|
|
3
3
|
"summary": "Package-manager update commands and release-review guidance.",
|
|
4
4
|
"packageName": "@incursa/ui-kit",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.8.0",
|
|
6
6
|
"commands": {
|
|
7
7
|
"npm": "npm install @incursa/ui-kit@latest",
|
|
8
8
|
"pnpm": "pnpm up @incursa/ui-kit",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"Review the changelog and regenerated MCP manifests after each upgrade.",
|
|
17
17
|
"Verify that the compiled CSS, JS helper, and web-components entrypoints still match the package contract."
|
|
18
18
|
],
|
|
19
|
-
"latestReleaseNotes": "-
|
|
19
|
+
"latestReleaseNotes": "- Added a semantic Incursa icon layer with Lucide-backed defaults, a public @incursa/ui-kit/icons entrypoint, and a global renderer override for consumers.\n- Added default semantic icons to alerts, empty states, state panels, buttons, and auto-refresh controls while keeping decorative icons hidden from assistive technology.\n- Replaced placeholder glyphs across the showcase and refreshed generated package, MCP, and browser snapshot artifacts for the new icon standard.",
|
|
20
20
|
"relatedUris": [
|
|
21
21
|
"ui-kit://release-notes/latest",
|
|
22
22
|
"ui-kit://package-metadata"
|