@agridea/suibi-module 0.1.0-preview.2f7b6e2 → 0.1.0-preview.4849424
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 +70 -71
- package/dist/elements/browser/suibi-module-latest.js +70 -71
- package/dist/elements/browser/{suibi-module.v0.1.0-preview.2f7b6e2.js → suibi-module.v0.1.0-preview.4849424.js} +70 -71
- package/dist/elements/browser/suibi-theme-dark.css +1 -1
- package/dist/elements/browser/version.txt +1 -1
- package/dist/types/app/components/data-preview/data-preview.component.d.ts +1 -0
- package/dist/types/app/components/empty-state/empty-state.component.d.ts +2 -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 +3 -26
- 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 +4 -0
- package/dist/types/app/core/data/naebi-data.service.d.ts +2 -0
- package/dist/types/app/core/master-data/master-data.service.d.ts +2 -0
- package/dist/types/app/core/navigation/navigation.service.d.ts +10 -1
- package/dist/types/app/core/planning/planning-balance.service.d.ts +22 -3
- package/dist/types/app/core/planning/planning-balance.utils.d.ts +10 -0
- package/dist/types/app/core/validation/global-validation.service.d.ts +8 -1
- package/dist/types/app/header-bar.d.ts +1 -2
- package/dist/types/app/jsonforms/filters/code-list-filter-resolvers.d.ts +3 -0
- package/dist/types/app/jsonforms/renderers/controls/selects/code-list/code-list-select.renderer.d.ts +6 -1
- package/dist/types/app/nutrient-cycle/storage/storage-detail.component.d.ts +30 -0
- package/dist/types/app/nutrient-cycle/storage/storage-general.component.d.ts +29 -0
- package/dist/types/app/nutrient-cycle/storage/storage-list.component.d.ts +20 -0
- package/dist/types/app/nutrient-cycle/storage/storage-master-detail.component.d.ts +31 -0
- package/dist/types/app/nutrient-cycle/storage/storage.types.d.ts +40 -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.2f7b6e2.css → suibi-module.v0.1.0-preview.4849424.css} +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export interface ManureFromAnimalStockStored {
|
|
2
|
+
manureDerivation?: string;
|
|
3
|
+
proportionStored?: number | null;
|
|
4
|
+
}
|
|
5
|
+
export interface ManurePitEntry {
|
|
6
|
+
descriptor?: string;
|
|
7
|
+
cover?: number | null;
|
|
8
|
+
manureFromAnimalStockStored?: ManureFromAnimalStockStored[];
|
|
9
|
+
}
|
|
10
|
+
export interface SlurryTankEntry {
|
|
11
|
+
descriptor?: string;
|
|
12
|
+
volumeInM3?: number | null;
|
|
13
|
+
depthInM?: number | null;
|
|
14
|
+
cover?: number | null;
|
|
15
|
+
mixingFrequency?: number | null;
|
|
16
|
+
manureDerivation?: string[];
|
|
17
|
+
}
|
|
18
|
+
export interface StorageData {
|
|
19
|
+
stableStrawLitter?: number | null;
|
|
20
|
+
manureSupplyProportionStored?: number | null;
|
|
21
|
+
slurrySupplyProportionStored?: number | null;
|
|
22
|
+
createFacilitySpecificManureProduct?: boolean;
|
|
23
|
+
createFacilitySpecificSlurryProduct?: boolean;
|
|
24
|
+
slurryTankQuantity?: number | null;
|
|
25
|
+
dilutionRatio?: number | null;
|
|
26
|
+
manurePit?: ManurePitEntry[];
|
|
27
|
+
slurryTank?: SlurryTankEntry[];
|
|
28
|
+
}
|
|
29
|
+
export interface StorageNormalized {
|
|
30
|
+
stableStrawLitter: number | null;
|
|
31
|
+
manureSupplyProportionStored: number | null;
|
|
32
|
+
slurrySupplyProportionStored: number | null;
|
|
33
|
+
createFacilitySpecificManureProduct: boolean;
|
|
34
|
+
createFacilitySpecificSlurryProduct: boolean;
|
|
35
|
+
slurryTankQuantity: number | null;
|
|
36
|
+
dilutionRatio: number | null;
|
|
37
|
+
manurePit: ManurePitEntry[];
|
|
38
|
+
slurryTank: SlurryTankEntry[];
|
|
39
|
+
}
|
|
40
|
+
export type StorageEntryType = 'manure_pit' | 'slurry_tank';
|
|
@@ -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
|
*/
|
package/package.json
CHANGED
|
File without changes
|