@pie-element/multiple-choice 12.1.2-next.1 → 12.1.2-next.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +14 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [12.1.2-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@12.1.2-next.1...@pie-element/multiple-choice@12.1.2-next.2) (2026-03-03)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **ebsr/complex-rubric:** update package exports to include import and default fields for multiple-choice and rubric packages ([e96603c](https://github.com/pie-framework/pie-elements/commit/e96603c9f21271bf7ef394d3feda37b3a44996c6))
11
+
6
12
  ## [12.1.2-next.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@12.1.0-next.2...@pie-element/multiple-choice@12.1.2-next.1) (2026-02-26)
7
13
 
8
14
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pie-element/multiple-choice",
3
3
  "repository": "pie-framework/pie-elements",
4
- "version": "12.1.2-next.1",
4
+ "version": "12.1.2-next.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -23,14 +23,24 @@
23
23
  "react-dom": "18.3.1",
24
24
  "react-transition-group": "^4.4.5"
25
25
  },
26
- "gitHead": "9cc4a1cd183a260a03c7d817e0085517112a1a56",
26
+ "gitHead": "dec64abbc528e9aa8dff3bed3c55133c3318b96d",
27
27
  "scripts": {
28
28
  "postpublish": "../../scripts/postpublish"
29
29
  },
30
30
  "main": "lib/index.js",
31
31
  "module": "src/index.js",
32
32
  "exports": {
33
- ".": "./src/index.js",
34
- "./print": "./src/print.js"
33
+ ".": {
34
+ "import": "./src/index.js",
35
+ "default": "./lib/index.js"
36
+ },
37
+ "./print": {
38
+ "import": "./src/print.js",
39
+ "default": "./lib/print.js"
40
+ },
41
+ "./configure/lib": {
42
+ "require": "./configure/lib/index.js",
43
+ "default": "./configure/lib/index.js"
44
+ }
35
45
  }
36
46
  }