@ascentgl/ads-ui 0.0.151 → 0.0.153

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 (54) hide show
  1. package/README.md +7 -7
  2. package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs +2 -2
  3. package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs.map +1 -1
  4. package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +2 -2
  5. package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs.map +1 -1
  6. package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +2 -2
  7. package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs.map +1 -1
  8. package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs.map +1 -1
  9. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs +2 -2
  10. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs.map +1 -1
  11. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs +2 -2
  12. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs.map +1 -1
  13. package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs +2 -2
  14. package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs.map +1 -1
  15. package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +2 -2
  16. package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs.map +1 -1
  17. package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +2 -2
  18. package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map +1 -1
  19. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +2 -2
  20. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs.map +1 -1
  21. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +2 -2
  22. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs.map +1 -1
  23. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +2 -2
  24. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs.map +1 -1
  25. package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +2 -2
  26. package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs.map +1 -1
  27. package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs +2 -2
  28. package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs.map +1 -1
  29. package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +2 -2
  30. package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs.map +1 -1
  31. package/fesm2022/ascentgl-ads-ui.mjs +219 -202
  32. package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
  33. package/lib/components/badge/numeric-badge.component.d.ts +1 -1
  34. package/lib/components/form-fields/input/input.component.d.ts +5 -1
  35. package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.d.ts +3 -1
  36. package/package.json +9 -9
  37. package/src/assets/sass/ads-ui/abstracts/_functions.scss +18 -18
  38. package/src/assets/sass/ads-ui/abstracts/_mixins.scss +90 -90
  39. package/src/assets/sass/ads-ui/abstracts/_variables.scss +125 -125
  40. package/src/assets/sass/ads-ui/base/_reset.scss +19 -19
  41. package/src/assets/sass/ads-ui/base/_typography.scss +179 -179
  42. package/src/assets/sass/ads-ui/base/_utilities.scss +104 -104
  43. package/src/assets/sass/ads-ui/main.scss +8 -8
  44. package/src/assets/sass/ads-ui/overrides/_angular-material.scss +8 -8
  45. package/src/assets/sass/ads-ui/overrides/angular-material/_bottom-sheet.scss +12 -12
  46. package/src/assets/sass/ads-ui/overrides/angular-material/_datetimepicker.scss +248 -248
  47. package/src/assets/sass/ads-ui/overrides/angular-material/_dropdown.scss +31 -31
  48. package/src/assets/sass/ads-ui/overrides/angular-material/_html.scss +14 -14
  49. package/src/assets/sass/ads-ui/overrides/angular-material/_mat-list.scss +47 -47
  50. package/src/assets/sass/ads-ui/overrides/angular-material/_menu.scss +89 -89
  51. package/src/assets/sass/ads-ui/overrides/angular-material/_search-dropdown-modal.scss +34 -34
  52. package/src/assets/sass/ads-ui/overrides/angular-material/_snackbar.scss +40 -40
  53. package/src/assets/sass/ads-ui/overrides/angular-material/_tooltip.scss +76 -76
  54. package/src/assets/sass/ads-ui/themes/_ads-palette.scss +98 -98
@@ -12,7 +12,7 @@ export declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
12
12
  /** provide icon name. NOTE: the icon must be registered in icon registry **/
13
13
  name: import("@angular/core").InputSignal<adsIcon>;
14
14
  /** choose ads icon theme **/
15
- theme: import("@angular/core").InputSignal<"iconPrimary" | "primary" | "success" | "warn" | "white">;
15
+ theme: import("@angular/core").InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
16
16
  /** set badge value as number **/
17
17
  value: import("@angular/core").InputSignal<number>;
18
18
  /** @ignore **/
@@ -19,6 +19,10 @@ export declare class AdsInputComponent extends AbstractInputComponent implements
19
19
  showClockIcon: boolean;
20
20
  /** Add mask to the Input */
21
21
  mask: string;
22
+ /** Add suffix to the Input */
23
+ suffix: string;
24
+ /** If true Special Characters not be included in the actual value */
25
+ dropSpecialCharacters: boolean;
22
26
  /** Custom function to execute on blur event */
