survey-creator-core 1.9.78 → 1.9.80
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/fonts.fontless.css +227 -0
- package/fonts.fontless.css.map +1 -0
- package/fonts.fontless.min.css +8 -0
- package/package.json +3 -11
- package/survey-creator-core.css +254 -39
- package/survey-creator-core.d.ts +37 -0
- package/survey-creator-core.fontless.css +56 -31
- package/survey-creator-core.fontless.css.map +1 -0
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +2 -2
- package/survey-creator-core.i18n.js.map +1 -0
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +74 -36
- package/survey-creator-core.js.map +1 -0
- package/survey-creator-core.min.css +7 -7
- package/survey-creator-core.min.js +2 -2
package/survey-creator-core.d.ts
CHANGED
|
@@ -873,6 +873,7 @@ declare module "creator-settings" {
|
|
|
873
873
|
showAddQuestionButton: boolean;
|
|
874
874
|
};
|
|
875
875
|
logic: {
|
|
876
|
+
defaultOperator: string;
|
|
876
877
|
visibleActions: any[];
|
|
877
878
|
logicItemTitleMaxChars: number;
|
|
878
879
|
openBracket: string;
|
|
@@ -2707,6 +2708,7 @@ declare module "property-grid-theme/property-grid" {
|
|
|
2707
2708
|
root: string;
|
|
2708
2709
|
item: string;
|
|
2709
2710
|
itemTitle: string;
|
|
2711
|
+
content: string;
|
|
2710
2712
|
row: string;
|
|
2711
2713
|
cell: string;
|
|
2712
2714
|
};
|
|
@@ -2760,6 +2762,7 @@ declare module "property-grid-theme/property-grid" {
|
|
|
2760
2762
|
matrixdynamic: {
|
|
2761
2763
|
tableWrapper: string;
|
|
2762
2764
|
root: string;
|
|
2765
|
+
content: string;
|
|
2763
2766
|
cell: string;
|
|
2764
2767
|
headerCell: string;
|
|
2765
2768
|
button: string;
|
|
@@ -2782,6 +2785,7 @@ declare module "property-grid-theme/property-grid" {
|
|
|
2782
2785
|
dragDropGhostPositionBottom: string;
|
|
2783
2786
|
emptyRowsSection: string;
|
|
2784
2787
|
emptyRowsText: string;
|
|
2788
|
+
cellQuestionWrapper: string;
|
|
2785
2789
|
};
|
|
2786
2790
|
rating: {
|
|
2787
2791
|
root: string;
|
|
@@ -5056,6 +5060,7 @@ declare module "property-grid/condition-survey" {
|
|
|
5056
5060
|
private getQuestionConditionJson;
|
|
5057
5061
|
private updateOperatorEnables;
|
|
5058
5062
|
private updateQuestionsWidth;
|
|
5063
|
+
private get defaultOperator();
|
|
5059
5064
|
private getFirstEnabledOperator;
|
|
5060
5065
|
private onPanelAdded;
|
|
5061
5066
|
private onPanelValueChanged;
|
|
@@ -6863,7 +6868,38 @@ declare module "creator-base" {
|
|
|
6863
6868
|
protected initSurveyWithJSON(json: any, clearState: boolean): void;
|
|
6864
6869
|
private updatePlugin;
|
|
6865
6870
|
protected initDragDrop(): void;
|
|
6871
|
+
/**
|
|
6872
|
+
* An event that is raised when users start to drag a survey element within the design surface.
|
|
6873
|
+
*
|
|
6874
|
+
* Parameters:
|
|
6875
|
+
*
|
|
6876
|
+
* - `sender`: `CreatorBase`\
|
|
6877
|
+
* A Survey Creator instance that raised the event.
|
|
6878
|
+
* - `options.draggedElement`: `any`\
|
|
6879
|
+
* A survey element being dragged.
|
|
6880
|
+
* - `options.fromElement`: `any`\
|
|
6881
|
+
* A survey element from which `draggedElement` is being dragged.
|
|
6882
|
+
* - `options.toElement`: `any`\
|
|
6883
|
+
* A survey element to which `draggedElement` is being dragged.
|
|
6884
|
+
* @see onDragEnd
|
|
6885
|
+
*/
|
|
6886
|
+
onDragStart: Survey.Event<() => any, any, any>;
|
|
6866
6887
|
onBeforeDrop: Survey.Event<() => any, any, any>;
|
|
6888
|
+
/**
|
|
6889
|
+
* An event that is raised when users finish dragging a survey element within the design surface.
|
|
6890
|
+
*
|
|
6891
|
+
* Parameters:
|
|
6892
|
+
*
|
|
6893
|
+
* - `sender`: `CreatorBase`\
|
|
6894
|
+
* A Survey Creator instance that raised the event.
|
|
6895
|
+
* - `options.draggedElement`: `any`\
|
|
6896
|
+
* A survey element that was dragged.
|
|
6897
|
+
* - `options.fromElement`: `any`\
|
|
6898
|
+
* A survey element from which `draggedElement` was dragged.
|
|
6899
|
+
* - `options.toElement`: `any`\
|
|
6900
|
+
* A survey element to which `draggedElement` was dragged.
|
|
6901
|
+
*/
|
|
6902
|
+
onDragEnd: Survey.Event<() => any, any, any>;
|
|
6867
6903
|
onAfterDrop: Survey.Event<() => any, any, any>;
|
|
6868
6904
|
private initDragDropSurveyElements;
|
|
6869
6905
|
private initDragDropChoices;
|
|
@@ -7565,6 +7601,7 @@ declare module "property-grid/matrices" {
|
|
|
7565
7601
|
private getSupportedValidators;
|
|
7566
7602
|
}
|
|
7567
7603
|
export class PropertyGridEditorMatrixTriggers extends PropertyGridEditorMatrixMultipleTypes {
|
|
7604
|
+
private getAvailableTriggers;
|
|
7568
7605
|
fit(prop: JsonObjectProperty): boolean;
|
|
7569
7606
|
protected getObjTypeName(): string;
|
|
7570
7607
|
protected getDefaultClassName(prop: JsonObjectProperty): string;
|