@citolab/qti-components 7.4.4 → 7.5.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/index.js +6 -6
- package/package.json +8 -4
package/dist/index.js
CHANGED
|
@@ -96,6 +96,12 @@ import {
|
|
|
96
96
|
qtiAndMixin,
|
|
97
97
|
qtiSubtractMixin
|
|
98
98
|
} from "./chunks/chunk-7RW7LCEJ.js";
|
|
99
|
+
import {
|
|
100
|
+
ItemContainer,
|
|
101
|
+
ItemShowCorrectResponse,
|
|
102
|
+
PrintItemVariables,
|
|
103
|
+
QtiItem
|
|
104
|
+
} from "./chunks/chunk-4BDOB6KY.js";
|
|
99
105
|
import {
|
|
100
106
|
QtiAssessmentItemRef,
|
|
101
107
|
QtiAssessmentSection,
|
|
@@ -125,12 +131,6 @@ import {
|
|
|
125
131
|
import {
|
|
126
132
|
QtiModalFeedback
|
|
127
133
|
} from "./chunks/chunk-K47QFOQX.js";
|
|
128
|
-
import {
|
|
129
|
-
ItemContainer,
|
|
130
|
-
ItemShowCorrectResponse,
|
|
131
|
-
PrintItemVariables,
|
|
132
|
-
QtiItem
|
|
133
|
-
} from "./chunks/chunk-4BDOB6KY.js";
|
|
134
134
|
import "./chunks/chunk-LSEB52SP.js";
|
|
135
135
|
import "./chunks/chunk-ELDMXTUQ.js";
|
|
136
136
|
import "./chunks/chunk-WFUXZ4UT.js";
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20.0.0"
|
|
23
23
|
},
|
|
24
|
-
"version": "7.
|
|
24
|
+
"version": "7.5.0",
|
|
25
25
|
"type": "module",
|
|
26
26
|
"main": "./dist/index.js",
|
|
27
27
|
"types": "./dist/index.d.ts",
|
|
@@ -40,6 +40,9 @@
|
|
|
40
40
|
"types": "./dist/index.d.ts",
|
|
41
41
|
"import": "./dist/index.js"
|
|
42
42
|
},
|
|
43
|
+
"./exports/*": {
|
|
44
|
+
"import": "./dist/exports/*"
|
|
45
|
+
},
|
|
43
46
|
"./qti-components": {
|
|
44
47
|
"types": "./dist/qti-components/index.d.ts",
|
|
45
48
|
"import": "./dist/qti-components/index.js"
|
|
@@ -77,7 +80,6 @@
|
|
|
77
80
|
"-----------------------cmds--": "-",
|
|
78
81
|
"pre-commit": "run-s lint stylelint madge",
|
|
79
82
|
"pre-push": "run-s clean ci build test lint stylelint publint attw",
|
|
80
|
-
"pkgr-release": "run-s tsup css cem test",
|
|
81
83
|
"build-storybook": "npm run cem && storybook build",
|
|
82
84
|
"-----------------------scripts--": "-",
|
|
83
85
|
"build": "run-p cem css tsup",
|
|
@@ -90,7 +92,8 @@
|
|
|
90
92
|
"tsup": "tsup",
|
|
91
93
|
"publint": "publint",
|
|
92
94
|
"lint": "eslint src/**/*.ts",
|
|
93
|
-
"act": "act --container-architecture linux/arm64 -W .github/workflows/
|
|
95
|
+
"act ci": "act --container-architecture linux/arm64 -W .github/workflows/ci.yml",
|
|
96
|
+
"act release": "act --container-architecture linux/arm64 -W .github/workflows/release.yml",
|
|
94
97
|
"stylelint": "stylelint \"src/**/*.css\"",
|
|
95
98
|
"test": "vitest run",
|
|
96
99
|
"attw": "attw --profile esm-only --pack --exclude-entrypoints ./item.css ./react",
|
|
@@ -151,6 +154,7 @@
|
|
|
151
154
|
"globby": "^14.1.0",
|
|
152
155
|
"husky": "^9.1.7",
|
|
153
156
|
"lit": "^3.3.0",
|
|
157
|
+
"madge": "^8.0.0",
|
|
154
158
|
"nodemon": "^3.1.10",
|
|
155
159
|
"np": "^10.2.0",
|
|
156
160
|
"npm-run-all": "^4.1.5",
|
|
@@ -191,4 +195,4 @@
|
|
|
191
195
|
"overrides": {
|
|
192
196
|
"storybook": "$storybook"
|
|
193
197
|
}
|
|
194
|
-
}
|
|
198
|
+
}
|