23
27
  onBlur: (event: FocusEvent) => void;
24
28
  /** @ignore */
@@ -33,5 +37,5 @@ export declare class AdsInputComponent extends AbstractInputComponent implements
33
37
  /** @ignore */
34
38
  restrictInput(event: KeyboardEvent): void;
35
39
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsInputComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsInputComponent, "ads-input", never, { "maxlength": { "alias": "maxlength"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "isPasswordField": { "alias": "isPasswordField"; "required": false; }; "showClockIcon": { "alias": "showClockIcon"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "onBlur": { "alias": "onBlur"; "required": false; }; }, {}, never, never, false, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsInputComponent, "ads-input", never, { "maxlength": { "alias": "maxlength"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "isPasswordField": { "alias": "isPasswordField"; "required": false; }; "showClockIcon": { "alias": "showClockIcon"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "dropSpecialCharacters": { "alias": "dropSpecialCharacters"; "required": false; }; "onBlur": { "alias": "onBlur"; "required": false; }; }, {}, never, never, false, never>;
37
41
  }
@@ -52,6 +52,8 @@ export declare class AdsSearchDropdownComponent extends AbstractDropdownComponen
52
52
  preventClick: boolean;
53
53
  /** @ignore */
54
54
  closePanelEnabled: boolean;
55
+ /** @ignore */
56
+ trimValue: boolean;
55
57
  /**
56
58
  * NOTE: INPUT PARAMS BELOW ARE OVERRIDDEN BECAUSE FOR SOME UNKNOWN REASON STORYBOOK WON'T SHOW THEM FROM PARENT CLASS
57
59
  */
@@ -190,6 +192,6 @@ export declare class AdsSearchDropdownComponent extends AbstractDropdownComponen
190
192
  private overrideKeydownHandler;
191
193
  private modifyOptionClickEvent;
192
194
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsSearchDropdownComponent, never>;
193
- static ɵcmp: i0.ɵɵComponentDeclaration<AdsSearchDropdownComponent, "ads-search-dropdown", never, { "maxlength": { "alias": "maxlength"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "options": { "alias": "options"; "required": false; }; "staticOptions": { "alias": "staticOptions"; "required": false; }; "filterOptions": { "alias": "filterOptions"; "required": false; }; "emitEmptyValues": { "alias": "emitEmptyValues"; "required": false; }; "loadSuggestionOnInit": { "alias": "loadSuggestionOnInit"; "required": false; }; "noDataOption": { "alias": "noDataOption"; "required": false; }; "moreDataOption": { "alias": "moreDataOption"; "required": false; }; "staticDataOption": { "alias": "staticDataOption"; "required": false; }; "onEnterKeyDown": { "alias": "onEnterKeyDown"; "required": false; }; "searchIconClickCallback": { "alias": "searchIconClickCallback"; "required": false; }; "displayValueFormatter": { "alias": "displayValueFormatter"; "required": false; }; "useOptionTemplate": { "alias": "useOptionTemplate"; "required": false; }; "minValueLength": { "alias": "minValueLength"; "required": false; }; "preventClick": { "alias": "preventClick"; "required": false; }; "closePanelEnabled": { "alias": "closePanelEnabled"; "required": false; }; "control": { "alias": "control"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "emitSearchValueInput": "emitSearchValueInput"; }, ["optionRef"], never, false, never>;
195
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdsSearchDropdownComponent, "ads-search-dropdown", never, { "maxlength": { "alias": "maxlength"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "options": { "alias": "options"; "required": false; }; "staticOptions": { "alias": "staticOptions"; "required": false; }; "filterOptions": { "alias": "filterOptions"; "required": false; }; "emitEmptyValues": { "alias": "emitEmptyValues"; "required": false; }; "loadSuggestionOnInit": { "alias": "loadSuggestionOnInit"; "required": false; }; "noDataOption": { "alias": "noDataOption"; "required": false; }; "moreDataOption": { "alias": "moreDataOption"; "required": false; }; "staticDataOption": { "alias": "staticDataOption"; "required": false; }; "onEnterKeyDown": { "alias": "onEnterKeyDown"; "required": false; }; "searchIconClickCallback": { "alias": "searchIconClickCallback"; "required": false; }; "displayValueFormatter": { "alias": "displayValueFormatter"; "required": false; }; "useOptionTemplate": { "alias": "useOptionTemplate"; "required": false; }; "minValueLength": { "alias": "minValueLength"; "required": false; }; "preventClick": { "alias": "preventClick"; "required": false; }; "closePanelEnabled": { "alias": "closePanelEnabled"; "required": false; }; "trimValue": { "alias": "trimValue"; "required": false; }; "control": { "alias": "control"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "emitSearchValueInput": "emitSearchValueInput"; }, ["optionRef"], never, false, never>;
194
196
  }
195
197
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascentgl/ads-ui",
3
- "version": "0.0.151",
3
+ "version": "0.0.153",
4
4
  "peerDependencies": {
5
5
  "@ascentgl/ads-icons": ">=0.0.0",
6
6
  "@ascentgl/ads-utils": ">=0.0.0",
@@ -44,14 +44,14 @@
44
44
  "types": "./src/lib/components/header/index.d.ts",
45
45
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs"
46
46
  },
47
- "./src/lib/components/shell-layout": {
48
- "types": "./src/lib/components/shell-layout/index.d.ts",
49
- "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs"
50
- },
51
47
  "./src/lib/components/splash-page": {
52
48
  "types": "./src/lib/components/splash-page/index.d.ts",
53
49
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs"
54
50
  },
51
+ "./src/lib/components/shell-layout": {
52
+ "types": "./src/lib/components/shell-layout/index.d.ts",
53
+ "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs"
54
+ },
55
55
  "./src/lib/components/buttons/button-container": {
56
56
  "types": "./src/lib/components/buttons/button-container/index.d.ts",
57
57
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs"
@@ -72,6 +72,10 @@
72
72
  "types": "./src/lib/components/logo/primary-logo/index.d.ts",
73
73
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs"
74
74
  },
75
+ "./src/lib/components/progress-indicators/progress-spinner": {
76
+ "types": "./src/lib/components/progress-indicators/progress-spinner/index.d.ts",
77
+ "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs"
78
+ },
75
79
  "./src/lib/components/progress-indicators/progress-bar": {
76
80
  "types": "./src/lib/components/progress-indicators/progress-bar/index.d.ts",
77
81
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs"
@@ -80,10 +84,6 @@
80
84
  "types": "./src/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts",
81
85
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs"
82
86
  },
83
- "./src/lib/components/progress-indicators/progress-spinner": {
84
- "types": "./src/lib/components/progress-indicators/progress-spinner/index.d.ts",
85
- "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs"
86
- },
87
87
  "./src/lib/components/tags/tag-container": {
88
88
  "types": "./src/lib/components/tags/tag-container/index.d.ts",
89
89
  "default": "./fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs"
@@ -1,18 +1,18 @@
1
- @use 'sass:map';
2
- @use 'variables' as *;
3
-
4
- @function color($key) {
5
- @return var(--color- + $key);
6
- }
7
-
8
- @function font-weight($key) {
9
- @return map.get($font-weights, $key);
10
- }
11
-
12
- @function font-size($key) {
13
- @return map.get($font-sizes, $key);
14
- }
15
-
16
- @function spacing($key) {
17
- @return map.get($spacings, $key);
18
- }
1
+ @use 'sass:map';
2
+ @use 'variables' as *;
3
+
4
+ @function color($key) {
5
+ @return var(--color- + $key);
6
+ }
7
+
8
+ @function font-weight($key) {
9
+ @return map.get($font-weights, $key);
10
+ }
11
+
12
+ @function font-size($key) {
13
+ @return map.get($font-sizes, $key);
14
+ }
15
+
16
+ @function spacing($key) {
17
+ @return map.get($spacings, $key);
18
+ }
@@ -1,90 +1,90 @@
1
- // Media Queries
2
- @use 'functions' as *;
3
-
4
- @mixin breakpoint($breakpoint) {
5
- @if $breakpoint == xs {
6
- @media screen and (min-width: 320px) and (max-width: 480px) {
7
- @content;
8
- }
9
- } @else if $breakpoint == sm {
10
- @media screen and (min-width: 481px) and (max-width: 768px) {
11
- @content;
12
- }
13
- } @else if $breakpoint == md {
14
- @media screen and (min-width: 769px) and (max-width: 1024px) {
15
- @content;
16
- }
17
- } @else if $breakpoint == lg {
18
- @media screen and (min-width: 1025px) and (max-width: 1200px) {
19
- @content;
20
- }
21
- } @else if $breakpoint == xl {
22
- @media screen and (min-width: 1201px) {
23
- @content;
24
- }
25
- } @else if $breakpoint == lt-sm {
26
- @media screen and (max-width: 480px) {
27
- @content;
28
- }
29
- } @else if $breakpoint == lt-md {
30
- @media screen and (max-width: 768px) {
31
- @content;
32
- }
33
- } @else if $breakpoint == lt-lg {
34
- @media screen and (max-width: 1024px) {
35
- @content;
36
- }
37
- } @else if $breakpoint == lt-xl {
38
- @media screen and (max-width: 1200px) {
39
- @content;
40
- }
41
- } @else if $breakpoint == gt-xs {
42
- @media screen and (min-width: 481px) {
43
- @content;
44
- }
45
- } @else if $breakpoint == gt-sm {
46
- @media screen and (min-width: 769px) {
47
- @content;
48
- }
49
- } @else if $breakpoint == gt-md {
50
- @media screen and (min-width: 1025px) {
51
- @content;
52
- }
53
- } @else if $breakpoint == gt-lg {
54
- @media screen and (min-width: 1201px) {
55
- @content;
56
- }
57
- }
58
- }
59
-
60
- @mixin font-size($breakpoint: base) {
61
- @if $breakpoint == xs {
62
- font-size: 0.75rem;
63
- } @else if $breakpoint == sm {
64
- font-size: 0.875rem;
65
- } @else if $breakpoint == base {
66
- font-size: 1rem;
67
- } @else if $breakpoint == lg {
68
- font-size: 1.125rem;
69
- } @else if $breakpoint == xl {
70
- font-size: 1.25rem;
71
- } @else if $breakpoint == 2xl {
72
- font-size: 1.5rem;
73
- } @else if $breakpoint == 3xl {
74
- font-size: 1.875rem;
75
- } @else if $breakpoint == 4xl {
76
- font-size: 2.25rem;
77
- } @else if $breakpoint == 5xl {
78
- font-size: 3rem;
79
- } @else if $breakpoint == 6xl {
80
- font-size: 4rem;
81
- }
82
- }
83
-
84
- @mixin background-color($theme: primary) {
85
- background-color: color($theme);
86
- }
87
-
88
- @mixin color($theme: dark) {
89
- color: color($theme);
90
- }
1
+ // Media Queries
2
+ @use 'functions' as *;
3
+
4
+ @mixin breakpoint($breakpoint) {
5
+ @if $breakpoint == xs {
6
+ @media screen and (min-width: 320px) and (max-width: 480px) {
7
+ @content;
8
+ }
9
+ } @else if $breakpoint == sm {
10
+ @media screen and (min-width: 481px) and (max-width: 768px) {
11
+ @content;
12
+ }
13
+ } @else if $breakpoint == md {
14
+ @media screen and (min-width: 769px) and (max-width: 1024px) {
15
+ @content;
16
+ }
17
+ } @else if $breakpoint == lg {
18
+ @media screen and (min-width: 1025px) and (max-width: 1200px) {
19
+ @content;
20
+ }
21
+ } @else if $breakpoint == xl {
22
+ @media screen and (min-width: 1201px) {
23
+ @content;
24
+ }
25
+ } @else if $breakpoint == lt-sm {
26
+ @media screen and (max-width: 480px) {
27
+ @content;
28
+ }
29
+ } @else if $breakpoint == lt-md {
30
+ @media screen and (max-width: 768px) {
31
+ @content;
32
+ }
33
+ } @else if $breakpoint == lt-lg {
34
+ @media screen and (max-width: 1024px) {
35
+ @content;
36
+ }
37
+ } @else if $breakpoint == lt-xl {
38
+ @media screen and (max-width: 1200px) {
39
+ @content;
40
+ }
41
+ } @else if $breakpoint == gt-xs {
42
+ @media screen and (min-width: 481px) {
43
+ @content;
44
+ }
45
+ } @else if $breakpoint == gt-sm {
46
+ @media screen and (min-width: 769px) {
47
+ @content;
48
+ }
49
+ } @else if $breakpoint == gt-md {
50
+ @media screen and (min-width: 1025px) {
51
+ @content;
52
+ }
53
+ } @else if $breakpoint == gt-lg {
54
+ @media screen and (min-width: 1201px) {
55
+ @content;
56
+ }
57
+ }
58
+ }
59
+
60
+ @mixin font-size($breakpoint: base) {
61
+ @if $breakpoint == xs {
62
+ font-size: 0.75rem;
63
+ } @else if $breakpoint == sm {
64
+ font-size: 0.875rem;
65
+ } @else if $breakpoint == base {
66
+ font-size: 1rem;
67
+ } @else if $breakpoint == lg {
68
+ font-size: 1.125rem;
69
+ } @else if $breakpoint == xl {
70
+ font-size: 1.25rem;
71
+ } @else if $breakpoint == 2xl {
72
+ font-size: 1.5rem;
73
+ } @else if $breakpoint == 3xl {
74
+ font-size: 1.875rem;
75
+ } @else if $breakpoint == 4xl {
76
+ font-size: 2.25rem;
77
+ } @else if $breakpoint == 5xl {
78
+ font-size: 3rem;
79
+ } @else if $breakpoint == 6xl {
80
+ font-size: 4rem;
81
+ }
82
+ }
83
+
84
+ @mixin background-color($theme: primary) {
85
+ background-color: color($theme);
86
+ }
87
+
88
+ @mixin color($theme: dark) {
89
+ color: color($theme);
90
+ }
@@ -1,125 +1,125 @@
1
- $box-shadow: 0 3px 6px 0 rgba(0, 73, 135, 16%);
2
-
3
- $colors: (
4
- white: #ffffff,
5
- muted-30: #fcfdff,
6
- muted-50: #f9fbff,
7
- muted: #f2f7ff,
8
- light-30: #f1f3f9,
9
- light-80: #dae0ee,
10
- light: #ced6e8,
11
- light-opacity-50: rgba(206, 214, 232, 0.5),
12
- medium-30: #c6c8d0,
13
- medium-50: #b2b6c6,
14
- medium: #646c8d,
15
- medium-opacity-50: rgba(100, 108, 141, 0.5),
16
- dark-10: #666666,
17
- dark-30: #5c5c5c,
18
- dark-50: #525252,
19
- dark-80: #474747,
20
- dark-90: #333333,
21
- dark: #292929,
22
- black: #1e1e1e,
23
-
24
- primary: #041f41,
25
- primary-hover: #044986,
26
- primary-pressed: #366d9e,
27
-
28
- secondary: #017d93,
29
- secondary-hover: #015a6a,
30
- secondary-pressed: #013b46,
31
- secondary-10: rgba(1, 125, 147, 0.1),
32
- link: #0077b3,
33
- link-hover: #005885,
34
- link-pressed: #002638,
35
-
36
- error: #bb1e1e,
37
- error-hover: #ab1c1c,
38
- error-pressed: #771313,
39
-
40
- success: #238170,
41
- success-hover: #19584c,
42
- success-pressed: #10382e,
43
-
44
- logo: #004987,
45
- );
46
-
47
- $colors-dark: (
48
- white: #292929,
49
- muted-30: #1e1e1e,
50
- muted-50: #333333,
51
- muted: #474747,
52
- light-30: #525252,
53
- light-80: #5c5c5c,
54
- light: #666666,
55
- light-opacity-50: rgba(102, 102, 102, 0.5),
56
- medium-30: #fcfdff,
57
- medium-50: #f9fbff,
58
- medium: #f2f7ff,
59
- medium-opacity-50: rgba(242, 247, 255, 0.5),
60
- dark-10: #ced6e8,
61
- dark-30: #dae0ee,
62
- dark-50: #f1f3f9,
63
- dark-80: #f2f7ff,
64
- dark-90: #f9fbff,
65
- dark: #ffffff,
66
- black: #fcfdff,
67
-
68
- primary: #66c5d4,
69
- primary-hover: #33b1c6,
70
- primary-pressed: #009fb8,
71
-
72
- secondary: #cae5e8,
73
- secondary-hover: #a2cbcf,
74
- secondary-pressed: #99b9bc,
75
- secondary-10: rgba(202, 229, 232, 0.1),
76
- link: #52c5ff,
77
- link-hover: #1fb4ff,
78
- link-pressed: #007ab8,
79
-
80
- error: #ff7070,
81
- error-hover: #ff2929,
82
- error-pressed: #cc0000,
83
-
84
- success: #53d0b9,
85
- success-hover: #2ca08b,
86
- success-pressed: #248473,
87
-
88
- logo: #ffffff,
89
- );
90
-
91
- $font-weights: (
92
- regular: 400,
93
- medium: 500,
94
- semibold: 600,
95
- bold: 700,
96
- );
97
-
98
- $font-sizes: (
99
- text-xxs: 0.675rem,
100
- text-xs: 0.75rem,
101
- text-sm: 0.875rem,
102
- text-base: 1rem,
103
- text-lg: 1.125rem,
104
- text-xl: 1.25rem,
105
- text-2xl: 1.5rem,
106
- text-3xl: 1.875rem,
107
- text-4xl: 2.25rem,
108
- text-5xl: 3rem,
109
- text-6xl: 4rem,
110
- );
111
-
112
- $spacings: (
113
- space-4: 4px,
114
- space-8: 8px,
115
- space-12: 12px,
116
- space-16: 16px,
117
- space-24: 24px,
118
- space-32: 32px,
119
- space-40: 40px,
120
- space-48: 48px,
121
- space-56: 56px,
122
- space-64: 64px,
123
- space-72: 72px,
124
- space-80: 80px,
125
- );
1
+ $box-shadow: 0 3px 6px 0 rgba(0, 73, 135, 16%);
2
+
3
+ $colors: (
4
+ white: #ffffff,
5
+ muted-30: #fcfdff,
6
+ muted-50: #f9fbff,
7
+ muted: #f2f7ff,
8
+ light-30: #f1f3f9,
9
+ light-80: #dae0ee,
10
+ light: #ced6e8,
11
+ light-opacity-50: rgba(206, 214, 232, 0.5),
12
+ medium-30: #c6c8d0,
13
+ medium-50: #b2b6c6,
14
+ medium: #646c8d,
15
+ medium-opacity-50: rgba(100, 108, 141, 0.5),
16
+ dark-10: #666666,
17
+ dark-30: #5c5c5c,
18
+ dark-50: #525252,
19
+ dark-80: #474747,
20
+ dark-90: #333333,
21
+ dark: #292929,
22
+ black: #1e1e1e,
23
+
24
+ primary: #041f41,
25
+ primary-hover: #044986,
26
+ primary-pressed: #366d9e,
27
+
28
+ secondary: #017d93,
29
+ secondary-hover: #015a6a,
30
+ secondary-pressed: #013b46,
31
+ secondary-10: rgba(1, 125, 147, 0.1),
32
+ link: #0077b3,
33
+ link-hover: #005885,
34
+ link-pressed: #002638,
35
+
36
+ error: #bb1e1e,
37
+ error-hover: #ab1c1c,
38
+ error-pressed: #771313,
39
+
40
+ success: #238170,
41
+ success-hover: #19584c,
42
+ success-pressed: #10382e,
43
+
44
+ logo: #004987,
45
+ );
46
+
47
+ $colors-dark: (
48
+ white: #292929,
49
+ muted-30: #1e1e1e,
50
+ muted-50: #333333,
51
+ muted: #474747,
52
+ light-30: #525252,
53
+ light-80: #5c5c5c,
54
+ light: #666666,
55
+ light-opacity-50: rgba(102, 102, 102, 0.5),
56
+ medium-30: #fcfdff,
57
+ medium-50: #f9fbff,
58
+ medium: #f2f7ff,
59
+ medium-opacity-50: rgba(242, 247, 255, 0.5),
60
+ dark-10: #ced6e8,
61
+ dark-30: #dae0ee,
62
+ dark-50: #f1f3f9,
63
+ dark-80: #f2f7ff,
64
+ dark-90: #f9fbff,
65
+ dark: #ffffff,
66
+ black: #fcfdff,
67
+
68
+ primary: #66c5d4,
69
+ primary-hover: #33b1c6,
70
+ primary-pressed: #009fb8,
71
+
72
+ secondary: #cae5e8,
73
+ secondary-hover: #a2cbcf,
74
+ secondary-pressed: #99b9bc,
75
+ secondary-10: rgba(202, 229, 232, 0.1),
76
+ link: #52c5ff,
77
+ link-hover: #1fb4ff,
78
+ link-pressed: #007ab8,
79
+
80
+ error: #ff7070,
81
+ error-hover: #ff2929,
82
+ error-pressed: #cc0000,
83
+
84
+ success: #53d0b9,
85
+ success-hover: #2ca08b,
86
+ success-pressed: #248473,
87
+
88
+ logo: #ffffff,
89
+ );
90
+
91
+ $font-weights: (
92
+ regular: 400,
93
+ medium: 500,
94
+ semibold: 600,
95
+ bold: 700,
96
+ );
97
+
98
+ $font-sizes: (
99
+ text-xxs: 0.675rem,
100
+ text-xs: 0.75rem,
101
+ text-sm: 0.875rem,
102
+ text-base: 1rem,
103
+ text-lg: 1.125rem,
104
+ text-xl: 1.25rem,
105
+ text-2xl: 1.5rem,
106
+ text-3xl: 1.875rem,
107
+ text-4xl: 2.25rem,
108
+ text-5xl: 3rem,
109
+ text-6xl: 4rem,
110
+ );
111
+
112
+ $spacings: (
113
+ space-4: 4px,
114
+ space-8: 8px,
115
+ space-12: 12px,
116
+ space-16: 16px,
117
+ space-24: 24px,
118
+ space-32: 32px,
119
+ space-40: 40px,
120
+ space-48: 48px,
121
+ space-56: 56px,
122
+ space-64: 64px,
123
+ space-72: 72px,
124
+ space-80: 80px,
125
+ );
@@ -1,19 +1,19 @@
1
- @use '../abstracts/functions' as *;
2
-
3
- ::-webkit-scrollbar {
4
- width: 10px;
5
- height: 10px;
6
- background-color: transparent;
7
- }
8
-
9
- ::-webkit-scrollbar-thumb {
10
- width: 10px;
11
- background: color(muted);
12
- border: 1px solid color(light);
13
- border-radius: 100px;
14
- }
15
-
16
- ::-webkit-scrollbar-thumb:hover {
17
- background: color(medium-30);
18
- border-color: color(medium-30);
19
- }
1
+ @use '../abstracts/functions' as *;
2
+
3
+ ::-webkit-scrollbar {
4
+ width: 10px;
5
+ height: 10px;
6
+ background-color: transparent;
7
+ }
8
+
9
+ ::-webkit-scrollbar-thumb {
10
+ width: 10px;
11
+ background: color(muted);
12
+ border: 1px solid color(light);
13
+ border-radius: 100px;
14
+ }
15
+
16
+ ::-webkit-scrollbar-thumb:hover {
17
+ background: color(medium-30);
18
+ border-color: color(medium-30);
19
+ }