@provoly/dashboard 0.21.1 → 0.21.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 (73) hide show
  1. package/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.d.ts +3 -5
  2. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +13 -18
  3. package/esm2022/filters/autocomplete/autocomplete.component.mjs +2 -2
  4. package/esm2022/lib/core/components/chips-selector/chips-selector.component.mjs +111 -0
  5. package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +105 -0
  6. package/esm2022/lib/core/components/share/share.model.mjs +1 -1
  7. package/esm2022/lib/core/components/share/share.module.mjs +9 -6
  8. package/esm2022/lib/core/core.module.mjs +5 -1
  9. package/esm2022/lib/core/i18n/en.translations.mjs +24 -1
  10. package/esm2022/lib/core/i18n/fr.translations.mjs +24 -1
  11. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  12. package/esm2022/lib/core/public-api.mjs +3 -1
  13. package/esm2022/lib/core/store/config/config.actions.mjs +4 -2
  14. package/esm2022/lib/core/store/config/config.effects.mjs +9 -2
  15. package/esm2022/lib/core/store/config/config.reducer.mjs +6 -2
  16. package/esm2022/lib/core/store/config/config.selectors.mjs +4 -2
  17. package/esm2022/lib/core/store/config/config.service.mjs +6 -1
  18. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +33 -65
  19. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +4 -5
  20. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
  21. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -3
  22. package/esm2022/lib/dashboard/store/manifest.service.mjs +4 -4
  23. package/esm2022/presentation/components/presentation.component.mjs +7 -8
  24. package/esm2022/presentation/i18n/en.translations.mjs +2 -2
  25. package/esm2022/presentation/i18n/fr.translations.mjs +2 -2
  26. package/esm2022/presentation/style/css.component.mjs +2 -2
  27. package/esm2022/restitution/components/restitution/restitution.component.mjs +7 -4
  28. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
  29. package/esm2022/restitution/i18n/en.translations.mjs +1 -6
  30. package/esm2022/restitution/i18n/fr.translations.mjs +1 -6
  31. package/esm2022/restitution/style/css.component.mjs +2 -2
  32. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +17 -20
  33. package/esm2022/toolbox/components/save-view/save-view.component.mjs +8 -8
  34. package/fesm2022/provoly-dashboard-admin.mjs +10 -15
  35. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  36. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +1 -1
  37. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  38. package/fesm2022/provoly-dashboard-presentation.mjs +10 -11
  39. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  40. package/fesm2022/provoly-dashboard-restitution.mjs +10 -17
  41. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  42. package/fesm2022/provoly-dashboard-toolbox.mjs +23 -26
  43. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  44. package/fesm2022/provoly-dashboard.mjs +974 -743
  45. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  46. package/lib/core/components/chips-selector/chips-selector.component.d.ts +38 -0
  47. package/lib/core/components/share/group-share/group-share.component.d.ts +33 -0
  48. package/lib/core/components/share/share.model.d.ts +5 -0
  49. package/lib/core/components/share/share.module.d.ts +8 -5
  50. package/lib/core/core.module.d.ts +24 -23
  51. package/lib/core/i18n/en.translations.d.ts +23 -0
  52. package/lib/core/i18n/fr.translations.d.ts +23 -0
  53. package/lib/core/model/manifest.interface.d.ts +1 -2
  54. package/lib/core/public-api.d.ts +2 -0
  55. package/lib/core/store/config/config.actions.d.ts +8 -1
  56. package/lib/core/store/config/config.effects.d.ts +4 -0
  57. package/lib/core/store/config/config.reducer.d.ts +2 -0
  58. package/lib/core/store/config/config.selectors.d.ts +1 -0
  59. package/lib/core/store/config/config.service.d.ts +2 -0
  60. package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts +10 -23
  61. package/lib/dashboard/store/dashboard.actions.d.ts +2 -3
  62. package/lib/dashboard/store/manifest.service.d.ts +2 -3
  63. package/package.json +31 -31
  64. package/presentation/components/presentation.component.d.ts +2 -3
  65. package/presentation/style/_o-pry-presentation.scss +7 -4
  66. package/restitution/components/restitution/restitution.component.d.ts +1 -0
  67. package/restitution/i18n/en.translations.d.ts +0 -5
  68. package/restitution/i18n/fr.translations.d.ts +0 -5
  69. package/restitution/style/_o-restitution.scss +16 -1
  70. package/styles/components/_m-presentation-title.scss +1 -0
  71. package/styles/components/_o-pry-stepper.scss +0 -4
  72. package/toolbox/components/filter-settings/filter-settings.component.d.ts +1 -1
  73. package/toolbox/components/save-view/save-view.component.d.ts +3 -3

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.