@instructure/platform-notebook 0.6.0 → 0.9.1
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/NoteCard.d.ts +1 -6
- package/dist/NoteCard.d.ts.map +1 -1
- package/dist/NoteChip.d.ts.map +1 -1
- package/dist/NotebookEmptyState.d.ts +5 -0
- package/dist/NotebookEmptyState.d.ts.map +1 -0
- package/dist/NotesListView.d.ts +1 -3
- package/dist/NotesListView.d.ts.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +648 -668
- package/locales/en.json +1 -1
- package/package.json +6 -3
package/locales/en.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"note": "note",
|
|
13
13
|
"addNotePrompt": "Add note (optional)",
|
|
14
14
|
"removeFromNotebook": "Remove from Notebook",
|
|
15
|
-
"addNoteOptional": "Add a note (optional)
|
|
15
|
+
"addNoteOptional": "Add a note (optional)",
|
|
16
16
|
"markImportant": "Mark important",
|
|
17
17
|
"markUnclear": "Mark unclear",
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/platform-notebook",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"locales"
|
|
18
18
|
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
19
22
|
"peerDependencies": {
|
|
20
23
|
"@instructure/ui-a11y-content": "^11.0.0",
|
|
21
24
|
"@instructure/ui-buttons": "^11.0.0",
|
|
@@ -60,8 +63,8 @@
|
|
|
60
63
|
"test": "vitest run",
|
|
61
64
|
"test:watch": "vitest",
|
|
62
65
|
"test:coverage": "vitest run --coverage",
|
|
63
|
-
"lint": "
|
|
64
|
-
"lint:fix": "biome
|
|
66
|
+
"lint": "oxlint -c ../../oxlint.json && ast-grep scan . --report-style=short",
|
|
67
|
+
"lint:fix": "oxlint -c ../../oxlint.json --fix && biome format --write .",
|
|
65
68
|
"type-check": "tsc -p tsconfig.check.json",
|
|
66
69
|
"pack:tarball": "pnpm build && pnpm pack"
|
|
67
70
|
}
|