survey-js-ui 2.0.0-rc.9 → 2.0.1
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-js-ui.js +6074 -0
- package/fesm/survey-js-ui.js.map +1 -0
- package/package.json +11 -3
- package/survey-js-ui.js +59 -52
- package/survey-js-ui.js.map +1 -1
- package/survey-js-ui.min.js +1 -1
- package/survey-js-ui.min.js.LICENSE.txt +1 -1
- package/typings/survey-react-ui/src/components/action-bar/action-bar-item.d.ts +0 -1
- package/typings/survey-react-ui/src/reactquestion_element.d.ts +3 -0
|
@@ -9,7 +9,6 @@ export declare class SurveyAction extends SurveyElementBase<IActionBarItemProps,
|
|
|
9
9
|
constructor(props: any);
|
|
10
10
|
get item(): Action;
|
|
11
11
|
protected getStateElement(): Base;
|
|
12
|
-
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
|
|
13
12
|
renderElement(): React.JSX.Element;
|
|
14
13
|
componentWillUnmount(): void;
|
|
15
14
|
componentDidMount(): void;
|
|
@@ -24,12 +24,15 @@ export declare class SurveyElementBase<P, S> extends React.Component<P, S> {
|
|
|
24
24
|
protected get changedStatePropName(): string | undefined;
|
|
25
25
|
private makeBaseElementsReact;
|
|
26
26
|
private unMakeBaseElementsReact;
|
|
27
|
+
private unMakeBaseElementsReactive;
|
|
27
28
|
protected disableStateElementsRerenderEvent(els: Array<Base>): void;
|
|
28
29
|
protected getStateElements(): Array<Base>;
|
|
29
30
|
protected getStateElement(): Base | null;
|
|
30
31
|
protected get isDisplayMode(): boolean;
|
|
31
32
|
protected renderLocString(locStr: LocalizableString, style?: any, key?: string): React.JSX.Element;
|
|
32
33
|
private canMakeReact;
|
|
34
|
+
private propertyValueChangedHandler;
|
|
35
|
+
protected isCurrentStateElement(stateElement: Base): boolean;
|
|
33
36
|
private makeBaseElementReact;
|
|
34
37
|
protected canUsePropInState(key: string): boolean;
|
|
35
38
|
private unMakeBaseElementReact;
|