survey-react-ui 2.5.14 → 3.0.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v2.5.14
2
+ * surveyjs - Survey JavaScript library v3.0.0-beta.0
3
3
  * Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -530,6 +530,10 @@ class SurveyAction extends SurveyElementBase {
530
530
  }
531
531
  }
532
532
  class SurveyActionBarItem extends SurveyElementBase {
533
+ constructor() {
534
+ super(...arguments);
535
+ this.ref = React.createRef();
536
+ }
533
537
  get item() {
534
538
  return this.props.item;
535
539
  }
@@ -556,9 +560,17 @@ class SurveyActionBarItem extends SurveyElementBase {
556
560
  const title = this.item.tooltip || this.item.title;
557
561
  const buttonContent = this.renderButtonContent();
558
562
  const tabIndex = this.item.disableTabStop ? -1 : undefined;
559
- const button = attachKey2click(React.createElement("button", { className: className, type: "button", disabled: this.item.disabled, onMouseDown: (args) => this.item.doMouseDown(args), onFocus: (args) => this.item.doFocus(args), onClick: (args) => this.item.doAction(args), title: title, tabIndex: tabIndex, "aria-checked": this.item.ariaChecked, "aria-expanded": this.item.ariaExpanded, "aria-labelledby": this.item.ariaLabelledBy, role: this.item.ariaRole }, buttonContent), this.item, { processEsc: false });
563
+ const button = attachKey2click(React.createElement("button", { ref: this.ref, className: className, type: "button", disabled: this.item.disabled, onMouseDown: (args) => this.item.doMouseDown(args), onFocus: (args) => this.item.doFocus(args), onClick: (args) => this.item.doAction(args), title: title, tabIndex: tabIndex, "aria-checked": this.item.ariaChecked, "aria-expanded": this.item.ariaExpanded, "aria-controls": this.item.ariaControls, "aria-labelledby": this.item.ariaLabelledBy, role: this.item.ariaRole }, buttonContent), this.item, { processEsc: false });
560
564
  return button;
561
565
  }
566
+ componentDidMount() {
567
+ super.componentDidMount();
568
+ this.props.item.setInputElement(this.ref.current);
569
+ }
570
+ componentWillUnmount() {
571
+ super.componentWillUnmount();
572
+ this.props.item.setInputElement(undefined);
573
+ }
562
574
  }
563
575
  ReactElementFactory.Instance.registerElement("sv-action-bar-item", (props) => {
564
576
  return React.createElement(SurveyActionBarItem, props);
@@ -4881,52 +4893,30 @@ class SurveyQuestionMatrixDynamic extends SurveyQuestionMatrixDropdownBase {
4881
4893
  ? this.renderTableDiv()
4882
4894
  : this.renderNoRowsContent(cssClasses);
4883
4895
  return (React.createElement("div", null,
4884
- this.renderAddRowButtonOnTop(cssClasses),
4896
+ this.renderTopToolbar(),
4885
4897
  mainDiv,
4886
- this.renderAddRowButtonOnBottom(cssClasses)));
4898
+ this.renderBottomToolbar()));
4887
4899
  }
