@instructure/quiz-core 20.38.0 → 21.0.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.
Files changed (43) hide show
  1. package/es/banks/components/CreateBankModal/presenter.js +22 -24
  2. package/es/banks/components/EditBankModal/presenter.js +24 -22
  3. package/es/banks/components/SharingModal/presenter.js +0 -4
  4. package/es/common/components/ConfirmationModal/presenter.js +10 -7
  5. package/es/common/components/layout/navbar/SecondaryNavBarButton/index.js +13 -32
  6. package/es/common/components/layout/navbar/index.js +0 -3
  7. package/es/common/components/resources/item/ItemEdit/presenter.js +0 -5
  8. package/es/common/components/resources/quiz/AddContent/Popover/presenter.js +0 -4
  9. package/es/common/components/resources/sessionItemResult/SessionItemResult/presenter.js +1 -1
  10. package/es/common/components/resources/stimulus/Stimulus/presenter.js +11 -5
  11. package/es/common/components/resources/stimulus/StimulusEdit/presenter.js +17 -9
  12. package/es/common/components/resources/stimulus/StimulusEditInfo/presenter.js +2 -1
  13. package/es/common/components/resources/stimulus/StimulusShowInfo/index.js +7 -5
  14. package/es/common/components/shared/PrintTrigger/presenter.js +0 -5
  15. package/es/reporting/components/resources/OutcomeAnalysis/presenter.js +1 -11
  16. package/lib/banks/components/CreateBankModal/presenter.js +23 -24
  17. package/lib/banks/components/EditBankModal/presenter.js +25 -22
  18. package/lib/banks/components/SharingModal/presenter.js +0 -4
  19. package/lib/common/components/ConfirmationModal/presenter.js +10 -7
  20. package/lib/common/components/layout/navbar/SecondaryNavBarButton/index.js +13 -32
  21. package/lib/common/components/layout/navbar/index.js +0 -3
  22. package/lib/common/components/resources/item/ItemEdit/presenter.js +0 -5
  23. package/lib/common/components/resources/quiz/AddContent/Popover/presenter.js +0 -4
  24. package/lib/common/components/resources/sessionItemResult/SessionItemResult/presenter.js +1 -1
  25. package/lib/common/components/resources/stimulus/Stimulus/presenter.js +11 -5
  26. package/lib/common/components/resources/stimulus/StimulusEdit/presenter.js +17 -9
  27. package/lib/common/components/resources/stimulus/StimulusEditInfo/presenter.js +2 -1
  28. package/lib/common/components/resources/stimulus/StimulusShowInfo/index.js +7 -5
  29. package/lib/common/components/shared/PrintTrigger/presenter.js +0 -5
  30. package/lib/reporting/components/resources/OutcomeAnalysis/presenter.js +1 -11
  31. package/package.json +57 -58
  32. package/es/banks/components/CreateBankModal/styles.js +0 -15
  33. package/es/banks/components/CreateBankModal/theme.js +0 -10
  34. package/es/banks/components/EditBankModal/styles.js +0 -12
  35. package/es/banks/components/EditBankModal/theme.js +0 -9
  36. package/es/common/components/layout/navbar/SecondaryNavBarButton/styles.js +0 -9
  37. package/es/common/components/layout/navbar/SecondaryNavBarButton/theme.js +0 -10
  38. package/lib/banks/components/CreateBankModal/styles.js +0 -22
  39. package/lib/banks/components/CreateBankModal/theme.js +0 -17
  40. package/lib/banks/components/EditBankModal/styles.js +0 -19
  41. package/lib/banks/components/EditBankModal/theme.js +0 -16
  42. package/lib/common/components/layout/navbar/SecondaryNavBarButton/styles.js +0 -16
  43. package/lib/common/components/layout/navbar/SecondaryNavBarButton/theme.js +0 -17
