survey-react 1.9.23 → 1.9.26

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/survey.react.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React v1.9.23
2
+ * Type definition for Survey JavaScript library for React v1.9.26
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -93,96 +93,96 @@ export interface IExpresionExecutor {
93
93
  onComplete: any;
94
94
  }
95
95
  /*
96
- * Defines an individual action. Action items can be displayed in certain survey elements - in Toolbar (or action bar), in titles (of pages, panels, questions), in matrix rows (as 'expand details' or 'remove row' buttons), and etc.
96
+ * An action item.
97
+ * Action items are used in the Toolbar, matrix rows, titles of pages, panels, questions, and other survey elements.
97
98
  */
98
99
  export interface IAction {
99
100
  /*
100
- * Unique string id
101
+ * A unique action item identifier.
101
102
  */
102
103
  id: string;
103
104
  /*
104
- * Set this property to false to make the toolbar item invisible.
105
+ * Specifies the action item's visibility.
105
106
  */
106
107
  visible?: boolean;
107
108
  /*
108
- * Toolbar item title
109
+ * The action item's title.
109
110
  */
110
111
  title?: string;
111
112
  /*
112
- * Toolbar item tooltip
113
+ * The action item's tooltip.
113
114
  */
114
115
  tooltip?: string;
115
116
  /*
116
- * Set this property to false to disable the toolbar item.
117
+ * Specifies whether users can interact with the action item.
117
118
  */
118
119
  enabled?: boolean;
119
120
  /*
120
- * Set this property to false to hide the toolbar item title.
121
+ * Specifies the visibility of the action item's title.
121
122
  */
122
123
  showTitle?: boolean;
123
124
  /*
124
- * A callback that calls on toolbar item click.
125
+ * A function that is executed when users click the action item.
125
126
  */
126
127
  action?: any;
127
128
  /*
128
- * Toolbar item css class
129
+ * One or several CSS classes that you want to apply to the outer `<div>` element.
130
+ * In the markup, an action item is rendered as an `<input>` wrapped in a `<div>`. The `css` property applies classes to the `<div>`.
131
+ * To apply several classes, separate them with a space character: "myclass1 myclass2".
129
132
  */
130
133
  css?: string;
131
134
  /*
132
- * Toolbar inner element css class
135
+ * One or several CSS classes that you want to apply to the inner `<input>` element.
136
+ * In the markup, an action item is rendered as an `<input>` wrapped in a `<div>`. The `innerCss` property applies classes to the `<input>`.
137
+ * To apply several classes, separate them with a space character: "myclass1 myclass2".
133
138
  */
134
139
  innerCss?: string;
135
140
  /*
136
- * Toolbar item data object. Used as data for custom template or component rendering
141
+ * The action item's data object. Use it to pass required data to a custom template or component.
137
142
  */
138
143
  data?: any;
139
144
  popupModel?: any;
140
145
  needSeparator?: boolean;
141
146
  /*
142
- * Set this property to true to activate the toolbar item (page)
147
+ * Specifies whether the action item is active.
148
+ * Use it as a flag to specify different action item appearances in different states.
143
149
  */
144
150
  active?: boolean;
145
151
  pressed?: boolean;
146
152
  /*
147
- * Toolbar item template name
153
+ * Specifies the name of a template used to render the action item.
148
154
  */
149
155
  template?: string;
150
156
  /*
151
- * Toolbar item component name
157
+ * Specifies the name of a component used to render the action item.
152
158
  */
153
159
  component?: string;
154
160
  /*
155
- * Toolbar item icon name
161
+ * The action item's icon name.
156
162
  */
157
163
  iconName?: string;
158
164
  /*
159
- * Toolbar item icon size
165
+ * The action item's icon size in pixels.
160
166
  */
161
167
  iconSize?: number;
162
168
  /*
163
- * Toolbar item child items. Can be used as contianer for options
164
- */
165
- items?: any;
166
- /*
167
- * Gets or sets an action's location in a matrix question's row.
169
+ * The action item's location in a matrix question's row.
168
170
  *
169
- * The following options are available:
171
+ * The following values are available:
170
172
  *
171
- * - `start` - An action is located at the beginning of a row.
172
- * - `end` - An action is located at the end of a row.
173
+ * - `"start"` - The action item is located at the beginning of the row.
174
+ * - `"end"` - The action is located at the end of the row.
173
175
  */
174
176
  location?: string;
175
177
  /*
176
- * Set it to true to make the tabIndex -1 to disable keyboard navigation to this item
178
+ * Set this property to `true` if you want to disable keyboard navigation for the action item (sets the `tabIndex` attribute to -1).
177
179
  */
178
180
  disableTabStop?: boolean;
179
181
  /*
180
- * Set it to false to force action "large" mode even if has icon and does not fit to action bar space
182
+ * Set this property to `true` if you want the item's `title` to be always visible.
183
+ * If you set it to `false`, the `title` hides when the screen space is limited, and the item displays only the icon.
181
184
  */
182
185
  disableShrink?: boolean;
183
- /*
184
- * Action button display mode
185
- */
186
186
  mode?: any;
187
187
  visibleIndex?: number;
188
188
  needSpace?: boolean;
@@ -479,6 +479,11 @@ export interface IFindElement {
479
479
  element: Base;
480
480
  str: LocalizableString;
481
481
  }
482
+ export interface IExpressionRunnerInfo {
483
+ onExecute: any;
484
+ canRun?: any;
485
+ runner?: ExpressionRunner;
486
+ }
482
487
  export interface IValidatorOwner {
483
488
  getValidators(): Array<SurveyValidator>;
484
489
  validatedValue: any;
@@ -589,6 +594,7 @@ export declare class Base {
589
594
  localizableStrings: any;
590
595
  arraysInfo: any;
591
596
  eventList: any;
597
+ expressionInfo: any;
592
598
  bindingsValue: Bindings;
593
599
  isDisposedValue: boolean;
594
600
  onPropChangeFunctions: any;
@@ -648,6 +654,10 @@ export declare class Base {
648
654
  getType(): string;
649
655
  getSurvey(isLive?: boolean): ISurvey;
650
656
  /*
657
+ * Returns true if the question in design mode right now.
658
+ */
659
+ get isDesignMode(): boolean;
660
+ /*
651
661
  * Returns true if the object is inluded into survey, otherwise returns false.
652
662
  */
653
663
  get inSurvey(): boolean;
@@ -709,6 +719,11 @@ export declare class Base {
709
719
  protected onPropertyValueChanged(name: string, oldValue: any, newValue: any): void;
710
720
  protected propertyValueChanged(name: string, oldValue: any, newValue: any, arrayChanges?: ArrayChanges, target?: Base): void;
711
721
  protected get isInternal(): boolean;
722
+ addExpressionProperty(name: string, onExecute: any, canRun?: any): void;
723
+ getDataFilteredValues(): any;
724
+ getDataFilteredProperties(): any;
725
+ protected runConditionCore(values: any, properties: any): void;
726
+ protected canRunConditions(): boolean;
712
727
  /*
713
728
  * Register a function that will be called on a property value changed.
714
729
  */
@@ -1097,6 +1112,7 @@ export declare class OperandMaker {
1097
1112
  static signs: any;
1098
1113
  }
1099
1114
  export declare class PopupUtils {
1115
+ static bottomIndent: number;
1100
1116
  static calculatePosition(targetRect: any, height: number, width: number, verticalPosition: any, horizontalPosition: any, showPointer: boolean): INumberPosition;
1101
1117
  static updateVerticalDimensions(top: number, height: number, windowHeight: number): any;
1102
1118
  static updateHorizontalDimensions(left: number, width: number, windowWidth: number, horizontalPosition: any): any;
@@ -1499,9 +1515,11 @@ export declare class ActionContainer<T extends Action = Action> extends Base {
1499
1515
  get visibleActions(): any;
1500
1516
  getRootCss(): string;
1501
1517
  get cssClasses(): any;
1518
+ addAction(val: IAction, sortByVisibleIndex?: boolean): Action;
1502
1519
  setItems(items: any, sortByVisibleIndex?: boolean): void;
1503
1520
  initResponsivityManager(container: any): void;
1504
1521
  resetResponsivityManager(): void;
1522
+ getActionById(id: string): T;
1505
1523
  }
1506
1524
  export declare class AnswerRequiredError extends SurveyError {
1507
1525
  constructor(text?: string, errorOwner?: ISurveyErrorOwner);
@@ -1918,6 +1936,7 @@ export declare class JsonObjectProperty implements IObject {
1918
1936
  onGetValue: any;
1919
1937
  onSetValue: any;
1920
1938
  visibleIf: any;
1939
+ onExecuteExpression: any;
1921
1940
  onPropertyEditorUpdate: any;
1922
1941
  get id(): number;
1923
1942
  get classInfo(): JsonMetadataClass;
@@ -2015,6 +2034,7 @@ export declare class LocalizableString implements ILocalizableString {
2015
2034
  localizationName: string;
2016
2035
  onGetTextCallback: any;
2017
2036
  onGetDefaultTextCallback: any;
2037
+ onGetLocalizationTextCallback: any;
2018
2038
  onStrChanged: any;
2019
2039
  onSearchChanged: any;
2020
2040
  sharedData: LocalizableString;
@@ -2163,7 +2183,7 @@ export declare class MatrixDropdownColumn extends Base implements ILocalizableOw
2163
2183
  updateCellQuestion(cellQuestion: Question, data: any, onUpdateJson?: any): void;
2164
2184
  defaultCellTypeChanged(): void;
2165
2185
  protected calcCellQuestionType(row: MatrixDropdownRowModelBase): string;
2166
- protected updateTemplateQuestion(): void;
2186
+ protected updateTemplateQuestion(newCellType?: string): void;
2167
2187
  protected createNewQuestion(cellType: string): Question;
2168
2188
  previousChoicesId: string;
2169
2189
  protected setQuestionProperties(question: Question, onUpdateJson?: any): void;
@@ -2726,18 +2746,6 @@ export declare class SurveyElementCore extends Base implements ILocalizableOwner
2726
2746
  getRendererContext(locStr: LocalizableString): any;
2727
2747
  getProcessedText(text: string): string;
2728
2748
  }
2729
- export declare class SurveyNavigation extends SurveyNavigationBase {
2730
- constructor(props: any);
2731
- handlePrevClick(event: any): void;
2732
- handleNextClick(event: any): void;
2733
- handleNextMouseDown(event: any): any;
2734
- handleMouseDown(event: any): any;
2735
- handleCompleteClick(event: any): void;
2736
- handlePreviewClick(event: any): void;
2737
- handleStartClick(event: any): void;
2738
- render(): any;
2739
- protected renderButton(click: any, mouseDown: any, text: string, btnClassName: string): any;
2740
- }
2741
2749
  export declare class SurveyPanelBase extends SurveyElementBase<any, any> {
2742
2750
  constructor(props: any);
2743
2751
  protected rootRef: any;
@@ -3162,6 +3170,7 @@ export declare class ImageItemValue extends ItemValue implements ILocalizableOwn
3162
3170
  */
3163
3171
  get imageLink(): string;
3164
3172
  set imageLink(val: string);
3173
+ aspectRatio: number;
3165
3174
  get locImageLink(): LocalizableString;
3166
3175
  getLocale(): string;
3167
3176
  getMarkdownHtml(text: string, name: string): string;
@@ -3356,6 +3365,9 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
3356
3365
  get titleTabIndex(): number;
3357
3366
  get titleAriaExpanded(): boolean;
3358
3367
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
3368
+ protected canRunConditions(): boolean;
3369
+ getDataFilteredValues(): any;
3370
+ getDataFilteredProperties(): any;
3359
3371
  protected get surveyImpl(): ISurveyImpl;
3360
3372
  __setData(data: ISurveyData): void;
3361
3373
  get data(): ISurveyData;
@@ -3365,10 +3377,6 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
3365
3377
  get survey(): ISurvey;
3366
3378
  getSurvey(live?: boolean): ISurvey;
3367
3379
  protected setSurveyCore(value: ISurvey): void;
3368
- /*
3369
- * Returns true if the question in design mode right now.
3370
- */
3371
- get isDesignMode(): boolean;
3372
3380
  isContentElement: boolean;
3373
3381
  isEditableTemplateElement: boolean;
3374
3382
  isInteractiveDesignElement: boolean;
@@ -3533,6 +3541,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3533
3541
  localeValue: string;
3534
3542
  textPreProcessor: TextPreProcessor;
3535
3543
  timerModelValue: SurveyTimerModel;
3544
+ navigationBarValue: any;
3536
3545
  /*
3537
3546
  * The event is fired before the survey is completed and the `onComplete` event is fired. You can prevent the survey from completing by setting `options.allowComplete` to `false`
3538
3547
  * <br/> `sender` - the survey object that fires the event.
@@ -4194,7 +4203,8 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4194
4203
  get cssNavigationStart(): string;
4195
4204
  get cssNavigationNext(): string;
4196
4205
  get bodyCss(): string;
4197
- get completedCss(): string;
4206
+ completedCss: string;
4207
+ containerCss: string;
4198
4208
  get completedStateCss(): string;
4199
4209
  getCompletedStateCss(): string;
4200
4210
  lazyRenderingValue: boolean;
@@ -4506,6 +4516,16 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4506
4516
  set loadingHtml(val: string);
4507
4517
  get locLoadingHtml(): LocalizableString;
4508
4518
  /*
4519
+ * Default value for loadingHtml property
4520
+ */
4521
+ get defaultLoadingHtml(): string;
4522
+ get navigationBar(): any;
4523
+ /*
4524
+ * Adds a custom navigation item similar to the Previous Page, Next Page, and Complete buttons.
4525
+ * Accepts an object described in the [IAction](https://surveyjs.io/Documentation/Library?id=IAction) help section.
4526
+ */
4527
+ addNavigationItem(val: IAction): Action;
4528
+ /*
4509
4529
  * Gets or sets the 'Start' button caption.
4510
4530
  * The 'Start' button is shown on the started page. Set the `firstPageIsStarted` property to `true`, to display the started page.
4511
4531
  */
@@ -5151,6 +5171,10 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5151
5171
  setJsonObject(jsonObj: any): void;
5152
5172
  isEndLoadingFromJson: string;
5153
5173
  endLoadingFromJson(): void;
5174
+ updateNavigationItemTitlesCallback: any;
5175
+ updateNavigationItemCssCallback: any;
5176
+ protected createNavigationBar(): ActionContainer;
5177
+ protected createNavigationActions(): Array<IAction>;
5154
5178
  protected onBeforeCreating(): void;
5155
5179
  protected onCreating(): void;
5156
5180
  getBuiltInVariableValue(name: string): number;
@@ -5338,6 +5362,12 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5338
5362
  dispose(): void;
5339
5363
  disposeCallback: any;
5340
5364
  }
5365
+ export declare class SurveyNavigationButton extends ReactSurveyElement {
5366
+ constructor(props: any);
5367
+ protected get item(): Action;
5368
+ protected canRender(): boolean;
5369
+ protected renderElement(): any;
5370
+ }
5341
5371
  export declare class SurveyPage extends SurveyPanelBase {
5342
5372
  constructor(props: any);
5343
5373
  protected getPanelBase(): PanelModelBase;
@@ -5468,6 +5498,7 @@ export declare class SurveyQuestionImagePicker extends SurveyQuestionElementBase
5468
5498
  constructor(props: any);
5469
5499
  protected get question(): any;
5470
5500
  protected renderElement(): any;
5501
+ protected getColumns(cssClasses: any): any;
5471
5502
  protected getItems(cssClasses: any): Array<any>;
5472
5503
  protected get textStyle(): any;
5473
5504
  protected renderItem(key: string, item: any, cssClasses: any): any;
@@ -6012,15 +6043,12 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
6012
6043
  constructor(name: string);
6013
6044
  static TextPreprocessorValuesMap: any;
6014
6045
  static questionCounter: number;
6015
- conditionRunner: ConditionRunner;
6016
6046
  isCustomWidgetRequested: boolean;
6017
6047
  customWidgetValue: QuestionCustomWidget;
6018
6048
  customWidgetData: any;
6019
6049
  focusCallback: any;
6020
6050
  surveyLoadCallback: any;
6021
6051
  displayValueCallback: any;
6022
- conditionEnabelRunner: ConditionRunner;
6023
- conditionRequiredRunner: ConditionRunner;
6024
6052
  defaultValueRunner: ExpressionRunner;
6025
6053
  isChangingViaDefaultValue: boolean;
6026
6054
  isValueChangedDirectly: boolean;
@@ -6128,8 +6156,6 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
6128
6156
  moveTo(container: IPanel, insertBefore?: any): boolean;
6129
6157
  getProgressInfo(): IProgressInfo;
6130
6158
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
6131
- getDataFilteredValues(): any;
6132
- getDataFilteredProperties(): any;
6133
6159
  /*
6134
6160
  * A parent element. It can be panel or page.
6135
6161
  */
@@ -6535,10 +6561,14 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
6535
6561
  transformToDesktopView(): void;
6536
6562
  needResponsiveWidth(): boolean;
6537
6563
  protected supportResponsiveness(): boolean;
6564
+ protected needResponsiveness(): boolean;
6565
+ protected checkForResponsiveness(el: any): void;
6538
6566
  resizeObserver: any;
6567
+ protected getObservedElementSelector(): string;
6568
+ onMobileChangedCallback: any;
6539
6569
  protected getCompactRenderAs(): string;
6540
6570
  protected getDesktopRenderAs(): string;
6541
- protected processResponsiveness(requiredWidth: number, availableWidth: number): void;
6571
+ protected processResponsiveness(requiredWidth: number, availableWidth: number): any;
6542
6572
  dispose(): void;
6543
6573
  }
6544
6574
  export declare class SurveyFlowPanel extends SurveyPanel {
@@ -7992,6 +8022,7 @@ export declare class QuestionSelectBase extends Question {
7992
8022
  getColumnClass(): string;
7993
8023
  getItemIndex(item: any): number;
7994
8024
  getItemClass(item: any): string;
8025
+ protected getCurrentColCount(): number;
7995
8026
  protected getItemClassCore(item: any, options: any): string;
7996
8027
  getLabelClass(item: ItemValue): string;
7997
8028
  getControlLabelClass(item: ItemValue): string;
@@ -8012,7 +8043,7 @@ export declare class QuestionSelectBase extends Question {
8012
8043
  getItemId(item: ItemValue): string;
8013
8044
  get questionName(): string;
8014
8045
  getItemEnabled(item: ItemValue): any;
8015
- rootElement: any;
8046
+ protected rootElement: any;
8016
8047
  afterRender(el: any): void;
8017
8048
  prevIsOtherSelected: boolean;
8018
8049
  protected onValueChanged(): void;
@@ -8891,14 +8922,16 @@ export declare class QuestionImagePickerModel extends QuestionCheckboxBase {
8891
8922
  /*
8892
8923
  * The image height.
8893
8924
  */
8894
- get imageHeight(): string;
8895
- set imageHeight(val: string);
8925
+ get imageHeight(): number;
8926
+ set imageHeight(val: number);
8927
+ responsiveImageHeight: number;
8896
8928
  get renderedImageHeight(): string;
8897
8929
  /*
8898
8930
  * The image width.
8899
8931
  */
8900
- get imageWidth(): string;
8901
- set imageWidth(val: string);
8932
+ get imageWidth(): number;
8933
+ set imageWidth(val: number);
8934
+ responsiveImageWidth: number;
8902
8935
  get renderedImageWidth(): string;
8903
8936
  /*
8904
8937
  * The image fit mode.
@@ -8911,8 +8944,24 @@ export declare class QuestionImagePickerModel extends QuestionCheckboxBase {
8911
8944
  get contentMode(): string;
8912
8945
  set contentMode(val: string);
8913
8946
  protected convertDefaultValue(val: any): any;
8914
- get hasColumns(): boolean;
8915
8947
  get inputType(): "checkbox" | "radio";
8948
+ protected isFootChoice(_item: ItemValue, _question: QuestionSelectBase): boolean;
8949
+ getSelectBaseRootCss(): string;
8950
+ isResponsiveValue: boolean;
8951
+ maxImageWidth: number;
8952
+ minImageWidth: number;
8953
+ maxImageHeight: number;
8954
+ minImageHeight: number;
8955
+ protected getObservedElementSelector(): string;
8956
+ protected supportResponsiveness(): boolean;
8957
+ protected needResponsiveness(): boolean;
8958
+ _width: number;
8959
+ onContentLoaded: any;
8960
+ responsiveColCount: number;
8961
+ protected getCurrentColCount(): number;
8962
+ protected processResponsiveness(_: number, availableWidth: number): boolean;
8963
+ gapBetweenItems: number;
8964
+ afterRender(el: any): void;
8916
8965
  }
8917
8966
  /*
8918
8967
  * A Model for a matrix dropdown question. You may use a dropdown, checkbox, radiogroup, text and comment questions as a cell editors.
@@ -8997,6 +9046,7 @@ export declare class QuestionMatrixDynamicModel extends QuestionMatrixDropdownMo
8997
9046
  */
8998
9047
  get allowRowsDragAndDrop(): boolean;
8999
9048
  set allowRowsDragAndDrop(val: boolean);
9049
+ get iconDragElement(): string;
9000
9050
  protected createRenderedTable(): QuestionMatrixDropdownRenderedTable;
9001
9051
  /*
9002
9052
  * The minimum row count. A user could not delete a row if the rowCount equals to minRowCount
@@ -9672,6 +9722,7 @@ export declare var defaultStandardCss: {
9672
9722
  itemInline: string,
9673
9723
  itemText: string,
9674
9724
  clearButton: string,
9725
+ column: string,
9675
9726
  },
9676
9727
  rating: {
9677
9728
  root: string,
@@ -9721,6 +9772,9 @@ export declare var defaultStandardCss: {
9721
9772
  buttonCollapsed: string,
9722
9773
  },
9723
9774
  },
9775
+ variables: {
9776
+ themeMark: string,
9777
+ },
9724
9778
  };
9725
9779
  export declare var surveyTimerFunctions: {
9726
9780
  setTimeout: any,
@@ -10655,6 +10709,7 @@ export declare var defaultV2Css: {
10655
10709
  imagepicker: {
10656
10710
  mainRoot: string,
10657
10711
  root: string,
10712
+ rootColumn: string,
10658
10713
  item: string,
10659
10714
  itemOnError: string,
10660
10715
  itemInline: string,
@@ -10669,6 +10724,10 @@ export declare var defaultV2Css: {
10669
10724
  itemText: string,
10670
10725
  clearButton: string,
10671
10726
  other: string,
10727
+ itemNoImage: string,
10728
+ itemNoImageSvgIcon: string,
10729
+ itemNoImageSvgIconId: string,
10730
+ column: string,
10672
10731
  },
10673
10732
  matrix: {
10674
10733
  mainRoot: string,
@@ -10729,6 +10788,8 @@ export declare var defaultV2Css: {
10729
10788
  buttonRemove: string,
10730
10789
  iconAdd: string,
10731
10790
  iconRemove: string,
10791
+ dragElementDecorator: string,
10792
+ iconDragElement: string,
10732
10793
  footer: string,
10733
10794
  emptyRowsSection: string,
10734
10795
  iconDrag: string,
@@ -10843,6 +10904,17 @@ export declare var defaultV2Css: {
10843
10904
  itemDragMod: string,
10844
10905
  itemOnError: string,
10845
10906
  },
10907
+ buttongroup: {
10908
+ root: string,
10909
+ item: string,
10910
+ itemIcon: string,
10911
+ itemDecorator: string,
10912
+ itemCaption: string,
10913
+ itemHover: string,
10914
+ itemSelected: string,
10915
+ itemDisabled: string,
10916
+ itemControl: string,
10917
+ },
10846
10918
  actionBar: {
10847
10919
  root: string,
10848
10920
  item: string,
@@ -10853,6 +10925,8 @@ export declare var defaultV2Css: {
10853
10925
  },
10854
10926
  variables: {
10855
10927
  mobileWidth: string,
10928
+ imagepickerGapBetweenItems: string,
10929
+ themeMark: string,
10856
10930
  },
10857
10931
  };
10858
10932
  export declare var modernCss: {
@@ -11093,6 +11167,7 @@ export declare var modernCss: {
11093
11167
  },
11094
11168
  imagepicker: {
11095
11169
  root: string,
11170
+ column: string,
11096
11171
  item: string,
11097
11172
  itemInline: string,
11098
11173
  itemChecked: string,
@@ -11223,6 +11298,9 @@ export declare var modernCss: {
11223
11298
  buttonCollapsed: string,
11224
11299
  },
11225
11300
  },
11301
+ variables: {
11302
+ themeMark: string,
11303
+ },
11226
11304
  };
11227
11305
  export declare var SvgRegistry: SvgIconRegistry;
11228
11306
  export declare var SvgBundleViewModel: any;