@byuhbll/components 7.0.3 → 7.0.5

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/index.d.ts CHANGED
@@ -183,6 +183,10 @@ declare class ImpersonateModalComponent implements OnDestroy {
183
183
  search: _angular_forms.FormControl<string | null>;
184
184
  }>;
185
185
  protected selectedUsername?: string;
186
+ protected get searchValue(): string;
187
+ protected get searchIconAfter(): string | undefined;
188
+ protected get isIconAfterClickable(): boolean;
189
+ protected get fieldState(): 'error' | 'default';
186
190
  protected loading: boolean;
187
191
  protected handleSearchSubject: Subject<boolean>;
188
192
  protected results: i0.Signal<ImpersonateSearchResult[] | null | undefined>;
@@ -196,6 +200,7 @@ declare class ImpersonateModalComponent implements OnDestroy {
196
200
  protected startImpersonation: (username?: string) => void;
197
201
  protected handleSelectUser: (event: Event) => void;
198
202
  protected clearSearch: () => void;
203
+ protected handleIconAfterClick: () => void;
199
204
  protected close: () => void;
200
205
  protected handleFormSubmit: (event: SubmitEvent) => void;
201
206
  protected handleSearchKeyPress: (event: KeyboardEvent) => void;
@@ -1006,6 +1011,7 @@ interface FieldInputs {
1006
1011
  * ```
1007
1012
  */
1008
1013
  declare class FieldComponent implements ControlValueAccessor {
1014
+ private readonly eref;
1009
1015
  inputType: InputType;
1010
1016
  inputId?: string;
1011
1017
  placeholder: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byuhbll/components",
3
- "version": "7.0.3",
3
+ "version": "7.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.15",
6
6
  "@angular/core": "^20.3.15"
@@ -60,8 +60,8 @@ $primary-blue: #3a6093;
60
60
  $primary-green: #207215;
61
61
  $success-green: #1dce7b;
62
62
 
63
- $impersonate-purple: #ca7ad1cc;
64
- $impersonate-purple--hover: #ca7ad1;
63
+ $impersonate-purple: #7040aa;
64
+ $impersonate-purple--hover: #b967c7;
65
65
 
66
66
  $interactive-blue: #4070b0;
67
67
  $interactive-blue--hover: #6892ca;
@@ -75,7 +75,7 @@ $color-yellow-500: #635f04;
75
75
  $color-yellow-400: #928c30;
76
76
  $color-yellow-300: #d1c844;
77
77
  $color-yellow-200: #e8e3a1;
78
- $color-yellow-100: #f2f0e9;
78
+ $color-yellow-100: #faf9ec;
79
79
 
80
80
  /* Purple / Focus */
81
81
  $color-purple-focus: #b967c7;