@design-system-rte/angular 0.1.1-rc3 → 0.1.1-rc4

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 (36) hide show
  1. package/ng-package.json +7 -0
  2. package/package.json +3 -16
  3. package/src/lib/components/button/button.component.html +7 -0
  4. package/src/lib/components/button/button.component.scss +156 -0
  5. package/src/lib/components/button/button.component.spec.ts +23 -0
  6. package/src/lib/components/button/button.component.stories.ts +102 -0
  7. package/src/lib/components/button/button.component.ts +25 -0
  8. package/src/lib/components/grid/col/col.directive.ts +37 -0
  9. package/src/lib/components/grid/grid.directive.stories.ts +149 -0
  10. package/src/lib/components/grid/grid.directive.ts +24 -0
  11. package/src/lib/components/link/link.component.html +5 -0
  12. package/src/lib/components/link/link.component.scss +108 -0
  13. package/src/lib/components/link/link.component.stories.ts +61 -0
  14. package/src/lib/components/link/link.component.ts +19 -0
  15. package/src/lib/components/radio-button/radio-button.component.html +24 -0
  16. package/src/lib/components/radio-button/radio-button.component.scss +140 -0
  17. package/src/lib/components/radio-button/radio-button.component.stories.ts +75 -0
  18. package/src/lib/components/radio-button/radio-button.component.ts +23 -0
  19. package/src/lib/components/radio-button-group/radio-button-group.component.html +45 -0
  20. package/src/lib/components/radio-button-group/radio-button-group.component.scss +82 -0
  21. package/src/lib/components/radio-button-group/radio-button-group.component.stories.ts +124 -0
  22. package/src/lib/components/radio-button-group/radio-button-group.component.ts +30 -0
  23. package/src/public-api.ts +5 -0
  24. package/tsconfig.lib.json +14 -0
  25. package/tsconfig.lib.prod.json +10 -0
  26. package/tsconfig.spec.json +14 -0
  27. package/esm2022/design-system-rte-angular.mjs +0 -5
  28. package/esm2022/lib/lib.component.mjs +0 -19
  29. package/esm2022/lib/lib.service.mjs +0 -14
  30. package/esm2022/public-api.mjs +0 -6
  31. package/fesm2022/design-system-rte-angular.mjs +0 -42
  32. package/fesm2022/design-system-rte-angular.mjs.map +0 -1
  33. package/index.d.ts +0 -5
  34. package/lib/lib.component.d.ts +0 -5
  35. package/lib/lib.service.d.ts +0 -6
  36. package/public-api.d.ts +0 -2
@@ -1,19 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class LibComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: LibComponent, isStandalone: true, selector: "lib-lib", ngImport: i0, template: `
6
- <p>
7
- lib works!
8
- </p>
9
- `, isInline: true, styles: [""] }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'lib-lib', standalone: true, imports: [], template: `
14
- <p>
15
- lib works!
16
- </p>
17
- ` }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGliLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2xpYi9zcmMvbGliL2xpYi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFhMUMsTUFBTSxPQUFPLFlBQVk7K0dBQVosWUFBWTttR0FBWixZQUFZLG1FQVBiOzs7O0dBSVQ7OzRGQUdVLFlBQVk7a0JBWHhCLFNBQVM7K0JBQ0UsU0FBUyxjQUNQLElBQUksV0FDUCxFQUFFLFlBQ0Q7Ozs7R0FJVCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItbGliJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW10sXG4gIHRlbXBsYXRlOiBgXG4gICAgPHA+XG4gICAgICBsaWIgd29ya3MhXG4gICAgPC9wPlxuICBgLFxuICBzdHlsZXM6IGBgXG59KVxuZXhwb3J0IGNsYXNzIExpYkNvbXBvbmVudCB7XG5cbn1cbiJdfQ==
@@ -1,14 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class LibService {
4
- constructor() { }
5
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibService, providedIn: 'root' }); }
7
- }
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibService, decorators: [{
9
- type: Injectable,
10
- args: [{
11
- providedIn: 'root'
12
- }]
13
- }], ctorParameters: () => [] });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGliLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9saWIvc3JjL2xpYi9saWIuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sVUFBVTtJQUVyQixnQkFBZ0IsQ0FBQzsrR0FGTixVQUFVO21IQUFWLFVBQVUsY0FGVCxNQUFNOzs0RkFFUCxVQUFVO2tCQUh0QixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgTGliU2VydmljZSB7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cbn1cbiJdfQ==
@@ -1,6 +0,0 @@
1
- /*
2
- * Public API Surface of lib
3
- */
4
- export * from './lib/lib.service';
5
- export * from './lib/lib.component';
6
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2xpYi9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxxQkFBcUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgbGliXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9saWIvbGliLnNlcnZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGliLmNvbXBvbmVudCc7XG4iXX0=
@@ -1,42 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable, Component } from '@angular/core';
3
-
4
- class LibService {
5
- constructor() { }
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
7
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibService, providedIn: 'root' }); }
8
- }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibService, decorators: [{
10
- type: Injectable,
11
- args: [{
12
- providedIn: 'root'
13
- }]
14
- }], ctorParameters: () => [] });
15
-
16
- class LibComponent {
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: LibComponent, isStandalone: true, selector: "lib-lib", ngImport: i0, template: `
19
- <p>
20
- lib works!
21
- </p>
22
- `, isInline: true, styles: [""] }); }
23
- }
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: LibComponent, decorators: [{
25
- type: Component,
26
- args: [{ selector: 'lib-lib', standalone: true, imports: [], template: `
27
- <p>
28
- lib works!
29
- </p>
30
- ` }]
31
- }] });
32
-
33
- /*
34
- * Public API Surface of lib
35
- */
36
-
37
- /**
38
- * Generated bundle index. Do not edit.
39
- */
40
-
41
- export { LibComponent, LibService };
42
- //# sourceMappingURL=design-system-rte-angular.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"design-system-rte-angular.mjs","sources":["../../../projects/lib/src/lib/lib.service.ts","../../../projects/lib/src/lib/lib.component.ts","../../../projects/lib/src/public-api.ts","../../../projects/lib/src/design-system-rte-angular.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LibService {\n\n constructor() { }\n}\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-lib',\n standalone: true,\n imports: [],\n template: `\n <p>\n lib works!\n </p>\n `,\n styles: ``\n})\nexport class LibComponent {\n\n}\n","/*\n * Public API Surface of lib\n */\n\nexport * from './lib/lib.service';\nexport * from './lib/lib.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,UAAU,CAAA;AAErB,IAAA,WAAA,GAAA;+GAFW,UAAU,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAV,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAU,cAFT,MAAM,EAAA,CAAA,CAAA;;4FAEP,UAAU,EAAA,UAAA,EAAA,CAAA;kBAHtB,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCSY,YAAY,CAAA;+GAAZ,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAZ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,YAAY,EAPb,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;4FAGU,YAAY,EAAA,UAAA,EAAA,CAAA;kBAXxB,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,SAAS,EACP,UAAA,EAAA,IAAI,EACP,OAAA,EAAA,EAAE,EACD,QAAA,EAAA;;;;AAIT,EAAA,CAAA,EAAA;;;ACVH;;AAEG;;ACFH;;AAEG;;;;"}
package/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@design-system-rte/angular" />
5
- export * from './public-api';
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class LibComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<LibComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<LibComponent, "lib-lib", never, {}, {}, never, never, true, never>;
5
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class LibService {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<LibService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<LibService>;
6
- }
package/public-api.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from './lib/lib.service';
2
- export * from './lib/lib.component';