@7onic-ui/react 0.2.4 → 0.2.6
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 +3 -3
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -4
- package/dist/index.mjs.map +1 -1
- package/llms.txt +10 -4
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -263,10 +263,10 @@ Works with Claude Code, Cursor, GitHub Copilot, ChatGPT, and any AI tool that re
|
|
|
263
263
|
- [x] Automated doc verification (8 checks, AST-powered, blocks publish on error)
|
|
264
264
|
- [x] Automated component verification (7 checks — hardcoded colors, tokens, dark mode, dead code)
|
|
265
265
|
- [x] Multilingual documentation — English, Japanese, Korean (powered by next-intl)
|
|
266
|
-
- [x] npm package distribution — `@7onic-ui/react` + `@7onic-ui/tokens` v0.2.
|
|
266
|
+
- [x] npm package distribution — `@7onic-ui/react` + `@7onic-ui/tokens` v0.2.5
|
|
267
267
|
- [x] AI integration — `llms.txt` standard, setup guides for Claude Code / Cursor / Copilot / ChatGPT
|
|
268
268
|
- [x] `npx 7onic add` CLI (shadcn-style) — source copy with dependency resolution
|
|
269
|
-
- [x] `npx 7onic init` Vite support — `tsconfig.app.json` detection, `@import "tailwindcss"` + `@source` auto-inject
|
|
269
|
+
- [x] `npx 7onic init` Vite support — `tsconfig.app.json` detection, `@import "tailwindcss"` + `@source` auto-inject, `@/` path alias auto-configure
|
|
270
270
|
- [ ] Theme Customizer — live palette preview + CSS variable export
|
|
271
271
|
- [ ] Figma UI Kit
|
|
272
272
|
- [ ] Dashboard / landing templates
|
|
@@ -290,5 +290,5 @@ MIT
|
|
|
290
290
|
<p align="center">
|
|
291
291
|
<strong>One JSON, every format — from Figma to production.</strong><br>
|
|
292
292
|
Independently built.<br>
|
|
293
|
-
<sub>Last updated: 2026-04-15</sub>
|
|
293
|
+
<sub>Last updated: 2026-04-15 (v0.2.5)</sub>
|
|
294
294
|
</p>
|
package/dist/index.js
CHANGED
|
@@ -4919,9 +4919,8 @@ var PaginationRoot = React26.forwardRef(
|
|
|
4919
4919
|
color = "default",
|
|
4920
4920
|
radius = "md",
|
|
4921
4921
|
disabled = false,
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
withEdges: _withEdges = false,
|
|
4922
|
+
withControls = true,
|
|
4923
|
+
withEdges = false,
|
|
4925
4924
|
loop = false,
|
|
4926
4925
|
children,
|
|
4927
4926
|
...props
|
|
@@ -4959,7 +4958,7 @@ var PaginationRoot = React26.forwardRef(
|
|
|
4959
4958
|
className: cn("", className),
|
|
4960
4959
|
...props
|
|
4961
4960
|
},
|
|
4962
|
-
children
|
|
4961
|
+
children ?? /* @__PURE__ */ React26.createElement(PaginationContent, null, withEdges && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationFirst, null)), withControls && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationPrevious, null)), /* @__PURE__ */ React26.createElement(PaginationItems, null), withControls && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationNext, null)), withEdges && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationLast, null)))
|
|
4963
4962
|
));
|
|
4964
4963
|
}
|
|
4965
4964
|
);
|