vasille-web 4.1.0 → 4.1.2
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 +4 -4
- package/fake-types/index.d.ts +1 -0
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
package/README.md
CHANGED
|
@@ -103,13 +103,13 @@ All of these are supported:
|
|
|
103
103
|
|
|
104
104
|
## Change log
|
|
105
105
|
|
|
106
|
-
### 4.
|
|
106
|
+
### 4.1.0
|
|
107
107
|
|
|
108
|
-
|
|
108
|
+
Added SSG (static site generation) as build option `vasille-web build static`.
|
|
109
109
|
|
|
110
|
-
|
|
110
|
+
### 4.0.0
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
Initial version of the framework with file based routing and building scripts (`vasille-web dev` and `vasille-web build spa`).
|
|
113
113
|
|
|
114
114
|
## Questions
|
|
115
115
|
|
package/fake-types/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import type { StyleProps } from "../spec/css.d.ts";
|
|
|
4
4
|
import type { ScreenProps } from "vasille-router";
|
|
5
5
|
import type { Router } from "vasille-router/web-router";
|
|
6
6
|
|
|
7
|
+
export type { RawStyleProps as StyleProps } from "../spec/css.d.ts";
|
|
7
8
|
export type { FallbackScreenProps, ErrorScreenProps } from "vasille-router";
|
|
8
9
|
|
|
9
10
|
/** Set a handler for component errors */
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { Fragment } from "vasille";
|
|
|
2
2
|
import { StyleProps } from "../spec/css.js";
|
|
3
3
|
import { TagOptions } from "vasille/web-runner";
|
|
4
4
|
import { WebRouterInitialization } from "vasille-router/web-router";
|
|
5
|
+
export type { RawStyleProps as StyleProps } from "../spec/css.js";
|
|
5
6
|
export { view, view as component, view as compose, forward, backward, ensure, ref, expr, expr as bind, expr as calculate, expr as watch, set, Debug, Delay, For, Slot, Watch, awaited, store, model, setModel, mapModel, arrayModel, Switch, setErrorHandler, match, } from "vasille-jsx";
|
|
6
7
|
export { type QueryParams, type ScreenProps, type RouteParameters, screen, screen as page, type FallbackScreenProps, type ErrorScreenProps, } from "vasille-router";
|
|
7
8
|
export { Router, type WebRouterInitialization, type NavigationMode, routeApp } from "vasille-router/web-router";
|