@wire-dsl/language-support 0.0.2 → 0.0.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/INTEGRATION-GUIDE.md +1 -1
- package/LICENSE +0 -15
- package/README.md +2 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js +1 -1
- package/package.json +1 -1
package/INTEGRATION-GUIDE.md
CHANGED
|
@@ -32,7 +32,7 @@ packages/
|
|
|
32
32
|
## Cómo Usar en Monaco (Web)
|
|
33
33
|
|
|
34
34
|
```typescript
|
|
35
|
-
//
|
|
35
|
+
// apps/web/src/monaco/wireLanguage.ts
|
|
36
36
|
import { ALL_KEYWORDS, getCompletions } from '@wire-dsl/language-support';
|
|
37
37
|
|
|
38
38
|
export function registerWireLanguage() {
|
package/LICENSE
CHANGED
|
@@ -19,18 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
## Third-Party Components & Assets
|
|
26
|
-
|
|
27
|
-
### Feather Icons
|
|
28
|
-
|
|
29
|
-
This project includes icons from Feather Icons (https://feathericons.com), created by Cole Bemis and contributors.
|
|
30
|
-
|
|
31
|
-
- **License**: MIT License
|
|
32
|
-
- **Repository**: https://github.com/feathericons/feather
|
|
33
|
-
- **Location in project**: `packages/core/src/renderer/icons/`
|
|
34
|
-
- **Full details**: See `packages/core/src/renderer/icons/ICONS-LICENSE.md`
|
|
35
|
-
|
|
36
|
-
Feather Icons are used under the terms of the MIT License, which is fully compatible with this project's MIT License.
|
package/README.md
CHANGED
|
@@ -23,7 +23,8 @@ const suggestions = getCompletions('but'); // → [button, ...]
|
|
|
23
23
|
|
|
24
24
|
## What's Included
|
|
25
25
|
|
|
26
|
-
- **
|
|
26
|
+
- **Core Keywords** - project, screen, theme, layout, component, define
|
|
27
|
+
- **30+ UI Components** - All built-in components with autocomplete
|
|
27
28
|
- **Autocomplete Logic** - Context-aware suggestions
|
|
28
29
|
- **Syntax Grammar** - For Monaco, VS Code, and TextMate editors
|
|
29
30
|
|
package/dist/components.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Used for autocompletion and hover documentation
|
|
4
4
|
*
|
|
5
5
|
* SYNC SOURCES:
|
|
6
|
-
* 1. Built-in components: Check packages/
|
|
6
|
+
* 1. Built-in components: Check packages/engine/src/renderer/index.ts renderComponent() method
|
|
7
7
|
* for latest component implementations. Update this file when new components are added.
|
|
8
8
|
* 2. User-defined components: Syntax is `define Component "Name" { ... }`
|
|
9
9
|
* These are parsed and resolved before IR generation.
|
package/dist/components.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Used for autocompletion and hover documentation
|
|
4
4
|
*
|
|
5
5
|
* SYNC SOURCES:
|
|
6
|
-
* 1. Built-in components: Check packages/
|
|
6
|
+
* 1. Built-in components: Check packages/engine/src/renderer/index.ts renderComponent() method
|
|
7
7
|
* for latest component implementations. Update this file when new components are added.
|
|
8
8
|
* 2. User-defined components: Syntax is `define Component "Name" { ... }`
|
|
9
9
|
* These are parsed and resolved before IR generation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wire-dsl/language-support",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Wire DSL language definitions for Monaco, VS Code, and other editors. Keywords, components, properties, autocompletion, grammar, and document parsing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|