vasille 5.0.0 → 5.1.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 +47 -23
- package/lib/models/set-model.js +1 -0
- package/lib/runner/web/runner.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
`SteelFrameKit` is a front-end development kit, which is developed to provide
|
|
5
|
+
`SteelFrameKit` is a front-end development kit, which is developed to provide fault tolerant web applications.
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/steel-frame)
|
|
8
|
+
[](https://deepwiki.com/vasille-js/steel-frame)
|
|
9
|
+
[](https://coveralls.io/github/vasille-js/steel-frame?branch=v5)
|
|
8
10
|
|
|
9
11
|
## Table of content
|
|
10
12
|
|
|
@@ -19,11 +21,12 @@
|
|
|
19
21
|
- [How POWERFUL is SteelFrameKit](#how-powerful-is-steelframekit)
|
|
20
22
|
- [Road map](#road-map)
|
|
21
23
|
- [Change log](#change-log)
|
|
22
|
-
- [5.
|
|
23
|
-
- [
|
|
24
|
-
- [4.
|
|
25
|
-
- [
|
|
26
|
-
- [
|
|
24
|
+
- [5.1](#51)
|
|
25
|
+
- [5.0](#50)
|
|
26
|
+
- [4.0 - 4.3](#40---43)
|
|
27
|
+
- [3.0 - 3.2](#30---32)
|
|
28
|
+
- [2.0 - 2.3](#20---23)
|
|
29
|
+
- [1.0 - 1.2](#10---12)
|
|
27
30
|
- [Questions](#questions)
|
|
28
31
|
|
|
29
32
|
|
|
@@ -44,10 +47,10 @@ $ npm create steel-frame
|
|
|
44
47
|
```
|
|
45
48
|
|
|
46
49
|
### Full documentation:
|
|
47
|
-
* [Learn `SteelFrameKit` in 5 minutes](https://github.com/vasille-js/vasille-js/blob/
|
|
48
|
-
* [Router Documentation](https://github.com/vasille-js/vasille-js/blob/
|
|
49
|
-
* [Compostion functions](https://github.com/vasille-js/vasille-js/blob/
|
|
50
|
-
* [Dependency injection](https://github.com/vasille-js/vasille-js/blob/
|
|
50
|
+
* [Learn `SteelFrameKit` in 5 minutes](https://github.com/vasille-js/vasille-js/blob/v5/doc/V4-API.md)
|
|
51
|
+
* [Router Documentation](https://github.com/vasille-js/vasille-js/blob/v5/doc/Router-API.md)
|
|
52
|
+
* [Compostion functions](https://github.com/vasille-js/vasille-js/blob/v5/doc/Compositions.md)
|
|
53
|
+
* [Dependency injection](https://github.com/vasille-js/vasille-js/blob/v5/doc/Context.md)
|
|
51
54
|
|
|
52
55
|
### Examples
|
|
53
56
|
* [TypeScript Example](https://github.com/vasille-js/example-typescript)
|
|
@@ -92,7 +95,7 @@ All of these are supported:
|
|
|
92
95
|
* Reactive values (observables).
|
|
93
96
|
* Inline computed values.
|
|
94
97
|
* Multiline computed values.
|
|
95
|
-
* HTML
|
|
98
|
+
* HTML tags.
|
|
96
99
|
* Component custom slots.
|
|
97
100
|
* 2-way data binding in components.
|
|
98
101
|
* Logic block (if, else).
|
|
@@ -103,7 +106,6 @@ All of these are supported:
|
|
|
103
106
|
|
|
104
107
|
## Road map
|
|
105
108
|
|
|
106
|
-
* [x] Update the `core` library to version 3.0.
|
|
107
109
|
* [x] `100%` Test Coverage for core Library v3.
|
|
108
110
|
* [x] Develop the `JSX` library.
|
|
109
111
|
* [x] `100%` Test Coverage for the JSX library.
|
|
@@ -117,25 +119,47 @@ All of these are supported:
|
|
|
117
119
|
|
|
118
120
|
## Change log
|
|
119
121
|
|
|
120
|
-
|
|
122
|
+
We respect semantic versioning:
|
|
123
|
+
- A major version is increased when we make incompatible API changes.
|
|
124
|
+
- A minor version is increased when we add functionality.
|
|
125
|
+
- Patch version is increased when we fix bugs.
|
|
121
126
|
|
|
122
|
-
|
|
127
|
+
### 5.1
|
|
123
128
|
|
|
124
|
-
|
|
129
|
+
Add support for web components compile target `web build components`.
|
|
130
|
+
_Web components as custom tags are supported in any version._
|
|
125
131
|
|
|
126
|
-
|
|
132
|
+
### 5.0
|
|
127
133
|
|
|
128
|
-
|
|
134
|
+
- Add support for context and dependencies injection.
|
|
135
|
+
- New developement direction: `fault tolerant`.
|
|
136
|
+
- Renamed to `steel-frame`. **[API change]**
|
|
137
|
+
- Removed `forward` and `backward` functions. **[API change]**
|
|
138
|
+
- Removed `Debug` component. **[API change]**
|
|
129
139
|
|
|
130
|
-
|
|
140
|
+
### 4.0 - 4.3
|
|
131
141
|
|
|
132
|
-
|
|
142
|
+
- Initial version of the framework with file based routing and building scripts (`web dev` and `web build spa`).
|
|
143
|
+
- Reactive values naming switched to `$` prefix. **[API change]**
|
|
144
|
+
- `4.1` Added SSG (static site generation) as build option `web build static`.
|
|
145
|
+
- `4.2` Add support for inlined conditions in JSX, binary `&&` and ternary `?:` operator.
|
|
146
|
+
- `4.3` Add new function `safe` which make functions safe, errors are reported automatically.
|
|
133
147
|
|
|
134
|
-
|
|
148
|
+
### 3.0 - 3.2
|
|
135
149
|
|
|
136
|
-
|
|
150
|
+
- Switch to a babel plugin to compile components code. **[API change]**
|
|
151
|
+
- 100% of the code has been covered with unit tests.
|
|
152
|
+
- New developement direction: `keep it simple`.
|
|
137
153
|
|
|
138
|
-
|
|
154
|
+
### 2.0 - 2.3
|
|
155
|
+
|
|
156
|
+
- Introduces components compilation via a typescript plugin. **[API change]**
|
|
157
|
+
- New developement direction: `write less, do more`.
|
|
158
|
+
|
|
159
|
+
### 1.0 - 1.2
|
|
160
|
+
|
|
161
|
+
- Initial version of a core library.
|
|
162
|
+
- Developemnt direction: `performance-first`.
|
|
139
163
|
|
|
140
164
|
## Questions
|
|
141
165
|
|
package/lib/models/set-model.js
CHANGED
package/lib/runner/web/runner.js
CHANGED
|
@@ -34,8 +34,8 @@ export class Tag extends AbstractTag {
|
|
|
34
34
|
this.node = node;
|
|
35
35
|
this.applyOptions(this.options);
|
|
36
36
|
this.parent.appendNode(node);
|
|
37
|
-
this.options.k?.(this.node);
|
|
38
37
|
this.options.l?.(this);
|
|
38
|
+
this.options.k?.(this.node);
|
|
39
39
|
}
|
|
40
40
|
destroy() {
|
|
41
41
|
this.node.remove();
|
|
@@ -117,6 +117,8 @@ export class Tag extends AbstractTag {
|
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
|
+
// @ts-expect-error
|
|
121
|
+
node.$vasille = this;
|
|
120
122
|
}
|
|
121
123
|
}
|
|
122
124
|
export class Runner {
|
package/package.json
CHANGED