vasille-jsx 5.0.0 → 5.0.1

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 CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  ![Vasille.js logo](https://raw.githubusercontent.com/vasille-js/vasille-js/refs/heads/v5/doc/img/logo.png)
4
4
 
5
- `SteelFrameKit` is a front-end development kit, which is developed to provide bulletproof frontends.
5
+ `SteelFrameKit` is a front-end development kit, which is developed to provide fault tolerant web applications.
6
6
 
7
- [![npm](https://img.shields.io/npm/v/vasille?style=flat-square)](https://www.npmjs.com/package/vasille)
7
+ [![npm](https://img.shields.io/npm/v/steel-frame?style=flat-square)](https://www.npmjs.com/package/steel-frame)
8
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/vasille-js/steel-frame)
9
+ [![Coverage Status](https://coveralls.io/repos/github/vasille-js/steel-frame/badge.svg?branch=v5)](https://coveralls.io/github/vasille-js/steel-frame?branch=v5)
8
10
 
9
11
  ## Table of content
10
12
 
@@ -19,11 +21,11 @@
19
21
  - [How POWERFUL is SteelFrameKit](#how-powerful-is-steelframekit)
20
22
  - [Road map](#road-map)
21
23
  - [Change log](#change-log)
22
- - [5.0.0](#500)
23
- - [4.3.0](#430)
24
- - [4.2.0](#420)
25
- - [4.1.0](#410)
26
- - [4.0.0](#400)
24
+ - [5.0](#50)
25
+ - [4.0 - 4.3](#40---43)
26
+ - [3.0 - 3.2](#30---32)
27
+ - [2.0 - 2.3](#20---23)
28
+ - [1.0 - 1.2](#10---12)
27
29
  - [Questions](#questions)
28
30
 
29
31
 
@@ -44,10 +46,10 @@ $ npm create steel-frame
44
46
  ```
45
47
 
46
48
  ### Full documentation:
47
- * [Learn `SteelFrameKit` in 5 minutes](https://github.com/vasille-js/vasille-js/blob/v4/doc/V4-API.md)
48
- * [Router Documentation](https://github.com/vasille-js/vasille-js/blob/v4/doc/Router-API.md)
49
- * [Compostion functions](https://github.com/vasille-js/vasille-js/blob/v4/doc/Compositions.md)
50
- * [Dependency injection](https://github.com/vasille-js/vasille-js/blob/v4/doc/Context.md)
49
+ * [Learn `SteelFrameKit` in 5 minutes](https://github.com/vasille-js/vasille-js/blob/v5/doc/V4-API.md)
50
+ * [Router Documentation](https://github.com/vasille-js/vasille-js/blob/v5/doc/Router-API.md)
51
+ * [Compostion functions](https://github.com/vasille-js/vasille-js/blob/v5/doc/Compositions.md)
52
+ * [Dependency injection](https://github.com/vasille-js/vasille-js/blob/v5/doc/Context.md)
51
53
 
52
54
  ### Examples
53
55
  * [TypeScript Example](https://github.com/vasille-js/example-typescript)
@@ -92,7 +94,7 @@ All of these are supported:
92
94
  * Reactive values (observables).
93
95
  * Inline computed values.
94
96
  * Multiline computed values.
95
- * HTML & SVG tags.
97
+ * HTML tags.
96
98
  * Component custom slots.
97
99
  * 2-way data binding in components.
98
100
  * Logic block (if, else).
@@ -103,7 +105,6 @@ All of these are supported:
103
105
 
104
106
  ## Road map
105
107
 
106
- * [x] Update the `core` library to version 3.0.
107
108
  * [x] `100%` Test Coverage for core Library v3.
108
109
  * [x] Develop the `JSX` library.
109
110
  * [x] `100%` Test Coverage for the JSX library.
@@ -117,25 +118,42 @@ All of these are supported:
117
118
 
118
119
  ## Change log
119
120
 
120
- ### 5.0.0
121
+ We respect semantic versioning:
122
+ - Major version is increased when we make incompatible API changes.
123
+ - Minor version is increased when we add functionality.
124
+ - Patch version is increased when we fix bugs.
121
125
 
122
- Add support for context and dependencies injection.
126
+ ### 5.0
123
127
 
124
- ### 4.3.0
128
+ - Add support for context and dependencies injection.
129
+ - New developement direction: `fault tolerant`.
130
+ - Renamed to `steel-frame`. **[API change]**
131
+ - Removed `forward` and `backward` functions. **[API change]**
132
+ - Removed `Debug` component. **[API change]**
125
133
 
126
- Add new function `safe` which make functions safe, errors are reported automatically.
134
+ ### 4.0 - 4.3
127
135
 
128
- ### 4.2.0
136
+ - Initial version of the framework with file based routing and building scripts (`web dev` and `web build spa`).
137
+ - Reactive values naming switched to `$` prefix. **[API change]**
138
+ - `4.1` Added SSG (static site generation) as build option `web build static`.
139
+ - `4.2` Add support for inlined conditions in JSX, binary `&&` and ternary `?:` operator.
140
+ - `4.3` Add new function `safe` which make functions safe, errors are reported automatically.
129
141
 
130
- Add support for inlined conditions in JSX, binary `&&` and ternary `?:` operator.
142
+ ### 3.0 - 3.2
131
143
 
132
- ### 4.1.0
144
+ - Switch to a babel plugin to compile components code. **[API change]**
145
+ - 100% of code has been covered with unit tests.
146
+ - New developement direction: `keep it simple`.
133
147
 
134
- Added SSG (static site generation) as build option `sf build static`.
148
+ ### 2.0 - 2.3
135
149
 
136
- ### 4.0.0
150
+ - Introduces components compilation via a typescript plugin. **[API change]**
151
+ - New developement direction: `write less, do more`.
137
152
 
138
- Initial version of the framework with file based routing and building scripts (`sf dev` and `sf build spa`).
153
+ ### 1.0 - 1.2
154
+
155
+ - Initial version of core library.
156
+ - Developemnt direction: `performance-first`.
139
157
 
140
158
  ## Questions
141
159
 
package/lib/internal.js CHANGED
@@ -73,11 +73,3 @@ export function set(o, key, value, createRef = ref) {
73
73
  }
74
74
  return value;
75
75
  }
76
- export function forward(value) {
77
- return new Expression(v => v, [value]);
78
- }
79
- export function backward(value) {
80
- const r = new Reference(value.V);
81
- r.on(v => (value.V = v));
82
- return r;
83
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vasille-jsx",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "The same framework which is designed to build bulletproof frontends (JSX components)",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -65,6 +65,6 @@
65
65
  "typescript-eslint": "^8.39.1"
66
66
  },
67
67
  "dependencies": {
68
- "vasille": "5.0.0"
68
+ "vasille": "^5.0.0"
69
69
  }
70
70
  }
@@ -1,4 +1,4 @@
1
- import { IValue, Reactive, KindOfIValue, Expression, Reference, SetModel, MapModel, ArrayModel } from "vasille";
1
+ import { IValue, Reactive, KindOfIValue, Expression, SetModel, MapModel, ArrayModel } from "vasille";
2
2
  export declare function expr<T, Args extends unknown[]>(ctx: Reactive | undefined, func: (...args: Args) => T, values: KindOfIValue<Args>): Expression<T, Args>;
3
3
  /**
4
4
  * It transforms a non-reactive value to a reactive one.
@@ -37,5 +37,3 @@ export declare function match(name: string | number | symbol, data?: unknown, cr
37
37
  * 2. `arr[0] = 23` to `set(arr, 0, 23)`
38
38
  */
39
39
  export declare function set(o: object, key: string | symbol | number, value: unknown, createRef?: typeof ref): unknown;
40
- export declare function forward<T>(value: IValue<T>): Expression<T, [v: T]>;
41
- export declare function backward<T>(value: IValue<T>): Reference<T>;