@flarehr/apollo-super-selection 4.56.44913 → 4.58.46161

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 (21) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/p-26251f49.entry.js +14 -0
  3. package/dist/lib/apollo-super-selection/p-8263f5b7.system.entry.js +69 -0
  4. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  5. package/dist/lib/cjs/sss-button_41.cjs.entry.js +165 -26
  6. package/dist/lib/collection/components/super-campaign/super-campaign-types.js +5 -1
  7. package/dist/lib/collection/components/super-campaign/super-campaign.js +140 -5
  8. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/hesta-default.js +8 -15
  9. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +3 -3
  10. package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +17 -3
  11. package/dist/lib/esm/sss-button_41.entry.js +165 -26
  12. package/dist/lib/esm-es5/sss-button_41.entry.js +4 -4
  13. package/dist/lib/types/components/super-campaign/super-campaign-types.d.ts +40 -2
  14. package/dist/lib/types/components/super-campaign/super-campaign.d.ts +9 -0
  15. package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +1 -1
  16. package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +4 -3
  17. package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +8 -4
  18. package/package.json +1 -1
  19. package/dist/lib/apollo-super-selection/p-1a253321.entry.js +0 -14
  20. package/dist/lib/apollo-super-selection/p-47600481.system.entry.js +0 -69
  21. package/readme.md +0 -41
package/readme.md DELETED
@@ -1,41 +0,0 @@
1
- # Stencil App Starter
2
-
3
- Stencil is a compiler for building fast web apps using Web Components.
4
-
5
- Stencil combines the best concepts of the most popular frontend frameworks into a compile-time rather than run-time tool. Stencil takes TypeScript, JSX, a tiny virtual DOM layer, efficient one-way data binding, an asynchronous rendering pipeline (similar to React Fiber), and lazy-loading out of the box, and generates 100% standards-based Web Components that run in any browser supporting the Custom Elements v1 spec.
6
-
7
- Stencil components are just Web Components, so they work in any major framework or with no framework at all. In many cases, Stencil can be used as a drop in replacement for traditional frontend frameworks given the capabilities now available in the browser, though using it as such is certainly not required.
8
-
9
- Stencil also enables a number of key capabilities on top of Web Components, in particular Server Side Rendering (SSR) without the need to run a headless browser, pre-rendering, and objects-as-properties (instead of just strings).
10
-
11
- ## Getting Started
12
-
13
- To start a new project using Stencil, clone this repo to a new directory:
14
-
15
- ```bash
16
- npm init stencil app
17
- ```
18
-
19
- and run:
20
-
21
- ```bash
22
- npm start
23
- ```
24
-
25
- To build the app for production, run:
26
-
27
- ```bash
28
- npm run build
29
- ```
30
-
31
- To run the unit tests once, run:
32
-
33
- ```
34
- npm test
35
- ```
36
-
37
- To run the unit tests and watch for file changes during development, run:
38
-
39
- ```
40
- npm run test.watch
41
- ```