oasys-lib 0.0.1 → 0.0.3

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 (55) hide show
  1. package/bundles/oasys-lib.umd.js +327 -0
  2. package/bundles/oasys-lib.umd.js.map +1 -0
  3. package/esm2015/lib/components/button/button.component.js +84 -0
  4. package/esm2015/lib/components/button/button.js +2 -0
  5. package/esm2015/lib/components/icon/icon.component.js +57 -0
  6. package/esm2015/lib/components/icon/icon.js +2 -0
  7. package/esm2015/lib/components/layout/box/box.component.js +32 -0
  8. package/esm2015/lib/components/layout/inline/inline.component.js +20 -0
  9. package/esm2015/lib/oasys-lib.module.js +49 -0
  10. package/esm2015/lib/services/token.service.js +36 -0
  11. package/esm2015/lib/services/window.service.js +19 -0
  12. package/{esm2020/oasys-lib.mjs → esm2015/oasys-lib.js} +0 -0
  13. package/esm2015/public-api.js +8 -0
  14. package/fesm2015/oasys-lib.js +283 -0
  15. package/fesm2015/oasys-lib.js.map +1 -0
  16. package/lib/components/button/button.component.d.ts +26 -0
  17. package/lib/components/button/button.d.ts +18 -0
  18. package/lib/components/icon/icon.component.d.ts +25 -0
  19. package/lib/components/icon/icon.d.ts +2 -0
  20. package/lib/components/layout/box/box.component.d.ts +11 -0
  21. package/lib/components/layout/inline/inline.component.d.ts +8 -0
  22. package/lib/oasys-lib.module.d.ts +7 -2
  23. package/lib/services/token.service.d.ts +10 -0
  24. package/lib/services/window.service.d.ts +6 -0
  25. package/package.json +6 -19
  26. package/public-api.d.ts +3 -2
  27. package/src/assets/bloomandwild/fonts/NeueHaasUnicaW05-Medium.woff +0 -0
  28. package/src/assets/bloomandwild/fonts/NeueHaasUnicaW05-Medium.woff2 +0 -0
  29. package/src/assets/bloomandwild/fonts/NeueHaasUnicaW05-Regular.woff +0 -0
  30. package/src/assets/bloomandwild/fonts/NeueHaasUnicaW05-Regular.woff2 +0 -0
  31. package/src/assets/bloomandwild/fonts/TiemposHeadlineWeb-Bold.woff +0 -0
  32. package/src/assets/bloomandwild/fonts/TiemposHeadlineWeb-Bold.woff2 +0 -0
  33. package/src/assets/bloomandwild/icons/icons.svg +1 -0
  34. package/src/assets/bloomandwild/styles.scss +34 -0
  35. package/src/assets/bloomandwild/variables.css +94 -0
  36. package/src/assets/bloomon/fonts/Patron-Regular.woff +0 -0
  37. package/src/assets/bloomon/fonts/Patron-Regular.woff2 +0 -0
  38. package/src/assets/bloomon/fonts/Patron-Thin.woff +0 -0
  39. package/src/assets/bloomon/fonts/Patron-Thin.woff2 +0 -0
  40. package/src/assets/bloomon/icons/icons.svg +1 -0
  41. package/src/assets/bloomon/styles.scss +24 -0
  42. package/src/assets/bloomon/variables.css +94 -0
  43. package/src/assets/global/variables.css +77 -0
  44. package/src/assets/layout.scss +0 -0
  45. package/src/assets/style.css +5 -0
  46. package/esm2020/lib/oasys-lib.component.mjs +0 -26
  47. package/esm2020/lib/oasys-lib.module.mjs +0 -21
  48. package/esm2020/lib/oasys-lib.service.mjs +0 -14
  49. package/esm2020/public-api.mjs +0 -7
  50. package/fesm2015/oasys-lib.mjs +0 -67
  51. package/fesm2015/oasys-lib.mjs.map +0 -1
  52. package/fesm2020/oasys-lib.mjs +0 -67
  53. package/fesm2020/oasys-lib.mjs.map +0 -1
  54. package/lib/oasys-lib.component.d.ts +0 -8
  55. package/lib/oasys-lib.service.d.ts +0 -6
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LayoutBoxComponent implements OnInit {
4
+ boxLayoutClasses?: string;
5
+ padding?: BoxPaddings;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayoutBoxComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayoutBoxComponent, "ui-box", never, { "padding": "padding"; }, {}, never, ["*"]>;
10
+ }
11
+ export declare type BoxPaddings = 'xsmall' | 'small' | 'medium' | 'large' | 'default';
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LayoutInlineComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayoutInlineComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayoutInlineComponent, "ui-inline", never, {}, {}, never, ["*"]>;
8
+ }
@@ -1,7 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./oasys-lib.component";
2
+ import * as i1 from "./components/button/button.component";
3
+ import * as i2 from "./components/layout/inline/inline.component";
4
+ import * as i3 from "./components/icon/icon.component";
5
+ import * as i4 from "./components/layout/box/box.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/router";
3
8
  export declare class OasysLibModule {
4
9
  static ɵfac: i0.ɵɵFactoryDeclaration<OasysLibModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<OasysLibModule, [typeof i1.OasysLibComponent], never, [typeof i1.OasysLibComponent]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OasysLibModule, [typeof i1.ButtonComponent, typeof i2.LayoutInlineComponent, typeof i3.IconComponent, typeof i4.LayoutBoxComponent], [typeof i5.CommonModule, typeof i6.RouterModule], [typeof i1.ButtonComponent, typeof i4.LayoutBoxComponent]>;
6
11
  static ɵinj: i0.ɵɵInjectorDeclaration<OasysLibModule>;
7
12
  }
