@byuhbll/components 7.0.7 → 7.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/byuhbll-components.mjs +33 -20
- package/fesm2022/byuhbll-components.mjs.map +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
- package/styles/scss/_vars.scss +16 -16
package/index.d.ts
CHANGED
|
@@ -1064,6 +1064,10 @@ declare class FieldComponent implements ControlValueAccessor {
|
|
|
1064
1064
|
* Handles right icon click.
|
|
1065
1065
|
*/
|
|
1066
1066
|
onIconAfterClick(): void;
|
|
1067
|
+
/**
|
|
1068
|
+
* Handles keyboard activation for the right icon (Enter / Space).
|
|
1069
|
+
*/
|
|
1070
|
+
onIconAfterKeydown(event: KeyboardEvent): void;
|
|
1067
1071
|
writeValue(value: string): void;
|
|
1068
1072
|
registerOnChange(fn: (value: string) => void): void;
|
|
1069
1073
|
registerOnTouched(fn: () => void): void;
|
package/package.json
CHANGED
package/styles/scss/_vars.scss
CHANGED
|
@@ -17,7 +17,7 @@ $gray-text-default: #333333;
|
|
|
17
17
|
$gray-accent-default: #555555;
|
|
18
18
|
// Greens
|
|
19
19
|
$color-green-500: #1d562e;
|
|
20
|
-
$color-green-400: #
|
|
20
|
+
$color-green-400: #2e8545;
|
|
21
21
|
$color-green-300: #3ba35a;
|
|
22
22
|
$color-green-200: #9dd1ac;
|
|
23
23
|
$color-green-100: #ebf6ee;
|
|
@@ -50,29 +50,29 @@ $yellow-accent-warning: #7a6f13;
|
|
|
50
50
|
// Purple
|
|
51
51
|
$color-purple: #b967c7;
|
|
52
52
|
|
|
53
|
-
//
|
|
54
|
-
$navy-blue:
|
|
55
|
-
$royal-blue:
|
|
56
|
-
$royal-blue--hover:
|
|
53
|
+
// Semantic color variables used in several apps.
|
|
54
|
+
$navy-blue: $color-blue-500;
|
|
55
|
+
$royal-blue: $color-blue-300;
|
|
56
|
+
$royal-blue--hover: $color-blue-200;
|
|
57
57
|
|
|
58
|
-
$primary-blue:
|
|
58
|
+
$primary-blue: $color-teal-300;
|
|
59
59
|
|
|
60
|
-
$primary-green:
|
|
61
|
-
$success-green:
|
|
60
|
+
$primary-green: $color-green-500;
|
|
61
|
+
$success-green: $color-green-300;
|
|
62
62
|
|
|
63
63
|
$impersonate-purple: #7040aa;
|
|
64
|
-
$impersonate-purple--hover:
|
|
64
|
+
$impersonate-purple--hover: $color-purple;
|
|
65
65
|
|
|
66
|
-
$interactive-blue:
|
|
67
|
-
$interactive-blue--hover:
|
|
66
|
+
$interactive-blue: $color-teal-300;
|
|
67
|
+
$interactive-blue--hover: $color-teal-200;
|
|
68
68
|
|
|
69
|
-
$destructive-red:
|
|
70
|
-
$destructive-red--hover:
|
|
69
|
+
$destructive-red: $color-red-400;
|
|
70
|
+
$destructive-red--hover: $color-red-300;
|
|
71
71
|
|
|
72
|
-
$text-gray:
|
|
73
|
-
$light-gray:
|
|
72
|
+
$text-gray: $color-gray-400;
|
|
73
|
+
$light-gray: $color-gray-100;
|
|
74
74
|
|
|
75
|
-
$grey-border-color:
|
|
75
|
+
$grey-border-color: $color-gray-200;
|
|
76
76
|
$default-border: $grey-border-color solid 1px;
|
|
77
77
|
|
|
78
78
|
$animation-length-std: 0.15s;
|