fcad-core-dragon 2.0.3 → 2.1.0-beta.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 (54) hide show
  1. package/.editorconfig +33 -33
  2. package/.eslintignore +29 -29
  3. package/.eslintrc.cjs +81 -81
  4. package/CHANGELOG +27 -0
  5. package/bk.scss +117 -117
  6. package/package.json +1 -1
  7. package/src/assets/data/onboardingMessages.json +47 -47
  8. package/src/components/AppBaseErrorDisplay.vue +438 -438
  9. package/src/components/AppBaseFlipCard.vue +84 -84
  10. package/src/components/AppBasePopover.vue +41 -41
  11. package/src/components/AppCompInputCheckBoxNx.vue +1 -1
  12. package/src/components/AppCompInputDropdownNx.vue +4 -0
  13. package/src/components/AppCompInputRadioNx.vue +15 -1
  14. package/src/components/AppCompInputTextNx.vue +5 -0
  15. package/src/components/AppCompInputTextTableNx.vue +4 -0
  16. package/src/components/AppCompInputTextToFillDropdownNx.vue +4 -0
  17. package/src/components/AppCompInputTextToFillNx.vue +37 -1
  18. package/src/components/AppCompPlayBarProgress.vue +82 -82
  19. package/src/components/AppCompQuizNext.vue +1 -1
  20. package/src/components/AppCompSettingsMenu.vue +172 -172
  21. package/src/components/AppCompViewDisplay.vue +6 -6
  22. package/src/externalComps/ModuleView.vue +22 -22
  23. package/src/externalComps/SummaryView.vue +91 -91
  24. package/src/module/xapi/Crypto/Hasher.js +241 -241
  25. package/src/module/xapi/Crypto/WordArray.js +278 -278
  26. package/src/module/xapi/Crypto/algorithms/BufferedBlockAlgorithm.js +103 -103
  27. package/src/module/xapi/Crypto/algorithms/C_algo.js +315 -315
  28. package/src/module/xapi/Crypto/algorithms/HMAC.js +9 -9
  29. package/src/module/xapi/Crypto/algorithms/SHA1.js +9 -9
  30. package/src/module/xapi/Crypto/encoders/Base.js +105 -105
  31. package/src/module/xapi/Crypto/encoders/Base64.js +99 -99
  32. package/src/module/xapi/Crypto/encoders/Hex.js +61 -61
  33. package/src/module/xapi/Crypto/encoders/Latin1.js +61 -61
  34. package/src/module/xapi/Crypto/encoders/Utf8.js +45 -45
  35. package/src/module/xapi/Crypto/index.js +53 -53
  36. package/src/module/xapi/Statement/activity.js +47 -47
  37. package/src/module/xapi/Statement/agent.js +55 -55
  38. package/src/module/xapi/Statement/group.js +26 -26
  39. package/src/module/xapi/Statement/index.js +259 -259
  40. package/src/module/xapi/Statement/statement.js +253 -253
  41. package/src/module/xapi/Statement/statementRef.js +23 -23
  42. package/src/module/xapi/Statement/substatement.js +22 -22
  43. package/src/module/xapi/Statement/verb.js +36 -36
  44. package/src/module/xapi/activitytypes.js +17 -17
  45. package/src/module/xapi/utils.js +167 -167
  46. package/src/module/xapi/verbs.js +294 -294
  47. package/src/module/xapi/xapiStatement.js +444 -444
  48. package/src/plugins/bus.js +8 -8
  49. package/src/plugins/gsap.js +14 -14
  50. package/src/plugins/i18n.js +44 -44
  51. package/src/plugins/save.js +37 -37
  52. package/src/plugins/scorm.js +287 -287
  53. package/src/plugins/xapi.js +11 -11
  54. package/src/public/index.html +33 -33
