@pie-element/math-templated 2.14.3-next.13 → 2.14.3-next.15
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/configure/package.json +1 -1
- package/controller/package.json +1 -1
- package/module/configure.js +22 -2
- package/module/element.js +22 -2
- package/module/print.js +22 -2
- package/package.json +3 -3
package/configure/package.json
CHANGED
package/controller/package.json
CHANGED
package/module/configure.js
CHANGED
|
@@ -42319,7 +42319,7 @@ var _interopRequireDefault$r = interopRequireDefault.exports;
|
|
|
42319
42319
|
Object.defineProperty(color, "__esModule", {
|
|
42320
42320
|
value: true
|
|
42321
42321
|
});
|
|
42322
|
-
color.v = color.text = color.secondaryText = color.secondaryLight = color.secondaryDark = color.secondaryBackground = color.secondary = color.primaryText = color.primaryLight = color.primaryDark = color.primary = color.missing = color.incorrectSecondary = color.incorrect = color.disabledSecondary = color.disabled = color.defaults = color.correctSecondary = color.correct = color.black = color.background = void 0;
|
|
42322
|
+
color.white = color.v = color.text = color.secondaryText = color.secondaryLight = color.secondaryDark = color.secondaryBackground = color.secondary = color.primaryText = color.primaryLight = color.primaryDark = color.primary = color.missingWithIcon = color.missing = color.incorrectWithIcon = color.incorrectSecondary = color.incorrect = color.disabledSecondary = color.disabled = color.defaults = color.correctWithIcon = color.correctSecondary = color.correct = color.black = color.background = void 0;
|
|
42323
42323
|
var _green = _interopRequireDefault$r(green$1);
|
|
42324
42324
|
var _orange = _interopRequireDefault$r(orange$1);
|
|
42325
42325
|
var _pink = _interopRequireDefault$r(pink$1);
|
|
@@ -42331,9 +42331,12 @@ var defaults$1 = {
|
|
|
42331
42331
|
DISABLED_SECONDARY: '#ABABAB',
|
|
42332
42332
|
CORRECT: _green["default"][500],
|
|
42333
42333
|
CORRECT_SECONDARY: _green["default"][50],
|
|
42334
|
+
CORRECT_WITH_ICON: '#087D38',
|
|
42334
42335
|
INCORRECT: _orange["default"][500],
|
|
42335
42336
|
INCORRECT_SECONDARY: _red["default"][50],
|
|
42337
|
+
INCORRECT_WITH_ICON: '#BF0D00',
|
|
42336
42338
|
MISSING: _red["default"][700],
|
|
42339
|
+
MISSING_WITH_ICON: '#6A78A1',
|
|
42337
42340
|
PRIMARY: _indigo["default"][500],
|
|
42338
42341
|
PRIMARY_LIGHT: _indigo["default"][200],
|
|
42339
42342
|
PRIMARY_DARK: _indigo["default"][800],
|
|
@@ -42342,7 +42345,8 @@ var defaults$1 = {
|
|
|
42342
42345
|
SECONDARY_DARK: _pink["default"][900],
|
|
42343
42346
|
BACKGROUND: 'rgba(255,255,255,0)',
|
|
42344
42347
|
SECONDARY_BACKGROUND: 'rgba(241,241,241,1)',
|
|
42345
|
-
BLACK: '#000000'
|
|
42348
|
+
BLACK: '#000000',
|
|
42349
|
+
WHITE: '#ffffff'
|
|
42346
42350
|
};
|
|
42347
42351
|
color.defaults = defaults$1;
|
|
42348
42352
|
Object.freeze(defaults$1);
|
|
@@ -42379,10 +42383,18 @@ var correctSecondary = function correctSecondary() {
|
|
|
42379
42383
|
return pv('correct-secondary', defaults$1.CORRECT_SECONDARY);
|
|
42380
42384
|
};
|
|
42381
42385
|
color.correctSecondary = correctSecondary;
|
|
42386
|
+
var correctWithIcon = function correctWithIcon() {
|
|
42387
|
+
return pv('correct-icon', defaults$1.CORRECT_WITH_ICON);
|
|
42388
|
+
};
|
|
42389
|
+
color.correctWithIcon = correctWithIcon;
|
|
42382
42390
|
var incorrect = function incorrect() {
|
|
42383
42391
|
return pv('incorrect', defaults$1.INCORRECT);
|
|
42384
42392
|
};
|
|
42385
42393
|
color.incorrect = incorrect;
|
|
42394
|
+
var incorrectWithIcon = function incorrectWithIcon() {
|
|
42395
|
+
return pv('incorrect-icon', defaults$1.INCORRECT_WITH_ICON);
|
|
42396
|
+
};
|
|
42397
|
+
color.incorrectWithIcon = incorrectWithIcon;
|
|
42386
42398
|
var incorrectSecondary = function incorrectSecondary() {
|
|
42387
42399
|
return pv('incorrect-secondary', defaults$1.INCORRECT_SECONDARY);
|
|
42388
42400
|
};
|
|
@@ -42391,6 +42403,10 @@ var missing = function missing() {
|
|
|
42391
42403
|
return pv('missing', defaults$1.MISSING);
|
|
42392
42404
|
};
|
|
42393
42405
|
color.missing = missing;
|
|
42406
|
+
var missingWithIcon = function missingWithIcon() {
|
|
42407
|
+
return pv('missing-icon', defaults$1.MISSING_WITH_ICON);
|
|
42408
|
+
};
|
|
42409
|
+
color.missingWithIcon = missingWithIcon;
|
|
42394
42410
|
var primary = function primary() {
|
|
42395
42411
|
return pv('primary', defaults$1.PRIMARY);
|
|
42396
42412
|
};
|
|
@@ -42435,6 +42451,10 @@ var black = function black() {
|
|
|
42435
42451
|
return pv('black', defaults$1.BLACK);
|
|
42436
42452
|
};
|
|
42437
42453
|
color.black = black;
|
|
42454
|
+
var white = function white() {
|
|
42455
|
+
return pv('white', defaults$1.WHITE);
|
|
42456
|
+
};
|
|
42457
|
+
color.white = white;
|
|
42438
42458
|
const require$$9$8 = _dll_react;
|
|
42439
42459
|
const require$$11$7 = _dll_classnames;
|
|
42440
42460
|
const require$$12$5 = _dll_prop_types;
|
package/module/element.js
CHANGED
|
@@ -118995,7 +118995,7 @@ var _interopRequireDefault$B = interopRequireDefault.exports;
|
|
|
118995
118995
|
Object.defineProperty(color$1, "__esModule", {
|
|
118996
118996
|
value: true
|
|
118997
118997
|
});
|
|
118998
|
-
color$1.v = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missing = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctSecondary = color$1.correct = color$1.black = color$1.background = void 0;
|
|
118998
|
+
color$1.white = color$1.v = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missingWithIcon = color$1.missing = color$1.incorrectWithIcon = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctWithIcon = color$1.correctSecondary = color$1.correct = color$1.black = color$1.background = void 0;
|
|
118999
118999
|
var _green = _interopRequireDefault$B(green$1);
|
|
119000
119000
|
var _orange = _interopRequireDefault$B(orange$1);
|
|
119001
119001
|
var _pink = _interopRequireDefault$B(pink$1);
|
|
@@ -119007,9 +119007,12 @@ var defaults = {
|
|
|
119007
119007
|
DISABLED_SECONDARY: '#ABABAB',
|
|
119008
119008
|
CORRECT: _green["default"][500],
|
|
119009
119009
|
CORRECT_SECONDARY: _green["default"][50],
|
|
119010
|
+
CORRECT_WITH_ICON: '#087D38',
|
|
119010
119011
|
INCORRECT: _orange["default"][500],
|
|
119011
119012
|
INCORRECT_SECONDARY: _red["default"][50],
|
|
119013
|
+
INCORRECT_WITH_ICON: '#BF0D00',
|
|
119012
119014
|
MISSING: _red["default"][700],
|
|
119015
|
+
MISSING_WITH_ICON: '#6A78A1',
|
|
119013
119016
|
PRIMARY: _indigo["default"][500],
|
|
119014
119017
|
PRIMARY_LIGHT: _indigo["default"][200],
|
|
119015
119018
|
PRIMARY_DARK: _indigo["default"][800],
|
|
@@ -119018,7 +119021,8 @@ var defaults = {
|
|
|
119018
119021
|
SECONDARY_DARK: _pink["default"][900],
|
|
119019
119022
|
BACKGROUND: 'rgba(255,255,255,0)',
|
|
119020
119023
|
SECONDARY_BACKGROUND: 'rgba(241,241,241,1)',
|
|
119021
|
-
BLACK: '#000000'
|
|
119024
|
+
BLACK: '#000000',
|
|
119025
|
+
WHITE: '#ffffff'
|
|
119022
119026
|
};
|
|
119023
119027
|
color$1.defaults = defaults;
|
|
119024
119028
|
Object.freeze(defaults);
|
|
@@ -119055,10 +119059,18 @@ var correctSecondary = function correctSecondary() {
|
|
|
119055
119059
|
return pv('correct-secondary', defaults.CORRECT_SECONDARY);
|
|
119056
119060
|
};
|
|
119057
119061
|
color$1.correctSecondary = correctSecondary;
|
|
119062
|
+
var correctWithIcon = function correctWithIcon() {
|
|
119063
|
+
return pv('correct-icon', defaults.CORRECT_WITH_ICON);
|
|
119064
|
+
};
|
|
119065
|
+
color$1.correctWithIcon = correctWithIcon;
|
|
119058
119066
|
var incorrect = function incorrect() {
|
|
119059
119067
|
return pv('incorrect', defaults.INCORRECT);
|
|
119060
119068
|
};
|
|
119061
119069
|
color$1.incorrect = incorrect;
|
|
119070
|
+
var incorrectWithIcon = function incorrectWithIcon() {
|
|
119071
|
+
return pv('incorrect-icon', defaults.INCORRECT_WITH_ICON);
|
|
119072
|
+
};
|
|
119073
|
+
color$1.incorrectWithIcon = incorrectWithIcon;
|
|
119062
119074
|
var incorrectSecondary = function incorrectSecondary() {
|
|
119063
119075
|
return pv('incorrect-secondary', defaults.INCORRECT_SECONDARY);
|
|
119064
119076
|
};
|
|
@@ -119067,6 +119079,10 @@ var missing = function missing() {
|
|
|
119067
119079
|
return pv('missing', defaults.MISSING);
|
|
119068
119080
|
};
|
|
119069
119081
|
color$1.missing = missing;
|
|
119082
|
+
var missingWithIcon = function missingWithIcon() {
|
|
119083
|
+
return pv('missing-icon', defaults.MISSING_WITH_ICON);
|
|
119084
|
+
};
|
|
119085
|
+
color$1.missingWithIcon = missingWithIcon;
|
|
119070
119086
|
var primary = function primary() {
|
|
119071
119087
|
return pv('primary', defaults.PRIMARY);
|
|
119072
119088
|
};
|
|
@@ -119111,6 +119127,10 @@ var black = function black() {
|
|
|
119111
119127
|
return pv('black', defaults.BLACK);
|
|
119112
119128
|
};
|
|
119113
119129
|
color$1.black = black;
|
|
119130
|
+
var white = function white() {
|
|
119131
|
+
return pv('white', defaults.WHITE);
|
|
119132
|
+
};
|
|
119133
|
+
color$1.white = white;
|
|
119114
119134
|
const require$$9$g = _dll_react;
|
|
119115
119135
|
const require$$11$7 = _dll_classnames;
|
|
119116
119136
|
const require$$12$7 = _dll_prop_types;
|
package/module/print.js
CHANGED
|
@@ -118958,7 +118958,7 @@ var _interopRequireDefault$B = interopRequireDefault.exports;
|
|
|
118958
118958
|
Object.defineProperty(color$1, "__esModule", {
|
|
118959
118959
|
value: true
|
|
118960
118960
|
});
|
|
118961
|
-
color$1.v = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missing = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctSecondary = color$1.correct = color$1.black = color$1.background = void 0;
|
|
118961
|
+
color$1.white = color$1.v = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missingWithIcon = color$1.missing = color$1.incorrectWithIcon = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctWithIcon = color$1.correctSecondary = color$1.correct = color$1.black = color$1.background = void 0;
|
|
118962
118962
|
var _green = _interopRequireDefault$B(green$1);
|
|
118963
118963
|
var _orange = _interopRequireDefault$B(orange$1);
|
|
118964
118964
|
var _pink = _interopRequireDefault$B(pink$1);
|
|
@@ -118970,9 +118970,12 @@ var defaults = {
|
|
|
118970
118970
|
DISABLED_SECONDARY: '#ABABAB',
|
|
118971
118971
|
CORRECT: _green["default"][500],
|
|
118972
118972
|
CORRECT_SECONDARY: _green["default"][50],
|
|
118973
|
+
CORRECT_WITH_ICON: '#087D38',
|
|
118973
118974
|
INCORRECT: _orange["default"][500],
|
|
118974
118975
|
INCORRECT_SECONDARY: _red["default"][50],
|
|
118976
|
+
INCORRECT_WITH_ICON: '#BF0D00',
|
|
118975
118977
|
MISSING: _red["default"][700],
|
|
118978
|
+
MISSING_WITH_ICON: '#6A78A1',
|
|
118976
118979
|
PRIMARY: _indigo["default"][500],
|
|
118977
118980
|
PRIMARY_LIGHT: _indigo["default"][200],
|
|
118978
118981
|
PRIMARY_DARK: _indigo["default"][800],
|
|
@@ -118981,7 +118984,8 @@ var defaults = {
|
|
|
118981
118984
|
SECONDARY_DARK: _pink["default"][900],
|
|
118982
118985
|
BACKGROUND: 'rgba(255,255,255,0)',
|
|
118983
118986
|
SECONDARY_BACKGROUND: 'rgba(241,241,241,1)',
|
|
118984
|
-
BLACK: '#000000'
|
|
118987
|
+
BLACK: '#000000',
|
|
118988
|
+
WHITE: '#ffffff'
|
|
118985
118989
|
};
|
|
118986
118990
|
color$1.defaults = defaults;
|
|
118987
118991
|
Object.freeze(defaults);
|
|
@@ -119018,10 +119022,18 @@ var correctSecondary = function correctSecondary() {
|
|
|
119018
119022
|
return pv('correct-secondary', defaults.CORRECT_SECONDARY);
|
|
119019
119023
|
};
|
|
119020
119024
|
color$1.correctSecondary = correctSecondary;
|
|
119025
|
+
var correctWithIcon = function correctWithIcon() {
|
|
119026
|
+
return pv('correct-icon', defaults.CORRECT_WITH_ICON);
|
|
119027
|
+
};
|
|
119028
|
+
color$1.correctWithIcon = correctWithIcon;
|
|
119021
119029
|
var incorrect = function incorrect() {
|
|
119022
119030
|
return pv('incorrect', defaults.INCORRECT);
|
|
119023
119031
|
};
|
|
119024
119032
|
color$1.incorrect = incorrect;
|
|
119033
|
+
var incorrectWithIcon = function incorrectWithIcon() {
|
|
119034
|
+
return pv('incorrect-icon', defaults.INCORRECT_WITH_ICON);
|
|
119035
|
+
};
|
|
119036
|
+
color$1.incorrectWithIcon = incorrectWithIcon;
|
|
119025
119037
|
var incorrectSecondary = function incorrectSecondary() {
|
|
119026
119038
|
return pv('incorrect-secondary', defaults.INCORRECT_SECONDARY);
|
|
119027
119039
|
};
|
|
@@ -119030,6 +119042,10 @@ var missing = function missing() {
|
|
|
119030
119042
|
return pv('missing', defaults.MISSING);
|
|
119031
119043
|
};
|
|
119032
119044
|
color$1.missing = missing;
|
|
119045
|
+
var missingWithIcon = function missingWithIcon() {
|
|
119046
|
+
return pv('missing-icon', defaults.MISSING_WITH_ICON);
|
|
119047
|
+
};
|
|
119048
|
+
color$1.missingWithIcon = missingWithIcon;
|
|
119033
119049
|
var primary = function primary() {
|
|
119034
119050
|
return pv('primary', defaults.PRIMARY);
|
|
119035
119051
|
};
|
|
@@ -119074,6 +119090,10 @@ var black = function black() {
|
|
|
119074
119090
|
return pv('black', defaults.BLACK);
|
|
119075
119091
|
};
|
|
119076
119092
|
color$1.black = black;
|
|
119093
|
+
var white = function white() {
|
|
119094
|
+
return pv('white', defaults.WHITE);
|
|
119095
|
+
};
|
|
119096
|
+
color$1.white = white;
|
|
119077
119097
|
const require$$9$g = _dll_react;
|
|
119078
119098
|
const require$$11$7 = _dll_classnames;
|
|
119079
119099
|
const require$$12$7 = _dll_prop_types;
|
package/package.json
CHANGED
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "2.14.3-next.
|
|
7
|
+
"version": "2.14.3-next.15+38332888b",
|
|
8
8
|
"description": "",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@material-ui/core": "^3.9.2",
|
|
11
11
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
12
|
-
"@pie-lib/pie-toolbox": "1.
|
|
12
|
+
"@pie-lib/pie-toolbox": "1.22.0",
|
|
13
13
|
"prop-types": "^15.6.1",
|
|
14
14
|
"react": "^16.8.1",
|
|
15
15
|
"react-dom": "^16.8.1"
|
|
16
16
|
},
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "ISC",
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "38332888bf478c18151415ee6f8063106679208e",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"postpublish": "../../scripts/postpublish"
|
|
22
22
|
},
|