@instructure/platform-widget-dashboard 10.8.2 → 10.9.0
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.
- package/dist/components/EducatorWidgetDashboardContainer.d.ts.map +1 -1
- package/dist/components/WidgetDashboardContainer.d.ts.map +1 -1
- package/dist/components/shared/CaretPagination.d.ts +13 -0
- package/dist/components/shared/CaretPagination.d.ts.map +1 -0
- package/dist/components/widgets/educator/EducatorTodoListWidget/EducatorTodoListLayout.d.ts +0 -4
- package/dist/components/widgets/educator/EducatorTodoListWidget/EducatorTodoListLayout.d.ts.map +1 -1
- package/dist/components/widgets/educator/EducatorTodoListWidget/EducatorTodoListWidget.d.ts.map +1 -1
- package/dist/constants/pagination.d.ts +1 -0
- package/dist/constants/pagination.d.ts.map +1 -1
- package/dist/constants.d.ts +1 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/contexts/TranslationsContext.d.ts +4 -0
- package/dist/contexts/TranslationsContext.d.ts.map +1 -1
- package/dist/hooks/useCursorPageBuffer.d.ts +19 -0
- package/dist/hooks/useCursorPageBuffer.d.ts.map +1 -0
- package/dist/hooks/useEducatorTodoItems.d.ts +17 -1
- package/dist/hooks/useEducatorTodoItems.d.ts.map +1 -1
- package/dist/hooks/useWidgetDashboardEdit.d.ts +3 -3
- package/dist/hooks/useWidgetDashboardEdit.d.ts.map +1 -1
- package/dist/hooks/useWidgetLayout.d.ts +2 -2
- package/dist/hooks/useWidgetLayout.d.ts.map +1 -1
- package/dist/index.js +6808 -6674
- package/locales/en.json +7 -1
- package/package.json +2 -2
package/locales/en.json
CHANGED
|
@@ -196,5 +196,11 @@
|
|
|
196
196
|
"searchMultiSelectItemSelected": "%{name} selected",
|
|
197
197
|
"searchMultiSelectItemRemoved": "%{name} removed",
|
|
198
198
|
"searchMultiSelectRemoveItem": "Remove %{name}",
|
|
199
|
-
"searchMultiSelectMaxSelectionsReached": "Maximum of %{count} items selected"
|
|
199
|
+
"searchMultiSelectMaxSelectionsReached": "Maximum of %{count} items selected",
|
|
200
|
+
|
|
201
|
+
"educatorTodoListPagination": "To grade pagination",
|
|
202
|
+
"educatorTodoListFailedToLoadMoreItems": "Failed to load more items",
|
|
203
|
+
|
|
204
|
+
"previousPage": "Previous page",
|
|
205
|
+
"nextPage": "Next page"
|
|
200
206
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/platform-widget-dashboard",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"@instructure/ui-tooltip": "11.6.0",
|
|
138
138
|
"@instructure/ui-truncate-text": "11.6.0",
|
|
139
139
|
"@instructure/ui-view": "11.6.0",
|
|
140
|
-
"@instructure/platform-mock-canvas-api": "0.
|
|
140
|
+
"@instructure/platform-mock-canvas-api": "0.5.0"
|
|
141
141
|
},
|
|
142
142
|
"owner": "LX",
|
|
143
143
|
"scripts": {
|