@absolutejs/absolute 0.17.7 → 0.17.9
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/.absolutejs/prettier.cache.json +7 -3
- package/dist/angular/index.js +21 -3
- package/dist/angular/index.js.map +2 -2
- package/dist/build.js +21 -3
- package/dist/build.js.map +2 -2
- package/dist/index.js +24 -6
- package/dist/index.js.map +4 -4
- package/dist/react/hooks/index.js +21 -3
- package/dist/react/hooks/index.js.map +2 -2
- package/dist/react/index.js +21 -3
- package/dist/react/index.js.map +2 -2
- package/dist/src/core/lookup.d.ts +1 -3
- package/dist/svelte/index.js +21 -3
- package/dist/svelte/index.js.map +2 -2
- package/dist/vue/index.js +21 -3
- package/dist/vue/index.js.map +2 -2
- package/package.json +1 -1
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"src/vue/index.ts": "2hz43zpct7mgi",
|
|
88
88
|
"src/core/devVendorPaths.ts": "1tdq5pi1387fs",
|
|
89
89
|
"src/core/devBuild.ts": "295tckrp83u86",
|
|
90
|
-
"src/core/prepare.ts": "
|
|
91
|
-
"src/core/lookup.ts": "
|
|
90
|
+
"src/core/prepare.ts": "2mnlyzkg3km77",
|
|
91
|
+
"src/core/lookup.ts": "svmqhr0nyiq6",
|
|
92
92
|
"src/core/index.ts": "2e2493pkqrfdy",
|
|
93
93
|
"src/core/pageHandlers.ts": "1jlijcbl0effl",
|
|
94
94
|
"src/core/build.ts": "1xl6384gibiyc",
|
|
@@ -127,6 +127,10 @@
|
|
|
127
127
|
"example/react/components/Head.tsx": "mb0lrli8us8v",
|
|
128
128
|
"example/react/components/Dropdown.tsx": "33lu70z6yn547",
|
|
129
129
|
"example/react/components/App.tsx": "8muxb6ksbhu2",
|
|
130
|
+
"example/angular/compiled/example/angular/pages/angular-example.js": "13wv9rrh19n89",
|
|
131
|
+
"example/angular/compiled/example/angular/components/app.component.js": "2pzdu6w6trioq",
|
|
132
|
+
"example/angular/compiled/example/angular/components/dropdown.component.js": "23ynls2xs4fv1",
|
|
133
|
+
"example/angular/compiled/example/angular/components/counter.component.js": "z2td0oyt0moi",
|
|
130
134
|
"example/angular/compiled/mm4fgvqc/indexes/angular-example.js": "3oelbv8l3q1wz",
|
|
131
135
|
"example/angular/compiled/mm4fgvqc/pages/angular-example.js": "3jzmxojjcwen9",
|
|
132
136
|
"example/angular/compiled/mm4fgvqc/components/app.component.js": "1giektbrchyzj",
|
|
@@ -134,7 +138,7 @@
|
|
|
134
138
|
"example/angular/compiled/mm4fgvqc/components/counter.component.js": "qbqz8o1mgcpu",
|
|
135
139
|
"eslint.config.mjs": "3jvlmsyhtijzc",
|
|
136
140
|
"tsconfig.json": "yyin9qm3vp6z",
|
|
137
|
-
"package.json": "
|
|
141
|
+
"package.json": "3mdngfcuzbdi7",
|
|
138
142
|
"tsconfig.build.json": "976e92rva922",
|
|
139
143
|
"example/svelte/pages/SvelteExample.svelte": "1um210xkshf8o",
|
|
140
144
|
"example/svelte/components/Counter.svelte": "1p92uo1pko0wo",
|
package/dist/angular/index.js
CHANGED
|
@@ -4,25 +4,43 @@ var __getProtoOf = Object.getPrototypeOf;
|
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
function __accessProp(key) {
|
|
8
|
+
return this[key];
|
|
9
|
+
}
|
|
10
|
+
var __toESMCache_node;
|
|
11
|
+
var __toESMCache_esm;
|
|
7
12
|
var __toESM = (mod, isNodeMode, target) => {
|
|
13
|
+
var canCache = mod != null && typeof mod === "object";
|
|
14
|
+
if (canCache) {
|
|
15
|
+
var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
|
|
16
|
+
var cached = cache.get(mod);
|
|
17
|
+
if (cached)
|
|
18
|
+
return cached;
|
|
19
|
+
}
|
|
8
20
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
9
21
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
10
22
|
for (let key of __getOwnPropNames(mod))
|
|
11
23
|
if (!__hasOwnProp.call(to, key))
|
|
12
24
|
__defProp(to, key, {
|
|
13
|
-
get: (
|
|
25
|
+
get: __accessProp.bind(mod, key),
|
|
14
26
|
enumerable: true
|
|
15
27
|
});
|
|
28
|
+
if (canCache)
|
|
29
|
+
cache.set(mod, to);
|
|
16
30
|
return to;
|
|
17
31
|
};
|
|
18
32
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
33
|
+
var __returnValue = (v) => v;
|
|
34
|
+
function __exportSetter(name, newValue) {
|
|
35
|
+
this[name] = __returnValue.bind(null, newValue);
|
|
36
|
+
}
|
|
19
37
|
var __export = (target, all) => {
|
|
20
38
|
for (var name in all)
|
|
21
39
|
__defProp(target, name, {
|
|
22
40
|
get: all[name],
|
|
23
41
|
enumerable: true,
|
|
24
42
|
configurable: true,
|
|
25
|
-
set: (
|
|
43
|
+
set: __exportSetter.bind(all, name)
|
|
26
44
|
});
|
|
27
45
|
};
|
|
28
46
|
var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
@@ -29374,5 +29392,5 @@ export {
|
|
|
29374
29392
|
getCachedRouteData
|
|
29375
29393
|
};
|
|
29376
29394
|
|
|
29377
|
-
//# debugId=
|
|
29395
|
+
//# debugId=952DD86C67A9D1EA64756E2164756E21
|
|
29378
29396
|
//# sourceMappingURL=index.js.map
|