@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.
Files changed (34) hide show
  1. package/dist/elements/browser/main.js +70 -71
  2. package/dist/elements/browser/suibi-module-latest.js +70 -71
  3. package/dist/elements/browser/{suibi-module.v0.1.0-preview.2f7b6e2.js → suibi-module.v0.1.0-preview.4849424.js} +70 -71
  4. package/dist/elements/browser/suibi-theme-dark.css +1 -1
  5. package/dist/elements/browser/version.txt +1 -1
  6. package/dist/types/app/components/data-preview/data-preview.component.d.ts +1 -0
  7. package/dist/types/app/components/empty-state/empty-state.component.d.ts +2 -0
  8. package/dist/types/app/components/module-placeholder-page/module-placeholder-page.component.d.ts +6 -0
  9. package/dist/types/app/components/planning-result/planning-result.component.d.ts +3 -26
  10. package/dist/types/app/components/planning-result/planning-trigger.component.d.ts +13 -0
  11. package/dist/types/app/components/results-page/results-page.component.d.ts +4 -0
  12. package/dist/types/app/components/suissebilanz-dashboard/gauge-arc.component.d.ts +47 -0
  13. package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-dashboard.component.d.ts +24 -0
  14. package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-metrics.service.d.ts +21 -0
  15. package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-minibar.component.d.ts +19 -0
  16. package/dist/types/app/components/validation-page/validation-page.component.d.ts +17 -0
  17. package/dist/types/app/components/workflow-stepper/workflow-stepper.component.d.ts +4 -0
  18. package/dist/types/app/core/data/naebi-data.service.d.ts +2 -0
  19. package/dist/types/app/core/master-data/master-data.service.d.ts +2 -0
  20. package/dist/types/app/core/navigation/navigation.service.d.ts +10 -1
  21. package/dist/types/app/core/planning/planning-balance.service.d.ts +22 -3
  22. package/dist/types/app/core/planning/planning-balance.utils.d.ts +10 -0
  23. package/dist/types/app/core/validation/global-validation.service.d.ts +8 -1
  24. package/dist/types/app/header-bar.d.ts +1 -2
  25. package/dist/types/app/jsonforms/filters/code-list-filter-resolvers.d.ts +3 -0
  26. package/dist/types/app/jsonforms/renderers/controls/selects/code-list/code-list-select.renderer.d.ts +6 -1
  27. package/dist/types/app/nutrient-cycle/storage/storage-detail.component.d.ts +30 -0
  28. package/dist/types/app/nutrient-cycle/storage/storage-general.component.d.ts +29 -0
  29. package/dist/types/app/nutrient-cycle/storage/storage-list.component.d.ts +20 -0
  30. package/dist/types/app/nutrient-cycle/storage/storage-master-detail.component.d.ts +31 -0
  31. package/dist/types/app/nutrient-cycle/storage/storage.types.d.ts +40 -0
  32. package/dist/types/shared/material-icons.d.ts +3 -3
  33. package/package.json +1 -1
  34. /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 Icons stylesheet exists in the document <head> (SPA / non-shadow usage).
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 Icons stylesheet is available inside a ShadowRoot so that
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 a custom attribute selector.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agridea/suibi-module",
3
- "version": "0.1.0-preview.2f7b6e2",
3
+ "version": "0.1.0-preview.4849424",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "ng serve --host 0.0.0.0",