@hestia-earth/ui-components 0.43.13 → 0.43.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/ui-components",
3
- "version": "0.43.13",
3
+ "version": "0.43.14",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -5177,6 +5177,16 @@ interface IContributorColumn {
5177
5177
  description?: string;
5178
5178
  column: string;
5179
5179
  }
5180
+ /**
5181
+ * How the contributors of one stage are named: what a row of the table is, what the group of them is
5182
+ * called mid-sentence, and the heading over them. A Cycle is a node type and keeps its capital; the
5183
+ * aggregations are not.
5184
+ */
5185
+ interface IContributorNames {
5186
+ row: string;
5187
+ group: string;
5188
+ heading: string;
5189
+ }
5180
5190
 
5181
5191
  declare class NodeAggregatedFormulasComponent {
5182
5192
  /**
@@ -5239,10 +5249,10 @@ declare class NodeAggregatedFormulasComponent {
5239
5249
  formulas: IFormula[];
5240
5250
  }[]>;
5241
5251
  /**
5242
- * The values this one was combined from, as the aggregation recorded them: one row per Cycle or
5243
- * sub-aggregation, under the symbols the formulas above read them with. Absent where the
5244
- * contributors were too many to record, which is every aggregation built straight from source
5245
- * Cycles - their number is shown instead.
5252
+ * What this value was combined from, as the aggregation recorded it: one row per contributor,
5253
+ * under the symbols the formulas above read them with. Absent where the contributors were too
5254
+ * many to record, which is every aggregation built straight from source Cycles - their number
5255
+ * is shown instead.
5246
5256
  */
5247
5257
  protected readonly contributors: _angular_core.Signal<{
5248
5258
  rows: {
@@ -5257,6 +5267,7 @@ declare class NodeAggregatedFormulasComponent {
5257
5267
  columns: IContributorColumn[];
5258
5268
  count?: number;
5259
5269
  }>;
5270
+ protected readonly contributor: _angular_core.Signal<IContributorNames>;
5260
5271
  protected readonly renderedSections: _angular_core.Signal<{
5261
5272
  formulas: {
5262
5273
  rendered: string;