@edifice.io/react 2.5.23-develop.20260623093925 → 2.5.23-develop.20260623111724

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 (143) hide show
  1. package/dist/components/AppIcon/AppIcon.js +4 -1
  2. package/dist/components/Avatar/Avatar.d.ts +1 -1
  3. package/dist/components/Avatar/Avatar.js +2 -1
  4. package/dist/components/BetaSwitch/BetaSwitch.d.ts +13 -0
  5. package/dist/components/BetaSwitch/BetaSwitch.js +27 -0
  6. package/dist/components/BetaSwitch/index.d.ts +1 -0
  7. package/dist/components/ButtonBeta/ButtonBeta.d.ts +47 -0
  8. package/dist/components/ButtonBeta/ButtonBeta.js +34 -0
  9. package/dist/components/ButtonBeta/index.d.ts +2 -0
  10. package/dist/components/Flex/Flex.js +5 -1
  11. package/dist/components/Logo/index.d.ts +1 -1
  12. package/dist/components/LogoBeta/LogoBeta.d.ts +7 -0
  13. package/dist/components/LogoBeta/LogoBeta.js +14 -0
  14. package/dist/components/LogoBeta/index.d.ts +2 -0
  15. package/dist/components/PageLayout/PageLayout.d.ts +45 -0
  16. package/dist/components/PageLayout/PageLayout.js +94 -0
  17. package/dist/components/PageLayout/PageLayoutContext.d.ts +14 -0
  18. package/dist/components/PageLayout/PageLayoutContext.js +8 -0
  19. package/dist/components/PageLayout/components/PageLayoutBreadcrumb.d.ts +9 -0
  20. package/dist/components/PageLayout/components/PageLayoutBreadcrumb.js +10 -0
  21. package/dist/components/PageLayout/components/PageLayoutContent.d.ts +9 -0
  22. package/dist/components/PageLayout/components/PageLayoutContent.js +18 -0
  23. package/dist/components/PageLayout/components/PageLayoutHeader.d.ts +10 -0
  24. package/dist/components/PageLayout/components/PageLayoutHeader.js +18 -0
  25. package/dist/components/PageLayout/components/PageLayoutOverlay.d.ts +15 -0
  26. package/dist/components/PageLayout/components/PageLayoutOverlay.js +51 -0
  27. package/dist/components/PageLayout/components/PageLayoutSidebarLeft.d.ts +9 -0
  28. package/dist/components/PageLayout/components/PageLayoutSidebarLeft.js +18 -0
  29. package/dist/components/PageLayout/components/PageLayoutSidebarRight.d.ts +9 -0
  30. package/dist/components/PageLayout/components/PageLayoutSidebarRight.js +18 -0
  31. package/dist/components/PageLayout/hook/useOverlay.d.ts +5 -0
  32. package/dist/components/PageLayout/hook/useOverlay.js +15 -0
  33. package/dist/components/PageLayout/index.d.ts +4 -0
  34. package/dist/components/PageLayout/store/overlayStore.d.ts +15 -0
  35. package/dist/components/PageLayout/store/overlayStore.js +12 -0
  36. package/dist/components/index.d.ts +4 -0
  37. package/dist/homepage.js +34 -0
  38. package/dist/hooks/index.d.ts +1 -1
  39. package/dist/hooks/useEdificeIcons/useEdificeIcons.js +10 -9
  40. package/dist/icons-nav.js +38 -28
  41. package/dist/index.js +215 -202
  42. package/dist/modules/homepage/components/Favorites/Favorites.d.ts +6 -0
  43. package/dist/modules/homepage/components/Favorites/Favorites.js +28 -0
  44. package/dist/modules/homepage/components/Favorites/FavoritesContainer.d.ts +4 -0
  45. package/dist/modules/homepage/components/Favorites/FavoritesContainer.js +10 -0
  46. package/dist/modules/homepage/components/Favorites/index.d.ts +2 -0
  47. package/dist/modules/homepage/components/Header/Header.d.ts +9 -0
  48. package/dist/modules/homepage/components/Header/Header.js +80 -0
  49. package/dist/modules/homepage/components/Header/index.d.ts +2 -0
  50. package/dist/modules/homepage/components/HomeCard/HomeCard.d.ts +37 -0
  51. package/dist/modules/homepage/components/HomeCard/HomeCard.js +17 -0
  52. package/dist/modules/homepage/components/HomeCard/HomeCardContent.d.ts +7 -0
  53. package/dist/modules/homepage/components/HomeCard/HomeCardContent.js +10 -0
  54. package/dist/modules/homepage/components/HomeCard/HomeCardHeader.d.ts +18 -0
  55. package/dist/modules/homepage/components/HomeCard/HomeCardHeader.js +22 -0
  56. package/dist/modules/homepage/components/HomeCard/index.d.ts +4 -0
  57. package/dist/modules/homepage/components/LastInfos/LastInfos.d.ts +49 -0
  58. package/dist/modules/homepage/components/LastInfos/LastInfos.js +58 -0
  59. package/dist/modules/homepage/components/LastInfos/LastInfosContainer.d.ts +4 -0
  60. package/dist/modules/homepage/components/LastInfos/LastInfosContainer.js +37 -0
  61. package/dist/modules/homepage/components/LastInfos/LastInfosList.d.ts +13 -0
  62. package/dist/modules/homepage/components/LastInfos/LastInfosList.js +31 -0
  63. package/dist/modules/homepage/components/LastInfos/index.d.ts +4 -0
  64. package/dist/modules/homepage/components/LastInfos/useLastInfos.d.ts +18 -0
  65. package/dist/modules/homepage/components/LastInfos/useLastInfos.js +25 -0
  66. package/dist/modules/homepage/components/MessageFlashList/MessageFlash.d.ts +12 -0
  67. package/dist/modules/homepage/components/MessageFlashList/MessageFlash.js +65 -0
  68. package/dist/modules/homepage/components/MessageFlashList/MessageFlashList.d.ts +12 -0
  69. package/dist/modules/homepage/components/MessageFlashList/MessageFlashList.js +10 -0
  70. package/dist/modules/homepage/components/MessageFlashList/MessageFlashListContainer.d.ts +5 -0
  71. package/dist/modules/homepage/components/MessageFlashList/MessageFlashListContainer.js +14 -0
  72. package/dist/modules/homepage/components/MessageFlashList/hooks/useMessageFlashList.d.ts +16 -0
  73. package/dist/modules/homepage/components/MessageFlashList/hooks/useMessageFlashList.js +19 -0
  74. package/dist/modules/homepage/components/MessageFlashList/index.d.ts +4 -0
  75. package/dist/modules/homepage/components/MessageFlashList/services/api/index.d.ts +4 -0
  76. package/dist/modules/homepage/components/MessageFlashList/services/api/index.js +5 -0
  77. package/dist/modules/homepage/components/MessageFlashList/services/api/messagesFlashService.d.ts +20 -0
  78. package/dist/modules/homepage/components/MessageFlashList/services/api/messagesFlashService.js +21 -0
  79. package/dist/modules/homepage/components/MessageFlashList/services/queries/messagesFlash.d.ts +13 -0
  80. package/dist/modules/homepage/components/MessageFlashList/services/queries/messagesFlash.js +31 -0
  81. package/dist/modules/homepage/components/Notifications/Notification.d.ts +20 -0
  82. package/dist/modules/homepage/components/Notifications/Notification.js +16 -0
  83. package/dist/modules/homepage/components/Notifications/NotificationList.d.ts +18 -0
  84. package/dist/modules/homepage/components/Notifications/NotificationList.js +44 -0
  85. package/dist/modules/homepage/components/Notifications/NotificationListContainer.d.ts +9 -0
  86. package/dist/modules/homepage/components/Notifications/NotificationListContainer.js +20 -0
  87. package/dist/modules/homepage/components/Notifications/NotificationListSkeleton.d.ts +5 -0
  88. package/dist/modules/homepage/components/Notifications/NotificationListSkeleton.js +17 -0
  89. package/dist/modules/homepage/components/Notifications/NotificationSkeleton.d.ts +3 -0
  90. package/dist/modules/homepage/components/Notifications/NotificationSkeleton.js +19 -0
  91. package/dist/modules/homepage/components/Notifications/components/NotificationItem.d.ts +24 -0
  92. package/dist/modules/homepage/components/Notifications/components/NotificationItem.js +28 -0
  93. package/dist/modules/homepage/components/Notifications/components/NotificationResource.d.ts +15 -0
  94. package/dist/modules/homepage/components/Notifications/components/NotificationResource.js +19 -0
  95. package/dist/modules/homepage/components/Notifications/components/SystemNotification.d.ts +15 -0
  96. package/dist/modules/homepage/components/Notifications/components/SystemNotification.js +20 -0
  97. package/dist/modules/homepage/components/Notifications/components/UserNotification.d.ts +15 -0
  98. package/dist/modules/homepage/components/Notifications/components/UserNotification.js +25 -0
  99. package/dist/modules/homepage/components/Notifications/components/notificationAdapter.d.ts +27 -0
  100. package/dist/modules/homepage/components/Notifications/components/notificationAdapter.js +53 -0
  101. package/dist/modules/homepage/components/Notifications/hooks/useNotificationList.d.ts +20 -0
  102. package/dist/modules/homepage/components/Notifications/hooks/useNotificationList.js +26 -0
  103. package/dist/modules/homepage/components/Notifications/index.d.ts +6 -0
  104. package/dist/modules/homepage/components/Notifications/services/api/index.d.ts +4 -0
  105. package/dist/modules/homepage/components/Notifications/services/api/index.js +5 -0
  106. package/dist/modules/homepage/components/Notifications/services/api/notificationService.d.ts +15 -0
  107. package/dist/modules/homepage/components/Notifications/services/api/notificationService.js +22 -0
  108. package/dist/modules/homepage/components/Notifications/services/queries/notification.d.ts +20 -0
  109. package/dist/modules/homepage/components/Notifications/services/queries/notification.js +40 -0
  110. package/dist/modules/homepage/components/SchoolSpace/SchoolSpace.d.ts +15 -0
  111. package/dist/modules/homepage/components/SchoolSpace/SchoolSpace.js +29 -0
  112. package/dist/modules/homepage/components/SchoolSpace/SchoolSpaceContainer.d.ts +4 -0
  113. package/dist/modules/homepage/components/SchoolSpace/SchoolSpaceContainer.js +13 -0
  114. package/dist/modules/homepage/components/SchoolSpace/index.d.ts +3 -0
  115. package/dist/modules/homepage/components/SchoolSpace/useUserSchools.d.ts +6 -0
  116. package/dist/modules/homepage/components/SchoolSpace/useUserSchools.js +39 -0
  117. package/dist/modules/homepage/components/UserSpace/UserSpace.d.ts +13 -0
  118. package/dist/modules/homepage/components/UserSpace/UserSpace.js +28 -0
  119. package/dist/modules/homepage/components/UserSpace/UserSpaceContainer.d.ts +7 -0
  120. package/dist/modules/homepage/components/UserSpace/UserSpaceContainer.js +19 -0
  121. package/dist/modules/homepage/components/UserSpace/index.d.ts +3 -0
  122. package/dist/modules/homepage/components/index.d.ts +8 -0
  123. package/dist/modules/homepage/hooks/useWidget.d.ts +6 -0
  124. package/dist/modules/homepage/hooks/useWidget.js +83 -0
  125. package/dist/modules/homepage/hooks/useWidgetPreferences.d.ts +6 -0
  126. package/dist/modules/homepage/hooks/useWidgetPreferences.js +34 -0
  127. package/dist/modules/homepage/index.d.ts +1 -0
  128. package/dist/modules/icons/components/nav/IconCommunitiesBeta.d.ts +7 -0
  129. package/dist/modules/icons/components/nav/IconCommunitiesBeta.js +18 -0
  130. package/dist/modules/icons/components/nav/IconHomeBeta.d.ts +7 -0
  131. package/dist/modules/icons/components/nav/IconHomeBeta.js +13 -0
  132. package/dist/modules/icons/components/nav/IconMessagesBeta.d.ts +7 -0
  133. package/dist/modules/icons/components/nav/IconMessagesBeta.js +18 -0
  134. package/dist/modules/icons/components/nav/IconMyAppsBeta.d.ts +7 -0
  135. package/dist/modules/icons/components/nav/IconMyAppsBeta.js +13 -0
  136. package/dist/modules/icons/components/nav/IconNotificationBeta.d.ts +7 -0
  137. package/dist/modules/icons/components/nav/IconNotificationBeta.js +14 -0
  138. package/dist/modules/icons/components/nav/index.d.ts +5 -0
  139. package/dist/modules/modals/OnboardingModal/index.d.ts +1 -1
  140. package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +0 -7
  141. package/dist/utilities/create-selectors/createSelectors.d.ts +10 -0
  142. package/dist/utilities/create-selectors/createSelectors.js +11 -0
  143. package/package.json +13 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/react",
