@pie-lib/rubric 0.4.37 → 0.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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
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
+ # [0.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/rubric@0.4.39...@pie-lib/rubric@0.5.0) (2022-09-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * **rubric:** create new object for rubric types ([3ef5861](https://github.com/pie-framework/pie-lib/commit/3ef5861e5bffc436ae29ffc79663ebd70fb296b3))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.4.39](https://github.com/pie-framework/pie-lib/compare/@pie-lib/rubric@0.4.38...@pie-lib/rubric@0.4.39) (2022-08-30)
18
+
19
+ **Note:** Version bump only for package @pie-lib/rubric
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.4.38](https://github.com/pie-framework/pie-lib/compare/@pie-lib/rubric@0.4.37...@pie-lib/rubric@0.4.38) (2022-08-29)
26
+
27
+ **Note:** Version bump only for package @pie-lib/rubric
28
+
29
+
30
+
31
+
32
+
6
33
  ## [0.4.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/rubric@0.4.36...@pie-lib/rubric@0.4.37) (2022-08-29)
7
34
 
8
35
  **Note:** Version bump only for package @pie-lib/rubric
package/lib/index.js CHANGED
@@ -11,6 +11,13 @@ Object.defineProperty(exports, "Authoring", {
11
11
  return _authoring["default"];
12
12
  }
13
13
  });
14
+ exports.RUBRIC_TYPES = void 0;
14
15
 
15
16
  var _authoring = _interopRequireDefault(require("./authoring"));
17
+
18
+ var RUBRIC_TYPES = {
19
+ SIMPLE_RUBRIC: 'simpleRubric',
20
+ MULTI_TRAIT_RUBRIC: 'multiTraitRubric'
21
+ };
22
+ exports.RUBRIC_TYPES = RUBRIC_TYPES;
16
23
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA","sourcesContent":["import Authoring from './authoring';\nexport { Authoring };\n"],"file":"index.js"}
1
+ {"version":3,"sources":["../src/index.js"],"names":["RUBRIC_TYPES","SIMPLE_RUBRIC","MULTI_TRAIT_RUBRIC"],"mappings":";;;;;;;;;;;;;;;AAAA;;AAEA,IAAMA,YAAY,GAAG;AACnBC,EAAAA,aAAa,EAAE,cADI;AAEnBC,EAAAA,kBAAkB,EAAE;AAFD,CAArB","sourcesContent":["import Authoring from './authoring';\n\nconst RUBRIC_TYPES = {\n SIMPLE_RUBRIC: 'simpleRubric',\n MULTI_TRAIT_RUBRIC: 'multiTraitRubric'\n};\n\nexport { Authoring, RUBRIC_TYPES };\n"],"file":"index.js"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pie-lib/rubric",
3
- "version": "0.4.37",
3
+ "version": "0.5.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "@material-ui/core": "^3.9.3",
11
11
  "@material-ui/icons": "^3.0.2",
12
- "@pie-lib/editable-html": "^9.1.3",
12
+ "@pie-lib/editable-html": "^9.1.5",
13
13
  "debug": "^4.1.1",
14
14
  "editable-html": "npm:@pie-lib/editable-html@^7.21.0",
15
15
  "lodash": "^4.17.11",
@@ -18,5 +18,5 @@
18
18
  "react-beautiful-dnd": "^11.0.2",
19
19
  "react-dom": "^16.9.0"
20
20
  },
21
- "gitHead": "8d1a2fb82ba23cb20ba1cfca61d76153731b9001"
21
+ "gitHead": "23a4e94c44536f8c0c74e7292a3991db587da760"
22
22
  }
package/src/index.js CHANGED
@@ -1,2 +1,8 @@
1
1
  import Authoring from './authoring';
2
- export { Authoring };
2
+
3
+ const RUBRIC_TYPES = {
4
+ SIMPLE_RUBRIC: 'simpleRubric',
5
+ MULTI_TRAIT_RUBRIC: 'multiTraitRubric'
6
+ };
7
+
8
+ export { Authoring, RUBRIC_TYPES };