@hestia-earth/ui-components 0.32.9 → 0.32.11
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/common/index.d.ts +0 -1
- package/common/utils.d.ts +1 -1
- package/fesm2022/hestia-earth-ui-components.mjs +237 -63
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/node/index.d.ts +4 -0
- package/node/node-aggregated/node-aggregated.component.d.ts +6 -0
- package/node/node-aggregated-info/node-aggregated-info.component.d.ts +8 -0
- package/node/node-aggregated-quality-score/node-aggregated-quality-score.component.d.ts +67 -0
- package/node/node.model.d.ts +12 -0
- package/package.json +1 -1
- package/common/keys.pipe.d.ts +0 -10
package/common/index.d.ts
CHANGED
|
@@ -46,7 +46,6 @@ export { GetPipe } from './get.pipe';
|
|
|
46
46
|
export { IsArrayPipe } from './is-array.pipe';
|
|
47
47
|
export { IsObjectPipe } from './is-object.pipe';
|
|
48
48
|
export { KeyToLabelPipe } from './key-to-label.pipe';
|
|
49
|
-
export { KeysPipe } from './keys.pipe';
|
|
50
49
|
export { NoExtPipe } from './no-ext.pipe';
|
|
51
50
|
export { PluralizePipe } from './pluralize.pipe';
|
|
52
51
|
export { PrecisionPipe } from './precision.pipe';
|
package/common/utils.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare const changelogUrl: (repository: Repository) => string;
|
|
|
45
45
|
export declare const contactUsEmail = "community@hestia.earth";
|
|
46
46
|
export declare const externalLink: (href: string, text: string) => string;
|
|
47
47
|
export declare const glossaryLink: (text: string) => string;
|
|
48
|
-
export declare const
|
|
48
|
+
export declare const externalNodeLink: ({ "@type": type, "@id": id, name }: {
|
|
49
49
|
"@type": string;
|
|
50
50
|
"@id": string;
|
|
51
51
|
name?: string;
|