@provoly/dashboard 0.13.1 → 0.13.3

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 (94) hide show
  1. package/admin/admin.module.d.ts +12 -11
  2. package/admin/components/association/association.component.d.ts +9 -0
  3. package/admin/i18n/en.translations.d.ts +10 -0
  4. package/admin/i18n/fr.translations.d.ts +10 -0
  5. package/dataset/components/dataset-detail/dataset-detail.component.d.ts +1 -0
  6. package/dataset/i18n/en.translations.d.ts +28 -1
  7. package/dataset/i18n/fr.translations.d.ts +28 -2
  8. package/dataset/style/_o-pry-dataset-detail.scss +55 -21
  9. package/dataset/style/_o-pry-dataset.scss +9 -1
  10. package/esm2022/admin/admin.module.mjs +6 -3
  11. package/esm2022/admin/components/admin-classes/admin-classes-select/admin-classes-select.component.mjs +4 -3
  12. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-select/admin-attributes-select.component.mjs +4 -3
  13. package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +5 -4
  14. package/esm2022/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.mjs +4 -3
  15. package/esm2022/admin/components/association/association.component.mjs +18 -0
  16. package/esm2022/admin/i18n/en.translations.mjs +11 -1
  17. package/esm2022/admin/i18n/fr.translations.mjs +11 -1
  18. package/esm2022/admin/store/admin.service.mjs +5 -5
  19. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +10 -5
  20. package/esm2022/dataset/components/dataset.component.mjs +6 -4
  21. package/esm2022/dataset/i18n/en.translations.mjs +30 -3
  22. package/esm2022/dataset/i18n/fr.translations.mjs +30 -4
  23. package/esm2022/dataset/style/css.component.mjs +2 -2
  24. package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +16 -6
  25. package/esm2022/lib/core/i18n/en.translations.mjs +2 -1
  26. package/esm2022/lib/core/i18n/fr.translations.mjs +2 -1
  27. package/esm2022/lib/core/model/dataset.interface.mjs +1 -1
  28. package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
  29. package/esm2022/lib/core/store/field/field.interface.mjs +3 -1
  30. package/esm2022/lib/dashboard/components/widgets/base-widget.component.mjs +4 -1
  31. package/esm2022/lib/dashboard/components/widgets/settings/settings.component.mjs +19 -4
  32. package/esm2022/presentation/components/presentation.component.mjs +3 -3
  33. package/esm2022/presentation/style/css.component.mjs +2 -2
  34. package/esm2022/restitution/style/css.component.mjs +2 -2
  35. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +3 -3
  36. package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +3 -3
  37. package/esm2022/widgets/widget-graph/component/widget-graph.component.mjs +3 -3
  38. package/esm2022/widgets/widget-iframe/component/widget-iframe.component.mjs +7 -5
  39. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +6 -5
  40. package/esm2022/widgets/widget-map/i18n/en.translations.mjs +2 -2
  41. package/esm2022/widgets/widget-map/i18n/fr.translations.mjs +2 -2
  42. package/esm2022/widgets/widget-table/component/widget-table.component.mjs +3 -3
  43. package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +3 -3
  44. package/fesm2022/provoly-dashboard-admin.mjs +51 -15
  45. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  46. package/fesm2022/provoly-dashboard-dataset.mjs +74 -14
  47. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  48. package/fesm2022/provoly-dashboard-presentation.mjs +4 -4
  49. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  50. package/fesm2022/provoly-dashboard-restitution.mjs +2 -2
  51. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  52. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +2 -2
  53. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  54. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +2 -2
  55. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  56. package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs +2 -2
  57. package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs.map +1 -1
  58. package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs +6 -4
  59. package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs.map +1 -1
  60. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +7 -6
  61. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  62. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +2 -2
  63. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
  64. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs +2 -2
  65. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
  66. package/fesm2022/provoly-dashboard.mjs +96 -13
  67. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  68. package/lib/core/components/modal-status/modal-status.component.d.ts +11 -2
  69. package/lib/core/i18n/en.translations.d.ts +1 -0
  70. package/lib/core/i18n/fr.translations.d.ts +1 -0
  71. package/lib/core/model/dataset.interface.d.ts +3 -2
  72. package/lib/core/store/data-source/data-source.model.d.ts +1 -0
  73. package/lib/core/store/field/field.interface.d.ts +3 -1
  74. package/lib/dashboard/components/widgets/base-widget.component.d.ts +1 -0
  75. package/lib/dashboard/components/widgets/settings/settings.component.d.ts +10 -3
  76. package/package.json +5 -1
  77. package/presentation/style/_o-pry-presentation.scss +1 -2
  78. package/schematics/migration.json +10 -0
  79. package/schematics/ng-add/index.spec.js +24 -1
  80. package/schematics/ng-add/index.spec.js.map +1 -1
  81. package/schematics/ng-update/utils/complete.function.d.ts +2 -0
  82. package/schematics/ng-update/utils/complete.function.js +10 -0
  83. package/schematics/ng-update/utils/complete.function.js.map +1 -0
  84. package/schematics/ng-update/version-0-13/index.d.ts +2 -0
  85. package/schematics/ng-update/version-0-13/index.js +30 -0
  86. package/schematics/ng-update/version-0-13/index.js.map +1 -0
  87. package/schematics/ng-update/version-0-13/index.spec.d.ts +1 -0
  88. package/schematics/ng-update/version-0-13/index.spec.js +167 -0
  89. package/schematics/ng-update/version-0-13/index.spec.js.map +1 -0
  90. package/styles/components/_o-panel.scss +46 -0
  91. package/styles-theme/components-theme/_o-pry-dataset.theme.scss +6 -6
  92. package/styles-theme/main-theme.scss +1 -0
  93. package/widgets/widget-iframe/component/widget-iframe.component.d.ts +2 -0
  94. package/widgets/widget-map/component/widget-map.component.d.ts +1 -1

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.