4888
- renderAddRowButtonOnTop(cssClasses) {
4889
- if (!this.matrix.renderedTable.showAddRowOnTop)
4900
+ renderToolbar() {
4901
+ return React.createElement("div", { className: this.matrix.cssClasses.footer }, ReactElementFactory.Instance.createElement("sv-action-bar", { model: this.matrix.toolbar }));
4902
+ }
4903
+ renderTopToolbar() {
4904
+ if (!this.matrix.getShowToolbar("top"))
4890
4905
  return null;
4891
- return this.renderAddRowButton(cssClasses);
4906
+ return this.renderToolbar();
4892
4907
  }
4893
- renderAddRowButtonOnBottom(cssClasses) {
4894
- if (!this.matrix.renderedTable.showAddRowOnBottom)
4908
+ renderBottomToolbar() {
4909
+ if (!this.matrix.getShowToolbar("bottom"))
4895
4910
  return null;
4896
- return this.renderAddRowButton(cssClasses);
4911
+ return this.renderToolbar();
4897
4912
  }
4898
4913
  renderNoRowsContent(cssClasses) {
4899
4914
  return ReactElementFactory.Instance.createElement("sv-placeholder-matrixdynamic", { cssClasses: cssClasses, question: this.matrix });
4900
4915
  }
4901
- renderAddRowButton(cssClasses, isEmptySection = false) {
4902
- return ReactElementFactory.Instance.createElement("sv-matrixdynamic-add-btn", {
4903
- question: this.question, cssClasses, isEmptySection
4904
- });
4905
- }
4906
4916
  }
4907
4917
  ReactQuestionFactory.Instance.registerQuestion("matrixdynamic", (props) => {
4908
4918
  return React.createElement(SurveyQuestionMatrixDynamic, props);
4909
4919
  });
4910
- class SurveyQuestionMatrixDynamicAddButton extends ReactSurveyElement {
4911
- constructor(props) {
4912
- super(props);
4913
- this.handleOnRowAddClick = this.handleOnRowAddClick.bind(this);
4914
- }
4915
- get matrix() {
4916
- return this.props.question;
4917
- }
4918
- handleOnRowAddClick(event) {
4919
- this.matrix.addRowUI();
4920
- }
4921
- renderElement() {
4922
- const addRowText = this.renderLocString(this.matrix.locAddRowText);
4923
- 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 },
4924
- addRowText,
4925
- React.createElement("span", { className: this.props.cssClasses.iconAdd }, this.cssClasses.iconAddId && React.createElement("svg", null,
4926
- React.createElement("use", { xlinkHref: this.cssClasses.iconAddId })))));
4927
- return (this.props.isEmptySection ? addButton : React.createElement("div", { className: this.props.cssClasses.footer }, addButton));
4928
- }
4929
- }
4930
4920
  class SurveyQuestionMatrixDynamicPlaceholder extends ReactSurveyElement {
4931
4921
  constructor(props) {
4932
4922
  super(props);
@@ -4934,21 +4924,14 @@ class SurveyQuestionMatrixDynamicPlaceholder extends ReactSurveyElement {
4934
4924
  renderElement() {
4935
4925
  const cssClasses = this.props.cssClasses;
4936
4926
  const matrix = this.props.question;
4937
- const showAddButton = matrix.renderedTable.showAddRow;
4938
4927
  const text = this.renderLocString(matrix.locNoRowsText);
4939
4928
  const textDiv = React.createElement("div", { className: cssClasses.noRowsText }, text);
4940
- const btn = showAddButton ? this.renderAddRowButton(cssClasses, matrix) : undefined;
4929
+ const toolbar = matrix.getShowToolbar() ? ReactElementFactory.Instance.createElement("sv-action-bar", { model: matrix.toolbar }) : null;
4941
4930
  return (React.createElement("div", { className: cssClasses.noRowsSection },
4942
4931
  textDiv,
4943
- btn));
4944
- }
4945
- renderAddRowButton(cssClasses, question) {
4946
- return ReactElementFactory.Instance.createElement("sv-matrixdynamic-add-btn", {
4947
- question: question, cssClasses: cssClasses, isEmptySection: true
4948
- });
4932
+ toolbar));
4949
4933
  }
4950
4934
  }
4951
- ReactElementFactory.Instance.registerElement("sv-matrixdynamic-add-btn", (props) => { return React.createElement(SurveyQuestionMatrixDynamicAddButton, props); });
4952
4935
  ReactElementFactory.Instance.registerElement("sv-placeholder-matrixdynamic", (props) => { return React.createElement(SurveyQuestionMatrixDynamicPlaceholder, props); });
4953
4936
 
4954
4937
  class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
@@ -4992,7 +4975,7 @@ class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
4992
4975
  const rangeTop = this.question.isRangeShowing && this.question.isProgressTopShowing
4993
4976
  ? this.renderRange()
4994
4977
  : null;
4995
- const navV2 = this.renderNavigatorV2();
4978
+ const navigation = this.renderNavigator();
4996
4979
  const noEntriesPlaceholder = this.renderPlaceholder(cssClasses);