@@ -27,7 +27,9 @@ var StimulusShowInfo = /*#__PURE__*/function (_Component) {
27
27
  (0, _createClass2.default)(StimulusShowInfo, [{
28
28
  key: "render",
29
29
  value: function render() {
30
- var instructions = this.props.stimulus.instructions && /*#__PURE__*/_react.default.createElement(_uiView.View, {
30
+ var stimulus = this.props.stimulus;
31
+ var automationPrefix = stimulus.passage ? 'passage' : 'stimulus';
32
+ var instructions = stimulus.instructions && /*#__PURE__*/_react.default.createElement(_uiView.View, {
31
33
  as: "div",
32
34
  padding: "small",
33
35
  margin: "x-small 0 0 0",
@@ -46,10 +48,10 @@ var StimulusShowInfo = /*#__PURE__*/function (_Component) {
46
48
  color: "primary",
47
49
  size: "small",
48
50
  weight: "bold"
49
- }, this.props.stimulus.instructions))));
51
+ }, stimulus.instructions))));
50
52
  return /*#__PURE__*/_react.default.createElement(_uiView.View, {
51
53
  as: "div"
52
- }, this.props.stimulus.title && /*#__PURE__*/_react.default.createElement(_uiHeading.Heading, {
54
+ }, stimulus.title && /*#__PURE__*/_react.default.createElement(_uiHeading.Heading, {
53
55
  level: "h3",
54
56
  as: "h2",
55
57
  color: "primary",
@@ -57,8 +59,8 @@ var StimulusShowInfo = /*#__PURE__*/function (_Component) {
57
59
  themeOverride: {
58
60
  h2FontWeight: '700'
59
61
  }
60
- }, this.props.stimulus.title), instructions, /*#__PURE__*/_react.default.createElement("div", {
61
- "data-automation": "sdk-stimulus-LeftPanelShow-content"
62
+ }, stimulus.title), instructions, /*#__PURE__*/_react.default.createElement("div", {
63
+ "data-automation": "sdk-".concat(automationPrefix, "-LeftPanelShow-content")
62
64
  }, /*#__PURE__*/_react.default.createElement(_quizRce.RichContentRenderer, {
63
65
  content: this.props.stimulus.body
64
66
  })));
@@ -16,7 +16,6 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
16
16
  var _uiOverlays = require("@instructure/ui-overlays");
17
17
  var _formatMessage = _interopRequireDefault(require("@instructure/quiz-i18n/es/format-message"));
18
18
  var _Spinner = require("../spinner/Spinner.js");
19
- var _ElementsForSelectors = _interopRequireDefault(require("../../../util/ElementsForSelectors.js"));
20
19
  var _CustomPropTypes = _interopRequireDefault(require("../../../util/CustomPropTypes.js"));
21
20
  var _printUtils = require("../../../util/printUtils.js");
22
21
  var _index = _interopRequireDefault(require("../../PrintFontSizeModal/index.js"));
@@ -82,9 +81,6 @@ var PrintTrigger = /*#__PURE__*/function (_Component) {
82
81
  });
83
82
  _this.props.openPrintFontSizeModal();
84
83
  };
85
- _this.applicationElement = function () {
86
- return (0, _ElementsForSelectors.default)(_this.props.appContainer);
87
- };
88
84
  _this.onExited = function () {};
89
85
  _this.fontSize = '';
90
86
  return _this;