@@ -1,103 +1,103 @@
1
- import { WordArray } from '../WordArray'
2
- import { Utf8 } from '../encoders/Utf8'
3
- import { Base } from '../encoders/Base'
4
- /**
5
- * Abstract buffered block algorithm template.
6
- * The property blockSize must be implemented in a concrete subtype.
7
- * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0
8
- */
9
- export const BufferedBlockAlgorithm = Base.extend({
10
- /**
11
- * Resets this block algorithm's data buffer to its initial state.
12
- * @example
13
- * bufferedBlockAlgorithm.reset();
14
- */
15
- reset: function () {
16
- // Initial values
17
- this._data = new WordArray.init()
18
- this._nDataBytes = 0
19
- },
20
-
21
- /**
22
- * Adds new data to this block algorithm's buffer.
23
- * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8.
24
- * @example
25
- * bufferedBlockAlgorithm._append('data');
26
- * bufferedBlockAlgorithm._append(wordArray);
27
- */
28
- _append: function (data) {
29
- // Convert string to WordArray, else assume WordArray already
30
- if (typeof data == 'string') {
31
- data = Utf8.parse(data)
32
- }
33
-
34
- // Append
35
- this._data.concat(data)
36
- this._nDataBytes += data.sigBytes
37
- },
38
-
39
- /**
40
- * Processes available data blocks.
41
- * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.
42
- * @param {boolean} doFlush Whether all blocks and partial blocks should be processed.
43
- * @return {WordArray} The processed data.
44
- * @example
45
- *
46
- * var processedData = bufferedBlockAlgorithm._process();
47
- * var processedData = bufferedBlockAlgorithm._process(!!'flush');
48
- */
49
- _process: function (doFlush) {
50
- // Shortcuts
51
- var data = this._data
52
- var dataWords = data.words
53
- var dataSigBytes = data.sigBytes
54
- var blockSize = this.blockSize
55
- var blockSizeBytes = blockSize * 4
56
-
57
- // Count blocks ready
58
- var nBlocksReady = dataSigBytes / blockSizeBytes
59
- if (doFlush) {
60
- // Round up to include partial blocks
61
- nBlocksReady = Math.ceil(nBlocksReady)
62
- } else {
63
- // Round down to include only full blocks,
64
- // less the number of blocks that must remain in the buffer
65
- nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0)
66
- }
67
-
68
- // Count words ready
69
- var nWordsReady = nBlocksReady * blockSize
70
-
71
- // Count bytes ready
72
- var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes)
73
-
74
- // Process blocks
75
- if (nWordsReady) {
76
- for (var offset = 0; offset < nWordsReady; offset += blockSize) {
77
- // Perform concrete-algorithm logic
78
- this._doProcessBlock(dataWords, offset)
79
- }
80
-
81
- // Remove processed words
82
- var processedWords = dataWords.splice(0, nWordsReady)
83
- data.sigBytes -= nBytesReady
84
- }
85
-
86
- // Return processed words
87
- return new WordArray.init(processedWords, nBytesReady)
88
- },
89
-
90
- /**
91
- * Creates a copy of this object.
92
- * @return {Object} The clone.
93
- * @example
94
- * var clone = bufferedBlockAlgorithm.clone();
95
- */
96
- clone: function () {
97
- var clone = Base.clone.call(this)
98
- clone._data = this._data.clone()
99
- return clone
100
- },
101
-
102
- _minBufferSize: 0
103
- })
1
+ import { WordArray } from '../WordArray'
2
+ import { Utf8 } from '../encoders/Utf8'
3
+ import { Base } from '../encoders/Base'
4
+ /**
5
+ * Abstract buffered block algorithm template.
6
+ * The property blockSize must be implemented in a concrete subtype.
7
+ * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0
8
+ */
9
+ export const BufferedBlockAlgorithm = Base.extend({
10
+ /**
11
+ * Resets this block algorithm's data buffer to its initial state.
12
+ * @example
13
+ * bufferedBlockAlgorithm.reset();
14
+ */
15
+ reset: function () {
16
+ // Initial values
17
+ this._data = new WordArray.init()
18
+ this._nDataBytes = 0
19
+ },
20
+
21
+ /**
22
+ * Adds new data to this block algorithm's buffer.
23
+ * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8.
24
+ * @example
25
+ * bufferedBlockAlgorithm._append('data');
26
+ * bufferedBlockAlgorithm._append(wordArray);
27
+ */
28
+ _append: function (data) {
29
+ // Convert string to WordArray, else assume WordArray already
30
+ if (typeof data == 'string') {
31
+ data = Utf8.parse(data)
32
+ }
33
+
34
+ // Append
35
+ this._data.concat(data)
36
+ this._nDataBytes += data.sigBytes
37
+ },
38
+
39
+ /**
40
+ * Processes available data blocks.
41
+ * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.
42
+ * @param {boolean} doFlush Whether all blocks and partial blocks should be processed.
43
+ * @return {WordArray} The processed data.
44
+ * @example
45
+ *
46
+ * var processedData = bufferedBlockAlgorithm._process();
47
+ * var processedData = bufferedBlockAlgorithm._process(!!'flush');
48
+ */
49
+ _process: function (doFlush) {
50
+ // Shortcuts
51
+ var data = this._data
52
+ var dataWords = data.words
53
+ var dataSigBytes = data.sigBytes
54
+ var blockSize = this.blockSize
55
+ var blockSizeBytes = blockSize * 4
56
+
57
+ // Count blocks ready
58
+ var nBlocksReady = dataSigBytes / blockSizeBytes
59
+ if (doFlush) {
60
+ // Round up to include partial blocks
61
+ nBlocksReady = Math.ceil(nBlocksReady)
62
+ } else {
63
+ // Round down to include only full blocks,
64
+ // less the number of blocks that must remain in the buffer
65
+ nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0)
66
+ }
67
+
68
+ // Count words ready
69
+ var nWordsReady = nBlocksReady * blockSize
70
+
71
+ // Count bytes ready
72
+ var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes)
73
+
74
+ // Process blocks
75
+ if (nWordsReady) {
76
+ for (var offset = 0; offset < nWordsReady; offset += blockSize) {
77
+ // Perform concrete-algorithm logic
78
+ this._doProcessBlock(dataWords, offset)
79
+ }
80
+
81
+ // Remove processed words
82
+ var processedWords = dataWords.splice(0, nWordsReady)
83
+ data.sigBytes -= nBytesReady
84
+ }
85
+
86
+ // Return processed words
87
+ return new WordArray.init(processedWords, nBytesReady)
88
+ },
89
+
90
+ /**
91
+ * Creates a copy of this object.
92
+ * @return {Object} The clone.
93
+ * @example
94
+ * var clone = bufferedBlockAlgorithm.clone();
95
+ */
96
+ clone: function () {
97
+ var clone = Base.clone.call(this)
98
+ clone._data = this._data.clone()
99
+ return clone
100
+ },
101
+
102
+ _minBufferSize: 0
103
+ })