survey-react-ui 2.3.8 → 2.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm/survey-react-ui.mjs +1446 -1493
- package/fesm/survey-react-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/survey-react-ui.js +381 -410
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +1 -1
- package/survey-react-ui.min.js.LICENSE.txt +1 -1
- package/typings/src/components/list/list-item.d.ts +2 -0
- package/typings/src/reactquestion_checkbox.d.ts +8 -30
- package/typings/src/reactquestion_radiogroup.d.ts +9 -26
- package/typings/src/reactquestion_selectbase.d.ts +42 -0
package/fesm/survey-react-ui.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - Survey JavaScript library v2.3.
|
|
2
|
+
* surveyjs - Survey JavaScript library v2.3.10
|
|
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,
|
|
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';
|
|
@@ -398,256 +398,6 @@ class SurveyQuestionUncontrolledElement extends SurveyQuestionElementBase {
|
|
|
398
398
|
}
|
|
399
399
|
}
|
|
400
400
|
|
|
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
401
|
class SvgIcon extends React.Component {
|
|
652
402
|
constructor(props) {
|
|
653
403
|
super(props);
|
|
@@ -1099,12 +849,65 @@ class TitleElement extends React.Component {
|
|
|
1099
849
|
}
|
|
1100
850
|
}
|
|
1101
851
|
|
|
1102
|
-
class
|
|
1103
|
-
constructor() {
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
852
|
+
class SurveyHeader extends React.Component {
|
|
853
|
+
constructor(props) {
|
|
854
|
+
super(props);
|
|
855
|
+
this.state = { changed: 0 };
|
|
856
|
+
this.rootRef = React.createRef();
|
|
857
|
+
}
|
|
858
|
+
get survey() {
|
|
859
|
+
return this.props.survey;
|
|
860
|
+
}
|
|
861
|
+
get css() {
|
|
862
|
+
return this.survey.css;
|
|
863
|
+
}
|
|
864
|
+
componentDidMount() {
|
|
865
|
+
const self = this;
|
|
866
|
+
this.survey.afterRenderHeader(this.rootRef.current);
|
|
867
|
+
this.survey.locLogo.onChanged = function () {
|
|
868
|
+
self.setState({ changed: self.state.changed + 1 });
|
|
869
|
+
};
|
|
870
|
+
}
|
|
871
|
+
componentWillUnmount() {
|
|
872
|
+
this.survey.locLogo.onChanged = function () { };
|
|
873
|
+
}
|
|
874
|
+
renderTitle() {
|
|
875
|
+
if (!this.survey.renderedHasTitle)
|
|
876
|
+
return null;
|
|
877
|
+
const description = SurveyElementBase.renderLocString(this.survey.locDescription);
|
|
878
|
+
return (React.createElement("div", { className: this.css.headerText, style: { maxWidth: this.survey.titleMaxWidth } },
|
|
879
|
+
React.createElement(TitleElement, { element: this.survey }),
|
|
880
|
+
this.survey.renderedHasDescription ? React.createElement("div", { className: this.css.description }, description) : null));
|
|
881
|
+
}
|
|
882
|
+
renderLogoImage(isRender) {
|
|
883
|
+
if (!isRender)
|
|
884
|
+
return null;
|
|
885
|
+
const componentName = this.survey.getElementWrapperComponentName(this.survey, "logo-image");
|
|
886
|
+
const componentData = this.survey.getElementWrapperComponentData(this.survey, "logo-image");
|
|
887
|
+
return ReactElementFactory.Instance.createElement(componentName, {
|
|
888
|
+
data: componentData,
|
|
889
|
+
});
|
|
890
|
+
}
|
|
891
|
+
render() {
|
|
892
|
+
if (!this.survey.renderedHasHeader)
|
|
893
|
+
return null;
|
|
894
|
+
return (React.createElement("div", { className: this.css.header, ref: this.rootRef },
|
|
895
|
+
this.renderLogoImage(this.survey.isLogoBefore),
|
|
896
|
+
this.renderTitle(),
|
|
897
|
+
this.renderLogoImage(this.survey.isLogoAfter),
|
|
898
|
+
React.createElement("div", { className: this.css.headerClose })));
|
|
899
|
+
}
|
|
900
|
+
}
|
|
901
|
+
ReactElementFactory.Instance.registerElement("survey-header", (props) => {
|
|
902
|
+
return React.createElement(SurveyHeader, props);
|
|
903
|
+
});
|
|
904
|
+
|
|
905
|
+
class ReactQuestionFactory {
|
|
906
|
+
constructor() {
|
|
907
|
+
this.creatorHash = {};
|
|
908
|
+
}
|
|
909
|
+
registerQuestion(questionType, questionCreator) {
|
|
910
|
+
this.creatorHash[questionType] = questionCreator;
|
|
1108
911
|
}
|
|
1109
912
|
getAllTypes() {
|
|
1110
913
|
var result = new Array();
|
|
@@ -1122,1320 +925,1525 @@ class ReactQuestionFactory {
|
|
|
1122
925
|
}
|
|
1123
926
|
ReactQuestionFactory.Instance = new ReactQuestionFactory();
|
|
1124
927
|
|
|
1125
|
-
class
|
|
1126
|
-
|
|
1127
|
-
return
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
928
|
+
class BrandInfo extends React.Component {
|
|
929
|
+
render() {
|
|
930
|
+
return (React.createElement("div", { className: "sv-brand-info" },
|
|
931
|
+
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" },
|
|
932
|
+
React.createElement("img", { src: "https://surveyjs.io/Content/Images/poweredby.svg" })),
|
|
933
|
+
React.createElement("div", { className: "sv-brand-info__text" },
|
|
934
|
+
"Try and see how easy it is to ",
|
|
935
|
+
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")),
|
|
936
|
+
React.createElement("div", { className: "sv-brand-info__terms" },
|
|
937
|
+
React.createElement("a", { href: "https://surveyjs.io/TermsOfUse" }, "Terms of Use & Privacy Statement"))));
|
|
1131
938
|
}
|
|
1132
939
|
}
|
|
1133
|
-
ReactElementFactory.Instance.registerElement("sv-character-counter", (props) => {
|
|
1134
|
-
return React.createElement(CharacterCounterComponent, props);
|
|
1135
|
-
});
|
|
1136
940
|
|
|
1137
|
-
class
|
|
1138
|
-
|
|
1139
|
-
|
|
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
|
-
}
|
|
941
|
+
class NotifierComponent extends SurveyElementBase {
|
|
942
|
+
get notifier() {
|
|
943
|
+
return this.props.notifier;
|
|
1155
944
|
}
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
this.viewModel.resetElement();
|
|
945
|
+
getStateElement() {
|
|
946
|
+
return this.notifier;
|
|
1159
947
|
}
|
|
1160
948
|
renderElement() {
|
|
1161
|
-
|
|
949
|
+
if (!this.notifier.isDisplayed)
|
|
950
|
+
return null;
|
|
951
|
+
const style = { visibility: this.notifier.active ? "visible" : "hidden" };
|
|
952
|
+
return (React.createElement("div", { className: this.notifier.css, style: style, role: "alert", "aria-live": "polite" },
|
|
953
|
+
React.createElement("span", null, this.notifier.message),
|
|
954
|
+
React.createElement(SurveyActionBar, { model: this.notifier.actionBar })));
|
|
1162
955
|
}
|
|
1163
956
|
}
|
|
1164
|
-
ReactElementFactory.Instance.registerElement("sv-
|
|
1165
|
-
return React.createElement(
|
|
957
|
+
ReactElementFactory.Instance.registerElement("sv-notifier", (props) => {
|
|
958
|
+
return React.createElement(NotifierComponent, props);
|
|
1166
959
|
});
|
|
1167
960
|
|
|
1168
|
-
class
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
961
|
+
class ComponentsContainer extends React.Component {
|
|
962
|
+
render() {
|
|
963
|
+
const components = this.props.survey.getContainerContent(this.props.container);
|
|
964
|
+
const needRenderWrapper = this.props.needRenderWrapper === false ? false : true;
|
|
965
|
+
if (components.length == 0) {
|
|
966
|
+
return null;
|
|
1173
967
|
}
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
}
|
|
1179
|
-
renderElement() {
|
|
1180
|
-
if (this.question.isReadOnlyRenderDiv()) {
|
|
1181
|
-
return React.createElement("div", null, this.question.value);
|
|
968
|
+
if (!needRenderWrapper) {
|
|
969
|
+
return React.createElement(React.Fragment, null, components.map(component => {
|
|
970
|
+
return ReactElementFactory.Instance.createElement(component.component, { survey: this.props.survey, model: component.data, container: this.props.container, key: component.id });
|
|
971
|
+
}));
|
|
1182
972
|
}
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
React.createElement(TextAreaComponent, { viewModel: textAreaModel }),
|
|
1187
|
-
counter));
|
|
973
|
+
return React.createElement("div", { className: "sv-components-column" + " sv-components-container-" + this.props.container }, 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
|
+
}));
|
|
1188
976
|
}
|
|
1189
977
|
}
|
|
1190
|
-
|
|
978
|
+
ReactElementFactory.Instance.registerElement("sv-components-container", (props) => {
|
|
979
|
+
return React.createElement(ComponentsContainer, props);
|
|
980
|
+
});
|
|
981
|
+
|
|
982
|
+
class SvgBundleComponent extends React.Component {
|
|
1191
983
|
constructor(props) {
|
|
1192
984
|
super(props);
|
|
1193
|
-
this.
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
return this.props.question.commentTextAreaModel;
|
|
985
|
+
this.onIconsChanged = () => {
|
|
986
|
+
if (!!this.containerRef.current) {
|
|
987
|
+
this.containerRef.current.innerHTML = SvgRegistry.iconsRenderedHtml();
|
|
988
|
+
}
|
|
989
|
+
};
|
|
990
|
+
this.containerRef = React.createRef();
|
|
1200
991
|
}
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
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 }));
|
|
992
|
+
componentDidMount() {
|
|
993
|
+
this.onIconsChanged();
|
|
994
|
+
SvgRegistry.onIconsChanged.add(this.onIconsChanged);
|
|
1208
995
|
}
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
class SurveyQuestionCommentValueItem extends SurveyQuestionCommentItem {
|
|
1212
|
-
constructor(props) {
|
|
1213
|
-
super(props);
|
|
996
|
+
componentWillUnmount() {
|
|
997
|
+
SvgRegistry.onIconsChanged.remove(this.onIconsChanged);
|
|
1214
998
|
}
|
|
1215
|
-
|
|
1216
|
-
|
|
999
|
+
render() {
|
|
1000
|
+
const svgStyle = {
|
|
1001
|
+
display: "none"
|
|
1002
|
+
};
|
|
1003
|
+
return React.createElement("svg", { style: svgStyle, id: "sv-icon-holder-global-container", ref: this.containerRef });
|
|
1217
1004
|
}
|
|
1218
|
-
getKey() { return this.props.item.normalizedId; }
|
|
1219
1005
|
}
|
|
1220
|
-
ReactQuestionFactory.Instance.registerQuestion("comment", (props) => {
|
|
1221
|
-
return React.createElement(SurveyQuestionComment, props);
|
|
1222
|
-
});
|
|
1223
1006
|
|
|
1224
|
-
class
|
|
1007
|
+
class PopupModal extends SurveyElementBase {
|
|
1225
1008
|
constructor(props) {
|
|
1226
1009
|
super(props);
|
|
1227
|
-
this.
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
this.
|
|
1234
|
-
this.questionBase.customWidgetData.isNeedRender = false;
|
|
1010
|
+
this.isInitialized = false;
|
|
1011
|
+
this.init = () => {
|
|
1012
|
+
if (!this.isInitialized) {
|
|
1013
|
+
settings.showDialog = (dialogOptions, rootElement) => {
|
|
1014
|
+
return this.showDialog(dialogOptions, rootElement);
|
|
1015
|
+
};
|
|
1016
|
+
this.isInitialized = true;
|
|
1235
1017
|
}
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
}
|
|
1018
|
+
};
|
|
1019
|
+
this.clean = () => {
|
|
1020
|
+
if (this.isInitialized) {
|
|
1021
|
+
settings.showDialog = undefined;
|
|
1022
|
+
this.isInitialized = false;
|
|
1023
|
+
}
|
|
1024
|
+
};
|
|
1025
|
+
this.state = { changed: 0 };
|
|
1026
|
+
this.descriptor = {
|
|
1027
|
+
init: this.init,
|
|
1028
|
+
clean: this.clean
|
|
1029
|
+
};
|
|
1243
1030
|
}
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
this.questionBase.customWidget.isDefaultRender;
|
|
1248
|
-
if (this.questionBase && !isDefaultRender) {
|
|
1249
|
-
this._afterRender();
|
|
1031
|
+
static addModalDescriptor(descriptor) {
|
|
1032
|
+
if (!settings.showDialog) {
|
|
1033
|
+
descriptor.init();
|
|
1250
1034
|
}
|
|
1035
|
+
this.modalDescriptors.push(descriptor);
|
|
1251
1036
|
}
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
this.questionBase.customWidget.willUnmount(this.questionBase, el);
|
|
1258
|
-
}
|
|
1037
|
+
static removeModalDescriptor(descriptor) {
|
|
1038
|
+
descriptor.clean();
|
|
1039
|
+
this.modalDescriptors.splice(this.modalDescriptors.indexOf(descriptor), 1);
|
|
1040
|
+
if (!settings.showDialog && this.modalDescriptors[0]) {
|
|
1041
|
+
this.modalDescriptors[0].init();
|
|
1259
1042
|
}
|
|
1260
1043
|
}
|
|
1261
|
-
canRender() {
|
|
1262
|
-
return super.canRender() && this.questionBase.visible;
|
|
1263
|
-
}
|
|
1264
1044
|
renderElement() {
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1045
|
+
if (!this.model)
|
|
1046
|
+
return null;
|
|
1047
|
+
return createPortal(React.createElement(PopupContainer, { model: this.model }), this.model.container);
|
|
1048
|
+
}
|
|
1049
|
+
showDialog(dialogOptions, rootElement) {
|
|
1050
|
+
this.model = createPopupModalViewModel(dialogOptions, rootElement);
|
|
1051
|
+
const onVisibilityChangedCallback = (_, options) => {
|
|
1052
|
+
if (!options.isVisible) {
|
|
1053
|
+
this.model.dispose();
|
|
1054
|
+
this.model = undefined;
|
|
1055
|
+
this.setState({ changed: this.state.changed + 1 });
|
|
1056
|
+
}
|
|
1057
|
+
};
|
|
1058
|
+
this.model.onVisibilityChanged.add(onVisibilityChangedCallback);
|
|
1059
|
+
this.model.model.isVisible = true;
|
|
1060
|
+
this.setState({ changed: this.state.changed + 1 });
|
|
1061
|
+
return this.model;
|
|
1062
|
+
}
|
|
1063
|
+
componentDidMount() {
|
|
1064
|
+
PopupModal.addModalDescriptor(this.descriptor);
|
|
1065
|
+
}
|
|
1066
|
+
componentWillUnmount() {
|
|
1067
|
+
if (this.model) {
|
|
1068
|
+
this.model.dispose();
|
|
1069
|
+
this.model = undefined;
|
|
1070
|
+
}
|
|
1071
|
+
PopupModal.removeModalDescriptor(this.descriptor);
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
PopupModal.modalDescriptors = [];
|
|
1075
|
+
|
|
1076
|
+
/*!
|
|
1077
|
+
* surveyjs - Survey JavaScript library v2.3.10
|
|
1078
|
+
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
1079
|
+
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
1080
|
+
*/
|
|
1081
|
+
|
|
1082
|
+
var iconsV1 = {
|
|
1083
|
+
"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>",
|
|
1084
|
+
"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>",
|
|
1085
|
+
"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>",
|
|
1086
|
+
"moderncheck": "<svg viewBox=\"0 0 24 24\"><path d=\"M5,13l2-2l3,3l7-7l2,2l-9,9L5,13z\"></path></svg>",
|
|
1087
|
+
"modernradio": "<svg viewBox=\"-12 -12 24 24\"><circle r=\"6\" cx=\"0\" cy=\"0\"></circle></svg>",
|
|
1088
|
+
"progressbutton": "<svg viewBox=\"0 0 10 10\"><polygon points=\"2,2 0,4 5,9 10,4 8,2 5,5 \"></polygon></svg>",
|
|
1089
|
+
"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>",
|
|
1090
|
+
"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>",
|
|
1091
|
+
"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>",
|
|
1092
|
+
"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>",
|
|
1093
|
+
"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>",
|
|
1094
|
+
"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>",
|
|
1095
|
+
"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>",
|
|
1096
|
+
"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>",
|
|
1097
|
+
"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>",
|
|
1098
|
+
"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>",
|
|
1099
|
+
"chevrondown-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 15L17 10H7L12 15Z\"></path></svg>",
|
|
1100
|
+
"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>",
|
|
1101
|
+
"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>",
|
|
1102
|
+
"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>",
|
|
1103
|
+
"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>",
|
|
1104
|
+
"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>",
|
|
1105
|
+
"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>",
|
|
1106
|
+
"collapsedetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>",
|
|
1107
|
+
"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>",
|
|
1108
|
+
"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>",
|
|
1109
|
+
"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>",
|
|
1110
|
+
"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>",
|
|
1111
|
+
"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>",
|
|
1112
|
+
"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>",
|
|
1113
|
+
"expanddetails-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H9V3H7V7H3V9H7V13H9V9H13V7Z\"></path></svg>",
|
|
1114
|
+
"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>",
|
|
1115
|
+
"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>",
|
|
1116
|
+
"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>",
|
|
1117
|
+
"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>",
|
|
1118
|
+
"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>",
|
|
1119
|
+
"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>",
|
|
1120
|
+
"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>",
|
|
1121
|
+
"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>",
|
|
1122
|
+
"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>",
|
|
1123
|
+
"navmenu-24x24": "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 7H2V5H16V7ZM2 11V13H22V11H2ZM2 19H10V17H2V19Z\"></path></svg>",
|
|
1124
|
+
"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>",
|
|
1125
|
+
"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>",
|
|
1126
|
+
"rankingundefined-16x16": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>",
|
|
1127
|
+
"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>",
|
|
1128
|
+
"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>",
|
|
1129
|
+
"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>",
|
|
1130
|
+
"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>",
|
|
1131
|
+
"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>",
|
|
1132
|
+
"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>",
|
|
1133
|
+
"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>",
|
|
1134
|
+
"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>",
|
|
1135
|
+
"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>",
|
|
1136
|
+
"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>",
|
|
1137
|
+
"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>",
|
|
1138
|
+
"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>",
|
|
1139
|
+
"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>",
|
|
1140
|
+
"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>",
|
|
1141
|
+
"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>",
|
|
1142
|
+
"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>",
|
|
1143
|
+
"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>"
|
|
1144
|
+
};
|
|
1145
|
+
|
|
1146
|
+
/*!
|
|
1147
|
+
* surveyjs - Survey JavaScript library v2.3.10
|
|
1148
|
+
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
1149
|
+
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
1150
|
+
*/
|
|
1151
|
+
|
|
1152
|
+
var iconsV2 = {
|
|
1153
|
+
"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>",
|
|
1154
|
+
"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>",
|
|
1155
|
+
"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>",
|
|
1156
|
+
"moderncheck": "<svg viewBox=\"0 0 24 24\"><path d=\"M5,13l2-2l3,3l7-7l2,2l-9,9L5,13z\"></path></svg>",
|
|
1157
|
+
"modernradio": "<svg viewBox=\"-12 -12 24 24\"><circle r=\"6\" cx=\"0\" cy=\"0\"></circle></svg>",
|
|
1158
|
+
"progressbutton": "<svg viewBox=\"0 0 10 10\"><polygon points=\"2,2 0,4 5,9 10,4 8,2 5,5 \"></polygon></svg>",
|
|
1159
|
+
"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>",
|
|
1160
|
+
"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>",
|
|
1161
|
+
"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>",
|
|
1162
|
+
"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>",
|
|
1163
|
+
"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>",
|
|
1164
|
+
"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>",
|
|
1165
|
+
"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>",
|
|
1166
|
+
"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>",
|
|
1167
|
+
"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>",
|
|
1168
|
+
"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>",
|
|
1169
|
+
"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>",
|
|
1170
|
+
"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>",
|
|
1171
|
+
"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>",
|
|
1172
|
+
"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>",
|
|
1173
|
+
"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>",
|
|
1174
|
+
"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>",
|
|
1175
|
+
"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>",
|
|
1176
|
+
"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>",
|
|
1177
|
+
"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>",
|
|
1178
|
+
"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>",
|
|
1179
|
+
"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>",
|
|
1180
|
+
"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>",
|
|
1181
|
+
"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>",
|
|
1182
|
+
"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>",
|
|
1183
|
+
"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>",
|
|
1184
|
+
"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>",
|
|
1185
|
+
"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>",
|
|
1186
|
+
"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>",
|
|
1187
|
+
"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>",
|
|
1188
|
+
"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>",
|
|
1189
|
+
"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>",
|
|
1190
|
+
"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>",
|
|
1191
|
+
"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>",
|
|
1192
|
+
"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>",
|
|
1193
|
+
"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>",
|
|
1194
|
+
"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>",
|
|
1195
|
+
"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>",
|
|
1196
|
+
"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>",
|
|
1197
|
+
"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>",
|
|
1198
|
+
"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>",
|
|
1199
|
+
"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>",
|
|
1200
|
+
"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>",
|
|
1201
|
+
"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>",
|
|
1202
|
+
"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>",
|
|
1203
|
+
"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>",
|
|
1204
|
+
"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>",
|
|
1205
|
+
"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>",
|
|
1206
|
+
"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>",
|
|
1207
|
+
"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>",
|
|
1208
|
+
"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>",
|
|
1209
|
+
"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>",
|
|
1210
|
+
"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>",
|
|
1211
|
+
"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>",
|
|
1212
|
+
"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>",
|
|
1213
|
+
"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>"
|
|
1214
|
+
};
|
|
1215
|
+
|
|
1216
|
+
class Scroll extends React.Component {
|
|
1217
|
+
constructor(props) {
|
|
1218
|
+
super(props);
|
|
1219
|
+
this.rootRef = React.createRef();
|
|
1220
|
+
this.model = new ScrollViewModel();
|
|
1221
|
+
this.model.onInnerHeightChanged = (hasScroll) => {
|
|
1222
|
+
if (!!this.props.onInnerHeightChanged) {
|
|
1223
|
+
this.props.onInnerHeightChanged(hasScroll);
|
|
1224
|
+
}
|
|
1225
|
+
};
|
|
1226
|
+
}
|
|
1227
|
+
componentDidMount() {
|
|
1228
|
+
const container = this.rootRef.current;
|
|
1229
|
+
if (!container)
|
|
1230
|
+
return;
|
|
1231
|
+
this.model.setRootElement(container);
|
|
1232
|
+
}
|
|
1233
|
+
componentWillUnmount() {
|
|
1234
|
+
this.model.unsubscribeRootElement();
|
|
1235
|
+
this.model.setRootElement(undefined);
|
|
1236
|
+
}
|
|
1237
|
+
render() {
|
|
1238
|
+
return this.props.disabled ?
|
|
1239
|
+
React.createElement(React.Fragment, null, this.props.children) :
|
|
1240
|
+
React.createElement("div", { ref: this.rootRef, className: "sv-scroll__wrapper" },
|
|
1241
|
+
React.createElement("div", { className: "sv-scroll__scroller sv-drag-target-skipped", onScroll: () => this.model.onScrollContainer() },
|
|
1242
|
+
React.createElement("div", { className: "sv-scroll__container" }, this.props.children)),
|
|
1243
|
+
React.createElement("div", { className: "sv-scroll__scrollbar", onScroll: () => this.model.onScrollScrollbar() },
|
|
1244
|
+
React.createElement("div", { className: "sv-scroll__scrollbar-sizer" })));
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
ReactElementFactory.Instance.registerElement("svc-scroll", (props) => {
|
|
1248
|
+
return React.createElement(Scroll, props);
|
|
1249
|
+
});
|
|
1250
|
+
|
|
1251
|
+
addIconsToThemeSet("v1", iconsV1);
|
|
1252
|
+
addIconsToThemeSet("v2", iconsV2);
|
|
1253
|
+
SvgRegistry.registerIcons(iconsV2);
|
|
1254
|
+
class Survey extends SurveyElementBase {
|
|
1255
|
+
constructor(props) {
|
|
1256
|
+
super(props);
|
|
1257
|
+
this.previousJSON = {};
|
|
1258
|
+
this.isSurveyUpdated = false;
|
|
1259
|
+
this.createSurvey(props);
|
|
1260
|
+
this.updateSurvey(props, {});
|
|
1261
|
+
this.rootRef = React.createRef();
|
|
1262
|
+
this.rootNodeId = props.id || null;
|
|
1263
|
+
this.rootNodeClassName = props.className || "";
|
|
1264
|
+
}
|
|
1265
|
+
getStateElement() {
|
|
1266
|
+
return this.survey;
|
|
1267
|
+
}
|
|
1268
|
+
onSurveyUpdated() {
|
|
1269
|
+
if (!!this.survey) {
|
|
1270
|
+
const el = this.rootRef.current;
|
|
1271
|
+
if (!!el)
|
|
1272
|
+
this.survey.afterRenderSurvey(el);
|
|
1273
|
+
this.survey.startTimerFromUI();
|
|
1274
|
+
this.setSurveyEvents();
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
shouldComponentUpdate(nextProps, nextState) {
|
|
1278
|
+
if (!super.shouldComponentUpdate(nextProps, nextState))
|
|
1279
|
+
return false;
|
|
1280
|
+
if (this.isModelJSONChanged(nextProps)) {
|
|
1281
|
+
this.destroySurvey();
|
|
1282
|
+
this.createSurvey(nextProps);
|
|
1283
|
+
this.updateSurvey(nextProps, {});
|
|
1284
|
+
this.isSurveyUpdated = true;
|
|
1285
|
+
}
|
|
1286
|
+
return true;
|
|
1287
|
+
}
|
|
1288
|
+
componentDidUpdate(prevProps, prevState) {
|
|
1289
|
+
super.componentDidUpdate(prevProps, prevState);
|
|
1290
|
+
this.updateSurvey(this.props, prevProps);
|
|
1291
|
+
if (this.isSurveyUpdated) {
|
|
1292
|
+
this.onSurveyUpdated();
|
|
1293
|
+
this.isSurveyUpdated = false;
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
componentDidMount() {
|
|
1297
|
+
super.componentDidMount();
|
|
1298
|
+
this.onSurveyUpdated();
|
|
1299
|
+
}
|
|
1300
|
+
destroySurvey() {
|
|
1301
|
+
if (this.survey) {
|
|
1302
|
+
this.survey.renderCallback = undefined;
|
|
1303
|
+
this.survey.onPartialSend.clear();
|
|
1304
|
+
this.survey.stopTimer();
|
|
1305
|
+
this.survey.destroyResizeObserver();
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
componentWillUnmount() {
|
|
1309
|
+
super.componentWillUnmount();
|
|
1310
|
+
this.destroySurvey();
|
|
1311
|
+
}
|
|
1312
|
+
doRender() {
|
|
1313
|
+
let renderResult;
|
|
1314
|
+
if (this.survey.state == "completed") {
|
|
1315
|
+
renderResult = this.renderCompleted();
|
|
1268
1316
|
}
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1317
|
+
else if (this.survey.state == "completedbefore") {
|
|
1318
|
+
renderResult = this.renderCompletedBefore();
|
|
1319
|
+
}
|
|
1320
|
+
else if (this.survey.state == "loading") {
|
|
1321
|
+
renderResult = this.renderLoading();
|
|
1322
|
+
}
|
|
1323
|
+
else if (this.survey.state == "empty") {
|
|
1324
|
+
renderResult = this.renderEmptySurvey();
|
|
1272
1325
|
}
|
|
1273
1326
|
else {
|
|
1274
|
-
|
|
1275
|
-
let htmlValue = { __html: customWidget.htmlTemplate };
|
|
1276
|
-
return React.createElement("div", { ref: this.widgetRef, dangerouslySetInnerHTML: htmlValue });
|
|
1277
|
-
}
|
|
1327
|
+
renderResult = this.renderSurvey();
|
|
1278
1328
|
}
|
|
1279
|
-
|
|
1329
|
+
const backgroundImage = !!this.survey.backgroundImage ? React.createElement("div", { className: this.css.rootBackgroundImage, style: this.survey.backgroundImageStyle }) : null;
|
|
1330
|
+
const header = this.survey.headerView === "basic" ? React.createElement(SurveyHeader, { survey: this.survey }) : null;
|
|
1331
|
+
const onSubmit = function (event) {
|
|
1332
|
+
event.preventDefault();
|
|
1333
|
+
};
|
|
1334
|
+
let customHeader = React.createElement("div", { className: "sv_custom_header" });
|
|
1335
|
+
if (this.survey.hasLogo) {
|
|
1336
|
+
customHeader = null;
|
|
1337
|
+
}
|
|
1338
|
+
const rootCss = this.survey.getRootCss();
|
|
1339
|
+
const cssClasses = this.rootNodeClassName ? this.rootNodeClassName + " " + rootCss : rootCss;
|
|
1340
|
+
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 },
|
|
1341
|
+
React.createElement(Scroll, { disabled: this.survey.rootScrollDisabled },
|
|
1342
|
+
this.survey.needRenderIcons ? React.createElement(SvgBundleComponent, null) : null,
|
|
1343
|
+
React.createElement(PopupModal, null),
|
|
1344
|
+
React.createElement("div", { className: this.survey.wrapperFormCss },
|
|
1345
|
+
backgroundImage,
|
|
1346
|
+
React.createElement("form", { onSubmit: onSubmit },
|
|
1347
|
+
React.createElement(Scroll, { disabled: this.survey.formScrollDisabled },
|
|
1348
|
+
customHeader,
|
|
1349
|
+
React.createElement("div", { className: this.css.container },
|
|
1350
|
+
header,
|
|
1351
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "header", needRenderWrapper: false }),
|
|
1352
|
+
renderResult,
|
|
1353
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "footer", needRenderWrapper: false })))),
|
|
1354
|
+
React.createElement(NotifierComponent, { notifier: this.survey.notifier })))));
|
|
1280
1355
|
}
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
class SurveyElementHeader extends SurveyElementBase {
|
|
1284
|
-
get element() {
|
|
1285
|
-
return this.props.element;
|
|
1356
|
+
renderElement() {
|
|
1357
|
+
return this.doRender();
|
|
1286
1358
|
}
|
|
1287
|
-
|
|
1288
|
-
return
|
|
1359
|
+
get css() {
|
|
1360
|
+
return this.survey.css;
|
|
1289
1361
|
}
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1362
|
+
set css(value) {
|
|
1363
|
+
this.survey.css = value;
|
|
1364
|
+
}
|
|
1365
|
+
renderCompleted() {
|
|
1366
|
+
if (!this.survey.showCompletedPage)
|
|
1367
|
+
return null;
|
|
1368
|
+
var htmlValue = { __html: this.survey.processedCompletedHtml };
|
|
1369
|
+
return (React.createElement(React.Fragment, null,
|
|
1370
|
+
React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedCss }),
|
|
1371
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "completePage", needRenderWrapper: false })));
|
|
1372
|
+
}
|
|
1373
|
+
renderCompletedBefore() {
|
|
1374
|
+
var htmlValue = { __html: this.survey.processedCompletedBeforeHtml };
|
|
1375
|
+
return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedBeforeCss }));
|
|
1376
|
+
}
|
|
1377
|
+
renderLoading() {
|
|
1378
|
+
var htmlValue = { __html: this.survey.processedLoadingHtml };
|
|
1379
|
+
return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.loadingBodyCss }));
|
|
1380
|
+
}
|
|
1381
|
+
renderSurvey() {
|
|
1382
|
+
var activePage = this.survey.activePage
|
|
1383
|
+
? this.renderPage(this.survey.activePage)
|
|
1295
1384
|
: null;
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1385
|
+
this.survey.isShowStartingPage;
|
|
1386
|
+
var pageId = this.survey.activePage ? this.survey.activePage.id : "";
|
|
1387
|
+
let className = this.survey.bodyCss;
|
|
1388
|
+
const style = {};
|
|
1389
|
+
if (!!this.survey.renderedWidth) {
|
|
1390
|
+
style.maxWidth = this.survey.renderedWidth;
|
|
1300
1391
|
}
|
|
1301
|
-
return (React.createElement("div", { className:
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1392
|
+
return (React.createElement("div", { className: this.survey.bodyContainerCss },
|
|
1393
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "left" }),
|
|
1394
|
+
React.createElement("div", { className: "sv-components-column sv-components-column--expandable" },
|
|
1395
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "center" }),
|
|
1396
|
+
React.createElement("div", { id: pageId, className: className, style: style },
|
|
1397
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "contentTop" }),
|
|
1398
|
+
activePage,
|
|
1399
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "contentBottom" }),
|
|
1400
|
+
this.survey.showBrandInfo ? React.createElement(BrandInfo, null) : null)),
|
|
1401
|
+
React.createElement(ComponentsContainer, { survey: this.survey, container: "right" })));
|
|
1402
|
+
}
|
|
1403
|
+
renderPage(page) {
|
|
1404
|
+
return ReactElementFactory.Instance.createElement(this.survey.pageComponent || "sv-page", {
|
|
1405
|
+
survey: this.survey,
|
|
1406
|
+
page: page,
|
|
1407
|
+
css: this.css,
|
|
1408
|
+
creator: this,
|
|
1409
|
+
});
|
|
1410
|
+
}
|
|
1411
|
+
renderEmptySurvey() {
|
|
1412
|
+
return React.createElement("div", { className: this.css.bodyEmpty }, this.survey.emptySurveyText);
|
|
1413
|
+
}
|
|
1414
|
+
createSurvey(newProps) {
|
|
1415
|
+
if (!newProps)
|
|
1416
|
+
newProps = {};
|
|
1417
|
+
this.previousJSON = {};
|
|
1418
|
+
if (newProps) {
|
|
1419
|
+
if (newProps.model) {
|
|
1420
|
+
this.survey = newProps.model;
|
|
1421
|
+
}
|
|
1422
|
+
else {
|
|
1423
|
+
if (newProps.json) {
|
|
1424
|
+
this.previousJSON = newProps.json;
|
|
1425
|
+
this.survey = new SurveyModel(newProps.json);
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
}
|
|
1429
|
+
else {
|
|
1430
|
+
this.survey = new SurveyModel();
|
|
1431
|
+
}
|
|
1432
|
+
if (!!newProps.css) {
|
|
1433
|
+
this.survey.css = this.css;
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1436
|
+
isModelJSONChanged(newProps) {
|
|
1437
|
+
if (!!newProps["model"]) {
|
|
1438
|
+
return this.survey !== newProps["model"];
|
|
1439
|
+
}
|
|
1440
|
+
if (!!newProps["json"]) {
|
|
1441
|
+
return !Helpers.isTwoValueEquals(newProps["json"], this.previousJSON);
|
|
1442
|
+
}
|
|
1443
|
+
return false;
|
|
1444
|
+
}
|
|
1445
|
+
updateSurvey(newProps, oldProps) {
|
|
1446
|
+
if (!newProps)
|
|
1447
|
+
return;
|
|
1448
|
+
oldProps = oldProps || {};
|
|
1449
|
+
for (var key in newProps) {
|
|
1450
|
+
if (key == "model" || key == "children" || key == "json") {
|
|
1451
|
+
continue;
|
|
1452
|
+
}
|
|
1453
|
+
if (key == "css") {
|
|
1454
|
+
this.survey.mergeValues(newProps.css, this.survey.getCss());
|
|
1455
|
+
this.survey["updateNavigationCss"]();
|
|
1456
|
+
this.survey["updateElementCss"]();
|
|
1457
|
+
continue;
|
|
1458
|
+
}
|
|
1459
|
+
if (newProps[key] === oldProps[key])
|
|
1460
|
+
continue;
|
|
1461
|
+
if (key.indexOf("on") == 0 && this.survey[key] && this.survey[key].add) {
|
|
1462
|
+
if (!!oldProps[key]) {
|
|
1463
|
+
this.survey[key].remove(oldProps[key]);
|
|
1464
|
+
}
|
|
1465
|
+
this.survey[key].add(newProps[key]);
|
|
1466
|
+
}
|
|
1467
|
+
else {
|
|
1468
|
+
this.survey[key] = newProps[key];
|
|
1469
|
+
}
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
setSurveyEvents() {
|
|
1473
|
+
var self = this;
|
|
1474
|
+
this.survey.renderCallback = function () {
|
|
1475
|
+
var counter = !!self.state && !!self.state.modelChanged ? self.state.modelChanged : 0;
|
|
1476
|
+
self.setState({ modelChanged: counter + 1 });
|
|
1477
|
+
};
|
|
1478
|
+
this.survey.onPartialSend.add((sender) => {
|
|
1479
|
+
if (!!self.state) {
|
|
1480
|
+
self.setState(self.state);
|
|
1481
|
+
}
|
|
1482
|
+
});
|
|
1483
|
+
}
|
|
1484
|
+
//ISurveyCreator
|
|
1485
|
+
createQuestionElement(question) {
|
|
1486
|
+
return ReactQuestionFactory.Instance.createQuestion(question.isDefaultRendering() ? question.getTemplate() : question.getComponentName(), {
|
|
1487
|
+
question: question,
|
|
1488
|
+
isDisplayMode: question.isInputReadOnly,
|
|
1489
|
+
creator: this,
|
|
1490
|
+
});
|
|
1491
|
+
}
|
|
1492
|
+
renderError(key, error, cssClasses, element) {
|
|
1493
|
+
return ReactElementFactory.Instance.createElement(this.survey.questionErrorComponent, { key: key, error, cssClasses, element });
|
|
1494
|
+
}
|
|
1495
|
+
questionTitleLocation() {
|
|
1496
|
+
return this.survey.questionTitleLocation;
|
|
1497
|
+
}
|
|
1498
|
+
questionErrorLocation() {
|
|
1499
|
+
return this.survey.questionErrorLocation;
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
ReactElementFactory.Instance.registerElement("survey", (props) => {
|
|
1503
|
+
return React.createElement(Survey, props);
|
|
1504
|
+
});
|
|
1505
|
+
function attachKey2click(element, viewModel, options = { processEsc: true, disableTabStop: false }) {
|
|
1506
|
+
if ((!!viewModel && viewModel.disableTabStop) || (!!options && options.disableTabStop)) {
|
|
1507
|
+
return React.cloneElement(element, { tabIndex: -1 });
|
|
1305
1508
|
}
|
|
1509
|
+
options = Object.assign({}, options);
|
|
1510
|
+
return React.cloneElement(element, {
|
|
1511
|
+
tabIndex: 0,
|
|
1512
|
+
onKeyUp: (evt) => {
|
|
1513
|
+
evt.preventDefault();
|
|
1514
|
+
evt.stopPropagation();
|
|
1515
|
+
doKey2ClickUp(evt, options);
|
|
1516
|
+
return false;
|
|
1517
|
+
},
|
|
1518
|
+
onKeyDown: (evt) => doKey2ClickDown(evt, options),
|
|
1519
|
+
onBlur: (evt) => doKey2ClickBlur(evt),
|
|
1520
|
+
});
|
|
1306
1521
|
}
|
|
1307
1522
|
|
|
1308
|
-
class
|
|
1523
|
+
class SurveyNavigationBase extends React.Component {
|
|
1309
1524
|
constructor(props) {
|
|
1310
1525
|
super(props);
|
|
1526
|
+
this.updateStateFunction = null;
|
|
1527
|
+
this.state = { update: 0 };
|
|
1311
1528
|
}
|
|
1312
|
-
get
|
|
1313
|
-
return this.props.
|
|
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();
|
|
1529
|
+
get survey() {
|
|
1530
|
+
return this.props.survey;
|
|
1322
1531
|
}
|
|
1323
|
-
|
|
1324
|
-
return
|
|
1532
|
+
get css() {
|
|
1533
|
+
return this.props.css || this.survey.css;
|
|
1325
1534
|
}
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1535
|
+
componentDidMount() {
|
|
1536
|
+
if (this.survey) {
|
|
1537
|
+
var self = this;
|
|
1538
|
+
this.updateStateFunction = function () {
|
|
1539
|
+
self.setState({ update: self.state.update + 1 });
|
|
1540
|
+
};
|
|
1541
|
+
this.survey.onPageVisibleChanged.add(this.updateStateFunction);
|
|
1542
|
+
}
|
|
1330
1543
|
}
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
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));
|
|
1544
|
+
componentWillUnmount() {
|
|
1545
|
+
if (this.survey && this.updateStateFunction) {
|
|
1546
|
+
this.survey.onPageVisibleChanged.remove(this.updateStateFunction);
|
|
1547
|
+
this.updateStateFunction = null;
|
|
1548
|
+
}
|
|
1343
1549
|
}
|
|
1344
1550
|
}
|
|
1345
|
-
ReactElementFactory.Instance.registerElement("sv-singleinput-summary", (props) => {
|
|
1346
|
-
return React.createElement(SurveyQuestionSigleInputSummary, props);
|
|
1347
|
-
});
|
|
1348
1551
|
|
|
1349
|
-
class
|
|
1552
|
+
class SurveyTimerPanel extends ReactSurveyElement {
|
|
1350
1553
|
constructor(props) {
|
|
1351
1554
|
super(props);
|
|
1555
|
+
this.circleLength = 440;
|
|
1352
1556
|
}
|
|
1353
1557
|
getStateElement() {
|
|
1354
|
-
return this.
|
|
1558
|
+
return this.timerModel;
|
|
1355
1559
|
}
|
|
1356
|
-
get
|
|
1357
|
-
return this.props.model
|
|
1560
|
+
get timerModel() {
|
|
1561
|
+
return this.props.model;
|
|
1358
1562
|
}
|
|
1359
|
-
get
|
|
1360
|
-
return this.
|
|
1563
|
+
get progress() {
|
|
1564
|
+
return -this.timerModel.progress * this.circleLength;
|
|
1361
1565
|
}
|
|
1362
|
-
|
|
1363
|
-
if (!this.
|
|
1566
|
+
render() {
|
|
1567
|
+
if (!this.timerModel.isRunning) {
|
|
1364
1568
|
return null;
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1569
|
+
}
|
|
1570
|
+
let result = React.createElement("div", { className: this.timerModel.survey.getCss().timerRoot }, this.timerModel.text);
|
|
1571
|
+
if (this.timerModel.showTimerAsClock) {
|
|
1572
|
+
let style = { strokeDasharray: this.circleLength, strokeDashoffset: this.progress };
|
|
1573
|
+
const progress = (this.timerModel.showProgress ? React.createElement(SvgIcon, { className: this.timerModel.getProgressCss(), style: style, iconName: "icon-timercircle", size: "auto" }) : null);
|
|
1574
|
+
result =
|
|
1575
|
+
(React.createElement("div", { className: this.timerModel.rootCss },
|
|
1576
|
+
progress,
|
|
1577
|
+
React.createElement("div", { className: this.timerModel.textContainerCss },
|
|
1578
|
+
React.createElement("span", { className: this.timerModel.majorTextCss }, this.timerModel.clockMajorText),
|
|
1579
|
+
(this.timerModel.clockMinorText ? React.createElement("span", { className: this.timerModel.minorTextCss }, this.timerModel.clockMinorText) : null))));
|
|
1580
|
+
}
|
|
1376
1581
|
return result;
|
|
1377
1582
|
}
|
|
1378
1583
|
}
|
|
1379
|
-
ReactElementFactory.Instance.registerElement("sv-
|
|
1380
|
-
return React.createElement(
|
|
1584
|
+
ReactElementFactory.Instance.registerElement("sv-timerpanel", (props) => {
|
|
1585
|
+
return React.createElement(SurveyTimerPanel, props);
|
|
1381
1586
|
});
|
|
1382
1587
|
|
|
1383
|
-
class
|
|
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 });
|
|
1391
|
-
}
|
|
1588
|
+
class SurveyRowElement extends SurveyElementBase {
|
|
1392
1589
|
constructor(props) {
|
|
1393
1590
|
super(props);
|
|
1394
|
-
this.
|
|
1591
|
+
this.element.cssClasses;
|
|
1395
1592
|
this.rootRef = React.createRef();
|
|
1396
1593
|
}
|
|
1397
1594
|
getStateElement() {
|
|
1398
|
-
return this.
|
|
1595
|
+
return this.element;
|
|
1399
1596
|
}
|
|
1400
|
-
get
|
|
1597
|
+
get element() {
|
|
1401
1598
|
return this.props.element;
|
|
1402
1599
|
}
|
|
1600
|
+
get index() {
|
|
1601
|
+
return this.props.index;
|
|
1602
|
+
}
|
|
1603
|
+
get row() {
|
|
1604
|
+
return this.props.row;
|
|
1605
|
+
}
|
|
1606
|
+
get survey() {
|
|
1607
|
+
return this.props.survey;
|
|
1608
|
+
}
|
|
1403
1609
|
get creator() {
|
|
1404
1610
|
return this.props.creator;
|
|
1405
1611
|
}
|
|
1612
|
+
get css() {
|
|
1613
|
+
return this.props.css;
|
|
1614
|
+
}
|
|
1406
1615
|
componentDidMount() {
|
|
1407
1616
|
super.componentDidMount();
|
|
1408
|
-
if (
|
|
1409
|
-
this.
|
|
1617
|
+
if (this.rootRef.current) {
|
|
1618
|
+
(this.element).setWrapperElement(this.rootRef.current);
|
|
1410
1619
|
}
|
|
1411
|
-
this.doAfterRender();
|
|
1412
1620
|
}
|
|
1413
1621
|
componentWillUnmount() {
|
|
1414
1622
|
super.componentWillUnmount();
|
|
1415
|
-
|
|
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();
|
|
1623
|
+
this.element.setWrapperElement(undefined);
|
|
1426
1624
|
}
|
|
1427
|
-
|
|
1428
|
-
if (
|
|
1429
|
-
|
|
1430
|
-
|
|
1625
|
+
shouldComponentUpdate(nextProps, nextState) {
|
|
1626
|
+
if (!super.shouldComponentUpdate(nextProps, nextState))
|
|
1627
|
+
return false;
|
|
1628
|
+
if (nextProps.element !== this.element) {
|
|
1629
|
+
if (nextProps.element) {
|
|
1630
|
+
nextProps.element.setWrapperElement(this.rootRef.current);
|
|
1431
1631
|
}
|
|
1432
|
-
this.
|
|
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
|
-
}
|
|
1632
|
+
if (this.element) {
|
|
1633
|
+
this.element.setWrapperElement(undefined);
|
|
1441
1634
|
}
|
|
1442
1635
|
}
|
|
1443
|
-
|
|
1444
|
-
|
|
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)));
|
|
1490
|
-
}
|
|
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 });
|
|
1495
|
-
}
|
|
1496
|
-
renderSingleInputBreadcrumbs(question, cssClasses) {
|
|
1497
|
-
return React.createElement(SurveyBreadcrumbs, { model: question.singleInputActions, css: cssClasses });
|
|
1498
|
-
}
|
|
1499
|
-
renderSingleInputSummary(question, cssClasses) {
|
|
1500
|
-
return React.createElement(SurveyQuestionSigleInputSummary, { summary: question.singleInputSummary, creator: this.creator, css: cssClasses });
|
|
1501
|
-
}
|
|
1502
|
-
wrapElement(element) {
|
|
1503
|
-
const survey = this.question.survey;
|
|
1504
|
-
let wrapper = null;
|
|
1505
|
-
if (survey) {
|
|
1506
|
-
wrapper = ReactSurveyElementsWrapper.wrapElement(survey, element, this.question);
|
|
1507
|
-
}
|
|
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);
|
|
1515
|
-
}
|
|
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" }));
|
|
1537
|
-
}
|
|
1538
|
-
}
|
|
1539
|
-
ReactElementFactory.Instance.registerElement("question", (props) => {
|
|
1540
|
-
return React.createElement(SurveyQuestion, props);
|
|
1541
|
-
});
|
|
1542
|
-
class SurveyElementErrors extends ReactSurveyElement {
|
|
1543
|
-
constructor(props) {
|
|
1544
|
-
super(props);
|
|
1545
|
-
this.state = this.getState();
|
|
1546
|
-
}
|
|
1547
|
-
get id() {
|
|
1548
|
-
return this.props.element.id + "_errors";
|
|
1549
|
-
}
|
|
1550
|
-
get element() {
|
|
1551
|
-
return this.props.element;
|
|
1552
|
-
}
|
|
1553
|
-
get creator() {
|
|
1554
|
-
return this.props.creator;
|
|
1555
|
-
}
|
|
1556
|
-
getState(prevState = null) {
|
|
1557
|
-
return !prevState ? { error: 0 } : { error: prevState.error + 1 };
|
|
1558
|
-
}
|
|
1559
|
-
canRender() {
|
|
1560
|
-
return !!this.element && this.element.hasVisibleErrors;
|
|
1561
|
-
}
|
|
1562
|
-
componentWillUnmount() {
|
|
1636
|
+
this.element.cssClasses;
|
|
1637
|
+
return true;
|
|
1563
1638
|
}
|
|
1564
1639
|
renderElement() {
|
|
1565
|
-
const
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1640
|
+
const element = this.element;
|
|
1641
|
+
const innerElement = this.createElement(element, this.index);
|
|
1642
|
+
const css = element.cssClassesValue;
|
|
1643
|
+
const focusIn = () => {
|
|
1644
|
+
const el = element;
|
|
1645
|
+
if (el && el.isQuestion) {
|
|
1646
|
+
el.focusIn();
|
|
1647
|
+
}
|
|
1648
|
+
};
|
|
1649
|
+
return (React.createElement("div", { className: css.questionWrapper, style: element.rootStyle, "data-key": element.name + this.index, onFocus: focusIn, ref: this.rootRef }, innerElement));
|
|
1650
|
+
}
|
|
1651
|
+
createElement(element, elementIndex) {
|
|
1652
|
+
if (!this.row.isNeedRender) {
|
|
1653
|
+
return ReactElementFactory.Instance.createElement(element.skeletonComponentName, { element: element, css: this.css, });
|
|
1569
1654
|
}
|
|
1570
|
-
|
|
1655
|
+
let elementType = element.getTemplate();
|
|
1656
|
+
if (!ReactElementFactory.Instance.isElementRegistered(elementType)) {
|
|
1657
|
+
elementType = "question";
|
|
1658
|
+
}
|
|
1659
|
+
return ReactElementFactory.Instance.createElement(elementType, {
|
|
1660
|
+
element: element,
|
|
1661
|
+
creator: this.creator,
|
|
1662
|
+
survey: this.survey,
|
|
1663
|
+
css: this.css,
|
|
1664
|
+
});
|
|
1571
1665
|
}
|
|
1572
1666
|
}
|
|
1573
|
-
|
|
1667
|
+
|
|
1668
|
+
class SurveyRow extends SurveyElementBase {
|
|
1574
1669
|
constructor(props) {
|
|
1575
1670
|
super(props);
|
|
1671
|
+
this.rootRef = React.createRef();
|
|
1672
|
+
this.recalculateCss();
|
|
1673
|
+
}
|
|
1674
|
+
recalculateCss() {
|
|
1675
|
+
this.row.visibleElements.map(element => element.cssClasses);
|
|
1576
1676
|
}
|
|
1577
1677
|
getStateElement() {
|
|
1578
|
-
return this.
|
|
1678
|
+
return this.row;
|
|
1579
1679
|
}
|
|
1580
|
-
get
|
|
1581
|
-
return this.
|
|
1680
|
+
get row() {
|
|
1681
|
+
return this.props.row;
|
|
1682
|
+
}
|
|
1683
|
+
get survey() {
|
|
1684
|
+
return this.props.survey;
|
|
1582
1685
|
}
|
|
1583
1686
|
get creator() {
|
|
1584
1687
|
return this.props.creator;
|
|
1585
1688
|
}
|
|
1586
|
-
|
|
1587
|
-
return this.props.
|
|
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();
|
|
1689
|
+
get css() {
|
|
1690
|
+
return this.props.css;
|
|
1599
1691
|
}
|
|
1600
|
-
doAfterRender() { }
|
|
1601
1692
|
canRender() {
|
|
1602
|
-
return !!this.
|
|
1693
|
+
return !!this.row && !!this.survey && !!this.creator;
|
|
1603
1694
|
}
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1695
|
+
renderElementContent() {
|
|
1696
|
+
const elements = this.row.visibleElements.map((element, elementIndex) => {
|
|
1697
|
+
return (React.createElement(SurveyRowElement, { element: element, index: elementIndex, row: this.row, survey: this.survey, creator: this.creator, css: this.css, key: element.id }));
|
|
1698
|
+
});
|
|
1699
|
+
return (React.createElement("div", { ref: this.rootRef, className: this.row.getRowCss() }, elements));
|
|
1607
1700
|
}
|
|
1608
|
-
|
|
1609
|
-
|
|
1701
|
+
renderElement() {
|
|
1702
|
+
const survey = this.survey;
|
|
1703
|
+
const content = this.renderElementContent();
|
|
1704
|
+
const wrapper = ReactSurveyElementsWrapper.wrapRow(survey, content, this.row);
|
|
1705
|
+
return wrapper || content;
|
|
1610
1706
|
}
|
|
1611
|
-
|
|
1612
|
-
|
|
1707
|
+
componentDidMount() {
|
|
1708
|
+
super.componentDidMount();
|
|
1709
|
+
var el = this.rootRef.current;
|
|
1710
|
+
if (this.rootRef.current) {
|
|
1711
|
+
this.row.setRootElement(this.rootRef.current);
|
|
1712
|
+
}
|
|
1713
|
+
if (!!el && !this.row.isNeedRender) {
|
|
1714
|
+
var rowContainerDiv = el;
|
|
1715
|
+
this.lazyRenderingTimeout = setTimeout(() => {
|
|
1716
|
+
this.row.startLazyRendering(rowContainerDiv);
|
|
1717
|
+
}, 10);
|
|
1718
|
+
}
|
|
1613
1719
|
}
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1720
|
+
shouldComponentUpdate(nextProps, nextState) {
|
|
1721
|
+
if (!super.shouldComponentUpdate(nextProps, nextState))
|
|
1722
|
+
return false;
|
|
1723
|
+
if (nextProps.row !== this.row) {
|
|
1724
|
+
nextProps.row.isNeedRender = this.row.isNeedRender;
|
|
1725
|
+
nextProps.row.setRootElement(this.rootRef.current);
|
|
1726
|
+
this.row.setRootElement(undefined);
|
|
1727
|
+
this.stopLazyRendering();
|
|
1728
|
+
}
|
|
1729
|
+
this.recalculateCss();
|
|
1730
|
+
return true;
|
|
1731
|
+
}
|
|
1732
|
+
stopLazyRendering() {
|
|
1733
|
+
clearTimeout(this.lazyRenderingTimeout);
|
|
1734
|
+
this.row.stopLazyRendering();
|
|
1735
|
+
this.row.isNeedRender = !this.row.isLazyRendering();
|
|
1619
1736
|
}
|
|
1620
1737
|
componentWillUnmount() {
|
|
1738
|
+
const isCurrentStateElement = this.isCurrentStateElement(this.getStateElement());
|
|
1621
1739
|
super.componentWillUnmount();
|
|
1622
|
-
if (
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
el.removeAttribute("data-rendered");
|
|
1626
|
-
}
|
|
1740
|
+
if (isCurrentStateElement) {
|
|
1741
|
+
this.row.setRootElement(undefined);
|
|
1742
|
+
this.stopLazyRendering();
|
|
1627
1743
|
}
|
|
1628
1744
|
}
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
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);
|
|
1745
|
+
createElement(element, elementIndex) {
|
|
1746
|
+
const index = elementIndex ? "-" + elementIndex : 0;
|
|
1747
|
+
var elementType = element.getType();
|
|
1748
|
+
if (!ReactElementFactory.Instance.isElementRegistered(elementType)) {
|
|
1749
|
+
elementType = "question";
|
|
1652
1750
|
}
|
|
1653
|
-
return
|
|
1751
|
+
return ReactElementFactory.Instance.createElement(elementType, {
|
|
1752
|
+
key: element.name + index,
|
|
1753
|
+
element: element,
|
|
1754
|
+
creator: this.creator,
|
|
1755
|
+
survey: this.survey,
|
|
1756
|
+
css: this.css,
|
|
1757
|
+
});
|
|
1654
1758
|
}
|
|
1655
1759
|
}
|
|
1656
|
-
|
|
1760
|
+
|
|
1761
|
+
class SurveyPanelBase extends SurveyElementBase {
|
|
1657
1762
|
constructor(props) {
|
|
1658
1763
|
super(props);
|
|
1659
|
-
this.
|
|
1660
|
-
changed: 0
|
|
1661
|
-
};
|
|
1662
|
-
if (this.question) {
|
|
1663
|
-
this.registerCallback(this.question);
|
|
1664
|
-
}
|
|
1764
|
+
this.rootRef = React.createRef();
|
|
1665
1765
|
}
|
|
1666
|
-
|
|
1667
|
-
return this.
|
|
1766
|
+
getStateElement() {
|
|
1767
|
+
return this.panelBase;
|
|
1668
1768
|
}
|
|
1669
|
-
|
|
1670
|
-
|
|
1769
|
+
canUsePropInState(key) {
|
|
1770
|
+
return key !== "elements" && super.canUsePropInState(key);
|
|
1671
1771
|
}
|
|
1672
|
-
|
|
1673
|
-
return
|
|
1772
|
+
get survey() {
|
|
1773
|
+
return this.getSurvey();
|
|
1674
1774
|
}
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
this.update();
|
|
1678
|
-
}, "__reactSubscription");
|
|
1775
|
+
get creator() {
|
|
1776
|
+
return this.props.creator;
|
|
1679
1777
|
}
|
|
1680
|
-
|
|
1681
|
-
|
|
1778
|
+
get css() {
|
|
1779
|
+
return this.getCss();
|
|
1682
1780
|
}
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1781
|
+
get panelBase() {
|
|
1782
|
+
return this.getPanelBase();
|
|
1783
|
+
}
|
|
1784
|
+
getPanelBase() {
|
|
1785
|
+
return this.props.element || this.props.question;
|
|
1786
|
+
}
|
|
1787
|
+
getSurvey() {
|
|
1788
|
+
return (this.props.survey || (!!this.panelBase ? this.panelBase.survey : null));
|
|
1789
|
+
}
|
|
1790
|
+
getCss() {
|
|
1791
|
+
return this.props.css;
|
|
1792
|
+
}
|
|
1793
|
+
componentDidMount() {
|
|
1794
|
+
super.componentDidMount();
|
|
1795
|
+
this.doAfterRender();
|
|
1690
1796
|
}
|
|
1691
1797
|
componentWillUnmount() {
|
|
1692
|
-
|
|
1693
|
-
|
|
1798
|
+
super.componentWillUnmount();
|
|
1799
|
+
var el = this.rootRef.current;
|
|
1800
|
+
if (!!el) {
|
|
1801
|
+
el.removeAttribute("data-rendered");
|
|
1694
1802
|
}
|
|
1695
1803
|
}
|
|
1696
|
-
|
|
1697
|
-
|
|
1804
|
+
componentDidUpdate(prevProps, prevState) {
|
|
1805
|
+
super.componentDidUpdate(prevProps, prevState);
|
|
1806
|
+
if (!!prevProps.page &&
|
|
1807
|
+
!!this.survey &&
|
|
1808
|
+
!!this.survey.activePage &&
|
|
1809
|
+
prevProps.page.id === this.survey.activePage.id)
|
|
1810
|
+
return;
|
|
1811
|
+
this.doAfterRender();
|
|
1698
1812
|
}
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1813
|
+
doAfterRender() {
|
|
1814
|
+
var el = this.rootRef.current;
|
|
1815
|
+
if (el && this.survey) {
|
|
1816
|
+
if (this.panelBase.isPanel) {
|
|
1817
|
+
this.panelBase.afterRender(el);
|
|
1818
|
+
}
|
|
1819
|
+
else {
|
|
1820
|
+
this.survey.afterRenderPage(el);
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1704
1823
|
}
|
|
1705
|
-
|
|
1706
|
-
return this.
|
|
1824
|
+
getIsVisible() {
|
|
1825
|
+
return this.panelBase.isVisible;
|
|
1707
1826
|
}
|
|
1708
|
-
|
|
1709
|
-
return this.panelBase;
|
|
1827
|
+
canRender() {
|
|
1828
|
+
return (super.canRender() && !!this.survey && !!this.panelBase && !!this.panelBase.survey && this.getIsVisible());
|
|
1829
|
+
}
|
|
1830
|
+
renderRows(css) {
|
|
1831
|
+
return this.panelBase.visibleRows.map((row) => this.createRow(row, css));
|
|
1710
1832
|
}
|
|
1711
|
-
|
|
1712
|
-
|
|
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));
|
|
1833
|
+
createRow(row, css) {
|
|
1834
|
+
return (React.createElement(SurveyRow, { key: row.id, row: row, survey: this.survey, creator: this.creator, css: css }));
|
|
1721
1835
|
}
|
|
1722
|
-
|
|
1723
|
-
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
class CharacterCounterComponent extends SurveyElementBase {
|
|
1839
|
+
getStateElement() {
|
|
1840
|
+
return this.props.counter;
|
|
1724
1841
|
}
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
return null;
|
|
1728
|
-
var text = SurveyElementBase.renderLocString(this.page.locDescription);
|
|
1729
|
-
return (React.createElement("div", { className: this.panelBase.cssClasses.page.description }, text));
|
|
1842
|
+
renderElement() {
|
|
1843
|
+
return (React.createElement("div", { className: this.props.remainingCharacterCounter }, this.props.counter.remainingCharacterCounter));
|
|
1730
1844
|
}
|
|
1731
1845
|
}
|
|
1846
|
+
ReactElementFactory.Instance.registerElement("sv-character-counter", (props) => {
|
|
1847
|
+
return React.createElement(CharacterCounterComponent, props);
|
|
1848
|
+
});
|
|
1732
1849
|
|
|
1733
|
-
class
|
|
1850
|
+
class TextAreaComponent extends SurveyElementBase {
|
|
1734
1851
|
constructor(props) {
|
|
1735
1852
|
super(props);
|
|
1736
|
-
this.
|
|
1737
|
-
this.
|
|
1853
|
+
this.initialValue = this.viewModel.getTextValue() || "";
|
|
1854
|
+
this.textareaRef = React.createRef();
|
|
1738
1855
|
}
|
|
1739
|
-
get
|
|
1740
|
-
return this.props.
|
|
1856
|
+
get viewModel() {
|
|
1857
|
+
return this.props.viewModel;
|
|
1741
1858
|
}
|
|
1742
|
-
|
|
1743
|
-
return this.
|
|
1859
|
+
canRender() {
|
|
1860
|
+
return !!this.viewModel.question;
|
|
1744
1861
|
}
|
|
1745
1862
|
componentDidMount() {
|
|
1746
|
-
|
|
1747
|
-
this.
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
}
|
|
1863
|
+
super.componentDidMount();
|
|
1864
|
+
let el = this.textareaRef.current;
|
|
1865
|
+
if (!!el) {
|
|
1866
|
+
this.viewModel.setElement(el);
|
|
1867
|
+
}
|
|
1751
1868
|
}
|
|
1752
1869
|
componentWillUnmount() {
|
|
1753
|
-
|
|
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
|
-
});
|
|
1870
|
+
super.componentWillUnmount();
|
|
1871
|
+
this.viewModel.resetElement();
|
|
1771
1872
|
}
|
|
1772
|
-
|
|
1773
|
-
|
|
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 })));
|
|
1873
|
+
renderElement() {
|
|
1874
|
+
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
1875
|
}
|
|
1781
1876
|
}
|
|
1782
|
-
ReactElementFactory.Instance.registerElement("
|
|
1783
|
-
return React.createElement(
|
|
1877
|
+
ReactElementFactory.Instance.registerElement("sv-text-area", (props) => {
|
|
1878
|
+
return React.createElement(TextAreaComponent, props);
|
|
1784
1879
|
});
|
|
1785
1880
|
|
|
1786
|
-
class
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1881
|
+
class SurveyQuestionComment extends SurveyQuestionUncontrolledElement {
|
|
1882
|
+
renderCharacterCounter() {
|
|
1883
|
+
let counter = null;
|
|
1884
|
+
if (!!this.question.getMaxLength()) {
|
|
1885
|
+
counter = React.createElement(CharacterCounterComponent, { counter: this.question.characterCounter, remainingCharacterCounter: this.question.cssClasses.remainingCharacterCounter });
|
|
1886
|
+
}
|
|
1887
|
+
return counter;
|
|
1888
|
+
}
|
|
1889
|
+
constructor(props) {
|
|
1890
|
+
super(props);
|
|
1891
|
+
}
|
|
1892
|
+
renderElement() {
|
|
1893
|
+
if (this.question.isReadOnlyRenderDiv()) {
|
|
1894
|
+
return React.createElement("div", null, this.question.value);
|
|
1895
|
+
}
|
|
1896
|
+
const counter = this.renderCharacterCounter();
|
|
1897
|
+
const textAreaModel = this.props.question.textAreaModel;
|
|
1898
|
+
return (React.createElement(React.Fragment, null,
|
|
1899
|
+
React.createElement(TextAreaComponent, { viewModel: textAreaModel }),
|
|
1900
|
+
counter));
|
|
1796
1901
|
}
|
|
1797
1902
|
}
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1903
|
+
class SurveyQuestionCommentItem extends ReactSurveyElement {
|
|
1904
|
+
constructor(props) {
|
|
1905
|
+
super(props);
|
|
1906
|
+
this.textAreaModel = this.getTextAreaModel();
|
|
1802
1907
|
}
|
|
1803
|
-
|
|
1804
|
-
return this.
|
|
1908
|
+
canRender() {
|
|
1909
|
+
return !!this.props.question;
|
|
1910
|
+
}
|
|
1911
|
+
getTextAreaModel() {
|
|
1912
|
+
return this.props.question.commentTextAreaModel;
|
|
1805
1913
|
}
|
|
1806
1914
|
renderElement() {
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1915
|
+
const question = this.props.question;
|
|
1916
|
+
if (question.isReadOnlyRenderDiv()) {
|
|
1917
|
+
const comment = this.textAreaModel.getTextValue() || "";
|
|
1918
|
+
return React.createElement("div", null, comment);
|
|
1919
|
+
}
|
|
1920
|
+
return (React.createElement(TextAreaComponent, { key: this.getKey(), viewModel: this.textAreaModel }));
|
|
1813
1921
|
}
|
|
1922
|
+
getKey() { return undefined; }
|
|
1814
1923
|
}
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
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
|
-
}));
|
|
1924
|
+
class SurveyQuestionCommentValueItem extends SurveyQuestionCommentItem {
|
|
1925
|
+
constructor(props) {
|
|
1926
|
+
super(props);
|
|
1927
|
+
}
|
|
1928
|
+
getTextAreaModel() {
|
|
1929
|
+
return this.props.question.getCommentTextAreaModel(this.props.item);
|
|
1834
1930
|
}
|
|
1931
|
+
getKey() { return this.props.item.normalizedId; }
|
|
1835
1932
|
}
|
|
1836
|
-
|
|
1837
|
-
return React.createElement(
|
|
1933
|
+
ReactQuestionFactory.Instance.registerQuestion("comment", (props) => {
|
|
1934
|
+
return React.createElement(SurveyQuestionComment, props);
|
|
1838
1935
|
});
|
|
1839
1936
|
|
|
1840
|
-
class
|
|
1937
|
+
class SurveyCustomWidget extends SurveyQuestionElementBase {
|
|
1841
1938
|
constructor(props) {
|
|
1842
1939
|
super(props);
|
|
1843
|
-
this.
|
|
1844
|
-
|
|
1845
|
-
|
|
1940
|
+
this.widgetRef = React.createRef();
|
|
1941
|
+
}
|
|
1942
|
+
_afterRender() {
|
|
1943
|
+
if (this.questionBase.customWidget) {
|
|
1944
|
+
let el = this.widgetRef.current;
|
|
1945
|
+
if (!!el) {
|
|
1946
|
+
this.questionBase.customWidget.afterRender(this.questionBase, el);
|
|
1947
|
+
this.questionBase.customWidgetData.isNeedRender = false;
|
|
1846
1948
|
}
|
|
1847
|
-
}
|
|
1848
|
-
this.containerRef = React.createRef();
|
|
1949
|
+
}
|
|
1849
1950
|
}
|
|
1850
1951
|
componentDidMount() {
|
|
1851
|
-
|
|
1852
|
-
|
|
1952
|
+
super.componentDidMount();
|
|
1953
|
+
if (this.questionBase) {
|
|
1954
|
+
this._afterRender();
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
componentDidUpdate(prevProps, prevState) {
|
|
1958
|
+
super.componentDidUpdate(prevProps, prevState);
|
|
1959
|
+
var isDefaultRender = !!this.questionBase.customWidget &&
|
|
1960
|
+
this.questionBase.customWidget.isDefaultRender;
|
|
1961
|
+
if (this.questionBase && !isDefaultRender) {
|
|
1962
|
+
this._afterRender();
|
|
1963
|
+
}
|
|
1853
1964
|
}
|
|
1854
1965
|
componentWillUnmount() {
|
|
1855
|
-
|
|
1966
|
+
super.componentWillUnmount();
|
|
1967
|
+
if (this.questionBase.customWidget) {
|
|
1968
|
+
let el = this.widgetRef.current;
|
|
1969
|
+
if (!!el) {
|
|
1970
|
+
this.questionBase.customWidget.willUnmount(this.questionBase, el);
|
|
1971
|
+
}
|
|
1972
|
+
}
|
|
1856
1973
|
}
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1974
|
+
canRender() {
|
|
1975
|
+
return super.canRender() && this.questionBase.visible;
|
|
1976
|
+
}
|
|
1977
|
+
renderElement() {
|
|
1978
|
+
let customWidget = this.questionBase.customWidget;
|
|
1979
|
+
if (customWidget.isDefaultRender) {
|
|
1980
|
+
return (React.createElement("div", { ref: this.widgetRef }, this.creator.createQuestionElement(this.questionBase)));
|
|
1981
|
+
}
|
|
1982
|
+
let widget = null;
|
|
1983
|
+
if (customWidget.widgetJson.render) {
|
|
1984
|
+
widget = customWidget.widgetJson.render(this.questionBase);
|
|
1985
|
+
}
|
|
1986
|
+
else {
|
|
1987
|
+
if (customWidget.htmlTemplate) {
|
|
1988
|
+
let htmlValue = { __html: customWidget.htmlTemplate };
|
|
1989
|
+
return React.createElement("div", { ref: this.widgetRef, dangerouslySetInnerHTML: htmlValue });
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
return React.createElement("div", { ref: this.widgetRef }, widget);
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
class SurveyElementHeader extends SurveyElementBase {
|
|
1997
|
+
get element() {
|
|
1998
|
+
return this.props.element;
|
|
1999
|
+
}
|
|
2000
|
+
getRenderedElements() {
|
|
2001
|
+
return [this.element];
|
|
2002
|
+
}
|
|
2003
|
+
renderElement() {
|
|
2004
|
+
const element = this.element;
|
|
2005
|
+
const title = element.hasTitle ? (React.createElement(TitleElement, { element: element })) : null;
|
|
2006
|
+
const description = element.hasDescriptionUnderTitle
|
|
2007
|
+
? SurveyElementBase.renderQuestionDescription(this.element)
|
|
2008
|
+
: null;
|
|
2009
|
+
const additionalTitleToolbarElement = element.hasAdditionalTitleToolbar ? React.createElement(SurveyActionBar, { model: element.additionalTitleToolbar }) : null;
|
|
2010
|
+
const headerStyle = { width: undefined };
|
|
2011
|
+
if (element instanceof Question) {
|
|
2012
|
+
headerStyle.width = element.titleWidth;
|
|
2013
|
+
}
|
|
2014
|
+
return (React.createElement("div", { className: element.cssHeader, onClick: (e) => element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent), style: headerStyle },
|
|
2015
|
+
title,
|
|
2016
|
+
description,
|
|
2017
|
+
additionalTitleToolbarElement));
|
|
1862
2018
|
}
|
|
1863
2019
|
}
|
|
1864
2020
|
|
|
1865
|
-
class
|
|
2021
|
+
class SurveyQuestionSigleInputSummary extends ReactSurveyElement {
|
|
1866
2022
|
constructor(props) {
|
|
1867
2023
|
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
2024
|
}
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
descriptor.init();
|
|
1892
|
-
}
|
|
1893
|
-
this.modalDescriptors.push(descriptor);
|
|
2025
|
+
get css() {
|
|
2026
|
+
return this.props.css;
|
|
1894
2027
|
}
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
this.modalDescriptors.splice(this.modalDescriptors.indexOf(descriptor), 1);
|
|
1898
|
-
if (!settings.showDialog && this.modalDescriptors[0]) {
|
|
1899
|
-
this.modalDescriptors[0].init();
|
|
1900
|
-
}
|
|
2028
|
+
get summary() {
|
|
2029
|
+
return this.props.summary;
|
|
1901
2030
|
}
|
|
1902
2031
|
renderElement() {
|
|
1903
|
-
if (!this.
|
|
2032
|
+
if (!this.summary)
|
|
1904
2033
|
return null;
|
|
1905
|
-
return
|
|
2034
|
+
return this.summary.isEmpty() ? this.renderNoItems() : this.renderItems();
|
|
1906
2035
|
}
|
|
1907
|
-
|
|
1908
|
-
this.
|
|
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;
|
|
2036
|
+
renderItems() {
|
|
2037
|
+
return (React.createElement("div", { className: this.css.summary }, this.summary.items.map((item, index) => this.renderItem(item, index))));
|
|
1920
2038
|
}
|
|
1921
|
-
|
|
1922
|
-
|
|
2039
|
+
renderNoItems() {
|
|
2040
|
+
const q = this.summary.question;
|
|
2041
|
+
const placeholder = ReactElementFactory.Instance.createElement("sv-placeholder-" + q.getTemplate(), { cssClasses: this.css, question: q });
|
|
2042
|
+
return placeholder || React.createElement("div", null, this.renderLocString(this.summary.noEntry));
|
|
1923
2043
|
}
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
this.
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
2044
|
+
renderItem(item, index) {
|
|
2045
|
+
const btnEdit = item.btnEdit ?
|
|
2046
|
+
React.createElement("button", { className: this.css.summaryRowActionEdit, onClick: () => item.btnEdit.action(), title: item.btnEdit.title },
|
|
2047
|
+
React.createElement(SvgIcon, { iconName: "icon-editsmall-16x16", iconSize: "auto" })) : null;
|
|
2048
|
+
const btnDelete = item.showRemove && item.btnRemove ?
|
|
2049
|
+
React.createElement("button", { className: this.css.summaryRowActionDelete, onClick: () => item.btnRemove.action(), title: item.btnRemove.title },
|
|
2050
|
+
React.createElement(SvgIcon, { iconName: "icon-delete-16x16", iconSize: "auto" })) : null;
|
|
2051
|
+
return React.createElement("div", { className: this.css.summaryRow, key: index },
|
|
2052
|
+
React.createElement("div", { className: this.css.summaryRowContent }, this.renderLocString(item.locText)),
|
|
2053
|
+
React.createElement("div", { className: this.css.summaryRowActions },
|
|
2054
|
+
btnEdit,
|
|
2055
|
+
btnDelete));
|
|
1930
2056
|
}
|
|
1931
2057
|
}
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
* surveyjs - Survey JavaScript library v2.3.8
|
|
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.8
|
|
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
|
-
};
|
|
2058
|
+
ReactElementFactory.Instance.registerElement("sv-singleinput-summary", (props) => {
|
|
2059
|
+
return React.createElement(SurveyQuestionSigleInputSummary, props);
|
|
2060
|
+
});
|
|
2073
2061
|
|
|
2074
|
-
class
|
|
2062
|
+
class SurveyBreadcrumbs extends SurveyElementBase {
|
|
2075
2063
|
constructor(props) {
|
|
2076
2064
|
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
2065
|
}
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
if (!container)
|
|
2088
|
-
return;
|
|
2089
|
-
this.model.setRootElement(container);
|
|
2066
|
+
getStateElement() {
|
|
2067
|
+
return this.props.model;
|
|
2090
2068
|
}
|
|
2091
|
-
|
|
2092
|
-
this.model.
|
|
2093
|
-
|
|
2069
|
+
get items() {
|
|
2070
|
+
return this.props.model.actions;
|
|
2071
|
+
}
|
|
2072
|
+
get css() {
|
|
2073
|
+
return this.props.css;
|
|
2074
|
+
}
|
|
2075
|
+
renderElement() {
|
|
2076
|
+
if (!this.items || !this.items.length)
|
|
2077
|
+
return null;
|
|
2078
|
+
const items = this.renderItems();
|
|
2079
|
+
return (React.createElement("div", { className: this.css.breadcrumbsRoot }, items));
|
|
2094
2080
|
}
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
React.createElement(
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2081
|
+
renderItems() {
|
|
2082
|
+
const result = [];
|
|
2083
|
+
this.items.concat([]).forEach((item, itemIndex) => {
|
|
2084
|
+
if (itemIndex) {
|
|
2085
|
+
result.push(React.createElement(SvgIcon, { key: item.renderedId + "_separator", className: this.css.breadcrumbsSeparator, iconName: "arrowright-16x16", size: "auto" }));
|
|
2086
|
+
}
|
|
2087
|
+
result.push(React.createElement(SurveyAction, { key: item.renderedId, item: item }));
|
|
2088
|
+
});
|
|
2089
|
+
return result;
|
|
2103
2090
|
}
|
|
2104
2091
|
}
|
|
2105
|
-
ReactElementFactory.Instance.registerElement("
|
|
2106
|
-
return React.createElement(
|
|
2092
|
+
ReactElementFactory.Instance.registerElement("sv-breadcrumbs", (props) => {
|
|
2093
|
+
return React.createElement(SurveyBreadcrumbs, props);
|
|
2107
2094
|
});
|
|
2108
2095
|
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2096
|
+
class SurveyQuestion extends SurveyElementBase {
|
|
2097
|
+
static renderQuestionBody(creator, question) {
|
|
2098
|
+
// if (!question.isVisible) return null;
|
|
2099
|
+
var customWidget = question.customWidget;
|
|
2100
|
+
if (!customWidget) {
|
|
2101
|
+
return creator.createQuestionElement(question);
|
|
2102
|
+
}
|
|
2103
|
+
return React.createElement(SurveyCustomWidget, { creator: creator, question: question });
|
|
2104
|
+
}
|
|
2113
2105
|
constructor(props) {
|
|
2114
2106
|
super(props);
|
|
2115
|
-
this.
|
|
2116
|
-
this.isSurveyUpdated = false;
|
|
2117
|
-
this.createSurvey(props);
|
|
2118
|
-
this.updateSurvey(props, {});
|
|
2107
|
+
this.isNeedFocus = false;
|
|
2119
2108
|
this.rootRef = React.createRef();
|
|
2120
|
-
this.rootNodeId = props.id || null;
|
|
2121
|
-
this.rootNodeClassName = props.className || "";
|
|
2122
2109
|
}
|
|
2123
2110
|
getStateElement() {
|
|
2124
|
-
return this.
|
|
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
|
-
}
|
|
2111
|
+
return this.question;
|
|
2134
2112
|
}
|
|
2135
|
-
|
|
2136
|
-
|
|
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;
|
|
2113
|
+
get question() {
|
|
2114
|
+
return this.props.element;
|
|
2145
2115
|
}
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
this.updateSurvey(this.props, prevProps);
|
|
2149
|
-
if (this.isSurveyUpdated) {
|
|
2150
|
-
this.onSurveyUpdated();
|
|
2151
|
-
this.isSurveyUpdated = false;
|
|
2152
|
-
}
|
|
2116
|
+
get creator() {
|
|
2117
|
+
return this.props.creator;
|
|
2153
2118
|
}
|
|
2154
2119
|
componentDidMount() {
|
|
2155
2120
|
super.componentDidMount();
|
|
2156
|
-
this.
|
|
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();
|
|
2121
|
+
if (!!this.question) {
|
|
2122
|
+
this.question["react"] = this;
|
|
2164
2123
|
}
|
|
2124
|
+
this.doAfterRender();
|
|
2165
2125
|
}
|
|
2166
2126
|
componentWillUnmount() {
|
|
2167
2127
|
super.componentWillUnmount();
|
|
2168
|
-
this.
|
|
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();
|
|
2128
|
+
if (!!this.question) {
|
|
2129
|
+
this.question["react"] = null;
|
|
2177
2130
|
}
|
|
2178
|
-
|
|
2179
|
-
|
|
2131
|
+
const el = this.rootRef.current;
|
|
2132
|
+
if (!!el) {
|
|
2133
|
+
el.removeAttribute("data-rendered");
|
|
2180
2134
|
}
|
|
2181
|
-
|
|
2182
|
-
|
|
2135
|
+
}
|
|
2136
|
+
componentDidUpdate(prevProps, prevState) {
|
|
2137
|
+
super.componentDidUpdate(prevProps, prevState);
|
|
2138
|
+
this.doAfterRender();
|
|
2139
|
+
}
|
|
2140
|
+
doAfterRender() {
|
|
2141
|
+
if (this.isNeedFocus) {
|
|
2142
|
+
if (!this.question.isCollapsed) {
|
|
2143
|
+
this.question.clickTitleFunction();
|
|
2144
|
+
}
|
|
2145
|
+
this.isNeedFocus = false;
|
|
2183
2146
|
}
|
|
2184
|
-
|
|
2185
|
-
|
|
2147
|
+
if (this.question) {
|
|
2148
|
+
var el = this.rootRef.current;
|
|
2149
|
+
if (el && el.getAttribute("data-rendered") !== "r") {
|
|
2150
|
+
el.setAttribute("data-rendered", "r");
|
|
2151
|
+
if (this.question.afterRender) {
|
|
2152
|
+
this.question.afterRender(el);
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2186
2155
|
}
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2156
|
+
}
|
|
2157
|
+
canRender() {
|
|
2158
|
+
return (super.canRender() &&
|
|
2159
|
+
!!this.question &&
|
|
2160
|
+
!!this.creator);
|
|
2161
|
+
}
|
|
2162
|
+
renderQuestionContent() {
|
|
2163
|
+
let question = this.question;
|
|
2164
|
+
var contentStyle = {
|
|
2165
|
+
display: this.question.renderedIsExpanded ? "" : "none",
|
|
2191
2166
|
};
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2167
|
+
var cssClasses = question.cssClasses;
|
|
2168
|
+
var questionRender = this.renderQuestion();
|
|
2169
|
+
var comment = question && question.hasComment ? this.renderComment(cssClasses) : null;
|
|
2170
|
+
var descriptionUnderInput = question.hasDescriptionUnderInput
|
|
2171
|
+
? this.renderDescription()
|
|
2172
|
+
: null;
|
|
2173
|
+
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 },
|
|
2174
|
+
questionRender,
|
|
2175
|
+
comment,
|
|
2176
|
+
descriptionUnderInput));
|
|
2177
|
+
}
|
|
2178
|
+
renderElement() {
|
|
2179
|
+
var question = this.question;
|
|
2180
|
+
var cssClasses = question.cssClasses;
|
|
2181
|
+
var header = this.renderHeader(question);
|
|
2182
|
+
var headerTop = question.hasTitleOnLeftTop ? header : null;
|
|
2183
|
+
var headerBottom = question.hasTitleOnBottom ? header : null;
|
|
2184
|
+
const errorsAboveQuestion = this.question.showErrorsAboveQuestion
|
|
2185
|
+
? this.renderErrors(cssClasses, "")
|
|
2186
|
+
: null;
|
|
2187
|
+
const errorsBelowQuestion = this.question.showErrorsBelowQuestion
|
|
2188
|
+
? this.renderErrors(cssClasses, "")
|
|
2189
|
+
: null;
|
|
2190
|
+
const rootStyle = question.getRootStyle();
|
|
2191
|
+
const singleBreadcrumbs = question.singleInputHasActions ? this.renderSingleInputBreadcrumbs(question, cssClasses) : undefined;
|
|
2192
|
+
const singleSummary = question.singleInputSummary ? this.renderSingleInputSummary(question, cssClasses) : undefined;
|
|
2193
|
+
const singleInput = singleSummary || (question.singleInputQuestion ? this.renderSingleInputQuestion(question, cssClasses) : undefined);
|
|
2194
|
+
const questionContent = singleInput || this.wrapQuestionContent(this.renderQuestionContent());
|
|
2195
|
+
return (React.createElement(React.Fragment, null,
|
|
2196
|
+
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 },
|
|
2197
|
+
singleBreadcrumbs,
|
|
2198
|
+
errorsAboveQuestion,
|
|
2199
|
+
headerTop,
|
|
2200
|
+
questionContent,
|
|
2201
|
+
headerBottom,
|
|
2202
|
+
errorsBelowQuestion)));
|
|
2203
|
+
}
|
|
2204
|
+
renderSingleInputQuestion(question, cssClasses) {
|
|
2205
|
+
const singleQuestion = question.singleInputQuestion;
|
|
2206
|
+
const key = singleQuestion.id;
|
|
2207
|
+
return React.createElement(SurveyQuestion, { key: key, element: singleQuestion, creator: this.creator, css: cssClasses });
|
|
2208
|
+
}
|
|
2209
|
+
renderSingleInputBreadcrumbs(question, cssClasses) {
|
|
2210
|
+
return React.createElement(SurveyBreadcrumbs, { model: question.singleInputActions, css: cssClasses });
|
|
2211
|
+
}
|
|
2212
|
+
renderSingleInputSummary(question, cssClasses) {
|
|
2213
|
+
return React.createElement(SurveyQuestionSigleInputSummary, { summary: question.singleInputSummary, creator: this.creator, css: cssClasses });
|
|
2214
|
+
}
|
|
2215
|
+
wrapElement(element) {
|
|
2216
|
+
const survey = this.question.survey;
|
|
2217
|
+
let wrapper = null;
|
|
2218
|
+
if (survey) {
|
|
2219
|
+
wrapper = ReactSurveyElementsWrapper.wrapElement(survey, element, this.question);
|
|
2195
2220
|
}
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2221
|
+
return wrapper !== null && wrapper !== void 0 ? wrapper : element;
|
|
2222
|
+
}
|
|
2223
|
+
wrapQuestionContent(element) {
|
|
2224
|
+
const survey = this.question.survey;
|
|
2225
|
+
let wrapper = null;
|
|
2226
|
+
if (survey) {
|
|
2227
|
+
wrapper = ReactSurveyElementsWrapper.wrapQuestionContent(survey, element, this.question);
|
|
2228
|
+
}
|
|
2229
|
+
return wrapper !== null && wrapper !== void 0 ? wrapper : element;
|
|
2230
|
+
}
|
|
2231
|
+
renderQuestion() {
|
|
2232
|
+
return SurveyQuestion.renderQuestionBody(this.creator, this.question);
|
|
2233
|
+
}
|
|
2234
|
+
renderDescription() {
|
|
2235
|
+
return SurveyElementBase.renderQuestionDescription(this.question);
|
|
2236
|
+
}
|
|
2237
|
+
renderComment(cssClasses) {
|
|
2238
|
+
const commentText = SurveyElementBase.renderLocString(this.question.locCommentText);
|
|
2239
|
+
return (React.createElement("div", { className: this.question.getCommentAreaCss() },
|
|
2240
|
+
React.createElement("div", null, commentText),
|
|
2241
|
+
React.createElement(SurveyQuestionCommentItem, { question: this.question, cssClasses: cssClasses, isDisplayMode: this.question.isInputReadOnly })));
|
|
2242
|
+
}
|
|
2243
|
+
renderHeader(question) {
|
|
2244
|
+
if (question.singleInputHideHeader)
|
|
2245
|
+
return null;
|
|
2246
|
+
return React.createElement(SurveyElementHeader, { element: question });
|
|
2247
|
+
}
|
|
2248
|
+
renderErrors(cssClasses, location) {
|
|
2249
|
+
return (React.createElement(SurveyElementErrors, { element: this.question, cssClasses: cssClasses, creator: this.creator, location: location, id: this.question.id + "_errors" }));
|
|
2250
|
+
}
|
|
2251
|
+
}
|
|
2252
|
+
ReactElementFactory.Instance.registerElement("question", (props) => {
|
|
2253
|
+
return React.createElement(SurveyQuestion, props);
|
|
2254
|
+
});
|
|
2255
|
+
class SurveyElementErrors extends ReactSurveyElement {
|
|
2256
|
+
constructor(props) {
|
|
2257
|
+
super(props);
|
|
2258
|
+
this.state = this.getState();
|
|
2259
|
+
}
|
|
2260
|
+
get id() {
|
|
2261
|
+
return this.props.element.id + "_errors";
|
|
2262
|
+
}
|
|
2263
|
+
get element() {
|
|
2264
|
+
return this.props.element;
|
|
2265
|
+
}
|
|
2266
|
+
get creator() {
|
|
2267
|
+
return this.props.creator;
|
|
2268
|
+
}
|
|
2269
|
+
getState(prevState = null) {
|
|
2270
|
+
return !prevState ? { error: 0 } : { error: prevState.error + 1 };
|
|
2271
|
+
}
|
|
2272
|
+
canRender() {
|
|
2273
|
+
return !!this.element && this.element.hasVisibleErrors;
|
|
2274
|
+
}
|
|
2275
|
+
componentWillUnmount() {
|
|
2213
2276
|
}
|
|
2214
2277
|
renderElement() {
|
|
2215
|
-
|
|
2278
|
+
const errors = [];
|
|
2279
|
+
for (let i = 0; i < this.element.renderedErrors.length; i++) {
|
|
2280
|
+
const key = "error" + i;
|
|
2281
|
+
errors.push(this.creator.renderError(key, this.element.renderedErrors[i], this.cssClasses, this.element));
|
|
2282
|
+
}
|
|
2283
|
+
return (React.createElement("div", { className: this.element.cssError, id: this.id }, errors));
|
|
2216
2284
|
}
|
|
2217
|
-
|
|
2218
|
-
|
|
2285
|
+
}
|
|
2286
|
+
class SurveyQuestionAndErrorsWrapped extends ReactSurveyElement {
|
|
2287
|
+
constructor(props) {
|
|
2288
|
+
super(props);
|
|
2219
2289
|
}
|
|
2220
|
-
|
|
2221
|
-
this.
|
|
2290
|
+
getStateElement() {
|
|
2291
|
+
return this.question;
|
|
2222
2292
|
}
|
|
2223
|
-
|
|
2224
|
-
|
|
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 })));
|
|
2293
|
+
get question() {
|
|
2294
|
+
return this.getQuestion();
|
|
2230
2295
|
}
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedBeforeCss }));
|
|
2296
|
+
get creator() {
|
|
2297
|
+
return this.props.creator;
|
|
2234
2298
|
}
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
return (React.createElement("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.loadingBodyCss }));
|
|
2299
|
+
getQuestion() {
|
|
2300
|
+
return this.props.question;
|
|
2238
2301
|
}
|
|
2239
|
-
|
|
2240
|
-
|
|
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" })));
|
|
2302
|
+
get itemCss() {
|
|
2303
|
+
return this.props.itemCss;
|
|
2260
2304
|
}
|
|
2261
|
-
|
|
2262
|
-
|
|
2305
|
+
componentDidMount() {
|
|
2306
|
+
super.componentDidMount();
|
|
2307
|
+
this.doAfterRender();
|
|
2263
2308
|
}
|
|
2264
|
-
|
|
2265
|
-
|
|
2309
|
+
componentDidUpdate(prevProps, prevState) {
|
|
2310
|
+
super.componentDidUpdate(prevProps, prevState);
|
|
2311
|
+
this.doAfterRender();
|
|
2266
2312
|
}
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
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
|
-
}
|
|
2313
|
+
doAfterRender() { }
|
|
2314
|
+
canRender() {
|
|
2315
|
+
return !!this.question;
|
|
2288
2316
|
}
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
}
|
|
2293
|
-
if (!!newProps["json"]) {
|
|
2294
|
-
return !Helpers.isTwoValueEquals(newProps["json"], this.previousJSON);
|
|
2295
|
-
}
|
|
2296
|
-
return false;
|
|
2317
|
+
renderContent() {
|
|
2318
|
+
var renderedQuestion = this.renderQuestion();
|
|
2319
|
+
return (React.createElement(React.Fragment, null, renderedQuestion));
|
|
2297
2320
|
}
|
|
2298
|
-
|
|
2299
|
-
|
|
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
|
-
}
|
|
2321
|
+
getShowErrors() {
|
|
2322
|
+
return this.question.isVisible;
|
|
2324
2323
|
}
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2324
|
+
renderQuestion() {
|
|
2325
|
+
return SurveyQuestion.renderQuestionBody(this.creator, this.question);
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
class SurveyQuestionAndErrorsCell extends SurveyQuestionAndErrorsWrapped {
|
|
2329
|
+
constructor(props) {
|
|
2330
|
+
super(props);
|
|
2331
|
+
this.cellRef = React.createRef();
|
|
2332
|
+
}
|
|
2333
|
+
componentWillUnmount() {
|
|
2334
|
+
super.componentWillUnmount();
|
|
2335
|
+
if (this.question) {
|
|
2336
|
+
var el = this.cellRef.current;
|
|
2337
|
+
if (!!el) {
|
|
2338
|
+
el.removeAttribute("data-rendered");
|
|
2334
2339
|
}
|
|
2335
|
-
}
|
|
2340
|
+
}
|
|
2336
2341
|
}
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
return ReactQuestionFactory.Instance.createQuestion(question.isDefaultRendering() ? question.getTemplate() : question.getComponentName(), {
|
|
2340
|
-
question: question,
|
|
2341
|
-
isDisplayMode: question.isInputReadOnly,
|
|
2342
|
-
creator: this,
|
|
2343
|
-
});
|
|
2342
|
+
renderCellContent() {
|
|
2343
|
+
return (React.createElement("div", { className: this.props.cell.cellQuestionWrapperClassName }, this.renderQuestion()));
|
|
2344
2344
|
}
|
|
2345
|
-
|
|
2346
|
-
|
|
2345
|
+
renderElement() {
|
|
2346
|
+
var style = this.getCellStyle();
|
|
2347
|
+
const cell = this.props.cell;
|
|
2348
|
+
const focusIn = () => { cell.focusIn(); };
|
|
2349
|
+
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
2350
|
}
|
|
2348
|
-
|
|
2349
|
-
return
|
|
2351
|
+
getCellStyle() {
|
|
2352
|
+
return null;
|
|
2350
2353
|
}
|
|
2351
|
-
|
|
2352
|
-
return
|
|
2354
|
+
getHeaderText() {
|
|
2355
|
+
return "";
|
|
2353
2356
|
}
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
}
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2357
|
+
wrapCell(cell, element) {
|
|
2358
|
+
if (!cell) {
|
|
2359
|
+
return element;
|
|
2360
|
+
}
|
|
2361
|
+
const survey = this.question.survey;
|
|
2362
|
+
let wrapper = null;
|
|
2363
|
+
if (survey) {
|
|
2364
|
+
wrapper = ReactSurveyElementsWrapper.wrapMatrixCell(survey, element, cell, this.props.reason);
|
|
2365
|
+
}
|
|
2366
|
+
return wrapper !== null && wrapper !== void 0 ? wrapper : element;
|
|
2361
2367
|
}
|
|
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
2368
|
}
|
|
2375
|
-
|
|
2376
|
-
class SurveyNavigationBase extends React.Component {
|
|
2369
|
+
class SurveyQuestionErrorCell extends React.Component {
|
|
2377
2370
|
constructor(props) {
|
|
2378
2371
|
super(props);
|
|
2379
|
-
this.
|
|
2380
|
-
|
|
2372
|
+
this.state = {
|
|
2373
|
+
changed: 0
|
|
2374
|
+
};
|
|
2375
|
+
if (this.question) {
|
|
2376
|
+
this.registerCallback(this.question);
|
|
2377
|
+
}
|
|
2381
2378
|
}
|
|
2382
|
-
get
|
|
2383
|
-
return this.props.
|
|
2379
|
+
get question() {
|
|
2380
|
+
return this.props.question;
|
|
2384
2381
|
}
|
|
2385
|
-
|
|
2386
|
-
|
|
2382
|
+
update() {
|
|
2383
|
+
this.setState({ changed: this.state.changed + 1 });
|
|
2387
2384
|
}
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2385
|
+
getQuestionPropertiesToTrack() {
|
|
2386
|
+
return ["errors"];
|
|
2387
|
+
}
|
|
2388
|
+
registerCallback(question) {
|
|
2389
|
+
question.registerFunctionOnPropertiesValueChanged(this.getQuestionPropertiesToTrack(), () => {
|
|
2390
|
+
this.update();
|
|
2391
|
+
}, "__reactSubscription");
|
|
2392
|
+
}
|
|
2393
|
+
unRegisterCallback(question) {
|
|
2394
|
+
question.unRegisterFunctionOnPropertiesValueChanged(this.getQuestionPropertiesToTrack(), "__reactSubscription");
|
|
2395
|
+
}
|
|
2396
|
+
componentDidUpdate(prevProps) {
|
|
2397
|
+
if (prevProps.question && prevProps.question !== this.question) {
|
|
2398
|
+
this.unRegisterCallback(prevProps.cell);
|
|
2399
|
+
}
|
|
2400
|
+
if (this.question) {
|
|
2401
|
+
this.registerCallback(this.question);
|
|
2395
2402
|
}
|
|
2396
2403
|
}
|
|
2397
2404
|
componentWillUnmount() {
|
|
2398
|
-
if (this.
|
|
2399
|
-
this.
|
|
2400
|
-
this.updateStateFunction = null;
|
|
2405
|
+
if (this.question) {
|
|
2406
|
+
this.unRegisterCallback(this.question);
|
|
2401
2407
|
}
|
|
2402
2408
|
}
|
|
2409
|
+
render() {
|
|
2410
|
+
return React.createElement(SurveyElementErrors, { element: this.question, creator: this.props.creator, cssClasses: this.question.cssClasses });
|
|
2411
|
+
}
|
|
2403
2412
|
}
|
|
2404
2413
|
|
|
2405
|
-
class
|
|
2414
|
+
class SurveyPage extends SurveyPanelBase {
|
|
2406
2415
|
constructor(props) {
|
|
2407
2416
|
super(props);
|
|
2408
|
-
this.circleLength = 440;
|
|
2409
2417
|
}
|
|
2410
|
-
|
|
2411
|
-
return this.
|
|
2418
|
+
getPanelBase() {
|
|
2419
|
+
return this.props.page;
|
|
2412
2420
|
}
|
|
2413
|
-
get
|
|
2414
|
-
return this.
|
|
2421
|
+
get page() {
|
|
2422
|
+
return this.panelBase;
|
|
2415
2423
|
}
|
|
2416
|
-
|
|
2417
|
-
|
|
2424
|
+
renderElement() {
|
|
2425
|
+
var title = this.renderTitle();
|
|
2426
|
+
var description = this.renderDescription();
|
|
2427
|
+
var rows = this.renderRows(this.panelBase.cssClasses);
|
|
2428
|
+
const errors = (React.createElement(SurveyElementErrors, { element: this.panelBase, cssClasses: this.panelBase.cssClasses, creator: this.creator }));
|
|
2429
|
+
return (React.createElement("div", { ref: this.rootRef, className: this.page.cssRoot },
|
|
2430
|
+
title,
|
|
2431
|
+
description,
|
|
2432
|
+
errors,
|
|
2433
|
+
rows));
|
|
2418
2434
|
}
|
|
2419
|
-
|
|
2420
|
-
|
|
2435
|
+
renderTitle() {
|
|
2436
|
+
return React.createElement(TitleElement, { element: this.page });
|
|
2437
|
+
}
|
|
2438
|
+
renderDescription() {
|
|
2439
|
+
if (!this.page._showDescription)
|
|
2421
2440
|
return null;
|
|
2422
|
-
|
|
2423
|
-
|
|
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;
|
|
2441
|
+
var text = SurveyElementBase.renderLocString(this.page.locDescription);
|
|
2442
|
+
return (React.createElement("div", { className: this.panelBase.cssClasses.page.description }, text));
|
|
2435
2443
|
}
|
|
2436
2444
|
}
|
|
2437
|
-
ReactElementFactory.Instance.registerElement("sv-
|
|
2438
|
-
return React.createElement(
|
|
2445
|
+
ReactElementFactory.Instance.registerElement("sv-page", (props) => {
|
|
2446
|
+
return React.createElement(SurveyPage, props);
|
|
2439
2447
|
});
|
|
2440
2448
|
|
|
2441
2449
|
class SurveyPanel extends SurveyPanelBase {
|
|
@@ -2638,7 +2646,7 @@ ReactElementFactory.Instance.registerElement("flowpanel", props => {
|
|
|
2638
2646
|
return React.createElement(SurveyFlowPanel, props);
|
|
2639
2647
|
});
|
|
2640
2648
|
|
|
2641
|
-
class
|
|
2649
|
+
class SurveyQuestionSelectbase extends SurveyQuestionElementBase {
|
|
2642
2650
|
constructor(props) {
|
|
2643
2651
|
super(props);
|
|
2644
2652
|
}
|
|
@@ -2648,29 +2656,29 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
|
|
|
2648
2656
|
renderElement() {
|
|
2649
2657
|
var cssClasses = this.question.cssClasses;
|
|
2650
2658
|
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
|
-
|
|
2652
|
-
this.getHeader(),
|
|
2659
|
+
this.renderHeader(),
|
|
2653
2660
|
this.question.hasColumns
|
|
2654
2661
|
? this.getColumnedBody(cssClasses)
|
|
2655
2662
|
: this.getBody(cssClasses),
|
|
2656
2663
|
this.getFooter()));
|
|
2657
2664
|
}
|
|
2658
|
-
|
|
2659
|
-
if (this.question.hasHeadItems) {
|
|
2660
|
-
return this.question.headItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
|
|
2661
|
-
}
|
|
2662
|
-
}
|
|
2665
|
+
renderHeader() { return null; }
|
|
2663
2666
|
getFooter() {
|
|
2664
2667
|
if (this.question.hasFootItems) {
|
|
2665
|
-
|
|
2668
|
+
const items = this.question.footItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
|
|
2669
|
+
return React.createElement(React.Fragment, null, items);
|
|
2666
2670
|
}
|
|
2671
|
+
return null;
|
|
2667
2672
|
}
|
|
2673
|
+
getStateValue() { return undefined; }
|
|
2674
|
+
isItemChecked(item, value) { return false; }
|
|
2668
2675
|
getColumnedBody(cssClasses) {
|
|
2669
2676
|
return (React.createElement("div", { className: cssClasses.rootMultiColumn }, this.getColumns(cssClasses)));
|
|
2670
2677
|
}
|
|
2671
2678
|
getColumns(cssClasses) {
|
|
2679
|
+
const value = this.getStateValue();
|
|
2672
2680
|
return this.question.columns.map((column, ci) => {
|
|
2673
|
-
var items = column.map((item, ii) => this.renderItem(item, ci === 0 && ii === 0, cssClasses, "" + ci + ii));
|
|
2681
|
+
var items = column.map((item, ii) => this.renderItem(item, ci === 0 && ii === 0, cssClasses, "" + ci + ii, this.isItemChecked(item, value)));
|
|
2674
2682
|
return (React.createElement("div", { key: "column" + ci + this.question.getItemsColumnKey(column), className: this.question.getColumnClass(), role: "presentation" }, items));
|
|
2675
2683
|
});
|
|
2676
2684
|
}
|
|
@@ -2683,20 +2691,21 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
|
|
|
2683
2691
|
}
|
|
2684
2692
|
}
|
|
2685
2693
|
getItems(cssClasses, choices) {
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2694
|
+
const items = [];
|
|
2695
|
+
const value = this.getStateValue();
|
|
2696
|
+
for (let i = 0; i < choices.length; i++) {
|
|
2697
|
+
const item = choices[i];
|
|
2698
|
+
const renderedItem = this.renderItem(item, i == 0, cssClasses, "" + i, this.isItemChecked(item, value));
|
|
2690
2699
|
if (!!renderedItem) {
|
|
2691
|
-
|
|
2700
|
+
items.push(renderedItem);
|
|
2692
2701
|
}
|
|
2693
2702
|
}
|
|
2694
|
-
return
|
|
2703
|
+
return items;
|
|
2695
2704
|
}
|
|
2696
2705
|
get textStyle() {
|
|
2697
2706
|
return null;
|
|
2698
2707
|
}
|
|
2699
|
-
renderItem(item, isFirst, cssClasses, index) {
|
|
2708
|
+
renderItem(item, isFirst, cssClasses, index, isChecked) {
|
|
2700
2709
|
const renderedItem = ReactElementFactory.Instance.createElement(this.question.itemComponent, {
|
|
2701
2710
|
key: item.value,
|
|
2702
2711
|
question: this.question,
|
|
@@ -2706,6 +2715,8 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
|
|
|
2706
2715
|
textStyle: this.textStyle,
|
|
2707
2716
|
index: index,
|
|
2708
2717
|
isFirst: isFirst,
|
|
2718
|
+
isChecked: isChecked,
|
|
2719
|
+
creator: this.props.creator,
|
|
2709
2720
|
});
|
|
2710
2721
|
const survey = this.question.survey;
|
|
2711
2722
|
let wrappedItem = null;
|
|
@@ -2715,11 +2726,11 @@ class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
|
|
|
2715
2726
|
return wrappedItem !== null && wrappedItem !== void 0 ? wrappedItem : renderedItem;
|
|
2716
2727
|
}
|
|
2717
2728
|
}
|
|
2718
|
-
class
|
|
2729
|
+
class SurveyQuestionSelectBaseItem extends ReactSurveyElement {
|
|
2719
2730
|
constructor(props) {
|
|
2720
2731
|
super(props);
|
|
2721
2732
|
this.handleOnChange = (event) => {
|
|
2722
|
-
this.
|
|
2733
|
+
this.doOnItemChange(event);
|
|
2723
2734
|
};
|
|
2724
2735
|
this.rootRef = React.createRef();
|
|
2725
2736
|
}
|
|
@@ -2766,15 +2777,19 @@ class SurveyQuestionCheckboxItem extends ReactSurveyElement {
|
|
|
2766
2777
|
!!this.question.customWidget.widgetJson.isDefaultRender ||
|
|
2767
2778
|
!!this.question.customWidget.widgetJson.render);
|
|
2768
2779
|
}
|
|
2780
|
+
doOnItemChange(event) { }
|
|
2769
2781
|
canRender() {
|
|
2770
2782
|
return !!this.item && !!this.question;
|
|
2771
2783
|
}
|
|
2772
2784
|
renderElement() {
|
|
2773
|
-
const isChecked = this.question.isItemSelected(this.item);
|
|
2774
2785
|
return React.createElement(React.Fragment, null,
|
|
2775
|
-
this.
|
|
2786
|
+
this.renderElementContent(),
|
|
2787
|
+
this.renderPanel(),
|
|
2776
2788
|
this.renderComment());
|
|
2777
2789
|
}
|
|
2790
|
+
renderElementContent() {
|
|
2791
|
+
return null;
|
|
2792
|
+
}
|
|
2778
2793
|
get inputStyle() {
|
|
2779
2794
|
return null; //{ marginRight: "3px" };
|
|
2780
2795
|
}
|
|
@@ -2784,7 +2799,61 @@ class SurveyQuestionCheckboxItem extends ReactSurveyElement {
|
|
|
2784
2799
|
return React.createElement("div", { className: this.question.getCommentAreaCss(true) },
|
|
2785
2800
|
React.createElement(SurveyQuestionCommentValueItem, { question: this.question, item: this.item, cssClasses: this.question.cssClasses }));
|
|
2786
2801
|
}
|
|
2787
|
-
|
|
2802
|
+
renderPanel() {
|
|
2803
|
+
if (this.item.isPanelShowing) {
|
|
2804
|
+
const panel = this.item.panel;
|
|
2805
|
+
return (React.createElement(SurveyPanel, { key: panel.id, element: panel, survey: this.question.survey, cssClasses: this.props.cssClasses, isDisplayMode: this.isDisplayMode, creator: this.props.creator }));
|
|
2806
|
+
}
|
|
2807
|
+
return null;
|
|
2808
|
+
}
|
|
2809
|
+
componentDidMount() {
|
|
2810
|
+
super.componentDidMount();
|
|
2811
|
+
if (!this.question.isDesignMode) {
|
|
2812
|
+
this.item.setRootElement(this.rootRef.current);
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
componentWillUnmount() {
|
|
2816
|
+
super.componentWillUnmount();
|
|
2817
|
+
if (!this.question.isDesignMode) {
|
|
2818
|
+
this.item.setRootElement(undefined);
|
|
2819
|
+
}
|
|
2820
|
+
}
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
class SurveyQuestionCheckbox extends SurveyQuestionSelectbase {
|
|
2824
|
+
constructor(props) {
|
|
2825
|
+
super(props);
|
|
2826
|
+
}
|
|
2827
|
+
get question() {
|
|
2828
|
+
return this.questionBase;
|
|
2829
|
+
}
|
|
2830
|
+
renderHeader() {
|
|
2831
|
+
return React.createElement(React.Fragment, null,
|
|
2832
|
+
React.createElement("legend", { className: "sv-hidden" }, this.question.locTitle.renderedHtml),
|
|
2833
|
+
this.getHeader());
|
|
2834
|
+
}
|
|
2835
|
+
getHeader() {
|
|
2836
|
+
if (this.question.hasHeadItems) {
|
|
2837
|
+
return this.question.headItems.map((item, ii) => this.renderItem(item, false, this.question.cssClasses));
|
|
2838
|
+
}
|
|
2839
|
+
return null;
|
|
2840
|
+
}
|
|
2841
|
+
}
|
|
2842
|
+
class SurveyQuestionCheckboxItem extends SurveyQuestionSelectBaseItem {
|
|
2843
|
+
constructor(props) {
|
|
2844
|
+
super(props);
|
|
2845
|
+
}
|
|
2846
|
+
doOnItemChange(event) {
|
|
2847
|
+
this.question.clickItemHandler(this.item, event.target.checked);
|
|
2848
|
+
}
|
|
2849
|
+
renderElementContent() {
|
|
2850
|
+
const isChecked = this.question.isItemSelected(this.item);
|
|
2851
|
+
return this.renderCheckbox(isChecked);
|
|
2852
|
+
}
|
|
2853
|
+
get inputStyle() {
|
|
2854
|
+
return null; //{ marginRight: "3px" };
|
|
2855
|
+
}
|
|
2856
|
+
renderCheckbox(isChecked) {
|
|
2788
2857
|
const id = this.question.getItemId(this.item);
|
|
2789
2858
|
const itemClass = this.question.getItemClass(this.item);
|
|
2790
2859
|
const labelClass = this.question.getLabelClass(this.item);
|
|
@@ -2798,20 +2867,7 @@ class SurveyQuestionCheckboxItem extends ReactSurveyElement {
|
|
|
2798
2867
|
React.createElement("use", { xlinkHref: this.question.itemSvgIcon })) :
|
|
2799
2868
|
null) :
|
|
2800
2869
|
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
|
-
}
|
|
2870
|
+
itemLabel)));
|
|
2815
2871
|
}
|
|
2816
2872
|
}
|
|
2817
2873
|
ReactElementFactory.Instance.registerElement("survey-checkbox-item", (props) => {
|
|
@@ -3847,90 +3903,32 @@ ReactQuestionFactory.Instance.registerQuestion("multipletext", (props) => {
|
|
|
3847
3903
|
return React.createElement(SurveyQuestionMultipleText, props);
|
|
3848
3904
|
});
|
|
3849
3905
|
|
|
3850
|
-
class SurveyQuestionRadiogroup extends
|
|
3906
|
+
class SurveyQuestionRadiogroup extends SurveyQuestionSelectbase {
|
|
3851
3907
|
constructor(props) {
|
|
3852
3908
|
super(props);
|
|
3853
3909
|
}
|
|
3854
3910
|
get question() {
|
|
3855
3911
|
return this.questionBase;
|
|
3856
3912
|
}
|
|
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
3913
|
getFooter() {
|
|
3872
|
-
|
|
3873
|
-
|
|
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" };
|
|
3914
|
+
return React.createElement(React.Fragment, null,
|
|
3915
|
+
super.getFooter(),
|
|
3916
|
+
this.renderClearButton());
|
|
3906
3917
|
}
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
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;
|
|
3918
|
+
renderClearButton() {
|
|
3919
|
+
if (!this.question.showClearButtonInContent)
|
|
3920
|
+
return null;
|
|
3921
|
+
return (React.createElement("div", null,
|
|
3922
|
+
React.createElement("input", { type: "button", className: this.question.cssClasses.clearButton, onClick: () => this.question.clearValueFromUI(), value: this.question.clearButtonCaption })));
|
|
3924
3923
|
}
|
|
3925
3924
|
getStateValue() {
|
|
3926
3925
|
return !this.question.isEmpty() ? this.question.renderedValue : "";
|
|
3927
3926
|
}
|
|
3927
|
+
isItemChecked(item, value) { return item.value === value; }
|
|
3928
3928
|
}
|
|
3929
|
-
class SurveyQuestionRadioItem extends
|
|
3929
|
+
class SurveyQuestionRadioItem extends SurveyQuestionSelectBaseItem {
|
|
3930
3930
|
constructor(props) {
|
|
3931
3931
|
super(props);
|
|
3932
|
-
this.rootRef = React.createRef();
|
|
3933
|
-
this.handleOnChange = this.handleOnChange.bind(this);
|
|
3934
3932
|
this.handleOnMouseDown = this.handleOnMouseDown.bind(this);
|
|
3935
3933
|
}
|
|
3936
3934
|
getStateElement() {
|
|
@@ -3939,64 +3937,17 @@ class SurveyQuestionRadioItem extends ReactSurveyElement {
|
|
|
3939
3937
|
get question() {
|
|
3940
3938
|
return this.props.question;
|
|
3941
3939
|
}
|
|
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
3940
|
get isChecked() {
|
|
3952
3941
|
return this.props.isChecked;
|
|
3953
3942
|
}
|
|
3954
|
-
|
|
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) {
|
|
3943
|
+
doOnItemChange(event) {
|
|
3971
3944
|
this.question.clickItemHandler(this.item);
|
|
3972
3945
|
}
|
|
3973
3946
|
handleOnMouseDown(event) {
|
|
3974
3947
|
this.question.onMouseDown();
|
|
3975
3948
|
}
|
|
3976
|
-
|
|
3977
|
-
return
|
|
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 }));
|
|
3949
|
+
renderElementContent() {
|
|
3950
|
+
return this.renderRadioButton();
|
|
4000
3951
|
}
|
|
4001
3952
|
renderRadioButton() {
|
|
4002
3953
|
var itemClass = this.question.getItemClass(this.item);
|
|
@@ -4014,18 +3965,6 @@ class SurveyQuestionRadioItem extends ReactSurveyElement {
|
|
|
4014
3965
|
null,
|
|
4015
3966
|
itemLabel)));
|
|
4016
3967
|
}
|
|
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
3968
|
}
|
|
4030
3969
|
ReactElementFactory.Instance.registerElement("survey-radiogroup-item", (props) => {
|
|
4031
3970
|
return React.createElement(SurveyQuestionRadioItem, props);
|
|
@@ -4481,7 +4420,7 @@ class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElementBase {
|
|
|
4481
4420
|
return this.renderTableDiv();
|
|
4482
4421
|
}
|
|
4483
4422
|
renderTableDiv() {
|
|
4484
|
-
return (React.createElement("div", { className: this.question.cssClasses.tableWrapper,
|
|
4423
|
+
return (React.createElement("div", { className: this.question.cssClasses.tableWrapper, ref: (root) => (this.setControl(root)) },
|
|
4485
4424
|
React.createElement(SurveyQuestionMatrixTable, { question: this.question, creator: this.creator, wrapCell: (cell, element, reason) => this.wrapCell(cell, element, reason) })));
|
|
4486
4425
|
}
|
|
4487
4426
|
}
|
|
@@ -4705,7 +4644,8 @@ class SurveyQuestionMatrixDynamicAddButton extends ReactSurveyElement {
|
|
|
4705
4644
|
const addRowText = this.renderLocString(this.matrix.locAddRowText);
|
|
4706
4645
|
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
4646
|
addRowText,
|
|
4708
|
-
React.createElement("span", { className: this.props.cssClasses.iconAdd }
|
|
4647
|
+
React.createElement("span", { className: this.props.cssClasses.iconAdd }, this.cssClasses.iconAddId && React.createElement("svg", null,
|
|
4648
|
+
React.createElement("use", { xlinkHref: this.cssClasses.iconAddId })))));
|
|
4709
4649
|
return (this.props.isEmptySection ? addButton : React.createElement("div", { className: this.props.cssClasses.footer }, addButton));
|
|
4710
4650
|
}
|
|
4711
4651
|
}
|
|
@@ -4981,11 +4921,12 @@ ReactElementFactory.Instance.registerElement("sv-progress-buttons", (props) => {
|
|
|
4981
4921
|
});
|
|
4982
4922
|
|
|
4983
4923
|
class ListItem extends SurveyElementBase {
|
|
4984
|
-
constructor() {
|
|
4985
|
-
super(
|
|
4924
|
+
constructor(props) {
|
|
4925
|
+
super(props);
|
|
4986
4926
|
this.handleKeydown = (event) => {
|
|
4987
4927
|
this.model.onKeyDown(event);
|
|
4988
4928
|
};
|
|
4929
|
+
this.elementRef = React.createRef();
|
|
4989
4930
|
}
|
|
4990
4931
|
get model() {
|
|
4991
4932
|
return this.props.model;
|
|
@@ -5002,7 +4943,7 @@ class ListItem extends SurveyElementBase {
|
|
|
5002
4943
|
const className = this.model.getItemClass(this.item);
|
|
5003
4944
|
const itemContent = this.item.component || this.model.itemComponent;
|
|
5004
4945
|
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);
|
|
4946
|
+
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
4947
|
const separator = this.item.needSeparator ? React.createElement("div", { className: this.model.cssClasses.itemSeparator }) : null;
|
|
5007
4948
|
const isVisible = this.model.isItemVisible(this.item);
|
|
5008
4949
|
const style = {
|
|
@@ -5016,8 +4957,9 @@ class ListItem extends SurveyElementBase {
|
|
|
5016
4957
|
contentWrap), this.item);
|
|
5017
4958
|
}
|
|
5018
4959
|
componentDidMount() {
|
|
4960
|
+
var _a;
|
|
5019
4961
|
super.componentDidMount();
|
|
5020
|
-
this.model.
|
|
4962
|
+
this.model.onItemRended(this.item, (_a = this.elementRef) === null || _a === void 0 ? void 0 : _a.current);
|
|
5021
4963
|
}
|
|
5022
4964
|
}
|
|
5023
4965
|
ReactElementFactory.Instance.registerElement("sv-list-item", (props) => {
|
|
@@ -5635,7 +5577,7 @@ class SurveyQuestionSignaturePad extends SurveyQuestionElementBase {
|
|
|
5635
5577
|
return null;
|
|
5636
5578
|
var cssClasses = this.question.cssClasses;
|
|
5637
5579
|
return React.createElement("div", { className: cssClasses.controls },
|
|
5638
|
-
React.createElement("button", { type: "button", className: cssClasses.clearButton, title: this.question.clearButtonCaption, onClick: () => this.question.
|
|
5580
|
+
React.createElement("button", { type: "button", className: cssClasses.clearButton, title: this.question.clearButtonCaption, onClick: () => this.question.clearValueFromUI() },
|
|
5639
5581
|
this.question.cssClasses.clearButtonIconId ? React.createElement(SvgIcon, { iconName: this.question.cssClasses.clearButtonIconId, size: "auto" }) : React.createElement("span", null, "\u2716"),
|
|
5640
5582
|
" "));
|
|
5641
5583
|
}
|
|
@@ -6082,9 +6024,20 @@ class SliderLabelItem extends SurveyElementBase {
|
|
|
6082
6024
|
renderElement() {
|
|
6083
6025
|
const { cssClasses, handleLabelPointerUp, getLabelCss, getPercent } = this.question;
|
|
6084
6026
|
const { value, locText } = this.item;
|
|
6027
|
+
let labelText = null;
|
|
6028
|
+
let labelTextSecondary = null;
|
|
6029
|
+
if (this.item.showValue) {
|
|
6030
|
+
labelText = React.createElement("div", { className: cssClasses.labelText }, this.item.value);
|
|
6031
|
+
labelTextSecondary = React.createElement("div", { className: cssClasses.labelTextSecondaryMode }, this.renderLocString(locText));
|
|
6032
|
+
}
|
|
6033
|
+
else {
|
|
6034
|
+
labelText = React.createElement("div", { className: cssClasses.labelText }, this.renderLocString(locText));
|
|
6035
|
+
}
|
|
6085
6036
|
return React.createElement("div", { key: this.item.id, className: getLabelCss(locText), style: { left: getPercent(value) + "%" }, onPointerUp: (e) => { handleLabelPointerUp(e.nativeEvent, value); } },
|
|
6086
6037
|
React.createElement("div", { className: cssClasses.labelTick }),
|
|
6087
|
-
React.createElement("div", { className: cssClasses.
|
|
6038
|
+
React.createElement("div", { className: cssClasses.labelTextContainer },
|
|
6039
|
+
labelText,
|
|
6040
|
+
labelTextSecondary));
|
|
6088
6041
|
}
|
|
6089
6042
|
}
|
|
6090
6043
|
ReactElementFactory.Instance.registerElement("sv-slider-label-item", (props) => {
|
|
@@ -6224,7 +6177,7 @@ ReactElementFactory.Instance.registerElement(LocalizableString.editableRenderer,
|
|
|
6224
6177
|
return React.createElement(SurveyLocStringEditor, props);
|
|
6225
6178
|
});
|
|
6226
6179
|
|
|
6227
|
-
checkLibraryVersion(`${"2.3.
|
|
6180
|
+
checkLibraryVersion(`${"2.3.10"}`, "survey-react-ui");
|
|
6228
6181
|
|
|
6229
6182
|
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 };
|
|
6230
6183
|
//# sourceMappingURL=survey-react-ui.mjs.map
|