@instructure/platform-widget-dashboard 6.2.3 → 6.3.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/TodoListWidget/CreateTodoModal.d.ts +11 -8
- package/dist/components/widgets/TodoListWidget/CreateTodoModal.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/TodoItem.d.ts +6 -3
- package/dist/components/widgets/TodoListWidget/TodoItem.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/TodoListWidget.d.ts +1 -2
- package/dist/components/widgets/TodoListWidget/TodoListWidget.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/api.d.ts +9 -12
- package/dist/components/widgets/TodoListWidget/api.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/hooks/useCreatePlannerNote.d.ts +11 -1
- package/dist/components/widgets/TodoListWidget/hooks/useCreatePlannerNote.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/hooks/usePlannerItems.d.ts +4 -1
- package/dist/components/widgets/TodoListWidget/hooks/usePlannerItems.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/hooks/usePlannerOverride.d.ts +17 -3
- package/dist/components/widgets/TodoListWidget/hooks/usePlannerOverride.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/hooks/useUpdatePlannerNote.d.ts +16 -0
- package/dist/components/widgets/TodoListWidget/hooks/useUpdatePlannerNote.d.ts.map +1 -0
- package/dist/components/widgets/TodoListWidget/types.d.ts +619 -62
- package/dist/components/widgets/TodoListWidget/types.d.ts.map +1 -1
- package/dist/components/widgets/TodoListWidget/utils.d.ts +5 -2
- package/dist/components/widgets/TodoListWidget/utils.d.ts.map +1 -1
- package/dist/contexts/TranslationsContext.d.ts +8 -0
- package/dist/contexts/TranslationsContext.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7565 -7371
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/platform-widget-dashboard",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"@instructure/platform-canvas-fetch": "0.1.3",
|
|
65
65
|
"@instructure/platform-get-cookie": "0.2.1",
|
|
66
66
|
"@instructure/platform-image-utils": "0.2.0",
|
|
67
|
-
"@instructure/platform-
|
|
68
|
-
"@instructure/platform-
|
|
67
|
+
"@instructure/platform-instui-bindings": "0.6.1",
|
|
68
|
+
"@instructure/platform-provider": "0.5.2"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@tanstack/query-persist-client-core": "^5.0.0",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"zod": "^3.23.8",
|
|
74
74
|
"@instructure/platform-alerts": "1.0.1",
|
|
75
75
|
"@instructure/platform-canvas-fetch": "0.1.3",
|
|
76
|
+
"@instructure/platform-datetime": "0.2.0",
|
|
76
77
|
"@instructure/platform-graphql-types": "0.1.3",
|
|
77
|
-
"@instructure/platform-query": "0.2.2"
|
|
78
|
-
"@instructure/platform-datetime": "0.2.0"
|
|
78
|
+
"@instructure/platform-query": "0.2.2"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@storybook/react": "^10.0.8",
|