commons-assessment 12.0.40 → 12.1.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/README.md +11 -1
- package/bundles/commons-assessment.umd.js +86 -109
- package/bundles/commons-assessment.umd.js.map +1 -1
- package/esm2015/lib/modules/assessment-maker/components/add-edit-section-introduction/add-edit-section-introduction.component.js +1 -1
- package/esm2015/lib/modules/assessment-maker/components/assessment-builder/assessment-builder.component.js +1 -1
- package/esm2015/lib/modules/assessment-taker/components/question-type-editor/question-type-editor.component.js +1 -1
- package/esm2015/lib/shared/components/text-editor/text-editor.component.js +68 -92
- package/esm2015/lib/shared/shared.module.js +4 -8
- package/fesm2015/commons-assessment.js +75 -102
- package/fesm2015/commons-assessment.js.map +1 -1
- package/lib/shared/components/text-editor/text-editor.component.d.ts +13 -15
- package/lib/shared/shared.module.d.ts +1 -2
- package/package.json +2 -2
- package/src/lib/assets/theme/styles.global.scss +36 -34
package/README.md
CHANGED
|
@@ -8,7 +8,17 @@ This library provides a comprehensive set of tools and components to create and
|
|
|
8
8
|
|
|
9
9
|
## Dependencies
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### Required Peer Dependencies
|
|
12
|
+
|
|
13
|
+
Ensure the following packages are installed in your consumer application (as defined in `package.json`):
|
|
14
|
+
- **Angular Core & Common**: `>=12.0.0`
|
|
15
|
+
- **Angular Material & CDK** (for UI components and drag-and-drop): `>=12.0.0`
|
|
16
|
+
- **Bootstrap** (for baseline grid and component styling): `>=5.0.0`
|
|
17
|
+
- **Quill** (for rich text subjective questions): `>=2.0.0`
|
|
18
|
+
|
|
19
|
+
### Required Angular Imports
|
|
20
|
+
|
|
21
|
+
Import the following modules in your application:
|
|
12
22
|
- `BrowserAnimationsModule`
|
|
13
23
|
- `HttpClientModule`
|
|
14
24
|
- `CommonsAssessmentModule`
|