@instructure/platform-assignment-review 0.0.1 → 0.1.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/AttemptCard.d.ts +10 -0
- package/dist/components/AttemptCard.d.ts.map +1 -0
- package/dist/components/AttemptView.d.ts +10 -0
- package/dist/components/AttemptView.d.ts.map +1 -0
- package/dist/components/AttemptsHistory.d.ts +10 -0
- package/dist/components/AttemptsHistory.d.ts.map +1 -0
- package/dist/components/CommentCard.d.ts +9 -0
- package/dist/components/CommentCard.d.ts.map +1 -0
- package/dist/components/DownloadButtons.d.ts +7 -0
- package/dist/components/DownloadButtons.d.ts.map +1 -0
- package/dist/components/FileUploadSubmissionForm.d.ts +14 -0
- package/dist/components/FileUploadSubmissionForm.d.ts.map +1 -0
- package/dist/components/LearningContentHeader.d.ts +20 -0
- package/dist/components/LearningContentHeader.d.ts.map +1 -0
- package/dist/components/ModuleNavigation.d.ts +17 -0
- package/dist/components/ModuleNavigation.d.ts.map +1 -0
- package/dist/components/MyProgressPanel.d.ts +14 -0
- package/dist/components/MyProgressPanel.d.ts.map +1 -0
- package/dist/components/SubmissionComments.d.ts +13 -0
- package/dist/components/SubmissionComments.d.ts.map +1 -0
- package/dist/components/TextEntrySubmissionForm.d.ts +9 -0
- package/dist/components/TextEntrySubmissionForm.d.ts.map +1 -0
- package/dist/components/UnreadCommentsBadge.d.ts +5 -0
- package/dist/components/UnreadCommentsBadge.d.ts.map +1 -0
- package/dist/hooks/useModuleItemSequence.d.ts +16 -0
- package/dist/hooks/useModuleItemSequence.d.ts.map +1 -0
- package/dist/index.d.ts +27 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1604 -428
- package/package.json +16 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/platform-assignment-review",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -16,11 +16,26 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"peerDependencies": {
|
|
19
|
+
"@instructure/ui-a11y-content": "^10.0.0",
|
|
20
|
+
"@instructure/ui-badge": "^10.0.0",
|
|
21
|
+
"@instructure/ui-buttons": "^10.0.0",
|
|
22
|
+
"@instructure/ui-flex": "^10.0.0",
|
|
23
|
+
"@instructure/ui-heading": "^10.0.0",
|
|
24
|
+
"@instructure/ui-icons": "^10.0.0",
|
|
25
|
+
"@instructure/ui-link": "^10.0.0",
|
|
26
|
+
"@instructure/ui-pill": "^10.0.0",
|
|
27
|
+
"@instructure/ui-spinner": "^10.0.0",
|
|
28
|
+
"@instructure/ui-text": "^10.0.0",
|
|
29
|
+
"@instructure/ui-text-area": "^10.0.0",
|
|
30
|
+
"@instructure/ui-truncate-text": "^10.0.0",
|
|
31
|
+
"@instructure/ui-tooltip": "^10.0.0",
|
|
32
|
+
"@instructure/ui-view": "^10.0.0",
|
|
19
33
|
"@tanstack/react-query": "^5.0.0",
|
|
20
34
|
"react": "^18.0.0",
|
|
21
35
|
"react-dom": "^18.0.0"
|
|
22
36
|
},
|
|
23
37
|
"dependencies": {
|
|
38
|
+
"dompurify": "^3.0.0",
|
|
24
39
|
"graphql": "^16.0.0",
|
|
25
40
|
"graphql-tag": "^2.12.0",
|
|
26
41
|
"i18next": "^25.0.0",
|