directix 1.6.0 → 1.7.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 +58 -0
- package/dist/index.cjs +2 -2
- package/dist/index.iife.js +2 -2
- package/dist/index.iife.min.js +1 -1
- package/dist/index.mjs +2 -2
- package/dist/nuxt/index.cjs +1 -1
- package/dist/nuxt/index.d.ts +1 -1
- package/dist/nuxt/index.mjs +1 -1
- package/dist/nuxt/runtime/plugin.mjs +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -29,6 +29,19 @@ Try it online with StackBlitz or CodeSandbox:
|
|
|
29
29
|
| Vue 3 | [](https://stackblitz.com/github/saqqdy/directix/tree/master/examples/vue3) | [](https://codesandbox.io/p/sandbox/github/saqqdy/directix/tree/master/examples/vue3) |
|
|
30
30
|
| Vue 2 | [](https://stackblitz.com/github/saqqdy/directix/tree/master/examples/vue2) | [](https://codesandbox.io/p/sandbox/github/saqqdy/directix/tree/master/examples/vue2) |
|
|
31
31
|
|
|
32
|
+
## Playground
|
|
33
|
+
|
|
34
|
+
Try the interactive [Playground](https://saqqdy.github.io/directix/playground/) to configure directives and generate code:
|
|
35
|
+
|
|
36
|
+
- **57+ Directives** - Full coverage of all Directix directives
|
|
37
|
+
- **Vue 2 & Vue 3** - Generate code for either version
|
|
38
|
+
- **Composables** - Generate composable API code
|
|
39
|
+
- **TypeScript Ready** - Full type definitions included
|
|
40
|
+
- **Monaco Editor** - Full-featured code editor with syntax highlighting
|
|
41
|
+
- **Live Preview** - See directive effects in real-time
|
|
42
|
+
|
|
43
|
+
Each directive documentation page also includes a code generator for quick code snippets.
|
|
44
|
+
|
|
32
45
|
## Installation
|
|
33
46
|
|
|
34
47
|
```bash
|
|
@@ -1774,6 +1787,51 @@ interface DirectiveInstallOptions {
|
|
|
1774
1787
|
|
|
1775
1788
|
Each directive accepts different options. See the [documentation](https://github.com/saqqdy/directix#usage-examples) for detailed API.
|
|
1776
1789
|
|
|
1790
|
+
## Roadmap
|
|
1791
|
+
|
|
1792
|
+
### v1.7.0 (2026-04-15) - Visual Configuration Tool ✅
|
|
1793
|
+
|
|
1794
|
+
- **Online Playground** - Live editing environment with Vue 2/3 support
|
|
1795
|
+
- **Visual Configurator** - Interactive parameter configuration panel
|
|
1796
|
+
- **Code Generator** - Generate Vue 2/3/Composable/Nuxt code snippets
|
|
1797
|
+
- **Configuration Presets** - Quick-start templates for common use cases
|
|
1798
|
+
- **Monaco Editor** - CDN-loaded code editor with syntax highlighting
|
|
1799
|
+
- **Live Preview** - Real-time directive effect preview
|
|
1800
|
+
|
|
1801
|
+
### v1.8.0 (Planned - 2026-04-22) - Quality & Ecosystem
|
|
1802
|
+
|
|
1803
|
+
- **Test Coverage** - 90%+ unit test coverage, E2E testing with Playwright
|
|
1804
|
+
- **Performance Optimization** - Bundle size optimization, tree-shaking improvements
|
|
1805
|
+
- **VS Code Extension** - Autocompletion, hover documentation, code snippets
|
|
1806
|
+
- **CLI Tool** - `directix create`, `directix init`, `directix doctor`, `directix migrate`
|
|
1807
|
+
|
|
1808
|
+
### v1.9.0 (Planned - 2026-04-29) - Documentation & Community
|
|
1809
|
+
|
|
1810
|
+
- **Interactive Documentation** - Live editing with instant preview
|
|
1811
|
+
- **Real-world Examples** - 10+ practical scenario examples
|
|
1812
|
+
- **i18n Support** - English, Chinese, Japanese documentation
|
|
1813
|
+
- **Developer Experience** - Improved error messages, DevTools integration
|
|
1814
|
+
- **Plugin System** - Community extension support
|
|
1815
|
+
|
|
1816
|
+
### v1.10.0 (Planned - 2026-05-06) - Vue 3 Optimization & Security
|
|
1817
|
+
|
|
1818
|
+
- **Vue 3 Optimization Preview** - Suspense, Teleport support
|
|
1819
|
+
- **Mobile Optimization** - Touch gestures, PWA support
|
|
1820
|
+
- **Accessibility (A11y)** - ARIA attributes, keyboard navigation
|
|
1821
|
+
- **Security Enhancements** - XSS protection, CSP compatibility
|
|
1822
|
+
|
|
1823
|
+
### v1.11.0 (Planned - 2026-05-13) - Stability & Enterprise
|
|
1824
|
+
|
|
1825
|
+
- **Stability** - Browser compatibility, edge case fixes
|
|
1826
|
+
- **Performance Limits** - Bundle ≤ 25KB, memory optimization
|
|
1827
|
+
- **Enterprise Features** - Permissions, audit logs, config center
|
|
1828
|
+
- **v2.0 Migration Prep** - Migration tool, breaking changes warnings
|
|
1829
|
+
|
|
1830
|
+
### v2.0.0 (Future)
|
|
1831
|
+
|
|
1832
|
+
- Vue 3 exclusive optimizations
|
|
1833
|
+
- Web Components support
|
|
1834
|
+
|
|
1777
1835
|
## Browser Support
|
|
1778
1836
|
|
|
1779
1837
|
| Browser | Version |
|
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* directix v1.
|
|
2
|
+
* directix v1.7.0
|
|
3
3
|
* A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
|
|
4
4
|
* (c) 2021-present saqqdy <https://github.com/saqqdy>
|
|
5
5
|
* Released under the MIT License.
|
|
@@ -78,7 +78,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
78
78
|
});
|
|
79
79
|
};
|
|
80
80
|
/*!
|
|
81
|
-
* directix v1.
|
|
81
|
+
* directix v1.7.0
|
|
82
82
|
* A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
|
|
83
83
|
* (c) 2021-present saqqdy <https://github.com/saqqdy>
|
|
84
84
|
* Released under the MIT License.
|
package/dist/index.iife.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* directix v1.
|
|
2
|
+
* directix v1.7.0
|
|
3
3
|
* A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
|
|
4
4
|
* (c) 2021-present saqqdy <https://github.com/saqqdy>
|
|
5
5
|
* Released under the MIT License.
|
|
@@ -57,7 +57,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
57
57
|
});
|
|
58
58
|
};
|
|
59
59
|
/*!
|
|
60
|
-
* directix v1.
|
|
60
|
+
* directix v1.7.0
|
|
61
61
|
* A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
|
|
62
62
|
* (c) 2021-present saqqdy <https://github.com/saqqdy>
|
|
63
63
|
* Released under the MIT License.
|
package/dist/index.iife.min.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* directix v1.
|
|
2
|
+
* directix v1.7.0
|
|
3
3
|
* A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
|
|
4
4
|
* (c) 2021-present saqqdy <https://github.com/saqqdy>
|
|
5
5
|
* Released under the MIT License.
|
|
@@ -57,7 +57,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
57
57
|
});
|
|
58
58
|
};
|
|
59
59
|
/*!
|
|
60
|
-
* directix v1.
|
|
60
|
+
* directix v1.7.0
|
|
61
61
|
* A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
|
|
62
62
|
* (c) 2021-present saqqdy <https://github.com/saqqdy>
|
|
63
63
|
* Released under the MIT License.
|
package/dist/nuxt/index.cjs
CHANGED
package/dist/nuxt/index.d.ts
CHANGED
package/dist/nuxt/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "directix",
|
|
3
3
|
"description": "A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.7.0",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
8
8
|
"unpkg": "dist/index.iife.min.js",
|
|
@@ -150,14 +150,17 @@
|
|
|
150
150
|
},
|
|
151
151
|
"scripts": {
|
|
152
152
|
"dev": "vite",
|
|
153
|
+
"dev:playground": "pnpm --dir playground dev",
|
|
153
154
|
"gen:version": "tsx scripts/version",
|
|
154
155
|
"tag:version": "tsx scripts/tag",
|
|
155
156
|
"build": "vite build && tsx scripts/minify && tsx scripts/build-nuxt",
|
|
156
157
|
"build:types": "vue-tsc --emitDeclarationOnly --outDir dist",
|
|
158
|
+
"build:playground": "pnpm --dir playground build",
|
|
157
159
|
"docs:dev": "vitepress dev docs",
|
|
158
160
|
"docs:build": "vitepress build docs",
|
|
159
161
|
"docs:preview": "vitepress preview docs",
|
|
160
162
|
"deploy": "sh scripts/deploy.sh",
|
|
163
|
+
"deploy:playground": "pnpm --dir playground deploy local",
|
|
161
164
|
"watch": "vite build --watch",
|
|
162
165
|
"pub": "tsx scripts/publish",
|
|
163
166
|
"unpub": "tsx scripts/unpublish",
|