vasille-web 3.1.1 → 3.1.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.
@@ -11,7 +11,6 @@ export {
11
11
  reactiveObject,
12
12
  value,
13
13
  watch,
14
- state,
15
14
  } from "vasille-dx";
16
15
 
17
16
  export {
@@ -25,6 +24,7 @@ export {
25
24
  Slot,
26
25
  Watch,
27
26
  awaited,
27
+ store,
28
28
  } from "vasille-dx";
29
29
 
30
30
  export {
package/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Runner } from "vasille/web-runner";
2
2
  import { mount as coreMount } from "vasille-dx";
3
3
  import { styleSheet as coreStyleSheet } from "vasille-css";
4
- export { compose, Debug, Delay, Else, ElseIf, For, If, Slot, Watch, awaited, } from "vasille-dx";
4
+ export { compose, Debug, Delay, Else, ElseIf, For, If, Slot, Watch, awaited, store, } from "vasille-dx";
5
5
  export const styleSheet = coreStyleSheet;
6
6
  export function mount(element, component, $, debugUi) {
7
7
  coreMount(element, component, new Runner(debugUi ?? false, window.document), $);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vasille-web",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "description": "The first Developer eXperience Orientated web front-end framework.",
5
5
  "main": "index.js",
6
6
  "types": "./index.d.ts",
@@ -46,7 +46,7 @@
46
46
  "babel-plugin-vasille": "^0.99.2",
47
47
  "vasille": "^3.1.0",
48
48
  "vasille-css": "^3.1.0",
49
- "vasille-dx": "^3.1.0"
49
+ "vasille-dx": "^3.1.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/web": "^0.0.256",
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { StyleProps } from "./spec/css.js";
2
- export { compose, Debug, Delay, Else, ElseIf, For, If, Slot, Watch, awaited, } from "vasille-dx";
3
- export type { ref, bind, calculate, forward, arrayModel, setModel, mapModel, reactiveObject, value, watch, state, } from "vasille-dx";
2
+ export { compose, Debug, Delay, Else, ElseIf, For, If, Slot, Watch, awaited, store, } from "vasille-dx";
3
+ export type { ref, bind, calculate, forward, arrayModel, setModel, mapModel, reactiveObject, value, watch, } from "vasille-dx";
4
4
  export type { theme, tablet, dark, mobile, laptop, prefersLight, prefersDark, setMobileMaxWidth, setTabletMaxWidth, setLaptopMaxWidth, } from "vasille-css";
5
5
  export declare const styleSheet: <T extends {
6
6
  [className: string]: {