survey-react-ui 1.12.53 → 1.12.55

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.
@@ -1,10 +1,10 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v2.3.6
2
+ * surveyjs - Survey JavaScript library v2.3.11
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
6
6
 
7
- import { SurveyModel, Helpers, createSvg, createPopupViewModel, CssClassBuilder, ActionDropdownViewModel, RendererFactory, doKey2ClickUp, Question, SvgRegistry, settings, createPopupModalViewModel, ScrollViewModel, doKey2ClickBlur, doKey2ClickDown, addIconsToThemeSet, SurveyProgressModel, ProgressButtonsResponsivityManager, PopupSurveyModel, ButtonGroupItemModel, LocalizableString, checkLibraryVersion } from 'survey-core';
7
+ import { SurveyModel, Helpers, createSvg, createPopupViewModel, CssClassBuilder, ActionDropdownViewModel, RendererFactory, doKey2ClickUp, SvgRegistry, settings, createPopupModalViewModel, ScrollViewModel, doKey2ClickBlur, doKey2ClickDown, addIconsToThemeSet, Question, SurveyProgressModel, ProgressButtonsResponsivityManager, PopupSurveyModel, ButtonGroupItemModel, LocalizableString, checkLibraryVersion } from 'survey-core';
8
8
  export { SurveyModel as Model, SurveyModel, SurveyWindowModel, settings, surveyLocalization, surveyStrings } from 'survey-core';
9
9
  import * as React from 'react';
10
10
  import * as ReactDOM from 'react-dom';
@@ -118,6 +118,16 @@ class SurveyElementBase extends React.Component {
118
118
  });
119
119
  }
120
120
  };
121
+ this.onArrayChangedCallback = (stateElement, options) => {
122
+ if (this.isRendering)
123
+ return;
124
+ this.changedStatePropNameValue = options.name;
125
+ this.setState((state) => {
126
+ var newState = {};
127
+ newState[options.name] = options.newValue;
128
+ return newState;
129
+ });
130
+ };
121
131
  }
122
132
  componentDidMount() {
123
133
  this.makeBaseElementsReact();
@@ -244,16 +254,7 @@ class SurveyElementBase extends React.Component {
244
254
  var val = hash[key];
245
255
  if (Array.isArray(val)) {
246
256
  var val = val;
247
- val["onArrayChanged"] = (arrayChanges) => {
248
- if (this.isRendering)
249
- return;
250
- this.changedStatePropNameValue = key;
251
- this.setState((state) => {
252
- var newState = {};
253
- newState[key] = val;
254
- return newState;
255
- });
256
- };
257
+ stateElement.addOnArrayChangedCallback(val, this.onArrayChangedCallback);
257
258
  }
258
259
  });
259
260
  stateElement.setPropertyValueCoreHandler = this.propertyValueChangedHandler;
@@ -270,7 +271,7 @@ class SurveyElementBase extends React.Component {
270
271
  var val = hash[key];
271
272
  if (Array.isArray(val)) {
272
273
  var val = val;
273
- val["onArrayChanged"] = () => { };
274
+ stateElement.removeOnArrayChangedCallback(val, this.onArrayChangedCallback);
274
275
  }
275
276
  });
276
277
  }
@@ -398,256 +399,6 @@ class SurveyQuestionUncontrolledElement extends SurveyQuestionElementBase {
398
399
  }
399
400
  }
400
401
 
401
- class SurveyRowElement extends SurveyElementBase {
402
- constructor(props) {
403
- super(props);
404
- this.element.cssClasses;
405
- this.rootRef = React.createRef();
406
- }
407
- getStateElement() {
408
- return this.element;
409
- }
410
- get element() {
411
- return this.props.element;
412
- }
413
- get index() {
414
- return this.props.index;
415
- }
416
- get row() {
417
- return this.props.row;
418
- }
419
- get survey() {
420
- return this.props.survey;
421
- }
422
- get creator() {
423
- return this.props.creator;
424
- }
425
- get css() {
426
- return this.props.css;
427
- }
428
- componentDidMount() {
429
- super.componentDidMount();
430
- if (this.rootRef.current) {
431
- (this.element).setWrapperElement(this.rootRef.current);
432
- }
433
- }
434
- componentWillUnmount() {
435
- super.componentWillUnmount();
436
- this.element.setWrapperElement(undefined);
437
- }
438
- shouldComponentUpdate(nextProps, nextState) {
439
- if (!super.shouldComponentUpdate(nextProps, nextState))
440
- return false;
441
- if (nextProps.element !== this.element) {
442
- if (nextProps.element) {
443
- nextProps.element.setWrapperElement(this.rootRef.current);
444
- }
445
- if (this.element) {
446
- this.element.setWrapperElement(undefined);
447
- }
448
- }
449
- this.element.cssClasses;
450
- return true;
451
- }
452
- renderElement() {
453
- const element = this.element;
454
- const innerElement = this.createElement(element, this.index);
455
- const css = element.cssClassesValue;
456
- const focusIn = () => {
457
- const el = element;
458
- if (el && el.isQuestion) {
459
- el.focusIn();
460
- }
461
- };
462
- return (React.createElement("div", { className: css.questionWrapper, style: element.rootStyle, "data-key": element.name + this.index, onFocus: focusIn, ref: this.rootRef }, innerElement));
463
- }
464
- createElement(element, elementIndex) {
465
- if (!this.row.isNeedRender) {
466
- return ReactElementFactory.Instance.createElement(element.skeletonComponentName, { element: element, css: this.css, });
467
- }
468
- let elementType = element.getTemplate();
469
- if (!ReactElementFactory.Instance.isElementRegistered(elementType)) {
470
- elementType = "question";
471
- }
472
- return ReactElementFactory.Instance.createElement(elementType, {
473
- element: element,
474
- creator: this.creator,
475
- survey: this.survey,
476
- css: this.css,
477
- });
478
- }
479
- }
480
-
481
- class SurveyRow extends SurveyElementBase {
482
- constructor(props) {
483
- super(props);
484
- this.rootRef = React.createRef();
485
- this.recalculateCss();
486
- }
487
- recalculateCss() {
488
- this.row.visibleElements.map(element => element.cssClasses);
489
- }
490
- getStateElement() {
491
- return this.row;
492
- }
493
- get row() {
494
- return this.props.row;
495
- }
496
- get survey() {
497
- return this.props.survey;
498
- }
499
- get creator() {
500
- return this.props.creator;
501
- }
502
- get css() {
503
- return this.props.css;
504
- }
505
- canRender() {
506
- return !!this.row && !!this.survey && !!this.creator;
507
- }
508
- renderElementContent() {
509
- const elements = this.row.visibleElements.map((element, elementIndex) => {
510
- return (React.createElement(SurveyRowElement, { element: element, index: elementIndex, row: this.row, survey: this.survey, creator: this.creator, css: this.css, key: element.id }));
511
- });
512
- return (React.createElement("div", { ref: this.rootRef, className: this.row.getRowCss() }, elements));
513
- }
514
- renderElement() {
515
- const survey = this.survey;
516
- const content = this.renderElementContent();
517
- const wrapper = ReactSurveyElementsWrapper.wrapRow(survey, content, this.row);
518
- return wrapper || content;
519
- }
520
- componentDidMount() {
521
- super.componentDidMount();
522
- var el = this.rootRef.current;
523
- if (this.rootRef.current) {
524
- this.row.setRootElement(this.rootRef.current);
525
- }
526
- if (!!el && !this.row.isNeedRender) {
527
- var rowContainerDiv = el;
528
- this.lazyRenderingTimeout = setTimeout(() => {
529
- this.row.startLazyRendering(rowContainerDiv);
530
- }, 10);
531
- }
532
- }
533
- shouldComponentUpdate(nextProps, nextState) {
534
- if (!super.shouldComponentUpdate(nextProps, nextState))
535
- return false;
536
- if (nextProps.row !== this.row) {
537
- nextProps.row.isNeedRender = this.row.isNeedRender;
538
- nextProps.row.setRootElement(this.rootRef.current);
539
- this.row.setRootElement(undefined);
540
- this.stopLazyRendering();
541
- }
542
- this.recalculateCss();
543
- return true;
544
- }
545
- stopLazyRendering() {
546
- clearTimeout(this.lazyRenderingTimeout);
547
- this.row.stopLazyRendering();
548
- this.row.isNeedRender = !this.row.isLazyRendering();
549
- }
550
- componentWillUnmount() {
551
- const isCurrentStateElement = this.isCurrentStateElement(this.getStateElement());
552
- super.componentWillUnmount();
553
- if (isCurrentStateElement) {
554
- this.row.setRootElement(undefined);
555
- this.stopLazyRendering();
556
- }
557
- }
558
- createElement(element, elementIndex) {
559
- const index = elementIndex ? "-" + elementIndex : 0;
560
- var elementType = element.getType();
561
- if (!ReactElementFactory.Instance.isElementRegistered(elementType)) {
562
- elementType = "question";
563
- }
564
- return ReactElementFactory.Instance.createElement(elementType, {
565
- key: element.name + index,
566
- element: element,
567
- creator: this.creator,
568
- survey: this.survey,
569
- css: this.css,
570
- });
571
- }
572
- }
573
-
574
- class SurveyPanelBase extends SurveyElementBase {
575
- constructor(props) {
576
- super(props);
577
- this.rootRef = React.createRef();
578
- }
579
- getStateElement() {
580
- return this.panelBase;
581
- }
582
- canUsePropInState(key) {
583
- return key !== "elements" && super.canUsePropInState(key);
584
- }
585
- get survey() {
586
- return this.getSurvey();
587
- }
588
- get creator() {
589
- return this.props.creator;
590
- }
591
- get css() {
592
- return this.getCss();
593
- }
594
- get panelBase() {
595
- return this.getPanelBase();
596
- }
597
- getPanelBase() {
598
- return this.props.element || this.props.question;
599
- }
600
- getSurvey() {
601
- return (this.props.survey || (!!this.panelBase ? this.panelBase.survey : null));
602
- }
603
- getCss() {
604
- return this.props.css;
605
- }
606
- componentDidMount() {
607
- super.componentDidMount();
608
- this.doAfterRender();
609
- }
610
- componentWillUnmount() {
611
- super.componentWillUnmount();
612
- var el = this.rootRef.current;
613
- if (!!el) {
614
- el.removeAttribute("data-rendered");
615
- }
616
- }
617
- componentDidUpdate(prevProps, prevState) {
618
- super.componentDidUpdate(prevProps, prevState);
619
- if (!!prevProps.page &&
620
- !!this.survey &&
621
- !!this.survey.activePage &&
622
- prevProps.page.id === this.survey.activePage.id)
623
- return;
624
- this.doAfterRender();
625
- }
626
- doAfterRender() {
627
- var el = this.rootRef.current;
628
- if (el && this.survey) {
629
- if (this.panelBase.isPanel) {
630
- this.panelBase.afterRender(el);
631
- }
632
- else {
633
- this.survey.afterRenderPage(el);
634
- }
635
- }
636
- }
637
- getIsVisible() {
638
- return this.panelBase.isVisible;
639
- }
640
- canRender() {
641
- return (super.canRender() && !!this.survey && !!this.panelBase && !!this.panelBase.survey && this.getIsVisible());
642
- }
643
- renderRows(css) {
644
- return this.panelBase.visibleRows.map((row) => this.createRow(row, css));
645
- }
646
- createRow(row, css) {
647
- return (React.createElement(SurveyRow, { key: row.id, row: row, survey: this.survey, creator: this.creator, css: css }));
648
- }
649
- }
650
-
651
402
  class SvgIcon extends React.Component {
652
403
  constructor(props) {
653
404
  super(props);
@@ -1051,13 +802,16 @@ class TitleActions extends React.Component {
1051
802
  get element() {
1052
803
  return this.props.element;
1053
804
  }
805
+ get renderActions() {
806
+ return this.props.renderActions === undefined ? true : this.props.renderActions;
807
+ }
1054
808
  render() {
1055
809
  const titleContent = React.createElement(TitleContent, { element: this.element, cssClasses: this.cssClasses });
1056
810
  if (!this.element.hasTitleActions)
1057
811
  return titleContent;
1058
812
  return (React.createElement("div", { className: "sv-title-actions" },
1059
813
  React.createElement("span", { className: "sv-title-actions__title" }, titleContent),
1060
- React.createElement(SurveyActionBar, { model: this.element.getTitleToolbar() })));
814
+ (this.renderActions ? React.createElement(SurveyActionBar, { model: this.element.getTitleToolbar() }) : null)));
1061
815
  }
1062
816
  }
1063
817
  RendererFactory.Instance.registerRenderer("element", "title-actions", "sv-title-actions");
@@ -1084,7 +838,7 @@ class TitleElement extends React.Component {
1084
838
  return null;
1085
839
  const ariaLabel = element.titleAriaLabel || undefined;
1086
840
  const titleExpandableSvg = this.renderTitleExpandableSvg();
1087
- const titleContent = (React.createElement(TitleActions, { element: element, cssClasses: element.cssClasses }));
841
+ const titleContent = (React.createElement(TitleActions, { element: element, cssClasses: element.cssClasses, renderActions: this.props.renderActions }));
1088
842
  let onClick = undefined;
1089
843
  let onKeyUp = undefined;
1090
844
  if (element.hasTitleEvents) {
@@ -1099,6 +853,59 @@ class TitleElement extends React.Component {
1099
853
  }
1100
854
  }
1101
855
 
856
+ class SurveyHeader extends React.Component {
857
+ constructor(props) {
858
+ super(props);
859
+ this.state = { changed: 0 };
860
+ this.rootRef = React.createRef();
861
+ }
862
+ get survey() {
863
+ return this.props.survey;
864
+ }
865
+ get css() {
866
+ return this.survey.css;
867
+ }
868
+ componentDidMount() {
869
+ const self = this;
870
+ this.survey.afterRenderHeader(this.rootRef.current);
871
+ this.survey.locLogo.onChanged = function () {
872
+ self.setState({ changed: self.state.changed + 1 });
873
+ };
874
+ }
875
+ componentWillUnmount() {
876
+ this.survey.locLogo.onChanged = function () { };
877
+ }
878
+ renderTitle() {
879
+ if (!this.survey.renderedHasTitle)
880
+ return null;
881
+ const description = SurveyElementBase.renderLocString(this.survey.locDescription);
882
+ return (React.createElement("div", { className: this.css.headerText, style: { maxWidth: this.survey.titleMaxWidth } },
883
+ React.createElement(TitleElement, { element: this.survey }),
884
+ this.survey.renderedHasDescription ? React.createElement("div", { className: this.css.description }, description) : null));
885
+ }
886
+ renderLogoImage(isRender) {
887
+ if (!isRender)
888
+ return null;
889
+ const componentName = this.survey.getElementWrapperComponentName(this.survey, "logo-image");
890
+ const componentData = this.survey.getElementWrapperComponentData(this.survey, "logo-image");
891
+ return ReactElementFactory.Instance.createElement(componentName, {
892
+ data: componentData,
893
+ });
894
+ }
895
+ render() {
896
+ if (!this.survey.renderedHasHeader)
897
+ return null;
898
+ return (React.createElement("div", { className: this.css.header, ref: this.rootRef },
899
+ this.renderLogoImage(this.survey.isLogoBefore),
900
+ this.renderTitle(),
901
+ this.renderLogoImage(this.survey.isLogoAfter),
902
+ React.createElement("div", { className: this.css.headerClose })));
903
+ }
904
+ }
905
+ ReactElementFactory.Instance.registerElement("survey-header", (props) => {
906
+ return React.createElement(SurveyHeader, props);
907
+ });
908
+
1102
909
  class ReactQuestionFactory {
1103
910
  constructor() {
1104
911
  this.creatorHash = {};
@@ -1122,1320 +929,1525 @@ class ReactQuestionFactory {
1122
929
  }
1123
930
  ReactQuestionFactory.Instance = new ReactQuestionFactory();
1124
931
 
1125
- class CharacterCounterComponent extends SurveyElementBase {
1126
- getStateElement() {
1127
- return this.props.counter;
1128
- }
1129
- renderElement() {
1130
- return (React.createElement("div", { className: this.props.remainingCharacterCounter }, this.props.counter.remainingCharacterCounter));
932
+ class BrandInfo extends React.Component {
933
+ render() {
934
+ return (React.createElement("div", { className: "sv-brand-info" },
935
+ React.createElement("a", { className: "sv-brand-info__logo", href: "https://surveyjs.io/?utm_source=built-in_links&utm_medium=online_survey_tool&utm_campaign=landing_page" },
936
+ React.createElement("img", { src: "https://surveyjs.io/Content/Images/poweredby.svg" })),
937
+ React.createElement("div", { className: "sv-brand-info__text" },
938
+ "Try and see how easy it is to ",
939
+ React.createElement("a", { href: "https://surveyjs.io/create-survey?utm_source=built-in_links&utm_medium=online_survey_tool&utm_campaign=create_survey" }, "create a survey")),
940
+ React.createElement("div", { className: "sv-brand-info__terms" },
941
+ React.createElement("a", { href: "https://surveyjs.io/TermsOfUse" }, "Terms of Use & Privacy Statement"))));
1131
942
  }
1132
943
  }
1133
- ReactElementFactory.Instance.registerElement("sv-character-counter", (props) => {
1134
- return React.createElement(CharacterCounterComponent, props);
1135
- });
1136
944
 
1137
- class TextAreaComponent extends SurveyElementBase {
1138
- constructor(props) {
1139
- super(props);
1140
- this.initialValue = this.viewModel.getTextValue() || "";
1141
- this.textareaRef = React.createRef();
1142
- }
1143
- get viewModel() {
1144
- return this.props.viewModel;
1145
- }
1146
- canRender() {
1147
- return !!this.viewModel.question;
1148
- }
1149
- componentDidMount() {
1150
- super.componentDidMount();
1151
- let el = this.textareaRef.current;
1152
- if (!!el) {
1153
- this.viewModel.setElement(el);
1154
- }
945
+ class NotifierComponent extends SurveyElementBase {
946
+ get notifier() {
947
+ return this.props.notifier;
1155
948
  }
1156
- componentWillUnmount() {
1157
- super.componentWillUnmount();
1158
- this.viewModel.resetElement();
949
+ getStateElement() {
950
+ return this.notifier;
1159
951
  }
1160
952
  renderElement() {
1161
- return (React.createElement("textarea", { id: this.viewModel.id, className: this.viewModel.className, ref: this.textareaRef, disabled: this.viewModel.isDisabledAttr, readOnly: this.viewModel.isReadOnlyAttr, rows: this.viewModel.rows, cols: this.viewModel.cols, placeholder: this.viewModel.placeholder, maxLength: this.viewModel.maxLength, defaultValue: this.initialValue, onChange: (event) => { this.viewModel.onTextAreaInput(event); }, onFocus: (event) => { this.viewModel.onTextAreaFocus(event); }, onBlur: (event) => { this.viewModel.onTextAreaBlur(event); }, onKeyDown: (event) => { this.viewModel.onTextAreaKeyDown(event); }, "aria-required": this.viewModel.ariaRequired, "aria-label": this.viewModel.ariaLabel, "aria-labelledby": this.viewModel.ariaLabelledBy, "aria-describedby": this.viewModel.ariaDescribedBy, "aria-invalid": this.viewModel.ariaInvalid, "aria-errormessage": this.viewModel.ariaErrormessage, style: { resize: this.viewModel.question.resizeStyle } }));
953
+ if (!this.notifier.isDisplayed)
954
+ return null;
955
+ const style = { visibility: this.notifier.active ? "visible" : "hidden" };
956
+ return (React.createElement("div", { className: this.notifier.css, style: style, role: "alert", "aria-live": "polite" },
957
+ React.createElement("span", null, this.notifier.message),
958
+ React.createElement(SurveyActionBar, { model: this.notifier.actionBar })));
1162
959
  }
1163
960
  }
1164
- ReactElementFactory.Instance.registerElement("sv-text-area", (props) => {
1165
- return React.createElement(TextAreaComponent, props);
961
+ ReactElementFactory.Instance.registerElement("sv-notifier", (props) => {
962
+ return React.createElement(NotifierComponent, props);
1166
963
  });
1167
964
 
1168
- class SurveyQuestionComment extends SurveyQuestionUncontrolledElement {
1169
- renderCharacterCounter() {
1170
- let counter = null;
1171
- if (!!this.question.getMaxLength()) {
1172
- counter = React.createElement(CharacterCounterComponent, { counter: this.question.characterCounter, remainingCharacterCounter: this.question.cssClasses.remainingCharacterCounter });
965
+ class ComponentsContainer extends React.Component {
966
+ render() {
967
+ const components = this.props.survey.getContainerContent(this.props.container);
968
+ const needRenderWrapper = this.props.needRenderWrapper === false ? false : true;
969
+ if (components.length == 0) {
970
+ return null;
1173
971
  }
1174
- return counter;
1175
- }
1176
- constructor(props) {
1177
- super(props);
1178
- }
1179
- renderElement() {
1180
- if (this.question.isReadOnlyRenderDiv()) {
1181
- return React.createElement("div", null, this.question.value);
972
+ if (!needRenderWrapper) {
973
+ return React.createElement(React.Fragment, null, components.map(component => {
974
+ return ReactElementFactory.Instance.createElement(component.component, { survey: this.props.survey, model: component.data, container: this.props.container, key: component.id });
975
+ }));
1182
976
  }
1183
- const counter = this.renderCharacterCounter();
1184
- const textAreaModel = this.props.question.textAreaModel;
1185
- return (React.createElement(React.Fragment, null,
1186
- React.createElement(TextAreaComponent, { viewModel: textAreaModel }),
1187
- counter));
977
+ return React.createElement("div", { className: "sv-components-column" + " sv-components-container-" + this.props.container }, components.map(component => {
978
+ return ReactElementFactory.Instance.createElement(component.component, { survey: this.props.survey, model: component.data, container: this.props.container, key: component.id });
979
+ }));
1188
980
  }
1189
981
  }
1190
- class SurveyQuestionCommentItem extends ReactSurveyElement {
982
+ ReactElementFactory.Instance.registerElement("sv-components-container", (props) => {
983
+ return React.createElement(ComponentsContainer, props);
984
+ });
985
+
986
+ class SvgBundleComponent extends React.Component {
1191
987
  constructor(props) {
1192
988
  super(props);
1193
- this.textAreaModel = this.getTextAreaModel();
1194
- }
1195
- canRender() {
1196
- return !!this.props.question;
1197
- }
1198
- getTextAreaModel() {
1199
- return this.props.question.commentTextAreaModel;
989
+ this.onIconsChanged = () => {
990
+ if (!!this.containerRef.current) {
991
+ this.containerRef.current.innerHTML = SvgRegistry.iconsRenderedHtml();
992
+ }
993
+ };
994
+ this.containerRef = React.createRef();
1200
995
  }
1201
- renderElement() {
1202
- const question = this.props.question;
1203
- if (question.isReadOnlyRenderDiv()) {
1204
- const comment = this.textAreaModel.getTextValue() || "";
1205
- return React.createElement("div", null, comment);
1206
- }
1207
- return (React.createElement(TextAreaComponent, { key: this.getKey(), viewModel: this.textAreaModel }));
996
+ componentDidMount() {
997
+ this.onIconsChanged();
998
+ SvgRegistry.onIconsChanged.add(this.onIconsChanged);
1208
999
  }
1209
- getKey() { return undefined; }
1210
- }
1211
- class SurveyQuestionCommentValueItem extends SurveyQuestionCommentItem {
1212
- constructor(props) {
1213
- super(props);
1000
+ componentWillUnmount() {
1001
+ SvgRegistry.onIconsChanged.remove(this.onIconsChanged);
1214
1002
  }
1215
- getTextAreaModel() {
1216
- return this.props.question.getCommentTextAreaModel(this.props.item);
1003
+ render() {
1004
+ const svgStyle = {
1005
+ display: "none"
1006
+ };
1007
+ return React.createElement("svg", { style: svgStyle, id: "sv-icon-holder-global-container", ref: this.containerRef });
1217
1008
  }
1218
- getKey() { return this.props.item.normalizedId; }
1219
1009
  }
1220
- ReactQuestionFactory.Instance.registerQuestion("comment", (props) => {
1221
- return React.createElement(SurveyQuestionComment, props);
1222
- });
1223
1010
 
1224
- class SurveyCustomWidget extends SurveyQuestionElementBase {
1011
+ class PopupModal extends SurveyElementBase {
1225
1012
  constructor(props) {
1226
1013
  super(props);
1227
- this.widgetRef = React.createRef();
1228
- }
1229
- _afterRender() {
1230
- if (this.questionBase.customWidget) {
1231
- let el = this.widgetRef.current;
1232
- if (!!el) {
1233
- this.questionBase.customWidget.afterRender(this.questionBase, el);
1234
- this.questionBase.customWidgetData.isNeedRender = false;
1014
+ this.isInitialized = false;
1015
+ this.init = () => {
1016
+ if (!this.isInitialized) {
1017
+ settings.showDialog = (dialogOptions, rootElement) => {
1018
+ return this.showDialog(dialogOptions, rootElement);
1019
+ };
1020
+ this.isInitialized = true;
1235
1021
  }
1236
- }
1237
- }
1238
- componentDidMount() {
1239
- super.componentDidMount();
1240
- if (this.questionBase) {
1241
- this._afterRender();
1242
- }
1022
+ };
1023
+ this.clean = () => {
1024
+ if (this.isInitialized) {
1025
+ settings.showDialog = undefined;
1026
+ this.isInitialized = false;
1027
+ }
1028
+ };
1029
+ this.state = { changed: 0 };
1030
+ this.descriptor = {
1031
+ init: this.init,
1032
+ clean: this.clean
1033
+ };
1243
1034
  }
1244
- componentDidUpdate(prevProps, prevState) {
1245
- super.componentDidUpdate(prevProps, prevState);
1246
- var isDefaultRender = !!this.questionBase.customWidget &&
1247
- this.questionBase.customWidget.isDefaultRender;
1248
- if (this.questionBase && !isDefaultRender) {
1249
- this._afterRender();
1035
+ static addModalDescriptor(descriptor) {
1036
+ if (!settings.showDialog) {
1037
+ descriptor.init();
1250
1038
  }
1039
+ this.modalDescriptors.push(descriptor);
1251
1040
  }
1252
- componentWillUnmount() {
1253
- super.componentWillUnmount();
1254
- if (this.questionBase.customWidget) {
1255
- let el = this.widgetRef.current;
1256
- if (!!el) {
1257
- this.questionBase.customWidget.willUnmount(this.questionBase, el);
1258
- }
1041
+ static removeModalDescriptor(descriptor) {
1042
+ descriptor.clean();
1043
+ this.modalDescriptors.splice(this.modalDescriptors.indexOf(descriptor), 1);
1044
+ if (!settings.showDialog && this.modalDescriptors[0]) {
1045
+ this.modalDescriptors[0].init();
1259
1046
  }
1260
1047
  }
1261
- canRender() {
1262
- return super.canRender() && this.questionBase.visible;
1263
- }
1264
1048
  renderElement() {
1265
- let customWidget = this.questionBase.customWidget;
1266
- if (customWidget.isDefaultRender) {
1267
- return (React.createElement("div", { ref: this.widgetRef }, this.creator.createQuestionElement(this.questionBase)));
1268
- }
1269
- let widget = null;
1270
- if (customWidget.widgetJson.render) {
1271
- widget = customWidget.widgetJson.render(this.questionBase);
1272
- }
1273
- else {
1274
- if (customWidget.htmlTemplate) {
1275
- let htmlValue = { __html: customWidget.htmlTemplate };
1276
- return React.createElement("div", { ref: this.widgetRef, dangerouslySetInnerHTML: htmlValue });
1277
- }
1278
- }
1279
- return React.createElement("div", { ref: this.widgetRef }, widget);
1049
+ if (!this.model)
1050
+ return null;
1051
+ return createPortal(React.createElement(PopupContainer, { model: this.model }), this.model.container);
1280
1052
  }
1281
- }
1282
-
1283
- class SurveyElementHeader extends SurveyElementBase {
1284
- get element() {
1285
- return this.props.element;
1053
+ showDialog(dialogOptions, rootElement) {
1054
+ this.model = createPopupModalViewModel(dialogOptions, rootElement);
1055
+ const onVisibilityChangedCallback = (_, options) => {
1056
+ if (!options.isVisible) {
1057
+ this.model.dispose();
1058
+ this.model = undefined;
1059
+ this.setState({ changed: this.state.changed + 1 });
1060
+ }
1061
+ };
1062
+ this.model.onVisibilityChanged.add(onVisibilityChangedCallback);
1063
+ this.model.model.isVisible = true;
1064
+ this.setState({ changed: this.state.changed + 1 });
1065
+ return this.model;
1286
1066
  }
1287
- getRenderedElements() {
1288
- return [this.element];
1067
+ componentDidMount() {
1068
+ PopupModal.addModalDescriptor(this.descriptor);
1289
1069
  }
1290
- renderElement() {
1291
- const element = this.element;
1292
- const title = element.hasTitle ? (React.createElement(TitleElement, { element: element })) : null;
1293
- const description = element.hasDescriptionUnderTitle
1294
- ? SurveyElementBase.renderQuestionDescription(this.element)
1295
- : null;
1296
- const additionalTitleToolbarElement = element.hasAdditionalTitleToolbar ? React.createElement(SurveyActionBar, { model: element.additionalTitleToolbar }) : null;
1297
- const headerStyle = { width: undefined };
1298
- if (element instanceof Question) {
1299
- headerStyle.width = element.titleWidth;
1070
+ componentWillUnmount() {
1071
+ if (this.model) {
1072
+ this.model.dispose();
1073
+ this.model = undefined;
1300
1074
  }
1301
- return (React.createElement("div", { className: element.cssHeader, onClick: (e) => element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent), style: headerStyle },
1302
- title,
1303
- description,
1304
- additionalTitleToolbarElement));
1075
+ PopupModal.removeModalDescriptor(this.descriptor);
1305
1076
  }
1306
1077
  }
1078
+ PopupModal.modalDescriptors = [];
1307
1079
 
1308
- class SurveyQuestionSigleInputSummary extends ReactSurveyElement {
1080
+ /*!
1081
+ * surveyjs - Survey JavaScript library v2.3.11
1082
+ * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1083
+ * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1084
+ */
1085
+
1086
+ var iconsV1 = {
1087
+ "modernbooleancheckchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><polygon points=\"19,10 14,10 14,5 10,5 10,10 5,10 5,14 10,14 10,19 14,19 14,14 19,14 \"></polygon></svg>",
1088
+ "modernbooleancheckind": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M22,0H2C0.9,0,0,0.9,0,2v20c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V2C24,0.9,23.1,0,22,0z M21,18L6,3h15V18z M3,6l15,15H3V6z\"></path></svg>",
1089
+ "modernbooleancheckunchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><rect x=\"5\" y=\"10\" width=\"14\" height=\"4\"></rect></svg>",
1090
+ "moderncheck": "<svg viewBox=\"0 0 24 24\"><path d=\"M5,13l2-2l3,3l7-7l2,2l-9,9L5,13z\"></path></svg>",
1091
+ "modernradio": "<svg viewBox=\"-12 -12 24 24\"><circle r=\"6\" cx=\"0\" cy=\"0\"></circle></svg>",
1092
+ "progressbutton": "<svg viewBox=\"0 0 10 10\"><polygon points=\"2,2 0,4 5,9 10,4 8,2 5,5 \"></polygon></svg>",
1093
+ "removefile": "<svg viewBox=\"0 0 16 16\"><path d=\"M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z M11,10l-1,1L8,9l-2,2l-1-1l2-2L5,6l1-1l2,2l2-2l1,1L9,8 L11,10z\"></path></svg>",
1094
+ "timercircle": "<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 160 160\"><circle cx=\"80\" cy=\"80\" r=\"70\" style=\"stroke: var(--sd-timer-stroke-background-color); stroke-width: var(--sd-timer-stroke-background-width)\" stroke-dasharray=\"none\" stroke-dashoffset=\"none\"></circle><circle cx=\"80\" cy=\"80\" r=\"70\"></circle></svg>",
1095
+ "add-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 11H17V13H13V17H11V13H7V11H11V7H13V11ZM23 12C23 18.1 18.1 23 12 23C5.9 23 1 18.1 1 12C1 5.9 5.9 1 12 1C18.1 1 23 5.9 23 12ZM21 12C21 7 17 3 12 3C7 3 3 7 3 12C3 17 7 21 12 21C17 21 21 17 21 12Z\"></path></svg>",
1096
+ "arrowleft-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 8.99999H4.4L8.7 13.3L7.3 14.7L0.599998 7.99999L7.3 1.29999L8.7 2.69999L4.4 6.99999H15V8.99999Z\"></path></svg>",
1097
+ "arrowright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1 6.99999H11.6L7.3 2.69999L8.7 1.29999L15.4 7.99999L8.7 14.7L7.3 13.3L11.6 8.99999H1V6.99999Z\"></path></svg>",
1098
+ "camera-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.01 4H18.4C18.2 4 18.01 3.9 17.9 3.73L16.97 2.34C16.41 1.5 15.48 1 14.47 1H9.54C8.53 1 7.6 1.5 7.04 2.34L6.11 3.73C6 3.9 5.81 4 5.61 4H4C2.35 4 1 5.35 1 7V19C1 20.65 2.35 22 4 22H20C21.65 22 23 20.65 23 19V7C23 5.35 21.65 4 20 4H20.01ZM21.01 19C21.01 19.55 20.56 20 20.01 20H4.01C3.46 20 3.01 19.55 3.01 19V7C3.01 6.45 3.46 6 4.01 6H5.62C6.49 6 7.3 5.56 7.79 4.84L8.72 3.45C8.91 3.17 9.22 3 9.55 3H14.48C14.81 3 15.13 3.17 15.31 3.45L16.24 4.84C16.72 5.56 17.54 6 18.41 6H20.02C20.57 6 21.02 6.45 21.02 7V19H21.01ZM12.01 6C8.7 6 6.01 8.69 6.01 12C6.01 15.31 8.7 18 12.01 18C15.32 18 18.01 15.31 18.01 12C18.01 8.69 15.32 6 12.01 6ZM12.01 16C9.8 16 8.01 14.21 8.01 12C8.01 9.79 9.8 8 12.01 8C14.22 8 16.01 9.79 16.01 12C16.01 14.21 14.22 16 12.01 16ZM13.01 10C13.01 10.55 12.56 11 12.01 11C11.46 11 11.01 11.45 11.01 12C11.01 12.55 10.56 13 10.01 13C9.46 13 9.01 12.55 9.01 12C9.01 10.35 10.36 9 12.01 9C12.56 9 13.01 9.45 13.01 10Z\"></path></svg>",
1099
+ "camera-32x32": "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27 6H23.8C23.34 6 22.92 5.77 22.66 5.39L22.25 4.78C21.51 3.66 20.26 3 18.92 3H13.06C11.72 3 10.48 3.67 9.73 4.78L9.32 5.39C9.07 5.77 8.64 6 8.18 6H4.98C2.79 6 1 7.79 1 10V24C1 26.21 2.79 28 5 28H27C29.21 28 31 26.21 31 24V10C31 7.79 29.21 6 27 6ZM29 24C29 25.1 28.1 26 27 26H5C3.9 26 3 25.1 3 24V10C3 8.9 3.9 8 5 8H8.2C9.33 8 10.38 7.44 11 6.5L11.41 5.89C11.78 5.33 12.41 5 13.07 5H18.93C19.6 5 20.22 5.33 20.59 5.89L21 6.5C21.62 7.44 22.68 8 23.8 8H27C28.1 8 29 8.9 29 10V24ZM16 9C12.13 9 9 12.13 9 16C9 19.87 12.13 23 16 23C19.87 23 23 19.87 23 16C23 12.13 19.87 9 16 9ZM16 21C13.24 21 11 18.76 11 16C11 13.24 13.24 11 16 11C18.76 11 21 13.24 21 16C21 18.76 18.76 21 16 21ZM17 13C17 13.55 16.55 14 16 14C14.9 14 14 14.9 14 16C14 16.55 13.55 17 13 17C12.45 17 12 16.55 12 16C12 13.79 13.79 12 16 12C16.55 12 17 12.45 17 13Z\"></path></svg>",
1100
+ "cancel-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.6 8.6L16.4 2.4C16 2 15.5 1.8 15 1.8C14.5 1.8 14 2 13.6 2.4L1.40005 14.6C0.600049 15.4 0.600049 16.6 1.40005 17.4L6.00005 22H12L22.6 11.4C23.3 10.6 23.3 9.3 22.6 8.6ZM11.1 20H6.80005L2.80005 16L6.20005 12.6L12.4 18.8L11.1 20ZM13.8 17.4L7.60005 11.2L15 3.8L21.2 10L13.8 17.4ZM16 20H23V22H14L16 20Z\"></path></svg>",
1101
+ "check-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.003 14.413L0.292999 9.70303L1.703 8.29303L5.003 11.583L14.293 2.29303L15.703 3.70303L5.003 14.413Z\"></path></svg>",
1102
+ "check-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9 20.1L1 12L3.1 9.9L9 15.9L20.9 4L23 6.1L9 20.1Z\"></path></svg>",
1103
+ "chevrondown-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 15L17 10H7L12 15Z\"></path></svg>",
1104
+ "chevronright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.64648 12.6465L6.34648 13.3465L11.7465 8.04648L6.34648 2.64648L5.64648 3.34648L10.2465 8.04648L5.64648 12.6465Z\"></path></svg>",
1105
+ "clear-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.35 3.34999L12.65 2.64999L8.05002 7.24999L3.35002 2.64999L2.65002 3.34999L7.25002 8.04999L2.65002 12.65L3.35002 13.35L8.05002 8.74999L12.65 13.35L13.35 12.65L8.75002 8.04999L13.35 3.34999Z\"></path></svg>",
1106
+ "clear-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.6 8.6L16.4 2.4C16 2 15.5 1.8 15 1.8C14.5 1.8 14 2 13.6 2.4L1.40005 14.6C0.600049 15.4 0.600049 16.6 1.40005 17.4L6.00005 22H12L22.6 11.4C23.3 10.6 23.3 9.3 22.6 8.6ZM11.1 20H6.80005L2.80005 16L6.20005 12.6L12.4 18.8L11.1 20ZM13.8 17.4L7.60005 11.2L15 3.8L21.2 10L13.8 17.4ZM16 20H23V22H14L16 20Z\"></path></svg>",
1107
+ "close-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.43 8.0025L13.7 3.7225C14.09 3.3325 14.09 2.6925 13.7 2.2925C13.31 1.9025 12.67 1.9025 12.27 2.2925L7.99 6.5725L3.72 2.3025C3.33 1.9025 2.69 1.9025 2.3 2.3025C1.9 2.6925 1.9 3.3325 2.3 3.7225L6.58 8.0025L2.3 12.2825C1.91 12.6725 1.91 13.3125 2.3 13.7125C2.69 14.1025 3.33 14.1025 3.73 13.7125L8.01 9.4325L12.29 13.7125C12.68 14.1025 13.32 14.1025 13.72 13.7125C14.11 13.3225 14.11 12.6825 13.72 12.2825L9.44 8.0025H9.43Z\"></path></svg>",
1108
+ "close-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.4101 12L20.7001 4.71C21.0901 4.32 21.0901 3.69 20.7001 3.3C20.3101 2.91 19.6801 2.91 19.2901 3.3L12.0001 10.59L4.71006 3.29C4.32006 2.9 3.68006 2.9 3.29006 3.29C2.90006 3.68 2.90006 4.32 3.29006 4.71L10.5801 12L3.29006 19.29C2.90006 19.68 2.90006 20.31 3.29006 20.7C3.49006 20.9 3.74006 20.99 4.00006 20.99C4.26006 20.99 4.51006 20.89 4.71006 20.7L12.0001 13.41L19.2901 20.7C19.4901 20.9 19.7401 20.99 20.0001 20.99C20.2601 20.99 20.5101 20.89 20.7101 20.7C21.1001 20.31 21.1001 19.68 20.7101 19.29L13.4201 12H13.4101Z\"></path></svg>",
1109
+ "collapse-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 6L3 5L8 10L13 5L14 6L8 12L2 6Z\"></path></svg>",
1110
+ "collapsedetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>",
1111
+ "delete-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 2H14H11V1C11 0.4 10.6 0 10 0H7C6.4 0 6 0.4 6 1V2H3H2V4H3V14C3 15.1 3.9 16 5 16H12C13.1 16 14 15.1 14 14V4H15V2ZM7 1H10V2H7V1ZM12 14H5V4H12V14ZM7 13H6V5H7V13ZM9 13H8V5H9V13ZM11 13H10V5H11V13Z\"></path></svg>",
1112
+ "delete-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22 4H20H16V2C16 0.9 15.1 0 14 0H10C8.9 0 8 0.9 8 2V4H4H2V6H4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V6H22V4ZM10 2H14V4H10V2ZM18 20H6V6H8H16H18V20ZM14 8H16V18H14V8ZM11 8H13V18H11V8ZM8 8H10V18H8V8Z\"></path></svg>",
1113
+ "drag-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 6C13 4.9 13.9 4 15 4C16.1 4 17 4.9 17 6C17 7.1 16.1 8 15 8C13.9 8 13 7.1 13 6ZM9 4C7.9 4 7 4.9 7 6C7 7.1 7.9 8 9 8C10.1 8 11 7.1 11 6C11 4.9 10.1 4 9 4ZM15 10C13.9 10 13 10.9 13 12C13 13.1 13.9 14 15 14C16.1 14 17 13.1 17 12C17 10.9 16.1 10 15 10ZM9 10C7.9 10 7 10.9 7 12C7 13.1 7.9 14 9 14C10.1 14 11 13.1 11 12C11 10.9 10.1 10 9 10ZM15 16C13.9 16 13 16.9 13 18C13 19.1 13.9 20 15 20C16.1 20 17 19.1 17 18C17 16.9 16.1 16 15 16ZM9 16C7.9 16 7 16.9 7 18C7 19.1 7.9 20 9 20C10.1 20 11 19.1 11 18C11 16.9 10.1 16 9 16Z\"></path></svg>",
1114
+ "draghorizontal-24x16": "<svg viewBox=\"0 0 24 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18 9C19.1 9 20 9.9 20 11C20 12.1 19.1 13 18 13C16.9 13 16 12.1 16 11C16 9.9 16.9 9 18 9ZM20 5C20 3.9 19.1 3 18 3C16.9 3 16 3.9 16 5C16 6.1 16.9 7 18 7C19.1 7 20 6.1 20 5ZM14 11C14 9.9 13.1 9 12 9C10.9 9 10 9.9 10 11C10 12.1 10.9 13 12 13C13.1 13 14 12.1 14 11ZM14 5C14 3.9 13.1 3 12 3C10.9 3 10 3.9 10 5C10 6.1 10.9 7 12 7C13.1 7 14 6.1 14 5ZM8 11C8 9.9 7.1 9 6 9C4.9 9 4 9.9 4 11C4 12.1 4.9 13 6 13C7.1 13 8 12.1 8 11ZM8 5C8 3.9 7.1 3 6 3C4.9 3 4 3.9 4 5C4 6.1 4.9 7 6 7C7.1 7 8 6.1 8 5Z\"></path></svg>",
1115
+ "editsmall-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.59 4.5884L11.42 2.4184C11.03 2.0284 10.52 1.8284 10.01 1.8284C9.5 1.8284 8.99 2.0284 8.6 2.4184L3.76 7.2384C2.63 8.3684 2 9.8884 2 11.4784V12.9884C2 13.5384 2.45 13.9884 3 13.9884H4.51C6.1 13.9884 7.63 13.3584 8.75 12.2284L13.58 7.3984C14.36 6.6184 14.36 5.3484 13.58 4.5684L13.59 4.5884ZM7.35 10.8284C6.59 11.5884 5.59 11.9984 4.52 11.9984H4.01V11.4884C4.01 10.4184 4.43 9.4184 5.18 8.6584L7.72 6.1184L9.89 8.2884L7.35 10.8284ZM11.3 6.8784L9.13 4.7084L10.01 3.8284L12.18 5.9984L11.3 6.8784Z\"></path></svg>",
1116
+ "expand-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 14L5 13L10 8L5 3L6 2L12 8L6 14Z\"></path></svg>",
1117
+ "expanddetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H9V3H7V7H3V9H7V13H9V9H13V7Z\"></path></svg>",
1118
+ "file-72x72": "<svg viewBox=\"0 0 72 72\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.83 12.83L53.17 3.17C52.7982 2.79866 52.357 2.50421 51.8714 2.30346C51.3858 2.1027 50.8654 1.99959 50.34 2H14C12.4087 2 10.8826 2.63214 9.75735 3.75736C8.63214 4.88258 8 6.4087 8 8V64C8 65.5913 8.63214 67.1174 9.75735 68.2426C10.8826 69.3679 12.4087 70 14 70H58C59.5913 70 61.1174 69.3679 62.2426 68.2426C63.3679 67.1174 64 65.5913 64 64V15.66C64.0004 15.1346 63.8973 14.6142 63.6965 14.1286C63.4958 13.643 63.2013 13.2018 62.83 12.83ZM52 4.83L61.17 14H56C54.9391 14 53.9217 13.5786 53.1716 12.8284C52.4214 12.0783 52 11.0609 52 10V4.83ZM62 64C62 65.0609 61.5786 66.0783 60.8284 66.8284C60.0783 67.5786 59.0609 68 58 68H14C12.9391 68 11.9217 67.5786 11.1716 66.8284C10.4214 66.0783 10 65.0609 10 64V8C10 6.93914 10.4214 5.92172 11.1716 5.17157C11.9217 4.42143 12.9391 4 14 4H50V10C50 11.5913 50.6321 13.1174 51.7574 14.2426C52.8826 15.3679 54.4087 16 56 16H62V64ZM22 26H50V28H22V26ZM22 32H50V34H22V32ZM22 38H50V40H22V38ZM22 44H50V46H22V44Z\"></path></svg>",
1119
+ "flip-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M23 12.0037C23 14.2445 21.7794 16.3052 19.5684 17.8257C19.3984 17.9458 19.1983 18.0058 19.0082 18.0058C18.688 18.0058 18.3779 17.8557 18.1778 17.5756C17.8677 17.1155 17.9777 16.4953 18.4379 16.1852C20.0887 15.0448 21.0091 13.5643 21.0091 12.0138C21.0091 8.70262 16.9673 6.01171 12.005 6.01171C11.4948 6.01171 10.9945 6.04172 10.5043 6.09173L11.7149 7.30215C12.105 7.69228 12.105 8.32249 11.7149 8.71263C11.5148 8.9127 11.2647 9.00273 11.0045 9.00273C10.7444 9.00273 10.4943 8.90269 10.2942 8.71263L6.58254 5.00136L10.2842 1.2901C10.6744 0.899964 11.3047 0.899964 11.6949 1.2901C12.085 1.68023 12.085 2.31045 11.6949 2.70058L10.3042 4.09105C10.8545 4.03103 11.4147 4.00102 11.985 4.00102C18.0578 4.00102 22.99 7.59225 22.99 12.0037H23ZM12.2851 15.2949C11.895 15.685 11.895 16.3152 12.2851 16.7054L13.4957 17.9158C13.0055 17.9758 12.4952 17.9958 11.995 17.9958C7.03274 17.9958 2.99091 15.3049 2.99091 11.9937C2.99091 10.4332 3.90132 8.95271 5.56207 7.82232C6.02228 7.51222 6.13233 6.89201 5.82219 6.43185C5.51205 5.97169 4.89177 5.86166 4.43156 6.17176C2.22055 7.69228 1 9.76299 1 11.9937C1 16.4052 5.93224 19.9965 12.005 19.9965C12.5753 19.9965 13.1355 19.9665 13.6858 19.9064L12.2951 21.2969C11.905 21.6871 11.905 22.3173 12.2951 22.7074C12.4952 22.9075 12.7453 22.9975 13.0055 22.9975C13.2656 22.9975 13.5157 22.8975 13.7158 22.7074L17.4275 18.9961L13.7158 15.2849C13.3256 14.8947 12.6953 14.8947 12.3051 15.2849L12.2851 15.2949Z\"></path></svg>",
1120
+ "folder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.93 9H21V7C21 6.46957 20.7893 5.96086 20.4142 5.58579C20.0391 5.21071 19.5304 5 19 5H10L8 3H4C3.46957 3 2.96086 3.21071 2.58579 3.58579C2.21071 3.96086 2 4.46957 2 5L2 21H21L23.89 11.63C23.9916 11.3244 24.0179 10.9988 23.9667 10.6809C23.9155 10.363 23.7882 10.0621 23.5958 9.80392C23.4034 9.54571 23.1514 9.33779 22.8614 9.19782C22.5714 9.05786 22.2519 8.99 21.93 9ZM4 5H7.17L8.59 6.41L9.17 7H19V9H6L4 15V5ZM22 11L19.54 19H4.77L7.44 11H22Z\"></path></svg>",
1121
+ "fullsize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 13H4C2.9 13 2 12.1 2 11V5C2 3.9 2.9 3 4 3H12C13.1 3 14 3.9 14 5V11C14 12.1 13.1 13 12 13ZM4 5V11H12V5H4Z\"></path></svg>",
1122
+ "image-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M36 8H12C9.79 8 8 9.79 8 12V36C8 38.21 9.79 40 12 40H36C38.21 40 40 38.21 40 36V12C40 9.79 38.21 8 36 8ZM38 36C38 37.1 37.1 38 36 38H12C10.9 38 10 37.1 10 36V12C10 10.9 10.9 10 12 10H36C37.1 10 38 10.9 38 12V36ZM14 17C14 15.34 15.34 14 17 14C18.66 14 20 15.34 20 17C20 18.66 18.66 20 17 20C15.34 20 14 18.66 14 17ZM27 24L36 36H12L19 27L23 29L27 24Z\"></path></svg>",
1123
+ "loading-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_19679_369428)\"><path opacity=\"0.1\" d=\"M24 40C15.18 40 8 32.82 8 24C8 15.18 15.18 8 24 8C32.82 8 40 15.18 40 24C40 32.82 32.82 40 24 40ZM24 12C17.38 12 12 17.38 12 24C12 30.62 17.38 36 24 36C30.62 36 36 30.62 36 24C36 17.38 30.62 12 24 12Z\" fill=\"black\" fill-opacity=\"0.91\"></path><path d=\"M10 26C8.9 26 8 25.1 8 24C8 15.18 15.18 8 24 8C25.1 8 26 8.9 26 10C26 11.1 25.1 12 24 12C17.38 12 12 17.38 12 24C12 25.1 11.1 26 10 26Z\"></path></g><defs><clipPath id=\"clip0_19679_369428\"><rect width=\"32\" height=\"32\" fill=\"white\" transform=\"translate(8 8)\"></rect></clipPath></defs></svg>",
1124
+ "maximize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.71 10.71L4.42 13H6.01C6.56 13 7.01 13.45 7.01 14C7.01 14.55 6.56 15 6.01 15H2C1.45 15 1 14.55 1 14V10C1 9.45 1.45 9 2 9C2.55 9 3 9.45 3 10V11.59L5.29 9.3C5.68 8.91 6.31 8.91 6.7 9.3C7.09 9.69 7.09 10.32 6.7 10.71H6.71ZM14 1H10C9.45 1 9 1.45 9 2C9 2.55 9.45 3 10 3H11.59L9.3 5.29C8.91 5.68 8.91 6.31 9.3 6.7C9.5 6.9 9.75 6.99 10.01 6.99C10.27 6.99 10.52 6.89 10.72 6.7L13.01 4.41V6C13.01 6.55 13.46 7 14.01 7C14.56 7 15.01 6.55 15.01 6V2C15.01 1.45 14.56 1 14.01 1H14Z\"></path></svg>",
1125
+ "minimize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 9H3C2.45 9 2 8.55 2 8C2 7.45 2.45 7 3 7H13C13.55 7 14 7.45 14 8C14 8.55 13.55 9 13 9Z\"></path></svg>",
1126
+ "more-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 12C6 13.1 5.1 14 4 14C2.9 14 2 13.1 2 12C2 10.9 2.9 10 4 10C5.1 10 6 10.9 6 12ZM12 10C10.9 10 10 10.9 10 12C10 13.1 10.9 14 12 14C13.1 14 14 13.1 14 12C14 10.9 13.1 10 12 10ZM20 10C18.9 10 18 10.9 18 12C18 13.1 18.9 14 20 14C21.1 14 22 13.1 22 12C22 10.9 21.1 10 20 10Z\"></path></svg>",
1127
+ "navmenu-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 7H2V5H16V7ZM2 11V13H22V11H2ZM2 19H10V17H2V19Z\"></path></svg>",
1128
+ "noimage-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14 17.01C14 16.4167 14.1759 15.8366 14.5056 15.3433C14.8352 14.8499 15.3038 14.4654 15.8519 14.2384C16.4001 14.0113 17.0033 13.9519 17.5853 14.0676C18.1672 14.1834 18.7018 14.4691 19.1213 14.8887C19.5409 15.3082 19.8266 15.8428 19.9424 16.4247C20.0581 17.0067 19.9987 17.6099 19.7716 18.1581C19.5446 18.7062 19.1601 19.1748 18.6667 19.5044C18.1734 19.8341 17.5933 20.01 17 20.01C16.2044 20.01 15.4413 19.6939 14.8787 19.1313C14.3161 18.5687 14 17.8056 14 17.01ZM27.09 24.14L20 36.01H36L27.09 24.14ZM36.72 8.14L35.57 10.01H36C36.5304 10.01 37.0391 10.2207 37.4142 10.5958C37.7893 10.9709 38 11.4796 38 12.01V36.01C38 36.5404 37.7893 37.0491 37.4142 37.4242C37.0391 37.7993 36.5304 38.01 36 38.01H18.77L17.57 40.01H36C37.0609 40.01 38.0783 39.5886 38.8284 38.8384C39.5786 38.0883 40 37.0709 40 36.01V12.01C39.9966 11.0765 39.6668 10.1737 39.0678 9.45778C38.4688 8.74188 37.6382 8.25802 36.72 8.09V8.14ZM36.86 4.5L12.86 44.5L11.14 43.5L13.23 40.01H12C10.9391 40.01 9.92172 39.5886 9.17157 38.8384C8.42143 38.0883 8 37.0709 8 36.01V12.01C8 10.9491 8.42143 9.93172 9.17157 9.18157C9.92172 8.43143 10.9391 8.01 12 8.01H32.43L35.14 3.5L36.86 4.5ZM14.43 38.01L15.63 36.01H12L19 27.01L20.56 27.8L31.23 10.01H12C11.4696 10.01 10.9609 10.2207 10.5858 10.5958C10.2107 10.9709 10 11.4796 10 12.01V36.01C10 36.5404 10.2107 37.0491 10.5858 37.4242C10.9609 37.7993 11.4696 38.01 12 38.01H14.43Z\"></path></svg>",
1129
+ "ranking-arrows": "<svg viewBox=\"0 0 10 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 5L5 0L0 5H4V9H6V5H10Z\"></path><path d=\"M6 19V15H4V19H0L5 24L10 19H6Z\"></path></svg>",
1130
+ "rankingundefined-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>",
1131
+ "rating-star-2": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M24.3981 33.1305L24 32.9206L23.6019 33.1305L15.8715 37.2059L17.3542 28.5663L17.43 28.1246L17.1095 27.8113L10.83 21.6746L19.4965 20.4049L19.9405 20.3399L20.1387 19.9373L24 12.0936L27.8613 19.9373L28.0595 20.3399L28.5035 20.4049L37.17 21.6746L30.8905 27.8113L30.57 28.1246L30.6458 28.5663L32.1285 37.2059L24.3981 33.1305Z\" stroke-width=\"1.70746\"></path></svg>",
1132
+ "rating-star-small-2": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M12 15.9472L8.58001 17.7572L9.23001 13.9272L6.45001 11.2072L10.29 10.6472L12 7.17725L13.71 10.6472L17.55 11.2072L14.77 13.9272L15.42 17.7572L12 15.9472Z\"></path></svg>",
1133
+ "rating-star-small": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\"></path></g></svg>",
1134
+ "rating-star": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\"></path></g></svg>",
1135
+ "reorder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 5L12 0L7 5H11V9H13V5H17Z\"></path><path d=\"M13 19V15H11V19H7L12 24L17 19H13Z\"></path></svg>",
1136
+ "restoredown-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 6C15 6.55 14.55 7 14 7H10C9.45 7 9 6.55 9 6V2C9 1.45 9.45 1 10 1C10.55 1 11 1.45 11 2V3.59L13.29 1.29C13.49 1.09 13.74 1 14 1C14.26 1 14.51 1.1 14.71 1.29C15.1 1.68 15.1 2.31 14.71 2.7L12.42 4.99H14.01C14.56 4.99 15.01 5.44 15.01 5.99L15 6ZM6 9H2C1.45 9 0.999998 9.45 0.999998 10C0.999998 10.55 1.45 11 2 11H3.59L1.29 13.29C0.899998 13.68 0.899998 14.31 1.29 14.7C1.68 15.09 2.31 15.09 2.7 14.7L4.99 12.41V14C4.99 14.55 5.44 15 5.99 15C6.54 15 6.99 14.55 6.99 14V10C6.99 9.45 6.54 9 5.99 9H6Z\"></path></svg>",
1137
+ "search-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14 2C9.6 2 6 5.6 6 10C6 11.8 6.6 13.5 7.7 14.9L2.3 20.3C1.9 20.7 1.9 21.3 2.3 21.7C2.5 21.9 2.7 22 3 22C3.3 22 3.5 21.9 3.7 21.7L9.1 16.3C10.5 17.4 12.2 18 14 18C18.4 18 22 14.4 22 10C22 5.6 18.4 2 14 2ZM14 16C10.7 16 8 13.3 8 10C8 6.7 10.7 4 14 4C17.3 4 20 6.7 20 10C20 13.3 17.3 16 14 16Z\"></path></svg>",
1138
+ "smiley-rate1-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 4.9938C4 4.44362 4.45 3.99348 5 3.99348H6.59L5.3 2.70306C4.91 2.31293 4.91 1.68272 5.3 1.2926C5.69 0.902468 6.32 0.902468 6.71 1.2926L9.71 4.29357C9.8 4.3836 9.88 4.49364 9.93 4.62368C10.03 4.86376 10.03 5.14385 9.93 5.38393C9.88 5.50397 9.81 5.614 9.71 5.71404L6.71 8.71501C6.51 8.91508 6.26 9.00511 6 9.00511C5.74 9.00511 5.49 8.90508 5.29 8.71501C4.9 8.32489 4.9 7.69468 5.29 7.30456L6.58 6.01413H4.99C4.44 6.01413 3.99 5.56399 3.99 5.01381L4 4.9938ZM14.08 5.37393C14.13 5.49397 14.2 5.604 14.3 5.70403L17.3 8.70501C17.5 8.90508 17.75 8.99511 18.01 8.99511C18.27 8.99511 18.52 8.89507 18.72 8.70501C19.11 8.31488 19.11 7.68468 18.72 7.29455L17.43 6.00413H19.02C19.57 6.00413 20.02 5.55399 20.02 5.00381C20.02 4.45363 19.57 4.00348 19.02 4.00348H17.43L18.72 2.71306C19.11 2.32293 19.11 1.69273 18.72 1.3026C18.33 0.912471 17.7 0.912471 17.31 1.3026L14.31 4.30358C14.22 4.39361 14.14 4.50364 14.09 4.63368C13.99 4.87376 13.99 5.15385 14.09 5.39393L14.08 5.37393ZM22 14.9971V20.999C22 22.6496 20.65 24 19 24H5C3.35 24 2 22.6496 2 20.999V14.9971C2 13.3465 3.35 11.9961 5 11.9961H19C20.65 11.9961 22 13.3465 22 14.9971ZM19 13.9967H16V16.9977H20V14.9971C20 14.4469 19.55 13.9967 19 13.9967ZM14 16.9977V13.9967H10V16.9977H14ZM10 18.9984V21.9993H14V18.9984H10ZM4 14.9971V16.9977H8V13.9967H5C4.45 13.9967 4 14.4469 4 14.9971ZM5 21.9993H8V18.9984H4V20.999C4 21.5492 4.45 21.9993 5 21.9993ZM20 20.999V18.9984H16V21.9993H19C19.55 21.9993 20 21.5492 20 20.999Z\"></path></svg>",
1139
+ "smiley-rate10-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 23C6.85721 23 1.15412 19.9621 0.0134987 13.1669C-0.0765501 12.6272 0.293651 12.1076 0.833944 12.0177C1.38424 11.9277 1.89452 12.2975 1.98457 12.8371C2.92508 18.4732 7.69767 20.9914 12 20.9914C16.3023 20.9914 21.0749 18.4732 22.0154 12.8371C22.1055 12.2975 22.6158 11.9277 23.1661 12.0177C23.7063 12.1076 24.0765 12.6272 23.9865 13.1669C22.8559 19.9521 17.1428 23 11.99 23H12.01ZM21.165 6.15177C22.3056 5.01257 22.3056 3.16386 21.165 2.02465L21.0049 1.85477C19.9143 0.765533 18.1633 0.725561 17.0227 1.71487C15.8821 0.715568 14.1312 0.765533 13.0406 1.85477L12.8705 2.01466C11.7299 3.15386 11.7299 5.00257 12.8705 6.14178L17.0227 10.2889L21.175 6.14178L21.165 6.15177ZM15.742 3.27378L17.0127 4.54289L18.2834 3.27378C18.6436 2.91403 19.2239 2.91403 19.5841 3.27378L19.7442 3.43367C20.1044 3.79342 20.1044 4.37301 19.7442 4.73276L17.0127 7.46086L14.2812 4.73276C13.921 4.37301 13.921 3.79342 14.2812 3.43367L14.4413 3.27378C14.6214 3.09391 14.8515 3.00397 15.0917 3.00397C15.3318 3.00397 15.5619 3.09391 15.742 3.27378ZM11.1595 6.15177C12.3002 5.01257 12.3002 3.16386 11.1595 2.02465L10.9995 1.85477C9.90886 0.765533 8.15792 0.725561 7.0173 1.71487C5.87668 0.715568 4.12573 0.765533 3.03514 1.85477L2.86505 2.01466C1.72443 3.15386 1.72443 5.00257 2.86505 6.14178L7.0173 10.2889L11.1695 6.14178L11.1595 6.15177ZM5.7366 3.27378L7.00729 4.54289L8.27798 3.27378C8.63818 2.91403 9.21849 2.91403 9.57869 3.27378L9.73877 3.43367C10.099 3.79342 10.099 4.37301 9.73877 4.73276L7.00729 7.46086L4.27581 4.73276C3.91562 4.37301 3.91562 3.79342 4.27581 3.43367L4.4359 3.27378C4.61599 3.09391 4.84612 3.00397 5.08625 3.00397C5.32638 3.00397 5.5565 3.09391 5.7366 3.27378Z\"></path></svg>",
1140
+ "smiley-rate2-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_15894_140103)\"><path d=\"M4.88291 4.51001C4.47291 4.51001 4.08291 4.25001 3.94291 3.84001C3.76291 3.32001 4.03291 2.75001 4.55291 2.57001L8.32291 1.25001C8.84291 1.06001 9.41291 1.34001 9.59291 1.86001C9.77291 2.38001 9.50291 2.95001 8.98291 3.13001L5.20291 4.45001C5.09291 4.49001 4.98291 4.51001 4.87291 4.51001H4.88291ZM19.8129 3.89001C20.0229 3.38001 19.7729 2.79001 19.2629 2.59001L15.5529 1.07001C15.0429 0.860007 14.4529 1.11001 14.2529 1.62001C14.0429 2.13001 14.2929 2.72001 14.8029 2.92001L18.5029 4.43001C18.6229 4.48001 18.7529 4.50001 18.8829 4.50001C19.2729 4.50001 19.6529 4.27001 19.8129 3.88001V3.89001ZM3.50291 6.00001C2.64291 6.37001 1.79291 6.88001 1.00291 7.48001C0.79291 7.64001 0.64291 7.87001 0.59291 8.14001C0.48291 8.73001 0.87291 9.29001 1.45291 9.40001C2.04291 9.51001 2.60291 9.12001 2.71291 8.54001C2.87291 7.69001 3.12291 6.83001 3.50291 5.99001V6.00001ZM21.0429 8.55001C21.6029 10.48 24.2429 8.84001 22.7529 7.48001C21.9629 6.88001 21.1129 6.37001 20.2529 6.00001C20.6329 6.84001 20.8829 7.70001 21.0429 8.55001ZM21.5729 13.2C21.2529 14.2 22.5429 15.09 23.3629 14.39C23.8529 14 23.9229 13.29 23.5429 12.81C21.7429 10.67 22.1329 10.55 21.5829 13.2H21.5729ZM1.75291 11C1.22291 11.79 -0.14709 12.64 0.0129102 13.75C0.15291 14.36 0.75291 14.74 1.35291 14.6C2.98291 14.1 1.80291 12.22 1.75291 11ZM19.8829 17C19.8829 13.14 16.2929 10 11.8829 10C7.47291 10 3.88291 13.14 3.88291 17C3.88291 20.86 7.47291 24 11.8829 24C16.2929 24 19.8829 20.86 19.8829 17ZM17.8829 17C17.8829 19.76 15.1929 22 11.8829 22C8.57291 22 5.88291 19.76 5.88291 17C5.88291 14.24 8.57291 12 11.8829 12C15.1929 12 17.8829 14.24 17.8829 17Z\"></path></g><defs><clipPath id=\"clip0_15894_140103\"><rect width=\"24\" height=\"24\" fill=\"white\"></rect></clipPath></defs></svg>",
1141
+ "smiley-rate3-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.01915 7C6.46961 7 6.01998 6.55 6.01998 6V2C6.01998 1.45 6.46961 1 7.01915 1C7.56869 1 8.01832 1.45 8.01832 2V6C8.01832 6.55 7.56869 7 7.01915 7ZM18.01 6V2C18.01 1.45 17.5604 1 17.0108 1C16.4613 1 16.0117 1.45 16.0117 2V6C16.0117 6.55 16.4613 7 17.0108 7C17.5604 7 18.01 6.55 18.01 6ZM16.4213 21.58L18.01 19.99L19.2989 21.28C19.6886 21.67 20.3181 21.67 20.7077 21.28C21.0974 20.89 21.0974 20.26 20.7077 19.87L19.4188 18.58C18.6395 17.8 17.3705 17.8 16.5912 18.58L15.0025 20.17L13.4138 18.58C12.6345 17.8 11.3655 17.8 10.5862 18.58L8.9975 20.17L7.40883 18.58C6.62948 17.8 5.36053 17.8 4.58118 18.58L3.29226 19.87C2.90258 20.26 2.90258 20.89 3.29226 21.28C3.68193 21.67 4.31141 21.67 4.70108 21.28L5.99001 19.99L7.57868 21.58C8.35803 22.36 9.62698 22.36 10.4063 21.58L11.995 19.99L13.5837 21.58C13.9734 21.97 14.4829 22.16 14.9925 22.16C15.5021 22.16 16.0117 21.97 16.4013 21.58H16.4213Z\"></path></svg>",
1142
+ "smiley-rate4-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.06927 7C6.51927 7 6.06927 6.55 6.06927 6V2C6.06927 1.45 6.51927 1 7.06927 1C7.61927 1 8.06927 1.45 8.06927 2V6C8.06927 6.55 7.61927 7 7.06927 7ZM18.0693 6V2C18.0693 1.45 17.6193 1 17.0693 1C16.5193 1 16.0693 1.45 16.0693 2V6C16.0693 6.55 16.5193 7 17.0693 7C17.6193 7 18.0693 6.55 18.0693 6ZM22.5693 21.9C23.0693 21.66 23.2793 21.07 23.0393 20.57C21.1093 16.52 16.9093 14 12.0693 14C7.22927 14 3.02927 16.52 1.09927 20.57C0.859273 21.07 1.06927 21.67 1.56927 21.9C2.06927 22.14 2.65927 21.93 2.89927 21.43C4.49927 18.08 8.00927 16 12.0593 16C16.1093 16 19.6293 18.08 21.2193 21.43C21.3893 21.79 21.7493 22 22.1193 22C22.2593 22 22.4093 21.97 22.5493 21.9H22.5693Z\"></path></svg>",
1143
+ "smiley-rate5-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.00572 7C6.45572 7 6.00572 6.55 6.00572 6V2C6.00572 1.45 6.45572 1 7.00572 1C7.55572 1 8.00572 1.45 8.00572 2V6C8.00572 6.55 7.55572 7 7.00572 7ZM18.0057 6V2C18.0057 1.45 17.5557 1 17.0057 1C16.4557 1 16.0057 1.45 16.0057 2V6C16.0057 6.55 16.4557 7 17.0057 7C17.5557 7 18.0057 6.55 18.0057 6ZM19.9457 21.33C20.1257 20.81 19.8557 20.24 19.3357 20.05C14.5457 18.35 9.45572 18.35 4.66572 20.05C4.14572 20.23 3.87572 20.81 4.05572 21.33C4.23572 21.85 4.80572 22.12 5.33572 21.94C9.69572 20.4 14.3057 20.4 18.6657 21.94C18.7757 21.98 18.8857 22 18.9957 22C19.4057 22 19.7957 21.74 19.9357 21.33H19.9457Z\"></path></svg>",
1144
+ "smiley-rate6-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 7C6.45 7 6 6.55 6 6V2C6 1.45 6.45 1 7 1C7.55 1 8 1.45 8 2V6C8 6.55 7.55 7 7 7ZM18 6V2C18 1.45 17.55 1 17 1C16.45 1 16 1.45 16 2V6C16 6.55 16.45 7 17 7C17.55 7 18 6.55 18 6ZM21 21C21 20.45 20.55 20 20 20H4C3.45 20 3 20.45 3 21C3 21.55 3.45 22 4 22H20C20.55 22 21 21.55 21 21Z\"></path></svg>",
1145
+ "smiley-rate7-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.0022 23.99C11.452 23.99 11.0018 23.5402 11.0018 22.9904C11.0018 22.4407 11.452 21.9909 12.0022 21.9909C16.3137 21.9909 21.0755 19.472 22.0158 13.8344C22.1058 13.2947 22.616 12.9248 23.1662 13.0148C23.7064 13.1047 24.0765 13.6245 23.9865 14.1643C22.8561 20.9513 17.144 24 11.9922 24L12.0022 23.99ZM8.00072 5.99783V1.99957C8.00072 1.4498 7.55056 1 7.00036 1C6.45016 1 6 1.4498 6 1.99957V5.99783C6 6.54759 6.45016 6.99739 7.00036 6.99739C7.55056 6.99739 8.00072 6.54759 8.00072 5.99783ZM18.0043 5.99783V1.99957C18.0043 1.4498 17.5542 1 17.004 1C16.4538 1 16.0036 1.4498 16.0036 1.99957V5.99783C16.0036 6.54759 16.4538 6.99739 17.004 6.99739C17.5542 6.99739 18.0043 6.54759 18.0043 5.99783Z\"></path></svg>",
1146
+ "smiley-rate8-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85721 24 1.15412 20.96 0.0134987 14.16C-0.0765501 13.62 0.293651 13.1 0.833944 13.01C1.38424 12.92 1.89452 13.29 1.98457 13.83C2.92508 19.47 7.69767 21.99 12 21.99C16.3023 21.99 21.0749 19.47 22.0154 13.83C22.1055 13.29 22.6158 12.92 23.1661 13.01C23.7063 13.1 24.0765 13.62 23.9865 14.16C22.8559 20.95 17.1428 24 11.99 24H12.01ZM8.00783 6V2C8.00783 1.45 7.55759 1 7.00729 1C6.45699 1 6.00675 1.45 6.00675 2V6C6.00675 6.55 6.45699 7 7.00729 7C7.55759 7 8.00783 6.55 8.00783 6ZM18.0133 6V2C18.0133 1.45 17.563 1 17.0127 1C16.4624 1 16.0122 1.45 16.0122 2V6C16.0122 6.55 16.4624 7 17.0127 7C17.563 7 18.0133 6.55 18.0133 6Z\"></path></svg>",
1147
+ "smiley-rate9-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85767 24 1.15509 20.96 0.0145752 14.16C-0.0354475 13.87 0.0445888 13.57 0.234675 13.35C0.424761 13.13 0.704888 13 0.995019 13H23.005C23.2951 13 23.5752 13.13 23.7653 13.35C23.9554 13.57 24.0354 13.87 23.9854 14.16C22.8549 20.95 17.1423 24 11.99 24H12.01ZM2.25559 15C3.61621 19.82 8.0182 22 12.01 22C16.0018 22 20.4038 19.82 21.7644 15H2.25559ZM8.00819 6V2C8.00819 1.45 7.55799 1 7.00774 1C6.45749 1 6.00729 1.45 6.00729 2V6C6.00729 6.55 6.45749 7 7.00774 7C7.55799 7 8.00819 6.55 8.00819 6ZM18.0127 6V2C18.0127 1.45 17.5625 1 17.0123 1C16.462 1 16.0118 1.45 16.0118 2V6C16.0118 6.55 16.462 7 17.0123 7C17.5625 7 18.0127 6.55 18.0127 6Z\"></path></svg>"
1148
+ };
1149
+
1150
+ /*!
1151
+ * surveyjs - Survey JavaScript library v2.3.11
1152
+ * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1153
+ * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1154
+ */
1155
+
1156
+ var iconsV2 = {
1157
+ "modernbooleancheckchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><polygon points=\"19,10 14,10 14,5 10,5 10,10 5,10 5,14 10,14 10,19 14,19 14,14 19,14 \"></polygon></svg>",
1158
+ "modernbooleancheckind": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M22,0H2C0.9,0,0,0.9,0,2v20c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V2C24,0.9,23.1,0,22,0z M21,18L6,3h15V18z M3,6l15,15H3V6z\"></path></svg>",
1159
+ "modernbooleancheckunchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><rect x=\"5\" y=\"10\" width=\"14\" height=\"4\"></rect></svg>",
1160
+ "moderncheck": "<svg viewBox=\"0 0 24 24\"><path d=\"M5,13l2-2l3,3l7-7l2,2l-9,9L5,13z\"></path></svg>",
1161
+ "modernradio": "<svg viewBox=\"-12 -12 24 24\"><circle r=\"6\" cx=\"0\" cy=\"0\"></circle></svg>",
1162
+ "progressbutton": "<svg viewBox=\"0 0 10 10\"><polygon points=\"2,2 0,4 5,9 10,4 8,2 5,5 \"></polygon></svg>",
1163
+ "removefile": "<svg viewBox=\"0 0 16 16\"><path d=\"M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z M11,10l-1,1L8,9l-2,2l-1-1l2-2L5,6l1-1l2,2l2-2l1,1L9,8 L11,10z\"></path></svg>",
1164
+ "timercircle": "<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 160 160\"><circle cx=\"80\" cy=\"80\" r=\"70\" style=\"stroke: var(--sd-timer-stroke-background-color); stroke-width: var(--sd-timer-stroke-background-width)\" stroke-dasharray=\"none\" stroke-dashoffset=\"none\"></circle><circle cx=\"80\" cy=\"80\" r=\"70\"></circle></svg>",
1165
+ "add-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.75 12C15.75 12.41 15.41 12.75 15 12.75H12.75V15C12.75 15.41 12.41 15.75 12 15.75C11.59 15.75 11.25 15.41 11.25 15V12.75H9C8.59 12.75 8.25 12.41 8.25 12C8.25 11.59 8.59 11.25 9 11.25H11.25V9C11.25 8.59 11.59 8.25 12 8.25C12.41 8.25 12.75 8.59 12.75 9V11.25H15C15.41 11.25 15.75 11.59 15.75 12ZM21.75 12C21.75 17.38 17.38 21.75 12 21.75C6.62 21.75 2.25 17.38 2.25 12C2.25 6.62 6.62 2.25 12 2.25C17.38 2.25 21.75 6.62 21.75 12ZM20.25 12C20.25 7.45 16.55 3.75 12 3.75C7.45 3.75 3.75 7.45 3.75 12C3.75 16.55 7.45 20.25 12 20.25C16.55 20.25 20.25 16.55 20.25 12Z\"></path></svg>",
1166
+ "arrowleft-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.7475 7.9975C14.7475 8.4075 14.4075 8.7475 13.9975 8.7475H3.8075L7.5275 12.4675C7.8175 12.7575 7.8175 13.2375 7.5275 13.5275C7.3775 13.6775 7.1875 13.7475 6.9975 13.7475C6.8075 13.7475 6.6175 13.6775 6.4675 13.5275L1.4675 8.5275C1.1775 8.2375 1.1775 7.7575 1.4675 7.4675L6.4675 2.4675C6.7575 2.1775 7.2375 2.1775 7.5275 2.4675C7.8175 2.7575 7.8175 3.2375 7.5275 3.5275L3.8075 7.2475H13.9975C14.4075 7.2475 14.7475 7.5875 14.7475 7.9975Z\"></path></svg>",
1167
+ "arrowright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.53 8.5275L9.53 13.5275C9.38 13.6775 9.19 13.7475 9 13.7475C8.81 13.7475 8.62 13.6775 8.47 13.5275C8.18 13.2375 8.18 12.7575 8.47 12.4675L12.19 8.7475H2C1.59 8.7475 1.25 8.4075 1.25 7.9975C1.25 7.5875 1.59 7.2475 2 7.2475H12.19L8.47 3.5275C8.18 3.2375 8.18 2.7575 8.47 2.4675C8.76 2.1775 9.24 2.1775 9.53 2.4675L14.53 7.4675C14.82 7.7575 14.82 8.2375 14.53 8.5275Z\"></path></svg>",
1168
+ "camera-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.19 4.25H17.12C16.72 4.25 16.35 4.03 16.17 3.67C15.73 2.8 14.86 2.25 13.88 2.25H10.12C9.14 2.25 8.27 2.79 7.83 3.67C7.65 4.03 7.29 4.25 6.88 4.25H4.81C3.4 4.25 2.25 5.4 2.25 6.81V18.19C2.25 19.6 3.4 20.75 4.81 20.75H19.19C20.6 20.75 21.75 19.6 21.75 18.19V6.81C21.75 5.4 20.6 4.25 19.19 4.25ZM20.25 18.19C20.25 18.77 19.78 19.25 19.19 19.25H4.81C4.23 19.25 3.75 18.78 3.75 18.19V6.81C3.75 6.23 4.22 5.75 4.81 5.75H6.88C7.86 5.75 8.73 5.21 9.17 4.33C9.35 3.97 9.71 3.75 10.12 3.75H13.88C14.28 3.75 14.65 3.97 14.83 4.33C15.27 5.2 16.14 5.75 17.12 5.75H19.19C19.77 5.75 20.25 6.22 20.25 6.81V18.19ZM12 6.25C8.83 6.25 6.25 8.83 6.25 12C6.25 15.17 8.83 17.75 12 17.75C15.17 17.75 17.75 15.17 17.75 12C17.75 8.83 15.17 6.25 12 6.25ZM12 16.25C9.66 16.25 7.75 14.34 7.75 12C7.75 9.66 9.66 7.75 12 7.75C14.34 7.75 16.25 9.66 16.25 12C16.25 14.34 14.34 16.25 12 16.25ZM14.75 12C14.75 13.52 13.52 14.75 12 14.75C11.59 14.75 11.25 14.41 11.25 14C11.25 13.59 11.59 13.25 12 13.25C12.69 13.25 13.25 12.69 13.25 12C13.25 11.59 13.59 11.25 14 11.25C14.41 11.25 14.75 11.59 14.75 12Z\"></path></svg>",
1169
+ "camera-32x32": "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25 7.25H22.19C21.73 7.25 21.31 7 21.09 6.59L20.89 6.22C20.23 5.01 18.97 4.25 17.59 4.25H14.41C13.03 4.25 11.77 5 11.11 6.22L10.91 6.6C10.69 7 10.27 7.26 9.81 7.26H7C4.93 7.26 3.25 8.94 3.25 11.01V24.01C3.25 26.08 4.93 27.76 7 27.76H25C27.07 27.76 28.75 26.08 28.75 24.01V11C28.75 8.93 27.07 7.25 25 7.25ZM27.25 24C27.25 25.24 26.24 26.25 25 26.25H7C5.76 26.25 4.75 25.24 4.75 24V11C4.75 9.76 5.76 8.75 7 8.75H9.81C10.82 8.75 11.75 8.2 12.23 7.31L12.43 6.94C12.82 6.21 13.58 5.76 14.41 5.76H17.59C18.42 5.76 19.18 6.21 19.57 6.94L19.77 7.31C20.25 8.2 21.18 8.76 22.19 8.76H25C26.24 8.76 27.25 9.77 27.25 11.01V24.01V24ZM16 10.25C12.28 10.25 9.25 13.28 9.25 17C9.25 20.72 12.28 23.75 16 23.75C19.72 23.75 22.75 20.72 22.75 17C22.75 13.28 19.72 10.25 16 10.25ZM16 22.25C13.11 22.25 10.75 19.89 10.75 17C10.75 14.11 13.11 11.75 16 11.75C18.89 11.75 21.25 14.11 21.25 17C21.25 19.89 18.89 22.25 16 22.25ZM19.75 17C19.75 19.07 18.07 20.75 16 20.75C15.59 20.75 15.25 20.41 15.25 20C15.25 19.59 15.59 19.25 16 19.25C17.24 19.25 18.25 18.24 18.25 17C18.25 16.59 18.59 16.25 19 16.25C19.41 16.25 19.75 16.59 19.75 17Z\"></path></svg>",
1170
+ "cancel-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.8099 11.75L15.2799 9.28C15.5699 8.99 15.5699 8.51 15.2799 8.22C14.9899 7.93 14.5099 7.93 14.2199 8.22L11.7499 10.69L9.27994 8.22C8.98994 7.93 8.50994 7.93 8.21994 8.22C7.92994 8.51 7.92994 8.99 8.21994 9.28L10.6899 11.75L8.21994 14.22C7.92994 14.51 7.92994 14.99 8.21994 15.28C8.36994 15.43 8.55994 15.5 8.74994 15.5C8.93994 15.5 9.12994 15.43 9.27994 15.28L11.7499 12.81L14.2199 15.28C14.3699 15.43 14.5599 15.5 14.7499 15.5C14.9399 15.5 15.1299 15.43 15.2799 15.28C15.5699 14.99 15.5699 14.51 15.2799 14.22L12.8099 11.75Z\"></path></svg>",
1171
+ "check-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.0275 5.0275L6.5275 12.5275C6.3775 12.6775 6.1875 12.7475 5.9975 12.7475C5.8075 12.7475 5.6175 12.6775 5.4675 12.5275L2.4675 9.5275C2.1775 9.2375 2.1775 8.7575 2.4675 8.4675C2.7575 8.1775 3.2375 8.1775 3.5275 8.4675L5.9975 10.9375L12.9675 3.9675C13.2575 3.6775 13.7375 3.6775 14.0275 3.9675C14.3175 4.2575 14.3175 4.7375 14.0275 5.0275Z\"></path></svg>",
1172
+ "check-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.5275 7.5275L9.5275 17.5275C9.3775 17.6775 9.1875 17.7475 8.9975 17.7475C8.8075 17.7475 8.6175 17.6775 8.4675 17.5275L4.4675 13.5275C4.1775 13.2375 4.1775 12.7575 4.4675 12.4675C4.7575 12.1775 5.2375 12.1775 5.5275 12.4675L8.9975 15.9375L18.4675 6.4675C18.7575 6.1775 19.2375 6.1775 19.5275 6.4675C19.8175 6.7575 19.8175 7.2375 19.5275 7.5275Z\"></path></svg>",
1173
+ "chevrondown-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.5275 10.5275L12.5275 14.5275C12.3775 14.6775 12.1875 14.7475 11.9975 14.7475C11.8075 14.7475 11.6175 14.6775 11.4675 14.5275L7.4675 10.5275C7.1775 10.2375 7.1775 9.7575 7.4675 9.4675C7.7575 9.1775 8.2375 9.1775 8.5275 9.4675L11.9975 12.9375L15.4675 9.4675C15.7575 9.1775 16.2375 9.1775 16.5275 9.4675C16.8175 9.7575 16.8175 10.2375 16.5275 10.5275Z\"></path></svg>",
1174
+ "chevronright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.35 8.34627L7.35 12.3463C7.25 12.4463 7.12 12.4963 7 12.4963C6.88 12.4963 6.74 12.4463 6.65 12.3463C6.45 12.1463 6.45 11.8363 6.65 11.6363L10.3 7.98627L6.65 4.34627C6.45 4.15627 6.45 3.83627 6.65 3.64627C6.85 3.45627 7.16 3.44627 7.35 3.64627L11.35 7.64627C11.55 7.84627 11.55 8.15627 11.35 8.35627V8.34627Z\"></path></svg>",
1175
+ "clear-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.35 11.65C12.55 11.85 12.55 12.16 12.35 12.36C12.25 12.46 12.12 12.51 12 12.51C11.88 12.51 11.74 12.46 11.65 12.36L8 8.71L4.35 12.36C4.25 12.46 4.12 12.51 4 12.51C3.88 12.51 3.74 12.46 3.65 12.36C3.45 12.16 3.45 11.85 3.65 11.65L7.3 8L3.65 4.35C3.45 4.16 3.45 3.84 3.65 3.65C3.85 3.46 4.16 3.45 4.35 3.65L8 7.3L11.65 3.65C11.85 3.45 12.16 3.45 12.36 3.65C12.56 3.85 12.56 4.16 12.36 4.36L8.71 8.01L12.36 11.66L12.35 11.65Z\"></path></svg>",
1176
+ "clear-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.12 10.9325C20.64 10.4125 20.93 9.7225 20.93 8.9925C20.93 8.2625 20.64 7.5725 20.12 7.0525L16.95 3.8825C15.88 2.8125 14.13 2.8125 13.06 3.8825L3.88 13.0525C3.36 13.5725 3.07 14.2625 3.07 14.9925C3.07 15.7225 3.36 16.4125 3.88 16.9325L5.64 18.6925C6.57 19.6225 7.78 20.0825 9 20.0825C10.22 20.0825 11.43 19.6225 12.36 18.6925L20.12 10.9325ZM14.12 4.9325C14.36 4.6925 14.67 4.5625 15 4.5625C15.33 4.5625 15.65 4.6925 15.88 4.9325L19.05 8.1025C19.54 8.5925 19.54 9.3825 19.05 9.8725L12.99 15.9325L8.05 10.9925L14.12 4.9325ZM6.7 17.6325L4.94 15.8725C4.45 15.3825 4.45 14.5925 4.94 14.1025L7 12.0425L11.94 16.9825L11.3 17.6225C10.07 18.8525 7.93 18.8525 6.7 17.6225V17.6325ZM22.75 20.9925C22.75 21.4025 22.41 21.7425 22 21.7425H14C13.59 21.7425 13.25 21.4025 13.25 20.9925C13.25 20.5825 13.59 20.2425 14 20.2425H22C22.41 20.2425 22.75 20.5825 22.75 20.9925ZM4.75 20.9925C4.75 21.4025 4.41 21.7425 4 21.7425H2C1.59 21.7425 1.25 21.4025 1.25 20.9925C1.25 20.5825 1.59 20.2425 2 20.2425H4C4.41 20.2425 4.75 20.5825 4.75 20.9925Z\"></path></svg>",
1177
+ "close-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.5275 12.4675C13.8175 12.7575 13.8175 13.2375 13.5275 13.5275C13.3775 13.6775 13.1875 13.7475 12.9975 13.7475C12.8075 13.7475 12.6175 13.6775 12.4675 13.5275L7.9975 9.0575L3.5275 13.5275C3.3775 13.6775 3.1875 13.7475 2.9975 13.7475C2.8075 13.7475 2.6175 13.6775 2.4675 13.5275C2.1775 13.2375 2.1775 12.7575 2.4675 12.4675L6.9375 7.9975L2.4675 3.5275C2.1775 3.2375 2.1775 2.7575 2.4675 2.4675C2.7575 2.1775 3.2375 2.1775 3.5275 2.4675L7.9975 6.9375L12.4675 2.4675C12.7575 2.1775 13.2375 2.1775 13.5275 2.4675C13.8175 2.7575 13.8175 3.2375 13.5275 3.5275L9.0575 7.9975L13.5275 12.4675Z\"></path></svg>",
1178
+ "close-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.5275 18.4675C19.8175 18.7575 19.8175 19.2375 19.5275 19.5275C19.3775 19.6775 19.1875 19.7475 18.9975 19.7475C18.8075 19.7475 18.6175 19.6775 18.4675 19.5275L11.9975 13.0575L5.5275 19.5275C5.3775 19.6775 5.1875 19.7475 4.9975 19.7475C4.8075 19.7475 4.6175 19.6775 4.4675 19.5275C4.1775 19.2375 4.1775 18.7575 4.4675 18.4675L10.9375 11.9975L4.4675 5.5275C4.1775 5.2375 4.1775 4.7575 4.4675 4.4675C4.7575 4.1775 5.2375 4.1775 5.5275 4.4675L11.9975 10.9375L18.4675 4.4675C18.7575 4.1775 19.2375 4.1775 19.5275 4.4675C19.8175 4.7575 19.8175 5.2375 19.5275 5.5275L13.0575 11.9975L19.5275 18.4675Z\"></path></svg>",
1179
+ "collapse-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
1180
+ "collapsedetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
1181
+ "delete-16x16": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path d=\"M13 3.25H10.75V3C10.75 2.04 9.96 1.25 9 1.25H7C6.04 1.25 5.25 2.04 5.25 3V3.25H3C2.59 3.25 2.25 3.59 2.25 4C2.25 4.41 2.59 4.75 3 4.75H3.25V13C3.25 13.96 4.04 14.75 5 14.75H11C11.96 14.75 12.75 13.96 12.75 13V4.75H13C13.41 4.75 13.75 4.41 13.75 4C13.75 3.59 13.41 3.25 13 3.25ZM6.75 3C6.75 2.86 6.86 2.75 7 2.75H9C9.14 2.75 9.25 2.86 9.25 3V3.25H6.75V3ZM11.25 13C11.25 13.14 11.14 13.25 11 13.25H5C4.86 13.25 4.75 13.14 4.75 13V4.75H11.25V13ZM9.25 6.25C9.66 6.25 10 6.59 10 7V11C10 11.41 9.66 11.75 9.25 11.75C8.84 11.75 8.5 11.41 8.5 11V7C8.5 6.59 8.84 6.25 9.25 6.25ZM7.5 7V11C7.5 11.41 7.16 11.75 6.75 11.75C6.34 11.75 6 11.41 6 11V7C6 6.59 6.34 6.25 6.75 6.25C7.16 6.25 7.5 6.59 7.5 7Z\"></path></svg>",
1182
+ "delete-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.75 9V17C12.75 17.41 12.41 17.75 12 17.75C11.59 17.75 11.25 17.41 11.25 17V9C11.25 8.59 11.59 8.25 12 8.25C12.41 8.25 12.75 8.59 12.75 9ZM14.25 9V17C14.25 17.41 14.59 17.75 15 17.75C15.41 17.75 15.75 17.41 15.75 17V9C15.75 8.59 15.41 8.25 15 8.25C14.59 8.25 14.25 8.59 14.25 9ZM9 8.25C8.59 8.25 8.25 8.59 8.25 9V17C8.25 17.41 8.59 17.75 9 17.75C9.41 17.75 9.75 17.41 9.75 17V9C9.75 8.59 9.41 8.25 9 8.25ZM20.75 6C20.75 6.41 20.41 6.75 20 6.75H18.75V18C18.75 19.52 17.52 20.75 16 20.75H8C6.48 20.75 5.25 19.52 5.25 18V6.75H4C3.59 6.75 3.25 6.41 3.25 6C3.25 5.59 3.59 5.25 4 5.25H8.25V4C8.25 3.04 9.04 2.25 10 2.25H14C14.96 2.25 15.75 3.04 15.75 4V5.25H20C20.41 5.25 20.75 5.59 20.75 6ZM9.75 5.25H14.25V4C14.25 3.86 14.14 3.75 14 3.75H10C9.86 3.75 9.75 3.86 9.75 4V5.25ZM17.25 6.75H6.75V18C6.75 18.69 7.31 19.25 8 19.25H16C16.69 19.25 17.25 18.69 17.25 18V6.75Z\"></path></svg>",
1183
+ "drag-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.5 8.75C15.19 8.75 15.75 8.19 15.75 7.5C15.75 6.81 15.19 6.25 14.5 6.25C13.81 6.25 13.25 6.81 13.25 7.5C13.25 8.19 13.81 8.75 14.5 8.75ZM14.5 7.25C14.64 7.25 14.75 7.36 14.75 7.5C14.75 7.78 14.25 7.78 14.25 7.5C14.25 7.36 14.36 7.25 14.5 7.25ZM9.5 6.25C8.81 6.25 8.25 6.81 8.25 7.5C8.25 8.19 8.81 8.75 9.5 8.75C10.19 8.75 10.75 8.19 10.75 7.5C10.75 6.81 10.19 6.25 9.5 6.25ZM9.25 7.5C9.25 7.36 9.36 7.25 9.5 7.25C9.64 7.25 9.75 7.36 9.75 7.5C9.75 7.78 9.25 7.78 9.25 7.5ZM14.5 11.25C13.81 11.25 13.25 11.81 13.25 12.5C13.25 13.19 13.81 13.75 14.5 13.75C15.19 13.75 15.75 13.19 15.75 12.5C15.75 11.81 15.19 11.25 14.5 11.25ZM14.25 12.5C14.25 12.36 14.36 12.25 14.5 12.25C14.64 12.25 14.75 12.36 14.75 12.5C14.75 12.78 14.25 12.78 14.25 12.5ZM9.5 11.25C8.81 11.25 8.25 11.81 8.25 12.5C8.25 13.19 8.81 13.75 9.5 13.75C10.19 13.75 10.75 13.19 10.75 12.5C10.75 11.81 10.19 11.25 9.5 11.25ZM9.25 12.5C9.25 12.36 9.36 12.25 9.5 12.25C9.64 12.25 9.75 12.36 9.75 12.5C9.75 12.78 9.25 12.78 9.25 12.5ZM14.5 16.25C13.81 16.25 13.25 16.81 13.25 17.5C13.25 18.19 13.81 18.75 14.5 18.75C15.19 18.75 15.75 18.19 15.75 17.5C15.75 16.81 15.19 16.25 14.5 16.25ZM14.25 17.5C14.25 17.36 14.36 17.25 14.5 17.25C14.64 17.25 14.75 17.36 14.75 17.5C14.75 17.78 14.25 17.78 14.25 17.5ZM9.5 16.25C8.81 16.25 8.25 16.81 8.25 17.5C8.25 18.19 8.81 18.75 9.5 18.75C10.19 18.75 10.75 18.19 10.75 17.5C10.75 16.81 10.19 16.25 9.5 16.25ZM9.25 17.5C9.25 17.36 9.36 17.25 9.5 17.25C9.64 17.25 9.75 17.36 9.75 17.5C9.75 17.78 9.25 17.78 9.25 17.5Z\"></path></svg>",
1184
+ "draghorizontal-24x16": "<svg viewBox=\"0 0 24 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.5 9.25C16.81 9.25 16.25 9.81 16.25 10.5C16.25 11.19 16.81 11.75 17.5 11.75C18.19 11.75 18.75 11.19 18.75 10.5C18.75 9.81 18.19 9.25 17.5 9.25ZM17.25 10.5C17.25 10.36 17.36 10.25 17.5 10.25C17.64 10.25 17.75 10.36 17.75 10.5C17.75 10.78 17.25 10.78 17.25 10.5ZM17.5 6.75C18.19 6.75 18.75 6.19 18.75 5.5C18.75 4.81 18.19 4.25 17.5 4.25C16.81 4.25 16.25 4.81 16.25 5.5C16.25 6.19 16.81 6.75 17.5 6.75ZM17.5 5.25C17.64 5.25 17.75 5.36 17.75 5.5C17.75 5.78 17.25 5.78 17.25 5.5C17.25 5.36 17.36 5.25 17.5 5.25ZM12.5 9.25C11.81 9.25 11.25 9.81 11.25 10.5C11.25 11.19 11.81 11.75 12.5 11.75C13.19 11.75 13.75 11.19 13.75 10.5C13.75 9.81 13.19 9.25 12.5 9.25ZM12.25 10.5C12.25 10.36 12.36 10.25 12.5 10.25C12.64 10.25 12.75 10.36 12.75 10.5C12.75 10.78 12.25 10.78 12.25 10.5ZM12.5 4.25C11.81 4.25 11.25 4.81 11.25 5.5C11.25 6.19 11.81 6.75 12.5 6.75C13.19 6.75 13.75 6.19 13.75 5.5C13.75 4.81 13.19 4.25 12.5 4.25ZM12.25 5.5C12.25 5.36 12.36 5.25 12.5 5.25C12.64 5.25 12.75 5.36 12.75 5.5C12.75 5.78 12.25 5.78 12.25 5.5ZM7.5 9.25C6.81 9.25 6.25 9.81 6.25 10.5C6.25 11.19 6.81 11.75 7.5 11.75C8.19 11.75 8.75 11.19 8.75 10.5C8.75 9.81 8.19 9.25 7.5 9.25ZM7.25 10.5C7.25 10.36 7.36 10.25 7.5 10.25C7.64 10.25 7.75 10.36 7.75 10.5C7.75 10.78 7.25 10.78 7.25 10.5ZM7.5 4.25C6.81 4.25 6.25 4.81 6.25 5.5C6.25 6.19 6.81 6.75 7.5 6.75C8.19 6.75 8.75 6.19 8.75 5.5C8.75 4.81 8.19 4.25 7.5 4.25ZM7.25 5.5C7.25 5.36 7.36 5.25 7.5 5.25C7.64 5.25 7.75 5.36 7.75 5.5C7.75 5.78 7.25 5.78 7.25 5.5Z\"></path></svg>",
1185
+ "editsmall-16x16": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path d=\"M13.1209 3.05249L12.9509 2.88249C11.8809 1.81249 10.1309 1.81249 9.06089 2.88249L3.47089 8.46249C3.37089 8.56249 3.31089 8.68249 3.27089 8.81249L2.27089 12.8125C2.21089 13.0625 2.28089 13.3425 2.47089 13.5225C2.61089 13.6625 2.80089 13.7425 3.00089 13.7425C3.06089 13.7425 3.12089 13.7425 3.18089 13.7225L7.18089 12.7225C7.31089 12.6925 7.43089 12.6225 7.53089 12.5225L13.1209 6.93249C14.1909 5.86249 14.1909 4.11249 13.1209 3.04249V3.05249ZM6.62089 11.3125L4.04089 11.9625L4.69089 9.38249L8.01089 6.06249L9.95089 8.00249L6.63089 11.3225L6.62089 11.3125ZM12.0609 5.87249L11.0009 6.93249L9.06089 4.99249L10.1209 3.93249C10.6109 3.44249 11.4009 3.44249 11.8909 3.93249L12.0609 4.10249C12.5509 4.59249 12.5509 5.38249 12.0609 5.87249Z\"></path></svg>",
1186
+ "expand-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H8.75V11C8.75 11.41 8.41 11.75 8 11.75C7.59 11.75 7.25 11.41 7.25 11V8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H7.25V5C7.25 4.59 7.59 4.25 8 4.25C8.41 4.25 8.75 4.59 8.75 5V7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
1187
+ "expanddetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H8.75V11C8.75 11.41 8.41 11.75 8 11.75C7.59 11.75 7.25 11.41 7.25 11V8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H7.25V5C7.25 4.59 7.59 4.25 8 4.25C8.41 4.25 8.75 4.59 8.75 5V7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
1188
+ "file-72x72": "<svg viewBox=\"0 0 72 72\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.83 12.83L53.17 3.17C52.7982 2.79866 52.357 2.50421 51.8714 2.30346C51.3858 2.1027 50.8654 1.99959 50.34 2H14C12.4087 2 10.8826 2.63214 9.75735 3.75736C8.63214 4.88258 8 6.4087 8 8V64C8 65.5913 8.63214 67.1174 9.75735 68.2426C10.8826 69.3679 12.4087 70 14 70H58C59.5913 70 61.1174 69.3679 62.2426 68.2426C63.3679 67.1174 64 65.5913 64 64V15.66C64.0004 15.1346 63.8973 14.6142 63.6965 14.1286C63.4958 13.643 63.2013 13.2018 62.83 12.83ZM52 4.83L61.17 14H56C54.9391 14 53.9217 13.5786 53.1716 12.8284C52.4214 12.0783 52 11.0609 52 10V4.83ZM62 64C62 65.0609 61.5786 66.0783 60.8284 66.8284C60.0783 67.5786 59.0609 68 58 68H14C12.9391 68 11.9217 67.5786 11.1716 66.8284C10.4214 66.0783 10 65.0609 10 64V8C10 6.93914 10.4214 5.92172 11.1716 5.17157C11.9217 4.42143 12.9391 4 14 4H50V10C50 11.5913 50.6321 13.1174 51.7574 14.2426C52.8826 15.3679 54.4087 16 56 16H62V64ZM22 26H50V28H22V26ZM22 32H50V34H22V32ZM22 38H50V40H22V38ZM22 44H50V46H22V44Z\"></path></svg>",
1189
+ "flip-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.53 17.4775C14.82 17.7675 14.82 18.2475 14.53 18.5375L11.53 21.5375C11.38 21.6875 11.19 21.7575 11 21.7575C10.81 21.7575 10.62 21.6875 10.47 21.5375C10.18 21.2475 10.18 20.7675 10.47 20.4775L12.2 18.7475C12.13 18.7475 12.07 18.7475 12 18.7475C6.62 18.7475 2.25 15.7475 2.25 12.0575C2.25 10.2975 3.22 8.6375 4.99 7.3875C5.33 7.1475 5.8 7.2275 6.03 7.5675C6.27 7.9075 6.19 8.3775 5.85 8.6075C4.49 9.5675 3.74 10.7875 3.74 12.0575C3.74 14.9175 7.44 17.2475 11.99 17.2475C12.05 17.2475 12.11 17.2475 12.17 17.2475L10.46 15.5375C10.17 15.2475 10.17 14.7675 10.46 14.4775C10.75 14.1875 11.23 14.1875 11.52 14.4775L14.52 17.4775H14.53ZM12 5.2575C11.93 5.2575 11.87 5.2575 11.8 5.2575L13.53 3.5275C13.82 3.2375 13.82 2.7575 13.53 2.4675C13.24 2.1775 12.76 2.1775 12.47 2.4675L9.47 5.4675C9.18 5.7575 9.18 6.2375 9.47 6.5275L12.47 9.5275C12.62 9.6775 12.81 9.7475 13 9.7475C13.19 9.7475 13.38 9.6775 13.53 9.5275C13.82 9.2375 13.82 8.7575 13.53 8.4675L11.82 6.7575C11.88 6.7575 11.94 6.7575 12 6.7575C16.55 6.7575 20.25 9.0875 20.25 11.9475C20.25 13.2075 19.5 14.4375 18.14 15.3975C17.8 15.6375 17.72 16.1075 17.96 16.4475C18.11 16.6575 18.34 16.7675 18.57 16.7675C18.72 16.7675 18.87 16.7275 19 16.6275C20.77 15.3775 21.75 13.7175 21.75 11.9575C21.75 8.2675 17.38 5.2675 12 5.2675V5.2575Z\"></path></svg>",
1190
+ "folder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.72 9.24C21.45 8.92 21.12 8.67 20.75 8.5V8C20.75 6.48 19.52 5.25 18 5.25H10.65C10.32 4.1 9.26 3.25 8 3.25H6C4.48 3.25 3.25 4.48 3.25 6V18C3.25 19.52 4.48 20.75 6 20.75H18.33C19.66 20.75 20.8 19.8 21.04 18.49L22.31 11.49C22.46 10.69 22.24 9.86 21.72 9.24ZM4.75 18V6C4.75 5.31 5.31 4.75 6 4.75H8C8.69 4.75 9.25 5.31 9.25 6C9.25 6.41 9.59 6.75 10 6.75H18C18.69 6.75 19.25 7.31 19.25 8V8.25H9.27C7.94 8.25 6.8 9.2 6.56 10.51L5.29 17.51C5.19 18.07 5.27 18.64 5.51 19.15C5.06 18.96 4.75 18.52 4.75 18ZM20.83 11.22L19.56 18.22C19.45 18.81 18.94 19.25 18.33 19.25H8C7.63 19.25 7.28 19.09 7.04 18.8C6.8 18.51 6.7 18.14 6.77 17.78L8.04 10.78C8.15 10.19 8.66 9.75 9.27 9.75H19.6C19.97 9.75 20.32 9.91 20.56 10.2C20.8 10.49 20.9 10.86 20.83 11.22Z\"></path></svg>",
1191
+ "fullsize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 3.25H4C3.04 3.25 2.25 4.04 2.25 5V11C2.25 11.96 3.04 12.75 4 12.75H12C12.96 12.75 13.75 11.96 13.75 11V5C13.75 4.04 12.96 3.25 12 3.25ZM12.25 11C12.25 11.14 12.14 11.25 12 11.25H4C3.86 11.25 3.75 11.14 3.75 11V5C3.75 4.86 3.86 4.75 4 4.75H12C12.14 4.75 12.25 4.86 12.25 5V11Z\"></path></svg>",
1192
+ "image-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M33 10.25H15C12.38 10.25 10.25 12.38 10.25 15V33C10.25 35.62 12.38 37.75 15 37.75H33C35.62 37.75 37.75 35.62 37.75 33V15C37.75 12.38 35.62 10.25 33 10.25ZM36.25 33C36.25 34.79 34.79 36.25 33 36.25H15C13.21 36.25 11.75 34.79 11.75 33V15C11.75 13.21 13.21 11.75 15 11.75H33C34.79 11.75 36.25 13.21 36.25 15V33ZM30.5 14.25C28.71 14.25 27.25 15.71 27.25 17.5C27.25 19.29 28.71 20.75 30.5 20.75C32.29 20.75 33.75 19.29 33.75 17.5C33.75 15.71 32.29 14.25 30.5 14.25ZM30.5 19.25C29.54 19.25 28.75 18.46 28.75 17.5C28.75 16.54 29.54 15.75 30.5 15.75C31.46 15.75 32.25 16.54 32.25 17.5C32.25 18.46 31.46 19.25 30.5 19.25ZM29.26 26.28C28.94 25.92 28.49 25.71 28.01 25.7C27.54 25.68 27.07 25.87 26.73 26.2L24.95 27.94L22.28 25.23C21.94 24.89 21.5 24.71 21 24.71C20.52 24.71 20.06 24.93 19.74 25.28L14.74 30.78C14.25 31.3 14.12 32.06 14.41 32.72C14.69 33.36 15.28 33.75 15.95 33.75H32.07C32.74 33.75 33.33 33.35 33.61 32.72C33.89 32.06 33.77 31.31 33.29 30.79L29.27 26.29L29.26 26.28ZM32.22 32.12C32.18 32.2 32.13 32.25 32.06 32.25H15.94C15.87 32.25 15.81 32.21 15.78 32.12C15.77 32.09 15.71 31.93 15.83 31.8L20.84 26.29C20.9 26.22 20.99 26.21 21.02 26.21C21.06 26.21 21.14 26.22 21.2 26.29L24.4 29.54C24.69 29.83 25.16 29.84 25.46 29.54L27.77 27.27C27.83 27.21 27.9 27.2 27.94 27.2C28.01 27.2 28.06 27.21 28.13 27.28L32.16 31.79C32.16 31.79 32.16 31.79 32.17 31.8C32.29 31.93 32.23 32.09 32.22 32.12Z\"></path></svg>",
1193
+ "loading-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_19679_369428)\"><path opacity=\"0.1\" d=\"M24 40C15.18 40 8 32.82 8 24C8 15.18 15.18 8 24 8C32.82 8 40 15.18 40 24C40 32.82 32.82 40 24 40ZM24 12C17.38 12 12 17.38 12 24C12 30.62 17.38 36 24 36C30.62 36 36 30.62 36 24C36 17.38 30.62 12 24 12Z\" fill=\"black\" fill-opacity=\"0.91\"></path><path d=\"M10 26C8.9 26 8 25.1 8 24C8 15.18 15.18 8 24 8C25.1 8 26 8.9 26 10C26 11.1 25.1 12 24 12C17.38 12 12 17.38 12 24C12 25.1 11.1 26 10 26Z\"></path></g><defs><clipPath id=\"clip0_19679_369428\"><rect width=\"32\" height=\"32\" fill=\"white\" transform=\"translate(8 8)\"></rect></clipPath></defs></svg>",
1194
+ "maximize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.75 3V7C13.75 7.41 13.41 7.75 13 7.75C12.59 7.75 12.25 7.41 12.25 7V4.81L9.53 7.53C9.38 7.68 9.19 7.75 9 7.75C8.81 7.75 8.62 7.68 8.47 7.53C8.18 7.24 8.18 6.76 8.47 6.47L11.19 3.75H9C8.59 3.75 8.25 3.41 8.25 3C8.25 2.59 8.59 2.25 9 2.25H13C13.1 2.25 13.19 2.27 13.29 2.31C13.47 2.39 13.62 2.53 13.7 2.72C13.74 2.81 13.76 2.91 13.76 3.01L13.75 3ZM7.53 8.47C7.24 8.18 6.76 8.18 6.47 8.47L3.75 11.19V9C3.75 8.59 3.41 8.25 3 8.25C2.59 8.25 2.25 8.59 2.25 9V13C2.25 13.1 2.27 13.19 2.31 13.29C2.39 13.47 2.53 13.62 2.72 13.7C2.81 13.74 2.91 13.76 3.01 13.76H7.01C7.42 13.76 7.76 13.42 7.76 13.01C7.76 12.6 7.42 12.26 7.01 12.26H4.82L7.54 9.54C7.83 9.25 7.83 8.77 7.54 8.48L7.53 8.47Z\"></path></svg>",
1195
+ "minimize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.75 8C13.75 8.41 13.41 8.75 13 8.75H3C2.59 8.75 2.25 8.41 2.25 8C2.25 7.59 2.59 7.25 3 7.25H13C13.41 7.25 13.75 7.59 13.75 8Z\"></path></svg>",
1196
+ "more-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 10.25C11.04 10.25 10.25 11.04 10.25 12C10.25 12.96 11.04 13.75 12 13.75C12.96 13.75 13.75 12.96 13.75 12C13.75 11.04 12.96 10.25 12 10.25ZM11.75 12C11.75 11.86 11.86 11.75 12 11.75C12.14 11.75 12.25 11.86 12.25 12C12.25 12.28 11.75 12.28 11.75 12ZM19 10.25C18.04 10.25 17.25 11.04 17.25 12C17.25 12.96 18.04 13.75 19 13.75C19.96 13.75 20.75 12.96 20.75 12C20.75 11.04 19.96 10.25 19 10.25ZM18.75 12C18.75 11.86 18.86 11.75 19 11.75C19.14 11.75 19.25 11.86 19.25 12C19.25 12.28 18.75 12.28 18.75 12ZM5 10.25C4.04 10.25 3.25 11.04 3.25 12C3.25 12.96 4.04 13.75 5 13.75C5.96 13.75 6.75 12.96 6.75 12C6.75 11.04 5.96 10.25 5 10.25ZM4.75 12C4.75 11.86 4.86 11.75 5 11.75C5.14 11.75 5.25 11.86 5.25 12C5.25 12.28 4.75 12.28 4.75 12Z\"></path></svg>",
1197
+ "navmenu-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.25 7C3.25 6.59 3.59 6.25 4 6.25H15C15.41 6.25 15.75 6.59 15.75 7C15.75 7.41 15.41 7.75 15 7.75H4C3.59 7.75 3.25 7.41 3.25 7ZM20 11.25H4C3.59 11.25 3.25 11.59 3.25 12C3.25 12.41 3.59 12.75 4 12.75H20C20.41 12.75 20.75 12.41 20.75 12C20.75 11.59 20.41 11.25 20 11.25ZM9 16.25H4C3.59 16.25 3.25 16.59 3.25 17C3.25 17.41 3.59 17.75 4 17.75H9C9.41 17.75 9.75 17.41 9.75 17C9.75 16.59 9.41 16.25 9 16.25Z\"></path></svg>",
1198
+ "noimage-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30.4975 14.2475C28.7075 14.2475 27.2475 15.7075 27.2475 17.4975C27.2475 19.2875 28.7075 20.7475 30.4975 20.7475C32.2875 20.7475 33.7475 19.2875 33.7475 17.4975C33.7475 15.7075 32.2875 14.2475 30.4975 14.2475ZM30.4975 19.2475C29.5375 19.2475 28.7475 18.4575 28.7475 17.4975C28.7475 16.5375 29.5375 15.7475 30.4975 15.7475C31.4575 15.7475 32.2475 16.5375 32.2475 17.4975C32.2475 18.4575 31.4575 19.2475 30.4975 19.2475ZM13.5175 11.2175C13.4375 10.8075 13.7075 10.4175 14.1175 10.3375C14.4275 10.2775 14.7175 10.2475 14.9975 10.2475H32.9975C35.6175 10.2475 37.7475 12.3775 37.7475 14.9975V32.9975C37.7475 33.2775 37.7175 33.5675 37.6575 33.8775C37.5875 34.2375 37.2775 34.4875 36.9175 34.4875C36.8675 34.4875 36.8275 34.4875 36.7775 34.4775C36.3675 34.3975 36.1075 34.0075 36.1775 33.5975C36.2175 33.3775 36.2375 33.1775 36.2375 32.9975V14.9975C36.2375 13.2075 34.7775 11.7475 32.9875 11.7475H14.9975C14.8075 11.7475 14.6175 11.7675 14.3975 11.8075C13.9875 11.8875 13.5975 11.6175 13.5175 11.2075V11.2175ZM34.4775 36.7775C34.5575 37.1875 34.2875 37.5775 33.8775 37.6575C33.5675 37.7175 33.2775 37.7475 32.9975 37.7475H14.9975C12.3775 37.7475 10.2475 35.6175 10.2475 32.9975V14.9975C10.2475 14.7175 10.2775 14.4275 10.3375 14.1175C10.4175 13.7075 10.8075 13.4375 11.2175 13.5175C11.6275 13.5975 11.8875 13.9875 11.8175 14.3975C11.7775 14.6175 11.7575 14.8175 11.7575 14.9975V32.9975C11.7575 34.7875 13.2175 36.2475 15.0075 36.2475H33.0075C33.1975 36.2475 33.3875 36.2275 33.6075 36.1875C34.0075 36.1075 34.4075 36.3775 34.4875 36.7875L34.4775 36.7775ZM15.8275 31.7975C15.6975 31.9375 15.7575 32.0875 15.7775 32.1175C15.8175 32.1975 15.8675 32.2475 15.9375 32.2475H29.8175C30.2275 32.2475 30.5675 32.5875 30.5675 32.9975C30.5675 33.4075 30.2275 33.7475 29.8175 33.7475H15.9375C15.2675 33.7475 14.6775 33.3475 14.3975 32.7175C14.1075 32.0575 14.2375 31.2975 14.7275 30.7775L19.7275 25.2775C20.0475 24.9275 20.5075 24.7175 20.9875 24.7075C21.4875 24.7275 21.9375 24.8875 22.2675 25.2275L25.4675 28.4775C25.7575 28.7675 25.7575 29.2475 25.4675 29.5375C25.1675 29.8275 24.6975 29.8275 24.4075 29.5375L21.2075 26.2875C21.1475 26.2175 21.0675 26.1875 21.0275 26.2075C20.9875 26.2075 20.9075 26.2175 20.8475 26.2875L15.8375 31.7975H15.8275ZM38.5275 38.5275C38.3775 38.6775 38.1875 38.7475 37.9975 38.7475C37.8075 38.7475 37.6175 38.6775 37.4675 38.5275L9.4675 10.5275C9.1775 10.2375 9.1775 9.7575 9.4675 9.4675C9.7575 9.1775 10.2375 9.1775 10.5275 9.4675L38.5275 37.4675C38.8175 37.7575 38.8175 38.2375 38.5275 38.5275Z\"></path></svg>",
1199
+ "ranking-arrows": "<svg viewBox=\"0 0 10 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 5L5 0L0 5H4V9H6V5H10Z\"></path><path d=\"M6 19V15H4V19H0L5 24L10 19H6Z\"></path></svg>",
1200
+ "rankingundefined-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
1201
+ "rating-star-2": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M24.3981 33.1305L24 32.9206L23.6019 33.1305L15.8715 37.2059L17.3542 28.5663L17.43 28.1246L17.1095 27.8113L10.83 21.6746L19.4965 20.4049L19.9405 20.3399L20.1387 19.9373L24 12.0936L27.8613 19.9373L28.0595 20.3399L28.5035 20.4049L37.17 21.6746L30.8905 27.8113L30.57 28.1246L30.6458 28.5663L32.1285 37.2059L24.3981 33.1305Z\" stroke-width=\"1.70746\"></path></svg>",
1202
+ "rating-star-small-2": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M12 15.9472L8.58001 17.7572L9.23001 13.9272L6.45001 11.2072L10.29 10.6472L12 7.17725L13.71 10.6472L17.55 11.2072L14.77 13.9272L15.42 17.7572L12 15.9472Z\"></path></svg>",
1203
+ "rating-star-small": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\"></path></g></svg>",
1204
+ "rating-star": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\"></path></g></svg>",
1205
+ "reorder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.9444 10.75H15.0544C15.7144 10.75 16.3144 10.39 16.6144 9.80002C16.9144 9.22002 16.8644 8.52002 16.4844 7.98002L13.4244 3.71002C12.7644 2.79002 11.2344 2.79002 10.5744 3.71002L7.5244 7.99002C7.1444 8.53002 7.0944 9.22002 7.3944 9.81002C7.6944 10.4 8.2944 10.76 8.9544 10.76L8.9444 10.75ZM8.7444 8.86002L11.7944 4.58002C11.8644 4.49002 11.9544 4.48002 11.9944 4.48002C12.0344 4.48002 12.1344 4.49002 12.1944 4.58002L15.2544 8.86002C15.3344 8.97002 15.3044 9.07002 15.2744 9.12002C15.2444 9.17002 15.1844 9.26002 15.0544 9.26002H8.9444C8.8144 9.26002 8.7444 9.18002 8.7244 9.12002C8.7044 9.06002 8.6644 8.97002 8.7444 8.86002ZM15.0544 13.25H8.9444C8.2844 13.25 7.6844 13.61 7.3844 14.2C7.0844 14.78 7.1344 15.48 7.5144 16.02L10.5744 20.3C10.9044 20.76 11.4344 21.03 11.9944 21.03C12.5544 21.03 13.0944 20.76 13.4144 20.3L16.4744 16.02C16.8544 15.48 16.9044 14.79 16.6044 14.2C16.3044 13.61 15.7044 13.25 15.0444 13.25H15.0544ZM15.2644 15.15L12.2044 19.43C12.0744 19.61 11.9244 19.61 11.7944 19.43L8.7344 15.15C8.6544 15.04 8.6844 14.94 8.7144 14.89C8.7444 14.84 8.8044 14.75 8.9344 14.75H15.0444C15.1744 14.75 15.2444 14.83 15.2644 14.89C15.2844 14.95 15.3244 15.04 15.2444 15.15H15.2644Z\"></path></svg>",
1206
+ "restoredown-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.69 8.71C7.73 8.8 7.75 8.9 7.75 9V13C7.75 13.41 7.41 13.75 7 13.75C6.59 13.75 6.25 13.41 6.25 13V10.81L3.53 13.53C3.38 13.68 3.19 13.75 3 13.75C2.81 13.75 2.62 13.68 2.47 13.53C2.18 13.24 2.18 12.76 2.47 12.47L5.19 9.75H3C2.59 9.75 2.25 9.41 2.25 9C2.25 8.59 2.59 8.25 3 8.25H7C7.1 8.25 7.19 8.27 7.29 8.31C7.47 8.39 7.62 8.53 7.7 8.72L7.69 8.71ZM13 6.25H10.81L13.53 3.53C13.82 3.24 13.82 2.76 13.53 2.47C13.24 2.18 12.76 2.18 12.47 2.47L9.75 5.19V3C9.75 2.59 9.41 2.25 9 2.25C8.59 2.25 8.25 2.59 8.25 3V7C8.25 7.1 8.27 7.19 8.31 7.29C8.39 7.47 8.53 7.62 8.72 7.7C8.81 7.74 8.91 7.76 9.01 7.76H13.01C13.42 7.76 13.76 7.42 13.76 7.01C13.76 6.6 13.42 6.26 13.01 6.26L13 6.25Z\"></path></svg>",
1207
+ "search-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.9975 2.25C9.7275 2.25 6.2475 5.73 6.2475 10C6.2475 11.87 6.9075 13.58 8.0175 14.92L2.4675 20.47C2.1775 20.76 2.1775 21.24 2.4675 21.53C2.6175 21.68 2.8075 21.75 2.9975 21.75C3.1875 21.75 3.3775 21.68 3.5275 21.53L9.0775 15.98C10.4175 17.08 12.1275 17.75 13.9975 17.75C18.2675 17.75 21.7475 14.27 21.7475 10C21.7475 5.73 18.2675 2.25 13.9975 2.25ZM13.9975 16.25C10.5475 16.25 7.7475 13.45 7.7475 10C7.7475 6.55 10.5475 3.75 13.9975 3.75C17.4475 3.75 20.2475 6.55 20.2475 10C20.2475 13.45 17.4475 16.25 13.9975 16.25Z\"></path></svg>",
1208
+ "smiley-rate1-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 4.9938C4 4.44362 4.45 3.99348 5 3.99348H6.59L5.3 2.70306C4.91 2.31293 4.91 1.68272 5.3 1.2926C5.69 0.902468 6.32 0.902468 6.71 1.2926L9.71 4.29357C9.8 4.3836 9.88 4.49364 9.93 4.62368C10.03 4.86376 10.03 5.14385 9.93 5.38393C9.88 5.50397 9.81 5.614 9.71 5.71404L6.71 8.71501C6.51 8.91508 6.26 9.00511 6 9.00511C5.74 9.00511 5.49 8.90508 5.29 8.71501C4.9 8.32489 4.9 7.69468 5.29 7.30456L6.58 6.01413H4.99C4.44 6.01413 3.99 5.56399 3.99 5.01381L4 4.9938ZM14.08 5.37393C14.13 5.49397 14.2 5.604 14.3 5.70403L17.3 8.70501C17.5 8.90508 17.75 8.99511 18.01 8.99511C18.27 8.99511 18.52 8.89507 18.72 8.70501C19.11 8.31488 19.11 7.68468 18.72 7.29455L17.43 6.00413H19.02C19.57 6.00413 20.02 5.55399 20.02 5.00381C20.02 4.45363 19.57 4.00348 19.02 4.00348H17.43L18.72 2.71306C19.11 2.32293 19.11 1.69273 18.72 1.3026C18.33 0.912471 17.7 0.912471 17.31 1.3026L14.31 4.30358C14.22 4.39361 14.14 4.50364 14.09 4.63368C13.99 4.87376 13.99 5.15385 14.09 5.39393L14.08 5.37393ZM22 14.9971V20.999C22 22.6496 20.65 24 19 24H5C3.35 24 2 22.6496 2 20.999V14.9971C2 13.3465 3.35 11.9961 5 11.9961H19C20.65 11.9961 22 13.3465 22 14.9971ZM19 13.9967H16V16.9977H20V14.9971C20 14.4469 19.55 13.9967 19 13.9967ZM14 16.9977V13.9967H10V16.9977H14ZM10 18.9984V21.9993H14V18.9984H10ZM4 14.9971V16.9977H8V13.9967H5C4.45 13.9967 4 14.4469 4 14.9971ZM5 21.9993H8V18.9984H4V20.999C4 21.5492 4.45 21.9993 5 21.9993ZM20 20.999V18.9984H16V21.9993H19C19.55 21.9993 20 21.5492 20 20.999Z\"></path></svg>",
1209
+ "smiley-rate10-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 23C6.85721 23 1.15412 19.9621 0.0134987 13.1669C-0.0765501 12.6272 0.293651 12.1076 0.833944 12.0177C1.38424 11.9277 1.89452 12.2975 1.98457 12.8371C2.92508 18.4732 7.69767 20.9914 12 20.9914C16.3023 20.9914 21.0749 18.4732 22.0154 12.8371C22.1055 12.2975 22.6158 11.9277 23.1661 12.0177C23.7063 12.1076 24.0765 12.6272 23.9865 13.1669C22.8559 19.9521 17.1428 23 11.99 23H12.01ZM21.165 6.15177C22.3056 5.01257 22.3056 3.16386 21.165 2.02465L21.0049 1.85477C19.9143 0.765533 18.1633 0.725561 17.0227 1.71487C15.8821 0.715568 14.1312 0.765533 13.0406 1.85477L12.8705 2.01466C11.7299 3.15386 11.7299 5.00257 12.8705 6.14178L17.0227 10.2889L21.175 6.14178L21.165 6.15177ZM15.742 3.27378L17.0127 4.54289L18.2834 3.27378C18.6436 2.91403 19.2239 2.91403 19.5841 3.27378L19.7442 3.43367C20.1044 3.79342 20.1044 4.37301 19.7442 4.73276L17.0127 7.46086L14.2812 4.73276C13.921 4.37301 13.921 3.79342 14.2812 3.43367L14.4413 3.27378C14.6214 3.09391 14.8515 3.00397 15.0917 3.00397C15.3318 3.00397 15.5619 3.09391 15.742 3.27378ZM11.1595 6.15177C12.3002 5.01257 12.3002 3.16386 11.1595 2.02465L10.9995 1.85477C9.90886 0.765533 8.15792 0.725561 7.0173 1.71487C5.87668 0.715568 4.12573 0.765533 3.03514 1.85477L2.86505 2.01466C1.72443 3.15386 1.72443 5.00257 2.86505 6.14178L7.0173 10.2889L11.1695 6.14178L11.1595 6.15177ZM5.7366 3.27378L7.00729 4.54289L8.27798 3.27378C8.63818 2.91403 9.21849 2.91403 9.57869 3.27378L9.73877 3.43367C10.099 3.79342 10.099 4.37301 9.73877 4.73276L7.00729 7.46086L4.27581 4.73276C3.91562 4.37301 3.91562 3.79342 4.27581 3.43367L4.4359 3.27378C4.61599 3.09391 4.84612 3.00397 5.08625 3.00397C5.32638 3.00397 5.5565 3.09391 5.7366 3.27378Z\"></path></svg>",
1210
+ "smiley-rate2-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_15894_140103)\"><path d=\"M4.88291 4.51001C4.47291 4.51001 4.08291 4.25001 3.94291 3.84001C3.76291 3.32001 4.03291 2.75001 4.55291 2.57001L8.32291 1.25001C8.84291 1.06001 9.41291 1.34001 9.59291 1.86001C9.77291 2.38001 9.50291 2.95001 8.98291 3.13001L5.20291 4.45001C5.09291 4.49001 4.98291 4.51001 4.87291 4.51001H4.88291ZM19.8129 3.89001C20.0229 3.38001 19.7729 2.79001 19.2629 2.59001L15.5529 1.07001C15.0429 0.860007 14.4529 1.11001 14.2529 1.62001C14.0429 2.13001 14.2929 2.72001 14.8029 2.92001L18.5029 4.43001C18.6229 4.48001 18.7529 4.50001 18.8829 4.50001C19.2729 4.50001 19.6529 4.27001 19.8129 3.88001V3.89001ZM3.50291 6.00001C2.64291 6.37001 1.79291 6.88001 1.00291 7.48001C0.79291 7.64001 0.64291 7.87001 0.59291 8.14001C0.48291 8.73001 0.87291 9.29001 1.45291 9.40001C2.04291 9.51001 2.60291 9.12001 2.71291 8.54001C2.87291 7.69001 3.12291 6.83001 3.50291 5.99001V6.00001ZM21.0429 8.55001C21.6029 10.48 24.2429 8.84001 22.7529 7.48001C21.9629 6.88001 21.1129 6.37001 20.2529 6.00001C20.6329 6.84001 20.8829 7.70001 21.0429 8.55001ZM21.5729 13.2C21.2529 14.2 22.5429 15.09 23.3629 14.39C23.8529 14 23.9229 13.29 23.5429 12.81C21.7429 10.67 22.1329 10.55 21.5829 13.2H21.5729ZM1.75291 11C1.22291 11.79 -0.14709 12.64 0.0129102 13.75C0.15291 14.36 0.75291 14.74 1.35291 14.6C2.98291 14.1 1.80291 12.22 1.75291 11ZM19.8829 17C19.8829 13.14 16.2929 10 11.8829 10C7.47291 10 3.88291 13.14 3.88291 17C3.88291 20.86 7.47291 24 11.8829 24C16.2929 24 19.8829 20.86 19.8829 17ZM17.8829 17C17.8829 19.76 15.1929 22 11.8829 22C8.57291 22 5.88291 19.76 5.88291 17C5.88291 14.24 8.57291 12 11.8829 12C15.1929 12 17.8829 14.24 17.8829 17Z\"></path></g><defs><clipPath id=\"clip0_15894_140103\"><rect width=\"24\" height=\"24\" fill=\"white\"></rect></clipPath></defs></svg>",
1211
+ "smiley-rate3-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.01915 7C6.46961 7 6.01998 6.55 6.01998 6V2C6.01998 1.45 6.46961 1 7.01915 1C7.56869 1 8.01832 1.45 8.01832 2V6C8.01832 6.55 7.56869 7 7.01915 7ZM18.01 6V2C18.01 1.45 17.5604 1 17.0108 1C16.4613 1 16.0117 1.45 16.0117 2V6C16.0117 6.55 16.4613 7 17.0108 7C17.5604 7 18.01 6.55 18.01 6ZM16.4213 21.58L18.01 19.99L19.2989 21.28C19.6886 21.67 20.3181 21.67 20.7077 21.28C21.0974 20.89 21.0974 20.26 20.7077 19.87L19.4188 18.58C18.6395 17.8 17.3705 17.8 16.5912 18.58L15.0025 20.17L13.4138 18.58C12.6345 17.8 11.3655 17.8 10.5862 18.58L8.9975 20.17L7.40883 18.58C6.62948 17.8 5.36053 17.8 4.58118 18.58L3.29226 19.87C2.90258 20.26 2.90258 20.89 3.29226 21.28C3.68193 21.67 4.31141 21.67 4.70108 21.28L5.99001 19.99L7.57868 21.58C8.35803 22.36 9.62698 22.36 10.4063 21.58L11.995 19.99L13.5837 21.58C13.9734 21.97 14.4829 22.16 14.9925 22.16C15.5021 22.16 16.0117 21.97 16.4013 21.58H16.4213Z\"></path></svg>",
1212
+ "smiley-rate4-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.06927 7C6.51927 7 6.06927 6.55 6.06927 6V2C6.06927 1.45 6.51927 1 7.06927 1C7.61927 1 8.06927 1.45 8.06927 2V6C8.06927 6.55 7.61927 7 7.06927 7ZM18.0693 6V2C18.0693 1.45 17.6193 1 17.0693 1C16.5193 1 16.0693 1.45 16.0693 2V6C16.0693 6.55 16.5193 7 17.0693 7C17.6193 7 18.0693 6.55 18.0693 6ZM22.5693 21.9C23.0693 21.66 23.2793 21.07 23.0393 20.57C21.1093 16.52 16.9093 14 12.0693 14C7.22927 14 3.02927 16.52 1.09927 20.57C0.859273 21.07 1.06927 21.67 1.56927 21.9C2.06927 22.14 2.65927 21.93 2.89927 21.43C4.49927 18.08 8.00927 16 12.0593 16C16.1093 16 19.6293 18.08 21.2193 21.43C21.3893 21.79 21.7493 22 22.1193 22C22.2593 22 22.4093 21.97 22.5493 21.9H22.5693Z\"></path></svg>",
1213
+ "smiley-rate5-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.00572 7C6.45572 7 6.00572 6.55 6.00572 6V2C6.00572 1.45 6.45572 1 7.00572 1C7.55572 1 8.00572 1.45 8.00572 2V6C8.00572 6.55 7.55572 7 7.00572 7ZM18.0057 6V2C18.0057 1.45 17.5557 1 17.0057 1C16.4557 1 16.0057 1.45 16.0057 2V6C16.0057 6.55 16.4557 7 17.0057 7C17.5557 7 18.0057 6.55 18.0057 6ZM19.9457 21.33C20.1257 20.81 19.8557 20.24 19.3357 20.05C14.5457 18.35 9.45572 18.35 4.66572 20.05C4.14572 20.23 3.87572 20.81 4.05572 21.33C4.23572 21.85 4.80572 22.12 5.33572 21.94C9.69572 20.4 14.3057 20.4 18.6657 21.94C18.7757 21.98 18.8857 22 18.9957 22C19.4057 22 19.7957 21.74 19.9357 21.33H19.9457Z\"></path></svg>",
1214
+ "smiley-rate6-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 7C6.45 7 6 6.55 6 6V2C6 1.45 6.45 1 7 1C7.55 1 8 1.45 8 2V6C8 6.55 7.55 7 7 7ZM18 6V2C18 1.45 17.55 1 17 1C16.45 1 16 1.45 16 2V6C16 6.55 16.45 7 17 7C17.55 7 18 6.55 18 6ZM21 21C21 20.45 20.55 20 20 20H4C3.45 20 3 20.45 3 21C3 21.55 3.45 22 4 22H20C20.55 22 21 21.55 21 21Z\"></path></svg>",
1215
+ "smiley-rate7-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.0022 23.99C11.452 23.99 11.0018 23.5402 11.0018 22.9904C11.0018 22.4407 11.452 21.9909 12.0022 21.9909C16.3137 21.9909 21.0755 19.472 22.0158 13.8344C22.1058 13.2947 22.616 12.9248 23.1662 13.0148C23.7064 13.1047 24.0765 13.6245 23.9865 14.1643C22.8561 20.9513 17.144 24 11.9922 24L12.0022 23.99ZM8.00072 5.99783V1.99957C8.00072 1.4498 7.55056 1 7.00036 1C6.45016 1 6 1.4498 6 1.99957V5.99783C6 6.54759 6.45016 6.99739 7.00036 6.99739C7.55056 6.99739 8.00072 6.54759 8.00072 5.99783ZM18.0043 5.99783V1.99957C18.0043 1.4498 17.5542 1 17.004 1C16.4538 1 16.0036 1.4498 16.0036 1.99957V5.99783C16.0036 6.54759 16.4538 6.99739 17.004 6.99739C17.5542 6.99739 18.0043 6.54759 18.0043 5.99783Z\"></path></svg>",
1216
+ "smiley-rate8-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85721 24 1.15412 20.96 0.0134987 14.16C-0.0765501 13.62 0.293651 13.1 0.833944 13.01C1.38424 12.92 1.89452 13.29 1.98457 13.83C2.92508 19.47 7.69767 21.99 12 21.99C16.3023 21.99 21.0749 19.47 22.0154 13.83C22.1055 13.29 22.6158 12.92 23.1661 13.01C23.7063 13.1 24.0765 13.62 23.9865 14.16C22.8559 20.95 17.1428 24 11.99 24H12.01ZM8.00783 6V2C8.00783 1.45 7.55759 1 7.00729 1C6.45699 1 6.00675 1.45 6.00675 2V6C6.00675 6.55 6.45699 7 7.00729 7C7.55759 7 8.00783 6.55 8.00783 6ZM18.0133 6V2C18.0133 1.45 17.563 1 17.0127 1C16.4624 1 16.0122 1.45 16.0122 2V6C16.0122 6.55 16.4624 7 17.0127 7C17.563 7 18.0133 6.55 18.0133 6Z\"></path></svg>",
1217
+ "smiley-rate9-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85767 24 1.15509 20.96 0.0145752 14.16C-0.0354475 13.87 0.0445888 13.57 0.234675 13.35C0.424761 13.13 0.704888 13 0.995019 13H23.005C23.2951 13 23.5752 13.13 23.7653 13.35C23.9554 13.57 24.0354 13.87 23.9854 14.16C22.8549 20.95 17.1423 24 11.99 24H12.01ZM2.25559 15C3.61621 19.82 8.0182 22 12.01 22C16.0018 22 20.4038 19.82 21.7644 15H2.25559ZM8.00819 6V2C8.00819 1.45 7.55799 1 7.00774 1C6.45749 1 6.00729 1.45 6.00729 2V6C6.00729 6.55 6.45749 7 7.00774 7C7.55799 7 8.00819 6.55 8.00819 6ZM18.0127 6V2C18.0127 1.45 17.5625 1 17.0123 1C16.462 1 16.0118 1.45 16.0118 2V6C16.0118 6.55 16.462 7 17.0123 7C17.5625 7 18.0127 6.55 18.0127 6Z\"></path></svg>"
1218
+ };
1219
+
1220
+ class Scroll extends React.Component {
1309
1221
  constructor(props) {
1310
1222
  super(props);
1223
+ this.rootRef = React.createRef();
1224
+ this.model = new ScrollViewModel();
1225
+ this.model.onInnerHeightChanged = (hasScroll) => {
1226
+ if (!!this.props.onInnerHeightChanged) {
1227
+ this.props.onInnerHeightChanged(hasScroll);
1228
+ }
1229
+ };
1311
1230
  }
1312
- get css() {
1313
- return this.props.css;
1314
- }
1315
- get summary() {
1316
- return this.props.summary;
1317
- }
1318
- renderElement() {
1319
- if (!this.summary)
1320
- return null;
1321
- return this.summary.isEmpty() ? this.renderNoItems() : this.renderItems();
1322
- }
1323
- renderItems() {
1324
- return (React.createElement("div", { className: this.css.summary }, this.summary.items.map((item, index) => this.renderItem(item, index))));
1231
+ componentDidMount() {
1232
+ const container = this.rootRef.current;
1233
+ if (!container)
1234
+ return;
1235
+ this.model.setRootElement(container);
1325
1236
  }
1326
- renderNoItems() {
1327
- const q = this.summary.question;
1328
- const placeholder = ReactElementFactory.Instance.createElement("sv-placeholder-" + q.getTemplate(), { cssClasses: this.css, question: q });
1329
- return placeholder || React.createElement("div", null, this.renderLocString(this.summary.noEntry));
1237
+ componentWillUnmount() {
1238
+ this.model.unsubscribeRootElement();
1239
+ this.model.setRootElement(undefined);
1330
1240
  }
1331
- renderItem(item, index) {
1332
- const btnEdit = item.btnEdit ?
1333
- React.createElement("button", { className: this.css.summaryRowActionEdit, onClick: () => item.btnEdit.action(), title: item.btnEdit.title },
1334
- React.createElement(SvgIcon, { iconName: "icon-editsmall-16x16", iconSize: "auto" })) : null;
1335
- const btnDelete = item.showRemove && item.btnRemove ?
1336
- React.createElement("button", { className: this.css.summaryRowActionDelete, onClick: () => item.btnRemove.action(), title: item.btnRemove.title },
1337
- React.createElement(SvgIcon, { iconName: "icon-delete-16x16", iconSize: "auto" })) : null;
1338
- return React.createElement("div", { className: this.css.summaryRow, key: index },
1339
- React.createElement("div", { className: this.css.summaryRowContent }, this.renderLocString(item.locText)),
1340
- React.createElement("div", { className: this.css.summaryRowActions },
1341
- btnEdit,
1342
- btnDelete));
1241
+ render() {
1242
+ return this.props.disabled ?
1243
+ React.createElement(React.Fragment, null, this.props.children) :
1244
+ React.createElement("div", { ref: this.rootRef, className: "sv-scroll__wrapper" },
1245
+ React.createElement("div", { className: "sv-scroll__scroller sv-drag-target-skipped", onScroll: () => this.model.onScrollContainer() },
1246
+ React.createElement("div", { className: "sv-scroll__container" }, this.props.children)),
1247
+ React.createElement("div", { className: "sv-scroll__scrollbar", onScroll: () => this.model.onScrollScrollbar() },
1248
+ React.createElement("div", { className: "sv-scroll__scrollbar-sizer" })));
1343
1249
  }
1344
1250
  }
1345
- ReactElementFactory.Instance.registerElement("sv-singleinput-summary", (props) => {
1346
- return React.createElement(SurveyQuestionSigleInputSummary, props);
1251
+ ReactElementFactory.Instance.registerElement("svc-scroll", (props) => {
1252
+ return React.createElement(Scroll, props);
1347
1253
  });
1348
1254
 
1349
- class SurveyBreadcrumbs extends SurveyElementBase {
1255
+ addIconsToThemeSet("v1", iconsV1);
1256
+ addIconsToThemeSet("v2", iconsV2);
1257
+ SvgRegistry.registerIcons(iconsV2);
1258
+ class Survey extends SurveyElementBase {
1350
1259
  constructor(props) {
1351
1260
  super(props);
1261
+ this.previousJSON = {};
1262
+ this.isSurveyUpdated = false;
1263
+ this.createSurvey(props);
1264
+ this.updateSurvey(props, {});
1265
+ this.rootRef = React.createRef();
1266
+ this.rootNodeId = props.id || null;
1267
+ this.rootNodeClassName = props.className || "";
1352
1268
  }
1353
1269
  getStateElement() {
1354
- return this.props.model;
1270
+ return this.survey;
1355
1271
  }
1356
- get items() {
1357
- return this.props.model.actions;
1272
+ onSurveyUpdated() {
1273
+ if (!!this.survey) {
1274
+ const el = this.rootRef.current;
1275
+ if (!!el)
1276
+ this.survey.afterRenderSurvey(el);
1277
+ this.survey.startTimerFromUI();
1278
+ this.setSurveyEvents();
1279
+ }
1358
1280
  }
1359
- get css() {
1360
- return this.props.css;
1281
+ shouldComponentUpdate(nextProps, nextState) {
1282
+ if (!super.shouldComponentUpdate(nextProps, nextState))
1283
+ return false;
1284
+ if (this.isModelJSONChanged(nextProps)) {
1285
+ this.destroySurvey();
1286
+ this.createSurvey(nextProps);
1287
+ this.updateSurvey(nextProps, {});
1288
+ this.isSurveyUpdated = true;
1289
+ }
1290
+ return true;
1291
+ }
1292
+ componentDidUpdate(prevProps, prevState) {
1293
+ super.componentDidUpdate(prevProps, prevState);
1294
+ this.updateSurvey(this.props, prevProps);
1295
+ if (this.isSurveyUpdated) {
1296
+ this.onSurveyUpdated();
1297
+ this.isSurveyUpdated = false;
1298
+ }
1299
+ }
1300
+ componentDidMount() {
1301
+ super.componentDidMount();
1302
+ this.onSurveyUpdated();
1303
+ }
1304
+ destroySurvey() {
1305
+ if (this.survey) {
1306
+ this.survey.renderCallback = undefined;
1307
+ this.survey.onPartialSend.clear();
1308
+ this.survey.stopTimer();
1309
+ this.survey.destroyResizeObserver();
1310
+ }
1311
+ }
1312
+ componentWillUnmount() {
1313
+ super.componentWillUnmount();
1314
+ this.destroySurvey();
1315
+ }
1316
+ doRender() {
1317
+ let renderResult;
1318
+ if (this.survey.state == "completed") {
1319
+ renderResult = this.renderCompleted();
1320
+ }
1321
+ else if (this.survey.state == "completedbefore") {
1322
+ renderResult = this.renderCompletedBefore();
1323
+ }
1324
+ else if (this.survey.state == "loading") {
1325
+ renderResult = this.renderLoading();
1326
+ }
1327
+ else if (this.survey.state == "empty") {
1328
+ renderResult = this.renderEmptySurvey();
1329
+ }
1330
+ else {
1331
+ renderResult = this.renderSurvey();
1332
+ }
1333
+ const backgroundImage = !!this.survey.backgroundImage ? React.createElement("div", { className: this.css.rootBackgroundImage, style: this.survey.backgroundImageStyle }) : null;
1334
+ const header = this.survey.headerView === "basic" ? React.createElement(SurveyHeader, { survey: this.survey }) : null;
1335
+ const onSubmit = function (event) {
1336
+ event.preventDefault();
1337
+ };
1338
+ let customHeader = React.createElement("div", { className: "sv_custom_header" });
1339
+ if (this.survey.hasLogo) {
1340
+ customHeader = null;
1341
+ }
1342
+ const rootCss = this.survey.getRootCss();
1343
+ const cssClasses = this.rootNodeClassName ? this.rootNodeClassName + " " + rootCss : rootCss;
1344
+ return (React.createElement("div", { id: this.rootNodeId, ref: this.rootRef, className: cssClasses, style: this.survey.themeVariables, lang: this.survey.locale || "en", dir: this.survey.localeDir },
1345
+ React.createElement(Scroll, { disabled: this.survey.rootScrollDisabled },
1346
+ this.survey.needRenderIcons ? React.createElement(SvgBundleComponent, null) : null,
1347
+ React.createElement(PopupModal, null),
1348
+ React.createElement("div", { className: this.survey.wrapperFormCss },
1349
+ backgroundImage,
1350
+ React.createElement("form", { onSubmit: onSubmit },
1351
+ React.createElement(Scroll, { disabled: this.survey.formScrollDisabled },
1352
+ customHeader,
1353
+ React.createElement("div", { className: this.css.container },
1354
+ header,
1355
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "header", needRenderWrapper: false }),
1356
+ renderResult,
1357
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "footer", needRenderWrapper: false })))),
1358
+ React.createElement(NotifierComponent, { notifier: this.survey.notifier })))));
1361
1359
  }
1362
1360
  renderElement() {
1363
- if (!this.items || !this.items.length)
1361
+ return this.doRender();
1362
+ }
1363
+ get css() {
1364
+ return this.survey.css;
1365
+ }
1366
+ set css(value) {
1367
+ this.survey.css = value;
1368
+ }
1369
+ renderCompleted() {
1370
+ if (!this.survey.showCompletedPage)
1364
1371
  return null;
1365
- const items = this.renderItems();
1366
- return (React.createElement("div", { className: this.css.breadcrumbsRoot }, items));
1372
+ var htmlValue = { __html: this.survey.processedCompletedHtml };
1373
+ return (React.createElement(React.Fragment, null,
1374
+ React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedCss }),
1375
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "completePage", needRenderWrapper: false })));
1367
1376
  }
1368
- renderItems() {
1369
- const result = [];
1370
- this.items.concat([]).forEach((item, itemIndex) => {
1371
- if (itemIndex) {
1372
- result.push(React.createElement(SvgIcon, { key: item.renderedId + "_separator", className: this.css.breadcrumbsSeparator, iconName: "arrowright-16x16", size: "auto" }));
1377
+ renderCompletedBefore() {
1378
+ var htmlValue = { __html: this.survey.processedCompletedBeforeHtml };
1379
+ return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedBeforeCss }));
1380
+ }
1381
+ renderLoading() {
1382
+ var htmlValue = { __html: this.survey.processedLoadingHtml };
1383
+ return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.loadingBodyCss }));
1384
+ }
1385
+ renderSurvey() {
1386
+ var activePage = this.survey.activePage
1387
+ ? this.renderPage(this.survey.activePage)
1388
+ : null;
1389
+ this.survey.isShowStartingPage;
1390
+ var pageId = this.survey.activePage ? this.survey.activePage.id : "";
1391
+ let className = this.survey.bodyCss;
1392
+ const style = {};
1393
+ if (!!this.survey.renderedWidth) {
1394
+ style.maxWidth = this.survey.renderedWidth;
1395
+ }
1396
+ return (React.createElement("div", { className: this.survey.bodyContainerCss },
1397
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "left" }),
1398
+ React.createElement("div", { className: "sv-components-column sv-components-column--expandable" },
1399
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "center" }),
1400
+ React.createElement("div", { id: pageId, className: className, style: style },
1401
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "contentTop" }),
1402
+ activePage,
1403
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "contentBottom" }),
1404
+ this.survey.showBrandInfo ? React.createElement(BrandInfo, null) : null)),
1405
+ React.createElement(ComponentsContainer, { survey: this.survey, container: "right" })));
1406
+ }
1407
+ renderPage(page) {
1408
+ return ReactElementFactory.Instance.createElement(this.survey.pageComponent || "sv-page", {
1409
+ survey: this.survey,
1410
+ page: page,
1411
+ css: this.css,
1412
+ creator: this,
1413
+ });
1414
+ }
1415
+ renderEmptySurvey() {
1416
+ return React.createElement("div", { className: this.css.bodyEmpty }, this.survey.emptySurveyText);
1417
+ }
1418
+ createSurvey(newProps) {
1419
+ if (!newProps)
1420
+ newProps = {};
1421
+ this.previousJSON = {};
1422
+ if (newProps) {
1423
+ if (newProps.model) {
1424
+ this.survey = newProps.model;
1373
1425
  }
1374
- result.push(React.createElement(SurveyAction, { key: item.renderedId, item: item }));
1426
+ else {
1427
+ if (newProps.json) {
1428
+ this.previousJSON = newProps.json;
1429
+ this.survey = new SurveyModel(newProps.json);
1430
+ }
1431
+ }
1432
+ }
1433
+ else {
1434
+ this.survey = new SurveyModel();
1435
+ }
1436
+ if (!!newProps.css) {
1437
+ this.survey.css = this.css;
1438
+ }
1439
+ }
1440
+ isModelJSONChanged(newProps) {
1441
+ if (!!newProps["model"]) {
1442
+ return this.survey !== newProps["model"];
1443
+ }
1444
+ if (!!newProps["json"]) {
1445
+ return !Helpers.isTwoValueEquals(newProps["json"], this.previousJSON);
1446
+ }
1447
+ return false;
1448
+ }
1449
+ updateSurvey(newProps, oldProps) {
1450
+ if (!newProps)
1451
+ return;
1452
+ oldProps = oldProps || {};
1453
+ for (var key in newProps) {
1454
+ if (key == "model" || key == "children" || key == "json") {
1455
+ continue;
1456
+ }
1457
+ if (key == "css") {
1458
+ this.survey.mergeValues(newProps.css, this.survey.getCss());
1459
+ this.survey["updateNavigationCss"]();
1460
+ this.survey["updateElementCss"]();
1461
+ continue;
1462
+ }
1463
+ if (newProps[key] === oldProps[key])
1464
+ continue;
1465
+ if (key.indexOf("on") == 0 && this.survey[key] && this.survey[key].add) {
1466
+ if (!!oldProps[key]) {
1467
+ this.survey[key].remove(oldProps[key]);
1468
+ }
1469
+ this.survey[key].add(newProps[key]);
1470
+ }
1471
+ else {
1472
+ this.survey[key] = newProps[key];
1473
+ }
1474
+ }
1475
+ }
1476
+ setSurveyEvents() {
1477
+ var self = this;
1478
+ this.survey.renderCallback = function () {
1479
+ var counter = !!self.state && !!self.state.modelChanged ? self.state.modelChanged : 0;
1480
+ self.setState({ modelChanged: counter + 1 });
1481
+ };
1482
+ this.survey.onPartialSend.add((sender) => {
1483
+ if (!!self.state) {
1484
+ self.setState(self.state);
1485
+ }
1486
+ });
1487
+ }
1488
+ //ISurveyCreator
1489
+ createQuestionElement(question) {
1490
+ return ReactQuestionFactory.Instance.createQuestion(question.isDefaultRendering() ? question.getTemplate() : question.getComponentName(), {
1491
+ question: question,
1492
+ isDisplayMode: question.isInputReadOnly,
1493
+ creator: this,
1375
1494
  });
1376
- return result;
1495
+ }
1496
+ renderError(key, error, cssClasses, element) {
1497
+ return ReactElementFactory.Instance.createElement(this.survey.questionErrorComponent, { key: key, error, cssClasses, element });
1498
+ }
1499
+ questionTitleLocation() {
1500
+ return this.survey.questionTitleLocation;
1501
+ }
1502
+ questionErrorLocation() {
1503
+ return this.survey.questionErrorLocation;
1377
1504
  }
1378
1505
  }
1379
- ReactElementFactory.Instance.registerElement("sv-breadcrumbs", (props) => {
1380
- return React.createElement(SurveyBreadcrumbs, props);
1506
+ ReactElementFactory.Instance.registerElement("survey", (props) => {
1507
+ return React.createElement(Survey, props);
1381
1508
  });
1382
-
1383
- class SurveyQuestion extends SurveyElementBase {
1384
- static renderQuestionBody(creator, question) {
1385
- // if (!question.isVisible) return null;
1386
- var customWidget = question.customWidget;
1387
- if (!customWidget) {
1388
- return creator.createQuestionElement(question);
1389
- }
1390
- return React.createElement(SurveyCustomWidget, { creator: creator, question: question });
1509
+ function attachKey2click(element, viewModel, options = { processEsc: true, disableTabStop: false }) {
1510
+ if ((!!viewModel && viewModel.disableTabStop) || (!!options && options.disableTabStop)) {
1511
+ return React.cloneElement(element, { tabIndex: -1 });
1391
1512
  }
1513
+ options = Object.assign({}, options);
1514
+ return React.cloneElement(element, {
1515
+ tabIndex: 0,
1516
+ onKeyUp: (evt) => {
1517
+ evt.preventDefault();
1518
+ evt.stopPropagation();
1519
+ doKey2ClickUp(evt, options);
1520
+ return false;
1521
+ },
1522
+ onKeyDown: (evt) => doKey2ClickDown(evt, options),
1523
+ onBlur: (evt) => doKey2ClickBlur(evt),
1524
+ });
1525
+ }
1526
+
1527
+ class SurveyNavigationBase extends React.Component {
1392
1528
  constructor(props) {
1393
1529
  super(props);
1394
- this.isNeedFocus = false;
1395
- this.rootRef = React.createRef();
1396
- }
1397
- getStateElement() {
1398
- return this.question;
1530
+ this.updateStateFunction = null;
1531
+ this.state = { update: 0 };
1399
1532
  }
1400
- get question() {
1401
- return this.props.element;
1533
+ get survey() {
1534
+ return this.props.survey;
1402
1535
  }
1403
- get creator() {
1404
- return this.props.creator;
1536
+ get css() {
1537
+ return this.props.css || this.survey.css;
1405
1538
  }
1406
1539
  componentDidMount() {
1407
- super.componentDidMount();
1408
- if (!!this.question) {
1409
- this.question["react"] = this;
1540
+ if (this.survey) {
1541
+ var self = this;
1542
+ this.updateStateFunction = function () {
1543
+ self.setState({ update: self.state.update + 1 });
1544
+ };
1545
+ this.survey.onPageVisibleChanged.add(this.updateStateFunction);
1410
1546
  }
1411
- this.doAfterRender();
1412
1547
  }
1413
1548
  componentWillUnmount() {
1414
- super.componentWillUnmount();
1415
- if (!!this.question) {
1416
- this.question["react"] = null;
1417
- }
1418
- const el = this.rootRef.current;
1419
- if (!!el) {
1420
- el.removeAttribute("data-rendered");
1421
- }
1422
- }
1423
- componentDidUpdate(prevProps, prevState) {
1424
- super.componentDidUpdate(prevProps, prevState);
1425
- this.doAfterRender();
1426
- }
1427
- doAfterRender() {
1428
- if (this.isNeedFocus) {
1429
- if (!this.question.isCollapsed) {
1430
- this.question.clickTitleFunction();
1431
- }
1432
- this.isNeedFocus = false;
1433
- }
1434
- if (this.question) {
1435
- var el = this.rootRef.current;
1436
- if (el && el.getAttribute("data-rendered") !== "r") {
1437
- el.setAttribute("data-rendered", "r");
1438
- if (this.question.afterRender) {
1439
- this.question.afterRender(el);
1440
- }
1441
- }
1549
+ if (this.survey && this.updateStateFunction) {
1550
+ this.survey.onPageVisibleChanged.remove(this.updateStateFunction);
1551
+ this.updateStateFunction = null;
1442
1552
  }
1443
1553
  }
1444
- canRender() {
1445
- return (super.canRender() &&
1446
- !!this.question &&
1447
- !!this.creator);
1448
- }
1449
- renderQuestionContent() {
1450
- let question = this.question;
1451
- var contentStyle = {
1452
- display: this.question.renderedIsExpanded ? "" : "none",
1453
- };
1454
- var cssClasses = question.cssClasses;
1455
- var questionRender = this.renderQuestion();
1456
- var comment = question && question.hasComment ? this.renderComment(cssClasses) : null;
1457
- var descriptionUnderInput = question.hasDescriptionUnderInput
1458
- ? this.renderDescription()
1459
- : null;
1460
- return (React.createElement("div", { className: question.cssContent || undefined, style: contentStyle, "aria-hidden": question.contentAriaHidden, role: "presentation" },
1461
- questionRender,
1462
- comment,
1463
- descriptionUnderInput));
1464
- }
1465
- renderElement() {
1466
- var question = this.question;
1467
- var cssClasses = question.cssClasses;
1468
- var header = this.renderHeader(question);
1469
- var headerTop = question.hasTitleOnLeftTop ? header : null;
1470
- var headerBottom = question.hasTitleOnBottom ? header : null;
1471
- const errorsAboveQuestion = this.question.showErrorsAboveQuestion
1472
- ? this.renderErrors(cssClasses, "")
1473
- : null;
1474
- const errorsBelowQuestion = this.question.showErrorsBelowQuestion
1475
- ? this.renderErrors(cssClasses, "")
1476
- : null;
1477
- const rootStyle = question.getRootStyle();
1478
- const singleBreadcrumbs = question.singleInputHasActions ? this.renderSingleInputBreadcrumbs(question, cssClasses) : undefined;
1479
- const singleSummary = question.singleInputSummary ? this.renderSingleInputSummary(question, cssClasses) : undefined;
1480
- const singleInput = singleSummary || (question.singleInputQuestion ? this.renderSingleInputQuestion(question, cssClasses) : undefined);
1481
- const questionContent = singleInput || this.wrapQuestionContent(this.renderQuestionContent());
1482
- return (React.createElement(React.Fragment, null,
1483
- React.createElement("div", { ref: this.rootRef, id: question.id, className: question.getRootCss(), style: rootStyle, "data-name": question.name, role: question.ariaRole, "aria-required": this.question.ariaRequired, "aria-invalid": this.question.ariaInvalid, "aria-label": this.question.ariaLabel, "aria-labelledby": question.ariaLabelledBy, "aria-describedby": question.ariaDescribedBy, "aria-expanded": question.ariaExpanded },
1484
- singleBreadcrumbs,
1485
- errorsAboveQuestion,
1486
- headerTop,
1487
- questionContent,
1488
- headerBottom,
1489
- errorsBelowQuestion)));
1554
+ }
1555
+
1556
+ class SurveyTimerPanel extends ReactSurveyElement {
1557
+ constructor(props) {
1558
+ super(props);
1559
+ this.circleLength = 440;
1490
1560
  }
1491
- renderSingleInputQuestion(question, cssClasses) {
1492
- const singleQuestion = question.singleInputQuestion;
1493
- const key = singleQuestion.id;
1494
- return React.createElement(SurveyQuestion, { key: key, element: singleQuestion, creator: this.creator, css: cssClasses });
1561
+ getStateElement() {
1562
+ return this.timerModel;
1495
1563
  }
1496
- renderSingleInputBreadcrumbs(question, cssClasses) {
1497
- return React.createElement(SurveyBreadcrumbs, { model: question.singleInputActions, css: cssClasses });
1564
+ get timerModel() {
1565
+ return this.props.model;
1498
1566
  }
1499
- renderSingleInputSummary(question, cssClasses) {
1500
- return React.createElement(SurveyQuestionSigleInputSummary, { summary: question.singleInputSummary, creator: this.creator, css: cssClasses });
1567
+ get progress() {
1568
+ return -this.timerModel.progress * this.circleLength;
1501
1569
  }
1502
- wrapElement(element) {
1503
- const survey = this.question.survey;
1504
- let wrapper = null;
1505
- if (survey) {
1506
- wrapper = ReactSurveyElementsWrapper.wrapElement(survey, element, this.question);
1570
+ render() {
1571
+ if (!this.timerModel.isRunning) {
1572
+ return null;
1507
1573
  }
1508
- return wrapper !== null && wrapper !== void 0 ? wrapper : element;
1509
- }
1510
- wrapQuestionContent(element) {
1511
- const survey = this.question.survey;
1512
- let wrapper = null;
1513
- if (survey) {
1514
- wrapper = ReactSurveyElementsWrapper.wrapQuestionContent(survey, element, this.question);
1574
+ let result = React.createElement("div", { className: this.timerModel.survey.getCss().timerRoot }, this.timerModel.text);
1575
+ if (this.timerModel.showTimerAsClock) {
1576
+ let style = { strokeDasharray: this.circleLength, strokeDashoffset: this.progress };
1577
+ const progress = (this.timerModel.showProgress ? React.createElement(SvgIcon, { className: this.timerModel.getProgressCss(), style: style, iconName: "icon-timercircle", size: "auto" }) : null);
1578
+ result =
1579
+ (React.createElement("div", { className: this.timerModel.rootCss },
1580
+ progress,
1581
+ React.createElement("div", { className: this.timerModel.textContainerCss },
1582
+ React.createElement("span", { className: this.timerModel.majorTextCss }, this.timerModel.clockMajorText),
1583
+ (this.timerModel.clockMinorText ? React.createElement("span", { className: this.timerModel.minorTextCss }, this.timerModel.clockMinorText) : null))));
1515
1584
  }
1516
- return wrapper !== null && wrapper !== void 0 ? wrapper : element;
1517
- }
1518
- renderQuestion() {
1519
- return SurveyQuestion.renderQuestionBody(this.creator, this.question);
1520
- }
1521
- renderDescription() {
1522
- return SurveyElementBase.renderQuestionDescription(this.question);
1523
- }
1524
- renderComment(cssClasses) {
1525
- const commentText = SurveyElementBase.renderLocString(this.question.locCommentText);
1526
- return (React.createElement("div", { className: this.question.getCommentAreaCss() },
1527
- React.createElement("div", null, commentText),
1528
- React.createElement(SurveyQuestionCommentItem, { question: this.question, cssClasses: cssClasses, isDisplayMode: this.question.isInputReadOnly })));
1529
- }
1530
- renderHeader(question) {
1531
- if (question.singleInputHideHeader)
1532
- return null;
1533
- return React.createElement(SurveyElementHeader, { element: question });
1534
- }
1535
- renderErrors(cssClasses, location) {
1536
- return (React.createElement(SurveyElementErrors, { element: this.question, cssClasses: cssClasses, creator: this.creator, location: location, id: this.question.id + "_errors" }));
1585
+ return result;
1537
1586
  }
1538
1587
  }
1539
- ReactElementFactory.Instance.registerElement("question", (props) => {
1540
- return React.createElement(SurveyQuestion, props);
1588
+ ReactElementFactory.Instance.registerElement("sv-timerpanel", (props) => {
1589
+ return React.createElement(SurveyTimerPanel, props);
1541
1590
  });
1542
- class SurveyElementErrors extends ReactSurveyElement {
1591
+
1592
+ class SurveyRowElement extends SurveyElementBase {
1543
1593
  constructor(props) {
1544
1594
  super(props);
1545
- this.state = this.getState();
1595
+ this.element.cssClasses;
1596
+ this.rootRef = React.createRef();
1546
1597
  }
1547
- get id() {
1548
- return this.props.element.id + "_errors";
1598
+ getStateElement() {
1599
+ return this.element;
1549
1600
  }
1550
1601
  get element() {
1551
1602
  return this.props.element;
1552
1603
  }
1604
+ get index() {
1605
+ return this.props.index;
1606
+ }
1607
+ get row() {
1608
+ return this.props.row;
1609
+ }
1610
+ get survey() {
1611
+ return this.props.survey;
1612
+ }
1553
1613
  get creator() {
1554
1614
  return this.props.creator;
1555
1615
  }
1556
- getState(prevState = null) {
1557
- return !prevState ? { error: 0 } : { error: prevState.error + 1 };
1616
+ get css() {
1617
+ return this.props.css;
1558
1618
  }
1559
- canRender() {
1560
- return !!this.element && this.element.hasVisibleErrors;
1619
+ componentDidMount() {
1620
+ super.componentDidMount();
1621
+ if (this.rootRef.current) {
1622
+ (this.element).setWrapperElement(this.rootRef.current);
1623
+ }
1561
1624
  }
1562
1625
  componentWillUnmount() {
1626
+ super.componentWillUnmount();
1627
+ this.element.setWrapperElement(undefined);
1628
+ }
1629
+ shouldComponentUpdate(nextProps, nextState) {
1630
+ if (!super.shouldComponentUpdate(nextProps, nextState))
1631
+ return false;
1632
+ if (nextProps.element !== this.element) {
1633
+ if (nextProps.element) {
1634
+ nextProps.element.setWrapperElement(this.rootRef.current);
1635
+ }
1636
+ if (this.element) {
1637
+ this.element.setWrapperElement(undefined);
1638
+ }
1639
+ }
1640
+ this.element.cssClasses;
1641
+ return true;
1563
1642
  }
1564
1643
  renderElement() {
1565
- const errors = [];
1566
- for (let i = 0; i < this.element.errors.length; i++) {
1567
- const key = "error" + i;
1568
- errors.push(this.creator.renderError(key, this.element.errors[i], this.cssClasses, this.element));
1644
+ const element = this.element;
1645
+ const innerElement = this.createElement(element, this.index);
1646
+ const css = element.cssClassesValue;
1647
+ const focusIn = () => {
1648
+ const el = element;
1649
+ if (el && el.isQuestion) {
1650
+ el.focusIn();
1651
+ }
1652
+ };
1653
+ return (React.createElement("div", { className: css.questionWrapper, style: element.rootStyle, "data-key": element.name + this.index, onFocus: focusIn, ref: this.rootRef }, innerElement));
1654
+ }
1655
+ createElement(element, elementIndex) {
1656
+ if (!this.row.isNeedRender) {
1657
+ return ReactElementFactory.Instance.createElement(element.skeletonComponentName, { element: element, css: this.css, });
1569
1658
  }
1570
- return (React.createElement("div", { className: this.element.cssError, id: this.id }, errors));
1659
+ let elementType = element.getTemplate();
1660
+ if (!ReactElementFactory.Instance.isElementRegistered(elementType)) {
1661
+ elementType = "question";
1662
+ }
1663
+ return ReactElementFactory.Instance.createElement(elementType, {
1664
+ element: element,
1665
+ creator: this.creator,
1666
+ survey: this.survey,
1667
+ css: this.css,
1668
+ });
1571
1669
  }
1572
1670
  }
1573
- class SurveyQuestionAndErrorsWrapped extends ReactSurveyElement {
1671
+
1672
+ class SurveyRow extends SurveyElementBase {
1574
1673
  constructor(props) {
1575
1674
  super(props);
1675
+ this.rootRef = React.createRef();
1676
+ this.recalculateCss();
1677
+ }
1678
+ recalculateCss() {
1679
+ this.row.visibleElements.map(element => element.cssClasses);
1576
1680
  }
1577
1681
  getStateElement() {
1578
- return this.question;
1682
+ return this.row;
1579
1683
  }
1580
- get question() {
1581
- return this.getQuestion();
1684
+ get row() {
1685
+ return this.props.row;
1686
+ }
1687
+ get survey() {
1688
+ return this.props.survey;
1582
1689
  }
1583
1690
  get creator() {
1584
1691
  return this.props.creator;
1585
1692
  }
1586
- getQuestion() {
1587
- return this.props.question;
1588
- }
1589
- get itemCss() {
1590
- return this.props.itemCss;
1591
- }
1592
- componentDidMount() {
1593
- super.componentDidMount();
1594
- this.doAfterRender();
1595
- }
1596
- componentDidUpdate(prevProps, prevState) {
1597
- super.componentDidUpdate(prevProps, prevState);
1598
- this.doAfterRender();
1693
+ get css() {
1694
+ return this.props.css;
1599
1695
  }
1600
- doAfterRender() { }
1601
1696
  canRender() {
1602
- return !!this.question;
1697
+ return !!this.row && !!this.survey && !!this.creator;
1603
1698
  }
1604
- renderContent() {
1605
- var renderedQuestion = this.renderQuestion();
1606
- return (React.createElement(React.Fragment, null, renderedQuestion));
1699
+ renderElementContent() {
1700
+ const elements = this.row.visibleElements.map((element, elementIndex) => {
1701
+ return (React.createElement(SurveyRowElement, { element: element, index: elementIndex, row: this.row, survey: this.survey, creator: this.creator, css: this.css, key: element.id }));
1702
+ });
1703
+ return (React.createElement("div", { ref: this.rootRef, className: this.row.getRowCss() }, elements));
1607
1704
  }
1608
- getShowErrors() {
1609
- return this.question.isVisible;
1705
+ renderElement() {
1706
+ const survey = this.survey;
1707
+ const content = this.renderElementContent();
1708
+ const wrapper = ReactSurveyElementsWrapper.wrapRow(survey, content, this.row);
1709
+ return wrapper || content;
1610
1710
  }
1611
- renderQuestion() {
1612
- return SurveyQuestion.renderQuestionBody(this.creator, this.question);
1711
+ componentDidMount() {
1712
+ super.componentDidMount();
1713
+ var el = this.rootRef.current;
1714
+ if (this.rootRef.current) {
1715
+ this.row.setRootElement(this.rootRef.current);
1716
+ }
1717
+ if (!!el && !this.row.isNeedRender) {
1718
+ var rowContainerDiv = el;
1719
+ this.lazyRenderingTimeout = setTimeout(() => {
1720
+ this.row.startLazyRendering(rowContainerDiv);
1721
+ }, 10);
1722
+ }
1613
1723
  }
1614
- }
1615
- class SurveyQuestionAndErrorsCell extends SurveyQuestionAndErrorsWrapped {
1616
- constructor(props) {
1617
- super(props);
1618
- this.cellRef = React.createRef();
1724
+ shouldComponentUpdate(nextProps, nextState) {
1725
+ if (!super.shouldComponentUpdate(nextProps, nextState))
1726
+ return false;
1727
+ if (nextProps.row !== this.row) {
1728
+ nextProps.row.isNeedRender = this.row.isNeedRender;
1729
+ nextProps.row.setRootElement(this.rootRef.current);
1730
+ this.row.setRootElement(undefined);
1731
+ this.stopLazyRendering();
1732
+ }
1733
+ this.recalculateCss();
1734
+ return true;
1735
+ }
1736
+ stopLazyRendering() {
1737
+ clearTimeout(this.lazyRenderingTimeout);
1738
+ this.row.stopLazyRendering();
1739
+ this.row.isNeedRender = !this.row.isLazyRendering();
1619
1740
  }
1620
1741
  componentWillUnmount() {
1742
+ const isCurrentStateElement = this.isCurrentStateElement(this.getStateElement());
1621
1743
  super.componentWillUnmount();
1622
- if (this.question) {
1623
- var el = this.cellRef.current;
1624
- if (!!el) {
1625
- el.removeAttribute("data-rendered");
1626
- }
1744
+ if (isCurrentStateElement) {
1745
+ this.row.setRootElement(undefined);
1746
+ this.stopLazyRendering();
1627
1747
  }
1628
1748
  }
1629
- renderCellContent() {
1630
- return (React.createElement("div", { className: this.props.cell.cellQuestionWrapperClassName }, this.renderQuestion()));
1631
- }
1632
- renderElement() {
1633
- var style = this.getCellStyle();
1634
- const cell = this.props.cell;
1635
- const focusIn = () => { cell.focusIn(); };
1636
- return (React.createElement("td", { ref: this.cellRef, className: this.itemCss, colSpan: cell.colSpans, title: cell.getTitle(), style: style, onFocus: focusIn }, this.wrapCell(this.props.cell, this.renderCellContent())));
1637
- }
1638
- getCellStyle() {
1639
- return null;
1640
- }
1641
- getHeaderText() {
1642
- return "";
1643
- }
1644
- wrapCell(cell, element) {
1645
- if (!cell) {
1646
- return element;
1647
- }
1648
- const survey = this.question.survey;
1649
- let wrapper = null;
1650
- if (survey) {
1651
- wrapper = ReactSurveyElementsWrapper.wrapMatrixCell(survey, element, cell, this.props.reason);
1749
+ createElement(element, elementIndex) {
1750
+ const index = elementIndex ? "-" + elementIndex : 0;
1751
+ var elementType = element.getType();
1752
+ if (!ReactElementFactory.Instance.isElementRegistered(elementType)) {
1753
+ elementType = "question";
1652
1754
  }
1653
- return wrapper !== null && wrapper !== void 0 ? wrapper : element;
1755
+ return ReactElementFactory.Instance.createElement(elementType, {
1756
+ key: element.name + index,
1757
+ element: element,
1758
+ creator: this.creator,
1759
+ survey: this.survey,
1760
+ css: this.css,
1761
+ });
1654
1762
  }
1655
1763
  }
1656
- class SurveyQuestionErrorCell extends React.Component {
1764
+
1765
+ class SurveyPanelBase extends SurveyElementBase {
1657
1766
  constructor(props) {
1658
1767
  super(props);
1659
- this.state = {
1660
- changed: 0
1661
- };
1662
- if (this.question) {
1663
- this.registerCallback(this.question);
1664
- }
1768
+ this.rootRef = React.createRef();
1665
1769
  }
1666
- get question() {
1667
- return this.props.question;
1770
+ getStateElement() {
1771
+ return this.panelBase;
1668
1772
  }
1669
- update() {
1670
- this.setState({ changed: this.state.changed + 1 });
1773
+ canUsePropInState(key) {
1774
+ return key !== "elements" && super.canUsePropInState(key);
1671
1775
  }
1672
- getQuestionPropertiesToTrack() {
1673
- return ["errors"];
1776
+ get survey() {
1777
+ return this.getSurvey();
1674
1778
  }
1675
- registerCallback(question) {
1676
- question.registerFunctionOnPropertiesValueChanged(this.getQuestionPropertiesToTrack(), () => {
1677
- this.update();
1678
- }, "__reactSubscription");
1779
+ get creator() {
1780
+ return this.props.creator;
1679
1781
  }
1680
- unRegisterCallback(question) {
1681
- question.unRegisterFunctionOnPropertiesValueChanged(this.getQuestionPropertiesToTrack(), "__reactSubscription");
1782
+ get css() {
1783
+ return this.getCss();
1682
1784
  }
1683
- componentDidUpdate(prevProps) {
1684
- if (prevProps.question && prevProps.question !== this.question) {
1685
- this.unRegisterCallback(prevProps.cell);
1686
- }
1687
- if (this.question) {
1688
- this.registerCallback(this.question);
1689
- }
1785
+ get panelBase() {
1786
+ return this.getPanelBase();
1787
+ }
1788
+ getPanelBase() {
1789
+ return this.props.element || this.props.question;
1790
+ }
1791
+ getSurvey() {
1792
+ return (this.props.survey || (!!this.panelBase ? this.panelBase.survey : null));
1793
+ }
1794
+ getCss() {
1795
+ return this.props.css;
1796
+ }
1797
+ componentDidMount() {
1798
+ super.componentDidMount();
1799
+ this.doAfterRender();
1690
1800
  }
1691
1801
  componentWillUnmount() {
1692
- if (this.question) {
1693
- this.unRegisterCallback(this.question);
1802
+ super.componentWillUnmount();
1803
+ var el = this.rootRef.current;
1804
+ if (!!el) {
1805
+ el.removeAttribute("data-rendered");
1694
1806
  }
1695
1807
  }
1696
- render() {
1697
- return React.createElement(SurveyElementErrors, { element: this.question, creator: this.props.creator, cssClasses: this.question.cssClasses });
1808
+ componentDidUpdate(prevProps, prevState) {
1809
+ super.componentDidUpdate(prevProps, prevState);
1810
+ if (!!prevProps.page &&
1811
+ !!this.survey &&
1812
+ !!this.survey.activePage &&
1813
+ prevProps.page.id === this.survey.activePage.id)
1814
+ return;
1815
+ this.doAfterRender();
1698
1816
  }
1699
- }
1700
-
1701
- class SurveyPage extends SurveyPanelBase {
1702
- constructor(props) {
1703
- super(props);
1817
+ doAfterRender() {
1818
+ var el = this.rootRef.current;
1819
+ if (el && this.survey) {
1820
+ if (this.panelBase.isPanel) {
1821
+ this.panelBase.afterRender(el);
1822
+ }
1823
+ else {
1824
+ this.survey.afterRenderPage(el);
1825
+ }
1826
+ }
1704
1827
  }
1705
- getPanelBase() {
1706
- return this.props.page;
1828
+ getIsVisible() {
1829
+ return this.panelBase.isVisible;
1830
+ }
1831
+ canRender() {
1832
+ return (super.canRender() && !!this.survey && !!this.panelBase && !!this.panelBase.survey && this.getIsVisible());
1707
1833
  }
1708
- get page() {
1709
- return this.panelBase;
1834
+ renderRows(css) {
1835
+ return this.panelBase.visibleRows.map((row) => this.createRow(row, css));
1710
1836
  }
1711
- renderElement() {
1712
- var title = this.renderTitle();
1713
- var description = this.renderDescription();
1714
- var rows = this.renderRows(this.panelBase.cssClasses);
1715
- const errors = (React.createElement(SurveyElementErrors, { element: this.panelBase, cssClasses: this.panelBase.cssClasses, creator: this.creator }));
1716
- return (React.createElement("div", { ref: this.rootRef, className: this.page.cssRoot },
1717
- title,
1718
- description,
1719
- errors,
1720
- rows));
1837
+ createRow(row, css) {
1838
+ return (React.createElement(SurveyRow, { key: row.id, row: row, survey: this.survey, creator: this.creator, css: css }));
1721
1839
  }
1722
- renderTitle() {
1723
- return React.createElement(TitleElement, { element: this.page });
1840
+ }
1841
+
1842
+ class CharacterCounterComponent extends SurveyElementBase {
1843
+ getStateElement() {
1844
+ return this.props.counter;
1724
1845
  }
1725
- renderDescription() {
1726
- if (!this.page._showDescription)
1727
- return null;
1728
- var text = SurveyElementBase.renderLocString(this.page.locDescription);
1729
- return (React.createElement("div", { className: this.panelBase.cssClasses.page.description }, text));
1846
+ renderElement() {
1847
+ return (React.createElement("div", { className: this.props.remainingCharacterCounter }, this.props.counter.remainingCharacterCounter));
1730
1848
  }
1731
1849
  }
1850
+ ReactElementFactory.Instance.registerElement("sv-character-counter", (props) => {
1851
+ return React.createElement(CharacterCounterComponent, props);
1852
+ });
1732
1853
 
1733
- class SurveyHeader extends React.Component {
1854
+ class TextAreaComponent extends SurveyElementBase {
1734
1855
  constructor(props) {
1735
1856
  super(props);
1736
- this.state = { changed: 0 };
1737
- this.rootRef = React.createRef();
1857
+ this.initialValue = this.viewModel.getTextValue() || "";
1858
+ this.textareaRef = React.createRef();
1738
1859
  }
1739
- get survey() {
1740
- return this.props.survey;
1860
+ get viewModel() {
1861
+ return this.props.viewModel;
1741
1862
  }
1742
- get css() {
1743
- return this.survey.css;
1863
+ canRender() {
1864
+ return !!this.viewModel.question;
1744
1865
  }
1745
1866
  componentDidMount() {
1746
- const self = this;
1747
- this.survey.afterRenderHeader(this.rootRef.current);
1748
- this.survey.locLogo.onChanged = function () {
1749
- self.setState({ changed: self.state.changed + 1 });
1750
- };
1867
+ super.componentDidMount();
1868
+ let el = this.textareaRef.current;
1869
+ if (!!el) {
1870
+ this.viewModel.setElement(el);
1871
+ }
1751
1872
  }
1752
1873
  componentWillUnmount() {
1753
- this.survey.locLogo.onChanged = function () { };
1754
- }
1755
- renderTitle() {
1756
- if (!this.survey.renderedHasTitle)
1757
- return null;
1758
- const description = SurveyElementBase.renderLocString(this.survey.locDescription);
1759
- return (React.createElement("div", { className: this.css.headerText, style: { maxWidth: this.survey.titleMaxWidth } },
1760
- React.createElement(TitleElement, { element: this.survey }),
1761
- this.survey.renderedHasDescription ? React.createElement("div", { className: this.css.description }, description) : null));
1762
- }
1763
- renderLogoImage(isRender) {
1764
- if (!isRender)
1765
- return null;
1766
- const componentName = this.survey.getElementWrapperComponentName(this.survey, "logo-image");
1767
- const componentData = this.survey.getElementWrapperComponentData(this.survey, "logo-image");
1768
- return ReactElementFactory.Instance.createElement(componentName, {
1769
- data: componentData,
1770
- });
1874
+ super.componentWillUnmount();
1875
+ this.viewModel.resetElement();
1771
1876
  }
1772
- render() {
1773
- if (!this.survey.renderedHasHeader)
1774
- return null;
1775
- return (React.createElement("div", { className: this.css.header, ref: this.rootRef },
1776
- this.renderLogoImage(this.survey.isLogoBefore),
1777
- this.renderTitle(),
1778
- this.renderLogoImage(this.survey.isLogoAfter),
1779
- React.createElement("div", { className: this.css.headerClose })));
1877
+ renderElement() {
1878
+ return (React.createElement("textarea", { id: this.viewModel.id, className: this.viewModel.className, ref: this.textareaRef, disabled: this.viewModel.isDisabledAttr, readOnly: this.viewModel.isReadOnlyAttr, rows: this.viewModel.rows, cols: this.viewModel.cols, placeholder: this.viewModel.placeholder, maxLength: this.viewModel.maxLength, defaultValue: this.initialValue, onChange: (event) => { this.viewModel.onTextAreaInput(event); }, onFocus: (event) => { this.viewModel.onTextAreaFocus(event); }, onBlur: (event) => { this.viewModel.onTextAreaBlur(event); }, onKeyDown: (event) => { this.viewModel.onTextAreaKeyDown(event); }, "aria-required": this.viewModel.ariaRequired, "aria-label": this.viewModel.ariaLabel, "aria-labelledby": this.viewModel.ariaLabelledBy, "aria-describedby": this.viewModel.ariaDescribedBy, "aria-invalid": this.viewModel.ariaInvalid, "aria-errormessage": this.viewModel.ariaErrormessage, style: { resize: this.viewModel.question.resizeStyle } }));
1780
1879
  }
1781
1880
  }
1782
- ReactElementFactory.Instance.registerElement("survey-header", (props) => {
1783
- return React.createElement(SurveyHeader, props);
1881
+ ReactElementFactory.Instance.registerElement("sv-text-area", (props) => {
1882
+ return React.createElement(TextAreaComponent, props);
1784
1883
  });
1785
1884
 
1786
- class BrandInfo extends React.Component {
1787
- render() {
1788
- return (React.createElement("div", { className: "sv-brand-info" },
1789
- React.createElement("a", { className: "sv-brand-info__logo", href: "https://surveyjs.io/?utm_source=built-in_links&utm_medium=online_survey_tool&utm_campaign=landing_page" },
1790
- React.createElement("img", { src: "https://surveyjs.io/Content/Images/poweredby.svg" })),
1791
- React.createElement("div", { className: "sv-brand-info__text" },
1792
- "Try and see how easy it is to ",
1793
- React.createElement("a", { href: "https://surveyjs.io/create-survey?utm_source=built-in_links&utm_medium=online_survey_tool&utm_campaign=create_survey" }, "create a survey")),
1794
- React.createElement("div", { className: "sv-brand-info__terms" },
1795
- React.createElement("a", { href: "https://surveyjs.io/TermsOfUse" }, "Terms of Use & Privacy Statement"))));
1885
+ class SurveyQuestionComment extends SurveyQuestionUncontrolledElement {
1886
+ renderCharacterCounter() {
1887
+ let counter = null;
1888
+ if (!!this.question.getMaxLength()) {
1889
+ counter = React.createElement(CharacterCounterComponent, { counter: this.question.characterCounter, remainingCharacterCounter: this.question.cssClasses.remainingCharacterCounter });
1890
+ }
1891
+ return counter;
1892
+ }
1893
+ constructor(props) {
1894
+ super(props);
1895
+ }
1896
+ renderElement() {
1897
+ if (this.question.isReadOnlyRenderDiv()) {
1898
+ return React.createElement("div", null, this.question.value);
1899
+ }
1900
+ const counter = this.renderCharacterCounter();
1901
+ const textAreaModel = this.props.question.textAreaModel;
1902
+ return (React.createElement(React.Fragment, null,
1903
+ React.createElement(TextAreaComponent, { viewModel: textAreaModel }),
1904
+ counter));
1796
1905
  }
1797
1906
  }
1798
-
1799
- class NotifierComponent extends SurveyElementBase {
1800
- get notifier() {
1801
- return this.props.notifier;
1907
+ class SurveyQuestionCommentItem extends ReactSurveyElement {
1908
+ constructor(props) {
1909
+ super(props);
1910
+ this.textAreaModel = this.getTextAreaModel();
1802
1911
  }
1803
- getStateElement() {
1804
- return this.notifier;
1912
+ canRender() {
1913
+ return !!this.props.question;
1914
+ }
1915
+ getTextAreaModel() {
1916
+ return this.props.question.commentTextAreaModel;
1805
1917
  }
1806
1918
  renderElement() {
1807
- if (!this.notifier.isDisplayed)
1808
- return null;
1809
- const style = { visibility: this.notifier.active ? "visible" : "hidden" };
1810
- return (React.createElement("div", { className: this.notifier.css, style: style, role: "alert", "aria-live": "polite" },
1811
- React.createElement("span", null, this.notifier.message),
1812
- React.createElement(SurveyActionBar, { model: this.notifier.actionBar })));
1919
+ const question = this.props.question;
1920
+ if (question.isReadOnlyRenderDiv()) {
1921
+ const comment = this.textAreaModel.getTextValue() || "";
1922
+ return React.createElement("div", null, comment);
1923
+ }
1924
+ return (React.createElement(TextAreaComponent, { key: this.getKey(), viewModel: this.textAreaModel }));
1813
1925
  }
1926
+ getKey() { return undefined; }
1814
1927
  }
1815
- ReactElementFactory.Instance.registerElement("sv-notifier", (props) => {
1816
- return React.createElement(NotifierComponent, props);
1817
- });
1818
-
1819
- class ComponentsContainer extends React.Component {
1820
- render() {
1821
- const components = this.props.survey.getContainerContent(this.props.container);
1822
- const needRenderWrapper = this.props.needRenderWrapper === false ? false : true;
1823
- if (components.length == 0) {
1824
- return null;
1825
- }
1826
- if (!needRenderWrapper) {
1827
- return React.createElement(React.Fragment, null, components.map(component => {
1828
- return ReactElementFactory.Instance.createElement(component.component, { survey: this.props.survey, model: component.data, container: this.props.container, key: component.id });
1829
- }));
1830
- }
1831
- return React.createElement("div", { className: "sv-components-column" + " sv-components-container-" + this.props.container }, components.map(component => {
1832
- return ReactElementFactory.Instance.createElement(component.component, { survey: this.props.survey, model: component.data, container: this.props.container, key: component.id });
1833
- }));
1928
+ class SurveyQuestionCommentValueItem extends SurveyQuestionCommentItem {
1929
+ constructor(props) {
1930
+ super(props);
1931
+ }
1932
+ getTextAreaModel() {
1933
+ return this.props.question.getCommentTextAreaModel(this.props.item);
1834
1934
  }
1935
+ getKey() { return this.props.item.uniqueId; }
1835
1936
  }
1836
- ReactElementFactory.Instance.registerElement("sv-components-container", (props) => {
1837
- return React.createElement(ComponentsContainer, props);
1937
+ ReactQuestionFactory.Instance.registerQuestion("comment", (props) => {
1938
+ return React.createElement(SurveyQuestionComment, props);
1838
1939
  });
1839
1940
 
1840
- class SvgBundleComponent extends React.Component {
1941
+ class SurveyCustomWidget extends SurveyQuestionElementBase {
1841
1942
  constructor(props) {
1842
1943
  super(props);
1843
- this.onIconsChanged = () => {
1844
- if (!!this.containerRef.current) {
1845
- this.containerRef.current.innerHTML = SvgRegistry.iconsRenderedHtml();
1944
+ this.widgetRef = React.createRef();
1945
+ }
1946
+ _afterRender() {
1947
+ if (this.questionBase.customWidget) {
1948
+ let el = this.widgetRef.current;
1949
+ if (!!el) {
1950
+ this.questionBase.customWidget.afterRender(this.questionBase, el);
1951
+ this.questionBase.customWidgetData.isNeedRender = false;
1846
1952
  }
1847
- };
1848
- this.containerRef = React.createRef();
1953
+ }
1849
1954
  }
1850
1955
  componentDidMount() {
1851
- this.onIconsChanged();
1852
- SvgRegistry.onIconsChanged.add(this.onIconsChanged);
1956
+ super.componentDidMount();
1957
+ if (this.questionBase) {
1958
+ this._afterRender();
1959
+ }
1960
+ }
1961
+ componentDidUpdate(prevProps, prevState) {
1962
+ super.componentDidUpdate(prevProps, prevState);
1963
+ var isDefaultRender = !!this.questionBase.customWidget &&
1964
+ this.questionBase.customWidget.isDefaultRender;
1965
+ if (this.questionBase && !isDefaultRender) {
1966
+ this._afterRender();
1967
+ }
1853
1968
  }
1854
1969
  componentWillUnmount() {
1855
- SvgRegistry.onIconsChanged.remove(this.onIconsChanged);
1970
+ super.componentWillUnmount();
1971
+ if (this.questionBase.customWidget) {
1972
+ let el = this.widgetRef.current;
1973
+ if (!!el) {
1974
+ this.questionBase.customWidget.willUnmount(this.questionBase, el);
1975
+ }
1976
+ }
1856
1977
  }
1857
- render() {
1858
- const svgStyle = {
1859
- display: "none"
1860
- };
1861
- return React.createElement("svg", { style: svgStyle, id: "sv-icon-holder-global-container", ref: this.containerRef });
1978
+ canRender() {
1979
+ return super.canRender() && this.questionBase.visible;
1980
+ }
1981
+ renderElement() {
1982
+ let customWidget = this.questionBase.customWidget;
1983
+ if (customWidget.isDefaultRender) {
1984
+ return (React.createElement("div", { ref: this.widgetRef }, this.creator.createQuestionElement(this.questionBase)));
1985
+ }
1986
+ let widget = null;
1987
+ if (customWidget.widgetJson.render) {
1988
+ widget = customWidget.widgetJson.render(this.questionBase);
1989
+ }
1990
+ else {
1991
+ if (customWidget.htmlTemplate) {
1992
+ let htmlValue = { __html: customWidget.htmlTemplate };
1993
+ return React.createElement("div", { ref: this.widgetRef, dangerouslySetInnerHTML: htmlValue });
1994
+ }
1995
+ }
1996
+ return React.createElement("div", { ref: this.widgetRef }, widget);
1997
+ }
1998
+ }
1999
+
2000
+ class SurveyElementHeader extends SurveyElementBase {
2001
+ get element() {
2002
+ return this.props.element;
2003
+ }
2004
+ getRenderedElements() {
2005
+ return [this.element];
2006
+ }
2007
+ renderElement() {
2008
+ const element = this.element;
2009
+ const title = element.hasTitle ? (React.createElement(TitleElement, { element: element })) : null;
2010
+ const description = element.hasDescriptionUnderTitle
2011
+ ? SurveyElementBase.renderQuestionDescription(this.element)
2012
+ : null;
2013
+ const additionalTitleToolbarElement = element.hasAdditionalTitleToolbar ? React.createElement(SurveyActionBar, { model: element.additionalTitleToolbar }) : null;
2014
+ const headerStyle = { width: undefined };
2015
+ if (element instanceof Question) {
2016
+ headerStyle.width = element.titleWidth;
2017
+ }
2018
+ return (React.createElement("div", { className: element.cssHeader, onClick: (e) => element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent), style: headerStyle },
2019
+ title,
2020
+ description,
2021
+ additionalTitleToolbarElement));
1862
2022
  }
1863
2023
  }
1864
2024
 
1865
- class PopupModal extends SurveyElementBase {
2025
+ class SurveyQuestionSigleInputSummary extends ReactSurveyElement {
1866
2026
  constructor(props) {
1867
2027
  super(props);
1868
- this.isInitialized = false;
1869
- this.init = () => {
1870
- if (!this.isInitialized) {
1871
- settings.showDialog = (dialogOptions, rootElement) => {
1872
- return this.showDialog(dialogOptions, rootElement);
1873
- };
1874
- this.isInitialized = true;
1875
- }
1876
- };
1877
- this.clean = () => {
1878
- if (this.isInitialized) {
1879
- settings.showDialog = undefined;
1880
- this.isInitialized = false;
1881
- }
1882
- };
1883
- this.state = { changed: 0 };
1884
- this.descriptor = {
1885
- init: this.init,
1886
- clean: this.clean
1887
- };
1888
2028
  }
1889
- static addModalDescriptor(descriptor) {
1890
- if (!settings.showDialog) {
1891
- descriptor.init();
1892
- }
1893
- this.modalDescriptors.push(descriptor);
2029
+ get css() {
2030
+ return this.props.css;
1894
2031
  }
1895
- static removeModalDescriptor(descriptor) {
1896
- descriptor.clean();
1897
- this.modalDescriptors.splice(this.modalDescriptors.indexOf(descriptor), 1);
1898
- if (!settings.showDialog && this.modalDescriptors[0]) {
1899
- this.modalDescriptors[0].init();
1900
- }
2032
+ get summary() {
2033
+ return this.props.summary;
1901
2034
  }
1902
2035
  renderElement() {
1903
- if (!this.model)
2036
+ if (!this.summary)
1904
2037
  return null;
1905
- return createPortal(React.createElement(PopupContainer, { model: this.model }), this.model.container);
2038
+ return this.summary.isEmpty() ? this.renderNoItems() : this.renderItems();
1906
2039
  }
1907
- showDialog(dialogOptions, rootElement) {
1908
- this.model = createPopupModalViewModel(dialogOptions, rootElement);
1909
- const onVisibilityChangedCallback = (_, options) => {
1910
- if (!options.isVisible) {
1911
- this.model.dispose();
1912
- this.model = undefined;
1913
- this.setState({ changed: this.state.changed + 1 });
1914
- }
1915
- };
1916
- this.model.onVisibilityChanged.add(onVisibilityChangedCallback);
1917
- this.model.model.isVisible = true;
1918
- this.setState({ changed: this.state.changed + 1 });
1919
- return this.model;
2040
+ renderItems() {
2041
+ return (React.createElement("div", { className: this.css.summary }, this.summary.items.map((item, index) => this.renderItem(item, index))));
1920
2042
  }
1921
- componentDidMount() {
1922
- PopupModal.addModalDescriptor(this.descriptor);
2043
+ renderNoItems() {
2044
+ const q = this.summary.question;
2045
+ const placeholder = ReactElementFactory.Instance.createElement("sv-placeholder-" + q.getTemplate(), { cssClasses: this.css, question: q });
2046
+ return placeholder || React.createElement("div", null, this.renderLocString(this.summary.noEntry));
1923
2047
  }
1924
- componentWillUnmount() {
1925
- if (this.model) {
1926
- this.model.dispose();
1927
- this.model = undefined;
1928
- }
1929
- PopupModal.removeModalDescriptor(this.descriptor);
2048
+ renderItem(item, index) {
2049
+ const btnEdit = item.btnEdit ?
2050
+ React.createElement("button", { className: this.css.summaryRowActionEdit, onClick: () => item.btnEdit.action(), title: item.btnEdit.title },
2051
+ React.createElement(SvgIcon, { iconName: "icon-editsmall-16x16", iconSize: "auto" })) : null;
2052
+ const btnDelete = item.showRemove && item.btnRemove ?
2053
+ React.createElement("button", { className: this.css.summaryRowActionDelete, onClick: () => item.btnRemove.action(), title: item.btnRemove.title },
2054
+ React.createElement(SvgIcon, { iconName: "icon-delete-16x16", iconSize: "auto" })) : null;
2055
+ return React.createElement("div", { className: this.css.summaryRow, key: index },
2056
+ React.createElement("div", { className: this.css.summaryRowContent }, this.renderLocString(item.locText)),
2057
+ React.createElement("div", { className: this.css.summaryRowActions },
2058
+ btnEdit,
2059
+ btnDelete));
1930
2060
  }
1931
2061
  }
1932
- PopupModal.modalDescriptors = [];
1933
-
1934
- /*!
1935
- * surveyjs - Survey JavaScript library v2.3.6
1936
- * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1937
- * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1938
- */
1939
-
1940
- var iconsV1 = {
1941
- "modernbooleancheckchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><polygon points=\"19,10 14,10 14,5 10,5 10,10 5,10 5,14 10,14 10,19 14,19 14,14 19,14 \"></polygon></svg>",
1942
- "modernbooleancheckind": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M22,0H2C0.9,0,0,0.9,0,2v20c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V2C24,0.9,23.1,0,22,0z M21,18L6,3h15V18z M3,6l15,15H3V6z\"></path></svg>",
1943
- "modernbooleancheckunchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><rect x=\"5\" y=\"10\" width=\"14\" height=\"4\"></rect></svg>",
1944
- "moderncheck": "<svg viewBox=\"0 0 24 24\"><path d=\"M5,13l2-2l3,3l7-7l2,2l-9,9L5,13z\"></path></svg>",
1945
- "modernradio": "<svg viewBox=\"-12 -12 24 24\"><circle r=\"6\" cx=\"0\" cy=\"0\"></circle></svg>",
1946
- "progressbutton": "<svg viewBox=\"0 0 10 10\"><polygon points=\"2,2 0,4 5,9 10,4 8,2 5,5 \"></polygon></svg>",
1947
- "removefile": "<svg viewBox=\"0 0 16 16\"><path d=\"M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z M11,10l-1,1L8,9l-2,2l-1-1l2-2L5,6l1-1l2,2l2-2l1,1L9,8 L11,10z\"></path></svg>",
1948
- "timercircle": "<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 160 160\"><circle cx=\"80\" cy=\"80\" r=\"70\" style=\"stroke: var(--sd-timer-stroke-background-color); stroke-width: var(--sd-timer-stroke-background-width)\" stroke-dasharray=\"none\" stroke-dashoffset=\"none\"></circle><circle cx=\"80\" cy=\"80\" r=\"70\"></circle></svg>",
1949
- "add-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 11H17V13H13V17H11V13H7V11H11V7H13V11ZM23 12C23 18.1 18.1 23 12 23C5.9 23 1 18.1 1 12C1 5.9 5.9 1 12 1C18.1 1 23 5.9 23 12ZM21 12C21 7 17 3 12 3C7 3 3 7 3 12C3 17 7 21 12 21C17 21 21 17 21 12Z\"></path></svg>",
1950
- "arrowleft-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 8.99999H4.4L8.7 13.3L7.3 14.7L0.599998 7.99999L7.3 1.29999L8.7 2.69999L4.4 6.99999H15V8.99999Z\"></path></svg>",
1951
- "arrowright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1 6.99999H11.6L7.3 2.69999L8.7 1.29999L15.4 7.99999L8.7 14.7L7.3 13.3L11.6 8.99999H1V6.99999Z\"></path></svg>",
1952
- "camera-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.01 4H18.4C18.2 4 18.01 3.9 17.9 3.73L16.97 2.34C16.41 1.5 15.48 1 14.47 1H9.54C8.53 1 7.6 1.5 7.04 2.34L6.11 3.73C6 3.9 5.81 4 5.61 4H4C2.35 4 1 5.35 1 7V19C1 20.65 2.35 22 4 22H20C21.65 22 23 20.65 23 19V7C23 5.35 21.65 4 20 4H20.01ZM21.01 19C21.01 19.55 20.56 20 20.01 20H4.01C3.46 20 3.01 19.55 3.01 19V7C3.01 6.45 3.46 6 4.01 6H5.62C6.49 6 7.3 5.56 7.79 4.84L8.72 3.45C8.91 3.17 9.22 3 9.55 3H14.48C14.81 3 15.13 3.17 15.31 3.45L16.24 4.84C16.72 5.56 17.54 6 18.41 6H20.02C20.57 6 21.02 6.45 21.02 7V19H21.01ZM12.01 6C8.7 6 6.01 8.69 6.01 12C6.01 15.31 8.7 18 12.01 18C15.32 18 18.01 15.31 18.01 12C18.01 8.69 15.32 6 12.01 6ZM12.01 16C9.8 16 8.01 14.21 8.01 12C8.01 9.79 9.8 8 12.01 8C14.22 8 16.01 9.79 16.01 12C16.01 14.21 14.22 16 12.01 16ZM13.01 10C13.01 10.55 12.56 11 12.01 11C11.46 11 11.01 11.45 11.01 12C11.01 12.55 10.56 13 10.01 13C9.46 13 9.01 12.55 9.01 12C9.01 10.35 10.36 9 12.01 9C12.56 9 13.01 9.45 13.01 10Z\"></path></svg>",
1953
- "camera-32x32": "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27 6H23.8C23.34 6 22.92 5.77 22.66 5.39L22.25 4.78C21.51 3.66 20.26 3 18.92 3H13.06C11.72 3 10.48 3.67 9.73 4.78L9.32 5.39C9.07 5.77 8.64 6 8.18 6H4.98C2.79 6 1 7.79 1 10V24C1 26.21 2.79 28 5 28H27C29.21 28 31 26.21 31 24V10C31 7.79 29.21 6 27 6ZM29 24C29 25.1 28.1 26 27 26H5C3.9 26 3 25.1 3 24V10C3 8.9 3.9 8 5 8H8.2C9.33 8 10.38 7.44 11 6.5L11.41 5.89C11.78 5.33 12.41 5 13.07 5H18.93C19.6 5 20.22 5.33 20.59 5.89L21 6.5C21.62 7.44 22.68 8 23.8 8H27C28.1 8 29 8.9 29 10V24ZM16 9C12.13 9 9 12.13 9 16C9 19.87 12.13 23 16 23C19.87 23 23 19.87 23 16C23 12.13 19.87 9 16 9ZM16 21C13.24 21 11 18.76 11 16C11 13.24 13.24 11 16 11C18.76 11 21 13.24 21 16C21 18.76 18.76 21 16 21ZM17 13C17 13.55 16.55 14 16 14C14.9 14 14 14.9 14 16C14 16.55 13.55 17 13 17C12.45 17 12 16.55 12 16C12 13.79 13.79 12 16 12C16.55 12 17 12.45 17 13Z\"></path></svg>",
1954
- "cancel-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.6 8.6L16.4 2.4C16 2 15.5 1.8 15 1.8C14.5 1.8 14 2 13.6 2.4L1.40005 14.6C0.600049 15.4 0.600049 16.6 1.40005 17.4L6.00005 22H12L22.6 11.4C23.3 10.6 23.3 9.3 22.6 8.6ZM11.1 20H6.80005L2.80005 16L6.20005 12.6L12.4 18.8L11.1 20ZM13.8 17.4L7.60005 11.2L15 3.8L21.2 10L13.8 17.4ZM16 20H23V22H14L16 20Z\"></path></svg>",
1955
- "check-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.003 14.413L0.292999 9.70303L1.703 8.29303L5.003 11.583L14.293 2.29303L15.703 3.70303L5.003 14.413Z\"></path></svg>",
1956
- "check-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9 20.1L1 12L3.1 9.9L9 15.9L20.9 4L23 6.1L9 20.1Z\"></path></svg>",
1957
- "chevrondown-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 15L17 10H7L12 15Z\"></path></svg>",
1958
- "chevronright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.64648 12.6465L6.34648 13.3465L11.7465 8.04648L6.34648 2.64648L5.64648 3.34648L10.2465 8.04648L5.64648 12.6465Z\"></path></svg>",
1959
- "clear-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.35 3.34999L12.65 2.64999L8.05002 7.24999L3.35002 2.64999L2.65002 3.34999L7.25002 8.04999L2.65002 12.65L3.35002 13.35L8.05002 8.74999L12.65 13.35L13.35 12.65L8.75002 8.04999L13.35 3.34999Z\"></path></svg>",
1960
- "clear-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.6 8.6L16.4 2.4C16 2 15.5 1.8 15 1.8C14.5 1.8 14 2 13.6 2.4L1.40005 14.6C0.600049 15.4 0.600049 16.6 1.40005 17.4L6.00005 22H12L22.6 11.4C23.3 10.6 23.3 9.3 22.6 8.6ZM11.1 20H6.80005L2.80005 16L6.20005 12.6L12.4 18.8L11.1 20ZM13.8 17.4L7.60005 11.2L15 3.8L21.2 10L13.8 17.4ZM16 20H23V22H14L16 20Z\"></path></svg>",
1961
- "close-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.43 8.0025L13.7 3.7225C14.09 3.3325 14.09 2.6925 13.7 2.2925C13.31 1.9025 12.67 1.9025 12.27 2.2925L7.99 6.5725L3.72 2.3025C3.33 1.9025 2.69 1.9025 2.3 2.3025C1.9 2.6925 1.9 3.3325 2.3 3.7225L6.58 8.0025L2.3 12.2825C1.91 12.6725 1.91 13.3125 2.3 13.7125C2.69 14.1025 3.33 14.1025 3.73 13.7125L8.01 9.4325L12.29 13.7125C12.68 14.1025 13.32 14.1025 13.72 13.7125C14.11 13.3225 14.11 12.6825 13.72 12.2825L9.44 8.0025H9.43Z\"></path></svg>",
1962
- "close-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.4101 12L20.7001 4.71C21.0901 4.32 21.0901 3.69 20.7001 3.3C20.3101 2.91 19.6801 2.91 19.2901 3.3L12.0001 10.59L4.71006 3.29C4.32006 2.9 3.68006 2.9 3.29006 3.29C2.90006 3.68 2.90006 4.32 3.29006 4.71L10.5801 12L3.29006 19.29C2.90006 19.68 2.90006 20.31 3.29006 20.7C3.49006 20.9 3.74006 20.99 4.00006 20.99C4.26006 20.99 4.51006 20.89 4.71006 20.7L12.0001 13.41L19.2901 20.7C19.4901 20.9 19.7401 20.99 20.0001 20.99C20.2601 20.99 20.5101 20.89 20.7101 20.7C21.1001 20.31 21.1001 19.68 20.7101 19.29L13.4201 12H13.4101Z\"></path></svg>",
1963
- "collapse-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 6L3 5L8 10L13 5L14 6L8 12L2 6Z\"></path></svg>",
1964
- "collapsedetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>",
1965
- "delete-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 2H14H11V1C11 0.4 10.6 0 10 0H7C6.4 0 6 0.4 6 1V2H3H2V4H3V14C3 15.1 3.9 16 5 16H12C13.1 16 14 15.1 14 14V4H15V2ZM7 1H10V2H7V1ZM12 14H5V4H12V14ZM7 13H6V5H7V13ZM9 13H8V5H9V13ZM11 13H10V5H11V13Z\"></path></svg>",
1966
- "delete-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22 4H20H16V2C16 0.9 15.1 0 14 0H10C8.9 0 8 0.9 8 2V4H4H2V6H4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V6H22V4ZM10 2H14V4H10V2ZM18 20H6V6H8H16H18V20ZM14 8H16V18H14V8ZM11 8H13V18H11V8ZM8 8H10V18H8V8Z\"></path></svg>",
1967
- "drag-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 6C13 4.9 13.9 4 15 4C16.1 4 17 4.9 17 6C17 7.1 16.1 8 15 8C13.9 8 13 7.1 13 6ZM9 4C7.9 4 7 4.9 7 6C7 7.1 7.9 8 9 8C10.1 8 11 7.1 11 6C11 4.9 10.1 4 9 4ZM15 10C13.9 10 13 10.9 13 12C13 13.1 13.9 14 15 14C16.1 14 17 13.1 17 12C17 10.9 16.1 10 15 10ZM9 10C7.9 10 7 10.9 7 12C7 13.1 7.9 14 9 14C10.1 14 11 13.1 11 12C11 10.9 10.1 10 9 10ZM15 16C13.9 16 13 16.9 13 18C13 19.1 13.9 20 15 20C16.1 20 17 19.1 17 18C17 16.9 16.1 16 15 16ZM9 16C7.9 16 7 16.9 7 18C7 19.1 7.9 20 9 20C10.1 20 11 19.1 11 18C11 16.9 10.1 16 9 16Z\"></path></svg>",
1968
- "draghorizontal-24x16": "<svg viewBox=\"0 0 24 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18 9C19.1 9 20 9.9 20 11C20 12.1 19.1 13 18 13C16.9 13 16 12.1 16 11C16 9.9 16.9 9 18 9ZM20 5C20 3.9 19.1 3 18 3C16.9 3 16 3.9 16 5C16 6.1 16.9 7 18 7C19.1 7 20 6.1 20 5ZM14 11C14 9.9 13.1 9 12 9C10.9 9 10 9.9 10 11C10 12.1 10.9 13 12 13C13.1 13 14 12.1 14 11ZM14 5C14 3.9 13.1 3 12 3C10.9 3 10 3.9 10 5C10 6.1 10.9 7 12 7C13.1 7 14 6.1 14 5ZM8 11C8 9.9 7.1 9 6 9C4.9 9 4 9.9 4 11C4 12.1 4.9 13 6 13C7.1 13 8 12.1 8 11ZM8 5C8 3.9 7.1 3 6 3C4.9 3 4 3.9 4 5C4 6.1 4.9 7 6 7C7.1 7 8 6.1 8 5Z\"></path></svg>",
1969
- "editsmall-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.59 4.5884L11.42 2.4184C11.03 2.0284 10.52 1.8284 10.01 1.8284C9.5 1.8284 8.99 2.0284 8.6 2.4184L3.76 7.2384C2.63 8.3684 2 9.8884 2 11.4784V12.9884C2 13.5384 2.45 13.9884 3 13.9884H4.51C6.1 13.9884 7.63 13.3584 8.75 12.2284L13.58 7.3984C14.36 6.6184 14.36 5.3484 13.58 4.5684L13.59 4.5884ZM7.35 10.8284C6.59 11.5884 5.59 11.9984 4.52 11.9984H4.01V11.4884C4.01 10.4184 4.43 9.4184 5.18 8.6584L7.72 6.1184L9.89 8.2884L7.35 10.8284ZM11.3 6.8784L9.13 4.7084L10.01 3.8284L12.18 5.9984L11.3 6.8784Z\"></path></svg>",
1970
- "expand-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 14L5 13L10 8L5 3L6 2L12 8L6 14Z\"></path></svg>",
1971
- "expanddetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H9V3H7V7H3V9H7V13H9V9H13V7Z\"></path></svg>",
1972
- "file-72x72": "<svg viewBox=\"0 0 72 72\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.83 12.83L53.17 3.17C52.7982 2.79866 52.357 2.50421 51.8714 2.30346C51.3858 2.1027 50.8654 1.99959 50.34 2H14C12.4087 2 10.8826 2.63214 9.75735 3.75736C8.63214 4.88258 8 6.4087 8 8V64C8 65.5913 8.63214 67.1174 9.75735 68.2426C10.8826 69.3679 12.4087 70 14 70H58C59.5913 70 61.1174 69.3679 62.2426 68.2426C63.3679 67.1174 64 65.5913 64 64V15.66C64.0004 15.1346 63.8973 14.6142 63.6965 14.1286C63.4958 13.643 63.2013 13.2018 62.83 12.83ZM52 4.83L61.17 14H56C54.9391 14 53.9217 13.5786 53.1716 12.8284C52.4214 12.0783 52 11.0609 52 10V4.83ZM62 64C62 65.0609 61.5786 66.0783 60.8284 66.8284C60.0783 67.5786 59.0609 68 58 68H14C12.9391 68 11.9217 67.5786 11.1716 66.8284C10.4214 66.0783 10 65.0609 10 64V8C10 6.93914 10.4214 5.92172 11.1716 5.17157C11.9217 4.42143 12.9391 4 14 4H50V10C50 11.5913 50.6321 13.1174 51.7574 14.2426C52.8826 15.3679 54.4087 16 56 16H62V64ZM22 26H50V28H22V26ZM22 32H50V34H22V32ZM22 38H50V40H22V38ZM22 44H50V46H22V44Z\"></path></svg>",
1973
- "flip-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M23 12.0037C23 14.2445 21.7794 16.3052 19.5684 17.8257C19.3984 17.9458 19.1983 18.0058 19.0082 18.0058C18.688 18.0058 18.3779 17.8557 18.1778 17.5756C17.8677 17.1155 17.9777 16.4953 18.4379 16.1852C20.0887 15.0448 21.0091 13.5643 21.0091 12.0138C21.0091 8.70262 16.9673 6.01171 12.005 6.01171C11.4948 6.01171 10.9945 6.04172 10.5043 6.09173L11.7149 7.30215C12.105 7.69228 12.105 8.32249 11.7149 8.71263C11.5148 8.9127 11.2647 9.00273 11.0045 9.00273C10.7444 9.00273 10.4943 8.90269 10.2942 8.71263L6.58254 5.00136L10.2842 1.2901C10.6744 0.899964 11.3047 0.899964 11.6949 1.2901C12.085 1.68023 12.085 2.31045 11.6949 2.70058L10.3042 4.09105C10.8545 4.03103 11.4147 4.00102 11.985 4.00102C18.0578 4.00102 22.99 7.59225 22.99 12.0037H23ZM12.2851 15.2949C11.895 15.685 11.895 16.3152 12.2851 16.7054L13.4957 17.9158C13.0055 17.9758 12.4952 17.9958 11.995 17.9958C7.03274 17.9958 2.99091 15.3049 2.99091 11.9937C2.99091 10.4332 3.90132 8.95271 5.56207 7.82232C6.02228 7.51222 6.13233 6.89201 5.82219 6.43185C5.51205 5.97169 4.89177 5.86166 4.43156 6.17176C2.22055 7.69228 1 9.76299 1 11.9937C1 16.4052 5.93224 19.9965 12.005 19.9965C12.5753 19.9965 13.1355 19.9665 13.6858 19.9064L12.2951 21.2969C11.905 21.6871 11.905 22.3173 12.2951 22.7074C12.4952 22.9075 12.7453 22.9975 13.0055 22.9975C13.2656 22.9975 13.5157 22.8975 13.7158 22.7074L17.4275 18.9961L13.7158 15.2849C13.3256 14.8947 12.6953 14.8947 12.3051 15.2849L12.2851 15.2949Z\"></path></svg>",
1974
- "folder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.93 9H21V7C21 6.46957 20.7893 5.96086 20.4142 5.58579C20.0391 5.21071 19.5304 5 19 5H10L8 3H4C3.46957 3 2.96086 3.21071 2.58579 3.58579C2.21071 3.96086 2 4.46957 2 5L2 21H21L23.89 11.63C23.9916 11.3244 24.0179 10.9988 23.9667 10.6809C23.9155 10.363 23.7882 10.0621 23.5958 9.80392C23.4034 9.54571 23.1514 9.33779 22.8614 9.19782C22.5714 9.05786 22.2519 8.99 21.93 9ZM4 5H7.17L8.59 6.41L9.17 7H19V9H6L4 15V5ZM22 11L19.54 19H4.77L7.44 11H22Z\"></path></svg>",
1975
- "fullsize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 13H4C2.9 13 2 12.1 2 11V5C2 3.9 2.9 3 4 3H12C13.1 3 14 3.9 14 5V11C14 12.1 13.1 13 12 13ZM4 5V11H12V5H4Z\"></path></svg>",
1976
- "image-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M36 8H12C9.79 8 8 9.79 8 12V36C8 38.21 9.79 40 12 40H36C38.21 40 40 38.21 40 36V12C40 9.79 38.21 8 36 8ZM38 36C38 37.1 37.1 38 36 38H12C10.9 38 10 37.1 10 36V12C10 10.9 10.9 10 12 10H36C37.1 10 38 10.9 38 12V36ZM14 17C14 15.34 15.34 14 17 14C18.66 14 20 15.34 20 17C20 18.66 18.66 20 17 20C15.34 20 14 18.66 14 17ZM27 24L36 36H12L19 27L23 29L27 24Z\"></path></svg>",
1977
- "loading-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_19679_369428)\"><path opacity=\"0.1\" d=\"M24 40C15.18 40 8 32.82 8 24C8 15.18 15.18 8 24 8C32.82 8 40 15.18 40 24C40 32.82 32.82 40 24 40ZM24 12C17.38 12 12 17.38 12 24C12 30.62 17.38 36 24 36C30.62 36 36 30.62 36 24C36 17.38 30.62 12 24 12Z\" fill=\"black\" fill-opacity=\"0.91\"></path><path d=\"M10 26C8.9 26 8 25.1 8 24C8 15.18 15.18 8 24 8C25.1 8 26 8.9 26 10C26 11.1 25.1 12 24 12C17.38 12 12 17.38 12 24C12 25.1 11.1 26 10 26Z\"></path></g><defs><clipPath id=\"clip0_19679_369428\"><rect width=\"32\" height=\"32\" fill=\"white\" transform=\"translate(8 8)\"></rect></clipPath></defs></svg>",
1978
- "maximize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.71 10.71L4.42 13H6.01C6.56 13 7.01 13.45 7.01 14C7.01 14.55 6.56 15 6.01 15H2C1.45 15 1 14.55 1 14V10C1 9.45 1.45 9 2 9C2.55 9 3 9.45 3 10V11.59L5.29 9.3C5.68 8.91 6.31 8.91 6.7 9.3C7.09 9.69 7.09 10.32 6.7 10.71H6.71ZM14 1H10C9.45 1 9 1.45 9 2C9 2.55 9.45 3 10 3H11.59L9.3 5.29C8.91 5.68 8.91 6.31 9.3 6.7C9.5 6.9 9.75 6.99 10.01 6.99C10.27 6.99 10.52 6.89 10.72 6.7L13.01 4.41V6C13.01 6.55 13.46 7 14.01 7C14.56 7 15.01 6.55 15.01 6V2C15.01 1.45 14.56 1 14.01 1H14Z\"></path></svg>",
1979
- "minimize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 9H3C2.45 9 2 8.55 2 8C2 7.45 2.45 7 3 7H13C13.55 7 14 7.45 14 8C14 8.55 13.55 9 13 9Z\"></path></svg>",
1980
- "more-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 12C6 13.1 5.1 14 4 14C2.9 14 2 13.1 2 12C2 10.9 2.9 10 4 10C5.1 10 6 10.9 6 12ZM12 10C10.9 10 10 10.9 10 12C10 13.1 10.9 14 12 14C13.1 14 14 13.1 14 12C14 10.9 13.1 10 12 10ZM20 10C18.9 10 18 10.9 18 12C18 13.1 18.9 14 20 14C21.1 14 22 13.1 22 12C22 10.9 21.1 10 20 10Z\"></path></svg>",
1981
- "navmenu-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 7H2V5H16V7ZM2 11V13H22V11H2ZM2 19H10V17H2V19Z\"></path></svg>",
1982
- "noimage-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14 17.01C14 16.4167 14.1759 15.8366 14.5056 15.3433C14.8352 14.8499 15.3038 14.4654 15.8519 14.2384C16.4001 14.0113 17.0033 13.9519 17.5853 14.0676C18.1672 14.1834 18.7018 14.4691 19.1213 14.8887C19.5409 15.3082 19.8266 15.8428 19.9424 16.4247C20.0581 17.0067 19.9987 17.6099 19.7716 18.1581C19.5446 18.7062 19.1601 19.1748 18.6667 19.5044C18.1734 19.8341 17.5933 20.01 17 20.01C16.2044 20.01 15.4413 19.6939 14.8787 19.1313C14.3161 18.5687 14 17.8056 14 17.01ZM27.09 24.14L20 36.01H36L27.09 24.14ZM36.72 8.14L35.57 10.01H36C36.5304 10.01 37.0391 10.2207 37.4142 10.5958C37.7893 10.9709 38 11.4796 38 12.01V36.01C38 36.5404 37.7893 37.0491 37.4142 37.4242C37.0391 37.7993 36.5304 38.01 36 38.01H18.77L17.57 40.01H36C37.0609 40.01 38.0783 39.5886 38.8284 38.8384C39.5786 38.0883 40 37.0709 40 36.01V12.01C39.9966 11.0765 39.6668 10.1737 39.0678 9.45778C38.4688 8.74188 37.6382 8.25802 36.72 8.09V8.14ZM36.86 4.5L12.86 44.5L11.14 43.5L13.23 40.01H12C10.9391 40.01 9.92172 39.5886 9.17157 38.8384C8.42143 38.0883 8 37.0709 8 36.01V12.01C8 10.9491 8.42143 9.93172 9.17157 9.18157C9.92172 8.43143 10.9391 8.01 12 8.01H32.43L35.14 3.5L36.86 4.5ZM14.43 38.01L15.63 36.01H12L19 27.01L20.56 27.8L31.23 10.01H12C11.4696 10.01 10.9609 10.2207 10.5858 10.5958C10.2107 10.9709 10 11.4796 10 12.01V36.01C10 36.5404 10.2107 37.0491 10.5858 37.4242C10.9609 37.7993 11.4696 38.01 12 38.01H14.43Z\"></path></svg>",
1983
- "ranking-arrows": "<svg viewBox=\"0 0 10 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 5L5 0L0 5H4V9H6V5H10Z\"></path><path d=\"M6 19V15H4V19H0L5 24L10 19H6Z\"></path></svg>",
1984
- "rankingundefined-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>",
1985
- "rating-star-2": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M24.3981 33.1305L24 32.9206L23.6019 33.1305L15.8715 37.2059L17.3542 28.5663L17.43 28.1246L17.1095 27.8113L10.83 21.6746L19.4965 20.4049L19.9405 20.3399L20.1387 19.9373L24 12.0936L27.8613 19.9373L28.0595 20.3399L28.5035 20.4049L37.17 21.6746L30.8905 27.8113L30.57 28.1246L30.6458 28.5663L32.1285 37.2059L24.3981 33.1305Z\" stroke-width=\"1.70746\"></path></svg>",
1986
- "rating-star-small-2": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M12 15.9472L8.58001 17.7572L9.23001 13.9272L6.45001 11.2072L10.29 10.6472L12 7.17725L13.71 10.6472L17.55 11.2072L14.77 13.9272L15.42 17.7572L12 15.9472Z\"></path></svg>",
1987
- "rating-star-small": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\"></path></g></svg>",
1988
- "rating-star": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\"></path></g></svg>",
1989
- "reorder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 5L12 0L7 5H11V9H13V5H17Z\"></path><path d=\"M13 19V15H11V19H7L12 24L17 19H13Z\"></path></svg>",
1990
- "restoredown-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 6C15 6.55 14.55 7 14 7H10C9.45 7 9 6.55 9 6V2C9 1.45 9.45 1 10 1C10.55 1 11 1.45 11 2V3.59L13.29 1.29C13.49 1.09 13.74 1 14 1C14.26 1 14.51 1.1 14.71 1.29C15.1 1.68 15.1 2.31 14.71 2.7L12.42 4.99H14.01C14.56 4.99 15.01 5.44 15.01 5.99L15 6ZM6 9H2C1.45 9 0.999998 9.45 0.999998 10C0.999998 10.55 1.45 11 2 11H3.59L1.29 13.29C0.899998 13.68 0.899998 14.31 1.29 14.7C1.68 15.09 2.31 15.09 2.7 14.7L4.99 12.41V14C4.99 14.55 5.44 15 5.99 15C6.54 15 6.99 14.55 6.99 14V10C6.99 9.45 6.54 9 5.99 9H6Z\"></path></svg>",
1991
- "search-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14 2C9.6 2 6 5.6 6 10C6 11.8 6.6 13.5 7.7 14.9L2.3 20.3C1.9 20.7 1.9 21.3 2.3 21.7C2.5 21.9 2.7 22 3 22C3.3 22 3.5 21.9 3.7 21.7L9.1 16.3C10.5 17.4 12.2 18 14 18C18.4 18 22 14.4 22 10C22 5.6 18.4 2 14 2ZM14 16C10.7 16 8 13.3 8 10C8 6.7 10.7 4 14 4C17.3 4 20 6.7 20 10C20 13.3 17.3 16 14 16Z\"></path></svg>",
1992
- "smiley-rate1-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 4.9938C4 4.44362 4.45 3.99348 5 3.99348H6.59L5.3 2.70306C4.91 2.31293 4.91 1.68272 5.3 1.2926C5.69 0.902468 6.32 0.902468 6.71 1.2926L9.71 4.29357C9.8 4.3836 9.88 4.49364 9.93 4.62368C10.03 4.86376 10.03 5.14385 9.93 5.38393C9.88 5.50397 9.81 5.614 9.71 5.71404L6.71 8.71501C6.51 8.91508 6.26 9.00511 6 9.00511C5.74 9.00511 5.49 8.90508 5.29 8.71501C4.9 8.32489 4.9 7.69468 5.29 7.30456L6.58 6.01413H4.99C4.44 6.01413 3.99 5.56399 3.99 5.01381L4 4.9938ZM14.08 5.37393C14.13 5.49397 14.2 5.604 14.3 5.70403L17.3 8.70501C17.5 8.90508 17.75 8.99511 18.01 8.99511C18.27 8.99511 18.52 8.89507 18.72 8.70501C19.11 8.31488 19.11 7.68468 18.72 7.29455L17.43 6.00413H19.02C19.57 6.00413 20.02 5.55399 20.02 5.00381C20.02 4.45363 19.57 4.00348 19.02 4.00348H17.43L18.72 2.71306C19.11 2.32293 19.11 1.69273 18.72 1.3026C18.33 0.912471 17.7 0.912471 17.31 1.3026L14.31 4.30358C14.22 4.39361 14.14 4.50364 14.09 4.63368C13.99 4.87376 13.99 5.15385 14.09 5.39393L14.08 5.37393ZM22 14.9971V20.999C22 22.6496 20.65 24 19 24H5C3.35 24 2 22.6496 2 20.999V14.9971C2 13.3465 3.35 11.9961 5 11.9961H19C20.65 11.9961 22 13.3465 22 14.9971ZM19 13.9967H16V16.9977H20V14.9971C20 14.4469 19.55 13.9967 19 13.9967ZM14 16.9977V13.9967H10V16.9977H14ZM10 18.9984V21.9993H14V18.9984H10ZM4 14.9971V16.9977H8V13.9967H5C4.45 13.9967 4 14.4469 4 14.9971ZM5 21.9993H8V18.9984H4V20.999C4 21.5492 4.45 21.9993 5 21.9993ZM20 20.999V18.9984H16V21.9993H19C19.55 21.9993 20 21.5492 20 20.999Z\"></path></svg>",
1993
- "smiley-rate10-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 23C6.85721 23 1.15412 19.9621 0.0134987 13.1669C-0.0765501 12.6272 0.293651 12.1076 0.833944 12.0177C1.38424 11.9277 1.89452 12.2975 1.98457 12.8371C2.92508 18.4732 7.69767 20.9914 12 20.9914C16.3023 20.9914 21.0749 18.4732 22.0154 12.8371C22.1055 12.2975 22.6158 11.9277 23.1661 12.0177C23.7063 12.1076 24.0765 12.6272 23.9865 13.1669C22.8559 19.9521 17.1428 23 11.99 23H12.01ZM21.165 6.15177C22.3056 5.01257 22.3056 3.16386 21.165 2.02465L21.0049 1.85477C19.9143 0.765533 18.1633 0.725561 17.0227 1.71487C15.8821 0.715568 14.1312 0.765533 13.0406 1.85477L12.8705 2.01466C11.7299 3.15386 11.7299 5.00257 12.8705 6.14178L17.0227 10.2889L21.175 6.14178L21.165 6.15177ZM15.742 3.27378L17.0127 4.54289L18.2834 3.27378C18.6436 2.91403 19.2239 2.91403 19.5841 3.27378L19.7442 3.43367C20.1044 3.79342 20.1044 4.37301 19.7442 4.73276L17.0127 7.46086L14.2812 4.73276C13.921 4.37301 13.921 3.79342 14.2812 3.43367L14.4413 3.27378C14.6214 3.09391 14.8515 3.00397 15.0917 3.00397C15.3318 3.00397 15.5619 3.09391 15.742 3.27378ZM11.1595 6.15177C12.3002 5.01257 12.3002 3.16386 11.1595 2.02465L10.9995 1.85477C9.90886 0.765533 8.15792 0.725561 7.0173 1.71487C5.87668 0.715568 4.12573 0.765533 3.03514 1.85477L2.86505 2.01466C1.72443 3.15386 1.72443 5.00257 2.86505 6.14178L7.0173 10.2889L11.1695 6.14178L11.1595 6.15177ZM5.7366 3.27378L7.00729 4.54289L8.27798 3.27378C8.63818 2.91403 9.21849 2.91403 9.57869 3.27378L9.73877 3.43367C10.099 3.79342 10.099 4.37301 9.73877 4.73276L7.00729 7.46086L4.27581 4.73276C3.91562 4.37301 3.91562 3.79342 4.27581 3.43367L4.4359 3.27378C4.61599 3.09391 4.84612 3.00397 5.08625 3.00397C5.32638 3.00397 5.5565 3.09391 5.7366 3.27378Z\"></path></svg>",
1994
- "smiley-rate2-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_15894_140103)\"><path d=\"M4.88291 4.51001C4.47291 4.51001 4.08291 4.25001 3.94291 3.84001C3.76291 3.32001 4.03291 2.75001 4.55291 2.57001L8.32291 1.25001C8.84291 1.06001 9.41291 1.34001 9.59291 1.86001C9.77291 2.38001 9.50291 2.95001 8.98291 3.13001L5.20291 4.45001C5.09291 4.49001 4.98291 4.51001 4.87291 4.51001H4.88291ZM19.8129 3.89001C20.0229 3.38001 19.7729 2.79001 19.2629 2.59001L15.5529 1.07001C15.0429 0.860007 14.4529 1.11001 14.2529 1.62001C14.0429 2.13001 14.2929 2.72001 14.8029 2.92001L18.5029 4.43001C18.6229 4.48001 18.7529 4.50001 18.8829 4.50001C19.2729 4.50001 19.6529 4.27001 19.8129 3.88001V3.89001ZM3.50291 6.00001C2.64291 6.37001 1.79291 6.88001 1.00291 7.48001C0.79291 7.64001 0.64291 7.87001 0.59291 8.14001C0.48291 8.73001 0.87291 9.29001 1.45291 9.40001C2.04291 9.51001 2.60291 9.12001 2.71291 8.54001C2.87291 7.69001 3.12291 6.83001 3.50291 5.99001V6.00001ZM21.0429 8.55001C21.6029 10.48 24.2429 8.84001 22.7529 7.48001C21.9629 6.88001 21.1129 6.37001 20.2529 6.00001C20.6329 6.84001 20.8829 7.70001 21.0429 8.55001ZM21.5729 13.2C21.2529 14.2 22.5429 15.09 23.3629 14.39C23.8529 14 23.9229 13.29 23.5429 12.81C21.7429 10.67 22.1329 10.55 21.5829 13.2H21.5729ZM1.75291 11C1.22291 11.79 -0.14709 12.64 0.0129102 13.75C0.15291 14.36 0.75291 14.74 1.35291 14.6C2.98291 14.1 1.80291 12.22 1.75291 11ZM19.8829 17C19.8829 13.14 16.2929 10 11.8829 10C7.47291 10 3.88291 13.14 3.88291 17C3.88291 20.86 7.47291 24 11.8829 24C16.2929 24 19.8829 20.86 19.8829 17ZM17.8829 17C17.8829 19.76 15.1929 22 11.8829 22C8.57291 22 5.88291 19.76 5.88291 17C5.88291 14.24 8.57291 12 11.8829 12C15.1929 12 17.8829 14.24 17.8829 17Z\"></path></g><defs><clipPath id=\"clip0_15894_140103\"><rect width=\"24\" height=\"24\" fill=\"white\"></rect></clipPath></defs></svg>",
1995
- "smiley-rate3-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.01915 7C6.46961 7 6.01998 6.55 6.01998 6V2C6.01998 1.45 6.46961 1 7.01915 1C7.56869 1 8.01832 1.45 8.01832 2V6C8.01832 6.55 7.56869 7 7.01915 7ZM18.01 6V2C18.01 1.45 17.5604 1 17.0108 1C16.4613 1 16.0117 1.45 16.0117 2V6C16.0117 6.55 16.4613 7 17.0108 7C17.5604 7 18.01 6.55 18.01 6ZM16.4213 21.58L18.01 19.99L19.2989 21.28C19.6886 21.67 20.3181 21.67 20.7077 21.28C21.0974 20.89 21.0974 20.26 20.7077 19.87L19.4188 18.58C18.6395 17.8 17.3705 17.8 16.5912 18.58L15.0025 20.17L13.4138 18.58C12.6345 17.8 11.3655 17.8 10.5862 18.58L8.9975 20.17L7.40883 18.58C6.62948 17.8 5.36053 17.8 4.58118 18.58L3.29226 19.87C2.90258 20.26 2.90258 20.89 3.29226 21.28C3.68193 21.67 4.31141 21.67 4.70108 21.28L5.99001 19.99L7.57868 21.58C8.35803 22.36 9.62698 22.36 10.4063 21.58L11.995 19.99L13.5837 21.58C13.9734 21.97 14.4829 22.16 14.9925 22.16C15.5021 22.16 16.0117 21.97 16.4013 21.58H16.4213Z\"></path></svg>",
1996
- "smiley-rate4-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.06927 7C6.51927 7 6.06927 6.55 6.06927 6V2C6.06927 1.45 6.51927 1 7.06927 1C7.61927 1 8.06927 1.45 8.06927 2V6C8.06927 6.55 7.61927 7 7.06927 7ZM18.0693 6V2C18.0693 1.45 17.6193 1 17.0693 1C16.5193 1 16.0693 1.45 16.0693 2V6C16.0693 6.55 16.5193 7 17.0693 7C17.6193 7 18.0693 6.55 18.0693 6ZM22.5693 21.9C23.0693 21.66 23.2793 21.07 23.0393 20.57C21.1093 16.52 16.9093 14 12.0693 14C7.22927 14 3.02927 16.52 1.09927 20.57C0.859273 21.07 1.06927 21.67 1.56927 21.9C2.06927 22.14 2.65927 21.93 2.89927 21.43C4.49927 18.08 8.00927 16 12.0593 16C16.1093 16 19.6293 18.08 21.2193 21.43C21.3893 21.79 21.7493 22 22.1193 22C22.2593 22 22.4093 21.97 22.5493 21.9H22.5693Z\"></path></svg>",
1997
- "smiley-rate5-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.00572 7C6.45572 7 6.00572 6.55 6.00572 6V2C6.00572 1.45 6.45572 1 7.00572 1C7.55572 1 8.00572 1.45 8.00572 2V6C8.00572 6.55 7.55572 7 7.00572 7ZM18.0057 6V2C18.0057 1.45 17.5557 1 17.0057 1C16.4557 1 16.0057 1.45 16.0057 2V6C16.0057 6.55 16.4557 7 17.0057 7C17.5557 7 18.0057 6.55 18.0057 6ZM19.9457 21.33C20.1257 20.81 19.8557 20.24 19.3357 20.05C14.5457 18.35 9.45572 18.35 4.66572 20.05C4.14572 20.23 3.87572 20.81 4.05572 21.33C4.23572 21.85 4.80572 22.12 5.33572 21.94C9.69572 20.4 14.3057 20.4 18.6657 21.94C18.7757 21.98 18.8857 22 18.9957 22C19.4057 22 19.7957 21.74 19.9357 21.33H19.9457Z\"></path></svg>",
1998
- "smiley-rate6-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 7C6.45 7 6 6.55 6 6V2C6 1.45 6.45 1 7 1C7.55 1 8 1.45 8 2V6C8 6.55 7.55 7 7 7ZM18 6V2C18 1.45 17.55 1 17 1C16.45 1 16 1.45 16 2V6C16 6.55 16.45 7 17 7C17.55 7 18 6.55 18 6ZM21 21C21 20.45 20.55 20 20 20H4C3.45 20 3 20.45 3 21C3 21.55 3.45 22 4 22H20C20.55 22 21 21.55 21 21Z\"></path></svg>",
1999
- "smiley-rate7-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.0022 23.99C11.452 23.99 11.0018 23.5402 11.0018 22.9904C11.0018 22.4407 11.452 21.9909 12.0022 21.9909C16.3137 21.9909 21.0755 19.472 22.0158 13.8344C22.1058 13.2947 22.616 12.9248 23.1662 13.0148C23.7064 13.1047 24.0765 13.6245 23.9865 14.1643C22.8561 20.9513 17.144 24 11.9922 24L12.0022 23.99ZM8.00072 5.99783V1.99957C8.00072 1.4498 7.55056 1 7.00036 1C6.45016 1 6 1.4498 6 1.99957V5.99783C6 6.54759 6.45016 6.99739 7.00036 6.99739C7.55056 6.99739 8.00072 6.54759 8.00072 5.99783ZM18.0043 5.99783V1.99957C18.0043 1.4498 17.5542 1 17.004 1C16.4538 1 16.0036 1.4498 16.0036 1.99957V5.99783C16.0036 6.54759 16.4538 6.99739 17.004 6.99739C17.5542 6.99739 18.0043 6.54759 18.0043 5.99783Z\"></path></svg>",
2000
- "smiley-rate8-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85721 24 1.15412 20.96 0.0134987 14.16C-0.0765501 13.62 0.293651 13.1 0.833944 13.01C1.38424 12.92 1.89452 13.29 1.98457 13.83C2.92508 19.47 7.69767 21.99 12 21.99C16.3023 21.99 21.0749 19.47 22.0154 13.83C22.1055 13.29 22.6158 12.92 23.1661 13.01C23.7063 13.1 24.0765 13.62 23.9865 14.16C22.8559 20.95 17.1428 24 11.99 24H12.01ZM8.00783 6V2C8.00783 1.45 7.55759 1 7.00729 1C6.45699 1 6.00675 1.45 6.00675 2V6C6.00675 6.55 6.45699 7 7.00729 7C7.55759 7 8.00783 6.55 8.00783 6ZM18.0133 6V2C18.0133 1.45 17.563 1 17.0127 1C16.4624 1 16.0122 1.45 16.0122 2V6C16.0122 6.55 16.4624 7 17.0127 7C17.563 7 18.0133 6.55 18.0133 6Z\"></path></svg>",
2001
- "smiley-rate9-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85767 24 1.15509 20.96 0.0145752 14.16C-0.0354475 13.87 0.0445888 13.57 0.234675 13.35C0.424761 13.13 0.704888 13 0.995019 13H23.005C23.2951 13 23.5752 13.13 23.7653 13.35C23.9554 13.57 24.0354 13.87 23.9854 14.16C22.8549 20.95 17.1423 24 11.99 24H12.01ZM2.25559 15C3.61621 19.82 8.0182 22 12.01 22C16.0018 22 20.4038 19.82 21.7644 15H2.25559ZM8.00819 6V2C8.00819 1.45 7.55799 1 7.00774 1C6.45749 1 6.00729 1.45 6.00729 2V6C6.00729 6.55 6.45749 7 7.00774 7C7.55799 7 8.00819 6.55 8.00819 6ZM18.0127 6V2C18.0127 1.45 17.5625 1 17.0123 1C16.462 1 16.0118 1.45 16.0118 2V6C16.0118 6.55 16.462 7 17.0123 7C17.5625 7 18.0127 6.55 18.0127 6Z\"></path></svg>"
2002
- };
2003
-
2004
- /*!
2005
- * surveyjs - Survey JavaScript library v2.3.6
2006
- * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
2007
- * License: MIT (http://www.opensource.org/licenses/mit-license.php)
2008
- */
2009
-
2010
- var iconsV2 = {
2011
- "modernbooleancheckchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><polygon points=\"19,10 14,10 14,5 10,5 10,10 5,10 5,14 10,14 10,19 14,19 14,14 19,14 \"></polygon></svg>",
2012
- "modernbooleancheckind": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M22,0H2C0.9,0,0,0.9,0,2v20c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V2C24,0.9,23.1,0,22,0z M21,18L6,3h15V18z M3,6l15,15H3V6z\"></path></svg>",
2013
- "modernbooleancheckunchecked": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><rect x=\"5\" y=\"10\" width=\"14\" height=\"4\"></rect></svg>",
2014
- "moderncheck": "<svg viewBox=\"0 0 24 24\"><path d=\"M5,13l2-2l3,3l7-7l2,2l-9,9L5,13z\"></path></svg>",
2015
- "modernradio": "<svg viewBox=\"-12 -12 24 24\"><circle r=\"6\" cx=\"0\" cy=\"0\"></circle></svg>",
2016
- "progressbutton": "<svg viewBox=\"0 0 10 10\"><polygon points=\"2,2 0,4 5,9 10,4 8,2 5,5 \"></polygon></svg>",
2017
- "removefile": "<svg viewBox=\"0 0 16 16\"><path d=\"M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z M11,10l-1,1L8,9l-2,2l-1-1l2-2L5,6l1-1l2,2l2-2l1,1L9,8 L11,10z\"></path></svg>",
2018
- "timercircle": "<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 160 160\"><circle cx=\"80\" cy=\"80\" r=\"70\" style=\"stroke: var(--sd-timer-stroke-background-color); stroke-width: var(--sd-timer-stroke-background-width)\" stroke-dasharray=\"none\" stroke-dashoffset=\"none\"></circle><circle cx=\"80\" cy=\"80\" r=\"70\"></circle></svg>",
2019
- "add-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.75 12C15.75 12.41 15.41 12.75 15 12.75H12.75V15C12.75 15.41 12.41 15.75 12 15.75C11.59 15.75 11.25 15.41 11.25 15V12.75H9C8.59 12.75 8.25 12.41 8.25 12C8.25 11.59 8.59 11.25 9 11.25H11.25V9C11.25 8.59 11.59 8.25 12 8.25C12.41 8.25 12.75 8.59 12.75 9V11.25H15C15.41 11.25 15.75 11.59 15.75 12ZM21.75 12C21.75 17.38 17.38 21.75 12 21.75C6.62 21.75 2.25 17.38 2.25 12C2.25 6.62 6.62 2.25 12 2.25C17.38 2.25 21.75 6.62 21.75 12ZM20.25 12C20.25 7.45 16.55 3.75 12 3.75C7.45 3.75 3.75 7.45 3.75 12C3.75 16.55 7.45 20.25 12 20.25C16.55 20.25 20.25 16.55 20.25 12Z\"></path></svg>",
2020
- "arrowleft-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.7475 7.9975C14.7475 8.4075 14.4075 8.7475 13.9975 8.7475H3.8075L7.5275 12.4675C7.8175 12.7575 7.8175 13.2375 7.5275 13.5275C7.3775 13.6775 7.1875 13.7475 6.9975 13.7475C6.8075 13.7475 6.6175 13.6775 6.4675 13.5275L1.4675 8.5275C1.1775 8.2375 1.1775 7.7575 1.4675 7.4675L6.4675 2.4675C6.7575 2.1775 7.2375 2.1775 7.5275 2.4675C7.8175 2.7575 7.8175 3.2375 7.5275 3.5275L3.8075 7.2475H13.9975C14.4075 7.2475 14.7475 7.5875 14.7475 7.9975Z\"></path></svg>",
2021
- "arrowright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.53 8.5275L9.53 13.5275C9.38 13.6775 9.19 13.7475 9 13.7475C8.81 13.7475 8.62 13.6775 8.47 13.5275C8.18 13.2375 8.18 12.7575 8.47 12.4675L12.19 8.7475H2C1.59 8.7475 1.25 8.4075 1.25 7.9975C1.25 7.5875 1.59 7.2475 2 7.2475H12.19L8.47 3.5275C8.18 3.2375 8.18 2.7575 8.47 2.4675C8.76 2.1775 9.24 2.1775 9.53 2.4675L14.53 7.4675C14.82 7.7575 14.82 8.2375 14.53 8.5275Z\"></path></svg>",
2022
- "camera-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.19 4.25H17.12C16.72 4.25 16.35 4.03 16.17 3.67C15.73 2.8 14.86 2.25 13.88 2.25H10.12C9.14 2.25 8.27 2.79 7.83 3.67C7.65 4.03 7.29 4.25 6.88 4.25H4.81C3.4 4.25 2.25 5.4 2.25 6.81V18.19C2.25 19.6 3.4 20.75 4.81 20.75H19.19C20.6 20.75 21.75 19.6 21.75 18.19V6.81C21.75 5.4 20.6 4.25 19.19 4.25ZM20.25 18.19C20.25 18.77 19.78 19.25 19.19 19.25H4.81C4.23 19.25 3.75 18.78 3.75 18.19V6.81C3.75 6.23 4.22 5.75 4.81 5.75H6.88C7.86 5.75 8.73 5.21 9.17 4.33C9.35 3.97 9.71 3.75 10.12 3.75H13.88C14.28 3.75 14.65 3.97 14.83 4.33C15.27 5.2 16.14 5.75 17.12 5.75H19.19C19.77 5.75 20.25 6.22 20.25 6.81V18.19ZM12 6.25C8.83 6.25 6.25 8.83 6.25 12C6.25 15.17 8.83 17.75 12 17.75C15.17 17.75 17.75 15.17 17.75 12C17.75 8.83 15.17 6.25 12 6.25ZM12 16.25C9.66 16.25 7.75 14.34 7.75 12C7.75 9.66 9.66 7.75 12 7.75C14.34 7.75 16.25 9.66 16.25 12C16.25 14.34 14.34 16.25 12 16.25ZM14.75 12C14.75 13.52 13.52 14.75 12 14.75C11.59 14.75 11.25 14.41 11.25 14C11.25 13.59 11.59 13.25 12 13.25C12.69 13.25 13.25 12.69 13.25 12C13.25 11.59 13.59 11.25 14 11.25C14.41 11.25 14.75 11.59 14.75 12Z\"></path></svg>",
2023
- "camera-32x32": "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25 7.25H22.19C21.73 7.25 21.31 7 21.09 6.59L20.89 6.22C20.23 5.01 18.97 4.25 17.59 4.25H14.41C13.03 4.25 11.77 5 11.11 6.22L10.91 6.6C10.69 7 10.27 7.26 9.81 7.26H7C4.93 7.26 3.25 8.94 3.25 11.01V24.01C3.25 26.08 4.93 27.76 7 27.76H25C27.07 27.76 28.75 26.08 28.75 24.01V11C28.75 8.93 27.07 7.25 25 7.25ZM27.25 24C27.25 25.24 26.24 26.25 25 26.25H7C5.76 26.25 4.75 25.24 4.75 24V11C4.75 9.76 5.76 8.75 7 8.75H9.81C10.82 8.75 11.75 8.2 12.23 7.31L12.43 6.94C12.82 6.21 13.58 5.76 14.41 5.76H17.59C18.42 5.76 19.18 6.21 19.57 6.94L19.77 7.31C20.25 8.2 21.18 8.76 22.19 8.76H25C26.24 8.76 27.25 9.77 27.25 11.01V24.01V24ZM16 10.25C12.28 10.25 9.25 13.28 9.25 17C9.25 20.72 12.28 23.75 16 23.75C19.72 23.75 22.75 20.72 22.75 17C22.75 13.28 19.72 10.25 16 10.25ZM16 22.25C13.11 22.25 10.75 19.89 10.75 17C10.75 14.11 13.11 11.75 16 11.75C18.89 11.75 21.25 14.11 21.25 17C21.25 19.89 18.89 22.25 16 22.25ZM19.75 17C19.75 19.07 18.07 20.75 16 20.75C15.59 20.75 15.25 20.41 15.25 20C15.25 19.59 15.59 19.25 16 19.25C17.24 19.25 18.25 18.24 18.25 17C18.25 16.59 18.59 16.25 19 16.25C19.41 16.25 19.75 16.59 19.75 17Z\"></path></svg>",
2024
- "cancel-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.8099 11.75L15.2799 9.28C15.5699 8.99 15.5699 8.51 15.2799 8.22C14.9899 7.93 14.5099 7.93 14.2199 8.22L11.7499 10.69L9.27994 8.22C8.98994 7.93 8.50994 7.93 8.21994 8.22C7.92994 8.51 7.92994 8.99 8.21994 9.28L10.6899 11.75L8.21994 14.22C7.92994 14.51 7.92994 14.99 8.21994 15.28C8.36994 15.43 8.55994 15.5 8.74994 15.5C8.93994 15.5 9.12994 15.43 9.27994 15.28L11.7499 12.81L14.2199 15.28C14.3699 15.43 14.5599 15.5 14.7499 15.5C14.9399 15.5 15.1299 15.43 15.2799 15.28C15.5699 14.99 15.5699 14.51 15.2799 14.22L12.8099 11.75Z\"></path></svg>",
2025
- "check-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.0275 5.0275L6.5275 12.5275C6.3775 12.6775 6.1875 12.7475 5.9975 12.7475C5.8075 12.7475 5.6175 12.6775 5.4675 12.5275L2.4675 9.5275C2.1775 9.2375 2.1775 8.7575 2.4675 8.4675C2.7575 8.1775 3.2375 8.1775 3.5275 8.4675L5.9975 10.9375L12.9675 3.9675C13.2575 3.6775 13.7375 3.6775 14.0275 3.9675C14.3175 4.2575 14.3175 4.7375 14.0275 5.0275Z\"></path></svg>",
2026
- "check-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.5275 7.5275L9.5275 17.5275C9.3775 17.6775 9.1875 17.7475 8.9975 17.7475C8.8075 17.7475 8.6175 17.6775 8.4675 17.5275L4.4675 13.5275C4.1775 13.2375 4.1775 12.7575 4.4675 12.4675C4.7575 12.1775 5.2375 12.1775 5.5275 12.4675L8.9975 15.9375L18.4675 6.4675C18.7575 6.1775 19.2375 6.1775 19.5275 6.4675C19.8175 6.7575 19.8175 7.2375 19.5275 7.5275Z\"></path></svg>",
2027
- "chevrondown-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.5275 10.5275L12.5275 14.5275C12.3775 14.6775 12.1875 14.7475 11.9975 14.7475C11.8075 14.7475 11.6175 14.6775 11.4675 14.5275L7.4675 10.5275C7.1775 10.2375 7.1775 9.7575 7.4675 9.4675C7.7575 9.1775 8.2375 9.1775 8.5275 9.4675L11.9975 12.9375L15.4675 9.4675C15.7575 9.1775 16.2375 9.1775 16.5275 9.4675C16.8175 9.7575 16.8175 10.2375 16.5275 10.5275Z\"></path></svg>",
2028
- "chevronright-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.35 8.34627L7.35 12.3463C7.25 12.4463 7.12 12.4963 7 12.4963C6.88 12.4963 6.74 12.4463 6.65 12.3463C6.45 12.1463 6.45 11.8363 6.65 11.6363L10.3 7.98627L6.65 4.34627C6.45 4.15627 6.45 3.83627 6.65 3.64627C6.85 3.45627 7.16 3.44627 7.35 3.64627L11.35 7.64627C11.55 7.84627 11.55 8.15627 11.35 8.35627V8.34627Z\"></path></svg>",
2029
- "clear-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.35 11.65C12.55 11.85 12.55 12.16 12.35 12.36C12.25 12.46 12.12 12.51 12 12.51C11.88 12.51 11.74 12.46 11.65 12.36L8 8.71L4.35 12.36C4.25 12.46 4.12 12.51 4 12.51C3.88 12.51 3.74 12.46 3.65 12.36C3.45 12.16 3.45 11.85 3.65 11.65L7.3 8L3.65 4.35C3.45 4.16 3.45 3.84 3.65 3.65C3.85 3.46 4.16 3.45 4.35 3.65L8 7.3L11.65 3.65C11.85 3.45 12.16 3.45 12.36 3.65C12.56 3.85 12.56 4.16 12.36 4.36L8.71 8.01L12.36 11.66L12.35 11.65Z\"></path></svg>",
2030
- "clear-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.12 10.9325C20.64 10.4125 20.93 9.7225 20.93 8.9925C20.93 8.2625 20.64 7.5725 20.12 7.0525L16.95 3.8825C15.88 2.8125 14.13 2.8125 13.06 3.8825L3.88 13.0525C3.36 13.5725 3.07 14.2625 3.07 14.9925C3.07 15.7225 3.36 16.4125 3.88 16.9325L5.64 18.6925C6.57 19.6225 7.78 20.0825 9 20.0825C10.22 20.0825 11.43 19.6225 12.36 18.6925L20.12 10.9325ZM14.12 4.9325C14.36 4.6925 14.67 4.5625 15 4.5625C15.33 4.5625 15.65 4.6925 15.88 4.9325L19.05 8.1025C19.54 8.5925 19.54 9.3825 19.05 9.8725L12.99 15.9325L8.05 10.9925L14.12 4.9325ZM6.7 17.6325L4.94 15.8725C4.45 15.3825 4.45 14.5925 4.94 14.1025L7 12.0425L11.94 16.9825L11.3 17.6225C10.07 18.8525 7.93 18.8525 6.7 17.6225V17.6325ZM22.75 20.9925C22.75 21.4025 22.41 21.7425 22 21.7425H14C13.59 21.7425 13.25 21.4025 13.25 20.9925C13.25 20.5825 13.59 20.2425 14 20.2425H22C22.41 20.2425 22.75 20.5825 22.75 20.9925ZM4.75 20.9925C4.75 21.4025 4.41 21.7425 4 21.7425H2C1.59 21.7425 1.25 21.4025 1.25 20.9925C1.25 20.5825 1.59 20.2425 2 20.2425H4C4.41 20.2425 4.75 20.5825 4.75 20.9925Z\"></path></svg>",
2031
- "close-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.5275 12.4675C13.8175 12.7575 13.8175 13.2375 13.5275 13.5275C13.3775 13.6775 13.1875 13.7475 12.9975 13.7475C12.8075 13.7475 12.6175 13.6775 12.4675 13.5275L7.9975 9.0575L3.5275 13.5275C3.3775 13.6775 3.1875 13.7475 2.9975 13.7475C2.8075 13.7475 2.6175 13.6775 2.4675 13.5275C2.1775 13.2375 2.1775 12.7575 2.4675 12.4675L6.9375 7.9975L2.4675 3.5275C2.1775 3.2375 2.1775 2.7575 2.4675 2.4675C2.7575 2.1775 3.2375 2.1775 3.5275 2.4675L7.9975 6.9375L12.4675 2.4675C12.7575 2.1775 13.2375 2.1775 13.5275 2.4675C13.8175 2.7575 13.8175 3.2375 13.5275 3.5275L9.0575 7.9975L13.5275 12.4675Z\"></path></svg>",
2032
- "close-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.5275 18.4675C19.8175 18.7575 19.8175 19.2375 19.5275 19.5275C19.3775 19.6775 19.1875 19.7475 18.9975 19.7475C18.8075 19.7475 18.6175 19.6775 18.4675 19.5275L11.9975 13.0575L5.5275 19.5275C5.3775 19.6775 5.1875 19.7475 4.9975 19.7475C4.8075 19.7475 4.6175 19.6775 4.4675 19.5275C4.1775 19.2375 4.1775 18.7575 4.4675 18.4675L10.9375 11.9975L4.4675 5.5275C4.1775 5.2375 4.1775 4.7575 4.4675 4.4675C4.7575 4.1775 5.2375 4.1775 5.5275 4.4675L11.9975 10.9375L18.4675 4.4675C18.7575 4.1775 19.2375 4.1775 19.5275 4.4675C19.8175 4.7575 19.8175 5.2375 19.5275 5.5275L13.0575 11.9975L19.5275 18.4675Z\"></path></svg>",
2033
- "collapse-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
2034
- "collapsedetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
2035
- "delete-16x16": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path d=\"M13 3.25H10.75V3C10.75 2.04 9.96 1.25 9 1.25H7C6.04 1.25 5.25 2.04 5.25 3V3.25H3C2.59 3.25 2.25 3.59 2.25 4C2.25 4.41 2.59 4.75 3 4.75H3.25V13C3.25 13.96 4.04 14.75 5 14.75H11C11.96 14.75 12.75 13.96 12.75 13V4.75H13C13.41 4.75 13.75 4.41 13.75 4C13.75 3.59 13.41 3.25 13 3.25ZM6.75 3C6.75 2.86 6.86 2.75 7 2.75H9C9.14 2.75 9.25 2.86 9.25 3V3.25H6.75V3ZM11.25 13C11.25 13.14 11.14 13.25 11 13.25H5C4.86 13.25 4.75 13.14 4.75 13V4.75H11.25V13ZM9.25 6.25C9.66 6.25 10 6.59 10 7V11C10 11.41 9.66 11.75 9.25 11.75C8.84 11.75 8.5 11.41 8.5 11V7C8.5 6.59 8.84 6.25 9.25 6.25ZM7.5 7V11C7.5 11.41 7.16 11.75 6.75 11.75C6.34 11.75 6 11.41 6 11V7C6 6.59 6.34 6.25 6.75 6.25C7.16 6.25 7.5 6.59 7.5 7Z\"></path></svg>",
2036
- "delete-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.75 9V17C12.75 17.41 12.41 17.75 12 17.75C11.59 17.75 11.25 17.41 11.25 17V9C11.25 8.59 11.59 8.25 12 8.25C12.41 8.25 12.75 8.59 12.75 9ZM14.25 9V17C14.25 17.41 14.59 17.75 15 17.75C15.41 17.75 15.75 17.41 15.75 17V9C15.75 8.59 15.41 8.25 15 8.25C14.59 8.25 14.25 8.59 14.25 9ZM9 8.25C8.59 8.25 8.25 8.59 8.25 9V17C8.25 17.41 8.59 17.75 9 17.75C9.41 17.75 9.75 17.41 9.75 17V9C9.75 8.59 9.41 8.25 9 8.25ZM20.75 6C20.75 6.41 20.41 6.75 20 6.75H18.75V18C18.75 19.52 17.52 20.75 16 20.75H8C6.48 20.75 5.25 19.52 5.25 18V6.75H4C3.59 6.75 3.25 6.41 3.25 6C3.25 5.59 3.59 5.25 4 5.25H8.25V4C8.25 3.04 9.04 2.25 10 2.25H14C14.96 2.25 15.75 3.04 15.75 4V5.25H20C20.41 5.25 20.75 5.59 20.75 6ZM9.75 5.25H14.25V4C14.25 3.86 14.14 3.75 14 3.75H10C9.86 3.75 9.75 3.86 9.75 4V5.25ZM17.25 6.75H6.75V18C6.75 18.69 7.31 19.25 8 19.25H16C16.69 19.25 17.25 18.69 17.25 18V6.75Z\"></path></svg>",
2037
- "drag-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.5 8.75C15.19 8.75 15.75 8.19 15.75 7.5C15.75 6.81 15.19 6.25 14.5 6.25C13.81 6.25 13.25 6.81 13.25 7.5C13.25 8.19 13.81 8.75 14.5 8.75ZM14.5 7.25C14.64 7.25 14.75 7.36 14.75 7.5C14.75 7.78 14.25 7.78 14.25 7.5C14.25 7.36 14.36 7.25 14.5 7.25ZM9.5 6.25C8.81 6.25 8.25 6.81 8.25 7.5C8.25 8.19 8.81 8.75 9.5 8.75C10.19 8.75 10.75 8.19 10.75 7.5C10.75 6.81 10.19 6.25 9.5 6.25ZM9.25 7.5C9.25 7.36 9.36 7.25 9.5 7.25C9.64 7.25 9.75 7.36 9.75 7.5C9.75 7.78 9.25 7.78 9.25 7.5ZM14.5 11.25C13.81 11.25 13.25 11.81 13.25 12.5C13.25 13.19 13.81 13.75 14.5 13.75C15.19 13.75 15.75 13.19 15.75 12.5C15.75 11.81 15.19 11.25 14.5 11.25ZM14.25 12.5C14.25 12.36 14.36 12.25 14.5 12.25C14.64 12.25 14.75 12.36 14.75 12.5C14.75 12.78 14.25 12.78 14.25 12.5ZM9.5 11.25C8.81 11.25 8.25 11.81 8.25 12.5C8.25 13.19 8.81 13.75 9.5 13.75C10.19 13.75 10.75 13.19 10.75 12.5C10.75 11.81 10.19 11.25 9.5 11.25ZM9.25 12.5C9.25 12.36 9.36 12.25 9.5 12.25C9.64 12.25 9.75 12.36 9.75 12.5C9.75 12.78 9.25 12.78 9.25 12.5ZM14.5 16.25C13.81 16.25 13.25 16.81 13.25 17.5C13.25 18.19 13.81 18.75 14.5 18.75C15.19 18.75 15.75 18.19 15.75 17.5C15.75 16.81 15.19 16.25 14.5 16.25ZM14.25 17.5C14.25 17.36 14.36 17.25 14.5 17.25C14.64 17.25 14.75 17.36 14.75 17.5C14.75 17.78 14.25 17.78 14.25 17.5ZM9.5 16.25C8.81 16.25 8.25 16.81 8.25 17.5C8.25 18.19 8.81 18.75 9.5 18.75C10.19 18.75 10.75 18.19 10.75 17.5C10.75 16.81 10.19 16.25 9.5 16.25ZM9.25 17.5C9.25 17.36 9.36 17.25 9.5 17.25C9.64 17.25 9.75 17.36 9.75 17.5C9.75 17.78 9.25 17.78 9.25 17.5Z\"></path></svg>",
2038
- "draghorizontal-24x16": "<svg viewBox=\"0 0 24 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.5 9.25C16.81 9.25 16.25 9.81 16.25 10.5C16.25 11.19 16.81 11.75 17.5 11.75C18.19 11.75 18.75 11.19 18.75 10.5C18.75 9.81 18.19 9.25 17.5 9.25ZM17.25 10.5C17.25 10.36 17.36 10.25 17.5 10.25C17.64 10.25 17.75 10.36 17.75 10.5C17.75 10.78 17.25 10.78 17.25 10.5ZM17.5 6.75C18.19 6.75 18.75 6.19 18.75 5.5C18.75 4.81 18.19 4.25 17.5 4.25C16.81 4.25 16.25 4.81 16.25 5.5C16.25 6.19 16.81 6.75 17.5 6.75ZM17.5 5.25C17.64 5.25 17.75 5.36 17.75 5.5C17.75 5.78 17.25 5.78 17.25 5.5C17.25 5.36 17.36 5.25 17.5 5.25ZM12.5 9.25C11.81 9.25 11.25 9.81 11.25 10.5C11.25 11.19 11.81 11.75 12.5 11.75C13.19 11.75 13.75 11.19 13.75 10.5C13.75 9.81 13.19 9.25 12.5 9.25ZM12.25 10.5C12.25 10.36 12.36 10.25 12.5 10.25C12.64 10.25 12.75 10.36 12.75 10.5C12.75 10.78 12.25 10.78 12.25 10.5ZM12.5 4.25C11.81 4.25 11.25 4.81 11.25 5.5C11.25 6.19 11.81 6.75 12.5 6.75C13.19 6.75 13.75 6.19 13.75 5.5C13.75 4.81 13.19 4.25 12.5 4.25ZM12.25 5.5C12.25 5.36 12.36 5.25 12.5 5.25C12.64 5.25 12.75 5.36 12.75 5.5C12.75 5.78 12.25 5.78 12.25 5.5ZM7.5 9.25C6.81 9.25 6.25 9.81 6.25 10.5C6.25 11.19 6.81 11.75 7.5 11.75C8.19 11.75 8.75 11.19 8.75 10.5C8.75 9.81 8.19 9.25 7.5 9.25ZM7.25 10.5C7.25 10.36 7.36 10.25 7.5 10.25C7.64 10.25 7.75 10.36 7.75 10.5C7.75 10.78 7.25 10.78 7.25 10.5ZM7.5 4.25C6.81 4.25 6.25 4.81 6.25 5.5C6.25 6.19 6.81 6.75 7.5 6.75C8.19 6.75 8.75 6.19 8.75 5.5C8.75 4.81 8.19 4.25 7.5 4.25ZM7.25 5.5C7.25 5.36 7.36 5.25 7.5 5.25C7.64 5.25 7.75 5.36 7.75 5.5C7.75 5.78 7.25 5.78 7.25 5.5Z\"></path></svg>",
2039
- "editsmall-16x16": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path d=\"M13.1209 3.05249L12.9509 2.88249C11.8809 1.81249 10.1309 1.81249 9.06089 2.88249L3.47089 8.46249C3.37089 8.56249 3.31089 8.68249 3.27089 8.81249L2.27089 12.8125C2.21089 13.0625 2.28089 13.3425 2.47089 13.5225C2.61089 13.6625 2.80089 13.7425 3.00089 13.7425C3.06089 13.7425 3.12089 13.7425 3.18089 13.7225L7.18089 12.7225C7.31089 12.6925 7.43089 12.6225 7.53089 12.5225L13.1209 6.93249C14.1909 5.86249 14.1909 4.11249 13.1209 3.04249V3.05249ZM6.62089 11.3125L4.04089 11.9625L4.69089 9.38249L8.01089 6.06249L9.95089 8.00249L6.63089 11.3225L6.62089 11.3125ZM12.0609 5.87249L11.0009 6.93249L9.06089 4.99249L10.1209 3.93249C10.6109 3.44249 11.4009 3.44249 11.8909 3.93249L12.0609 4.10249C12.5509 4.59249 12.5509 5.38249 12.0609 5.87249Z\"></path></svg>",
2040
- "expand-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H8.75V11C8.75 11.41 8.41 11.75 8 11.75C7.59 11.75 7.25 11.41 7.25 11V8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H7.25V5C7.25 4.59 7.59 4.25 8 4.25C8.41 4.25 8.75 4.59 8.75 5V7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
2041
- "expanddetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H8.75V11C8.75 11.41 8.41 11.75 8 11.75C7.59 11.75 7.25 11.41 7.25 11V8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H7.25V5C7.25 4.59 7.59 4.25 8 4.25C8.41 4.25 8.75 4.59 8.75 5V7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
2042
- "file-72x72": "<svg viewBox=\"0 0 72 72\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.83 12.83L53.17 3.17C52.7982 2.79866 52.357 2.50421 51.8714 2.30346C51.3858 2.1027 50.8654 1.99959 50.34 2H14C12.4087 2 10.8826 2.63214 9.75735 3.75736C8.63214 4.88258 8 6.4087 8 8V64C8 65.5913 8.63214 67.1174 9.75735 68.2426C10.8826 69.3679 12.4087 70 14 70H58C59.5913 70 61.1174 69.3679 62.2426 68.2426C63.3679 67.1174 64 65.5913 64 64V15.66C64.0004 15.1346 63.8973 14.6142 63.6965 14.1286C63.4958 13.643 63.2013 13.2018 62.83 12.83ZM52 4.83L61.17 14H56C54.9391 14 53.9217 13.5786 53.1716 12.8284C52.4214 12.0783 52 11.0609 52 10V4.83ZM62 64C62 65.0609 61.5786 66.0783 60.8284 66.8284C60.0783 67.5786 59.0609 68 58 68H14C12.9391 68 11.9217 67.5786 11.1716 66.8284C10.4214 66.0783 10 65.0609 10 64V8C10 6.93914 10.4214 5.92172 11.1716 5.17157C11.9217 4.42143 12.9391 4 14 4H50V10C50 11.5913 50.6321 13.1174 51.7574 14.2426C52.8826 15.3679 54.4087 16 56 16H62V64ZM22 26H50V28H22V26ZM22 32H50V34H22V32ZM22 38H50V40H22V38ZM22 44H50V46H22V44Z\"></path></svg>",
2043
- "flip-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.53 17.4775C14.82 17.7675 14.82 18.2475 14.53 18.5375L11.53 21.5375C11.38 21.6875 11.19 21.7575 11 21.7575C10.81 21.7575 10.62 21.6875 10.47 21.5375C10.18 21.2475 10.18 20.7675 10.47 20.4775L12.2 18.7475C12.13 18.7475 12.07 18.7475 12 18.7475C6.62 18.7475 2.25 15.7475 2.25 12.0575C2.25 10.2975 3.22 8.6375 4.99 7.3875C5.33 7.1475 5.8 7.2275 6.03 7.5675C6.27 7.9075 6.19 8.3775 5.85 8.6075C4.49 9.5675 3.74 10.7875 3.74 12.0575C3.74 14.9175 7.44 17.2475 11.99 17.2475C12.05 17.2475 12.11 17.2475 12.17 17.2475L10.46 15.5375C10.17 15.2475 10.17 14.7675 10.46 14.4775C10.75 14.1875 11.23 14.1875 11.52 14.4775L14.52 17.4775H14.53ZM12 5.2575C11.93 5.2575 11.87 5.2575 11.8 5.2575L13.53 3.5275C13.82 3.2375 13.82 2.7575 13.53 2.4675C13.24 2.1775 12.76 2.1775 12.47 2.4675L9.47 5.4675C9.18 5.7575 9.18 6.2375 9.47 6.5275L12.47 9.5275C12.62 9.6775 12.81 9.7475 13 9.7475C13.19 9.7475 13.38 9.6775 13.53 9.5275C13.82 9.2375 13.82 8.7575 13.53 8.4675L11.82 6.7575C11.88 6.7575 11.94 6.7575 12 6.7575C16.55 6.7575 20.25 9.0875 20.25 11.9475C20.25 13.2075 19.5 14.4375 18.14 15.3975C17.8 15.6375 17.72 16.1075 17.96 16.4475C18.11 16.6575 18.34 16.7675 18.57 16.7675C18.72 16.7675 18.87 16.7275 19 16.6275C20.77 15.3775 21.75 13.7175 21.75 11.9575C21.75 8.2675 17.38 5.2675 12 5.2675V5.2575Z\"></path></svg>",
2044
- "folder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.72 9.24C21.45 8.92 21.12 8.67 20.75 8.5V8C20.75 6.48 19.52 5.25 18 5.25H10.65C10.32 4.1 9.26 3.25 8 3.25H6C4.48 3.25 3.25 4.48 3.25 6V18C3.25 19.52 4.48 20.75 6 20.75H18.33C19.66 20.75 20.8 19.8 21.04 18.49L22.31 11.49C22.46 10.69 22.24 9.86 21.72 9.24ZM4.75 18V6C4.75 5.31 5.31 4.75 6 4.75H8C8.69 4.75 9.25 5.31 9.25 6C9.25 6.41 9.59 6.75 10 6.75H18C18.69 6.75 19.25 7.31 19.25 8V8.25H9.27C7.94 8.25 6.8 9.2 6.56 10.51L5.29 17.51C5.19 18.07 5.27 18.64 5.51 19.15C5.06 18.96 4.75 18.52 4.75 18ZM20.83 11.22L19.56 18.22C19.45 18.81 18.94 19.25 18.33 19.25H8C7.63 19.25 7.28 19.09 7.04 18.8C6.8 18.51 6.7 18.14 6.77 17.78L8.04 10.78C8.15 10.19 8.66 9.75 9.27 9.75H19.6C19.97 9.75 20.32 9.91 20.56 10.2C20.8 10.49 20.9 10.86 20.83 11.22Z\"></path></svg>",
2045
- "fullsize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 3.25H4C3.04 3.25 2.25 4.04 2.25 5V11C2.25 11.96 3.04 12.75 4 12.75H12C12.96 12.75 13.75 11.96 13.75 11V5C13.75 4.04 12.96 3.25 12 3.25ZM12.25 11C12.25 11.14 12.14 11.25 12 11.25H4C3.86 11.25 3.75 11.14 3.75 11V5C3.75 4.86 3.86 4.75 4 4.75H12C12.14 4.75 12.25 4.86 12.25 5V11Z\"></path></svg>",
2046
- "image-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M33 10.25H15C12.38 10.25 10.25 12.38 10.25 15V33C10.25 35.62 12.38 37.75 15 37.75H33C35.62 37.75 37.75 35.62 37.75 33V15C37.75 12.38 35.62 10.25 33 10.25ZM36.25 33C36.25 34.79 34.79 36.25 33 36.25H15C13.21 36.25 11.75 34.79 11.75 33V15C11.75 13.21 13.21 11.75 15 11.75H33C34.79 11.75 36.25 13.21 36.25 15V33ZM30.5 14.25C28.71 14.25 27.25 15.71 27.25 17.5C27.25 19.29 28.71 20.75 30.5 20.75C32.29 20.75 33.75 19.29 33.75 17.5C33.75 15.71 32.29 14.25 30.5 14.25ZM30.5 19.25C29.54 19.25 28.75 18.46 28.75 17.5C28.75 16.54 29.54 15.75 30.5 15.75C31.46 15.75 32.25 16.54 32.25 17.5C32.25 18.46 31.46 19.25 30.5 19.25ZM29.26 26.28C28.94 25.92 28.49 25.71 28.01 25.7C27.54 25.68 27.07 25.87 26.73 26.2L24.95 27.94L22.28 25.23C21.94 24.89 21.5 24.71 21 24.71C20.52 24.71 20.06 24.93 19.74 25.28L14.74 30.78C14.25 31.3 14.12 32.06 14.41 32.72C14.69 33.36 15.28 33.75 15.95 33.75H32.07C32.74 33.75 33.33 33.35 33.61 32.72C33.89 32.06 33.77 31.31 33.29 30.79L29.27 26.29L29.26 26.28ZM32.22 32.12C32.18 32.2 32.13 32.25 32.06 32.25H15.94C15.87 32.25 15.81 32.21 15.78 32.12C15.77 32.09 15.71 31.93 15.83 31.8L20.84 26.29C20.9 26.22 20.99 26.21 21.02 26.21C21.06 26.21 21.14 26.22 21.2 26.29L24.4 29.54C24.69 29.83 25.16 29.84 25.46 29.54L27.77 27.27C27.83 27.21 27.9 27.2 27.94 27.2C28.01 27.2 28.06 27.21 28.13 27.28L32.16 31.79C32.16 31.79 32.16 31.79 32.17 31.8C32.29 31.93 32.23 32.09 32.22 32.12Z\"></path></svg>",
2047
- "loading-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_19679_369428)\"><path opacity=\"0.1\" d=\"M24 40C15.18 40 8 32.82 8 24C8 15.18 15.18 8 24 8C32.82 8 40 15.18 40 24C40 32.82 32.82 40 24 40ZM24 12C17.38 12 12 17.38 12 24C12 30.62 17.38 36 24 36C30.62 36 36 30.62 36 24C36 17.38 30.62 12 24 12Z\" fill=\"black\" fill-opacity=\"0.91\"></path><path d=\"M10 26C8.9 26 8 25.1 8 24C8 15.18 15.18 8 24 8C25.1 8 26 8.9 26 10C26 11.1 25.1 12 24 12C17.38 12 12 17.38 12 24C12 25.1 11.1 26 10 26Z\"></path></g><defs><clipPath id=\"clip0_19679_369428\"><rect width=\"32\" height=\"32\" fill=\"white\" transform=\"translate(8 8)\"></rect></clipPath></defs></svg>",
2048
- "maximize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.75 3V7C13.75 7.41 13.41 7.75 13 7.75C12.59 7.75 12.25 7.41 12.25 7V4.81L9.53 7.53C9.38 7.68 9.19 7.75 9 7.75C8.81 7.75 8.62 7.68 8.47 7.53C8.18 7.24 8.18 6.76 8.47 6.47L11.19 3.75H9C8.59 3.75 8.25 3.41 8.25 3C8.25 2.59 8.59 2.25 9 2.25H13C13.1 2.25 13.19 2.27 13.29 2.31C13.47 2.39 13.62 2.53 13.7 2.72C13.74 2.81 13.76 2.91 13.76 3.01L13.75 3ZM7.53 8.47C7.24 8.18 6.76 8.18 6.47 8.47L3.75 11.19V9C3.75 8.59 3.41 8.25 3 8.25C2.59 8.25 2.25 8.59 2.25 9V13C2.25 13.1 2.27 13.19 2.31 13.29C2.39 13.47 2.53 13.62 2.72 13.7C2.81 13.74 2.91 13.76 3.01 13.76H7.01C7.42 13.76 7.76 13.42 7.76 13.01C7.76 12.6 7.42 12.26 7.01 12.26H4.82L7.54 9.54C7.83 9.25 7.83 8.77 7.54 8.48L7.53 8.47Z\"></path></svg>",
2049
- "minimize-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.75 8C13.75 8.41 13.41 8.75 13 8.75H3C2.59 8.75 2.25 8.41 2.25 8C2.25 7.59 2.59 7.25 3 7.25H13C13.41 7.25 13.75 7.59 13.75 8Z\"></path></svg>",
2050
- "more-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 10.25C11.04 10.25 10.25 11.04 10.25 12C10.25 12.96 11.04 13.75 12 13.75C12.96 13.75 13.75 12.96 13.75 12C13.75 11.04 12.96 10.25 12 10.25ZM11.75 12C11.75 11.86 11.86 11.75 12 11.75C12.14 11.75 12.25 11.86 12.25 12C12.25 12.28 11.75 12.28 11.75 12ZM19 10.25C18.04 10.25 17.25 11.04 17.25 12C17.25 12.96 18.04 13.75 19 13.75C19.96 13.75 20.75 12.96 20.75 12C20.75 11.04 19.96 10.25 19 10.25ZM18.75 12C18.75 11.86 18.86 11.75 19 11.75C19.14 11.75 19.25 11.86 19.25 12C19.25 12.28 18.75 12.28 18.75 12ZM5 10.25C4.04 10.25 3.25 11.04 3.25 12C3.25 12.96 4.04 13.75 5 13.75C5.96 13.75 6.75 12.96 6.75 12C6.75 11.04 5.96 10.25 5 10.25ZM4.75 12C4.75 11.86 4.86 11.75 5 11.75C5.14 11.75 5.25 11.86 5.25 12C5.25 12.28 4.75 12.28 4.75 12Z\"></path></svg>",
2051
- "navmenu-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.25 7C3.25 6.59 3.59 6.25 4 6.25H15C15.41 6.25 15.75 6.59 15.75 7C15.75 7.41 15.41 7.75 15 7.75H4C3.59 7.75 3.25 7.41 3.25 7ZM20 11.25H4C3.59 11.25 3.25 11.59 3.25 12C3.25 12.41 3.59 12.75 4 12.75H20C20.41 12.75 20.75 12.41 20.75 12C20.75 11.59 20.41 11.25 20 11.25ZM9 16.25H4C3.59 16.25 3.25 16.59 3.25 17C3.25 17.41 3.59 17.75 4 17.75H9C9.41 17.75 9.75 17.41 9.75 17C9.75 16.59 9.41 16.25 9 16.25Z\"></path></svg>",
2052
- "noimage-48x48": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30.4975 14.2475C28.7075 14.2475 27.2475 15.7075 27.2475 17.4975C27.2475 19.2875 28.7075 20.7475 30.4975 20.7475C32.2875 20.7475 33.7475 19.2875 33.7475 17.4975C33.7475 15.7075 32.2875 14.2475 30.4975 14.2475ZM30.4975 19.2475C29.5375 19.2475 28.7475 18.4575 28.7475 17.4975C28.7475 16.5375 29.5375 15.7475 30.4975 15.7475C31.4575 15.7475 32.2475 16.5375 32.2475 17.4975C32.2475 18.4575 31.4575 19.2475 30.4975 19.2475ZM13.5175 11.2175C13.4375 10.8075 13.7075 10.4175 14.1175 10.3375C14.4275 10.2775 14.7175 10.2475 14.9975 10.2475H32.9975C35.6175 10.2475 37.7475 12.3775 37.7475 14.9975V32.9975C37.7475 33.2775 37.7175 33.5675 37.6575 33.8775C37.5875 34.2375 37.2775 34.4875 36.9175 34.4875C36.8675 34.4875 36.8275 34.4875 36.7775 34.4775C36.3675 34.3975 36.1075 34.0075 36.1775 33.5975C36.2175 33.3775 36.2375 33.1775 36.2375 32.9975V14.9975C36.2375 13.2075 34.7775 11.7475 32.9875 11.7475H14.9975C14.8075 11.7475 14.6175 11.7675 14.3975 11.8075C13.9875 11.8875 13.5975 11.6175 13.5175 11.2075V11.2175ZM34.4775 36.7775C34.5575 37.1875 34.2875 37.5775 33.8775 37.6575C33.5675 37.7175 33.2775 37.7475 32.9975 37.7475H14.9975C12.3775 37.7475 10.2475 35.6175 10.2475 32.9975V14.9975C10.2475 14.7175 10.2775 14.4275 10.3375 14.1175C10.4175 13.7075 10.8075 13.4375 11.2175 13.5175C11.6275 13.5975 11.8875 13.9875 11.8175 14.3975C11.7775 14.6175 11.7575 14.8175 11.7575 14.9975V32.9975C11.7575 34.7875 13.2175 36.2475 15.0075 36.2475H33.0075C33.1975 36.2475 33.3875 36.2275 33.6075 36.1875C34.0075 36.1075 34.4075 36.3775 34.4875 36.7875L34.4775 36.7775ZM15.8275 31.7975C15.6975 31.9375 15.7575 32.0875 15.7775 32.1175C15.8175 32.1975 15.8675 32.2475 15.9375 32.2475H29.8175C30.2275 32.2475 30.5675 32.5875 30.5675 32.9975C30.5675 33.4075 30.2275 33.7475 29.8175 33.7475H15.9375C15.2675 33.7475 14.6775 33.3475 14.3975 32.7175C14.1075 32.0575 14.2375 31.2975 14.7275 30.7775L19.7275 25.2775C20.0475 24.9275 20.5075 24.7175 20.9875 24.7075C21.4875 24.7275 21.9375 24.8875 22.2675 25.2275L25.4675 28.4775C25.7575 28.7675 25.7575 29.2475 25.4675 29.5375C25.1675 29.8275 24.6975 29.8275 24.4075 29.5375L21.2075 26.2875C21.1475 26.2175 21.0675 26.1875 21.0275 26.2075C20.9875 26.2075 20.9075 26.2175 20.8475 26.2875L15.8375 31.7975H15.8275ZM38.5275 38.5275C38.3775 38.6775 38.1875 38.7475 37.9975 38.7475C37.8075 38.7475 37.6175 38.6775 37.4675 38.5275L9.4675 10.5275C9.1775 10.2375 9.1775 9.7575 9.4675 9.4675C9.7575 9.1775 10.2375 9.1775 10.5275 9.4675L38.5275 37.4675C38.8175 37.7575 38.8175 38.2375 38.5275 38.5275Z\"></path></svg>",
2053
- "ranking-arrows": "<svg viewBox=\"0 0 10 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 5L5 0L0 5H4V9H6V5H10Z\"></path><path d=\"M6 19V15H4V19H0L5 24L10 19H6Z\"></path></svg>",
2054
- "rankingundefined-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.75 8C11.75 8.41 11.41 8.75 11 8.75H5C4.59 8.75 4.25 8.41 4.25 8C4.25 7.59 4.59 7.25 5 7.25H11C11.41 7.25 11.75 7.59 11.75 8Z\"></path></svg>",
2055
- "rating-star-2": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M24.3981 33.1305L24 32.9206L23.6019 33.1305L15.8715 37.2059L17.3542 28.5663L17.43 28.1246L17.1095 27.8113L10.83 21.6746L19.4965 20.4049L19.9405 20.3399L20.1387 19.9373L24 12.0936L27.8613 19.9373L28.0595 20.3399L28.5035 20.4049L37.17 21.6746L30.8905 27.8113L30.57 28.1246L30.6458 28.5663L32.1285 37.2059L24.3981 33.1305Z\" stroke-width=\"1.70746\"></path></svg>",
2056
- "rating-star-small-2": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\" fill=\"none\" stroke-width=\"2\"></path><path d=\"M12 15.9472L8.58001 17.7572L9.23001 13.9272L6.45001 11.2072L10.29 10.6472L12 7.17725L13.71 10.6472L17.55 11.2072L14.77 13.9272L15.42 17.7572L12 15.9472Z\"></path></svg>",
2057
- "rating-star-small": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\"></path></g></svg>",
2058
- "rating-star": "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\"></path></g></svg>",
2059
- "reorder-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.9444 10.75H15.0544C15.7144 10.75 16.3144 10.39 16.6144 9.80002C16.9144 9.22002 16.8644 8.52002 16.4844 7.98002L13.4244 3.71002C12.7644 2.79002 11.2344 2.79002 10.5744 3.71002L7.5244 7.99002C7.1444 8.53002 7.0944 9.22002 7.3944 9.81002C7.6944 10.4 8.2944 10.76 8.9544 10.76L8.9444 10.75ZM8.7444 8.86002L11.7944 4.58002C11.8644 4.49002 11.9544 4.48002 11.9944 4.48002C12.0344 4.48002 12.1344 4.49002 12.1944 4.58002L15.2544 8.86002C15.3344 8.97002 15.3044 9.07002 15.2744 9.12002C15.2444 9.17002 15.1844 9.26002 15.0544 9.26002H8.9444C8.8144 9.26002 8.7444 9.18002 8.7244 9.12002C8.7044 9.06002 8.6644 8.97002 8.7444 8.86002ZM15.0544 13.25H8.9444C8.2844 13.25 7.6844 13.61 7.3844 14.2C7.0844 14.78 7.1344 15.48 7.5144 16.02L10.5744 20.3C10.9044 20.76 11.4344 21.03 11.9944 21.03C12.5544 21.03 13.0944 20.76 13.4144 20.3L16.4744 16.02C16.8544 15.48 16.9044 14.79 16.6044 14.2C16.3044 13.61 15.7044 13.25 15.0444 13.25H15.0544ZM15.2644 15.15L12.2044 19.43C12.0744 19.61 11.9244 19.61 11.7944 19.43L8.7344 15.15C8.6544 15.04 8.6844 14.94 8.7144 14.89C8.7444 14.84 8.8044 14.75 8.9344 14.75H15.0444C15.1744 14.75 15.2444 14.83 15.2644 14.89C15.2844 14.95 15.3244 15.04 15.2444 15.15H15.2644Z\"></path></svg>",
2060
- "restoredown-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.69 8.71C7.73 8.8 7.75 8.9 7.75 9V13C7.75 13.41 7.41 13.75 7 13.75C6.59 13.75 6.25 13.41 6.25 13V10.81L3.53 13.53C3.38 13.68 3.19 13.75 3 13.75C2.81 13.75 2.62 13.68 2.47 13.53C2.18 13.24 2.18 12.76 2.47 12.47L5.19 9.75H3C2.59 9.75 2.25 9.41 2.25 9C2.25 8.59 2.59 8.25 3 8.25H7C7.1 8.25 7.19 8.27 7.29 8.31C7.47 8.39 7.62 8.53 7.7 8.72L7.69 8.71ZM13 6.25H10.81L13.53 3.53C13.82 3.24 13.82 2.76 13.53 2.47C13.24 2.18 12.76 2.18 12.47 2.47L9.75 5.19V3C9.75 2.59 9.41 2.25 9 2.25C8.59 2.25 8.25 2.59 8.25 3V7C8.25 7.1 8.27 7.19 8.31 7.29C8.39 7.47 8.53 7.62 8.72 7.7C8.81 7.74 8.91 7.76 9.01 7.76H13.01C13.42 7.76 13.76 7.42 13.76 7.01C13.76 6.6 13.42 6.26 13.01 6.26L13 6.25Z\"></path></svg>",
2061
- "search-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.9975 2.25C9.7275 2.25 6.2475 5.73 6.2475 10C6.2475 11.87 6.9075 13.58 8.0175 14.92L2.4675 20.47C2.1775 20.76 2.1775 21.24 2.4675 21.53C2.6175 21.68 2.8075 21.75 2.9975 21.75C3.1875 21.75 3.3775 21.68 3.5275 21.53L9.0775 15.98C10.4175 17.08 12.1275 17.75 13.9975 17.75C18.2675 17.75 21.7475 14.27 21.7475 10C21.7475 5.73 18.2675 2.25 13.9975 2.25ZM13.9975 16.25C10.5475 16.25 7.7475 13.45 7.7475 10C7.7475 6.55 10.5475 3.75 13.9975 3.75C17.4475 3.75 20.2475 6.55 20.2475 10C20.2475 13.45 17.4475 16.25 13.9975 16.25Z\"></path></svg>",
2062
- "smiley-rate1-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 4.9938C4 4.44362 4.45 3.99348 5 3.99348H6.59L5.3 2.70306C4.91 2.31293 4.91 1.68272 5.3 1.2926C5.69 0.902468 6.32 0.902468 6.71 1.2926L9.71 4.29357C9.8 4.3836 9.88 4.49364 9.93 4.62368C10.03 4.86376 10.03 5.14385 9.93 5.38393C9.88 5.50397 9.81 5.614 9.71 5.71404L6.71 8.71501C6.51 8.91508 6.26 9.00511 6 9.00511C5.74 9.00511 5.49 8.90508 5.29 8.71501C4.9 8.32489 4.9 7.69468 5.29 7.30456L6.58 6.01413H4.99C4.44 6.01413 3.99 5.56399 3.99 5.01381L4 4.9938ZM14.08 5.37393C14.13 5.49397 14.2 5.604 14.3 5.70403L17.3 8.70501C17.5 8.90508 17.75 8.99511 18.01 8.99511C18.27 8.99511 18.52 8.89507 18.72 8.70501C19.11 8.31488 19.11 7.68468 18.72 7.29455L17.43 6.00413H19.02C19.57 6.00413 20.02 5.55399 20.02 5.00381C20.02 4.45363 19.57 4.00348 19.02 4.00348H17.43L18.72 2.71306C19.11 2.32293 19.11 1.69273 18.72 1.3026C18.33 0.912471 17.7 0.912471 17.31 1.3026L14.31 4.30358C14.22 4.39361 14.14 4.50364 14.09 4.63368C13.99 4.87376 13.99 5.15385 14.09 5.39393L14.08 5.37393ZM22 14.9971V20.999C22 22.6496 20.65 24 19 24H5C3.35 24 2 22.6496 2 20.999V14.9971C2 13.3465 3.35 11.9961 5 11.9961H19C20.65 11.9961 22 13.3465 22 14.9971ZM19 13.9967H16V16.9977H20V14.9971C20 14.4469 19.55 13.9967 19 13.9967ZM14 16.9977V13.9967H10V16.9977H14ZM10 18.9984V21.9993H14V18.9984H10ZM4 14.9971V16.9977H8V13.9967H5C4.45 13.9967 4 14.4469 4 14.9971ZM5 21.9993H8V18.9984H4V20.999C4 21.5492 4.45 21.9993 5 21.9993ZM20 20.999V18.9984H16V21.9993H19C19.55 21.9993 20 21.5492 20 20.999Z\"></path></svg>",
2063
- "smiley-rate10-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 23C6.85721 23 1.15412 19.9621 0.0134987 13.1669C-0.0765501 12.6272 0.293651 12.1076 0.833944 12.0177C1.38424 11.9277 1.89452 12.2975 1.98457 12.8371C2.92508 18.4732 7.69767 20.9914 12 20.9914C16.3023 20.9914 21.0749 18.4732 22.0154 12.8371C22.1055 12.2975 22.6158 11.9277 23.1661 12.0177C23.7063 12.1076 24.0765 12.6272 23.9865 13.1669C22.8559 19.9521 17.1428 23 11.99 23H12.01ZM21.165 6.15177C22.3056 5.01257 22.3056 3.16386 21.165 2.02465L21.0049 1.85477C19.9143 0.765533 18.1633 0.725561 17.0227 1.71487C15.8821 0.715568 14.1312 0.765533 13.0406 1.85477L12.8705 2.01466C11.7299 3.15386 11.7299 5.00257 12.8705 6.14178L17.0227 10.2889L21.175 6.14178L21.165 6.15177ZM15.742 3.27378L17.0127 4.54289L18.2834 3.27378C18.6436 2.91403 19.2239 2.91403 19.5841 3.27378L19.7442 3.43367C20.1044 3.79342 20.1044 4.37301 19.7442 4.73276L17.0127 7.46086L14.2812 4.73276C13.921 4.37301 13.921 3.79342 14.2812 3.43367L14.4413 3.27378C14.6214 3.09391 14.8515 3.00397 15.0917 3.00397C15.3318 3.00397 15.5619 3.09391 15.742 3.27378ZM11.1595 6.15177C12.3002 5.01257 12.3002 3.16386 11.1595 2.02465L10.9995 1.85477C9.90886 0.765533 8.15792 0.725561 7.0173 1.71487C5.87668 0.715568 4.12573 0.765533 3.03514 1.85477L2.86505 2.01466C1.72443 3.15386 1.72443 5.00257 2.86505 6.14178L7.0173 10.2889L11.1695 6.14178L11.1595 6.15177ZM5.7366 3.27378L7.00729 4.54289L8.27798 3.27378C8.63818 2.91403 9.21849 2.91403 9.57869 3.27378L9.73877 3.43367C10.099 3.79342 10.099 4.37301 9.73877 4.73276L7.00729 7.46086L4.27581 4.73276C3.91562 4.37301 3.91562 3.79342 4.27581 3.43367L4.4359 3.27378C4.61599 3.09391 4.84612 3.00397 5.08625 3.00397C5.32638 3.00397 5.5565 3.09391 5.7366 3.27378Z\"></path></svg>",
2064
- "smiley-rate2-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_15894_140103)\"><path d=\"M4.88291 4.51001C4.47291 4.51001 4.08291 4.25001 3.94291 3.84001C3.76291 3.32001 4.03291 2.75001 4.55291 2.57001L8.32291 1.25001C8.84291 1.06001 9.41291 1.34001 9.59291 1.86001C9.77291 2.38001 9.50291 2.95001 8.98291 3.13001L5.20291 4.45001C5.09291 4.49001 4.98291 4.51001 4.87291 4.51001H4.88291ZM19.8129 3.89001C20.0229 3.38001 19.7729 2.79001 19.2629 2.59001L15.5529 1.07001C15.0429 0.860007 14.4529 1.11001 14.2529 1.62001C14.0429 2.13001 14.2929 2.72001 14.8029 2.92001L18.5029 4.43001C18.6229 4.48001 18.7529 4.50001 18.8829 4.50001C19.2729 4.50001 19.6529 4.27001 19.8129 3.88001V3.89001ZM3.50291 6.00001C2.64291 6.37001 1.79291 6.88001 1.00291 7.48001C0.79291 7.64001 0.64291 7.87001 0.59291 8.14001C0.48291 8.73001 0.87291 9.29001 1.45291 9.40001C2.04291 9.51001 2.60291 9.12001 2.71291 8.54001C2.87291 7.69001 3.12291 6.83001 3.50291 5.99001V6.00001ZM21.0429 8.55001C21.6029 10.48 24.2429 8.84001 22.7529 7.48001C21.9629 6.88001 21.1129 6.37001 20.2529 6.00001C20.6329 6.84001 20.8829 7.70001 21.0429 8.55001ZM21.5729 13.2C21.2529 14.2 22.5429 15.09 23.3629 14.39C23.8529 14 23.9229 13.29 23.5429 12.81C21.7429 10.67 22.1329 10.55 21.5829 13.2H21.5729ZM1.75291 11C1.22291 11.79 -0.14709 12.64 0.0129102 13.75C0.15291 14.36 0.75291 14.74 1.35291 14.6C2.98291 14.1 1.80291 12.22 1.75291 11ZM19.8829 17C19.8829 13.14 16.2929 10 11.8829 10C7.47291 10 3.88291 13.14 3.88291 17C3.88291 20.86 7.47291 24 11.8829 24C16.2929 24 19.8829 20.86 19.8829 17ZM17.8829 17C17.8829 19.76 15.1929 22 11.8829 22C8.57291 22 5.88291 19.76 5.88291 17C5.88291 14.24 8.57291 12 11.8829 12C15.1929 12 17.8829 14.24 17.8829 17Z\"></path></g><defs><clipPath id=\"clip0_15894_140103\"><rect width=\"24\" height=\"24\" fill=\"white\"></rect></clipPath></defs></svg>",
2065
- "smiley-rate3-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.01915 7C6.46961 7 6.01998 6.55 6.01998 6V2C6.01998 1.45 6.46961 1 7.01915 1C7.56869 1 8.01832 1.45 8.01832 2V6C8.01832 6.55 7.56869 7 7.01915 7ZM18.01 6V2C18.01 1.45 17.5604 1 17.0108 1C16.4613 1 16.0117 1.45 16.0117 2V6C16.0117 6.55 16.4613 7 17.0108 7C17.5604 7 18.01 6.55 18.01 6ZM16.4213 21.58L18.01 19.99L19.2989 21.28C19.6886 21.67 20.3181 21.67 20.7077 21.28C21.0974 20.89 21.0974 20.26 20.7077 19.87L19.4188 18.58C18.6395 17.8 17.3705 17.8 16.5912 18.58L15.0025 20.17L13.4138 18.58C12.6345 17.8 11.3655 17.8 10.5862 18.58L8.9975 20.17L7.40883 18.58C6.62948 17.8 5.36053 17.8 4.58118 18.58L3.29226 19.87C2.90258 20.26 2.90258 20.89 3.29226 21.28C3.68193 21.67 4.31141 21.67 4.70108 21.28L5.99001 19.99L7.57868 21.58C8.35803 22.36 9.62698 22.36 10.4063 21.58L11.995 19.99L13.5837 21.58C13.9734 21.97 14.4829 22.16 14.9925 22.16C15.5021 22.16 16.0117 21.97 16.4013 21.58H16.4213Z\"></path></svg>",
2066
- "smiley-rate4-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.06927 7C6.51927 7 6.06927 6.55 6.06927 6V2C6.06927 1.45 6.51927 1 7.06927 1C7.61927 1 8.06927 1.45 8.06927 2V6C8.06927 6.55 7.61927 7 7.06927 7ZM18.0693 6V2C18.0693 1.45 17.6193 1 17.0693 1C16.5193 1 16.0693 1.45 16.0693 2V6C16.0693 6.55 16.5193 7 17.0693 7C17.6193 7 18.0693 6.55 18.0693 6ZM22.5693 21.9C23.0693 21.66 23.2793 21.07 23.0393 20.57C21.1093 16.52 16.9093 14 12.0693 14C7.22927 14 3.02927 16.52 1.09927 20.57C0.859273 21.07 1.06927 21.67 1.56927 21.9C2.06927 22.14 2.65927 21.93 2.89927 21.43C4.49927 18.08 8.00927 16 12.0593 16C16.1093 16 19.6293 18.08 21.2193 21.43C21.3893 21.79 21.7493 22 22.1193 22C22.2593 22 22.4093 21.97 22.5493 21.9H22.5693Z\"></path></svg>",
2067
- "smiley-rate5-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.00572 7C6.45572 7 6.00572 6.55 6.00572 6V2C6.00572 1.45 6.45572 1 7.00572 1C7.55572 1 8.00572 1.45 8.00572 2V6C8.00572 6.55 7.55572 7 7.00572 7ZM18.0057 6V2C18.0057 1.45 17.5557 1 17.0057 1C16.4557 1 16.0057 1.45 16.0057 2V6C16.0057 6.55 16.4557 7 17.0057 7C17.5557 7 18.0057 6.55 18.0057 6ZM19.9457 21.33C20.1257 20.81 19.8557 20.24 19.3357 20.05C14.5457 18.35 9.45572 18.35 4.66572 20.05C4.14572 20.23 3.87572 20.81 4.05572 21.33C4.23572 21.85 4.80572 22.12 5.33572 21.94C9.69572 20.4 14.3057 20.4 18.6657 21.94C18.7757 21.98 18.8857 22 18.9957 22C19.4057 22 19.7957 21.74 19.9357 21.33H19.9457Z\"></path></svg>",
2068
- "smiley-rate6-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 7C6.45 7 6 6.55 6 6V2C6 1.45 6.45 1 7 1C7.55 1 8 1.45 8 2V6C8 6.55 7.55 7 7 7ZM18 6V2C18 1.45 17.55 1 17 1C16.45 1 16 1.45 16 2V6C16 6.55 16.45 7 17 7C17.55 7 18 6.55 18 6ZM21 21C21 20.45 20.55 20 20 20H4C3.45 20 3 20.45 3 21C3 21.55 3.45 22 4 22H20C20.55 22 21 21.55 21 21Z\"></path></svg>",
2069
- "smiley-rate7-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.0022 23.99C11.452 23.99 11.0018 23.5402 11.0018 22.9904C11.0018 22.4407 11.452 21.9909 12.0022 21.9909C16.3137 21.9909 21.0755 19.472 22.0158 13.8344C22.1058 13.2947 22.616 12.9248 23.1662 13.0148C23.7064 13.1047 24.0765 13.6245 23.9865 14.1643C22.8561 20.9513 17.144 24 11.9922 24L12.0022 23.99ZM8.00072 5.99783V1.99957C8.00072 1.4498 7.55056 1 7.00036 1C6.45016 1 6 1.4498 6 1.99957V5.99783C6 6.54759 6.45016 6.99739 7.00036 6.99739C7.55056 6.99739 8.00072 6.54759 8.00072 5.99783ZM18.0043 5.99783V1.99957C18.0043 1.4498 17.5542 1 17.004 1C16.4538 1 16.0036 1.4498 16.0036 1.99957V5.99783C16.0036 6.54759 16.4538 6.99739 17.004 6.99739C17.5542 6.99739 18.0043 6.54759 18.0043 5.99783Z\"></path></svg>",
2070
- "smiley-rate8-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85721 24 1.15412 20.96 0.0134987 14.16C-0.0765501 13.62 0.293651 13.1 0.833944 13.01C1.38424 12.92 1.89452 13.29 1.98457 13.83C2.92508 19.47 7.69767 21.99 12 21.99C16.3023 21.99 21.0749 19.47 22.0154 13.83C22.1055 13.29 22.6158 12.92 23.1661 13.01C23.7063 13.1 24.0765 13.62 23.9865 14.16C22.8559 20.95 17.1428 24 11.99 24H12.01ZM8.00783 6V2C8.00783 1.45 7.55759 1 7.00729 1C6.45699 1 6.00675 1.45 6.00675 2V6C6.00675 6.55 6.45699 7 7.00729 7C7.55759 7 8.00783 6.55 8.00783 6ZM18.0133 6V2C18.0133 1.45 17.563 1 17.0127 1C16.4624 1 16.0122 1.45 16.0122 2V6C16.0122 6.55 16.4624 7 17.0127 7C17.563 7 18.0133 6.55 18.0133 6Z\"></path></svg>",
2071
- "smiley-rate9-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85767 24 1.15509 20.96 0.0145752 14.16C-0.0354475 13.87 0.0445888 13.57 0.234675 13.35C0.424761 13.13 0.704888 13 0.995019 13H23.005C23.2951 13 23.5752 13.13 23.7653 13.35C23.9554 13.57 24.0354 13.87 23.9854 14.16C22.8549 20.95 17.1423 24 11.99 24H12.01ZM2.25559 15C3.61621 19.82 8.0182 22 12.01 22C16.0018 22 20.4038 19.82 21.7644 15H2.25559ZM8.00819 6V2C8.00819 1.45 7.55799 1 7.00774 1C6.45749 1 6.00729 1.45 6.00729 2V6C6.00729 6.55 6.45749 7 7.00774 7C7.55799 7 8.00819 6.55 8.00819 6ZM18.0127 6V2C18.0127 1.45 17.5625 1 17.0123 1C16.462 1 16.0118 1.45 16.0118 2V6C16.0118 6.55 16.462 7 17.0123 7C17.5625 7 18.0127 6.55 18.0127 6Z\"></path></svg>"
2072
- };
2062
+ ReactElementFactory.Instance.registerElement("sv-singleinput-summary", (props) => {
2063
+ return React.createElement(SurveyQuestionSigleInputSummary, props);
2064
+ });
2073
2065
 
2074
- class Scroll extends React.Component {
2066
+ class SurveyBreadcrumbs extends SurveyElementBase {
2075
2067
  constructor(props) {
2076
2068
  super(props);
2077
- this.rootRef = React.createRef();
2078
- this.model = new ScrollViewModel();
2079
- this.model.onInnerHeightChanged = (hasScroll) => {
2080
- if (!!this.props.onInnerHeightChanged) {
2081
- this.props.onInnerHeightChanged(hasScroll);
2082
- }
2083
- };
2084
2069
  }
2085
- componentDidMount() {
2086
- const container = this.rootRef.current;
2087
- if (!container)
2088
- return;
2089
- this.model.setRootElement(container);
2070
+ getStateElement() {
2071
+ return this.props.model;
2090
2072
  }
2091
- componentWillUnmount() {
2092
- this.model.unsubscribeRootElement();
2093
- this.model.setRootElement(undefined);
2073
+ get items() {
2074
+ return this.props.model.actions;
2075
+ }
2076
+ get css() {
2077
+ return this.props.css;
2078
+ }
2079
+ renderElement() {
2080
+ if (!this.items || !this.items.length)
2081
+ return null;
2082
+ const items = this.renderItems();
2083
+ return (React.createElement("div", { className: this.css.breadcrumbsRoot }, items));
2094
2084
  }
2095
- render() {
2096
- return this.props.disabled ?
2097
- React.createElement(React.Fragment, null, this.props.children) :
2098
- React.createElement("div", { ref: this.rootRef, className: "sv-scroll__wrapper" },
2099
- React.createElement("div", { className: "sv-scroll__scroller sv-drag-target-skipped", onScroll: () => this.model.onScrollContainer() },
2100
- React.createElement("div", { className: "sv-scroll__container" }, this.props.children)),
2101
- React.createElement("div", { className: "sv-scroll__scrollbar", onScroll: () => this.model.onScrollScrollbar() },
2102
- React.createElement("div", { className: "sv-scroll__scrollbar-sizer" })));
2085
+ renderItems() {
2086
+ const result = [];
2087
+ this.items.concat([]).forEach((item, itemIndex) => {
2088
+ if (itemIndex) {
2089
+ result.push(React.createElement(SvgIcon, { key: item.renderedId + "_separator", className: this.css.breadcrumbsSeparator, iconName: "arrowright-16x16", size: "auto" }));
2090
+ }
2091
+ result.push(React.createElement(SurveyAction, { key: item.renderedId, item: item }));
2092
+ });
2093
+ return result;
2103
2094
  }
2104
2095
  }
2105
- ReactElementFactory.Instance.registerElement("svc-scroll", (props) => {
2106
- return React.createElement(Scroll, props);
2096
+ ReactElementFactory.Instance.registerElement("sv-breadcrumbs", (props) => {
2097
+ return React.createElement(SurveyBreadcrumbs, props);
2107
2098
  });
2108
2099
 
2109
- addIconsToThemeSet("v1", iconsV1);
2110
- addIconsToThemeSet("v2", iconsV2);
2111
- SvgRegistry.registerIcons(iconsV2);
2112
- class Survey extends SurveyElementBase {
2100
+ class SurveyQuestion extends SurveyElementBase {
2101
+ static renderQuestionBody(creator, question) {
2102
+ // if (!question.isVisible) return null;
2103
+ var customWidget = question.customWidget;
2104
+ if (!customWidget) {
2105
+ return creator.createQuestionElement(question);
2106
+ }
2107
+ return React.createElement(SurveyCustomWidget, { creator: creator, question: question });
2108
+ }
2113
2109
  constructor(props) {
2114
2110
  super(props);
2115
- this.previousJSON = {};
2116
- this.isSurveyUpdated = false;
2117
- this.createSurvey(props);
2118
- this.updateSurvey(props, {});
2111
+ this.isNeedFocus = false;
2119
2112
  this.rootRef = React.createRef();
2120
- this.rootNodeId = props.id || null;
2121
- this.rootNodeClassName = props.className || "";
2122
2113
  }
2123
2114
  getStateElement() {
2124
- return this.survey;
2125
- }
2126
- onSurveyUpdated() {
2127
- if (!!this.survey) {
2128
- const el = this.rootRef.current;
2129
- if (!!el)
2130
- this.survey.afterRenderSurvey(el);
2131
- this.survey.startTimerFromUI();
2132
- this.setSurveyEvents();
2133
- }
2115
+ return this.question;
2134
2116
  }
2135
- shouldComponentUpdate(nextProps, nextState) {
2136
- if (!super.shouldComponentUpdate(nextProps, nextState))
2137
- return false;
2138
- if (this.isModelJSONChanged(nextProps)) {
2139
- this.destroySurvey();
2140
- this.createSurvey(nextProps);
2141
- this.updateSurvey(nextProps, {});
2142
- this.isSurveyUpdated = true;
2143
- }
2144
- return true;
2117
+ get question() {
2118
+ return this.props.element;
2145
2119
  }
2146
- componentDidUpdate(prevProps, prevState) {
2147
- super.componentDidUpdate(prevProps, prevState);
2148
- this.updateSurvey(this.props, prevProps);
2149
- if (this.isSurveyUpdated) {
2150
- this.onSurveyUpdated();
2151
- this.isSurveyUpdated = false;
2152
- }
2120
+ get creator() {
2121
+ return this.props.creator;
2153
2122
  }
2154
2123
  componentDidMount() {
2155
2124
  super.componentDidMount();
2156
- this.onSurveyUpdated();
2157
- }
2158
- destroySurvey() {
2159
- if (this.survey) {
2160
- this.survey.renderCallback = undefined;
2161
- this.survey.onPartialSend.clear();
2162
- this.survey.stopTimer();
2163
- this.survey.destroyResizeObserver();
2125
+ if (!!this.question) {
2126
+ this.question["react"] = this;
2164
2127
  }
2128
+ this.doAfterRender();
2165
2129
  }
2166
2130
  componentWillUnmount() {
2167
2131
  super.componentWillUnmount();
2168
- this.destroySurvey();
2169
- }
2170
- doRender() {
2171
- let renderResult;
2172
- if (this.survey.state == "completed") {
2173
- renderResult = this.renderCompleted();
2174
- }
2175
- else if (this.survey.state == "completedbefore") {
2176
- renderResult = this.renderCompletedBefore();
2132
+ if (!!this.question) {
2133
+ this.question["react"] = null;
2177
2134
  }
2178
- else if (this.survey.state == "loading") {
2179
- renderResult = this.renderLoading();
2135
+ const el = this.rootRef.current;
2136
+ if (!!el) {
2137
+ el.removeAttribute("data-rendered");
2180
2138
  }
2181
- else if (this.survey.state == "empty") {
2182
- renderResult = this.renderEmptySurvey();
2139
+ }
2140
+ componentDidUpdate(prevProps, prevState) {
2141
+ super.componentDidUpdate(prevProps, prevState);
2142
+ this.doAfterRender();
2143
+ }
2144
+ doAfterRender() {
2145
+ if (this.isNeedFocus) {
2146
+ if (!this.question.isCollapsed) {
2147
+ this.question.clickTitleFunction();
2148
+ }
2149
+ this.isNeedFocus = false;
2183
2150
  }
2184
- else {
2185
- renderResult = this.renderSurvey();
2151
+ if (this.question) {
2152
+ var el = this.rootRef.current;
2153
+ if (el && el.getAttribute("data-rendered") !== "r") {
2154
+ el.setAttribute("data-rendered", "r");
2155
+ if (this.question.afterRender) {
2156
+ this.question.afterRender(el);
2157
+ }
2158
+ }
2186
2159
  }
2187
- const backgroundImage = !!this.survey.backgroundImage ? React.createElement("div", { className: this.css.rootBackgroundImage, style: this.survey.backgroundImageStyle }) : null;
2188
- const header = this.survey.headerView === "basic" ? React.createElement(SurveyHeader, { survey: this.survey }) : null;
2189
- const onSubmit = function (event) {
2190
- event.preventDefault();
2160
+ }
2161
+ canRender() {
2162
+ return (super.canRender() &&
2163
+ !!this.question &&
2164
+ !!this.creator);
2165
+ }
2166
+ renderQuestionContent() {
2167
+ let question = this.question;
2168
+ var contentStyle = {
2169
+ display: this.question.renderedIsExpanded ? "" : "none",
2191
2170
  };
2192
- let customHeader = React.createElement("div", { className: "sv_custom_header" });
2193
- if (this.survey.hasLogo) {
2194
- customHeader = null;
2171
+ var cssClasses = question.cssClasses;
2172
+ var questionRender = this.renderQuestion();
2173
+ var comment = question && question.hasComment ? this.renderComment(cssClasses) : null;
2174
+ var descriptionUnderInput = question.hasDescriptionUnderInput
2175
+ ? this.renderDescription()
2176
+ : null;
2177
+ return (React.createElement("div", { className: question.cssContent || undefined, style: contentStyle, "aria-hidden": question.contentAriaHidden, role: "presentation", "data-sv-drop-target-matrix": this.question.dragDropMatrixAttribute, "data-sv-drop-target-matrix-row": this.question.dragDropMatrixAttribute },
2178
+ questionRender,
2179
+ comment,
2180
+ descriptionUnderInput));
2181
+ }
2182
+ renderElement() {
2183
+ var question = this.question;
2184
+ var cssClasses = question.cssClasses;
2185
+ var header = this.renderHeader(question);
2186
+ var headerTop = question.hasTitleOnLeftTop ? header : null;
2187
+ var headerBottom = question.hasTitleOnBottom ? header : null;
2188
+ const errorsAboveQuestion = this.question.showErrorsAboveQuestion
2189
+ ? this.renderErrors(cssClasses, "")
2190
+ : null;
2191
+ const errorsBelowQuestion = this.question.showErrorsBelowQuestion
2192
+ ? this.renderErrors(cssClasses, "")
2193
+ : null;
2194
+ const rootStyle = question.getRootStyle();
2195
+ const singleBreadcrumbs = question.singleInputHasActions ? this.renderSingleInputBreadcrumbs(question, cssClasses) : undefined;
2196
+ const singleSummary = question.singleInputSummary ? this.renderSingleInputSummary(question, cssClasses) : undefined;
2197
+ const singleInput = singleSummary || (question.singleInputQuestion ? this.renderSingleInputQuestion(question, cssClasses) : undefined);
2198
+ const questionContent = singleInput || this.wrapQuestionContent(this.renderQuestionContent());
2199
+ return (React.createElement(React.Fragment, null,
2200
+ React.createElement("div", { ref: this.rootRef, id: question.id, className: question.getRootCss(), style: rootStyle, "data-name": question.name, role: question.ariaRole, "aria-required": this.question.ariaRequired, "aria-invalid": this.question.ariaInvalid, "aria-label": this.question.ariaLabel, "aria-labelledby": question.ariaLabelledBy, "aria-describedby": question.ariaDescribedBy, "aria-expanded": question.ariaExpanded },
2201
+ singleBreadcrumbs,
2202
+ errorsAboveQuestion,
2203
+ headerTop,
2204
+ questionContent,
2205
+ headerBottom,
2206
+ errorsBelowQuestion)));
2207
+ }
2208
+ renderSingleInputQuestion(question, cssClasses) {
2209
+ const singleQuestion = question.singleInputQuestion;
2210
+ const key = singleQuestion.id;
2211
+ return React.createElement(SurveyQuestion, { key: key, element: singleQuestion, creator: this.creator, css: cssClasses });
2212
+ }
2213
+ renderSingleInputBreadcrumbs(question, cssClasses) {
2214
+ return React.createElement(SurveyBreadcrumbs, { model: question.singleInputActions, css: cssClasses });
2215
+ }
2216
+ renderSingleInputSummary(question, cssClasses) {
2217
+ return React.createElement(SurveyQuestionSigleInputSummary, { summary: question.singleInputSummary, creator: this.creator, css: cssClasses });
2218
+ }
2219
+ wrapElement(element) {
2220
+ const survey = this.question.survey;
2221
+ let wrapper = null;
2222
+ if (survey) {
2223
+ wrapper = ReactSurveyElementsWrapper.wrapElement(survey, element, this.question);
2195
2224
  }
2196
- const rootCss = this.survey.getRootCss();
2197
- const cssClasses = this.rootNodeClassName ? this.rootNodeClassName + " " + rootCss : rootCss;
2198
- return (React.createElement("div", { id: this.rootNodeId, ref: this.rootRef, className: cssClasses, style: this.survey.themeVariables, lang: this.survey.locale || "en", dir: this.survey.localeDir },
2199
- React.createElement(Scroll, { disabled: this.survey.rootScrollDisabled },
2200
- this.survey.needRenderIcons ? React.createElement(SvgBundleComponent, null) : null,
2201
- React.createElement(PopupModal, null),
2202
- React.createElement("div", { className: this.survey.wrapperFormCss },
2203
- backgroundImage,
2204
- React.createElement("form", { onSubmit: onSubmit },
2205
- React.createElement(Scroll, { disabled: this.survey.formScrollDisabled },
2206
- customHeader,
2207
- React.createElement("div", { className: this.css.container },
2208
- header,
2209
- React.createElement(ComponentsContainer, { survey: this.survey, container: "header", needRenderWrapper: false }),
2210
- renderResult,
2211
- React.createElement(ComponentsContainer, { survey: this.survey, container: "footer", needRenderWrapper: false })))),
2212
- React.createElement(NotifierComponent, { notifier: this.survey.notifier })))));
2225
+ return wrapper !== null && wrapper !== void 0 ? wrapper : element;
2226
+ }
2227
+ wrapQuestionContent(element) {
2228
+ const survey = this.question.survey;
2229
+ let wrapper = null;
2230
+ if (survey) {
2231
+ wrapper = ReactSurveyElementsWrapper.wrapQuestionContent(survey, element, this.question);
2232
+ }
2233
+ return wrapper !== null && wrapper !== void 0 ? wrapper : element;
2234
+ }
2235
+ renderQuestion() {
2236
+ return SurveyQuestion.renderQuestionBody(this.creator, this.question);
2237
+ }
2238
+ renderDescription() {
2239
+ return SurveyElementBase.renderQuestionDescription(this.question);
2240
+ }
2241
+ renderComment(cssClasses) {
2242
+ const commentText = SurveyElementBase.renderLocString(this.question.locCommentText);
2243
+ return (React.createElement("div", { className: this.question.getCommentAreaCss() },
2244
+ React.createElement("div", null, commentText),
2245
+ React.createElement(SurveyQuestionCommentItem, { question: this.question, cssClasses: cssClasses, isDisplayMode: this.question.isInputReadOnly })));
2246
+ }
2247
+ renderHeader(question) {
2248
+ if (question.singleInputHideHeader)
2249
+ return null;
2250
+ return React.createElement(SurveyElementHeader, { element: question });
2251
+ }
2252
+ renderErrors(cssClasses, location) {
2253
+ return (React.createElement(SurveyElementErrors, { element: this.question, cssClasses: cssClasses, creator: this.creator, location: location, id: this.question.id + "_errors" }));
2254
+ }
2255
+ }
2256
+ ReactElementFactory.Instance.registerElement("question", (props) => {
2257
+ return React.createElement(SurveyQuestion, props);
2258
+ });
2259
+ class SurveyElementErrors extends ReactSurveyElement {
2260
+ constructor(props) {
2261
+ super(props);
2262
+ this.state = this.getState();
2263
+ }
2264
+ get id() {
2265
+ return this.props.element.id + "_errors";
2266
+ }
2267
+ get element() {
2268
+ return this.props.element;
2269
+ }
2270
+ get creator() {
2271
+ return this.props.creator;
2272
+ }
2273
+ getState(prevState = null) {
2274
+ return !prevState ? { error: 0 } : { error: prevState.error + 1 };
2275
+ }
2276
+ canRender() {
2277
+ return !!this.element && this.element.hasVisibleErrors;
2278
+ }
2279
+ componentWillUnmount() {
2213
2280
  }
2214
2281
  renderElement() {
2215
- return this.doRender();
2282
+ const errors = [];
2283
+ for (let i = 0; i < this.element.renderedErrors.length; i++) {
2284
+ const key = "error" + i;
2285
+ errors.push(this.creator.renderError(key, this.element.renderedErrors[i], this.cssClasses, this.element));
2286
+ }
2287
+ return (React.createElement("div", { className: this.element.cssError, id: this.id }, errors));
2216
2288
  }
2217
- get css() {
2218
- return this.survey.css;
2289
+ }
2290
+ class SurveyQuestionAndErrorsWrapped extends ReactSurveyElement {
2291
+ constructor(props) {
2292
+ super(props);
2219
2293
  }
2220
- set css(value) {
2221
- this.survey.css = value;
2294
+ getStateElement() {
2295
+ return this.question;
2222
2296
  }
2223
- renderCompleted() {
2224
- if (!this.survey.showCompletedPage)
2225
- return null;
2226
- var htmlValue = { __html: this.survey.processedCompletedHtml };
2227
- return (React.createElement(React.Fragment, null,
2228
- React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedCss }),
2229
- React.createElement(ComponentsContainer, { survey: this.survey, container: "completePage", needRenderWrapper: false })));
2297
+ get question() {
2298
+ return this.getQuestion();
2230
2299
  }
2231
- renderCompletedBefore() {
2232
- var htmlValue = { __html: this.survey.processedCompletedBeforeHtml };
2233
- return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedBeforeCss }));
2300
+ get creator() {
2301
+ return this.props.creator;
2234
2302
  }
2235
- renderLoading() {
2236
- var htmlValue = { __html: this.survey.processedLoadingHtml };
2237
- return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.loadingBodyCss }));
2303
+ getQuestion() {
2304
+ return this.props.question;
2238
2305
  }
2239
- renderSurvey() {
2240
- var activePage = this.survey.activePage
2241
- ? this.renderPage(this.survey.activePage)
2242
- : null;
2243
- this.survey.isShowStartingPage;
2244
- var pageId = this.survey.activePage ? this.survey.activePage.id : "";
2245
- let className = this.survey.bodyCss;
2246
- const style = {};
2247
- if (!!this.survey.renderedWidth) {
2248
- style.maxWidth = this.survey.renderedWidth;
2249
- }
2250
- return (React.createElement("div", { className: this.survey.bodyContainerCss },
2251
- React.createElement(ComponentsContainer, { survey: this.survey, container: "left" }),
2252
- React.createElement("div", { className: "sv-components-column sv-components-column--expandable" },
2253
- React.createElement(ComponentsContainer, { survey: this.survey, container: "center" }),
2254
- React.createElement("div", { id: pageId, className: className, style: style },
2255
- React.createElement(ComponentsContainer, { survey: this.survey, container: "contentTop" }),
2256
- activePage,
2257
- React.createElement(ComponentsContainer, { survey: this.survey, container: "contentBottom" }),
2258
- this.survey.showBrandInfo ? React.createElement(BrandInfo, null) : null)),
2259
- React.createElement(ComponentsContainer, { survey: this.survey, container: "right" })));
2306
+ get itemCss() {
2307
+ return this.props.itemCss;
2260
2308
  }
2261
- renderPage(page) {
2262
- return (React.createElement(SurveyPage, { survey: this.survey, page: page, css: this.css, creator: this }));
2309
+ componentDidMount() {
2310
+ super.componentDidMount();
2311
+ this.doAfterRender();
2263
2312
  }
2264
- renderEmptySurvey() {
2265
- return React.createElement("div", { className: this.css.bodyEmpty }, this.survey.emptySurveyText);
2313
+ componentDidUpdate(prevProps, prevState) {
2314
+ super.componentDidUpdate(prevProps, prevState);
2315
+ this.doAfterRender();
2266
2316
  }
2267
- createSurvey(newProps) {
2268
- if (!newProps)
2269
- newProps = {};
2270
- this.previousJSON = {};
2271
- if (newProps) {
2272
- if (newProps.model) {
2273
- this.survey = newProps.model;
2274
- }
2275
- else {
2276
- if (newProps.json) {
2277
- this.previousJSON = newProps.json;
2278
- this.survey = new SurveyModel(newProps.json);
2279
- }
2280
- }
2281
- }
2282
- else {
2283
- this.survey = new SurveyModel();
2284
- }
2285
- if (!!newProps.css) {
2286
- this.survey.css = this.css;
2287
- }
2317
+ doAfterRender() { }
2318
+ canRender() {
2319
+ return !!this.question;
2288
2320
  }
2289
- isModelJSONChanged(newProps) {
2290
- if (!!newProps["model"]) {
2291
- return this.survey !== newProps["model"];
2292
- }
2293
- if (!!newProps["json"]) {
2294
- return !Helpers.isTwoValueEquals(newProps["json"], this.previousJSON);
2295
- }
2296
- return false;
2321
+ renderContent() {
2322
+ var renderedQuestion = this.renderQuestion();
2323
+ return (React.createElement(React.Fragment, null, renderedQuestion));
2297
2324
  }
2298
- updateSurvey(newProps, oldProps) {
2299
- if (!newProps)
2300
- return;
2301
- oldProps = oldProps || {};
2302
- for (var key in newProps) {
2303
- if (key == "model" || key == "children" || key == "json") {
2304
- continue;
2305
- }
2306
- if (key == "css") {
2307
- this.survey.mergeValues(newProps.css, this.survey.getCss());
2308
- this.survey["updateNavigationCss"]();
2309
- this.survey["updateElementCss"]();
2310
- continue;
2311
- }
2312
- if (newProps[key] === oldProps[key])
2313
- continue;
2314
- if (key.indexOf("on") == 0 && this.survey[key] && this.survey[key].add) {
2315
- if (!!oldProps[key]) {
2316
- this.survey[key].remove(oldProps[key]);
2317
- }
2318
- this.survey[key].add(newProps[key]);
2319
- }
2320
- else {
2321
- this.survey[key] = newProps[key];
2322
- }
2323
- }
2325
+ getShowErrors() {
2326
+ return this.question.isVisible;
2324
2327
  }
2325
- setSurveyEvents() {
2326
- var self = this;
2327
- this.survey.renderCallback = function () {
2328
- var counter = !!self.state && !!self.state.modelChanged ? self.state.modelChanged : 0;
2329
- self.setState({ modelChanged: counter + 1 });
2330
- };
2331
- this.survey.onPartialSend.add((sender) => {
2332
- if (!!self.state) {
2333
- self.setState(self.state);
2328
+ renderQuestion() {
2329
+ return SurveyQuestion.renderQuestionBody(this.creator, this.question);
2330
+ }
2331
+ }
2332
+ class SurveyQuestionAndErrorsCell extends SurveyQuestionAndErrorsWrapped {
2333
+ constructor(props) {
2334
+ super(props);
2335
+ this.cellRef = React.createRef();
2336
+ }
2337
+ componentWillUnmount() {
2338
+ super.componentWillUnmount();
2339
+ if (this.question) {
2340
+ var el = this.cellRef.current;
2341
+ if (!!el) {
2342
+ el.removeAttribute("data-rendered");
2334
2343
  }
2335
- });
2344
+ }
2336
2345
  }
2337
- //ISurveyCreator
2338
- createQuestionElement(question) {
2339
- return ReactQuestionFactory.Instance.createQuestion(question.isDefaultRendering() ? question.getTemplate() : question.getComponentName(), {
2340
- question: question,
2341
- isDisplayMode: question.isInputReadOnly,
2342
- creator: this,
2343
- });
2346
+ renderCellContent() {
2347
+ return (React.createElement("div", { className: this.props.cell.cellQuestionWrapperClassName }, this.renderQuestion()));
2344
2348
  }
2345
- renderError(key, error, cssClasses, element) {
2346
- return ReactElementFactory.Instance.createElement(this.survey.questionErrorComponent, { key: key, error, cssClasses, element });
2349
+ renderElement() {
2350
+ var style = this.getCellStyle();
2351
+ const cell = this.props.cell;
2352
+ const focusIn = () => { cell.focusIn(); };
2353
+ return (React.createElement("td", { ref: this.cellRef, className: this.itemCss, colSpan: cell.colSpans, title: cell.getTitle(), style: style, onFocus: focusIn }, this.wrapCell(this.props.cell, this.renderCellContent())));
2347
2354
  }
2348
- questionTitleLocation() {
2349
- return this.survey.questionTitleLocation;
2355
+ getCellStyle() {
2356
+ return null;
2350
2357
  }
2351
- questionErrorLocation() {
2352
- return this.survey.questionErrorLocation;
2358
+ getHeaderText() {
2359
+ return "";
2353
2360
  }
2354
- }
2355
- ReactElementFactory.Instance.registerElement("survey", (props) => {
2356
- return React.createElement(Survey, props);
2357
- });
2358
- function attachKey2click(element, viewModel, options = { processEsc: true, disableTabStop: false }) {
2359
- if ((!!viewModel && viewModel.disableTabStop) || (!!options && options.disableTabStop)) {
2360
- return React.cloneElement(element, { tabIndex: -1 });
2361
+ wrapCell(cell, element) {
2362
+ if (!cell) {
2363
+ return element;
2364
+ }
2365
+ const survey = this.question.survey;
2366
+ let wrapper = null;
2367
+ if (survey) {
2368
+ wrapper = ReactSurveyElementsWrapper.wrapMatrixCell(survey, element, cell, this.props.reason);
2369
+ }
2370
+ return wrapper !== null && wrapper !== void 0 ? wrapper : element;
2361
2371
  }
2362
- options = Object.assign({}, options);
2363
- return React.cloneElement(element, {
2364
- tabIndex: 0,
2365
- onKeyUp: (evt) => {
2366
- evt.preventDefault();
2367
- evt.stopPropagation();
2368
- doKey2ClickUp(evt, options);
2369
- return false;
2370
- },
2371
- onKeyDown: (evt) => doKey2ClickDown(evt, options),
2372
- onBlur: (evt) => doKey2ClickBlur(evt),
2373
- });
2374
2372
  }
2375
-
2376
- class SurveyNavigationBase extends React.Component {
2373
+ class SurveyQuestionErrorCell extends React.Component {
2377
2374
  constructor(props) {
2378
2375
  super(props);
2379
- this.updateStateFunction = null;
2380
- this.state = { update: 0 };
2376
+ this.state = {
2377
+ changed: 0
2378
+ };
2379
+ if (this.question) {
2380
+ this.registerCallback(this.question);
2381
+ }
2381
2382
  }
2382
- get survey() {
2383
- return this.props.survey;
2383
+ get question() {
2384
+ return this.props.question;
2384
2385
  }
2385
- get css() {
2386
- return this.props.css || this.survey.css;
2386
+ update() {
2387
+ this.setState({ changed: this.state.changed + 1 });
2387
2388
  }
2388
- componentDidMount() {
2389
- if (this.survey) {
2390
- var self = this;
2391
- this.updateStateFunction = function () {
2392
- self.setState({ update: self.state.update + 1 });
2393
- };
2394
- this.survey.onPageVisibleChanged.add(this.updateStateFunction);
2389
+ getQuestionPropertiesToTrack() {
2390
+ return ["errors"];
2391
+ }
2392
+ registerCallback(question) {
2393
+ question.registerFunctionOnPropertiesValueChanged(this.getQuestionPropertiesToTrack(), () => {
2394
+ this.update();
2395
+ }, "__reactSubscription");
2396
+ }
2397
+ unRegisterCallback(question) {
2398
+ question.unRegisterFunctionOnPropertiesValueChanged(this.getQuestionPropertiesToTrack(), "__reactSubscription");
2399
+ }
2400
+ componentDidUpdate(prevProps) {
2401
+ if (prevProps.question && prevProps.question !== this.question) {
2402
+ this.unRegisterCallback(prevProps.cell);
2403
+ }
2404
+ if (this.question) {
2405
+ this.registerCallback(this.question);
2395
2406
  }
2396
2407
  }
2397
2408
  componentWillUnmount() {
2398
- if (this.survey && this.updateStateFunction) {
2399
- this.survey.onPageVisibleChanged.remove(this.updateStateFunction);
2400
- this.updateStateFunction = null;
2409
+ if (this.question) {
2410
+ this.unRegisterCallback(this.question);
2401
2411
  }
2402
2412
  }
2413
+ render() {
2414
+ return React.createElement(SurveyElementErrors, { element: this.question, creator: this.props.creator, cssClasses: this.question.cssClasses });
2415
+ }
2403
2416
  }
2404
2417
 
2405
- class SurveyTimerPanel extends ReactSurveyElement {
2418
+ class SurveyPage extends SurveyPanelBase {
2406
2419
  constructor(props) {
2407
2420
  super(props);
2408
- this.circleLength = 440;
2409
2421
  }
2410
- getStateElement() {
2411
- return this.timerModel;
2422
+ getPanelBase() {
2423
+ return this.props.page;
2412
2424
  }
2413
- get timerModel() {
2414
- return this.props.model;
2425
+ get page() {
2426
+ return this.panelBase;
2415
2427
  }
2416
- get progress() {
2417
- return -this.timerModel.progress * this.circleLength;
2428
+ renderElement() {
2429
+ var title = this.renderTitle();
2430
+ var description = this.renderDescription();
2431
+ var rows = this.renderRows(this.panelBase.cssClasses);
2432
+ const errors = (React.createElement(SurveyElementErrors, { element: this.panelBase, cssClasses: this.panelBase.cssClasses, creator: this.creator }));
2433
+ return (React.createElement("div", { ref: this.rootRef, className: this.page.cssRoot },
2434
+ title,
2435
+ description,
2436
+ errors,
2437
+ rows));
2418
2438
  }
2419
- render() {
2420
- if (!this.timerModel.isRunning) {
2439
+ renderTitle() {
2440
+ return React.createElement(TitleElement, { element: this.page });
2441
+ }
2442
+ renderDescription() {
2443
+ if (!this.page._showDescription)
2421
2444
  return null;
2422
- }
2423
- let result = React.createElement("div", { className: this.timerModel.survey.getCss().timerRoot }, this.timerModel.text);
2424
- if (this.timerModel.showTimerAsClock) {
2425
- let style = { strokeDasharray: this.circleLength, strokeDashoffset: this.progress };
2426
- const progress = (this.timerModel.showProgress ? React.createElement(SvgIcon, { className: this.timerModel.getProgressCss(), style: style, iconName: "icon-timercircle", size: "auto" }) : null);
2427
- result =
2428
- (React.createElement("div", { className: this.timerModel.rootCss },
2429
- progress,
2430
- React.createElement("div", { className: this.timerModel.textContainerCss },
2431
- React.createElement("span", { className: this.timerModel.majorTextCss }, this.timerModel.clockMajorText),
2432
- (this.timerModel.clockMinorText ? React.createElement("span", { className: this.timerModel.minorTextCss }, this.timerModel.clockMinorText) : null))));
2433
- }
2434
- return result;
2445
+ var text = SurveyElementBase.renderLocString(this.page.locDescription);
2446
+ return (React.createElement("div", { className: this.panelBase.cssClasses.page.description }, text));
2435
2447
  }
2436
2448
  }
2437
- ReactElementFactory.Instance.registerElement("sv-timerpanel", (props) => {
2438
- return React.createElement(SurveyTimerPanel, props);
2449
+ ReactElementFactory.Instance.registerElement("sv-page", (props) => {
2450
+ return React.createElement(SurveyPage, props);
2439
2451
  });
2440
2452
 
2441
2453
  class SurveyPanel extends SurveyPanelBase {
@@ -2638,7 +2650,7 @@ ReactElementFactory.Instance.registerElement("flowpanel", props => {
2638
2650
  return React.createElement(SurveyFlowPanel, props);
2639
2651
  });
2640
2652
 
2641
- class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
2653
+ class SurveyQuestionSelectbase extends SurveyQuestionElementBase {
2642
2654
  constructor(props) {
2643
2655
  super(props);
2644
2656
  }
@@ -2648,29 +2660,29 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
2648
2660
  renderElement() {
2649
2661
  var cssClasses = this.question.cssClasses;
2650
2662
  return (React.createElement("fieldset", { className: this.question.getSelectBaseRootCss(), ref: (fieldset) => (this.setControl(fieldset)), role: this.question.a11y_input_ariaRole, "aria-required": this.question.a11y_input_ariaRequired, "aria-label": this.question.a11y_input_ariaLabel, "aria-labelledby": this.question.a11y_input_ariaLabelledBy, "aria-describedby": this.question.a11y_input_ariaDescribedBy, "aria-invalid": this.question.a11y_input_ariaInvalid, "aria-errormessage": this.question.a11y_input_ariaErrormessage },
2651
- React.createElement("legend", { className: "sv-hidden" }, this.question.locTitle.renderedHtml),
2652
- this.getHeader(),
2663
+ this.renderHeader(),
2653
2664
  this.question.hasColumns
2654
2665
  ? this.getColumnedBody(cssClasses)
2655
2666
  : this.getBody(cssClasses),
2656
2667
  this.getFooter()));
2657
2668
  }
2658
- getHeader() {
2659
- if (this.question.hasHeadItems) {
2660
- return this.question.headItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
2661
- }
2662
- }
2669
+ renderHeader() { return null; }
2663
2670
  getFooter() {
2664
2671
  if (this.question.hasFootItems) {
2665
- return this.question.footItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
2672
+ const items = this.question.footItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
2673
+ return React.createElement(React.Fragment, null, items);
2666
2674
  }
2675
+ return null;
2667
2676
  }
2677
+ getStateValue() { return undefined; }
2678
+ isItemChecked(item, value) { return false; }
2668
2679
  getColumnedBody(cssClasses) {
2669
2680
  return (React.createElement("div", { className: cssClasses.rootMultiColumn }, this.getColumns(cssClasses)));
2670
2681
  }
2671
2682
  getColumns(cssClasses) {
2683
+ const value = this.getStateValue();
2672
2684
  return this.question.columns.map((column, ci) => {
2673
- var items = column.map((item, ii) => this.renderItem(item, ci === 0 && ii === 0, cssClasses, "" + ci + ii));
2685
+ var items = column.map((item, ii) => this.renderItem(item, ci === 0 && ii === 0, cssClasses, "" + ci + ii, this.isItemChecked(item, value)));
2674
2686
  return (React.createElement("div", { key: "column" + ci + this.question.getItemsColumnKey(column), className: this.question.getColumnClass(), role: "presentation" }, items));
2675
2687
  });
2676
2688
  }
@@ -2683,22 +2695,23 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
2683
2695
  }
2684
2696
  }
2685
2697
  getItems(cssClasses, choices) {
2686
- var renderedItems = [];
2687
- for (var i = 0; i < choices.length; i++) {
2688
- var item = choices[i];
2689
- var renderedItem = this.renderItem(item, i == 0, cssClasses, "" + i);
2698
+ const items = [];
2699
+ const value = this.getStateValue();
2700
+ for (let i = 0; i < choices.length; i++) {
2701
+ const item = choices[i];
2702
+ const renderedItem = this.renderItem(item, i == 0, cssClasses, "" + i, this.isItemChecked(item, value));
2690
2703
  if (!!renderedItem) {
2691
- renderedItems.push(renderedItem);
2704
+ items.push(renderedItem);
2692
2705
  }
2693
2706
  }
2694
- return renderedItems;
2707
+ return items;
2695
2708
  }
2696
2709
  get textStyle() {
2697
2710
  return null;
2698
2711
  }
2699
- renderItem(item, isFirst, cssClasses, index) {
2712
+ renderItem(item, isFirst, cssClasses, index, isChecked) {
2700
2713
  const renderedItem = ReactElementFactory.Instance.createElement(this.question.itemComponent, {
2701
- key: item.value,
2714
+ key: item.uniqueId,
2702
2715
  question: this.question,
2703
2716
  cssClasses: cssClasses,
2704
2717
  isDisplayMode: this.isDisplayMode,
@@ -2706,6 +2719,8 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
2706
2719
  textStyle: this.textStyle,
2707
2720
  index: index,
2708
2721
  isFirst: isFirst,
2722
+ isChecked: isChecked,
2723
+ creator: this.props.creator,
2709
2724
  });
2710
2725
  const survey = this.question.survey;
2711
2726
  let wrappedItem = null;
@@ -2715,11 +2730,11 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
2715
2730
  return wrappedItem !== null && wrappedItem !== void 0 ? wrappedItem : renderedItem;
2716
2731
  }
2717
2732
  }
2718
- class SurveyQuestionCheckboxItem extends ReactSurveyElement {
2733
+ class SurveyQuestionSelectBaseItem extends ReactSurveyElement {
2719
2734
  constructor(props) {
2720
2735
  super(props);
2721
2736
  this.handleOnChange = (event) => {
2722
- this.question.clickItemHandler(this.item, event.target.checked);
2737
+ this.doOnItemChange(event);
2723
2738
  };
2724
2739
  this.rootRef = React.createRef();
2725
2740
  }
@@ -2766,15 +2781,19 @@ class SurveyQuestionCheckboxItem extends ReactSurveyElement {
2766
2781
  !!this.question.customWidget.widgetJson.isDefaultRender ||
2767
2782
  !!this.question.customWidget.widgetJson.render);
2768
2783
  }
2784
+ doOnItemChange(event) { }
2769
2785
  canRender() {
2770
2786
  return !!this.item && !!this.question;
2771
2787
  }
2772
2788
  renderElement() {
2773
- const isChecked = this.question.isItemSelected(this.item);
2774
2789
  return React.createElement(React.Fragment, null,
2775
- this.renderCheckbox(isChecked, null),
2790
+ this.renderElementContent(),
2791
+ this.renderPanel(),
2776
2792
  this.renderComment());
2777
2793
  }
2794
+ renderElementContent() {
2795
+ return null;
2796
+ }
2778
2797
  get inputStyle() {
2779
2798
  return null; //{ marginRight: "3px" };
2780
2799
  }
@@ -2784,7 +2803,61 @@ class SurveyQuestionCheckboxItem extends ReactSurveyElement {
2784
2803
  return React.createElement("div", { className: this.question.getCommentAreaCss(true) },
2785
2804
  React.createElement(SurveyQuestionCommentValueItem, { question: this.question, item: this.item, cssClasses: this.question.cssClasses }));
2786
2805
  }
2787
- renderCheckbox(isChecked, otherItem) {
2806
+ renderPanel() {
2807
+ if (this.item.isPanelShowing) {
2808
+ const panel = this.item.panel;
2809
+ return (React.createElement(SurveyPanel, { key: panel.id, element: panel, survey: this.question.survey, cssClasses: this.props.cssClasses, isDisplayMode: this.isDisplayMode, creator: this.props.creator }));
2810
+ }
2811
+ return null;
2812
+ }
2813
+ componentDidMount() {
2814
+ super.componentDidMount();
2815
+ if (!this.question.isDesignMode) {
2816
+ this.item.setRootElement(this.rootRef.current);
2817
+ }
2818
+ }
2819
+ componentWillUnmount() {
2820
+ super.componentWillUnmount();
2821
+ if (!this.question.isDesignMode) {
2822
+ this.item.setRootElement(undefined);
2823
+ }
2824
+ }
2825
+ }
2826
+
2827
+ class SurveyQuestionCheckbox extends SurveyQuestionSelectbase {
2828
+ constructor(props) {
2829
+ super(props);
2830
+ }
2831
+ get question() {
2832
+ return this.questionBase;
2833
+ }
2834
+ renderHeader() {
2835
+ return React.createElement(React.Fragment, null,
2836
+ React.createElement("legend", { className: "sv-hidden" }, this.question.locTitle.renderedHtml),
2837
+ this.getHeader());
2838
+ }
2839
+ getHeader() {
2840
+ if (this.question.hasHeadItems) {
2841
+ return this.question.headItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
2842
+ }
2843
+ return null;
2844
+ }
2845
+ }
2846
+ class SurveyQuestionCheckboxItem extends SurveyQuestionSelectBaseItem {
2847
+ constructor(props) {
2848
+ super(props);
2849
+ }
2850
+ doOnItemChange(event) {
2851
+ this.question.clickItemHandler(this.item, event.target.checked);
2852
+ }
2853
+ renderElementContent() {
2854
+ const isChecked = this.question.isItemSelected(this.item);
2855
+ return this.renderCheckbox(isChecked);
2856
+ }
2857
+ get inputStyle() {
2858
+ return null; //{ marginRight: "3px" };
2859
+ }
2860
+ renderCheckbox(isChecked) {
2788
2861
  const id = this.question.getItemId(this.item);
2789
2862
  const itemClass = this.question.getItemClass(this.item);
2790
2863
  const labelClass = this.question.getLabelClass(this.item);
@@ -2798,20 +2871,7 @@ class SurveyQuestionCheckboxItem extends ReactSurveyElement {
2798
2871
  React.createElement("use", { xlinkHref: this.question.itemSvgIcon })) :
2799
2872
  null) :
2800
2873
  null,
2801
- itemLabel),
2802
- otherItem));
2803
- }
2804
- componentDidMount() {
2805
- super.componentDidMount();
2806
- if (!this.question.isDesignMode) {
2807
- this.item.setRootElement(this.rootRef.current);
2808
- }
2809
- }
2810
- componentWillUnmount() {
2811
- super.componentWillUnmount();
2812
- if (!this.question.isDesignMode) {
2813
- this.item.setRootElement(undefined);
2814
- }
2874
+ itemLabel)));
2815
2875
  }
2816
2876
  }
2817
2877
  ReactElementFactory.Instance.registerElement("survey-checkbox-item", (props) => {
@@ -2871,7 +2931,7 @@ class SurveyQuestionRanking extends SurveyQuestionElementBase {
2871
2931
  const index = i;
2872
2932
  const indexText = this.question.getNumberByIndex(index);
2873
2933
  const tabIndex = this.question.getItemTabIndex(item);
2874
- const renderedItem = (React.createElement(SurveyQuestionRankingItem, { key: item.value, text: text, index: index, indexText: indexText, itemTabIndex: tabIndex, handleKeydown: handleKeydown, handlePointerDown: handlePointerDown, handlePointerUp: handlePointerUp, cssClasses: cssClasses, itemClass: itemClass, question: question, unrankedItem: unrankedItem, item: item }));
2934
+ const renderedItem = (React.createElement(SurveyQuestionRankingItem, { key: item.uniqueId, text: text, index: index, indexText: indexText, itemTabIndex: tabIndex, handleKeydown: handleKeydown, handlePointerDown: handlePointerDown, handlePointerUp: handlePointerUp, cssClasses: cssClasses, itemClass: itemClass, question: question, unrankedItem: unrankedItem, item: item }));
2875
2935
  const survey = this.question.survey;
2876
2936
  let wrappedItem = null;
2877
2937
  if (!!survey) {
@@ -3251,7 +3311,7 @@ class SurveyQuestionDropdownBase extends SurveyQuestionUncontrolledElement {
3251
3311
  renderOther(item, cssClasses) {
3252
3312
  if (!item || !item.isCommentShowing)
3253
3313
  return null;
3254
- return (React.createElement("div", { key: item.normalizedId, className: this.question.getCommentAreaCss(true) },
3314
+ return (React.createElement("div", { key: item.uniqueId, className: this.question.getCommentAreaCss(true) },
3255
3315
  React.createElement(SurveyQuestionCommentValueItem, { question: this.question, item: item, cssClasses: this.question.cssClasses })));
3256
3316
  }
3257
3317
  renderEditorButtons() {
@@ -3374,7 +3434,7 @@ class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
3374
3434
  React.createElement("div", { id: this.question.inputId, className: this.question.getControlClass(), disabled: true }, this.question.readOnlyText)) :
3375
3435
  (React.createElement("select", { id: this.question.inputId, className: this.question.getControlClass(), ref: (select) => (this.setControl(select)), autoComplete: this.question.autocomplete, onChange: this.updateValueOnEvent, onInput: this.updateValueOnEvent, onClick: click, onKeyUp: keyup, "aria-required": this.question.a11y_input_ariaRequired, "aria-label": this.question.a11y_input_ariaLabel, "aria-invalid": this.question.a11y_input_ariaInvalid, "aria-errormessage": this.question.a11y_input_ariaErrormessage, required: this.question.isRequired },
3376
3436
  this.question.allowClear ? (React.createElement("option", { value: "" }, this.question.placeholder)) : null,
3377
- this.question.visibleChoices.map((item, i) => React.createElement(SurveyQuestionOptionItem, { key: "item" + i, item: item }))));
3437
+ this.question.visibleChoices.map((item) => React.createElement(SurveyQuestionOptionItem, { key: item.uniqueId, item: item }))));
3378
3438
  return (React.createElement("div", { className: cssClasses.selectWrapper },
3379
3439
  selectElement,
3380
3440
  this.createChevronButton()));
@@ -3420,21 +3480,19 @@ class SurveyQuestionMatrix extends SurveyQuestionElementBase {
3420
3480
  var headers = [];
3421
3481
  for (var i = 0; i < this.question.visibleColumns.length; i++) {
3422
3482
  var column = this.question.visibleColumns[i];
3423
- var key = "column" + i;
3424
3483
  var columText = this.renderLocString(column.locText);
3425
3484
  const style = {};
3426
3485
  if (!!this.question.columnMinWidth) {
3427
3486
  style.minWidth = this.question.columnMinWidth;
3428
3487
  style.width = this.question.columnMinWidth;
3429
3488
  }
3430
- headers.push(React.createElement("th", { className: this.question.cssClasses.headerCell, style: style, key: key }, this.wrapCell({ column: column }, columText, "column-header")));
3489
+ headers.push(React.createElement("th", { className: this.question.cssClasses.headerCell, style: style, key: column.uniqueId }, this.wrapCell({ column: column }, columText, "column-header")));
3431
3490
  }
3432
3491
  var rows = [];
3433
3492
  var visibleRows = this.question.visibleRows;
3434
3493
  for (var i = 0; i < visibleRows.length; i++) {
3435
3494
  var row = visibleRows[i];
3436
- var key = "row-" + row.name + "-" + i;
3437
- rows.push(React.createElement(SurveyQuestionMatrixRow, { key: key, question: this.question, cssClasses: cssClasses, row: row, isFirst: i == 0 }));
3495
+ rows.push(React.createElement(SurveyQuestionMatrixRow, { key: row.uniqueId, question: this.question, cssClasses: cssClasses, row: row, isFirst: i == 0 }));
3438
3496
  }
3439
3497
  var header = !this.question.showHeader ? null : (React.createElement("thead", { role: "presentation" },
3440
3498
  React.createElement("tr", null,
@@ -3500,7 +3558,7 @@ class SurveyQuestionMatrixRow extends ReactSurveyElement {
3500
3558
  for (var i = 0; i < this.question.visibleColumns.length; i++) {
3501
3559
  let td = null;
3502
3560
  const column = this.question.visibleColumns[i];
3503
- const key = "value" + i;
3561
+ const key = column.uniqueId;
3504
3562
  let itemClass = this.question.getItemClass(row, column);
3505
3563
  if (this.question.hasCellText) {
3506
3564
  const getHandler = (column) => () => this.cellClick(row, column);
@@ -3799,7 +3857,7 @@ class SurveyQuestionMultipleText extends SurveyQuestionElementBase {
3799
3857
  else {
3800
3858
  cellContent = React.createElement(SurveyMultipleTextItem, { question: this.question, item: cell.item, creator: this.creator, cssClasses: cssClasses });
3801
3859
  }
3802
- return (React.createElement("td", { key: "item" + index, className: cell.className, onFocus: focusIn }, cellContent));
3860
+ return (React.createElement("td", { key: cell.item.id, className: cell.className, onFocus: focusIn }, cellContent));
3803
3861
  }
3804
3862
  renderRow(rowIndex, cells, cssClasses) {
3805
3863
  const key = "item" + rowIndex;
@@ -3847,90 +3905,32 @@ ReactQuestionFactory.Instance.registerQuestion("multipletext", (props) => {
3847
3905
  return React.createElement(SurveyQuestionMultipleText, props);
3848
3906
  });
3849
3907
 
3850
- class SurveyQuestionRadiogroup extends SurveyQuestionElementBase {
3908
+ class SurveyQuestionRadiogroup extends SurveyQuestionSelectbase {
3851
3909
  constructor(props) {
3852
3910
  super(props);
3853
3911
  }
3854
3912
  get question() {
3855
3913
  return this.questionBase;
3856
3914
  }
3857
- renderElement() {
3858
- var cssClasses = this.question.cssClasses;
3859
- var clearButton = null;
3860
- if (this.question.showClearButtonInContent) {
3861
- clearButton = (React.createElement("div", null,
3862
- React.createElement("input", { type: "button", className: this.question.cssClasses.clearButton, onClick: () => this.question.clearValue(true), value: this.question.clearButtonCaption })));
3863
- }
3864
- return (React.createElement("fieldset", { className: this.question.getSelectBaseRootCss(), ref: (fieldset) => (this.setControl(fieldset)), role: this.question.a11y_input_ariaRole, "aria-required": this.question.a11y_input_ariaRequired, "aria-label": this.question.a11y_input_ariaLabel, "aria-labelledby": this.question.a11y_input_ariaLabelledBy, "aria-describedby": this.question.a11y_input_ariaDescribedBy, "aria-invalid": this.question.a11y_input_ariaInvalid, "aria-errormessage": this.question.a11y_input_ariaErrormessage },
3865
- this.question.hasColumns
3866
- ? this.getColumnedBody(cssClasses)
3867
- : this.getBody(cssClasses),
3868
- this.getFooter(),
3869
- clearButton));
3870
- }
3871
3915
  getFooter() {
3872
- if (this.question.hasFootItems) {
3873
- return this.question.footItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
3874
- }
3875
- }
3876
- getColumnedBody(cssClasses) {
3877
- return (React.createElement("div", { className: cssClasses.rootMultiColumn }, this.getColumns(cssClasses)));
3878
- }
3879
- getColumns(cssClasses) {
3880
- var value = this.getStateValue();
3881
- return this.question.columns.map((column, ci) => {
3882
- var items = column.map((item, ii) => this.renderItem(item, value, cssClasses, "" + ci + ii));
3883
- return (React.createElement("div", { key: "column" + ci + this.question.getItemsColumnKey(column), className: this.question.getColumnClass(), role: "presentation" }, items));
3884
- });
3885
- }
3886
- getBody(cssClasses) {
3887
- if (this.question.blockedRow) {
3888
- return React.createElement("div", { className: cssClasses.rootRow }, this.getItems(cssClasses, this.question.dataChoices));
3889
- }
3890
- else {
3891
- return React.createElement(React.Fragment, null, this.getItems(cssClasses, this.question.bodyItems));
3892
- }
3893
- }
3894
- getItems(cssClasses, choices) {
3895
- var items = [];
3896
- var value = this.getStateValue();
3897
- for (var i = 0; i < choices.length; i++) {
3898
- var item = choices[i];
3899
- var renderedItem = this.renderItem(item, value, cssClasses, "" + i);
3900
- items.push(renderedItem);
3901
- }
3902
- return items;
3903
- }
3904
- get textStyle() {
3905
- return null; //{ display: "inline", position: "static" };
3916
+ return React.createElement(React.Fragment, null,
3917
+ super.getFooter(),
3918
+ this.renderClearButton());
3906
3919
  }
3907
- renderItem(item, value, cssClasses, index) {
3908
- const renderedItem = ReactElementFactory.Instance.createElement(this.question.itemComponent, {
3909
- key: item.value,
3910
- question: this.question,
3911
- cssClasses: cssClasses,
3912
- isDisplayMode: this.isDisplayMode,
3913
- item: item,
3914
- textStyle: this.textStyle,
3915
- index: index,
3916
- isChecked: value === item.value,
3917
- });
3918
- const survey = this.question.survey;
3919
- let wrappedItem = null;
3920
- if (!!survey) {
3921
- wrappedItem = ReactSurveyElementsWrapper.wrapItemValue(survey, renderedItem, this.question, item);
3922
- }
3923
- return wrappedItem !== null && wrappedItem !== void 0 ? wrappedItem : renderedItem;
3920
+ renderClearButton() {
3921
+ if (!this.question.showClearButtonInContent)
3922
+ return null;
3923
+ return (React.createElement("div", null,
3924
+ React.createElement("input", { type: "button", className: this.question.cssClasses.clearButton, onClick: () => this.question.clearValueFromUI(), value: this.question.clearButtonCaption })));
3924
3925
  }
3925
3926
  getStateValue() {
3926
3927
  return !this.question.isEmpty() ? this.question.renderedValue : "";
3927
3928
  }
3929
+ isItemChecked(item, value) { return item.value === value; }
3928
3930
  }
3929
- class SurveyQuestionRadioItem extends ReactSurveyElement {
3931
+ class SurveyQuestionRadioItem extends SurveyQuestionSelectBaseItem {
3930
3932
  constructor(props) {
3931
3933
  super(props);
3932
- this.rootRef = React.createRef();
3933
- this.handleOnChange = this.handleOnChange.bind(this);
3934
3934
  this.handleOnMouseDown = this.handleOnMouseDown.bind(this);
3935
3935
  }
3936
3936
  getStateElement() {
@@ -3939,64 +3939,17 @@ class SurveyQuestionRadioItem extends ReactSurveyElement {
3939
3939
  get question() {
3940
3940
  return this.props.question;
3941
3941
  }
3942
- get item() {
3943
- return this.props.item;
3944
- }
3945
- get textStyle() {
3946
- return this.props.textStyle;
3947
- }
3948
- get index() {
3949
- return this.props.index;
3950
- }
3951
3942
  get isChecked() {
3952
3943
  return this.props.isChecked;
3953
3944
  }
3954
- get hideCaption() {
3955
- return this.props.hideCaption === true;
3956
- }
3957
- get ariaLabel() {
3958
- return this.props.ariaLabel || null;
3959
- }
3960
- shouldComponentUpdate(nextProps, nextState) {
3961
- if (!super.shouldComponentUpdate(nextProps, nextState))
3962
- return false;
3963
- if (!this.question)
3964
- return false;
3965
- return (!this.question.customWidget ||
3966
- !!this.question.customWidgetData.isNeedRender ||
3967
- !!this.question.customWidget.widgetJson.isDefaultRender ||
3968
- !!this.question.customWidget.widgetJson.render);
3969
- }
3970
- handleOnChange(event) {
3945
+ doOnItemChange(event) {
3971
3946
  this.question.clickItemHandler(this.item);
3972
3947
  }
3973
3948
  handleOnMouseDown(event) {
3974
3949
  this.question.onMouseDown();
3975
3950
  }
3976
- canRender() {
3977
- return !!this.question && !!this.item;
3978
- }
3979
- componentDidUpdate(prevProps, prevState) {
3980
- super.componentDidUpdate(prevProps, prevState);
3981
- if (prevProps.item !== this.props.item && !this.question.isDesignMode) {
3982
- if (this.props.item) {
3983
- this.props.item.setRootElement(this.rootRef.current);
3984
- }
3985
- if (prevProps.item) {
3986
- prevProps.item.setRootElement(undefined);
3987
- }
3988
- }
3989
- }
3990
- renderElement() {
3991
- return React.createElement(React.Fragment, null,
3992
- this.renderRadioButton(),
3993
- this.renderComment());
3994
- }
3995
- renderComment() {
3996
- if (!this.item.isCommentShowing)
3997
- return null;
3998
- return React.createElement("div", { className: this.question.getCommentAreaCss(true) },
3999
- React.createElement(SurveyQuestionCommentValueItem, { question: this.question, item: this.item, cssClasses: this.question.cssClasses }));
3951
+ renderElementContent() {
3952
+ return this.renderRadioButton();
4000
3953
  }
4001
3954
  renderRadioButton() {
4002
3955
  var itemClass = this.question.getItemClass(this.item);
@@ -4014,18 +3967,6 @@ class SurveyQuestionRadioItem extends ReactSurveyElement {
4014
3967
  null,
4015
3968
  itemLabel)));
4016
3969
  }
4017
- componentDidMount() {
4018
- super.componentDidMount();
4019
- if (!this.question.isDesignMode) {
4020
- this.item.setRootElement(this.rootRef.current);
4021
- }
4022
- }
4023
- componentWillUnmount() {
4024
- super.componentWillUnmount();
4025
- if (!this.question.isDesignMode) {
4026
- this.item.setRootElement(undefined);
4027
- }
4028
- }
4029
3970
  }
4030
3971
  ReactElementFactory.Instance.registerElement("survey-radiogroup-item", (props) => {
4031
3972
  return React.createElement(SurveyQuestionRadioItem, props);
@@ -4705,7 +4646,8 @@ class SurveyQuestionMatrixDynamicAddButton extends ReactSurveyElement {
4705
4646
  const addRowText = this.renderLocString(this.matrix.locAddRowText);
4706
4647
  const addButton = (React.createElement("button", { className: this.matrix.getAddRowButtonCss(this.props.isEmptySection), type: "button", disabled: this.matrix.isInputReadOnly, onClick: this.matrix.isDesignMode ? undefined : this.handleOnRowAddClick },
4707
4648
  addRowText,
4708
- React.createElement("span", { className: this.props.cssClasses.iconAdd })));
4649
+ React.createElement("span", { className: this.props.cssClasses.iconAdd }, this.cssClasses.iconAddId && React.createElement("svg", null,
4650
+ React.createElement("use", { xlinkHref: this.cssClasses.iconAddId })))));
4709
4651
  return (this.props.isEmptySection ? addButton : React.createElement("div", { className: this.props.cssClasses.footer }, addButton));
4710
4652
  }
4711
4653
  }
@@ -4981,11 +4923,12 @@ ReactElementFactory.Instance.registerElement("sv-progress-buttons", (props) => {
4981
4923
  });
4982
4924
 
4983
4925
  class ListItem extends SurveyElementBase {
4984
- constructor() {
4985
- super(...arguments);
4926
+ constructor(props) {
4927
+ super(props);
4986
4928
  this.handleKeydown = (event) => {
4987
4929
  this.model.onKeyDown(event);
4988
4930
  };
4931
+ this.elementRef = React.createRef();
4989
4932
  }
4990
4933
  get model() {
4991
4934
  return this.props.model;
@@ -5002,7 +4945,7 @@ class ListItem extends SurveyElementBase {
5002
4945
  const className = this.model.getItemClass(this.item);
5003
4946
  const itemContent = this.item.component || this.model.itemComponent;
5004
4947
  const newElement = ReactElementFactory.Instance.createElement(itemContent, { item: this.item, key: this.item.id, model: this.model });
5005
- const contentWrap = React.createElement("div", { style: this.model.getItemStyle(this.item), className: this.model.cssClasses.itemBody, title: this.item.getTooltip(), onMouseOver: (event) => { this.model.onItemHover(this.item); }, onMouseLeave: (event) => { this.model.onItemLeave(this.item); } }, newElement);
4948
+ const contentWrap = React.createElement("div", { ref: this.elementRef, style: this.model.getItemStyle(this.item), className: this.model.cssClasses.itemBody, title: this.item.getTooltip(), onMouseOver: (event) => { this.model.onItemHover(this.item); }, onMouseLeave: (event) => { this.model.onItemLeave(this.item); } }, newElement);
5006
4949
  const separator = this.item.needSeparator ? React.createElement("div", { className: this.model.cssClasses.itemSeparator }) : null;
5007
4950
  const isVisible = this.model.isItemVisible(this.item);
5008
4951
  const style = {
@@ -5016,8 +4959,9 @@ class ListItem extends SurveyElementBase {
5016
4959
  contentWrap), this.item);
5017
4960
  }
5018
4961
  componentDidMount() {
4962
+ var _a;
5019
4963
  super.componentDidMount();
5020
- this.model.onLastItemRended(this.item);
4964
+ this.model.onItemRended(this.item, (_a = this.elementRef) === null || _a === void 0 ? void 0 : _a.current);
5021
4965
  }
5022
4966
  }
5023
4967
  ReactElementFactory.Instance.registerElement("sv-list-item", (props) => {
@@ -5432,7 +5376,7 @@ class SurveyQuestionImagePicker extends SurveyQuestionElementBase {
5432
5376
  }
5433
5377
  getColumns(cssClasses) {
5434
5378
  return this.question.columns.map((column, ci) => {
5435
- var items = column.map((item, ii) => this.renderItem("item" + ii, item, cssClasses));
5379
+ var items = column.map((item, ii) => this.renderItem(item, cssClasses));
5436
5380
  return (React.createElement("div", { key: "column" + ci + this.question.getItemsColumnKey(column), className: this.question.getColumnClass(), role: "presentation" }, items));
5437
5381
  });
5438
5382
  }
@@ -5440,16 +5384,15 @@ class SurveyQuestionImagePicker extends SurveyQuestionElementBase {
5440
5384
  var items = [];
5441
5385
  for (var i = 0; i < this.question.visibleChoices.length; i++) {
5442
5386
  var item = this.question.visibleChoices[i];
5443
- var key = "item" + i;
5444
- items.push(this.renderItem(key, item, cssClasses));
5387
+ items.push(this.renderItem(item, cssClasses));
5445
5388
  }
5446
5389
  return items;
5447
5390
  }
5448
5391
  get textStyle() {
5449
5392
  return { marginLeft: "3px", display: "inline", position: "static" };
5450
5393
  }
5451
- renderItem(key, item, cssClasses) {
5452
- const renderedItem = React.createElement(SurveyQuestionImagePickerItem, { key: key, question: this.question, item: item, cssClasses: cssClasses });
5394
+ renderItem(item, cssClasses) {
5395
+ const renderedItem = React.createElement(SurveyQuestionImagePickerItem, { key: item.uniqueId, question: this.question, item: item, cssClasses: cssClasses });
5453
5396
  const survey = this.question.survey;
5454
5397
  let wrappedItem = null;
5455
5398
  if (!!survey) {
@@ -5635,7 +5578,9 @@ class SurveyQuestionSignaturePad extends SurveyQuestionElementBase {
5635
5578
  return null;
5636
5579
  var cssClasses = this.question.cssClasses;
5637
5580
  return React.createElement("div", { className: cssClasses.controls },
5638
- React.createElement("button", { type: "button", className: cssClasses.clearButton, title: this.question.clearButtonCaption, onClick: () => this.question.clearValue(true) }, this.question.cssClasses.clearButtonIconId ? React.createElement(SvgIcon, { iconName: this.question.cssClasses.clearButtonIconId, size: "auto" }) : React.createElement("span", null, "\u2716")));
5581
+ React.createElement("button", { type: "button", className: cssClasses.clearButton, title: this.question.clearButtonCaption, onClick: () => this.question.clearValueFromUI() },
5582
+ this.question.cssClasses.clearButtonIconId ? React.createElement(SvgIcon, { iconName: this.question.cssClasses.clearButtonIconId, size: "auto" }) : React.createElement("span", null, "\u2716"),
5583
+ " "));
5639
5584
  }
5640
5585
  }
5641
5586
  ReactQuestionFactory.Instance.registerQuestion("signaturepad", (props) => {
@@ -6052,10 +5997,12 @@ ReactElementFactory.Instance.registerElement(LocalizableString.defaultRenderer,
6052
5997
 
6053
5998
  class QuestionErrorComponent extends React.Component {
6054
5999
  render() {
6000
+ const error = this.props.error;
6001
+ const classes = this.props.cssClasses;
6055
6002
  return (React.createElement("div", null,
6056
- React.createElement("span", { className: this.props.cssClasses.error.icon || undefined, "aria-hidden": "true" }),
6003
+ React.createElement("span", { className: error.getCssIcon(classes), "aria-hidden": "true" }),
6057
6004
  React.createElement("span", { className: this.props.cssClasses.error.item || undefined },
6058
- React.createElement(SurveyLocStringViewer, { locStr: this.props.error.locText }))));
6005
+ React.createElement(SurveyLocStringViewer, { locStr: error.locText }))));
6059
6006
  }
6060
6007
  }
6061
6008
  ReactElementFactory.Instance.registerElement("sv-question-error", (props) => {
@@ -6078,9 +6025,20 @@ class SliderLabelItem extends SurveyElementBase {
6078
6025
  renderElement() {
6079
6026
  const { cssClasses, handleLabelPointerUp, getLabelCss, getPercent } = this.question;
6080
6027
  const { value, locText } = this.item;
6081
- return React.createElement("div", { key: this.item.id, className: getLabelCss(locText), style: { left: getPercent(value) + "%" }, onPointerUp: (e) => { handleLabelPointerUp(e.nativeEvent, value); } },
6028
+ let labelText = null;
6029
+ let labelTextSecondary = null;
6030
+ if (this.item.showValue) {
6031
+ labelText = React.createElement("div", { className: cssClasses.labelText }, this.item.value);
6032
+ labelTextSecondary = React.createElement("div", { className: cssClasses.labelTextSecondaryMode }, this.renderLocString(locText));
6033
+ }
6034
+ else {
6035
+ labelText = React.createElement("div", { className: cssClasses.labelText }, this.renderLocString(locText));
6036
+ }
6037
+ return React.createElement("div", { key: this.item.uniqueId, className: getLabelCss(locText), style: { left: getPercent(value) + "%" }, onPointerUp: (e) => { handleLabelPointerUp(e.nativeEvent, value); } },
6082
6038
  React.createElement("div", { className: cssClasses.labelTick }),
6083
- React.createElement("div", { className: cssClasses.labelText }, this.renderLocString(locText)));
6039
+ React.createElement("div", { className: cssClasses.labelTextContainer },
6040
+ labelText,
6041
+ labelTextSecondary));
6084
6042
  }
6085
6043
  }
6086
6044
  ReactElementFactory.Instance.registerElement("sv-slider-label-item", (props) => {
@@ -6220,7 +6178,7 @@ ReactElementFactory.Instance.registerElement(LocalizableString.editableRenderer,
6220
6178
  return React.createElement(SurveyLocStringEditor, props);
6221
6179
  });
6222
6180
 
6223
- checkLibraryVersion(`${"2.3.6"}`, "survey-react-ui");
6181
+ checkLibraryVersion(`${"2.3.11"}`, "survey-react-ui");
6224
6182
 
6225
6183
  export { CharacterCounterComponent, ComponentsContainer, Header, HeaderCell, HeaderMobile, List, ListItemContent, ListItemGroup, LoadingIndicatorComponent, LogoImage, MatrixRow, NotifierComponent, Popup, PopupModal, PopupSurvey, QuestionErrorComponent, RatingDropdownItem, RatingItem, RatingItemSmiley, RatingItemStar, ReactElementFactory, ReactQuestionFactory, ReactSurveyElement, ReactSurveyElementsWrapper, Scroll, Skeleton, SliderLabelItem, Survey, SurveyActionBar, SurveyElementBase, SurveyElementErrors, SurveyFileChooseButton, SurveyFileItem, SurveyFilePreview, SurveyFlowPanel, SurveyHeader, SurveyLocStringEditor, SurveyLocStringViewer, SurveyNavigationBase, SurveyNavigationButton, SurveyPage, SurveyPanel, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestion, SurveyQuestionAndErrorsCell, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionButtonGroup, SurveyQuestionButtonGroupDropdown, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionComment, SurveyQuestionCommentItem, SurveyQuestionComposite, SurveyQuestionCustom, SurveyQuestionDropdown, SurveyQuestionDropdownBase, SurveyQuestionDropdownSelect, SurveyQuestionElementBase, SurveyQuestionEmpty, SurveyQuestionExpression, SurveyQuestionFile, SurveyQuestionHtml, SurveyQuestionImage, SurveyQuestionImagePicker, SurveyQuestionMatrix, SurveyQuestionMatrixCell, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixRow, SurveyQuestionMultipleText, SurveyQuestionOptionItem, SurveyQuestionPanelDynamic, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicProgressText, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionRadioItem, SurveyQuestionRadiogroup, SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionSignaturePad, SurveyQuestionSlider, SurveyQuestionTagbox, SurveyQuestionTagboxItem, SurveyQuestionText, SurveyRow, SurveyTimerPanel, SurveyWindow, SvgBundleComponent, SvgIcon, TagboxFilterString, TitleActions, TitleElement, attachKey2click };
6226
6184
  //# sourceMappingURL=survey-react-ui.mjs.map