@rpan93/ron-lib 0.0.8 → 1.0.2
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/esm2020/lib/custom-card/custom-card.component.mjs +19 -0
- package/esm2020/lib/custom-page/custom-page-routing.module.mjs +24 -0
- package/esm2020/lib/custom-page/custom-page.component.mjs +15 -0
- package/esm2020/lib/custom-page/custom-page.module.mjs +28 -0
- package/esm2020/lib/dashboard/dashboard-routing.module.mjs +24 -0
- package/esm2020/lib/dashboard/dashboard.module.mjs +41 -0
- package/esm2020/lib/dashboard/dashboard.page.mjs +38 -0
- package/esm2020/lib/ron-lib.component.mjs +26 -0
- package/esm2020/lib/ron-lib.module.mjs +51 -0
- package/esm2020/lib/ron-lib.service.mjs +28 -0
- package/esm2020/public-api.mjs +10 -0
- package/esm2020/rpan93-ron-lib.mjs +5 -0
- package/fesm2015/rpan93-ron-lib.mjs +268 -0
- package/fesm2015/rpan93-ron-lib.mjs.map +1 -0
- package/fesm2020/rpan93-ron-lib.mjs +266 -0
- package/fesm2020/rpan93-ron-lib.mjs.map +1 -0
- package/lib/custom-card/custom-card.component.d.ts +10 -0
- package/lib/custom-page/custom-page-routing.module.d.ts +7 -0
- package/lib/custom-page/custom-page.component.d.ts +8 -0
- package/lib/custom-page/custom-page.module.d.ts +11 -0
- package/lib/dashboard/dashboard-routing.module.d.ts +7 -0
- package/lib/dashboard/dashboard.module.d.ts +12 -0
- package/lib/dashboard/dashboard.page.d.ts +11 -0
- package/lib/ron-lib.component.d.ts +8 -0
- package/lib/ron-lib.module.d.ts +17 -0
- package/lib/ron-lib.service.d.ts +12 -0
- package/package.json +22 -6
- package/{src/public-api.ts → public-api.d.ts} +6 -10
- package/rpan93-ron-lib.d.ts +5 -0
- package/.browserslistrc +0 -16
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -7
- package/src/lib/custom-card/custom-card.component.css +0 -0
- package/src/lib/custom-card/custom-card.component.html +0 -8
- package/src/lib/custom-card/custom-card.component.spec.ts +0 -25
- package/src/lib/custom-card/custom-card.component.ts +0 -18
- package/src/lib/custom-page/custom-page-routing.module.ts +0 -18
- package/src/lib/custom-page/custom-page.component.css +0 -5
- package/src/lib/custom-page/custom-page.component.html +0 -15
- package/src/lib/custom-page/custom-page.component.spec.ts +0 -25
- package/src/lib/custom-page/custom-page.component.ts +0 -15
- package/src/lib/custom-page/custom-page.module.ts +0 -17
- package/src/lib/dashboard/dashboard-routing.module.ts +0 -17
- package/src/lib/dashboard/dashboard.module.ts +0 -23
- package/src/lib/dashboard/dashboard.page.html +0 -24
- package/src/lib/dashboard/dashboard.page.scss +0 -0
- package/src/lib/dashboard/dashboard.page.spec.ts +0 -24
- package/src/lib/dashboard/dashboard.page.ts +0 -37
- package/src/lib/ron-lib.component.spec.ts +0 -25
- package/src/lib/ron-lib.component.ts +0 -20
- package/src/lib/ron-lib.module.ts +0 -42
- package/src/lib/ron-lib.service.spec.ts +0 -16
- package/src/lib/ron-lib.service.ts +0 -19
- package/src/test.ts +0 -27
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
    
        package/src/test.ts
    DELETED
    
    | @@ -1,27 +0,0 @@ | |
| 1 | 
            -
            // This file is required by karma.conf.js and loads recursively all the .spec and framework files
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            import 'zone.js';
         | 
| 4 | 
            -
            import 'zone.js/testing';
         | 
| 5 | 
            -
            import { getTestBed } from '@angular/core/testing';
         | 
| 6 | 
            -
            import {
         | 
| 7 | 
            -
              BrowserDynamicTestingModule,
         | 
| 8 | 
            -
              platformBrowserDynamicTesting
         | 
| 9 | 
            -
            } from '@angular/platform-browser-dynamic/testing';
         | 
| 10 | 
            -
             | 
| 11 | 
            -
            declare const require: {
         | 
| 12 | 
            -
              context(path: string, deep?: boolean, filter?: RegExp): {
         | 
| 13 | 
            -
                <T>(id: string): T;
         | 
| 14 | 
            -
                keys(): string[];
         | 
| 15 | 
            -
              };
         | 
| 16 | 
            -
            };
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            // First, initialize the Angular testing environment.
         | 
| 19 | 
            -
            getTestBed().initTestEnvironment(
         | 
| 20 | 
            -
              BrowserDynamicTestingModule,
         | 
| 21 | 
            -
              platformBrowserDynamicTesting(),
         | 
| 22 | 
            -
            );
         | 
| 23 | 
            -
             | 
| 24 | 
            -
            // Then we find all the tests.
         | 
| 25 | 
            -
            const context = require.context('./', true, /\.spec\.ts$/);
         | 
| 26 | 
            -
            // And load the modules.
         | 
| 27 | 
            -
            context.keys().map(context);
         | 
    
        package/tsconfig.lib.json
    DELETED
    
    | @@ -1,15 +0,0 @@ | |
| 1 | 
            -
            /* To learn more about this file see: https://angular.io/config/tsconfig. */
         | 
| 2 | 
            -
            {
         | 
| 3 | 
            -
              "extends": "../../tsconfig.json",
         | 
| 4 | 
            -
              "compilerOptions": {
         | 
| 5 | 
            -
                "outDir": "../../out-tsc/lib",
         | 
| 6 | 
            -
                "declaration": true,
         | 
| 7 | 
            -
                "declarationMap": true,
         | 
| 8 | 
            -
                "inlineSources": true,
         | 
| 9 | 
            -
                "types": []
         | 
| 10 | 
            -
              },
         | 
| 11 | 
            -
              "exclude": [
         | 
| 12 | 
            -
                "src/test.ts",
         | 
| 13 | 
            -
                "**/*.spec.ts"
         | 
| 14 | 
            -
              ]
         | 
| 15 | 
            -
            }
         | 
    
        package/tsconfig.lib.prod.json
    DELETED
    
    
    
        package/tsconfig.spec.json
    DELETED
    
    | @@ -1,17 +0,0 @@ | |
| 1 | 
            -
            /* To learn more about this file see: https://angular.io/config/tsconfig. */
         | 
| 2 | 
            -
            {
         | 
| 3 | 
            -
              "extends": "../../tsconfig.json",
         | 
| 4 | 
            -
              "compilerOptions": {
         | 
| 5 | 
            -
                "outDir": "../../out-tsc/spec",
         | 
| 6 | 
            -
                "types": [
         | 
| 7 | 
            -
                  "jasmine"
         | 
| 8 | 
            -
                ]
         | 
| 9 | 
            -
              },
         | 
| 10 | 
            -
              "files": [
         | 
| 11 | 
            -
                "src/test.ts"
         | 
| 12 | 
            -
              ],
         | 
| 13 | 
            -
              "include": [
         | 
| 14 | 
            -
                "**/*.spec.ts",
         | 
| 15 | 
            -
                "**/*.d.ts"
         | 
| 16 | 
            -
              ]
         | 
| 17 | 
            -
            }
         |