imio.smartweb.core 1.2.44__py3-none-any.whl → 1.2.46__py3-none-any.whl

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 (78) hide show
  1. imio/smartweb/core/behaviors/categorization.py +24 -0
  2. imio/smartweb/core/behaviors/configure.zcml +7 -0
  3. imio/smartweb/core/browser/static/smartweb-edit-compiled.css +1 -1
  4. imio/smartweb/core/browser/static/src/edit.less +42 -0
  5. imio/smartweb/core/contents/pages/cirkwi/content.py +5 -0
  6. imio/smartweb/core/contents/pages/cirkwi/view.py +2 -1
  7. imio/smartweb/core/contents/rest/events/endpoint.py +1 -0
  8. imio/smartweb/core/contents/rest/events/view.pt +2 -1
  9. imio/smartweb/core/contents/rest/events/view.py +4 -0
  10. imio/smartweb/core/contents/rest/news/endpoint.py +1 -0
  11. imio/smartweb/core/contents/rest/news/view.pt +2 -1
  12. imio/smartweb/core/contents/rest/news/view.py +4 -0
  13. imio/smartweb/core/contents/sections/configure.zcml +1 -1
  14. imio/smartweb/core/contents/sections/events/view.py +11 -1
  15. imio/smartweb/core/contents/sections/macros.pt +3 -2
  16. imio/smartweb/core/contents/sections/news/view.py +11 -1
  17. imio/smartweb/core/contents/sections/views.py +4 -4
  18. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  19. imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +1 -0
  20. imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +1 -0
  21. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +1 -0
  22. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +1 -0
  23. imio/smartweb/core/tests/resources/json_rest_events.json +2 -1
  24. imio/smartweb/core/tests/resources/json_rest_news.json +2 -2
  25. imio/smartweb/core/tests/resources/json_rest_specific_events.json +1 -1
  26. imio/smartweb/core/tests/test_htmx_in_sections.py +8 -1
  27. imio/smartweb/core/tests/test_rest.py +36 -0
  28. imio/smartweb/core/tests/test_section_events.py +27 -5
  29. imio/smartweb/core/tests/test_section_news.py +16 -3
  30. imio/smartweb/core/tests/test_vocabularies.py +3 -0
  31. imio/smartweb/core/upgrades/configure.zcml +18 -0
  32. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +11 -0
  33. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +11 -0
  34. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +11 -0
  35. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +11 -0
  36. imio/smartweb/core/utils.py +0 -23
  37. imio/smartweb/core/vocabularies.py +17 -0
  38. imio/smartweb/core/vocabularies.zcml +6 -0
  39. imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
  40. imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css +1 -1
  41. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
  42. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +1 -1
  43. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -1
  44. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js.LICENSE.txt → 373.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -4
  45. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  46. imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +2 -0
  47. imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js +1 -1
  48. imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js +1 -1
  49. imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -3
  50. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  51. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js → 963.smartweb-webcomponents-compiled.js} +2 -2
  52. imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -0
  53. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  54. imio/smartweb/core/webcomponents/package.json +1 -0
  55. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +265 -161
  56. imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +34 -21
  57. imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +2 -2
  58. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +2 -1
  59. imio/smartweb/core/webcomponents/src/components/Events/Events.scss +1 -0
  60. imio/smartweb/core/webcomponents/src/components/News/News.jsx +2 -1
  61. imio/smartweb/core/webcomponents/src/components/News/News.scss +9 -1
  62. imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +22 -5
  63. imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +2 -2
  64. imio/smartweb/core/webcomponents/src/utils/Map.jsx +1 -3
  65. imio/smartweb/core/webcomponents/src/utils/translation.js +49 -1
  66. imio.smartweb.core-1.2.46-py3.8-nspkg.pth +2 -0
  67. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/METADATA +29 -3
  68. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/RECORD +74 -70
  69. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/WHEEL +1 -1
  70. imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -1
  71. imio/smartweb/core/webcomponents/build/f79b479fdc5c0fe0d553.svg +0 -1
  72. imio/smartweb/core/webcomponents/build/js/496.smartweb-webcomponents-compiled.js +0 -2
  73. imio.smartweb.core-1.2.44-py3.10-nspkg.pth +0 -3
  74. /imio/smartweb/core/webcomponents/build/js/{496.smartweb-webcomponents-compiled.js.LICENSE.txt → 499.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  75. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/LICENSE.GPL +0 -0
  76. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/LICENSE.rst +0 -0
  77. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/namespace_packages.txt +0 -0
  78. {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@
25
25
  "@babel/preset-env": "^7.24.3",
26
26
  "@fullhuman/postcss-purgecss": "^5.0.0",
27
27
  "@svgr/webpack": "^8.1.0",
28
+ "ajv": "^7.2.4",
28
29
  "autoprefixer": "^10.4.19",
29
30
  "babel-loader": "^9.1.3",
30
31
  "clean-webpack-plugin": "^4.0.0",