@byuhbll/components 7.0.3 → 7.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.
- package/fesm2022/byuhbll-components.mjs +473 -425
- package/fesm2022/byuhbll-components.mjs.map +1 -1
- package/index.d.ts +6 -0
- package/package.json +1 -1
- package/styles/scss/_vars.scss +2 -2
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
package/styles/scss/_vars.scss
CHANGED
|
@@ -60,8 +60,8 @@ $primary-blue: #3a6093;
|
|
|
60
60
|
$primary-green: #207215;
|
|
61
61
|
$success-green: #1dce7b;
|
|
62
62
|
|
|
63
|
-
$impersonate-purple: #
|
|
64
|
-
$impersonate-purple--hover: #
|
|
63
|
+
$impersonate-purple: #7040aa;
|
|
64
|
+
$impersonate-purple--hover: #b967c7;
|
|
65
65
|
|
|
66
66
|
$interactive-blue: #4070b0;
|
|
67
67
|
$interactive-blue--hover: #6892ca;
|