mario-education 2.4.474-release → 2.4.476-release

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/dist/index.css CHANGED
@@ -5706,6 +5706,10 @@ h6._3zOGW {
5706
5706
  font-family: 'Poppins-Regular' !important;
5707
5707
  }
5708
5708
 
5709
+ ._1fJqh ._SRS15 {
5710
+ padding: 30px 0;
5711
+ }
5712
+
5709
5713
  ._1fJqh ._P13B5 {
5710
5714
  font-weight: 700;
5711
5715
  font-size: 20px;
package/dist/index.js CHANGED
@@ -16686,13 +16686,6 @@ var QuestionDetail = function QuestionDetail() {
16686
16686
  };
16687
16687
 
16688
16688
  React.useEffect(function () {
16689
- console.log({
16690
- values: values
16691
- });
16692
- console.log({
16693
- activeModelLanguage: activeModelLanguage
16694
- });
16695
-
16696
16689
  if (!id && !!activeModelLanguage && activeModelLanguage.lang == values.lang && JSON.stringify(activeModelLanguage) !== JSON.stringify(values)) {
16697
16690
  var categoryId = values.categoryId != 0 ? values.categoryId : questionDetail.categoryId;
16698
16691
  var updatedModelQuestionLang = modelQuestionLang.map(function (item) {
@@ -16758,7 +16751,7 @@ var QuestionDetail = function QuestionDetail() {
16758
16751
  className: styles["form-question-text"] + " mb-2"
16759
16752
  }, React__default.createElement(marioCore.RequiredLabel, {
16760
16753
  text: t("question_text")
16761
- }), (values.text || !id) && !!tinyMCEKey && React__default.createElement(tinymceReact.Editor, {
16754
+ }), !!tinyMCEKey && React__default.createElement(tinymceReact.Editor, {
16762
16755
  apiKey: tinyMCEKey || TINY_MCE_API_KEY,
16763
16756
  value: values.text,
16764
16757
  init: _extends({}, marioCore.editorConfig.question, {
@@ -19941,7 +19934,8 @@ var QuestionCateList = function QuestionCateList(_ref) {
19941
19934
  }), React__default.createElement("div", {
19942
19935
  className: styles$1['list-survey-category'],
19943
19936
  style: {
19944
- maxHeight: maxHeight
19937
+ maxHeight: maxHeight,
19938
+ minHeight: '400px'
19945
19939
  }
19946
19940
  }, categories && categories.length > 0 ? categories.map(function (cate) {
19947
19941
  var _cate$numberOfQuestio;
@@ -40921,8 +40915,8 @@ var compat = function compat(element) {
40921
40915
  return;
40922
40916
  }
40923
40917
 
40924
- var value = element.value,
40925
- parent = element.parent;
40918
+ var value = element.value;
40919
+ var parent = element.parent;
40926
40920
  var isImplicitRule = element.column === parent.column && element.line === parent.line;
40927
40921
 
40928
40922
  while (parent.type !== 'rule') {
@@ -41180,35 +41174,14 @@ var prefixer = function prefixer(element, index, children, callback) {
41180
41174
  }
41181
41175
  };
41182
41176
 
41183
- /* import type { StylisPlugin } from './types' */
41184
-
41185
- /*
41186
- export type Options = {
41187
- nonce?: string,
41188
- stylisPlugins?: StylisPlugin[],
41189
- key: string,
41190
- container?: HTMLElement,
41191
- speedy?: boolean,
41192
- prepend?: boolean,
41193
- insertionPoint?: HTMLElement
41194
- }
41195
- */
41196
-
41197
41177
  var getServerStylisCache = isBrowser ? undefined : weakMemoize(function () {
41198
41178
  return memoize(function () {
41199
- var cache = {};
41200
- return function (name) {
41201
- return cache[name];
41202
- };
41179
+ return {};
41203
41180
  });
41204
41181
  });
41205
41182
  var defaultStylisPlugins = [prefixer];
41206
41183
 
41207
- var createCache = function
41208
- /*: EmotionCache */
41209
- createCache(options
41210
- /*: Options */
41211
- ) {
41184
+ var createCache = function createCache(options) {
41212
41185
  var key = options.key;
41213
41186
 
41214
41187
  if (isBrowser && key === 'css') {
@@ -41217,9 +41190,7 @@ createCache(options
41217
41190
  // note this very very intentionally targets all style elements regardless of the key to ensure
41218
41191
  // that creating a cache works inside of render of a React component
41219
41192
 
41220
- Array.prototype.forEach.call(ssrStyles, function (node
41221
- /*: HTMLStyleElement */
41222
- ) {
41193
+ Array.prototype.forEach.call(ssrStyles, function (node) {
41223
41194
  // we want to only move elements which have a space in the data-emotion attribute value
41224
41195
  // because that indicates that it is an Emotion 11 server-side rendered style elements
41225
41196
  // while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector
@@ -41241,17 +41212,13 @@ createCache(options
41241
41212
 
41242
41213
  var inserted = {};
41243
41214
  var container;
41244
- /* : Node */
41245
-
41246
41215
  var nodesToHydrate = [];
41247
41216
 
41248
41217
  if (isBrowser) {
41249
41218
  container = options.container || document.head;
41250
41219
  Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which
41251
41220
  // means that the style elements we're looking at are only Emotion 11 server-rendered style elements
41252
- document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node
41253
- /*: HTMLStyleElement */
41254
- ) {
41221
+ document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node) {
41255
41222
  var attrib = node.getAttribute("data-emotion").split(' ');
41256
41223
 
41257
41224
  for (var i = 1; i < attrib.length; i++) {
@@ -41263,17 +41230,10 @@ createCache(options
41263
41230
  }
41264
41231
 
41265
41232
  var _insert;
41266
- /*: (
41267
- selector: string,
41268
- serialized: SerializedStyles,
41269
- sheet: StyleSheet,
41270
- shouldCache: boolean
41271
- ) => string | void */
41272
-
41273
41233
 
41274
41234
  var omnipresentPlugins = [compat, removeLabel];
41275
41235
 
41276
- if (isBrowser) {
41236
+ if (!getServerStylisCache) {
41277
41237
  var currentSheet;
41278
41238
  var finalizingPlugins = [le, pe(function (rule) {
41279
41239
  currentSheet.insert(rule);
@@ -41284,17 +41244,7 @@ createCache(options
41284
41244
  return oe(ce(styles), serializer);
41285
41245
  };
41286
41246
 
41287
- _insert = function
41288
- /*: void */
41289
- insert(selector
41290
- /*: string */
41291
- , serialized
41292
- /*: SerializedStyles */
41293
- , sheet
41294
- /*: StyleSheet */
41295
- , shouldCache
41296
- /*: boolean */
41297
- ) {
41247
+ _insert = function insert(selector, serialized, sheet, shouldCache) {
41298
41248
  currentSheet = sheet;
41299
41249
 
41300
41250
  stylis(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
@@ -41314,13 +41264,7 @@ createCache(options
41314
41264
 
41315
41265
  var serverStylisCache = getServerStylisCache(stylisPlugins)(key);
41316
41266
 
41317
- var getRules = function
41318
- /*: string */
41319
- getRules(selector
41320
- /*: string */
41321
- , serialized
41322
- /*: SerializedStyles */
41323
- ) {
41267
+ var getRules = function getRules(selector, serialized) {
41324
41268
  var name = serialized.name;
41325
41269
 
41326
41270
  if (serverStylisCache[name] === undefined) {
@@ -41330,17 +41274,7 @@ createCache(options
41330
41274
  return serverStylisCache[name];
41331
41275
  };
41332
41276
 
41333
- _insert = function
41334
- /*: string | void */
41335
- _insert(selector
41336
- /*: string */
41337
- , serialized
41338
- /*: SerializedStyles */
41339
- , sheet
41340
- /*: StyleSheet */
41341
- , shouldCache
41342
- /*: boolean */
41343
- ) {
41277
+ _insert = function _insert(selector, serialized, sheet, shouldCache) {
41344
41278
  var name = serialized.name;
41345
41279
  var rules = getRules(selector, serialized);
41346
41280
 
@@ -41370,9 +41304,7 @@ createCache(options
41370
41304
  };
41371
41305
  }
41372
41306
 
41373
- var cache
41374
- /*: EmotionCache */
41375
- = {
41307
+ var cache = {
41376
41308
  key: key,
41377
41309
  sheet: new StyleSheet({
41378
41310
  key: key,
@@ -42029,10 +41961,7 @@ var isDevelopment$2 = false;
42029
41961
 
42030
41962
  var isBrowser$3 = typeof document !== 'undefined';
42031
41963
 
42032
- /* import { type EmotionCache } from '@emotion/utils' */
42033
- var EmotionCacheContext
42034
- /*: React.Context<EmotionCache | null> */
42035
- = /* #__PURE__ */React.createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
41964
+ var EmotionCacheContext = /* #__PURE__ */React.createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
42036
41965
  // because this module is primarily intended for the browser and node
42037
41966
  // but it's also required in react native and similar environments sometimes
42038
41967
  // and we could have a special build just for that
@@ -42042,18 +41971,8 @@ typeof HTMLElement !== 'undefined' ? /* #__PURE__ */createCache({
42042
41971
  key: 'css'
42043
41972
  }) : null);
42044
41973
 
42045
- var withEmotionCache = function withEmotionCache
42046
- /* <Props, Ref: React.Ref<*>> */
42047
- (func
42048
- /*: (props: Props, cache: EmotionCache, ref: Ref) => React.Node */
42049
- )
42050
- /*: React.AbstractComponent<Props> */
42051
- {
42052
- return /*#__PURE__*/React.forwardRef(function (props
42053
- /*: Props */
42054
- , ref
42055
- /*: Ref */
42056
- ) {
41974
+ var withEmotionCache = function withEmotionCache(func) {
41975
+ return /*#__PURE__*/React.forwardRef(function (props, ref) {
42057
41976
  // the cache will never be null in the browser
42058
41977
  var cache = React.useContext(EmotionCacheContext);
42059
41978
  return func(props, cache, ref);
@@ -42061,16 +41980,8 @@ var withEmotionCache = function withEmotionCache
42061
41980
  };
42062
41981
 
42063
41982
  if (!isBrowser$3) {
42064
- withEmotionCache = function withEmotionCache
42065
- /* <Props> */
42066
- (func
42067
- /*: (props: Props, cache: EmotionCache) => React.Node */
42068
- )
42069
- /*: React.StatelessFunctionalComponent<Props> */
42070
- {
42071
- return function (props
42072
- /*: Props */
42073
- ) {
41983
+ withEmotionCache = function withEmotionCache(func) {
41984
+ return function (props) {
42074
41985
  var cache = React.useContext(EmotionCacheContext);
42075
41986
 
42076
41987
  if (cache === null) {
@@ -42097,19 +42008,13 @@ var ThemeContext = /* #__PURE__ */React.createContext({});
42097
42008
  var hasOwn = {}.hasOwnProperty;
42098
42009
 
42099
42010
  var typePropName = '__EMOTION_TYPE_PLEASE_DO_NOT_USE__';
42100
- var createEmotionProps = function createEmotionProps(type
42101
- /*: React.ElementType */
42102
- , props
42103
- /*: Object */
42104
- ) {
42011
+ var createEmotionProps = function createEmotionProps(type, props) {
42105
42012
 
42106
- var newProps
42107
- /*: any */
42108
- = {};
42013
+ var newProps = {};
42109
42014
 
42110
- for (var key in props) {
42111
- if (hasOwn.call(props, key)) {
42112
- newProps[key] = props[key];
42015
+ for (var _key in props) {
42016
+ if (hasOwn.call(props, _key)) {
42017
+ newProps[_key] = props[_key];
42113
42018
  }
42114
42019
  }
42115
42020
 
@@ -42146,9 +42051,7 @@ var Insertion = function Insertion(_ref) {
42146
42051
  return null;
42147
42052
  };
42148
42053
 
42149
- var Emotion = /* #__PURE__ */withEmotionCache(
42150
- /* <any, any> */
42151
- function (props, cache, ref) {
42054
+ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
42152
42055
  var cssProp = props.css; // so that using `css` from `emotion` and passing the result to the css prop works
42153
42056
  // not passing the registered cache to serializeStyles because it would
42154
42057
  // make certain babel optimisations not possible
@@ -42172,9 +42075,9 @@ function (props, cache, ref) {
42172
42075
  className += cache.key + "-" + serialized.name;
42173
42076
  var newProps = {};
42174
42077
 
42175
- for (var key in props) {
42176
- if (hasOwn.call(props, key) && key !== 'css' && key !== typePropName && (!isDevelopment$2 )) {
42177
- newProps[key] = props[key];
42078
+ for (var _key2 in props) {
42079
+ if (hasOwn.call(props, _key2) && _key2 !== 'css' && _key2 !== typePropName && (!isDevelopment$2 )) {
42080
+ newProps[_key2] = props[_key2];
42178
42081
  }
42179
42082
  }
42180
42083
 
@@ -42208,15 +42111,8 @@ module.exports = _extends, module.exports.__esModule = true, module.exports["def
42208
42111
 
42209
42112
  unwrapExports(_extends_1);
42210
42113
 
42211
- var jsx
42212
- /*: typeof React.createElement */
42213
- = function jsx
42214
- /*: typeof React.createElement */
42215
- (type
42216
- /*: React.ElementType */
42217
- , props
42218
- /*: Object */
42219
- ) {
42114
+ var jsx = function jsx(type, props) {
42115
+ // eslint-disable-next-line prefer-rest-params
42220
42116
  var args = arguments;
42221
42117
 
42222
42118
  if (props == null || !hasOwn.call(props, 'css')) {
@@ -42235,11 +42131,13 @@ var jsx
42235
42131
  return React.createElement.apply(null, createElementArgArray);
42236
42132
  };
42237
42133
 
42238
- /* import type { Interpolation, SerializedStyles } from '@emotion/utils' */
42134
+ (function (_jsx) {
42135
+ var JSX;
42239
42136
 
42240
- function css()
42241
- /*: SerializedStyles */
42242
- {
42137
+ (function (_JSX) {})(JSX || (JSX = _jsx.JSX || (_jsx.JSX = {})));
42138
+ })(jsx || (jsx = {}));
42139
+
42140
+ function css() {
42243
42141
  for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
42244
42142
  args[_key] = arguments[_key];
42245
42143
  }
@@ -42247,18 +42145,7 @@ function css()
42247
42145
  return serializeStyles(args);
42248
42146
  }
42249
42147
 
42250
- /*
42251
- type Keyframes = {|
42252
- name: string,
42253
- styles: string,
42254
- anim: 1,
42255
- toString: () => string
42256
- |} & string
42257
- */
42258
-
42259
- var keyframes = function
42260
- /*: Keyframes */
42261
- keyframes() {
42148
+ function keyframes() {
42262
42149
  var insertable = css.apply(void 0, arguments);
42263
42150
  var name = "animation-" + insertable.name;
42264
42151
  return {
@@ -42269,23 +42156,9 @@ keyframes() {
42269
42156
  return "_EMO_" + this.name + "_" + this.styles + "_EMO_";
42270
42157
  }
42271
42158
  };
42272
- };
42273
-
42274
- /*
42275
- type ClassNameArg =
42276
- | string
42277
- | boolean
42278
- | { [key: string]: boolean }
42279
- | Array<ClassNameArg>
42280
- | null
42281
- | void
42282
- */
42159
+ }
42283
42160
 
42284
- var classnames = function
42285
- /*: string */
42286
- classnames(args
42287
- /*: Array<ClassNameArg> */
42288
- ) {
42161
+ var classnames = function classnames(args) {
42289
42162
  var len = args.length;
42290
42163
  var i = 0;
42291
42164
  var cls = '';
@@ -42333,13 +42206,7 @@ classnames(args
42333
42206
  return cls;
42334
42207
  };
42335
42208
 
42336
- function merge(registered
42337
- /*: Object */
42338
- , css
42339
- /*: (...args: Array<any>) => string */
42340
- , className
42341
- /*: string */
42342
- ) {
42209
+ function merge(registered, css, className) {
42343
42210
  var registeredStyles = [];
42344
42211
  var rawClassName = getRegisteredStyles(registered, registeredStyles, className);
42345
42212
 
@@ -42381,19 +42248,8 @@ var Insertion$1 = function Insertion(_ref) {
42381
42248
 
42382
42249
  return null;
42383
42250
  };
42384
- /*
42385
- type Props = {
42386
- children: ({
42387
- css: (...args: any) => string,
42388
- cx: (...args: Array<ClassNameArg>) => string,
42389
- theme: Object
42390
- }) => React.Node
42391
- } */
42392
-
42393
-
42394
- var ClassNames
42395
- /*: React.AbstractComponent<Props>*/
42396
- = /* #__PURE__ */withEmotionCache(function (props, cache) {
42251
+
42252
+ var ClassNames = /* #__PURE__ */withEmotionCache(function (props, cache) {
42397
42253
  var hasRendered = false;
42398
42254
  var serializedArr = [];
42399
42255
 
@@ -48657,7 +48513,7 @@ var AdminTraining = function AdminTraining() {
48657
48513
  })));
48658
48514
  };
48659
48515
 
48660
- var styles$6 = {"dashboard-card":"_3U9cF","quantity-table":"_3lYP4","label-chart":"_EIKHR","size-icon":"_3waCS","survey-dashboard-chart":"_Dr0mP","survey-donut-chart":"_2aFDQ","size-arrow":"_36sKX","color-down":"_1TjNf","color-up":"_i4rwq","box-filter":"_BlYR7","title-card":"_3fBK1","value-card":"_2w6yc","deviant-card":"_1aq6C","filter-card":"_2lX51","box-skill-item":"_jGO7A","numerical-order":"_2dXys","backoround-top-skill":"_3-8WB","color-filter":"_5QHKk","btn-filter":"_2UyJG","block-collapse":"_1SL-6","form-date-picker":"_pKQ8e","bock-filter-left":"_2eZGm","bock-filter-right":"_dz04Q","form-filter-right":"_OhjkA","form-filter-left":"_-q4tF","bock-filter-wrap":"_nukn6","title-card-box":"_2ysrj","box-item":"_37HdU","image-no-data":"_-jYtE","image-grade":"_2FOHk","chart-data":"_38Xgv","apexcharts-datalabels":"_3m9ET","apexcharts-pie-label":"_3QJAM","image-custom":"_11W3J","image-special-need":"_2-frJ","title-dashboard":"_1_YyD","box-chart":"_xbK6p","block-filter-right":"_11sYZ","shadow-lg":"_rFfwe","chart-header-wrapper":"_zLI7s","devide-component":"_OoZLR","header-chart":"_3mzht","header-left":"_2gXQT","icon-chart":"_3XABq","header-right":"_1FHsv","header-title":"_2JBD5","button-export":"_2OEd7","button-content":"_2nyRe","button-icon":"_31EdD","icon-config":"_TmymT","cursor-pointer":"_3X_ow","btn-show-chart":"_1qdL4","checkbox-chart":"_PghQI","column-chart-percent":"_12jqi","chart-background":"_2rwg5","custom-marker":"_3iwnG","mark-custom":"_rKYWD","item-legend":"_n_lnI","label-legend-custom":"_3hlTa","mark-legend":"_1LGIl","percent":"_1mr1m","listItem":"_E_ciE","item":"_27ojF","student-by-age":"_2KJYt","total-student":"_hEgnv","pie-chart":"_34-k0","options-gender":"_119UL","legend":"_tlvnI","text-lengend":"_2Ehxf","student-by-grade":"_L1RnZ","bubble-chart-custom":"_18zab","x-axis-custom-wrap":"_1NRsG","axis-content":"_1jDpB","legend-wrap":"_93MRp","list-percent":"_3ipHU","percent-item":"_35mGN","chart-custom":"_1769M","chart-buddle":"_ton1p","title-grade":"_2LTMk","title-modal":"_3f2-D","header-desc-modal":"_19k86","form-checkbox":"_2ZpLB","checkbox-content":"_jLDZ4","btn-export":"_2sMK7","title-chart":"_1E7vX","image-logo":"_3Xggx","chart-to-canvas":"_3zQW_","box-chart-title":"_2HMn5","chart-view-dashboard":"_1qtzK","chart-left":"_g4q-z","chart-right":"_9ibzA","block-header-chart":"_1s7DG","item-checkbox":"_5wSJP","check-box":"_1h1ro","legend-pie-custom":"_2MTrM","legend-item":"_2kriq","color-box":"_jOIdn","filter-mobile-block":"_1bZCU","block-list-survey":"_o4v-c","block-total":"_29u03","list-card-right":"_3ejRU","filter-select":"_vqpb6","box-filter-left":"_1ezUu","filter-item":"_PC1a0","btn-favorite-text":"_3c_Kk","box-filter-right":"_2K4jy","search-input-icon":"_1iL4v","inputInput":"_1nxNR","filter-mobile":"_dMKSa","table-desktop":"_1-idZ","table-container":"_1as7O","data-grid":"_1ntGw","MuiDataGrid-columnSeparator":"_1JGzo","table-wrapper":"_3sNZT","table-border":"_AHatm","time-Date":"_151GI","time-Hours-Minute":"_1UUgM","table-class-type":"_12jAe","action-view":"_czvcm","content":"_2q8Ws","icon":"_1Sx--","btn-open":"_1xbHh","date-schedule":"_2Tge5","row-status":"_2UPVe","pending":"_1MGr4","replied":"_265aN","actionneeded":"_7_XMK","actionneed":"_UDgEY","bg-yellow":"_2G1Sl","bg-green":"_rdCKZ","bg-red":"_1QgHJ","noscheduled":"_17I8u","scheduled":"_PpJW1","completed":"_Y0Hbr","notstartyet":"_2KdUe","table-title":"_343Lm","table-status":"_32Wr6","Close":"_3fWFw","table-status-mobile":"_2WxS_","checked-favorite":"_t8SuG","pagination":"_3CBqu","table-mobile":"_2PKkK","button-mobile":"_2bwSu","action-wrapper":"_N4cuK","action-item":"_2wFbD","card-item-mobile":"_1o8go","card-item-left":"_2UbYy","item-name":"_2O-aZ","item-detail":"_2loFe","item-date":"_30WPs","item-date-content":"_3_y55","d-flex":"_2gs_1","avatar_user":"_2dmGO","Active":"_mDcuT","btn-function":"_3EDgp","create-btn":"_1kzNO","survey-detail":"_sUhZ8","item-container":"_2qryv","note-external":"_14lu9","survey-detail-container":"_15g_8","header-survey-detail-container":"_3BGQJ","header-survey-detail":"_2SIwO","icon-back-page":"_201Pv","content-header":"_27F1A","survey-title":"_38J_Y","responses-distribution":"_2O95s","title":"_323e1","description":"_1ywJv","list-check-question":"_2A5F5","select-question":"_31mNR","dot":"_2o4ch","question":"_32tXe","all-student-survey":"_1DCU1","table-row":"_1xURt","row_name":"_1-RrR","external-item":"_yUM54","ratings-of-questions":"_jZ0le","show-result":"_2BG_r","chart-result-for-question":"_8rFML","parameter":"_1wNWz","chart":"_1kBzz","avr":"_qp8ji","dot-response":"_1077M","dot-not-response":"_2UF2X","name":"_3_LvE","action":"_2c44-","header-conduct":"_10sx7","student-detail":"_1_3mO","student-name":"_2LqWm","survey-name":"_3UCPo","conduct-body":"_DYbsM","response-question":"_3AspT","title-model":"_sBYeh","total-cards":"_226Xa","card":"_26L9J","response-body":"_2Jro6","student":"_110BP","date":"_3_R2V","answer":"_3bE6B","none-answer":"_rpgyU","middle":"_o77ny","schedule-now":"_2Yw-8","icon-add-header":"_2Kx7K","stepper":"_2gBcx","step-label":"_29r7C","data-grid-content":"_S6qJf","block-filter":"_3G9hM","box-additional-title":"_2X9Jp","box-input":"_3rAlw","input-title":"_1t-ew","sup-require":"_127ug","select-type":"_39Pe0","option-select":"_3l2rX","icon-btn":"_1U4_o","flex-between":"_3N0gk","item-answer":"_1wxm8","pointer":"_1impf","model-confirm-publish":"_1fJqh","btn-cancel":"_2hkjO","btn-send-survey":"_35Eob","content-confirm-model":"_1AGgC","dialog-title":"_P13B5","box-email-content":"_K6IV_","title-content":"_2zVsR","input-mail-content":"_4LQl0","list-chip-email":"_1pnTi","ml-10":"_3zNl_","block-review-detail":"_3Mxsk","title-block":"_1Hlzq","block-content-review":"_1_IJz","box-content":"_10n8V","block-template-review":"_1a4d0","block-template-left":"_1gxXn","name-template-left":"_3lqRv","select-right":"_1JGN0","description-template-left":"_1eDdk","box-chip-email":"_3h9kj","chip-email-default":"_VsWYi","chip-email-checked":"_BUKX3","flex-item":"_8JBBm","mr-10":"_2vE69","mt-20":"_3L6mW","box-input-csv":"_LtMqP","list-favorite":"_1AOoP","box-detail":"_TNG6A","btn-duplicate":"_3VnVk","box-favorite":"_2R-sC","title-box-model":"_kEA9I","title-btn":"_3NklC","dialog-select-template":"_1kmzj","box-content-select":"_1oKc7","title-content-select":"_37Eba","description-content-select":"_3n2O7","check-box-btn":"_2aVc5","box-function":"_236kC","box-function-flex":"_3V_4A","cancel_btn":"_2Amhx","confirm_btn":"_2cQ-z","confirm_btn_title":"_jrHrd","confirm_btn_icon":"_3ffxW","box-header-select":"_1QaLZ","header-select-name":"_19Ocm","header-select-icon":"_2395X","header-select-detail":"_1xPGA","list-question-select":"_34o71","box-collapse-content-item":"_24WcT","innerHtml":"_4UX5F","mid_btn":"_3dpTl","remove_btn":"_S5Gp1","remove_btn_title":"_Q9gsG","remove_btn_icon":"_2JtOZ","create-survey-container":"_27d_U","box-create-survey":"_wrchf","box-form-input":"_iNn4Q","form-input-title":"_3oJQ4","box-list-favorite":"_fQinS","box-collapse":"_36ICA","box-collapse-top":"_1INVs","box-collapse-right":"_3eHr8","collapse-chip":"_DSikh","collapse-left-title":"_2Js3a","additional-box":"_1YKr1","header-item":"_34l2H","filter-desktop":"_29rlV","title-filter":"_3qwGK","block-dashboard":"_2n_zv","filter-wrapper-mobile":"_FjhpG","gap-8px":"_4SQcs","model-link-survey":"_ui5uS","dropdown-chart-header":"_2J0Qv","dropdown-select-category":"_oWXgG","dropdown-select-category-text-field":"_2Pxw3","title-bar-chart":"_2L5Gw","header-bar-description":"_1owaM","list-answer-text":"_uFliG","item-input-answer":"_1ZQW6","answer-head":"_1PFu3","answer-body":"_o_0uS"};
48516
+ var styles$6 = {"dashboard-card":"_3U9cF","quantity-table":"_3lYP4","label-chart":"_EIKHR","size-icon":"_3waCS","survey-dashboard-chart":"_Dr0mP","survey-donut-chart":"_2aFDQ","size-arrow":"_36sKX","color-down":"_1TjNf","color-up":"_i4rwq","box-filter":"_BlYR7","title-card":"_3fBK1","value-card":"_2w6yc","deviant-card":"_1aq6C","filter-card":"_2lX51","box-skill-item":"_jGO7A","numerical-order":"_2dXys","backoround-top-skill":"_3-8WB","color-filter":"_5QHKk","btn-filter":"_2UyJG","block-collapse":"_1SL-6","form-date-picker":"_pKQ8e","bock-filter-left":"_2eZGm","bock-filter-right":"_dz04Q","form-filter-right":"_OhjkA","form-filter-left":"_-q4tF","bock-filter-wrap":"_nukn6","title-card-box":"_2ysrj","box-item":"_37HdU","image-no-data":"_-jYtE","image-grade":"_2FOHk","chart-data":"_38Xgv","apexcharts-datalabels":"_3m9ET","apexcharts-pie-label":"_3QJAM","image-custom":"_11W3J","image-special-need":"_2-frJ","title-dashboard":"_1_YyD","box-chart":"_xbK6p","block-filter-right":"_11sYZ","shadow-lg":"_rFfwe","chart-header-wrapper":"_zLI7s","devide-component":"_OoZLR","header-chart":"_3mzht","header-left":"_2gXQT","icon-chart":"_3XABq","header-right":"_1FHsv","header-title":"_2JBD5","button-export":"_2OEd7","button-content":"_2nyRe","button-icon":"_31EdD","icon-config":"_TmymT","cursor-pointer":"_3X_ow","btn-show-chart":"_1qdL4","checkbox-chart":"_PghQI","column-chart-percent":"_12jqi","chart-background":"_2rwg5","custom-marker":"_3iwnG","mark-custom":"_rKYWD","item-legend":"_n_lnI","label-legend-custom":"_3hlTa","mark-legend":"_1LGIl","percent":"_1mr1m","listItem":"_E_ciE","item":"_27ojF","student-by-age":"_2KJYt","total-student":"_hEgnv","pie-chart":"_34-k0","options-gender":"_119UL","legend":"_tlvnI","text-lengend":"_2Ehxf","student-by-grade":"_L1RnZ","bubble-chart-custom":"_18zab","x-axis-custom-wrap":"_1NRsG","axis-content":"_1jDpB","legend-wrap":"_93MRp","list-percent":"_3ipHU","percent-item":"_35mGN","chart-custom":"_1769M","chart-buddle":"_ton1p","title-grade":"_2LTMk","title-modal":"_3f2-D","header-desc-modal":"_19k86","form-checkbox":"_2ZpLB","checkbox-content":"_jLDZ4","btn-export":"_2sMK7","title-chart":"_1E7vX","image-logo":"_3Xggx","chart-to-canvas":"_3zQW_","box-chart-title":"_2HMn5","chart-view-dashboard":"_1qtzK","chart-left":"_g4q-z","chart-right":"_9ibzA","block-header-chart":"_1s7DG","item-checkbox":"_5wSJP","check-box":"_1h1ro","legend-pie-custom":"_2MTrM","legend-item":"_2kriq","color-box":"_jOIdn","filter-mobile-block":"_1bZCU","block-list-survey":"_o4v-c","block-total":"_29u03","list-card-right":"_3ejRU","filter-select":"_vqpb6","box-filter-left":"_1ezUu","filter-item":"_PC1a0","btn-favorite-text":"_3c_Kk","box-filter-right":"_2K4jy","search-input-icon":"_1iL4v","inputInput":"_1nxNR","filter-mobile":"_dMKSa","table-desktop":"_1-idZ","table-container":"_1as7O","data-grid":"_1ntGw","MuiDataGrid-columnSeparator":"_1JGzo","table-wrapper":"_3sNZT","table-border":"_AHatm","time-Date":"_151GI","time-Hours-Minute":"_1UUgM","table-class-type":"_12jAe","action-view":"_czvcm","content":"_2q8Ws","icon":"_1Sx--","btn-open":"_1xbHh","date-schedule":"_2Tge5","row-status":"_2UPVe","pending":"_1MGr4","replied":"_265aN","actionneeded":"_7_XMK","actionneed":"_UDgEY","bg-yellow":"_2G1Sl","bg-green":"_rdCKZ","bg-red":"_1QgHJ","noscheduled":"_17I8u","scheduled":"_PpJW1","completed":"_Y0Hbr","notstartyet":"_2KdUe","table-title":"_343Lm","table-status":"_32Wr6","Close":"_3fWFw","table-status-mobile":"_2WxS_","checked-favorite":"_t8SuG","pagination":"_3CBqu","table-mobile":"_2PKkK","button-mobile":"_2bwSu","action-wrapper":"_N4cuK","action-item":"_2wFbD","card-item-mobile":"_1o8go","card-item-left":"_2UbYy","item-name":"_2O-aZ","item-detail":"_2loFe","item-date":"_30WPs","item-date-content":"_3_y55","d-flex":"_2gs_1","avatar_user":"_2dmGO","Active":"_mDcuT","btn-function":"_3EDgp","create-btn":"_1kzNO","survey-detail":"_sUhZ8","item-container":"_2qryv","note-external":"_14lu9","survey-detail-container":"_15g_8","header-survey-detail-container":"_3BGQJ","header-survey-detail":"_2SIwO","icon-back-page":"_201Pv","content-header":"_27F1A","survey-title":"_38J_Y","responses-distribution":"_2O95s","title":"_323e1","description":"_1ywJv","list-check-question":"_2A5F5","select-question":"_31mNR","dot":"_2o4ch","question":"_32tXe","all-student-survey":"_1DCU1","table-row":"_1xURt","row_name":"_1-RrR","external-item":"_yUM54","ratings-of-questions":"_jZ0le","show-result":"_2BG_r","chart-result-for-question":"_8rFML","parameter":"_1wNWz","chart":"_1kBzz","avr":"_qp8ji","dot-response":"_1077M","dot-not-response":"_2UF2X","name":"_3_LvE","action":"_2c44-","header-conduct":"_10sx7","student-detail":"_1_3mO","student-name":"_2LqWm","survey-name":"_3UCPo","conduct-body":"_DYbsM","response-question":"_3AspT","title-model":"_sBYeh","total-cards":"_226Xa","card":"_26L9J","response-body":"_2Jro6","student":"_110BP","date":"_3_R2V","answer":"_3bE6B","none-answer":"_rpgyU","middle":"_o77ny","schedule-now":"_2Yw-8","icon-add-header":"_2Kx7K","stepper":"_2gBcx","step-label":"_29r7C","data-grid-content":"_S6qJf","block-filter":"_3G9hM","box-additional-title":"_2X9Jp","box-input":"_3rAlw","input-title":"_1t-ew","sup-require":"_127ug","select-type":"_39Pe0","option-select":"_3l2rX","icon-btn":"_1U4_o","flex-between":"_3N0gk","item-answer":"_1wxm8","pointer":"_1impf","model-confirm-publish":"_1fJqh","btn-cancel":"_2hkjO","btn-send-survey":"_35Eob","content-confirm-model":"_1AGgC","content-confirm-share-model":"_SRS15","dialog-title":"_P13B5","box-email-content":"_K6IV_","title-content":"_2zVsR","input-mail-content":"_4LQl0","list-chip-email":"_1pnTi","ml-10":"_3zNl_","block-review-detail":"_3Mxsk","title-block":"_1Hlzq","block-content-review":"_1_IJz","box-content":"_10n8V","block-template-review":"_1a4d0","block-template-left":"_1gxXn","name-template-left":"_3lqRv","select-right":"_1JGN0","description-template-left":"_1eDdk","box-chip-email":"_3h9kj","chip-email-default":"_VsWYi","chip-email-checked":"_BUKX3","flex-item":"_8JBBm","mr-10":"_2vE69","mt-20":"_3L6mW","box-input-csv":"_LtMqP","list-favorite":"_1AOoP","box-detail":"_TNG6A","btn-duplicate":"_3VnVk","box-favorite":"_2R-sC","title-box-model":"_kEA9I","title-btn":"_3NklC","dialog-select-template":"_1kmzj","box-content-select":"_1oKc7","title-content-select":"_37Eba","description-content-select":"_3n2O7","check-box-btn":"_2aVc5","box-function":"_236kC","box-function-flex":"_3V_4A","cancel_btn":"_2Amhx","confirm_btn":"_2cQ-z","confirm_btn_title":"_jrHrd","confirm_btn_icon":"_3ffxW","box-header-select":"_1QaLZ","header-select-name":"_19Ocm","header-select-icon":"_2395X","header-select-detail":"_1xPGA","list-question-select":"_34o71","box-collapse-content-item":"_24WcT","innerHtml":"_4UX5F","mid_btn":"_3dpTl","remove_btn":"_S5Gp1","remove_btn_title":"_Q9gsG","remove_btn_icon":"_2JtOZ","create-survey-container":"_27d_U","box-create-survey":"_wrchf","box-form-input":"_iNn4Q","form-input-title":"_3oJQ4","box-list-favorite":"_fQinS","box-collapse":"_36ICA","box-collapse-top":"_1INVs","box-collapse-right":"_3eHr8","collapse-chip":"_DSikh","collapse-left-title":"_2Js3a","additional-box":"_1YKr1","header-item":"_34l2H","filter-desktop":"_29rlV","title-filter":"_3qwGK","block-dashboard":"_2n_zv","filter-wrapper-mobile":"_FjhpG","gap-8px":"_4SQcs","model-link-survey":"_ui5uS","dropdown-chart-header":"_2J0Qv","dropdown-select-category":"_oWXgG","dropdown-select-category-text-field":"_2Pxw3","title-bar-chart":"_2L5Gw","header-bar-description":"_1owaM","list-answer-text":"_uFliG","item-input-answer":"_1ZQW6","answer-head":"_1PFu3","answer-body":"_o_0uS"};
48661
48517
 
48662
48518
  var LegalGenderType$2;
48663
48519
 
@@ -69153,7 +69009,7 @@ var ConfirmShareSurvey = function ConfirmShareSurvey(_ref) {
69153
69009
  },
69154
69010
  className: styles$6["model-confirm-publish"] + " " + styles$6[classFontSize]
69155
69011
  }, React__default.createElement(core$1.DialogContent, null, React__default.createElement(core$1.Typography, {
69156
- className: "" + styles$6["content-confirm-model"]
69012
+ className: styles$6["content-confirm-model"] + " " + styles$6["content-confirm-share-model"]
69157
69013
  }, t("your_survey_was_sent_to_x_students_and_y_staff_members_you_can_keep_track_of_the_results_on_our_survey_dashboard", {
69158
69014
  numberStudent: numberStudent,
69159
69015
  numberStaff: numberStaff
@@ -75004,7 +74860,7 @@ var Footer = function Footer(_ref) {
75004
74860
  className: "" + styles$c["privacy-policy-left"]
75005
74861
  }, React__default.createElement(core$1.Typography, {
75006
74862
  className: "" + styles$c["all-rights-reserved"]
75007
- }, "\xA9 2019-2023 MARIO Framework, LLC, All Rights Reserved"), React__default.createElement(core$1.Typography, {
74863
+ }, "\xA9 2019-2023 MARIO Education, LLC, All Rights Reserved"), React__default.createElement(core$1.Typography, {
75008
74864
  className: "" + styles$c["policy-link"]
75009
74865
  }, "Privacy Policy")), !isStudent && React__default.createElement(core$1.Grid, {
75010
74866
  className: "" + styles$c["privacy-policy-right"]
@@ -75969,7 +75825,7 @@ var SurveyQuestion = function SurveyQuestion() {
75969
75825
  className: stylesDetail['survey-question-detail-tiny-editor']
75970
75826
  }, React__default.createElement(marioCore.RequiredLabel, {
75971
75827
  text: t("question_text")
75972
- }), (values.text || !id) && !!tinyMCEKey && React__default.createElement(tinymceReact.Editor, {
75828
+ }), !!tinyMCEKey && React__default.createElement(tinymceReact.Editor, {
75973
75829
  apiKey: tinyMCEKey || TINY_MCE_API_KEY,
75974
75830
  value: values.text,
75975
75831
  init: _extends({}, marioCore.editorConfig.question, {