@@ -0,0 +1,10 @@
1
+ import { WindowService } from './window.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TokenService {
4
+ private windowRef;
5
+ constructor(windowRef: WindowService);
6
+ getBrandName(tokenName: string, element: Element): string;
7
+ getTokenValue(tokenName: string, element?: Element): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TokenService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<TokenService>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class WindowService {
3
+ get nativeWindow(): any;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<WindowService>;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oasys-lib",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.2.0",
6
6
  "@angular/core": "^13.2.0"
@@ -8,24 +8,11 @@
8
8
  "dependencies": {
9
9
  "tslib": "^2.3.0"
10
10
  },
11
- "module": "fesm2015/oasys-lib.mjs",
12
- "es2020": "fesm2020/oasys-lib.mjs",
13
- "esm2020": "esm2020/oasys-lib.mjs",
14
- "fesm2020": "fesm2020/oasys-lib.mjs",
15
- "fesm2015": "fesm2015/oasys-lib.mjs",
11
+ "main": "bundles/oasys-lib.umd.js",
12
+ "module": "fesm2015/oasys-lib.js",
13
+ "es2015": "fesm2015/oasys-lib.js",
14
+ "esm2015": "esm2015/oasys-lib.js",
15
+ "fesm2015": "fesm2015/oasys-lib.js",
16
16
  "typings": "oasys-lib.d.ts",
17
- "exports": {
18
- "./package.json": {
19
- "default": "./package.json"
20
- },
21
- ".": {
22
- "types": "./oasys-lib.d.ts",
23
- "esm2020": "./esm2020/oasys-lib.mjs",
24
- "es2020": "./fesm2020/oasys-lib.mjs",
25
- "es2015": "./fesm2015/oasys-lib.mjs",
26
- "node": "./fesm2015/oasys-lib.mjs",
27
- "default": "./fesm2020/oasys-lib.mjs"
28
- }
29
- },
30
17
  "sideEffects": false
31
18
  }
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
- export * from './lib/oasys-lib.service';
2
- export * from './lib/oasys-lib.component';
3
1
  export * from './lib/oasys-lib.module';
