@jboltai/tokui 0.1.1 → 0.1.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 +1 -1
- package/README_EN.md +2 -2
- package/dist/tokui.cjs +9 -7
- package/dist/tokui.cjs.map +1 -1
- package/dist/tokui.css +1 -1
- package/dist/tokui.mjs +4147 -972
- package/dist/tokui.mjs.map +1 -1
- package/dist/tokui.umd.js +9 -7
- package/dist/tokui.umd.js.map +1 -1
- package/package.json +3 -2
- package/src/server/tokui-builder.js +25 -5
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](#)
|
|
11
11
|
[](https://bundlephobia.com/package/@jboltai/tokui)
|
|
12
12
|
|
|
13
|
-
[
|
|
13
|
+
[官网文档站](https://tokui.jboltai.com/) · [组件画廊演示](https://tokui_demo.jboltai.com/) · [DSL 完整参考](./demo/TOKUI_DSL_REFERENCE.md) · [在线体验(StackBlitz)](https://stackblitz.com/github/jboltai/tokui)
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
package/README_EN.md
CHANGED
|
@@ -10,7 +10,7 @@ English | **[简体中文](./README.md)**
|
|
|
10
10
|
[](#)
|
|
11
11
|
[](https://bundlephobia.com/package/@jboltai/tokui)
|
|
12
12
|
|
|
13
|
-
[
|
|
13
|
+
[Official Docs site](https://tokui.jboltai.com/) · [Component gallery demo](https://tokui_demo.jboltai.com/) · [DSL reference](./demo/TOKUI_DSL_REFERENCE.md) · [Try on StackBlitz](https://stackblitz.com/github/jboltai/tokui)
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -339,7 +339,7 @@ Adding a new component takes four steps:
|
|
|
339
339
|
|
|
340
340
|
4. **Add styles** (`src/styles/tokui.css`): class `.tokui-mycard`; variants use `.tokui-mycard--{variant}` and must be added to the `VARIANTS` whitelist in `renderer.js`.
|
|
341
341
|
|
|
342
|
-
Finally, add a test in `tests/`, and optionally a demo in the `DEMOS` array of `
|
|
342
|
+
Finally, add a test in `tests/`, and optionally a demo in the `DEMOS` array of `demo/server/sse-server.js`.
|
|
343
343
|
|
|
344
344
|
---
|
|
345
345
|
|