@agridea/suibi-module 0.1.0-preview.6 → 0.1.0-preview.6e162c8

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 (63) hide show
  1. package/dist/elements/browser/main.js +75 -72
  2. package/dist/elements/browser/styles.css +1 -1
  3. package/dist/elements/browser/suibi-module-latest.css +1 -1
  4. package/dist/elements/browser/suibi-module-latest.js +75 -72
  5. package/dist/elements/browser/{suibi-module.v0.1.0-preview.6.css → suibi-module.v0.1.0-preview.6e162c8.css} +1 -1
  6. package/dist/elements/browser/suibi-module.v0.1.0-preview.6e162c8.js +78 -0
  7. package/dist/elements/browser/suibi-theme-dark.css +1 -1
  8. package/dist/elements/browser/version.txt +1 -1
  9. package/dist/elements/browser/wc-global-utilities.css +1 -0
  10. package/dist/types/app/app.d.ts +1 -3
  11. package/dist/types/app/components/add-dashed-button/add-dashed-button.component.d.ts +9 -0
  12. package/dist/types/app/components/data-preview/data-preview.component.d.ts +3 -0
  13. package/dist/types/app/components/empty-state/empty-state.component.d.ts +12 -0
  14. package/dist/types/app/components/module-placeholder-page/module-placeholder-page.component.d.ts +6 -0
  15. package/dist/types/app/components/planning-result/planning-result.component.d.ts +46 -0
  16. package/dist/types/app/components/planning-result/planning-trigger.component.d.ts +13 -0
  17. package/dist/types/app/components/results-page/results-page.component.d.ts +13 -0
  18. package/dist/types/app/components/suissebilanz-dashboard/gauge-arc.component.d.ts +47 -0
  19. package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-dashboard.component.d.ts +24 -0
  20. package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-metrics.service.d.ts +21 -0
  21. package/dist/types/app/components/suissebilanz-dashboard/suissebilanz-minibar.component.d.ts +19 -0
  22. package/dist/types/app/components/validation-page/validation-page.component.d.ts +18 -0
  23. package/dist/types/app/components/workflow-stepper/workflow-stepper.component.d.ts +49 -0
  24. package/dist/types/app/core/data/naebi-data.service.d.ts +39 -4
  25. package/dist/types/app/core/master-data/master-data.service.d.ts +8 -1
  26. package/dist/types/app/core/navigation/navigation.service.d.ts +29 -1
  27. package/dist/types/app/core/planning/planning-balance.service.d.ts +37 -0
  28. package/dist/types/app/core/planning/planning-balance.types.d.ts +206 -0
  29. package/dist/types/app/core/planning/planning-balance.utils.d.ts +10 -0
  30. package/dist/types/app/core/validation/capabilities.d.ts +5 -5
  31. package/dist/types/app/core/validation/global-validation.service.d.ts +19 -4
  32. package/dist/types/app/header-bar.d.ts +1 -2
  33. package/dist/types/app/jsonforms/filters/code-list-filter-resolvers.d.ts +3 -0
  34. package/dist/types/app/jsonforms/registry/renderers.registry.d.ts +4 -0
  35. package/dist/types/app/jsonforms/renderers/controls/selects/code-list/code-list-select.renderer.d.ts +10 -4
  36. package/dist/types/app/jsonforms/renderers/layout/array/array-layout.renderer.d.ts +43 -0
  37. package/dist/types/app/jsonforms/renderers/layout/categorization/selected-category-categorization.renderer.d.ts +3 -0
  38. package/dist/types/app/nutrient-cycle/animal-stock/animal-stock-master-detail.component.d.ts +0 -1
  39. package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-detail.component.d.ts +1 -1
  40. package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-list.component.d.ts +1 -0
  41. package/dist/types/app/nutrient-cycle/farm-manure-trading/farm-manure-trading-master-detail.component.d.ts +0 -1
  42. package/dist/types/app/nutrient-cycle/field-cultivation/field-cultivation-detail.component.d.ts +22 -0
  43. package/dist/types/app/nutrient-cycle/field-cultivation/field-cultivation-general.component.d.ts +22 -0
  44. package/dist/types/app/nutrient-cycle/field-cultivation/field-cultivation-list.component.d.ts +17 -0
  45. package/dist/types/app/nutrient-cycle/field-cultivation/field-cultivation-master-detail.component.d.ts +36 -0
  46. package/dist/types/app/nutrient-cycle/field-cultivation/field-cultivation.types.d.ts +40 -0
  47. package/dist/types/app/nutrient-cycle/field-cultivation/field-cultivation.util.d.ts +6 -0
  48. package/dist/types/app/nutrient-cycle/field-spreading/field-spreading.component.d.ts +0 -1
  49. package/dist/types/app/nutrient-cycle/fodder/fodder-detail.component.d.ts +32 -0
  50. package/dist/types/app/nutrient-cycle/fodder/fodder-list.component.d.ts +21 -0
  51. package/dist/types/app/nutrient-cycle/fodder/fodder-master-detail.component.d.ts +37 -0
  52. package/dist/types/app/nutrient-cycle/fodder/fodder.types.d.ts +27 -0
  53. package/dist/types/app/nutrient-cycle/fodder/transaction-unit.util.d.ts +2 -0
  54. package/dist/types/app/nutrient-cycle/lifetime-performance/lifetime-performance-form.component.d.ts +1 -1
  55. package/dist/types/app/nutrient-cycle/storage/storage-detail.component.d.ts +30 -0
  56. package/dist/types/app/nutrient-cycle/storage/storage-general.component.d.ts +29 -0
  57. package/dist/types/app/nutrient-cycle/storage/storage-list.component.d.ts +20 -0
  58. package/dist/types/app/nutrient-cycle/storage/storage-master-detail.component.d.ts +31 -0
  59. package/dist/types/app/nutrient-cycle/storage/storage.types.d.ts +40 -0
  60. package/dist/types/environments/environment.d.ts +5 -0
  61. package/dist/types/shared/material-icons.d.ts +3 -3
  62. package/package.json +1 -1
  63. package/dist/elements/browser/suibi-module.v0.1.0-preview.6.js +0 -75

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.