4997
4980
  return (React.createElement("div", { className: cssClasses.root },
4998
4981
  this.question.hasTabbedMenu ? React.createElement("div", { className: this.question.getTabsContainerCss() },
@@ -5000,18 +4983,13 @@ class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
5000
4983
  noEntriesPlaceholder,
5001
4984
  rangeTop,
5002
4985
  React.createElement("div", { className: this.question.cssClasses.panelsContainer }, panels),
5003
- navV2));
4986
+ navigation));
5004
4987
  }
5005
4988
  renderRange() {
5006
4989
  return (React.createElement("div", { className: this.question.cssClasses.progress },
5007
4990
  React.createElement("div", { className: this.question.cssClasses.progressBar, style: { width: this.question.progress }, role: "progressbar", "aria-label": this.question.progressBarAriaLabel })));
5008
4991
  }
5009
- renderAddRowButton() {
5010
- return ReactElementFactory.Instance.createElement("sv-paneldynamic-add-btn", {
5011
- data: { question: this.question }
5012
- });
5013
- }
5014
- renderNavigatorV2() {
4992
+ renderNavigator() {
5015
4993
  if (!this.question.showNavigation)
5016
4994
  return null;
5017
4995
  const range = this.question.isRangeShowing && this.question.isProgressBottomShowing ? this.renderRange() : null;
@@ -5055,9 +5033,7 @@ class SurveyQuestionPanelDynamicItem extends SurveyPanel {
5055
5033
  renderButton() {
5056
5034
  if (!this.question.canRenderRemovePanelOnRight(this.panel))
5057
5035
  return null;
5058
- return ReactElementFactory.Instance.createElement("sv-paneldynamic-remove-btn", {
5059
- data: { question: this.question, panel: this.panel }
5060
- });
5036
+ return React.createElement(SurveyAction, { item: this.question.getRemovePanelAction(this.panel) });
5061
5037
  }
5062
5038
  }
5063
5039
  ReactQuestionFactory.Instance.registerQuestion("paneldynamic", props => {
@@ -5072,12 +5048,7 @@ class SurveyQuestionPanelDynamicPlaceholder extends ReactSurveyElement {
5072
5048
  const question = this.props.question;
5073
5049
  return (React.createElement("div", { className: cssClasses.noEntriesPlaceholder },
5074
5050
  React.createElement("span", null, this.renderLocString(question.locNoEntriesText)),
5075
- this.renderAddRowButton(question)));
5076
- }
5077
- renderAddRowButton(question) {
5078
- return ReactElementFactory.Instance.createElement("sv-paneldynamic-add-btn", {
5079
- data: { question: question }
5080
- });
5051
+ React.createElement(SurveyActionBar, { model: this.props.question.footerToolbar })));
5081
5052
  }
5082
5053
  }
5083
5054
  ReactElementFactory.Instance.registerElement("sv-placeholder-paneldynamic", (props) => { return React.createElement(SurveyQuestionPanelDynamicPlaceholder, props); });
@@ -6078,145 +6049,13 @@ ReactElementFactory.Instance.registerElement("sv-logo-image", (props) => {
6078
6049
  return React.createElement(LogoImage, props);
6079
6050
  });
6080
6051
 
6081
- class SurveyQuestionMatrixDynamicRemoveButton extends ReactSurveyElement {
6082
- constructor(props) {
6083
- super(props);
6084
- this.handleOnRowRemoveClick = this.handleOnRowRemoveClick.bind(this);
6085
- }
6086
- get question() {
6087
- return this.props.item.data.question;
6088
- }
6089
- get row() {
6090
- return this.props.item.data.row;
6091
- }
6092
- handleOnRowRemoveClick(event) {
6093
- this.question.removeRowUI(this.row);
6094
- }
6095
- renderElement() {
6096
- var removeRowText = this.renderLocString(this.question.locRemoveRowText);
6097
- return (React.createElement("button", { className: this.question.getRemoveRowButtonCss(), type: "button", onClick: this.handleOnRowRemoveClick, disabled: this.question.isInputReadOnly },
6098
- removeRowText,
6099
- React.createElement("span", { className: this.question.cssClasses.iconRemove })));
6100
- }
6101
- }
6102
- ReactElementFactory.Instance.registerElement("sv-matrix-remove-button", (props) => {
6103
- return React.createElement(SurveyQuestionMatrixDynamicRemoveButton, props);
6104
- });
6105
-
6106
- class SurveyQuestionMatrixDetailButton extends ReactSurveyElement {
6107
- constructor(props) {
6108
- super(props);
6109
- this.handleOnShowHideClick = this.handleOnShowHideClick.bind(this);
6110
- }
6111
- getStateElement() {
6112
- return this.props.item;
6113
- }
6114
- get item() {
6115
- return this.props.item;
6116
- }
6117
- get question() {
6118
- return this.props.item.data.question;
6119
- }
6120
- get row() {
6121
- return this.props.item.data.row;
6122
- }
6123
- handleOnShowHideClick(event) {
6124
- this.row.showHideDetailPanelClick();
6125
- }
6126
- renderElement() {
6127
- var isExpanded = this.row.isDetailPanelShowing;
6128
- var ariaExpanded = isExpanded;
6129
- var ariaControls = isExpanded ? this.row.detailPanelId : undefined;
6130
- return (React.createElement("button", { type: "button", title: this.props.item.title, onClick: this.handleOnShowHideClick, className: this.question.getDetailPanelButtonCss(this.row), "aria-expanded": ariaExpanded, "aria-controls": ariaControls },
6131
- React.createElement(SvgIcon, { className: this.question.getDetailPanelIconCss(this.row), iconName: this.question.getDetailPanelIconId(this.row), size: "auto" })));
6132
- }
6133
- }
6134
- ReactElementFactory.Instance.registerElement("sv-matrix-detail-button", props => {
6135
- return React.createElement(SurveyQuestionMatrixDetailButton, props);
6136
- });
6137
-
6138
- class SurveyQuestionPanelDynamicAction extends ReactSurveyElement {
6139
- constructor(props) {
6140
- super(props);
6141
- }
6052
+ class SurveyQuestionPanelDynamicProgressText extends ReactSurveyElement {
6142
6053
  get data() {
6143
6054
  return (this.props.item && this.props.item.data) || this.props.data;
6144
6055
  }
6145
6056
  get question() {
6146
6057
  return (this.props.item && this.props.item.data.question) || this.props.data.question;
6147
6058
  }
6148
- }
6149
- class SurveyQuestionPanelDynamicAddButton extends SurveyQuestionPanelDynamicAction {
6150
- constructor() {
6151
- super(...arguments);
6152
- this.handleClick = (event) => {
6153
- this.question.addPanelUI();
6154
- };
6155
- }
6156
- renderElement() {
6157
- if (!this.question.canAddPanel)
6158
- return null;
6159
- const btnText = this.renderLocString(this.question.locAddPanelText);
6160
- return (React.createElement("button", { type: "button", id: this.question.addButtonId, className: this.question.getAddButtonCss(), onClick: this.handleClick },
6161
- React.createElement("span", { className: this.question.cssClasses.buttonAddText }, btnText)));
6162
- }
6163
- }
6164
- ReactElementFactory.Instance.registerElement("sv-paneldynamic-add-btn", (props) => {
6165
- return React.createElement(SurveyQuestionPanelDynamicAddButton, props);
6166
- });
6167
-
6168
- class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
6169
- constructor() {
6170
- super(...arguments);
6171
- this.handleClick = (event) => {
6172
- this.question.removePanelUI(this.data.panel);
6173
- };
6174
- }
6175
- renderElement() {
6176
- const btnText = this.renderLocString(this.question.locRemovePanelText);
6177
- const id = this.question.getPanelRemoveButtonId(this.data.panel);
6178
- return (React.createElement("button", { id: id, className: this.question.getPanelRemoveButtonCss(), onClick: this.handleClick, type: "button" },
6179
- React.createElement("span", { className: this.question.cssClasses.buttonRemoveText }, btnText),
6180
- React.createElement("span", { className: this.question.cssClasses.iconRemove })));
6181
- }
6182
- }
6183
- ReactElementFactory.Instance.registerElement("sv-paneldynamic-remove-btn", (props) => {
6184
- return React.createElement(SurveyQuestionPanelDynamicRemoveButton, props);
6185
- });
6186
-
6187
- class SurveyQuestionPanelDynamicPrevButton extends SurveyQuestionPanelDynamicAction {
6188
- constructor() {
6189
- super(...arguments);
6190
- this.handleClick = (event) => {
6191
- this.question.goToPrevPanel();
6192
- };
6193
- }
6194
- renderElement() {
6195
- return (React.createElement("div", { title: this.question.panelPrevText, onClick: this.handleClick, className: this.question.getPrevButtonCss() },
6196
- React.createElement(SvgIcon, { iconName: this.question.cssClasses.progressBtnIcon, size: "auto" })));
6197
- }
6198
- }
6199
- ReactElementFactory.Instance.registerElement("sv-paneldynamic-prev-btn", (props) => {
6200
- return React.createElement(SurveyQuestionPanelDynamicPrevButton, props);
6201
- });
6202
-
6203
- class SurveyQuestionPanelDynamicNextButton extends SurveyQuestionPanelDynamicAction {
6204
- constructor() {
6205
- super(...arguments);
6206
- this.handleClick = (event) => {
6207
- this.question.goToNextPanel();
6208
- };
6209
- }
6210
- renderElement() {
6211
- return (React.createElement("div", { title: this.question.panelNextText, onClick: this.handleClick, className: this.question.getNextButtonCss() },
6212
- React.createElement(SvgIcon, { iconName: this.question.cssClasses.progressBtnIcon, size: "auto" })));
6213
- }
6214
- }
6215
- ReactElementFactory.Instance.registerElement("sv-paneldynamic-next-btn", (props) => {
6216
- return React.createElement(SurveyQuestionPanelDynamicNextButton, props);
6217
- });
6218
-
6219
- class SurveyQuestionPanelDynamicProgressText extends SurveyQuestionPanelDynamicAction {
6220
6059
  renderElement() {
6221
6060
  return (React.createElement("div", { className: this.question.cssClasses.progressText }, this.question.progressText));
6222
6061
  }
@@ -6225,21 +6064,6 @@ ReactElementFactory.Instance.registerElement("sv-paneldynamic-progress-text", (p
6225
6064
  return React.createElement(SurveyQuestionPanelDynamicProgressText, props);
6226
6065
  });
6227
6066
 
6228
- class SurveyNavigationButton extends ReactSurveyElement {
6229
- get item() {
6230
- return this.props.item;
6231
- }
6232
- canRender() {
6233
- return this.item.isVisible;
6234
- }
6235
- renderElement() {
6236
- return (React.createElement("input", { className: this.item.innerCss, type: "button", disabled: this.item.disabled, onMouseDown: this.item.data && this.item.data.mouseDown, onClick: this.item.action, title: this.item.getTooltip(), value: this.item.title }));
6237
- }
6238
- }
6239
- ReactElementFactory.Instance.registerElement("sv-nav-btn", (props) => {
6240
- return React.createElement(SurveyNavigationButton, props);
6241
- });
6242
-
6243
6067
  class QuestionErrorComponent extends React.Component {
6244
6068
  render() {
6245
6069
  const error = this.props.error;
@@ -6423,7 +6247,7 @@ ReactElementFactory.Instance.registerElement(LocalizableString.editableRenderer,
6423
6247
  return React.createElement(SurveyLocStringEditor, props);
6424
6248
  });
6425
6249
 
6426
- checkLibraryVersion(`${"2.5.14"}`, "survey-react-ui");
6250
+ checkLibraryVersion(`${"3.0.0-beta.0"}`, "survey-react-ui");
6427
6251
 
6428
- 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, SurveyQuestionImageMap, 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 };
6252
+ 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, 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, SurveyQuestionImageMap, SurveyQuestionImagePicker, SurveyQuestionMatrix, SurveyQuestionMatrixCell, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionMatrixRow, SurveyQuestionMultipleText, SurveyQuestionOptionItem, SurveyQuestionPanelDynamic, SurveyQuestionPanelDynamicProgressText, SurveyQuestionRadioItem, SurveyQuestionRadiogroup, SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionSignaturePad, SurveyQuestionSlider, SurveyQuestionTagbox, SurveyQuestionTagboxItem, SurveyQuestionText, SurveyRow, SurveyTimerPanel, SurveyWindow, SvgBundleComponent, SvgIcon, TagboxFilterString, TitleActions, TitleElement, attachKey2click };
6429
6253
  //# sourceMappingURL=survey-react-ui.mjs.map