@byuhbll/components 4.0.0-alpha.22 → 4.0.0-alpha.24
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/esm2022/lib/hbll-footer/hbll-footer.component.mjs +3 -3
- package/esm2022/lib/pipes/hbll-item-type-icon.pipe.mjs +226 -0
- package/esm2022/lib/ss-search-bar/advanced-search/advanced-search.component.mjs +3 -3
- package/esm2022/lib/ss-search-bar/date-range/date-range.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/byuhbll-components.mjs +231 -7
- package/fesm2022/byuhbll-components.mjs.map +1 -1
- package/lib/pipes/hbll-item-type-icon.pipe.d.ts +17 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/styles/scss/_mixins.scss +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Converts an item type to an icon type to be used with Google Material Icons
|
|
5
|
+
*
|
|
6
|
+
* Intended to be used with an imported font, such as: `<link
|
|
7
|
+
rel="stylesheet"
|
|
8
|
+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,1,0"
|
|
9
|
+
/>`
|
|
10
|
+
*
|
|
11
|
+
* Reference: https://fonts.google.com/icons?selected=Material+Symbols+Outlined:inventory_2:FILL@0;wght@400;GRAD@0;opsz@24&icon.query=invent&icon.size=24&icon.color=%235f6368
|
|
12
|
+
*/
|
|
13
|
+
export declare class HbllItemTypeIconPipe implements PipeTransform {
|
|
14
|
+
transform(itemType: string): string;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HbllItemTypeIconPipe, never>;
|
|
16
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<HbllItemTypeIconPipe, "libByuItemTypeIcon", true>;
|
|
17
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './lib/hbll-header/hbll-header.component';
|
|
2
|
+
export * from './lib/pipes/hbll-item-type-icon.pipe';
|
|
2
3
|
export * from './lib/hbll-footer/hbll-footer.component';
|
|
3
4
|
export * from './lib/header-with-impersonation/header-with-impersonation.component';
|
|
4
5
|
export * from './lib/impersonate-modal/impersonate-modal.component';
|