@alwatr/flux 9.14.0 → 9.15.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/dist/main.d.ts +1 -0
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +3 -3
- package/dist/main.js.map +3 -3
- package/package.json +3 -2
- package/src/main.ts +1 -0
package/dist/main.d.ts
CHANGED
|
@@ -4,5 +4,6 @@ export * from '@alwatr/directive';
|
|
|
4
4
|
export * from '@alwatr/render-state';
|
|
5
5
|
export * from '@alwatr/local-storage';
|
|
6
6
|
export * from '@alwatr/session-storage';
|
|
7
|
+
export * from '@alwatr/page-ready';
|
|
7
8
|
export type * from '@alwatr/type-helper';
|
|
8
9
|
//# sourceMappingURL=main.d.ts.map
|
package/dist/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAGA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAGA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,mBAAmB,qBAAqB,CAAC"}
|
package/dist/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* 📦 @alwatr/flux v9.
|
|
2
|
-
export*from"@alwatr/signal";export*from"@alwatr/action";export*from"@alwatr/directive";export*from"@alwatr/render-state";export*from"@alwatr/local-storage";export*from"@alwatr/session-storage";
|
|
1
|
+
/* 📦 @alwatr/flux v9.15.0 */
|
|
2
|
+
export*from"@alwatr/signal";export*from"@alwatr/action";export*from"@alwatr/directive";export*from"@alwatr/render-state";export*from"@alwatr/local-storage";export*from"@alwatr/session-storage";export*from"@alwatr/page-ready";
|
|
3
3
|
|
|
4
|
-
//# debugId=
|
|
4
|
+
//# debugId=3DEF3BEDBEF0EB0064756E2164756E21
|
|
5
5
|
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
4
|
"sourcesContent": [
|
|
5
|
-
"// UI and reactive bundle — signals, actions, directives, and client-side storage.\n// This package aggregates all UI-layer nanolibs for convenient single-import usage.\n\nexport * from '@alwatr/signal';\nexport * from '@alwatr/action';\nexport * from '@alwatr/directive';\nexport * from '@alwatr/render-state';\nexport * from '@alwatr/local-storage';\nexport * from '@alwatr/session-storage';\nexport type * from '@alwatr/type-helper';\n"
|
|
5
|
+
"// UI and reactive bundle — signals, actions, directives, and client-side storage.\n// This package aggregates all UI-layer nanolibs for convenient single-import usage.\n\nexport * from '@alwatr/signal';\nexport * from '@alwatr/action';\nexport * from '@alwatr/directive';\nexport * from '@alwatr/render-state';\nexport * from '@alwatr/local-storage';\nexport * from '@alwatr/session-storage';\nexport * from '@alwatr/page-ready';\nexport type * from '@alwatr/type-helper';\n"
|
|
6
6
|
],
|
|
7
|
-
"mappings": ";AAGA,4BACA,4BACA,+BACA,kCACA,mCACA",
|
|
8
|
-
"debugId": "
|
|
7
|
+
"mappings": ";AAGA,4BACA,4BACA,+BACA,kCACA,mCACA,qCACA",
|
|
8
|
+
"debugId": "3DEF3BEDBEF0EB0064756E2164756E21",
|
|
9
9
|
"names": []
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/flux",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.15.0",
|
|
4
4
|
"description": "UI and reactive library bundle for ECMAScript (JavaScript/TypeScript) projects — signals, actions, directives, and storage.",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"@alwatr/action": "9.14.0",
|
|
25
25
|
"@alwatr/directive": "9.14.0",
|
|
26
26
|
"@alwatr/local-storage": "9.14.0",
|
|
27
|
+
"@alwatr/page-ready": "9.14.0",
|
|
27
28
|
"@alwatr/render-state": "9.14.0",
|
|
28
29
|
"@alwatr/session-storage": "9.14.0",
|
|
29
30
|
"@alwatr/signal": "9.14.0",
|
|
@@ -80,5 +81,5 @@
|
|
|
80
81
|
"ui",
|
|
81
82
|
"unidirectional-data-flow"
|
|
82
83
|
],
|
|
83
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "fefe591dede98e81c628bf9190b735ae8bf5f989"
|
|
84
85
|
}
|