3
- "version": "2.5.23-develop.20260623093925",
3
+ "version": "2.5.23-develop.20260623111724",
4
4
  "description": "Edifice React Library",
5
5
  "keywords": [
6
6
  "react",
@@ -65,6 +65,10 @@
65
65
  "./widgets": {
66
66
  "import": "./dist/widgets.js",
67
67
  "types": "./dist/modules/widgets/index.d.ts"
68
+ },
69
+ "./homepage": {
70
+ "import": "./dist/homepage.js",
71
+ "types": "./dist/modules/homepage/index.d.ts"
68
72
  }
69
73
  },
70
74
  "module": "dist/index.js",
@@ -74,13 +78,13 @@
74
78
  ],
75
79
  "dependencies": {
76
80
  "@ant-design/icons": "5.4.0",
77
- "@screeb/sdk-browser": "0.5.0",
78
- "@screeb/sdk-react": "0.6.0",
79
81
  "@dnd-kit/core": "6.3.1",
80
82
  "@dnd-kit/sortable": "8.0.0",
81
83
  "@dnd-kit/utilities": "3.2.2",
82
84
  "@floating-ui/react": "0.26.0",
83
85
  "@popperjs/core": "2.11.8",
86
+ "@screeb/sdk-browser": "0.5.0",
87
+ "@screeb/sdk-react": "0.6.0",
84
88
  "@tiptap/core": "2.11.0",
85
89
  "@tiptap/extension-blockquote": "2.11.0",
86
90
  "@tiptap/extension-bullet-list": "2.11.0",
@@ -135,9 +139,10 @@
135
139
  "react-slugify": "3.0.3",
136
140
  "swiper": "10.1.0",
137
141
  "ua-parser-js": "1.0.36",
138
- "@edifice.io/tiptap-extensions": "2.5.23-develop.20260623093925",
139
- "@edifice.io/bootstrap": "2.5.23-develop.20260623093925",
140
- "@edifice.io/utilities": "2.5.23-develop.20260623093925"
142
+ "zustand": "4.5.7",
143
+ "@edifice.io/bootstrap": "2.5.23-develop.20260623111724",
144
+ "@edifice.io/tiptap-extensions": "2.5.23-develop.20260623111724",
145
+ "@edifice.io/utilities": "2.5.23-develop.20260623111724"
141
146
  },
142
147
  "devDependencies": {
143
148
  "@babel/plugin-transform-react-pure-annotations": "7.27.1",
@@ -168,8 +173,8 @@
168
173
  "vite": "5.4.14",
169
174
  "vite-plugin-dts": "4.5.4",
170
175
  "vite-tsconfig-paths": "5.1.4",
171
- "@edifice.io/client": "2.5.23-develop.20260623093925",
172
- "@edifice.io/config": "2.5.23-develop.20260623093925"
176
+ "@edifice.io/client": "2.5.23-develop.20260623111724",
177
+ "@edifice.io/config": "2.5.23-develop.20260623111724"
173
178
  },
174
179
  "peerDependencies": {
175
180
  "@react-spring/web": "9.7.5",