@reidelsaltres/pureper 0.2.15 → 0.2.18
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/out/foundation/Fetcher.d.ts.map +1 -1
- package/out/foundation/Fetcher.js +8 -13
- package/out/foundation/Fetcher.js.map +1 -1
- package/out/foundation/Injection.d.ts +87 -0
- package/out/foundation/Injection.d.ts.map +1 -0
- package/out/foundation/Injection.js +149 -0
- package/out/foundation/Injection.js.map +1 -0
- package/out/foundation/Triplet.d.ts +30 -25
- package/out/foundation/Triplet.d.ts.map +1 -1
- package/out/foundation/Triplet.js +96 -115
- package/out/foundation/Triplet.js.map +1 -1
- package/out/foundation/TripletDecorator.d.ts +11 -0
- package/out/foundation/TripletDecorator.d.ts.map +1 -1
- package/out/foundation/TripletDecorator.js +25 -8
- package/out/foundation/TripletDecorator.js.map +1 -1
- package/out/foundation/component_api/UniHtml.d.ts +5 -1
- package/out/foundation/component_api/UniHtml.d.ts.map +1 -1
- package/out/foundation/component_api/UniHtml.js +23 -5
- package/out/foundation/component_api/UniHtml.js.map +1 -1
- package/out/foundation/worker/ServiceWorker.d.ts +48 -17
- package/out/foundation/worker/ServiceWorker.d.ts.map +1 -1
- package/out/foundation/worker/ServiceWorker.js +186 -119
- package/out/foundation/worker/ServiceWorker.js.map +1 -1
- package/out/index.d.ts +4 -3
- package/out/index.d.ts.map +1 -1
- package/out/index.js +3 -2
- package/out/index.js.map +1 -1
- package/package.json +1 -1
- package/src/foundation/Fetcher.ts +9 -14
- package/src/foundation/Injection.ts +183 -0
- package/src/foundation/Triplet.ts +114 -141
- package/src/foundation/TripletDecorator.ts +32 -8
- package/src/foundation/component_api/UniHtml.ts +26 -5
- package/src/foundation/worker/ServiceWorker.ts +203 -129
- package/src/foundation/worker/serviceworker.js +191 -0
- package/src/index.ts +8 -5
- package/out/foundation/worker/serviceworker.d.ts +0 -1
- package/out/foundation/worker/serviceworker.d.ts.map +0 -1
- package/out/foundation/worker/serviceworker.js +0 -2
- package/out/foundation/worker/serviceworker.js.map +0 -1
package/src/index.ts
CHANGED
|
@@ -4,24 +4,27 @@ export { default as EmptyConstructor } from './foundation/api/EmptyConstructor.j
|
|
|
4
4
|
export { default as Lazy } from './foundation/api/Lazy.js';
|
|
5
5
|
|
|
6
6
|
export * from './foundation/component_api/mixin/Proto.js';
|
|
7
|
-
export {
|
|
7
|
+
export {
|
|
8
|
+
default as Observable,
|
|
8
9
|
IObserver, IMutationObserver, IKeyMutationObserver, Observer, MutationObserver, Transaction,
|
|
9
|
-
isObservable
|
|
10
|
+
isObservable
|
|
11
|
+
} from './foundation/api/Observer.js'
|
|
10
12
|
|
|
11
13
|
export { default as UniHtml } from './foundation/component_api/UniHtml.js';
|
|
12
14
|
export { default as Page } from './foundation/component_api/Page.js';
|
|
13
15
|
export { default as Component } from './foundation/component_api/Component.js';
|
|
14
16
|
export { default as Attribute } from './foundation/component_api/Attribute.js';
|
|
15
17
|
|
|
16
|
-
export { default as Triplet, TripletStruct, AccessType } from './foundation/Triplet.js';
|
|
17
|
-
export { ReComponent, RePage } from './foundation/TripletDecorator.js';
|
|
18
|
+
export { default as Triplet, TripletStruct, AccessType, REGISTRY } from './foundation/Triplet.js';
|
|
19
|
+
export { ReComponent, RePage, ReImplementation } from './foundation/TripletDecorator.js';
|
|
18
20
|
|
|
21
|
+
export { Implementation, ImplementationStruct, Placeholder } from './foundation/Injection.js';
|
|
19
22
|
export { default as Fetcher } from './foundation/Fetcher.js';
|
|
20
23
|
|
|
21
24
|
export * from './foundation/engine/TemplateEngine.js';
|
|
22
25
|
|
|
23
26
|
export { Router } from './foundation/worker/Router.js';
|
|
24
|
-
export { default as ServiceWorker } from './foundation/worker/ServiceWorker.js';
|
|
27
|
+
export { default as ServiceWorker, ServiceWorkerConfig } from './foundation/worker/ServiceWorker.js';
|
|
25
28
|
|
|
26
29
|
export * from './foundation/Hosting.js';
|
|
27
30
|
export * from './foundation/Theme.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=serviceworker.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"serviceworker.d.ts","sourceRoot":"","sources":["../../../src/foundation/worker/serviceworker.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"serviceworker.js","sourceRoot":"","sources":["../../../src/foundation/worker/serviceworker.js"],"names":[],"mappings":""}
|