mario-education 2.4.475-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 +4 -0
- package/dist/index.js +41 -179
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +41 -179
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -40915,8 +40915,8 @@ var compat = function compat(element) {
|
|
|
40915
40915
|
return;
|
|
40916
40916
|
}
|
|
40917
40917
|
|
|
40918
|
-
var value = element.value
|
|
40919
|
-
|
|
40918
|
+
var value = element.value;
|
|
40919
|
+
var parent = element.parent;
|
|
40920
40920
|
var isImplicitRule = element.column === parent.column && element.line === parent.line;
|
|
40921
40921
|
|
|
40922
40922
|
while (parent.type !== 'rule') {
|
|
@@ -41174,35 +41174,14 @@ var prefixer = function prefixer(element, index, children, callback) {
|
|
|
41174
41174
|
}
|
|
41175
41175
|
};
|
|
41176
41176
|
|
|
41177
|
-
/* import type { StylisPlugin } from './types' */
|
|
41178
|
-
|
|
41179
|
-
/*
|
|
41180
|
-
export type Options = {
|
|
41181
|
-
nonce?: string,
|
|
41182
|
-
stylisPlugins?: StylisPlugin[],
|
|
41183
|
-
key: string,
|
|
41184
|
-
container?: HTMLElement,
|
|
41185
|
-
speedy?: boolean,
|
|
41186
|
-
prepend?: boolean,
|
|
41187
|
-
insertionPoint?: HTMLElement
|
|
41188
|
-
}
|
|
41189
|
-
*/
|
|
41190
|
-
|
|
41191
41177
|
var getServerStylisCache = isBrowser ? undefined : weakMemoize(function () {
|
|
41192
41178
|
return memoize(function () {
|
|
41193
|
-
|
|
41194
|
-
return function (name) {
|
|
41195
|
-
return cache[name];
|
|
41196
|
-
};
|
|
41179
|
+
return {};
|
|
41197
41180
|
});
|
|
41198
41181
|
});
|
|
41199
41182
|
var defaultStylisPlugins = [prefixer];
|
|
41200
41183
|
|
|
41201
|
-
var createCache = function
|
|
41202
|
-
/*: EmotionCache */
|
|
41203
|
-
createCache(options
|
|
41204
|
-
/*: Options */
|
|
41205
|
-
) {
|
|
41184
|
+
var createCache = function createCache(options) {
|
|
41206
41185
|
var key = options.key;
|
|
41207
41186
|
|
|
41208
41187
|
if (isBrowser && key === 'css') {
|
|
@@ -41211,9 +41190,7 @@ createCache(options
|
|
|
41211
41190
|
// note this very very intentionally targets all style elements regardless of the key to ensure
|
|
41212
41191
|
// that creating a cache works inside of render of a React component
|
|
41213
41192
|
|
|
41214
|
-
Array.prototype.forEach.call(ssrStyles, function (node
|
|
41215
|
-
/*: HTMLStyleElement */
|
|
41216
|
-
) {
|
|
41193
|
+
Array.prototype.forEach.call(ssrStyles, function (node) {
|
|
41217
41194
|
// we want to only move elements which have a space in the data-emotion attribute value
|
|
41218
41195
|
// because that indicates that it is an Emotion 11 server-side rendered style elements
|
|
41219
41196
|
// while we will already ignore Emotion 11 client-side inserted styles because of the :not([data-s]) part in the selector
|
|
@@ -41235,17 +41212,13 @@ createCache(options
|
|
|
41235
41212
|
|
|
41236
41213
|
var inserted = {};
|
|
41237
41214
|
var container;
|
|
41238
|
-
/* : Node */
|
|
41239
|
-
|
|
41240
41215
|
var nodesToHydrate = [];
|
|
41241
41216
|
|
|
41242
41217
|
if (isBrowser) {
|
|
41243
41218
|
container = options.container || document.head;
|
|
41244
41219
|
Array.prototype.forEach.call( // this means we will ignore elements which don't have a space in them which
|
|
41245
41220
|
// means that the style elements we're looking at are only Emotion 11 server-rendered style elements
|
|
41246
|
-
document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node
|
|
41247
|
-
/*: HTMLStyleElement */
|
|
41248
|
-
) {
|
|
41221
|
+
document.querySelectorAll("style[data-emotion^=\"" + key + " \"]"), function (node) {
|
|
41249
41222
|
var attrib = node.getAttribute("data-emotion").split(' ');
|
|
41250
41223
|
|
|
41251
41224
|
for (var i = 1; i < attrib.length; i++) {
|
|
@@ -41257,17 +41230,10 @@ createCache(options
|
|
|
41257
41230
|
}
|
|
41258
41231
|
|
|
41259
41232
|
var _insert;
|
|
41260
|
-
/*: (
|
|
41261
|
-
selector: string,
|
|
41262
|
-
serialized: SerializedStyles,
|
|
41263
|
-
sheet: StyleSheet,
|
|
41264
|
-
shouldCache: boolean
|
|
41265
|
-
) => string | void */
|
|
41266
|
-
|
|
41267
41233
|
|
|
41268
41234
|
var omnipresentPlugins = [compat, removeLabel];
|
|
41269
41235
|
|
|
41270
|
-
if (
|
|
41236
|
+
if (!getServerStylisCache) {
|
|
41271
41237
|
var currentSheet;
|
|
41272
41238
|
var finalizingPlugins = [le, pe(function (rule) {
|
|
41273
41239
|
currentSheet.insert(rule);
|
|
@@ -41278,17 +41244,7 @@ createCache(options
|
|
|
41278
41244
|
return oe(ce(styles), serializer);
|
|
41279
41245
|
};
|
|
41280
41246
|
|
|
41281
|
-
_insert = function
|
|
41282
|
-
/*: void */
|
|
41283
|
-
insert(selector
|
|
41284
|
-
/*: string */
|
|
41285
|
-
, serialized
|
|
41286
|
-
/*: SerializedStyles */
|
|
41287
|
-
, sheet
|
|
41288
|
-
/*: StyleSheet */
|
|
41289
|
-
, shouldCache
|
|
41290
|
-
/*: boolean */
|
|
41291
|
-
) {
|
|
41247
|
+
_insert = function insert(selector, serialized, sheet, shouldCache) {
|
|
41292
41248
|
currentSheet = sheet;
|
|
41293
41249
|
|
|
41294
41250
|
stylis(selector ? selector + "{" + serialized.styles + "}" : serialized.styles);
|
|
@@ -41308,13 +41264,7 @@ createCache(options
|
|
|
41308
41264
|
|
|
41309
41265
|
var serverStylisCache = getServerStylisCache(stylisPlugins)(key);
|
|
41310
41266
|
|
|
41311
|
-
var getRules = function
|
|
41312
|
-
/*: string */
|
|
41313
|
-
getRules(selector
|
|
41314
|
-
/*: string */
|
|
41315
|
-
, serialized
|
|
41316
|
-
/*: SerializedStyles */
|
|
41317
|
-
) {
|
|
41267
|
+
var getRules = function getRules(selector, serialized) {
|
|
41318
41268
|
var name = serialized.name;
|
|
41319
41269
|
|
|
41320
41270
|
if (serverStylisCache[name] === undefined) {
|
|
@@ -41324,17 +41274,7 @@ createCache(options
|
|
|
41324
41274
|
return serverStylisCache[name];
|
|
41325
41275
|
};
|
|
41326
41276
|
|
|
41327
|
-
_insert = function
|
|
41328
|
-
/*: string | void */
|
|
41329
|
-
_insert(selector
|
|
41330
|
-
/*: string */
|
|
41331
|
-
, serialized
|
|
41332
|
-
/*: SerializedStyles */
|
|
41333
|
-
, sheet
|
|
41334
|
-
/*: StyleSheet */
|
|
41335
|
-
, shouldCache
|
|
41336
|
-
/*: boolean */
|
|
41337
|
-
) {
|
|
41277
|
+
_insert = function _insert(selector, serialized, sheet, shouldCache) {
|
|
41338
41278
|
var name = serialized.name;
|
|
41339
41279
|
var rules = getRules(selector, serialized);
|
|
41340
41280
|
|
|
@@ -41364,9 +41304,7 @@ createCache(options
|
|
|
41364
41304
|
};
|
|
41365
41305
|
}
|
|
41366
41306
|
|
|
41367
|
-
var cache
|
|
41368
|
-
/*: EmotionCache */
|
|
41369
|
-
= {
|
|
41307
|
+
var cache = {
|
|
41370
41308
|
key: key,
|
|
41371
41309
|
sheet: new StyleSheet({
|
|
41372
41310
|
key: key,
|
|
@@ -42023,10 +41961,7 @@ var isDevelopment$2 = false;
|
|
|
42023
41961
|
|
|
42024
41962
|
var isBrowser$3 = typeof document !== 'undefined';
|
|
42025
41963
|
|
|
42026
|
-
/*
|
|
42027
|
-
var EmotionCacheContext
|
|
42028
|
-
/*: React.Context<EmotionCache | null> */
|
|
42029
|
-
= /* #__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
|
|
42030
41965
|
// because this module is primarily intended for the browser and node
|
|
42031
41966
|
// but it's also required in react native and similar environments sometimes
|
|
42032
41967
|
// and we could have a special build just for that
|
|
@@ -42036,18 +41971,8 @@ typeof HTMLElement !== 'undefined' ? /* #__PURE__ */createCache({
|
|
|
42036
41971
|
key: 'css'
|
|
42037
41972
|
}) : null);
|
|
42038
41973
|
|
|
42039
|
-
var withEmotionCache = function withEmotionCache
|
|
42040
|
-
|
|
42041
|
-
(func
|
|
42042
|
-
/*: (props: Props, cache: EmotionCache, ref: Ref) => React.Node */
|
|
42043
|
-
)
|
|
42044
|
-
/*: React.AbstractComponent<Props> */
|
|
42045
|
-
{
|
|
42046
|
-
return /*#__PURE__*/React.forwardRef(function (props
|
|
42047
|
-
/*: Props */
|
|
42048
|
-
, ref
|
|
42049
|
-
/*: Ref */
|
|
42050
|
-
) {
|
|
41974
|
+
var withEmotionCache = function withEmotionCache(func) {
|
|
41975
|
+
return /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
42051
41976
|
// the cache will never be null in the browser
|
|
42052
41977
|
var cache = React.useContext(EmotionCacheContext);
|
|
42053
41978
|
return func(props, cache, ref);
|
|
@@ -42055,16 +41980,8 @@ var withEmotionCache = function withEmotionCache
|
|
|
42055
41980
|
};
|
|
42056
41981
|
|
|
42057
41982
|
if (!isBrowser$3) {
|
|
42058
|
-
withEmotionCache = function withEmotionCache
|
|
42059
|
-
|
|
42060
|
-
(func
|
|
42061
|
-
/*: (props: Props, cache: EmotionCache) => React.Node */
|
|
42062
|
-
)
|
|
42063
|
-
/*: React.StatelessFunctionalComponent<Props> */
|
|
42064
|
-
{
|
|
42065
|
-
return function (props
|
|
42066
|
-
/*: Props */
|
|
42067
|
-
) {
|
|
41983
|
+
withEmotionCache = function withEmotionCache(func) {
|
|
41984
|
+
return function (props) {
|
|
42068
41985
|
var cache = React.useContext(EmotionCacheContext);
|
|
42069
41986
|
|
|
42070
41987
|
if (cache === null) {
|
|
@@ -42091,19 +42008,13 @@ var ThemeContext = /* #__PURE__ */React.createContext({});
|
|
|
42091
42008
|
var hasOwn = {}.hasOwnProperty;
|
|
42092
42009
|
|
|
42093
42010
|
var typePropName = '__EMOTION_TYPE_PLEASE_DO_NOT_USE__';
|
|
42094
|
-
var createEmotionProps = function createEmotionProps(type
|
|
42095
|
-
/*: React.ElementType */
|
|
42096
|
-
, props
|
|
42097
|
-
/*: Object */
|
|
42098
|
-
) {
|
|
42011
|
+
var createEmotionProps = function createEmotionProps(type, props) {
|
|
42099
42012
|
|
|
42100
|
-
var newProps
|
|
42101
|
-
/*: any */
|
|
42102
|
-
= {};
|
|
42013
|
+
var newProps = {};
|
|
42103
42014
|
|
|
42104
|
-
for (var
|
|
42105
|
-
if (hasOwn.call(props,
|
|
42106
|
-
newProps[
|
|
42015
|
+
for (var _key in props) {
|
|
42016
|
+
if (hasOwn.call(props, _key)) {
|
|
42017
|
+
newProps[_key] = props[_key];
|
|
42107
42018
|
}
|
|
42108
42019
|
}
|
|
42109
42020
|
|
|
@@ -42140,9 +42051,7 @@ var Insertion = function Insertion(_ref) {
|
|
|
42140
42051
|
return null;
|
|
42141
42052
|
};
|
|
42142
42053
|
|
|
42143
|
-
var Emotion = /* #__PURE__ */withEmotionCache(
|
|
42144
|
-
/* <any, any> */
|
|
42145
|
-
function (props, cache, ref) {
|
|
42054
|
+
var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
|
|
42146
42055
|
var cssProp = props.css; // so that using `css` from `emotion` and passing the result to the css prop works
|
|
42147
42056
|
// not passing the registered cache to serializeStyles because it would
|
|
42148
42057
|
// make certain babel optimisations not possible
|
|
@@ -42166,9 +42075,9 @@ function (props, cache, ref) {
|
|
|
42166
42075
|
className += cache.key + "-" + serialized.name;
|
|
42167
42076
|
var newProps = {};
|
|
42168
42077
|
|
|
42169
|
-
for (var
|
|
42170
|
-
if (hasOwn.call(props,
|
|
42171
|
-
newProps[
|
|
42078
|
+
for (var _key2 in props) {
|
|
42079
|
+
if (hasOwn.call(props, _key2) && _key2 !== 'css' && _key2 !== typePropName && (!isDevelopment$2 )) {
|
|
42080
|
+
newProps[_key2] = props[_key2];
|
|
42172
42081
|
}
|
|
42173
42082
|
}
|
|
42174
42083
|
|
|
@@ -42202,15 +42111,8 @@ module.exports = _extends, module.exports.__esModule = true, module.exports["def
|
|
|
42202
42111
|
|
|
42203
42112
|
unwrapExports(_extends_1);
|
|
42204
42113
|
|
|
42205
|
-
var jsx
|
|
42206
|
-
|
|
42207
|
-
= function jsx
|
|
42208
|
-
/*: typeof React.createElement */
|
|
42209
|
-
(type
|
|
42210
|
-
/*: React.ElementType */
|
|
42211
|
-
, props
|
|
42212
|
-
/*: Object */
|
|
42213
|
-
) {
|
|
42114
|
+
var jsx = function jsx(type, props) {
|
|
42115
|
+
// eslint-disable-next-line prefer-rest-params
|
|
42214
42116
|
var args = arguments;
|
|
42215
42117
|
|
|
42216
42118
|
if (props == null || !hasOwn.call(props, 'css')) {
|
|
@@ -42229,11 +42131,13 @@ var jsx
|
|
|
42229
42131
|
return React.createElement.apply(null, createElementArgArray);
|
|
42230
42132
|
};
|
|
42231
42133
|
|
|
42232
|
-
|
|
42134
|
+
(function (_jsx) {
|
|
42135
|
+
var JSX;
|
|
42233
42136
|
|
|
42234
|
-
function
|
|
42235
|
-
|
|
42236
|
-
|
|
42137
|
+
(function (_JSX) {})(JSX || (JSX = _jsx.JSX || (_jsx.JSX = {})));
|
|
42138
|
+
})(jsx || (jsx = {}));
|
|
42139
|
+
|
|
42140
|
+
function css() {
|
|
42237
42141
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
42238
42142
|
args[_key] = arguments[_key];
|
|
42239
42143
|
}
|
|
@@ -42241,18 +42145,7 @@ function css()
|
|
|
42241
42145
|
return serializeStyles(args);
|
|
42242
42146
|
}
|
|
42243
42147
|
|
|
42244
|
-
|
|
42245
|
-
type Keyframes = {|
|
|
42246
|
-
name: string,
|
|
42247
|
-
styles: string,
|
|
42248
|
-
anim: 1,
|
|
42249
|
-
toString: () => string
|
|
42250
|
-
|} & string
|
|
42251
|
-
*/
|
|
42252
|
-
|
|
42253
|
-
var keyframes = function
|
|
42254
|
-
/*: Keyframes */
|
|
42255
|
-
keyframes() {
|
|
42148
|
+
function keyframes() {
|
|
42256
42149
|
var insertable = css.apply(void 0, arguments);
|
|
42257
42150
|
var name = "animation-" + insertable.name;
|
|
42258
42151
|
return {
|
|
@@ -42263,23 +42156,9 @@ keyframes() {
|
|
|
42263
42156
|
return "_EMO_" + this.name + "_" + this.styles + "_EMO_";
|
|
42264
42157
|
}
|
|
42265
42158
|
};
|
|
42266
|
-
}
|
|
42267
|
-
|
|
42268
|
-
/*
|
|
42269
|
-
type ClassNameArg =
|
|
42270
|
-
| string
|
|
42271
|
-
| boolean
|
|
42272
|
-
| { [key: string]: boolean }
|
|
42273
|
-
| Array<ClassNameArg>
|
|
42274
|
-
| null
|
|
42275
|
-
| void
|
|
42276
|
-
*/
|
|
42159
|
+
}
|
|
42277
42160
|
|
|
42278
|
-
var classnames = function
|
|
42279
|
-
/*: string */
|
|
42280
|
-
classnames(args
|
|
42281
|
-
/*: Array<ClassNameArg> */
|
|
42282
|
-
) {
|
|
42161
|
+
var classnames = function classnames(args) {
|
|
42283
42162
|
var len = args.length;
|
|
42284
42163
|
var i = 0;
|
|
42285
42164
|
var cls = '';
|
|
@@ -42327,13 +42206,7 @@ classnames(args
|
|
|
42327
42206
|
return cls;
|
|
42328
42207
|
};
|
|
42329
42208
|
|
|
42330
|
-
function merge(registered
|
|
42331
|
-
/*: Object */
|
|
42332
|
-
, css
|
|
42333
|
-
/*: (...args: Array<any>) => string */
|
|
42334
|
-
, className
|
|
42335
|
-
/*: string */
|
|
42336
|
-
) {
|
|
42209
|
+
function merge(registered, css, className) {
|
|
42337
42210
|
var registeredStyles = [];
|
|
42338
42211
|
var rawClassName = getRegisteredStyles(registered, registeredStyles, className);
|
|
42339
42212
|
|
|
@@ -42375,19 +42248,8 @@ var Insertion$1 = function Insertion(_ref) {
|
|
|
42375
42248
|
|
|
42376
42249
|
return null;
|
|
42377
42250
|
};
|
|
42378
|
-
|
|
42379
|
-
|
|
42380
|
-
children: ({
|
|
42381
|
-
css: (...args: any) => string,
|
|
42382
|
-
cx: (...args: Array<ClassNameArg>) => string,
|
|
42383
|
-
theme: Object
|
|
42384
|
-
}) => React.Node
|
|
42385
|
-
} */
|
|
42386
|
-
|
|
42387
|
-
|
|
42388
|
-
var ClassNames
|
|
42389
|
-
/*: React.AbstractComponent<Props>*/
|
|
42390
|
-
= /* #__PURE__ */withEmotionCache(function (props, cache) {
|
|
42251
|
+
|
|
42252
|
+
var ClassNames = /* #__PURE__ */withEmotionCache(function (props, cache) {
|
|
42391
42253
|
var hasRendered = false;
|
|
42392
42254
|
var serializedArr = [];
|
|
42393
42255
|
|
|
@@ -48651,7 +48513,7 @@ var AdminTraining = function AdminTraining() {
|
|
|
48651
48513
|
})));
|
|
48652
48514
|
};
|
|
48653
48515
|
|
|
48654
|
-
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"};
|
|
48655
48517
|
|
|
48656
48518
|
var LegalGenderType$2;
|
|
48657
48519
|
|
|
@@ -69147,7 +69009,7 @@ var ConfirmShareSurvey = function ConfirmShareSurvey(_ref) {
|
|
|
69147
69009
|
},
|
|
69148
69010
|
className: styles$6["model-confirm-publish"] + " " + styles$6[classFontSize]
|
|
69149
69011
|
}, React__default.createElement(core$1.DialogContent, null, React__default.createElement(core$1.Typography, {
|
|
69150
|
-
className: "" + styles$6["content-confirm-model"]
|
|
69012
|
+
className: styles$6["content-confirm-model"] + " " + styles$6["content-confirm-share-model"]
|
|
69151
69013
|
}, t("your_survey_was_sent_to_x_students_and_y_staff_members_you_can_keep_track_of_the_results_on_our_survey_dashboard", {
|
|
69152
69014
|
numberStudent: numberStudent,
|
|
69153
69015
|
numberStaff: numberStaff
|