ui-core-abv 0.0.2 → 0.0.4

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 (44) hide show
  1. package/fesm2022/ui-core-abv.mjs +948 -1012
  2. package/fesm2022/ui-core-abv.mjs.map +1 -1
  3. package/lib/{dynamic-form → components/dynamic-form}/form/dynamic-form.component.d.ts +1 -1
  4. package/lib/{dynamic-form → components/dynamic-form}/form-wrapper/form-wrapper.component.d.ts +2 -2
  5. package/lib/{inputs → components/inputs}/input/input.component.d.ts +2 -1
  6. package/lib/{modal → components/modal}/floating-modal/modal.component.d.ts +4 -4
  7. package/lib/{modal → components/modal}/side-modal/side-modal.component.d.ts +5 -5
  8. package/lib/{table → components/table}/table-list/table-list.component.d.ts +1 -1
  9. package/lib/{table → components/table}/table-pagination/table-pagination.component.d.ts +1 -1
  10. package/lib/{table → components/table}/table-searcher/table-searcher.component.d.ts +2 -2
  11. package/lib/{table → components/table}/table-user/table-user.component.d.ts +1 -1
  12. package/lib/{table → components/table}/table.component.d.ts +3 -3
  13. package/lib/{tiny-alert → components/tiny-alert}/tiny-alert.component.d.ts +1 -1
  14. package/lib/components/tooltip/tooltip.component.d.ts +8 -0
  15. package/lib/{modal → services}/modal.service.d.ts +2 -2
  16. package/lib/{push-alerts → services}/push-alert.service.d.ts +1 -1
  17. package/lib/{tiny-alert → services}/tiny-alert.service.d.ts +1 -1
  18. package/package.json +1 -1
  19. package/public-api.d.ts +15 -20
  20. package/src/lib/styles/_colors.scss +0 -0
  21. package/src/lib/styles/_default_colors.scss +101 -0
  22. package/src/lib/styles/_mixins.scss +13 -0
  23. package/src/lib/styles/_tokens.scss +53 -0
  24. package/src/lib/styles/_variables.scss +48 -0
  25. package/lib/push-alerts/alert/alert.component.d.ts +0 -16
  26. package/lib/push-alerts/alert-container/alert-container.component.d.ts +0 -13
  27. package/lib/tooltip/tooltip.component.d.ts +0 -8
  28. /package/lib/{button → components/button}/button.component.d.ts +0 -0
  29. /package/lib/{checkbox → components/checkbox}/checkbox.component.d.ts +0 -0
  30. /package/lib/{base-value-accessot.d.ts → components/dynamic-form/base-value-accessot.d.ts} +0 -0
  31. /package/lib/{dynamic-form → components/dynamic-form}/form.models.d.ts +0 -0
  32. /package/lib/{inputs → components/inputs}/searcher/searcher.component.d.ts +0 -0
  33. /package/lib/{inputs → components/inputs}/select/select.component.d.ts +0 -0
  34. /package/lib/{modal → components/modal}/floating-modal/modalconfig.model.d.ts +0 -0
  35. /package/lib/{modal → components/modal}/side-modal/sideModalConfig.model.d.ts +0 -0
  36. /package/lib/{push-alerts → components/push-alerts}/alert.helpers.d.ts +0 -0
  37. /package/lib/{push-alerts → components/push-alerts}/alert.model.d.ts +0 -0
  38. /package/lib/{skeleton-loader → components/skeleton-loader}/skeleton-loader.component.d.ts +0 -0
  39. /package/lib/{table → components/table}/table.models.d.ts +0 -0
  40. /package/lib/{tiny-alert → components/tiny-alert}/tiny-alert.model.d.ts +0 -0
  41. /package/lib/{toggle-button → components/toggle-button}/toggle-button.component.d.ts +0 -0
  42. /package/lib/{tooltip → directives}/tool-tip.directive.d.ts +0 -0
  43. /package/lib/{modal → services}/modaRef.d.ts +0 -0
  44. /package/lib/{modal → services}/modal.constant.d.ts +0 -0
