@agridea/suibi-module 0.1.0-preview.7 → 0.1.0-preview.87d1ce6
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/dist/elements/browser/main.js +75 -72
- package/dist/elements/browser/styles.css +1 -1
- package/dist/elements/browser/suibi-module-latest.css +1 -1
- package/dist/elements/browser/suibi-module-latest.js +75 -72
- package/dist/elements/browser/{suibi-module.v0.1.0-preview.7.css → suibi-module.v0.1.0-preview.87d1ce6.css} +1 -1
- package/dist/elements/browser/suibi-module.v0.1.0-preview.87d1ce6.js +78 -0
- package/dist/elements/browser/suibi-theme-dark.css +1 -1
- package/dist/elements/browser/version.txt +1 -1
- package/dist/types/app/app.d.ts +1 -3
- package/dist/types/app/components/add-dashed-button/add-dashed-button.component.d.ts +9 -0
- package/dist/types/app/components/data-preview/data-preview.component.d.ts +3 -0
- package/dist/types/app/components/empty-state/empty-state.component.d.ts +12 -0
- package/dist/types/app/components/module-placeholder-page/module-placeholder-page.component.d.ts +6 -0
- package/dist/types/app/components/planning-result/planning-result.component.d.ts +46 -0
- package/dist/types/app/components/planning-result/planning-trigger.component.d.ts +13 -0
- package/dist/types/app/components/results-page/results-page.component.d.ts +4 -0
- package/dist/types/app/components/suissebilanz-dashboard/gauge-arc.component.d.ts +47 -0
- package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-dashboard.component.d.ts +24 -0
- package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-metrics.service.d.ts +21 -0
- package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-minibar.component.d.ts +19 -0
- package/dist/types/app/components/validation-page/validation-page.component.d.ts +17 -0
- package/dist/types/app/components/workflow-stepper/workflow-stepper.component.d.ts +52 -0
- package/dist/types/app/core/data/naebi-data.service.d.ts +14 -4
- package/dist/types/app/core/master-data/master-data.service.d.ts +6 -1
- package/dist/types/app/core/navigation/navigation.service.d.ts +3 -1
- package/dist/types/app/core/planning/planning-balance.service.d.ts +37 -0
- package/dist/types/app/core/planning/planning-balance.types.d.ts +206 -0
- package/dist/types/app/core/planning/planning-balance.utils.d.ts +10 -0
- package/dist/types/app/core/validation/capabilities.d.ts +5 -5
- package/dist/types/app/core/validation/global-validation.service.d.ts +0 -3
- package/dist/types/app/header-bar.d.ts +1 -2
- package/dist/types/app/jsonforms/registry/renderers.registry.d.ts +4 -0
- package/dist/types/app/jsonforms/renderers/layout/array/array-layout.renderer.d.ts +43 -0
- package/dist/types/app/jsonforms/renderers/layout/categorization/selected-category-categorization.renderer.d.ts +3 -0
- package/dist/types/app/nutrient-cycle/animal-stock/animal-stock-master-detail.component.d.ts +0 -1
- package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-detail.component.d.ts +1 -1
- package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-list.component.d.ts +1 -0
- package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-master-detail.component.d.ts +0 -1
- package/dist/types/app/nutrient-cycle/field-spreading/field-spreading.component.d.ts +0 -1
- package/dist/types/app/nutrient-cycle/lifetime-performance/lifetime-performance-form.component.d.ts +1 -1
- package/dist/types/environments/environment.d.ts +5 -0
- package/dist/types/shared/material-icons.d.ts +3 -3
- package/package.json +1 -1
- package/dist/elements/browser/suibi-module.v0.1.0-preview.7.js +0 -75
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TypeScript interfaces for the planning-balance API response.
|
|
3
|
+
* These match the eBilanz / BLW response shape observed in the example data.
|
|
4
|
+
*/
|
|
5
|
+
/** A single nutrient quantity entry (kg or % unit). */
|
|
6
|
+
export interface NutrientEntry {
|
|
7
|
+
molecularFormula: string;
|
|
8
|
+
quantity: number;
|
|
9
|
+
quantityCorrected?: number;
|
|
10
|
+
unit: string;
|
|
11
|
+
productFamilyType?: string;
|
|
12
|
+
typeOfManureRecyclingProduct?: string;
|
|
13
|
+
fertiliserProductCategory?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface CalculationVersion {
|
|
16
|
+
version: string;
|
|
17
|
+
validFrom: string;
|
|
18
|
+
validTo: string;
|
|
19
|
+
}
|
|
20
|
+
export interface AreaAndYieldPerAgronomicCropCategory {
|
|
21
|
+
agronomicCropCategory: string;
|
|
22
|
+
areaSize: number;
|
|
23
|
+
effectiveYield: number;
|
|
24
|
+
isMainCrop: boolean;
|
|
25
|
+
isNutrientPoorFodder: boolean;
|
|
26
|
+
yieldPerSquareMeasure?: number;
|
|
27
|
+
}
|
|
28
|
+
export interface AreaPerCultivationType {
|
|
29
|
+
areaSize: number;
|
|
30
|
+
isMainCrop: boolean;
|
|
31
|
+
}
|
|
32
|
+
export interface AreaAndYieldPerCultivationCategory {
|
|
33
|
+
cultivationCategory: string;
|
|
34
|
+
areaAndYieldPerAgronomicCropCategory: AreaAndYieldPerAgronomicCropCategory[];
|
|
35
|
+
areaPerCultivationType: AreaPerCultivationType[];
|
|
36
|
+
}
|
|
37
|
+
export interface AreaPerSubCategory {
|
|
38
|
+
cultivationSubCategory: string;
|
|
39
|
+
areaSize: number;
|
|
40
|
+
isMainCrop: boolean;
|
|
41
|
+
}
|
|
42
|
+
export interface FieldCultivation {
|
|
43
|
+
areaAndYieldPerCultivationCategory: AreaAndYieldPerCultivationCategory[];
|
|
44
|
+
areaPerSubCategory: AreaPerSubCategory[];
|
|
45
|
+
fertilizableAreaSize: number;
|
|
46
|
+
slurrySpreadingAreaSize: number;
|
|
47
|
+
totalAgriculturalLandAreaSize: number;
|
|
48
|
+
}
|
|
49
|
+
export interface FodderQuantity {
|
|
50
|
+
quantity: number;
|
|
51
|
+
unit: string;
|
|
52
|
+
proportionNutrientPoorFodder?: number;
|
|
53
|
+
}
|
|
54
|
+
export interface FodderProduct {
|
|
55
|
+
typeOfFeedstuffProduct: string;
|
|
56
|
+
quantity: number;
|
|
57
|
+
unit: string;
|
|
58
|
+
isNutrientPoorFodder: boolean;
|
|
59
|
+
}
|
|
60
|
+
export interface ConsumptionAnimalStock {
|
|
61
|
+
animalCategoryPRIF: number;
|
|
62
|
+
averageQuantity: number;
|
|
63
|
+
order: string;
|
|
64
|
+
quantity: number;
|
|
65
|
+
unit: string;
|
|
66
|
+
}
|
|
67
|
+
export interface RequiredEffectiveYieldFromFodderCropland {
|
|
68
|
+
consumptionAnimalStock: ConsumptionAnimalStock[];
|
|
69
|
+
cropFromNonFodderCroplandPerProduct: FodderProduct[];
|
|
70
|
+
dispensePerProduct: FodderProduct[];
|
|
71
|
+
supplyPerProduct: FodderProduct[];
|
|
72
|
+
totalBalance: FodderQuantity;
|
|
73
|
+
totalConsumptionAnimalStock: FodderQuantity;
|
|
74
|
+
totalCropFromNonFodderCropland: FodderQuantity;
|
|
75
|
+
totalDispense: FodderQuantity;
|
|
76
|
+
totalSupply: FodderQuantity;
|
|
77
|
+
}
|
|
78
|
+
export interface FodderBalance {
|
|
79
|
+
requiredEffectiveYieldFromFodderCropland: RequiredEffectiveYieldFromFodderCropland;
|
|
80
|
+
totalBalance: FodderQuantity;
|
|
81
|
+
totalEffectiveYieldFromFodderCropland: FodderQuantity;
|
|
82
|
+
totalNutrientPoorFodder: FodderQuantity;
|
|
83
|
+
}
|
|
84
|
+
export interface EmissionAndAccumulationEntry {
|
|
85
|
+
animalCategoryPRIF: number;
|
|
86
|
+
order: string;
|
|
87
|
+
accumulation: NutrientEntry[];
|
|
88
|
+
emission: NutrientEntry[];
|
|
89
|
+
manureExcretion?: unknown[];
|
|
90
|
+
}
|
|
91
|
+
export interface AccumulationEntireExcretion {
|
|
92
|
+
animalCategoryPRIF: number;
|
|
93
|
+
order: string;
|
|
94
|
+
durationSumTotalCorrectedNutrientBalance: number;
|
|
95
|
+
accumulation: NutrientEntry[];
|
|
96
|
+
}
|
|
97
|
+
export interface TotalNutrientSet {
|
|
98
|
+
accumulation: NutrientEntry[];
|
|
99
|
+
emission?: NutrientEntry[];
|
|
100
|
+
}
|
|
101
|
+
export interface AnimalStock {
|
|
102
|
+
accumulationEntireExcretion: AccumulationEntireExcretion[];
|
|
103
|
+
emissionAndAccumulationPasture: EmissionAndAccumulationEntry[];
|
|
104
|
+
emissionAndAccumulationStall: EmissionAndAccumulationEntry[];
|
|
105
|
+
emissionAndAccumulationYard: EmissionAndAccumulationEntry[];
|
|
106
|
+
totalAccumulationEntireExcretion: TotalNutrientSet;
|
|
107
|
+
totalEmissionAndAccumulationAnimalStock: TotalNutrientSet;
|
|
108
|
+
totalEmissionAndAccumulationPasture: TotalNutrientSet;
|
|
109
|
+
totalEmissionAndAccumulationStall: TotalNutrientSet;
|
|
110
|
+
totalEmissionAndAccumulationYard: TotalNutrientSet;
|
|
111
|
+
}
|
|
112
|
+
export interface ManureTradingProduct {
|
|
113
|
+
typeOfManureRecyclingProduct: string;
|
|
114
|
+
quantity: number;
|
|
115
|
+
unit: string;
|
|
116
|
+
ingredient: NutrientEntry[];
|
|
117
|
+
}
|
|
118
|
+
export interface FarmManureTrading {
|
|
119
|
+
balancePerProduct: ManureTradingProduct[];
|
|
120
|
+
dispensePerProduct: ManureTradingProduct[];
|
|
121
|
+
supplyPerProduct: ManureTradingProduct[];
|
|
122
|
+
totalBalance: {
|
|
123
|
+
ingredient: NutrientEntry[];
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
export interface NutrientRequirementEntry {
|
|
127
|
+
agronomicCropCategory?: string;
|
|
128
|
+
cultivationCategory?: string;
|
|
129
|
+
isMainCrop?: boolean;
|
|
130
|
+
requirement: NutrientEntry[];
|
|
131
|
+
}
|
|
132
|
+
export interface FieldCultivationNutrients {
|
|
133
|
+
nutrientTransferUnfertilizedCultivation: NutrientEntry[];
|
|
134
|
+
requirementPerAgronomicCropCategory: NutrientRequirementEntry[];
|
|
135
|
+
requirementPerCultivationCategory: NutrientRequirementEntry[];
|
|
136
|
+
totalRequirement: NutrientEntry[];
|
|
137
|
+
}
|
|
138
|
+
export interface FieldSpreading {
|
|
139
|
+
emissionAndAccumulationFieldSpreading: TotalNutrientSet;
|
|
140
|
+
totalEmissionAndAccumulationFieldSpreading: TotalNutrientSet;
|
|
141
|
+
}
|
|
142
|
+
export interface StorageBalance {
|
|
143
|
+
emissionAndAccumulationManureStorage: TotalNutrientSet;
|
|
144
|
+
totalEmissionAndAccumulationManureStorage: TotalNutrientSet;
|
|
145
|
+
}
|
|
146
|
+
export interface NutrientBalance {
|
|
147
|
+
animalStock: AnimalStock;
|
|
148
|
+
farmManureTrading: FarmManureTrading;
|
|
149
|
+
fieldCultivation: FieldCultivationNutrients;
|
|
150
|
+
fieldSpreading: FieldSpreading;
|
|
151
|
+
storage: StorageBalance;
|
|
152
|
+
/** Final per-nutrient balance figures: kg lines + % lines interleaved. */
|
|
153
|
+
totalBalance: NutrientEntry[];
|
|
154
|
+
/** Farm-wide gas emissions (NH3, NO, N2O, N2). */
|
|
155
|
+
totalEmissionFarm: NutrientEntry[];
|
|
156
|
+
nutrientBalanceTMP?: unknown[];
|
|
157
|
+
}
|
|
158
|
+
export interface NutrientCycle {
|
|
159
|
+
creationDateTime: string;
|
|
160
|
+
facilitySpecificProducts: {
|
|
161
|
+
manureRecyclingProduct: unknown[];
|
|
162
|
+
};
|
|
163
|
+
fieldCultivation: FieldCultivation;
|
|
164
|
+
fodderBalance: FodderBalance;
|
|
165
|
+
nutrientBalance: NutrientBalance;
|
|
166
|
+
version: string;
|
|
167
|
+
/** Base64-encoded PDF report, if returned by the endpoint. */
|
|
168
|
+
report?: string;
|
|
169
|
+
}
|
|
170
|
+
export interface ValidationMessageDetail {
|
|
171
|
+
designation_deu: string;
|
|
172
|
+
designation_eng: string;
|
|
173
|
+
designation_fra: string;
|
|
174
|
+
designation_ita: string;
|
|
175
|
+
}
|
|
176
|
+
export interface ValidationMessage {
|
|
177
|
+
field: string;
|
|
178
|
+
type: string;
|
|
179
|
+
detail: ValidationMessageDetail;
|
|
180
|
+
}
|
|
181
|
+
/** Full response from the planning-balance endpoint. */
|
|
182
|
+
export interface PlanningBalanceResponse {
|
|
183
|
+
calculationVersion: CalculationVersion;
|
|
184
|
+
nutrientCycle: NutrientCycle;
|
|
185
|
+
validationMessage: ValidationMessage[];
|
|
186
|
+
}
|
|
187
|
+
/** Merged kg + % row for the final balance table (Section D). */
|
|
188
|
+
export interface BalanceRow {
|
|
189
|
+
molecularFormula: string;
|
|
190
|
+
quantity: number;
|
|
191
|
+
quantityCorrected: number;
|
|
192
|
+
quantityPct: number | null;
|
|
193
|
+
quantityCorrectedPct: number | null;
|
|
194
|
+
unit: 'kg';
|
|
195
|
+
}
|
|
196
|
+
/** Crop requirement row enriched with area and yield for display (Section C). */
|
|
197
|
+
export interface CropRequirementRow {
|
|
198
|
+
cropCode: string;
|
|
199
|
+
cultivationCategory: string;
|
|
200
|
+
isMainCrop: boolean;
|
|
201
|
+
areaHa: number;
|
|
202
|
+
effectiveYield: number;
|
|
203
|
+
/** kg/ha yield per square measure field (m² basis), converted to dt/ha for display. */
|
|
204
|
+
yieldDtHa: number | null;
|
|
205
|
+
requirement: NutrientEntry[];
|
|
206
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { BalanceRow, NutrientEntry } from './planning-balance.types';
|
|
2
|
+
/**
|
|
3
|
+
* Merges the interleaved kg / % rows from `totalBalance` into one `BalanceRow`
|
|
4
|
+
* per nutrient formula, preserving the canonical KEY_NUTRIENTS display order.
|
|
5
|
+
*
|
|
6
|
+
* The planning-balance API returns two `NutrientEntry` objects per formula
|
|
7
|
+
* (one with `unit === 'kg'`, one with `unit === '%'`). This function coalesces
|
|
8
|
+
* them so callers work with a single, normalised row.
|
|
9
|
+
*/
|
|
10
|
+
export declare function mergeBalanceRows(totalBalance: NutrientEntry[]): BalanceRow[];
|
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
* All master data is embedded statically at compile time - no runtime HTTP calls.
|
|
6
6
|
*/
|
|
7
7
|
/**
|
|
8
|
-
* Derives permitted stable systems (
|
|
8
|
+
* Derives permitted stable systems (stableSystem enum strings) for a given animal category.
|
|
9
9
|
*
|
|
10
10
|
* @param animalCategoryPRIF - The PRIF animal category ID
|
|
11
|
-
* @returns Array of permitted
|
|
11
|
+
* @returns Array of permitted stableSystem enum strings (e.g. 'HUS_TETHER')
|
|
12
12
|
*/
|
|
13
|
-
export declare function derivePermittedStableSystems(animalCategoryPRIF: number | null | undefined):
|
|
13
|
+
export declare function derivePermittedStableSystems(animalCategoryPRIF: number | null | undefined): string[];
|
|
14
14
|
/**
|
|
15
15
|
* Pre-computed map for performance (memoized at module load).
|
|
16
|
-
* Maps animalCategoryPRIF -> array of permitted stableSystem
|
|
16
|
+
* Maps animalCategoryPRIF -> array of permitted stableSystem enum strings.
|
|
17
17
|
*/
|
|
18
|
-
export declare const PERMITTED_STABLE_SYSTEMS: Record<number,
|
|
18
|
+
export declare const PERMITTED_STABLE_SYSTEMS: Record<number, string[]>;
|
|
@@ -31,10 +31,7 @@ export declare class GlobalValidationService {
|
|
|
31
31
|
private readonly dataSvc;
|
|
32
32
|
private readonly ajv;
|
|
33
33
|
private readonly validateFn;
|
|
34
|
-
private readonly rawErrors;
|
|
35
34
|
readonly errors: import("@angular/core").Signal<EnrichedValidationError[]>;
|
|
36
|
-
constructor();
|
|
37
|
-
validate(): void;
|
|
38
35
|
private consolidateErrors;
|
|
39
36
|
private enrichErrors;
|
|
40
37
|
private inferCategory;
|
|
@@ -2,8 +2,7 @@ import { Locale } from './core/i18n/i18n.service';
|
|
|
2
2
|
import { PageId } from './core/navigation/navigation.service';
|
|
3
3
|
/**
|
|
4
4
|
* HeaderBarComponent
|
|
5
|
-
*
|
|
6
|
-
* - Emits events via provided callback inputs (parent supplies functions) to avoid outputs overhead inside shadow root.
|
|
5
|
+
* Footer actions for quick access to data preview and the current save state.
|
|
7
6
|
*/
|
|
8
7
|
export declare class HeaderBarComponent {
|
|
9
8
|
locale: import("@angular/core").InputSignal<Locale>;
|
|
@@ -6,6 +6,7 @@ import { LogicalGroupRenderer } from '../renderers/layout/group/logical-group.re
|
|
|
6
6
|
import { RankedTester } from '@jsonforms/core';
|
|
7
7
|
import { ConstraintLayoutRenderer } from '../renderers/layout/constraint/constraint-layout.renderer';
|
|
8
8
|
import { SelectedCategoryCategorizationRenderer } from '../renderers/layout/categorization/selected-category-categorization.renderer';
|
|
9
|
+
import { CustomArrayLayoutRenderer } from '../renderers/layout/array/array-layout.renderer';
|
|
9
10
|
export declare const CUSTOM_JSONFORMS_RENDERERS: ({
|
|
10
11
|
tester: RankedTester;
|
|
11
12
|
renderer: typeof ConstraintLayoutRenderer;
|
|
@@ -27,4 +28,7 @@ export declare const CUSTOM_JSONFORMS_RENDERERS: ({
|
|
|
27
28
|
} | {
|
|
28
29
|
tester: RankedTester;
|
|
29
30
|
renderer: typeof CodeListSelectRenderer;
|
|
31
|
+
} | {
|
|
32
|
+
tester: RankedTester;
|
|
33
|
+
renderer: typeof CustomArrayLayoutRenderer;
|
|
30
34
|
})[];
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { JsonFormsAbstractControl, JsonFormsAngularService } from '@jsonforms/angular';
|
|
3
|
+
import { ArrayLayoutProps, ArrayTranslations, JsonFormsState, OwnPropsOfRenderer, RankedTester, StatePropsOfArrayLayout, UISchemaElement, UISchemaTester } from '@jsonforms/core';
|
|
4
|
+
/**
|
|
5
|
+
* CustomArrayLayoutRenderer
|
|
6
|
+
* Overrides the stock JSONForms `ArrayLayoutRenderer` (rank 4 → this is rank 5) to apply
|
|
7
|
+
* the project UX pattern: centered empty-state placeholder when the array has no entries,
|
|
8
|
+
* and the full-width dashed add-button always anchored below the list.
|
|
9
|
+
*
|
|
10
|
+
* The add button label is driven by `translations.addTooltip` resolved via the JSONForms
|
|
11
|
+
* i18n pipeline — configure per-array labels there.
|
|
12
|
+
*/
|
|
13
|
+
export declare class CustomArrayLayoutRenderer extends JsonFormsAbstractControl<StatePropsOfArrayLayout> implements OnInit {
|
|
14
|
+
noData: boolean;
|
|
15
|
+
/** Indices 0..n-1 used to render per-item cards and drive sort-button disabled state. */
|
|
16
|
+
indices: number[];
|
|
17
|
+
translations: ArrayTranslations;
|
|
18
|
+
showSortButtons: boolean;
|
|
19
|
+
addItem: (path: string, value: unknown) => () => void;
|
|
20
|
+
moveItemUp: (path: string, index: number) => () => void;
|
|
21
|
+
moveItemDown: (path: string, index: number) => () => void;
|
|
22
|
+
removeItems: (path: string, toDelete: number[]) => () => void;
|
|
23
|
+
uischemas: {
|
|
24
|
+
tester: UISchemaTester;
|
|
25
|
+
uischema: UISchemaElement;
|
|
26
|
+
}[];
|
|
27
|
+
constructor(jsonFormsService: JsonFormsAngularService);
|
|
28
|
+
get emptyText(): string;
|
|
29
|
+
get addLabel(): string;
|
|
30
|
+
mapToProps(state: JsonFormsState): StatePropsOfArrayLayout & {
|
|
31
|
+
translations: ArrayTranslations;
|
|
32
|
+
};
|
|
33
|
+
mapAdditionalProps(props: ArrayLayoutProps & {
|
|
34
|
+
translations: ArrayTranslations;
|
|
35
|
+
}): void;
|
|
36
|
+
remove(index: number): void;
|
|
37
|
+
add(): void;
|
|
38
|
+
up(index: number): void;
|
|
39
|
+
down(index: number): void;
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
getProps(index: number): OwnPropsOfRenderer;
|
|
42
|
+
}
|
|
43
|
+
export declare const customArrayLayoutRendererTester: RankedTester;
|
|
@@ -19,12 +19,15 @@ export declare class SelectedCategoryCategorizationRenderer extends JsonFormsBas
|
|
|
19
19
|
categoryLabels: string[];
|
|
20
20
|
private readonly categoryKeyToIndex;
|
|
21
21
|
private readonly indexToCategoryKey;
|
|
22
|
+
private _prevCategorySignature;
|
|
22
23
|
readonly selectedTabIndex: import("@angular/core").Signal<number>;
|
|
23
24
|
ngOnInit(): void;
|
|
24
25
|
/**
|
|
25
26
|
* Build bidirectional category key ↔ tab index mapping from UI schema.
|
|
26
27
|
* Reads options.categoryKey from each visible Category element.
|
|
27
28
|
* Example: { base: 0, formOfDetention: 1, feeding: 2 }
|
|
29
|
+
* Skips signal writes when the tab structure hasn't changed (pure data changes
|
|
30
|
+
* fire $state on every keystroke; no need to mark selectedTabIndex stale each time).
|
|
28
31
|
*/
|
|
29
32
|
private buildCategoryMappings;
|
|
30
33
|
onTabChange(newIndex: number): void;
|
package/dist/types/app/nutrient-cycle/animal-stock/animal-stock-master-detail.component.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { LifetimePerformance } from '../lifetime-performance/lifetime-performanc
|
|
|
3
3
|
export declare class AnimalStockMasterDetailComponent {
|
|
4
4
|
private readonly dataSvc;
|
|
5
5
|
private readonly navigationSvc;
|
|
6
|
-
private readonly rootData;
|
|
7
6
|
constructor();
|
|
8
7
|
readonly rows: import("@angular/core").Signal<AnimalStockRow[]>;
|
|
9
8
|
readonly lifetimePerformance: import("@angular/core").Signal<LifetimePerformance | null>;
|
package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-detail.component.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare class FarmManureTradingDetailComponent {
|
|
|
16
16
|
}[];
|
|
17
17
|
readonly suibiAjv: import("ajv").Ajv;
|
|
18
18
|
private readonly baseSchemas;
|
|
19
|
-
private readonly
|
|
19
|
+
private readonly baseUis;
|
|
20
20
|
itemSchema: Signal<JsonSchema>;
|
|
21
21
|
localizedUi: Signal<UISchemaElement>;
|
|
22
22
|
detailTitle: Signal<string>;
|
package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-list.component.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare class FarmManureTradingListComponent {
|
|
|
15
15
|
readonly displayedColumns: string[];
|
|
16
16
|
resolveProduct(code: string | null | undefined): string;
|
|
17
17
|
emptyLabel(): string;
|
|
18
|
+
emptyHintLabel(): string;
|
|
18
19
|
addLabel(): string;
|
|
19
20
|
headerLabel(): string;
|
|
20
21
|
onDelete(index: number, event: Event): void;
|
|
@@ -3,7 +3,6 @@ import { FarmManureTradingSupply, FarmManureTradingDispense } from './farm-manur
|
|
|
3
3
|
export declare class FarmManureTradingMasterDetailComponent {
|
|
4
4
|
private readonly dataSvc;
|
|
5
5
|
private readonly navigationSvc;
|
|
6
|
-
private readonly rootData;
|
|
7
6
|
constructor();
|
|
8
7
|
readonly supplyRows: import("@angular/core").Signal<FarmManureTradingSupply[]>;
|
|
9
8
|
readonly dispenseRows: import("@angular/core").Signal<FarmManureTradingDispense[]>;
|
|
@@ -4,7 +4,6 @@ export declare class FieldSpreadingComponent {
|
|
|
4
4
|
private readonly dataSvc;
|
|
5
5
|
private readonly navigationSvc;
|
|
6
6
|
private readonly i18n;
|
|
7
|
-
private readonly rootData;
|
|
8
7
|
constructor();
|
|
9
8
|
readonly schema: import("@angular/core").Signal<JsonSchema>;
|
|
10
9
|
readonly localizedUi: import("@angular/core").Signal<UISchemaElement>;
|
package/dist/types/app/nutrient-cycle/lifetime-performance/lifetime-performance-form.component.d.ts
CHANGED
|
@@ -23,5 +23,5 @@ export declare class LifetimePerformanceFormComponent {
|
|
|
23
23
|
readonly jsonFormsData: import("@angular/core").Signal<LifetimePerformance & import("../../core/schemas/ui-helper-registry").UiHelperDefinitions>;
|
|
24
24
|
private readonly pruneDisallowedEffect;
|
|
25
25
|
onDataChange(newValue: unknown): void;
|
|
26
|
-
private
|
|
26
|
+
private hasFlag;
|
|
27
27
|
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Ensure the Material
|
|
2
|
+
* Ensure the Material icon stylesheets exist in the document <head> (SPA / non-shadow usage).
|
|
3
3
|
* Idempotent: returns immediately if DOM unavailable (SSR) or link already present.
|
|
4
4
|
*
|
|
5
5
|
* @param doc Optional document for testing / dependency injection.
|
|
6
6
|
*/
|
|
7
7
|
export declare function ensureMaterialIconsInHead(doc?: Document): void;
|
|
8
8
|
/**
|
|
9
|
-
* Ensure the Material
|
|
9
|
+
* Ensure the Material icon stylesheets are available inside a ShadowRoot so that
|
|
10
10
|
* icon ligatures render when the component is embedded as a Web Component.
|
|
11
11
|
* We prepend so icons load early without disturbing existing adopted stylesheets.
|
|
12
|
-
* Idempotent: guarded by
|
|
12
|
+
* Idempotent: each font link is guarded by its own custom attribute selector.
|
|
13
13
|
*
|
|
14
14
|
* @param shadow Target ShadowRoot; silently no-ops if null/undefined or DOM unavailable.
|
|
15
15
|
*/
|