2
+ export * from './lib/components/button/button.component';
3
+ export * from './lib/components/icon/icon.component';
4
+ export * from './lib/components/layout/box/box.component';
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 32 32" id="icon-basket-24" xmlns="http://www.w3.org/2000/svg"><path d="M4 9.127a1 1 0 0 1 1-1h22a1 1 0 0 1 1 1v17.967c0 1.923-1.497 3.567-3.444 3.567H7.445c-1.948 0-3.444-1.643-3.444-3.567V9.127zm2 1v16.967c0 .912.692 1.567 1.444 1.567h17.111c.752 0 1.444-.655 1.444-1.567V10.127h-20z"/><path d="M11.533 11.909a1 1 0 0 0 1-1V6.751c0-.398.06-.78.171-1.137.124-.4.312-.771.552-1.1A3.635 3.635 0 0 1 16.2 2.999c1.767 0 3.262 1.285 3.597 3.019.046.236.07.481.07.732v4.158a1 1 0 0 0 2 0V6.75a5.82 5.82 0 0 0-.106-1.111C21.253 3.007 18.968.999 16.2.999a5.634 5.634 0 0 0-4.561 2.338 5.738 5.738 0 0 0-.844 1.684 5.823 5.823 0 0 0-.261 1.729v4.158a1 1 0 0 0 1 1z"/></symbol><symbol viewBox="0 0 32 32" id="icon-heart-24" xmlns="http://www.w3.org/2000/svg"><path d="m16 10.087 1.307-1.852C18.455 6.608 20.246 5.6 22.223 5.6c3.319 0 6.177 2.895 6.177 6.681v-.002.045c0 1.64-.567 3.149-1.504 4.325l-.016.02-.016.019c-2.351 3.133-8.123 8.649-10.548 10.92-1.505-1.296-4.329-3.769-6.895-6.243C8.062 20.057 6.8 18.77 5.85 17.672a16.092 16.092 0 0 1-1.12-1.427 4.645 4.645 0 0 1-.291-.483l.003.006a1.224 1.224 0 0 1-.082-.185s0-.001 0 0l-.037-.16-.069-.147a7.093 7.093 0 0 1-.655-2.997c0-3.785 2.859-6.68 6.177-6.68 1.977 0 3.768 1.009 4.916 2.633l1.307 1.853zm-1.075-4.014C13.553 4.782 11.752 4 9.778 4c-4.297 0-7.779 3.707-7.779 8.28 0 1.32.289 2.565.804 3.672.599 2.529 9.847 10.62 12.716 13.08.215.187.498.3.807.3.328 0 .626-.128.847-.337l-.001.001c2.228-2.08 8.437-7.969 10.971-11.347a8.516 8.516 0 0 0 1.856-5.326v-.045.002c0-4.573-3.483-8.28-7.777-8.28-1.973 0-3.776.783-5.148 2.073a8.245 8.245 0 0 0-1.058 1.214l-.017.025a8.145 8.145 0 0 0-1.071-1.236l-.004-.004z"/></symbol><symbol viewBox="0 0 32 32" id="icon-pin-24" xmlns="http://www.w3.org/2000/svg"><path d="M15.818 5A8.818 8.818 0 0 0 7 13.818c0 3.416 2.22 6.718 4.635 9.267a32.226 32.226 0 0 0 4.183 3.689 32.226 32.226 0 0 0 4.183-3.689c2.415-2.549 4.635-5.851 4.635-9.267A8.818 8.818 0 0 0 15.818 5zm0 23-.555.832-.003-.002-.007-.005-.025-.017-.09-.062a31.12 31.12 0 0 1-1.478-1.106 34.21 34.21 0 0 1-3.478-3.18c-2.494-2.633-5.183-6.422-5.183-10.642C4.999 7.843 9.842 3 15.817 3s10.818 4.843 10.818 10.818c0 4.22-2.689 8.009-5.183 10.642a34.33 34.33 0 0 1-4.628 4.054c-.14.101-.251.179-.328.232l-.09.062-.025.017-.007.005-.002.001s-.001.001-.556-.831zm0 0 .556.831a1.004 1.004 0 0 1-1.111.001l.555-.832z"/><path d="M15.818 11.545a2.273 2.273 0 1 0 0 4.547 2.273 2.273 0 0 0 0-4.547zm-4.273 2.273a4.273 4.273 0 1 1 8.546 0 4.273 4.273 0 0 1-8.546 0z"/></symbol></svg>
@@ -0,0 +1,34 @@
1
+
2
+ //Headline
3
+
4
+ @font-face {
5
+ font-family: 'TiemposHeadline';
6
+ src: url('./fonts/TiemposHeadlineWeb-Bold.woff2') format('woff2'),
7
+ url('./fonts/TiemposHeadlineWeb-Bold.woff') format('woff');
8
+ font-weight: bold;
9
+ font-style: normal;
10
+ font-display: swap;
11
+ }
12
+
13
+
14
+
15
+ // Body
16
+
17
+ @font-face {
18
+ font-family: 'NeueHaasUnica';
19
+ src: url('./fonts/NeueHaasUnicaW05-Medium.woff2') format('woff2'),
20
+ url('./fonts/NeueHaasUnicaW05-Medium.woff') format('woff');
21
+ font-weight: 500;
22
+ font-style: normal;
23
+ font-display: swap;
24
+ }
25
+
26
+ @font-face {
27
+ font-family: 'NeueHaasUnica';
28
+ src: url('./fonts/NeueHaasUnicaW05-Regular.woff2') format('woff2'),
29
+ url('./fonts/NeueHaasUnicaW05-Regular.woff') format('woff');
30
+ font-weight: 400;
31
+ font-style: normal;
32
+ font-display: swap;
33
+ }
34
+
@@ -0,0 +1,94 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Thu, 07 Jul 2022 14:00:55 GMT
4
+ */
5
+
6
+ :root .bloomandwild {
7
+ --component-color-button-primary-background: #262626;
8
+ --component-color-button-primary-border: #262626;
9
+ --component-color-button-primary-text: #ffffff;
10
+ --component-color-button-secondary-background: transparent;
11
+ --component-color-button-secondary-border: #262626;
12
+ --component-color-button-secondary-text: #262626;
13
+ --component-color-button-tertiary-background: transparent;
14
+ --component-color-button-tertiary-border: transparent;
15
+ --component-color-button-tertiary-text: #262626;
16
+ --component-color-button-primary-inverse-background: #ffffff;
17
+ --component-color-button-primary-inverse-border: #ffffff;
18
+ --component-color-button-primary-inverse-text: #262626;
19
+ --component-color-button-secondary-inverse-background: transparent;
20
+ --component-color-button-secondary-inverse-border: #ffffff;
21
+ --component-color-button-secondary-inverse-text: #ffffff;
22
+ --component-color-button-tertiary-inverse-background: transparent;
23
+ --component-color-button-tertiary-inverse-border: transparent;
24
+ --component-color-button-tertiary-inverse-text: #ffffff;
25
+ --component-color-button-expressive-background: #fff799;
26
+ --component-color-button-expressive-border: #fff799;
27
+ --component-color-button-expressive-text: #262626;
28
+ --component-color-button-danger-background: #DB4141;
29
+ --component-color-button-danger-border: #DB4141;
30
+ --component-color-button-danger-text: #ffffff;
31
+ --component-color-button-facebook-background: #485b94;
32
+ --component-color-button-facebook-border: #485b94;
33
+ --component-color-button-facebook-text: #ffffff;
34
+ --component-color-button-paypal-background: #ffc43a;
35
+ --component-color-button-paypal-border: #ffc43a;
36
+ --component-color-button-paypal-text: #262626;
37
+ --component-color-button-trustpilot-background: #29b47c;
38
+ --component-color-button-trustpilot-border: #29b47c;
39
+ --component-color-button-trustpilot-text: #ffffff;
40
+ --component-color-button-disabled-background: #f4f3f2;
41
+ --component-color-button-disabled-border: #f4f3f2;
42
+ --component-color-button-disabled-text: #898989;
43
+ --component-size-button-large-padding-x: 1.9rem;
44
+ --component-size-button-large-padding-y: 1.5rem;
45
+ --component-size-button-large-icon-offset-leading: 0.8rem;
46
+ --component-size-button-large-icon-offset-trailing: 0.8rem;
47
+ --component-size-button-large-icon-offset-icon-only: 1rem;
48
+ --component-size-button-large-line-height: 1.6rem;
49
+ --component-size-button-large-inline-spacing: 0.8rem;
50
+ --component-size-button-large-font-size: 1.8rem;
51
+ --component-size-button-small-padding-x: 1.5rem;
52
+ --component-size-button-small-padding-y: 0.7rem;
53
+ --component-size-button-small-icon-offset-leading: 0.4rem;
54
+ --component-size-button-small-icon-offset-trailing: 0.4rem;
55
+ --component-size-button-small-icon-offset-icon-only: 1rem;
56
+ --component-size-button-small-line-height: 1.6rem;
57
+ --component-size-button-small-inline-spacing: 0.4rem;
58
+ --component-size-button-small-font-size: 1.6rem;
59
+ --component-border-width-button: 0.1rem;
60
+ --component-border-radius-button: 0.2rem;
61
+ --component-text-transform-button: normal;
62
+ --component-letter-spacing-button: 0rem;
63
+ --component-font-weight-button: 500;
64
+ --component-opacity-overlay-hover: 0.08;
65
+ --component-opacity-overlay-focus: 0.16;
66
+ --semantic-color-action-primary: #262626;
67
+ --semantic-color-action-primary-inverse: #ffffff;
68
+ --semantic-color-action-expressive: #fff799;
69
+ --semantic-color-action-danger: #DB4141;
70
+ --semantic-color-action-disabled: #f4f3f2;
71
+ --semantic-color-background: #ffffff;
72
+ --semantic-color-text-body: #262626;
73
+ --semantic-color-text-body-on-dark: #ffffff;
74
+ --semantic-color-text-body-disabled: #898989;
75
+ --semantic-color-transparent: transparent;
76
+ --semantic-color-tone-success: #fdf888;
77
+ --semantic-color-tone-warning: #ff9f80;
78
+ --semantic-color-tone-error: #C84116;
79
+ --semantic-font-family-headline: 'TiemposHeadline', Georgia, serif;
80
+ --semantic-font-family-headline-secondary: 'NeueHaasUnica', Arial, Helvetica, sans-serif;
81
+ --semantic-font-family-body: 'NeueHaasUnica', Arial, Helvetica, sans-serif;
82
+ --semantic-font-weight-normal: normal;
83
+ --semantic-font-weight-medium: 500;
84
+ --semantic-font-weight-bold: 500;
85
+ --semantic-font-letter-spacing-action-primary: 0rem;
86
+ --semantic-brand-name: bloomandwild;
87
+ --semantic-border-width-default: 0.1rem;
88
+ --semantic-border-width-emphasis: 0.2rem;
89
+ --semantic-border-width-focus: 0.4rem;
90
+ --semantic-border-radius-none: 0rem;
91
+ --semantic-border-radius-soften-ui: 0.2rem;
92
+ --semantic-border-radius-round: 2.4rem;
93
+ --utility-brand-name: bloomandwild;
94
+ }
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 32 32" id="icon-basket-16" xmlns="http://www.w3.org/2000/svg"><path d="M5.354 10.124A3.47 3.47 0 0 1 8.777 7.2h14.445a3.465 3.465 0 0 1 3.424 2.924l2.566 16.208a2.134 2.134 0 0 1-2.106 2.468H4.894a2.134 2.134 0 0 1-2.104-2.48l-.002.012 2.566-16.208zM8.778 8.8c-.92 0-1.7.668-1.844 1.574l-2.566 16.21c-.052.324.2.616.526.616h22.212a.534.534 0 0 0 .525-.619v.003l-2.566-16.21A1.87 1.87 0 0 0 23.222 8.8H8.779z"/><path d="M10.466 7.572a5.467 5.467 0 0 1 10.934 0v.668h-1.6v-.668a3.867 3.867 0 1 0-7.734 0v.668h-1.6v-.668z"/></symbol><symbol viewBox="0 0 32 32" id="icon-basket-24" xmlns="http://www.w3.org/2000/svg"><path d="M5.353 10.124A3.471 3.471 0 0 1 8.777 7.2h14.445a3.467 3.467 0 0 1 3.421 2.904l.003.02 2.567 16.209a2.133 2.133 0 0 1-2.107 2.466H4.893a2.133 2.133 0 0 1-2.105-2.479l-.002.012 2.567-16.209zM8.777 8.8c-.928 0-1.698.677-1.842 1.564l-.001.011-2.565 16.209a.533.533 0 0 0 .527.616h22.211a.533.533 0 0 0 .526-.619v.003l-2.565-16.211A1.87 1.87 0 0 0 23.225 8.8H8.779z"/><path d="M10.467 7.573a5.467 5.467 0 1 1 10.934 0v.667h-1.6v-.667a3.867 3.867 0 0 0-7.734 0v.667h-1.6v-.667z"/></symbol><symbol viewBox="0 0 32 32" id="icon-heart-16" xmlns="http://www.w3.org/2000/svg"><path d="m16 11.154 1.924-2.584a5.351 5.351 0 0 1 4.298-2.17c2.95 0 5.378 2.418 5.378 5.446v-.001.017a5.425 5.425 0 0 1-1.288 3.52l-.026.03-.022.028c-2.158 2.724-7.328 7.452-9.968 9.812l-.291-.232a165.158 165.158 0 0 1-6.077-5.248l-.051-.045a57.434 57.434 0 0 1-3.465-3.401c-.462-.51-.814-.936-1.052-1.27a3.007 3.007 0 0 1-.244-.384l-.046-.178-.11-.228a5.452 5.452 0 0 1-.56-2.42C4.4 8.82 6.83 6.4 9.776 6.4h.001a5.34 5.34 0 0 1 4.299 2.17L16 11.154zm12.144 5.776A7.813 7.813 0 0 0 30 11.86v-.014.001c0-4.334-3.482-7.846-7.778-7.846a7.694 7.694 0 0 0-4.498 1.444A7.87 7.87 0 0 0 16 7.139a7.931 7.931 0 0 0-1.701-1.678l-.023-.016a7.634 7.634 0 0 0-4.488-1.444h-.013.001C5.484 4.001 2 7.513 2 11.847c0 1.248.29 2.428.804 3.476.6 2.398 9.846 10.062 12.716 12.394a1.28 1.28 0 0 0 1.656-.037l-.001.001c2.228-1.97 8.436-7.55 10.97-10.75z"/></symbol><symbol viewBox="0 0 32 32" id="icon-heart-24" xmlns="http://www.w3.org/2000/svg"><path d="m16 10.087 1.307-1.852C18.455 6.608 20.246 5.6 22.223 5.6c3.319 0 6.177 2.895 6.177 6.681v-.002.045c0 1.64-.567 3.149-1.504 4.325l-.016.02-.016.019c-2.351 3.133-8.123 8.649-10.548 10.92-1.505-1.296-4.329-3.769-6.895-6.243C8.062 20.057 6.8 18.77 5.85 17.672a16.092 16.092 0 0 1-1.12-1.427 4.645 4.645 0 0 1-.291-.483l.003.006a1.224 1.224 0 0 1-.082-.185s0-.001 0 0l-.037-.16-.069-.147a7.093 7.093 0 0 1-.655-2.997c0-3.785 2.859-6.68 6.177-6.68 1.977 0 3.768 1.009 4.916 2.633l1.307 1.853zm-1.075-4.014C13.553 4.782 11.752 4 9.778 4c-4.297 0-7.779 3.707-7.779 8.28 0 1.32.289 2.565.804 3.672.599 2.529 9.847 10.62 12.716 13.08.215.187.498.3.807.3.328 0 .626-.128.847-.337l-.001.001c2.228-2.08 8.437-7.969 10.971-11.347a8.516 8.516 0 0 0 1.856-5.326v-.045.002c0-4.573-3.483-8.28-7.777-8.28-1.973 0-3.776.783-5.148 2.073a8.245 8.245 0 0 0-1.058 1.214l-.017.025a8.145 8.145 0 0 0-1.071-1.236l-.004-.004z"/></symbol><symbol viewBox="0 0 34 32" id="icon-pin-16" xmlns="http://www.w3.org/2000/svg"><path d="M16.364 5a8.818 8.818 0 0 0-8.818 8.818c0 3.416 2.22 6.718 4.635 9.267a32.226 32.226 0 0 0 4.183 3.689 32.108 32.108 0 0 0 4.183-3.689c2.415-2.549 4.635-5.851 4.635-9.267A8.818 8.818 0 0 0 16.364 5zm0 23-.555.832-.003-.002-.007-.005-.025-.017-.09-.061a31.12 31.12 0 0 1-1.478-1.106 34.21 34.21 0 0 1-3.478-3.18c-2.494-2.633-5.183-6.422-5.183-10.642 0-5.975 4.843-10.818 10.818-10.818s10.818 4.843 10.818 10.818c0 4.22-2.689 8.009-5.183 10.642a34.33 34.33 0 0 1-4.628 4.054c-.14.101-.251.179-.328.232l-.114.078-.007.005-.002.002s-.001.001-.556-.831zm0 0 .556.831a1.002 1.002 0 0 1-1.111 0l.555-.832z"/><path d="M16.364 11.545a2.273 2.273 0 1 0 0 4.547 2.273 2.273 0 0 0 0-4.547zm-4.273 2.273a4.273 4.273 0 1 1 8.546 0 4.273 4.273 0 0 1-8.546 0z"/></symbol><symbol viewBox="0 0 32 32" id="icon-pin-24" xmlns="http://www.w3.org/2000/svg"><path d="M7.467 13.6c0-4.882 3.842-8.8 8.533-8.8s8.533 3.918 8.533 8.8c0 2.167-1.097 4.46-2.721 6.719-1.614 2.246-3.664 4.349-5.425 6.141a.544.544 0 0 1-.776 0c-1.761-1.793-3.811-3.896-5.425-6.141-1.623-2.259-2.721-4.552-2.721-6.719zM16 3.2c-5.618 0-10.133 4.678-10.133 10.4 0 2.674 1.335 5.306 3.021 7.653 1.696 2.361 3.833 4.547 5.582 6.329.84.855 2.219.855 3.059 0 1.749-1.781 3.886-3.968 5.582-6.329 1.686-2.347 3.021-4.978 3.021-7.653 0-5.722-4.516-10.4-10.133-10.4zm-2.533 10.133a2.533 2.533 0 1 1 5.066 0 2.533 2.533 0 0 1-5.066 0zM16 9.2a4.133 4.133 0 1 0 0 8.266A4.133 4.133 0 0 0 16 9.2z"/></symbol></svg>
@@ -0,0 +1,24 @@
1
+ /* ---------------------
2
+ Bloomon font family defintions
3
+ --------------------- */
4
+
5
+ @font-face {
6
+ font-family: 'Patron';
7
+ src: url('./fonts/Patron-Regular.woff2') format('woff2'),
8
+ url('./fonts/Patron-Regular.woff') format('woff');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ font-display: swap;
12
+ }
13
+
14
+ @font-face {
15
+ font-family: 'Patron';
16
+ src: url('./fonts/Patron-Thin.woff2') format('woff2'),
17
+ url('./fonts/Patron-Thin.woff') format('woff');
18
+ font-weight: 100;
19
+ font-style: normal;
20
+ font-display: swap;
21
+ }
22
+
23
+
24
+
@@ -0,0 +1,94 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Thu, 07 Jul 2022 14:00:55 GMT
4
+ */
5
+
6
+ :root .bloomon {
7
+ --component-color-button-primary-background: #464646;
8
+ --component-color-button-primary-border: #464646;
9
+ --component-color-button-primary-text: #ffffff;
10
+ --component-color-button-secondary-background: transparent;
11
+ --component-color-button-secondary-border: #464646;
12
+ --component-color-button-secondary-text: #464646;
13
+ --component-color-button-tertiary-background: transparent;
14
+ --component-color-button-tertiary-border: transparent;
15
+ --component-color-button-tertiary-text: #464646;
16
+ --component-color-button-primary-inverse-background: #ffffff;
17
+ --component-color-button-primary-inverse-border: #ffffff;
18
+ --component-color-button-primary-inverse-text: #464646;
19
+ --component-color-button-secondary-inverse-background: transparent;
20
+ --component-color-button-secondary-inverse-border: #ffffff;
21
+ --component-color-button-secondary-inverse-text: #ffffff;
22
+ --component-color-button-tertiary-inverse-background: transparent;
23
+ --component-color-button-tertiary-inverse-border: transparent;
24
+ --component-color-button-tertiary-inverse-text: #ffffff;
25
+ --component-color-button-expressive-background: #fdf888;
26
+ --component-color-button-expressive-border: #fdf888;
27
+ --component-color-button-expressive-text: #464646;
28
+ --component-color-button-danger-background: #C84116;
29
+ --component-color-button-danger-border: #C84116;
30
+ --component-color-button-danger-text: #ffffff;
31
+ --component-color-button-facebook-background: #485b94;
32
+ --component-color-button-facebook-border: #485b94;
33
+ --component-color-button-facebook-text: #ffffff;
34
+ --component-color-button-paypal-background: #ffc43a;
35
+ --component-color-button-paypal-border: #ffc43a;
36
+ --component-color-button-paypal-text: #464646;
37
+ --component-color-button-trustpilot-background: #29b47c;
38
+ --component-color-button-trustpilot-border: #29b47c;
39
+ --component-color-button-trustpilot-text: #ffffff;
40
+ --component-color-button-disabled-background: #f7f7f7;
41
+ --component-color-button-disabled-border: #f7f7f7;
42
+ --component-color-button-disabled-text: #898989;
43
+ --component-size-button-large-padding-x: 2.3rem;
44
+ --component-size-button-large-padding-y: 1.5rem;
45
+ --component-size-button-large-icon-offset-leading: 0.6rem;
46
+ --component-size-button-large-icon-offset-trailing: 0.6rem;
47
+ --component-size-button-large-icon-offset-icon-only: 1rem;
48
+ --component-size-button-large-line-height: 1.6rem;
49
+ --component-size-button-large-inline-spacing: 0.8rem;
50
+ --component-size-button-large-font-size: 1.4rem;
51
+ --component-size-button-small-padding-x: 1.5rem;
52
+ --component-size-button-small-padding-y: 0.7rem;
53
+ --component-size-button-small-icon-offset-leading: 0.4rem;
54
+ --component-size-button-small-icon-offset-trailing: 0.4rem;
55
+ --component-size-button-small-icon-offset-icon-only: 1rem;
56
+ --component-size-button-small-line-height: 1.6rem;
57
+ --component-size-button-small-inline-spacing: 0.4rem;
58
+ --component-size-button-small-font-size: 1.2rem;
59
+ --component-border-width-button: 0.1rem;
60
+ --component-border-radius-button: 2.4rem;
61
+ --component-text-transform-button: uppercase;
62
+ --component-letter-spacing-button: 0.2rem;
63
+ --component-font-weight-button: normal;
64
+ --component-opacity-overlay-hover: 0.08;
65
+ --component-opacity-overlay-focus: 0.16;
66
+ --semantic-color-action-primary: #464646;
67
+ --semantic-color-action-primary-inverse: #ffffff;
68
+ --semantic-color-action-expressive: #fdf888;
69
+ --semantic-color-action-danger: #C84116;
70
+ --semantic-color-action-disabled: #f7f7f7;
71
+ --semantic-color-background: #ffffff;
72
+ --semantic-color-text-body: #464646;
73
+ --semantic-color-text-body-on-dark: #ffffff;
74
+ --semantic-color-text-body-disabled: #898989;
75
+ --semantic-color-transparent: transparent;
76
+ --semantic-color-tone-success: #fdf888;
77
+ --semantic-color-tone-warning: #ff9f80;
78
+ --semantic-color-tone-error: #DB4141;
79
+ --semantic-font-family-headline: 'Patron', Arial, Helvetica, sans-serif;
80
+ --semantic-font-family-headline-second: 'Patron', Arial, Helvetica, sans-serif;
81
+ --semantic-font-family-body: 'Patron', Arial, Helvetica, sans-serif;
82
+ --semantic-font-weight-normal: 100;
83
+ --semantic-font-weight-medium: normal;
84
+ --semantic-font-weight-bold: normal;
85
+ --semantic-font-letter-spacing-action-primary: 0.2rem;
86
+ --semantic-brand-name: bloomon;
87
+ --semantic-border-width-default: 0.1rem;
88
+ --semantic-border-width-emphasis: 0.2rem;
89
+ --semantic-border-width-focus: 0.4rem;
90
+ --semantic-border-radius-none: 0rem;
91
+ --semantic-border-radius-soften-ui: 0.2rem;
92
+ --semantic-border-radius-round: 2.4rem;
93
+ --utility-brand-name: bloomon;
94
+ }
@@ -0,0 +1,77 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Thu, 07 Jul 2022 14:00:55 GMT
4
+ */
5
+
6
+ :root {
7
+ --global-color-white: #ffffff;
8
+ --global-color-grey-10: #f7f7f7;
9
+ --global-color-grey-20: #cdcdcd;
10
+ --global-color-grey-30: #c6c6c6;
11
+ --global-color-grey-40: #a8a8a8;
12
+ --global-color-grey-50: #898989;
13
+ --global-color-grey-60: #676767;
14
+ --global-color-grey-75: #464646;
15
+ --global-color-grey-80: #464646;
16
+ --global-color-grey-90: #262626;
17
+ --global-color-linen-grey-10: #f4f3f2;
18
+ --global-color-linen-grey-20: #e2e0dc;
19
+ --global-color-linen-grey-30: #cbc7c1;
20
+ --global-color-linen-grey-40: #afaaa1;
21
+ --global-color-linen-grey-50: #948b7e;
22
+ --global-color-linen-grey-60: #726b60;
23
+ --global-color-linen-grey-75: #4d4840;
24
+ --global-color-yellow-50: #fdf888;
25
+ --global-color-yellow-60: #fff799;
26
+ --global-color-linen-10: #fcf5ea;
27
+ --global-color-linen-20: #f9ecd7;
28
+ --global-color-linen-40: #e8b767;
29
+ --global-color-linen-60: #b67b1b;
30
+ --global-color-linen-75: #734d11;
31
+ --global-color-pine-10: #f0f6f4;
32
+ --global-color-pine-20: #e2eee9;
33
+ --global-color-pine-40: #8fc0ac;
34
+ --global-color-pine-60: #447964;
35
+ --global-color-pine-75: #2d5443;
36
+ --global-color-blush-copper: #d89078;
37
+ --global-color-blush-blush: #ff9f80;
38
+ --global-color-blush-lush: #ffcfc0;
39
+ --global-color-blush-light: #f8d7be;
40
+ --global-color-blush-beige: #f6e9dc;
41
+ --global-color-blush-pale: #fff8f4;
42
+ --global-color-red-50: #DB4141;
43
+ --global-color-red-60: #C84116;
44
+ --global-color-partners-facebook: #485b94;
45
+ --global-color-partners-paypal: #ffc43a;
46
+ --global-color-partners-trustpilot: #29b47c;
47
+ --global-size-font-body-1: 2rem;
48
+ --global-size-font-body-2: 1.8rem;
49
+ --global-size-font-body-3: 1.6rem;
50
+ --global-size-font-body-4: 1.4rem;
51
+ --global-size-font-body-5: 1.2rem;
52
+ --global-size-font-base: 1.6rem;
53
+ --global-size-icon-small: 2rem;
54
+ --global-size-icon-large: 2rem;
55
+ --global-size-unit-0: 0rem;
56
+ --global-size-unit-10: 1rem;
57
+ --global-size-unit-11: 1.1rem;
58
+ --global-size-unit-12: 1.2rem;
59
+ --global-size-unit-15: 1.5rem; /* Test description */
60
+ --global-size-unit-16: 1.6rem;
61
+ --global-size-unit-19: 1.9rem;
62
+ --global-size-unit-20: 2rem;
63
+ --global-size-unit-23: 2.3rem;
64
+ --global-size-unit-24: 2.4rem;
65
+ --global-size-unit-32: 3.2rem;
66
+ --global-size-unit-40: 4rem;
67
+ --global-size-unit-48: 4.8rem;
68
+ --global-size-unit-56: 5.6rem;
69
+ --global-size-unit-01: 0.1rem;
70
+ --global-size-unit-02: 0.2rem;
71
+ --global-size-unit-04: 0.4rem;
72
+ --global-size-unit-05: 0.5rem;
73
+ --global-size-unit-06: 0.6rem;
74
+ --global-size-unit-07: 0.7rem;
75
+ --global-size-unit-08: 0.8rem;
76
+ --global-size-unit-default: 2.4rem;
77
+ }
File without changes
@@ -0,0 +1,5 @@
1
+ /* @import './layout.scss'; */
2
+
3
+ html {
4
+ font-size: 62.5%;
5
+ }
@@ -1,26 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class OasysLibComponent {
4
- constructor() { }
5
- ngOnInit() {
6
- }
7
- }
8
- OasysLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
- OasysLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.5", type: OasysLibComponent, selector: "lib-oasys-lib", ngImport: i0, template: `
10
- <p>
11
- oasys-lib works!!!!
12
- </p>
13
- `, isInline: true });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibComponent, decorators: [{
15
- type: Component,
16
- args: [{
17
- selector: 'lib-oasys-lib',
18
- template: `
19
- <p>
20
- oasys-lib works!!!!
21
- </p>
22
- `,
23
- styles: []
24
- }]
25
- }], ctorParameters: function () { return []; } });
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2FzeXMtbGliLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL29hc3lzLWxpYi9zcmMvbGliL29hc3lzLWxpYi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFZbEQsTUFBTSxPQUFPLGlCQUFpQjtJQUU1QixnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7OEdBTFUsaUJBQWlCO2tHQUFqQixpQkFBaUIscURBUmxCOzs7O0dBSVQ7MkZBSVUsaUJBQWlCO2tCQVY3QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxlQUFlO29CQUN6QixRQUFRLEVBQUU7Ozs7R0FJVDtvQkFDRCxNQUFNLEVBQUUsRUFDUDtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1vYXN5cy1saWInLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxwPlxuICAgICAgb2FzeXMtbGliIHdvcmtzISEhIVxuICAgIDwvcD5cbiAgYCxcbiAgc3R5bGVzOiBbXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgT2FzeXNMaWJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cblxufVxuIl19
@@ -1,21 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { OasysLibComponent } from './oasys-lib.component';
3
- import * as i0 from "@angular/core";
4
- export class OasysLibModule {
5
- }
6
- OasysLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7
- OasysLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, declarations: [OasysLibComponent], exports: [OasysLibComponent] });
8
- OasysLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, imports: [[]] });
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, decorators: [{
10
- type: NgModule,
11
- args: [{
12
- declarations: [
13
- OasysLibComponent
14
- ],
15
- imports: [],
16
- exports: [
17
- OasysLibComponent
18
- ]
19
- }]
20
- }] });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2FzeXMtbGliLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL29hc3lzLWxpYi9zcmMvbGliL29hc3lzLWxpYi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7QUFjMUQsTUFBTSxPQUFPLGNBQWM7OzJHQUFkLGNBQWM7NEdBQWQsY0FBYyxpQkFSdkIsaUJBQWlCLGFBS2pCLGlCQUFpQjs0R0FHUixjQUFjLFlBTmhCLEVBQ1I7MkZBS1UsY0FBYztrQkFWMUIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osaUJBQWlCO3FCQUNsQjtvQkFDRCxPQUFPLEVBQUUsRUFDUjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsaUJBQWlCO3FCQUNsQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBPYXN5c0xpYkNvbXBvbmVudCB9IGZyb20gJy4vb2FzeXMtbGliLmNvbXBvbmVudCc7XG5cblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBPYXN5c0xpYkNvbXBvbmVudFxuICBdLFxuICBpbXBvcnRzOiBbXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBPYXN5c0xpYkNvbXBvbmVudFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIE9hc3lzTGliTW9kdWxlIHsgfVxuIl19
@@ -1,14 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class OasysLibService {
4
- constructor() { }
5
- }
6
- OasysLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7
- OasysLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibService, providedIn: 'root' });
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibService, decorators: [{
9
- type: Injectable,
10
- args: [{
11
- providedIn: 'root'
12
- }]
13
- }], ctorParameters: function () { return []; } });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2FzeXMtbGliLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9vYXN5cy1saWIvc3JjL2xpYi9vYXN5cy1saWIuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sZUFBZTtJQUUxQixnQkFBZ0IsQ0FBQzs7NEdBRk4sZUFBZTtnSEFBZixlQUFlLGNBRmQsTUFBTTsyRkFFUCxlQUFlO2tCQUgzQixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgT2FzeXNMaWJTZXJ2aWNlIHtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxufVxuIl19
@@ -1,7 +0,0 @@
1
- /*
2
- * Public API Surface of oasys-lib
3
- */
4
- export * from './lib/oasys-lib.service';
5
- export * from './lib/oasys-lib.component';
6
- export * from './lib/oasys-lib.module';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL29hc3lzLWxpYi9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHdCQUF3QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBvYXN5cy1saWJcbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2xpYi9vYXN5cy1saWIuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9vYXN5cy1saWIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL29hc3lzLWxpYi5tb2R1bGUnO1xuIl19
@@ -1,67 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable, Component, NgModule } from '@angular/core';
3
-
4
- class OasysLibService {
5
- constructor() { }
6
- }
7
- OasysLibService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8
- OasysLibService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibService, providedIn: 'root' });
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibService, decorators: [{
10
- type: Injectable,
11
- args: [{
12
- providedIn: 'root'
13
- }]
14
- }], ctorParameters: function () { return []; } });
15
-
16
- class OasysLibComponent {
17
- constructor() { }
18
- ngOnInit() {
19
- }
20
- }
21
- OasysLibComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
- OasysLibComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.5", type: OasysLibComponent, selector: "lib-oasys-lib", ngImport: i0, template: `
23
- <p>
24
- oasys-lib works!!!!
25
- </p>
26
- `, isInline: true });
27
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibComponent, decorators: [{
28
- type: Component,
29
- args: [{
30
- selector: 'lib-oasys-lib',
31
- template: `
32
- <p>
33
- oasys-lib works!!!!
34
- </p>
35
- `,
36
- styles: []
37
- }]
38
- }], ctorParameters: function () { return []; } });
39
-
40
- class OasysLibModule {
41
- }
42
- OasysLibModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
43
- OasysLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, declarations: [OasysLibComponent], exports: [OasysLibComponent] });
44
- OasysLibModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, imports: [[]] });
45
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: OasysLibModule, decorators: [{
46
- type: NgModule,
47
- args: [{
48
- declarations: [
49
- OasysLibComponent
50
- ],
51
- imports: [],
52
- exports: [
53
- OasysLibComponent
54
- ]
55
- }]
56
- }] });
57
-
58
- /*
59
- * Public API Surface of oasys-lib
60
- */
61
-
62
- /**
63
- * Generated bundle index. Do not edit.
64
- */
65
-
66
- export { OasysLibComponent, OasysLibModule, OasysLibService };
67
- //# sourceMappingURL=oasys-lib.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"oasys-lib.mjs","sources":["../../../projects/oasys-lib/src/lib/oasys-lib.service.ts","../../../projects/oasys-lib/src/lib/oasys-lib.component.ts","../../../projects/oasys-lib/src/lib/oasys-lib.module.ts","../../../projects/oasys-lib/src/public-api.ts","../../../projects/oasys-lib/src/oasys-lib.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class OasysLibService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-oasys-lib',\n template: `\n <p>\n oasys-lib works!!!!\n </p>\n `,\n styles: [\n ]\n})\nexport class OasysLibComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { OasysLibComponent } from './oasys-lib.component';\n\n\n\n@NgModule({\n declarations: [\n OasysLibComponent\n ],\n imports: [\n ],\n exports: [\n OasysLibComponent\n ]\n})\nexport class OasysLibModule { }\n","/*\n * Public API Surface of oasys-lib\n */\n\nexport * from './lib/oasys-lib.service';\nexport * from './lib/oasys-lib.component';\nexport * from './lib/oasys-lib.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,eAAe,CAAA;AAE1B,IAAA,WAAA,GAAA,GAAiB;;4GAFN,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAf,eAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,eAAe,cAFd,MAAM,EAAA,CAAA,CAAA;2FAEP,eAAe,EAAA,UAAA,EAAA,CAAA;kBAH3B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;iBACnB,CAAA;;;MCQY,iBAAiB,CAAA;AAE5B,IAAA,WAAA,GAAA,GAAiB;IAEjB,QAAQ,GAAA;KACP;;8GALU,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iBAAiB,EARlB,QAAA,EAAA,eAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAIU,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAV7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;AACzB,oBAAA,QAAQ,EAAE,CAAA;;;;AAIT,EAAA,CAAA;AACD,oBAAA,MAAM,EAAE,EACP;iBACF,CAAA;;;MCIY,cAAc,CAAA;;2GAAd,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;4GAAd,cAAc,EAAA,YAAA,EAAA,CARvB,iBAAiB,CAAA,EAAA,OAAA,EAAA,CAKjB,iBAAiB,CAAA,EAAA,CAAA,CAAA;AAGR,cAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,YANhB,EACR,CAAA,EAAA,CAAA,CAAA;2FAKU,cAAc,EAAA,UAAA,EAAA,CAAA;kBAV1B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,iBAAiB;AAClB,qBAAA;AACD,oBAAA,OAAO,EAAE,EACR;AACD,oBAAA,OAAO,EAAE;wBACP,iBAAiB;AAClB,qBAAA;iBACF,CAAA;;;ACdD;;AAEG;;ACFH;;AAEG;;;;"}