@@ -6,5 +6,5 @@ export declare class UicDynamicFormComponent {
6
6
  form: FormGroup;
7
7
  flag: boolean;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<UicDynamicFormComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<UicDynamicFormComponent, "app-dynamic-form", never, { "fields": { "alias": "fields"; "required": false; }; "form": { "alias": "form"; "required": true; }; }, {}, never, never, true, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicDynamicFormComponent, "ui-dynamic-form", never, { "fields": { "alias": "fields"; "required": false; }; "form": { "alias": "form"; "required": true; }; }, {}, never, never, true, never>;
10
10
  }
@@ -1,8 +1,8 @@
1
- import { EventEmitter, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { FormBlock, FormResult, FormSchema } from '../form.models';
3
3
  import { FormGroup } from '@angular/forms';
4
4
  import * as i0 from "@angular/core";
5
- export declare class UicFormWrapperComponent {
5
+ export declare class UicFormWrapperComponent implements OnInit, OnChanges {
6
6
  schema: FormSchema;
7
7
  loading: boolean;
8
8
  initialValues: Record<string, any>;
@@ -1,8 +1,9 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { ButtonColor } from '../../button/button.component';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class UicInputComponent {
4
5
  icon: string;
5
- iconColor: 'primary' | 'secondary' | 'error' | 'light' | 'grey';
6
+ iconColor: ButtonColor;
6
7
  internalIcon: string;
7
8
  size: 's' | 'm' | 'l';
8
9
  label: string;
@@ -1,9 +1,9 @@
1
1
  import { Injector, Type } from '@angular/core';
2
2
  import { CdkPortalOutlet } from '@angular/cdk/portal';
3
3
  import { ModalConfig } from './modalconfig.model';
4
- import { UiModalRef } from '../modaRef';
4
+ import { UiModalRef } from '../../../services/modaRef';
5
5
  import * as i0 from "@angular/core";
6
- export declare class ModalComponent {
6
+ export declare class UicModalComponent {
7
7
  private readonly modalRef;
8
8
  private readonly component;
9
9
  private readonly congif;
@@ -16,6 +16,6 @@ export declare class ModalComponent {
16
16
  ngAfterViewInit(): void;
17
17
  closeOuside(): void;
18
18
  close(): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "app-modal", never, {}, {}, never, never, true, never>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<UicModalComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicModalComponent, "ui-modal", never, {}, {}, never, never, true, never>;
21
21
  }
@@ -2,10 +2,10 @@ import { CdkPortalOutlet } from '@angular/cdk/portal';
2
2
  import { Injector, Type } from '@angular/core';
3
3
  import { OverlayRef } from '@angular/cdk/overlay';
4
4
  import { SideModalConfig } from './sideModalConfig.model';
5
- import { UiModalRef } from '../modaRef';
6
- import { UicModalService } from '../modal.service';
5
+ import { UiModalRef } from '../../../services/modaRef';
6
+ import { UicModalService } from '../../../services/modal.service';
7
7
  import * as i0 from "@angular/core";
8
- export declare class SideModalComponent {
8
+ export declare class UicSideModalComponent {
9
9
  private readonly modalRef;
10
10
  private readonly component;
11
11
  private readonly congif;
@@ -25,6 +25,6 @@ export declare class SideModalComponent {
25
25
  close(): void;
26
26
  onAnimationDone(event: any): void;
27
27
  save(): void;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<SideModalComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<SideModalComponent, "app-side-modal", never, {}, {}, never, never, true, never>;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<UicSideModalComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicSideModalComponent, "ui-side-modal", never, {}, {}, never, never, true, never>;
30
30
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class UicTableListComponent {
4
4
  list: TableList[];
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<UicTableListComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<UicTableListComponent, "app-table-list", never, { "list": { "alias": "list"; "required": false; }; }, {}, never, never, true, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicTableListComponent, "uic-table-list", never, { "list": { "alias": "list"; "required": false; }; }, {}, never, never, true, never>;
7
7
  }
@@ -12,5 +12,5 @@ export declare class UicTablePaginationComponent {
12
12
  get pages(): (number | string)[];
13
13
  changePage(newPage: number): void;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<UicTablePaginationComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<UicTablePaginationComponent, "app-table-pagination", never, { "currentPage": { "alias": "currentPage"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "pageChange": "pageChange"; "sizeChange": "sizeChange"; }, never, never, true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicTablePaginationComponent, "uic-table-pagination", never, { "currentPage": { "alias": "currentPage"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "pageChange": "pageChange"; "sizeChange": "sizeChange"; }, never, never, true, never>;
16
16
  }
@@ -4,10 +4,10 @@ export declare class UicTableUicSearcherComponent {
4
4
  placeholder: string;
5
5
  label: string;
6
6
  searchOnKeydown: boolean;
7
- search: EventEmitter<string>;
7
+ filter: EventEmitter<string>;
8
8
  text: string;
9
9
  reset(): void;
10
10
  updateText(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<UicTableUicSearcherComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<UicTableUicSearcherComponent, "table-searcher", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "searchOnKeydown": { "alias": "searchOnKeydown"; "required": false; }; }, { "search": "search"; }, never, never, true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicTableUicSearcherComponent, "uic-table-searcher", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "searchOnKeydown": { "alias": "searchOnKeydown"; "required": false; }; }, { "filter": "filter"; }, never, never, true, never>;
13
13
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class UicTableUserComponent {
4
4
  user: TableUser | undefined;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<UicTableUserComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<UicTableUserComponent, "app-table-user", never, { "user": { "alias": "user"; "required": false; }; }, {}, never, never, true, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicTableUserComponent, "uic-table-user", never, { "user": { "alias": "user"; "required": false; }; }, {}, never, never, true, never>;
7
7
  }
@@ -27,11 +27,11 @@ export declare class UicTableComponent {
27
27
  page: number;
28
28
  getValue(data: TableRowData[], key: string): string | number;
29
29
  getFontColor(data: TableRowData[], key: string): string;
30
- getBackgroundColor(data: TableRowData[], key: string): import("ui-core-abv").BackgroundColors;
30
+ getBackgroundColor(data: TableRowData[], key: string): import("./table.models").BackgroundColors;
31
31
  isValidRule(data: TableRowData[], key: string[] | undefined): boolean;
32
32
  getIcon(data: TableRowData[], key: string): string;
33
- getList(data: TableRowData[], key: string): import("ui-core-abv").TableList[];
34
- getUser(data: TableRowData[], key: string): import("ui-core-abv").TableUser | undefined;
33
+ getList(data: TableRowData[], key: string): import("./table.models").TableList[];
34
+ getUser(data: TableRowData[], key: string): import("./table.models").TableUser | undefined;
35
35
  sortClick(key: string): void;
36
36
  sizeChabge(newSize: number): void;
37
37
  pageChage(newPage: number): void;
@@ -1,5 +1,5 @@
1
1
  import { AlertData, AlertResponseData } from './tiny-alert.model';
2
- import { UiModalRef } from '../modal/modaRef';
2
+ import { UiModalRef } from '../../services/modaRef';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TinyAlertComponent {
5
5
  private readonly modalRef;
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class UicTooltipComponent {
3
+ tooltip: string;
4
+ left: number;
5
+ top: number;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<UicTooltipComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<UicTooltipComponent, "ui-tooltip", never, {}, {}, never, never, true, never>;
8
+ }
@@ -1,8 +1,8 @@
1
1
  import { Type } from '@angular/core';
2
- import { SideModalConfig } from './side-modal/sideModalConfig.model';
3
- import { ModalConfig } from './floating-modal/modalconfig.model';
4
2
  import { OverlayRef } from '@angular/cdk/overlay';
5
3
  import { UiModalRef } from './modaRef';
4
+ import { ModalConfig } from '../components/modal/floating-modal/modalconfig.model';
5
+ import { SideModalConfig } from '../components/modal/side-modal/sideModalConfig.model';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class UicModalService {
8
8
  private readonly overlay;
@@ -1,4 +1,4 @@
1
- import { Alert, AlertConfigParams } from './alert.model';
1
+ import { Alert, AlertConfigParams } from '../components/push-alerts/alert.model';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class UicPushAlertService {
4
4
  autoIncId: number;
@@ -1,4 +1,4 @@
1
- import { AlertData, AlertResponse } from './tiny-alert.model';
1
+ import { AlertData, AlertResponse } from '../components/tiny-alert/tiny-alert.model';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class UicTinyAlertService {
4
4
  private readonly modal;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-core-abv",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.0",
6
6
  "@angular/core": "^19.2.0",
package/public-api.d.ts CHANGED
@@ -1,22 +1,17 @@
1
- export * from './lib/checkbox/checkbox.component';
2
- export * from './lib/toggle-button/toggle-button.component';
3
- export * from './lib/skeleton-loader/skeleton-loader.component';
4
- export * from './lib/push-alerts/push-alert.service';
5
- export * from './lib/push-alerts/alert-container/alert-container.component';
6
- export * from './lib/button/button.component';
7
- export * from './lib/table/table.component';
8
- export * from './lib/table/table.models';
9
- export * from './lib/table/table.models';
1
+ export * from './lib/components/button/button.component';
2
+ export * from './lib/components/checkbox/checkbox.component';
3
+ export * from './lib/components/dynamic-form/form-wrapper/form-wrapper.component';
4
+ export * from './lib/components/inputs/input/input.component';
5
+ export * from './lib/components/inputs/searcher/searcher.component';
6
+ export * from './lib/components/inputs/select/select.component';
7
+ export * from './lib/components/table/table.component';
8
+ export * from './lib/components/toggle-button/toggle-button.component';
10
9
  export * from './lib/animations/animatios.index';
11
- export * from './lib/dynamic-form/form-wrapper/form-wrapper.component';
12
- export * from './lib/dynamic-form/form.models';
13
- export * from './lib/inputs/input/input.component';
14
- export * from './lib/inputs/searcher/searcher.component';
15
- export * from './lib/inputs/select/select.component';
16
- export * from './lib/modal/modal.service';
17
- export * from './lib/modal/modaRef';
18
- export * from './lib/modal/modal.constant';
19
- export * from './lib/tiny-alert/tiny-alert.service';
20
- export * from './lib/tiny-alert/tiny-alert.model';
10
+ export * from './lib/components/dynamic-form/form.models';
11
+ export * from './lib/services/modal.service';
12
+ export * from './lib/services/modaRef';
13
+ export * from './lib/services/modal.constant';
14
+ export * from './lib/services/tiny-alert.service';
15
+ export * from './lib/services/push-alert.service';
21
16
  export * from './lib/pipes/name-inits.pipe';
22
- export * from './lib/tooltip/tool-tip.directive';
17
+ export * from './lib/directives/tool-tip.directive';
File without changes
@@ -0,0 +1,101 @@
1
+ $grey: (
2
+ 25: #fdfdfd,
3
+ 50: #fafafa,
4
+ 100: #f5f5f5,
5
+ 200: #e9eaeb,
6
+ 300: #d5d7da,
7
+ 400: #a4a7ae,
8
+ 500: #717680,
9
+ 600: #535862,
10
+ 700: #414651,
11
+ 800: #252b37,
12
+ 900: #181d27,
13
+ 950: #0a0d12
14
+ ) !default;
15
+
16
+ // COLORES PRINCIPALES
17
+ $primary: (
18
+ 100: #efe9f2,
19
+ 200: #e8dfec,
20
+ 300: #cfbcd7,
21
+ 400: #63277d,
22
+ 500: #592371,
23
+ 600: #4f1f64,
24
+ 700: #4a1d5e,
25
+ 800: #3b174b,
26
+ 900: #2d1238,
27
+ 950: #230e2c
28
+ ) !default;
29
+
30
+ $secondary: (
31
+ 100: #f3eaf9,
32
+ 200: #ece0f6,
33
+ 300: #d8bfed,
34
+ 400: #8230c4,
35
+ 500: #752bb0,
36
+ 600: #68269d,
37
+ 700: #622493,
38
+ 800: #4e1d76,
39
+ 900: #3a1658,
40
+ 950: #2e1145
41
+ );
42
+
43
+ $green: (
44
+ 25: #f0fef9,
45
+ 50: #dcfce3,
46
+ 100: #bbf7d0,
47
+ 200: #86efac,
48
+ 300: #4ade80,
49
+ 400: #22c55e,
50
+ 500: #16a34a,
51
+ 600: #15803d,
52
+ 700: #166534,
53
+ 800: #14532d,
54
+ 900: #1a2e21,
55
+ 950: #052e16
56
+ ) !default;
57
+
58
+ $yellow: (
59
+ 25: #fff9f5,
60
+ 50: #fffaeb,
61
+ 100: #fef0c7,
62
+ 200: #fedf89,
63
+ 300: #fec84b,
64
+ 400: #fdb022,
65
+ 500: #f79009,
66
+ 600: #dc6803,
67
+ 700: #b54708,
68
+ 800: #93370d,
69
+ 900: #792e0d,
70
+ 950: #551d09
71
+ ) !default;
72
+
73
+ $red: (
74
+ 25: #fffbfa,
75
+ 50: #fef3f2,
76
+ 100: #fee4e2,
77
+ 200: #fecdca,
78
+ 300: #fda29b,
79
+ 400: #f97066,
80
+ 500: #f04438,
81
+ 600: #d92d20,
82
+ 700: #b42318,
83
+ 800: #912018,
84
+ 900: #7a271a,
85
+ 950: #55160c
86
+ )!default;
87
+
88
+ $blue: (
89
+ 50: #ffffff,
90
+ 100: #e4eefb,
91
+ 200: #c9ddf7,
92
+ 300: #aeccf4,
93
+ 400: #93bbf0,
94
+ 500: #78aaec,
95
+ 600: #6193d5,
96
+ 700: #4e76aa,
97
+ 800: #3a5880,
98
+ 900: #273b55,
99
+ 950: #131d2b
100
+ )!default;
101
+
@@ -0,0 +1,13 @@
1
+ $breakpoint-md: 768px !default;
2
+
3
+ @mixin desktop {
4
+ @media (min-width: #{$breakpoint-md}) {
5
+ @content;
6
+ }
7
+ }
8
+
9
+ @mixin mobile {
10
+ @media (max-width: #{($breakpoint-md - 1)}) {
11
+ @content;
12
+ }
13
+ }
@@ -0,0 +1,53 @@
1
+
2
+ @use './default_colors' as *;
3
+
4
+
5
+ :root {
6
+ // Grey palette
7
+ @each $shade, $color in $grey {
8
+ --grey-#{$shade}: #{$color};
9
+ }
10
+
11
+ // Primary palette
12
+ @each $shade, $color in $primary {
13
+ --primary-#{$shade}: #{$color};
14
+ }
15
+
16
+ // Secondary palette
17
+ @each $shade, $color in $secondary {
18
+ --secondary-#{$shade}: #{$color};
19
+ }
20
+
21
+ // BLUE palette
22
+ @each $shade, $color in $blue {
23
+ --blue-#{$shade}: #{$color};
24
+ }
25
+
26
+ // RED palette
27
+ @each $shade, $color in $red {
28
+ --red-#{$shade}: #{$color};
29
+ }
30
+
31
+ // GREEN palette
32
+ @each $shade, $color in $green {
33
+ --green-#{$shade}: #{$color};
34
+ }
35
+
36
+ // YELLOW palette
37
+ @each $shade, $color in $yellow {
38
+ --yellow-#{$shade}: #{$color};
39
+ }
40
+
41
+ --white: #fff;
42
+
43
+ --border-radius-sm: 4px;
44
+ --border-radius-md: 8px;
45
+ --border-radius-lg: 16px;
46
+
47
+ --button-radius: 8px;
48
+ --input-radius: 8px;
49
+ --input-label-space: 8px;
50
+
51
+ --border-width-thin: 1px;
52
+ --border-width-thick: 2px;
53
+ }
@@ -0,0 +1,48 @@
1
+ $focus-shadow: 0 0 0 3px rgba(var(--secondary-400), .4);
2
+
3
+
4
+ // ========== TYPOGRAPHY ==========
5
+ $font-family-base: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
6
+ $font-size-ty:0.625rem; // 10px
7
+ $font-size-xs:0.75rem; // 12px
8
+ $font-size-s: 0.875rem; // 14px
9
+ $font-size-m: 1rem; // 16px
10
+ $font-size-ml:1.125rem; // 18px
11
+ $font-size-l: 1.25rem; // 20px
12
+ $font-size-xl:1.625rem; // 26px
13
+
14
+ $font-weight-regular: 400;
15
+ $font-weight-medium: 500;
16
+ $font-weight-bold: 700;
17
+
18
+ // ========== SPACING ==========
19
+ $spacing-xxs: 0.25rem; // 4px
20
+ $spacing-xs: 0.5rem; // 8px
21
+ $spacing-s: 0.75rem; // 12px
22
+ $spacing-m: 1rem; // 16px
23
+ $spacing-l: 1.5rem; // 24px
24
+ $spacing-xl: 2rem; // 32px
25
+ $spacing-xxl: 3rem; // 48px
26
+
27
+ // ========== BORDERS ==========
28
+ $border-radius-xs: 3px;
29
+ $border-radius-s: 6px;
30
+ $border-radius-m: 8px;
31
+ $border-radius-l: 12px;
32
+ $border-radius-xl: 18px;
33
+
34
+ $border-width-thin: 1px;
35
+ $border-width-thick: 2px;
36
+
37
+ // ========== 🌑 SHADOWS ==========
38
+ $shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
39
+ $shadow-md: 0 2px 6px rgba(0, 0, 0, 0.15);
40
+ $shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.2);
41
+ $shadow-overlay: 0 1px 1px 0 #00000020, 0 2px 5px 0 #00000050;
42
+
43
+ $skeleton-gradient: linear-gradient(
44
+ 90deg,
45
+ var(--grey-100) 25%,
46
+ var(--grey-200) 50%,
47
+ var(--grey-100) 75%
48
+ );
@@ -1,16 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { Alert } from '../alert.model';
3
- import * as i0 from "@angular/core";
4
- export declare class AlertComponent implements OnInit {
5
- alert: Alert;
6
- closeAlert: EventEmitter<number>;
7
- interval: any;
8
- progressValue: number;
9
- animationIntevalMs: number;
10
- pauseAnimation: boolean;
11
- id: number;
12
- ngOnInit(): void;
13
- close(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "lib-alert", never, { "alert": { "alias": "alert"; "required": false; }; }, { "closeAlert": "closeAlert"; }, never, never, true, never>;
16
- }
@@ -1,13 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { Alert } from '../alert.model';
3
- import { UicPushAlertService } from '../push-alert.service';
4
- import * as i0 from "@angular/core";
5
- export declare class AlertContainerComponent implements OnInit {
6
- private readonly alertService;
7
- alerts: Alert[];
8
- constructor(alertService: UicPushAlertService);
9
- ngOnInit(): void;
10
- dismis(id: number): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertContainerComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<AlertContainerComponent, "lib-alert-container", never, {}, {}, never, never, true, never>;
13
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TooltipComponent {
3
- tooltip: string;
4
- left: number;
5
- top: number;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "app-tooltip", never, {}, {}, never, never, true, never>;
8
- }
File without changes
File without changes