@instructure/platform-widget-dashboard 8.0.0 → 10.0.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/widgets/PeopleWidget/PeopleWidget.d.ts +1 -16
- package/dist/components/widgets/PeopleWidget/PeopleWidget.d.ts.map +1 -1
- package/dist/components/widgets/PeopleWidget/index.d.ts +1 -1
- package/dist/components/widgets/PeopleWidget/index.d.ts.map +1 -1
- package/dist/components/widgets/educator/EducatorAnnouncementCreationWidget/CreateAnnouncementModal.d.ts.map +1 -1
- package/dist/components/widgets/educator/EducatorTodoListWidget/EducatorTodoListWidget.d.ts.map +1 -1
- package/dist/components/widgets/educator/EducatorTodoListWidget/SubmissionFilter.d.ts +2 -4
- package/dist/components/widgets/educator/EducatorTodoListWidget/SubmissionFilter.d.ts.map +1 -1
- package/dist/contexts/TranslationsContext.d.ts +10 -1
- package/dist/contexts/TranslationsContext.d.ts.map +1 -1
- package/dist/hooks/useAnnouncementForm.d.ts +2 -0
- package/dist/hooks/useAnnouncementForm.d.ts.map +1 -1
- package/dist/hooks/useEducatorTodoItems.d.ts +2 -2
- package/dist/hooks/useEducatorTodoItems.d.ts.map +1 -1
- package/dist/hooks/useWidgetDashboardContext.d.ts +10 -1
- package/dist/hooks/useWidgetDashboardContext.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7282 -7147
- package/dist/types/widget.d.ts +4 -4
- package/package.json +4 -3
package/dist/types/widget.d.ts
CHANGED
|
@@ -54,10 +54,10 @@ export interface WidgetRenderer {
|
|
|
54
54
|
description: string;
|
|
55
55
|
roles?: string[];
|
|
56
56
|
/**
|
|
57
|
-
* Extra props the host wants forwarded to the widget component
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
*
|
|
57
|
+
* Extra props the host wants forwarded to the widget component. WidgetRenderer
|
|
58
|
+
* spreads these onto the rendered component so host-supplied customWidgets
|
|
59
|
+
* entries can inject per-widget behavior that isn't available inside the
|
|
60
|
+
* host-agnostic package.
|
|
61
61
|
*/
|
|
62
62
|
props?: Record<string, unknown>;
|
|
63
63
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/platform-widget-dashboard",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
"@instructure/ui-date-input": "^11.0.0",
|
|
32
32
|
"@instructure/ui-date-time-input": "^11.0.0",
|
|
33
33
|
"@instructure/ui-flex": "^11.0.0",
|
|
34
|
-
"@instructure/ui-form-field": "^11.0.0",
|
|
35
34
|
"@instructure/ui-grid": "^11.0.0",
|
|
36
35
|
"@instructure/ui-heading": "^11.0.0",
|
|
37
36
|
"@instructure/ui-icons": "^11.0.0",
|
|
@@ -68,7 +67,9 @@
|
|
|
68
67
|
"@instructure/platform-grades": "0.2.5",
|
|
69
68
|
"@instructure/platform-image-utils": "0.2.0",
|
|
70
69
|
"@instructure/platform-instui-bindings": "0.6.3",
|
|
71
|
-
"@instructure/platform-
|
|
70
|
+
"@instructure/platform-message-students-modal": "0.2.6",
|
|
71
|
+
"@instructure/platform-provider": "0.5.2",
|
|
72
|
+
"@instructure/platform-rce-adapter": "0.3.0"
|
|
72
73
|
},
|
|
73
74
|
"dependencies": {
|
|
74
75
|
"@dnd-kit/core": "^6.3.1",
|