@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.
Files changed (40) hide show
  1. package/out/foundation/Fetcher.d.ts.map +1 -1
  2. package/out/foundation/Fetcher.js +8 -13
  3. package/out/foundation/Fetcher.js.map +1 -1
  4. package/out/foundation/Injection.d.ts +87 -0
  5. package/out/foundation/Injection.d.ts.map +1 -0
  6. package/out/foundation/Injection.js +149 -0
  7. package/out/foundation/Injection.js.map +1 -0
  8. package/out/foundation/Triplet.d.ts +30 -25
  9. package/out/foundation/Triplet.d.ts.map +1 -1
  10. package/out/foundation/Triplet.js +96 -115
  11. package/out/foundation/Triplet.js.map +1 -1
  12. package/out/foundation/TripletDecorator.d.ts +11 -0
  13. package/out/foundation/TripletDecorator.d.ts.map +1 -1
  14. package/out/foundation/TripletDecorator.js +25 -8
  15. package/out/foundation/TripletDecorator.js.map +1 -1
  16. package/out/foundation/component_api/UniHtml.d.ts +5 -1
  17. package/out/foundation/component_api/UniHtml.d.ts.map +1 -1
  18. package/out/foundation/component_api/UniHtml.js +23 -5
  19. package/out/foundation/component_api/UniHtml.js.map +1 -1
  20. package/out/foundation/worker/ServiceWorker.d.ts +48 -17
  21. package/out/foundation/worker/ServiceWorker.d.ts.map +1 -1
  22. package/out/foundation/worker/ServiceWorker.js +186 -119
  23. package/out/foundation/worker/ServiceWorker.js.map +1 -1
  24. package/out/index.d.ts +4 -3
  25. package/out/index.d.ts.map +1 -1
  26. package/out/index.js +3 -2
  27. package/out/index.js.map +1 -1
  28. package/package.json +1 -1
  29. package/src/foundation/Fetcher.ts +9 -14
  30. package/src/foundation/Injection.ts +183 -0
  31. package/src/foundation/Triplet.ts +114 -141
  32. package/src/foundation/TripletDecorator.ts +32 -8
  33. package/src/foundation/component_api/UniHtml.ts +26 -5
  34. package/src/foundation/worker/ServiceWorker.ts +203 -129
  35. package/src/foundation/worker/serviceworker.js +191 -0
  36. package/src/index.ts +8 -5
  37. package/out/foundation/worker/serviceworker.d.ts +0 -1
  38. package/out/foundation/worker/serviceworker.d.ts.map +0 -1
  39. package/out/foundation/worker/serviceworker.js +0 -2
  40. 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 { default as Observable,
7
+ export {
8
+ default as Observable,
8
9
  IObserver, IMutationObserver, IKeyMutationObserver, Observer, MutationObserver, Transaction,
9
- isObservable } from './foundation/api/Observer.js'
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,2 +0,0 @@
1
- "use strict";
2
- //# sourceMappingURL=serviceworker.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"serviceworker.js","sourceRoot":"","sources":["../../../src/foundation/worker/serviceworker.js"],"names":[],"mappings":""}