@@ -93,7 +89,6 @@ var PrintTrigger = /*#__PURE__*/function (_Component) {
93
89
  key: "render",
94
90
  value: function render() {
95
91
  return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_uiOverlays.Overlay, {
96
- applicationElement: this.applicationElement,
97
92
  open: this.state.waitingForPrintingToBeReady,
98
93
  shouldContainFocus: true,
99
94
  transition: "fade",
@@ -15,21 +15,12 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
15
15
  var _OutcomesPerStudentReport = _interopRequireDefault(require("@instructure/outcomes-ui/es/containers/OutcomesPerStudentReport"));
16
16
  var _quizCommon = require("@instructure/quiz-common");
17
17
  var _CustomPropTypes = _interopRequireDefault(require("../../../../common/util/CustomPropTypes.js"));
18
- var _ElementsForSelectors = _interopRequireDefault(require("../../../../common/util/ElementsForSelectors.js"));
19
18
  var OutcomeAnalysis = /*#__PURE__*/function (_Component) {
20
19
  (0, _inherits2.default)(OutcomeAnalysis, _Component);
21
20
  var _super = (0, _createSuper2.default)(OutcomeAnalysis);
22
21
  function OutcomeAnalysis() {
23
- var _this;
24
22
  (0, _classCallCheck2.default)(this, OutcomeAnalysis);
25
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
26
- args[_key] = arguments[_key];
27
- }
28
- _this = _super.call.apply(_super, [this].concat(args));
29
- _this.applicationElement = function () {
30
- return (0, _ElementsForSelectors.default)(_this.props.appContainer);
31
- };
32
- return _this;
23
+ return _super.apply(this, arguments);
33
24
  }
34
25
  (0, _createClass2.default)(OutcomeAnalysis, [{
35
26
  key: "render",
@@ -42,7 +33,6 @@ var OutcomeAnalysis = /*#__PURE__*/function (_Component) {
42
33
  loadUsersOverride = _this$props.loadUsersOverride,
43
34
  showRollups = _this$props.showRollups;
44
35
  return /*#__PURE__*/_react.default.createElement(_OutcomesPerStudentReport.default, {
45
- applicationElement: this.applicationElement,
46
36
  artifactType: "quizzes.quiz",
47
37
  artifactId: quizId,
48
38
  contextUuid: contextUuid,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/quiz-core",
3
- "version": "20.38.0",
3
+ "version": "21.0.0",
4
4
  "license": "MIT",
5
5
  "description": "The Quiz React SDK by Instructure Inc.",
6
6
  "author": "Instructure, Inc. Engineering and Product Design",
@@ -22,59 +22,53 @@
22
22
  "lib"
23
23
  ],
24
24
  "dependencies": {
25
- "@instructure/emotion": "^8.56.3",
25
+ "@instructure/emotion": "^9.11.1",
26
26
  "@instructure/grading-utils": "^1.0.0",
27
27
  "@instructure/outcomes-ui": "^3.2.2",
28
- "@instructure/quiz-common": "^20.38.0",
29
- "@instructure/quiz-i18n": "^20.38.0",
30
- "@instructure/quiz-interactions": "^20.38.0",
31
- "@instructure/quiz-number-input": "^20.38.0",
32
- "@instructure/quiz-rce": "^20.38.0",
33
- "@instructure/ui-a11y-content": "^8.56.3",
34
- "@instructure/ui-alerts": "^8.56.3",
35
- "@instructure/ui-avatar": "^8.56.3",
36
- "@instructure/ui-billboard": "^8.56.3",
37
- "@instructure/ui-breadcrumb": "^8.56.3",
38
- "@instructure/ui-buttons": "^8.56.3",
39
- "@instructure/ui-checkbox": "^8.56.3",
40
- "@instructure/ui-color-utils": "^8.56.3",
41
- "@instructure/ui-dialog": "^8.56.3",
42
- "@instructure/ui-drilldown": "^8.56.3",
43
- "@instructure/ui-focusable": "^8.56.3",
44
- "@instructure/ui-grid": "^8.56.3",
45
- "@instructure/ui-heading": "^8.56.3",
46
- "@instructure/ui-i18n": "^7.22.1",
47
- "@instructure/ui-icons": "^8.56.3",
48
- "@instructure/ui-img": "^8.56.3",
49
- "@instructure/ui-link": "^8.56.3",
50
- "@instructure/ui-list": "^8.56.3",
51
- "@instructure/ui-menu": "^8.56.3",
52
- "@instructure/ui-metric": "^8.56.3",
53
- "@instructure/ui-modal": "^8.56.3",
54
- "@instructure/ui-motion": "^8.56.3",
55
- "@instructure/ui-number-input": "^8.56.3",
56
- "@instructure/ui-overlays": "^8.56.3",
57
- "@instructure/ui-pagination": "^8.56.3",
58
- "@instructure/ui-popover": "^8.56.3",
59
- "@instructure/ui-portal": "^8.56.3",
60
- "@instructure/ui-progress": "^8.56.3",
61
- "@instructure/ui-prop-types": "^8.56.3",
62
- "@instructure/ui-radio-input": "^8.56.3",
63
- "@instructure/ui-react-utils": "^8.56.3",
64
- "@instructure/ui-select": "^8.56.3",
65
- "@instructure/ui-spinner": "^8.56.3",
66
- "@instructure/ui-table": "^8.56.3",
67
- "@instructure/ui-tabs": "^8.56.3",
68
- "@instructure/ui-tag": "^8.56.3",
69
- "@instructure/ui-text": "^8.56.3",
70
- "@instructure/ui-themes": "^8.56.3",
71
- "@instructure/ui-toggle-details": "^8.56.3",
72
- "@instructure/ui-tooltip": "^8.56.3",
73
- "@instructure/ui-top-nav-bar": "^8.55.0",
74
- "@instructure/ui-tray": "8.55.1",
75
- "@instructure/ui-truncate-text": "^8.56.3",
76
- "@instructure/ui-utils": "^8.56.3",
77
- "@instructure/ui-view": "^8.56.3",
28
+ "@instructure/ui-a11y-content": "^9.11.1",
29
+ "@instructure/ui-alerts": "^9.11.1",
30
+ "@instructure/ui-avatar": "^9.11.1",
31
+ "@instructure/ui-billboard": "^9.11.1",
32
+ "@instructure/ui-breadcrumb": "^9.11.1",
33
+ "@instructure/ui-buttons": "^9.11.1",
34
+ "@instructure/ui-checkbox": "^9.11.1",
35
+ "@instructure/ui-color-utils": "^9.11.1",
36
+ "@instructure/ui-dialog": "^9.11.1",
37
+ "@instructure/ui-drilldown": "^9.11.1",
38
+ "@instructure/ui-focusable": "^9.11.1",
39
+ "@instructure/ui-grid": "^9.11.1",
40
+ "@instructure/ui-heading": "^9.11.1",
41
+ "@instructure/ui-i18n": "^9.11.1",
42
+ "@instructure/ui-icons": "^9.11.1",
43
+ "@instructure/ui-img": "^9.11.1",
44
+ "@instructure/ui-link": "^9.11.1",
45
+ "@instructure/ui-list": "^9.11.1",
46
+ "@instructure/ui-menu": "^9.11.1",
47
+ "@instructure/ui-metric": "^9.11.1",
48
+ "@instructure/ui-modal": "^9.11.1",
49
+ "@instructure/ui-motion": "^9.11.1",
50
+ "@instructure/ui-number-input": "^9.11.1",
51
+ "@instructure/ui-overlays": "^9.11.1",
52
+ "@instructure/ui-pagination": "^9.11.1",
53
+ "@instructure/ui-popover": "^9.11.1",
54
+ "@instructure/ui-portal": "^9.11.1",
55
+ "@instructure/ui-progress": "^9.11.1",
56
+ "@instructure/ui-prop-types": "^9.11.1",
57
+ "@instructure/ui-radio-input": "^9.11.1",
58
+ "@instructure/ui-react-utils": "^9.11.1",
59
+ "@instructure/ui-select": "^9.11.1",
60
+ "@instructure/ui-spinner": "^9.11.1",
61
+ "@instructure/ui-table": "^9.11.1",
62
+ "@instructure/ui-tabs": "^9.11.1",
63
+ "@instructure/ui-tag": "^9.11.1",
64
+ "@instructure/ui-text": "^9.11.1",
65
+ "@instructure/ui-themes": "^9.11.1",
66
+ "@instructure/ui-toggle-details": "^9.11.1",
67
+ "@instructure/ui-tooltip": "^9.11.1",
68
+ "@instructure/ui-top-nav-bar": "^9.11.1",
69
+ "@instructure/ui-tray": "9.11.1",
70
+ "@instructure/ui-truncate-text": "^9.11.1",
71
+ "@instructure/ui-view": "^9.11.1",
78
72
  "aws-sdk": "^2.3.2",
79
73
  "aws4fetch": "^1.0.20",
80
74
  "classnames": "^2.2.5",
@@ -89,7 +83,6 @@
89
83
  "file-saver": "~2.0.5",
90
84
  "humps": "^2.0.0",
91
85
  "immutable": "^3.8.1",
92
- "instructure-validations": "^20.38.0",
93
86
  "ipaddr.js": "^1.5.4",
94
87
  "isomorphic-fetch": "^2.2.0",
95
88
  "isuuid": "^0.1.0",
@@ -117,11 +110,16 @@
117
110
  "scriptjs": "^2.5.8",
118
111
  "store": "^1.3.20",
119
112
  "striptags": "^2.0.0",
120
- "uuid": "^3.2.1"
113
+ "uuid": "^3.2.1",
114
+ "@instructure/quiz-common": "21.0.0",
115
+ "@instructure/quiz-interactions": "21.0.0",
116
+ "@instructure/quiz-i18n": "21.0.0",
117
+ "@instructure/quiz-rce": "21.0.0",
118
+ "instructure-validations": "21.0.0",
119
+ "@instructure/quiz-number-input": "21.0.0"
121
120
  },
122
121
  "devDependencies": {
123
- "@instructure/quiz-scripts": "^20.35.0",
124
- "@instructure/ui-axe-check": "^8.56.3",
122
+ "@instructure/ui-axe-check": "^9.11.1",
125
123
  "@instructure/ui-babel-preset": "^7.22.1",
126
124
  "@instructure/ui-test-utils": "^7.22.1",
127
125
  "@testing-library/react": "^12.1.5",
@@ -139,7 +137,6 @@
139
137
  "jquery": "^2.2.3",
140
138
  "karma-junit-reporter": "^2.0.1",
141
139
  "most-subject": "^5.3.0",
142
- "quiz-presets": "^20.38.0",
143
140
  "react": "^16.8.6",
144
141
  "react-addons-test-utils": "^15.6.2",
145
142
  "react-dom": "^16.8.6",
@@ -147,7 +144,9 @@
147
144
  "redux-mock-store": "^1.3.0",
148
145
  "request": "^2.74.0",
149
146
  "sinon": "^6.1.3",
150
- "sinon-chai": "^3.3.0"
147
+ "sinon-chai": "^3.3.0",
148
+ "@instructure/quiz-scripts": "21.0.0",
149
+ "quiz-presets": "21.0.0"
151
150
  },
152
151
  "peerDependencies": {
153
152
  "react": "^15 || ^16"
@@ -1,15 +0,0 @@
1
- var generateStyle = function generateStyle(componentTheme) {
2
- return {
3
- bankNameInput: {
4
- flex: '1 1 auto',
5
- fontSize: componentTheme.bankNameInputFontSize,
6
- whiteSpace: 'nowrap',
7
- textOverflow: 'ellipsis',
8
- padding: componentTheme.bankNamePadding
9
- },
10
- bankNameLabel: {
11
- padding: componentTheme.bankNameLabelPadding
12
- }
13
- };
14
- };
15
- export default generateStyle;
@@ -1,10 +0,0 @@
1
- var generateComponentTheme = function generateComponentTheme(_ref) {
2
- var typography = _ref.typography,
3
- spacing = _ref.spacing;
4
- return {
5
- bankNameInputFontSize: typography.fontSizeMedium,
6
- bankNamePadding: spacing.xSmall,
7
- bankNameLabelPadding: spacing.xSmall
8
- };
9
- };
10
- export default generateComponentTheme;
@@ -1,12 +0,0 @@
1
- var generateStyle = function generateStyle(componentTheme) {
2
- return {
3
- bankNameInput: {
4
- flex: '1 1 auto',
5
- fontSize: componentTheme.bankNameInputFontSize,
6
- whiteSpace: 'nowrap',
7
- textOverflow: 'ellipsis',
8
- padding: "0 ".concat(componentTheme.bankNameInputFontSize)
9
- }
10
- };
11
- };
12
- export default generateStyle;
@@ -1,9 +0,0 @@
1
- var generateComponentTheme = function generateComponentTheme(_ref) {
2
- var typography = _ref.typography,
3
- spacing = _ref.spacing;
4
- return {
5
- bankNameInputFontSize: typography.fontSizeMedium,
6
- bankNameInputPadding: spacing.xSmall
7
- };
8
- };
9
- export default generateComponentTheme;
@@ -1,9 +0,0 @@
1
- var generateStyle = function generateStyle(componentTheme) {
2
- return {
3
- textColor: componentTheme.textColor,
4
- backgroundColor: componentTheme.backgroundColor,
5
- backgroundHoverColor: componentTheme.backgroundHoverColor,
6
- borderColor: componentTheme.borderColor
7
- };
8
- };
9
- export default generateStyle;
@@ -1,10 +0,0 @@
1
- var generateComponentTheme = function generateComponentTheme(_ref) {
2
- var colors = _ref.colors;
3
- return {
4
- textColor: '#000',
5
- backgroundColor: colors.porcelain,
6
- backgroundHoverColor: '#d8d8d8',
7
- borderColor: '#d8d8d8'
8
- };
9
- };
10
- export default generateComponentTheme;
@@ -1,22 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var generateStyle = function generateStyle(componentTheme) {
8
- return {
9
- bankNameInput: {
10
- flex: '1 1 auto',
11
- fontSize: componentTheme.bankNameInputFontSize,
12
- whiteSpace: 'nowrap',
13
- textOverflow: 'ellipsis',
14
- padding: componentTheme.bankNamePadding
15
- },
16
- bankNameLabel: {
17
- padding: componentTheme.bankNameLabelPadding
18
- }
19
- };
20
- };
21
- var _default = generateStyle;
22
- exports.default = _default;
@@ -1,17 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var generateComponentTheme = function generateComponentTheme(_ref) {
8
- var typography = _ref.typography,
9
- spacing = _ref.spacing;
10
- return {
11
- bankNameInputFontSize: typography.fontSizeMedium,
12
- bankNamePadding: spacing.xSmall,
13
- bankNameLabelPadding: spacing.xSmall
14
- };
15
- };
16
- var _default = generateComponentTheme;
17
- exports.default = _default;
@@ -1,19 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var generateStyle = function generateStyle(componentTheme) {
8
- return {
9
- bankNameInput: {
10
- flex: '1 1 auto',
11
- fontSize: componentTheme.bankNameInputFontSize,
12
- whiteSpace: 'nowrap',
13
- textOverflow: 'ellipsis',
14
- padding: "0 ".concat(componentTheme.bankNameInputFontSize)
15
- }
16
- };
17
- };
18
- var _default = generateStyle;
19
- exports.default = _default;
@@ -1,16 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var generateComponentTheme = function generateComponentTheme(_ref) {
8
- var typography = _ref.typography,
9
- spacing = _ref.spacing;
10
- return {
11
- bankNameInputFontSize: typography.fontSizeMedium,
12
- bankNameInputPadding: spacing.xSmall
13
- };
14
- };
15
- var _default = generateComponentTheme;
16
- exports.default = _default;
@@ -1,16 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var generateStyle = function generateStyle(componentTheme) {
8
- return {
9
- textColor: componentTheme.textColor,
10
- backgroundColor: componentTheme.backgroundColor,
11
- backgroundHoverColor: componentTheme.backgroundHoverColor,
12
- borderColor: componentTheme.borderColor
13
- };
14
- };
15
- var _default = generateStyle;
16
- exports.default = _default;
@@ -1,17 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var generateComponentTheme = function generateComponentTheme(_ref) {
8
- var colors = _ref.colors;
9
- return {
10
- textColor: '#000',
11
- backgroundColor: colors.porcelain,
12
- backgroundHoverColor: '#d8d8d8',
13
- borderColor: '#d8d8d8'
14
- };
15
- };
16
- var _default = generateComponentTheme;
17
- exports.default = _default;