Skip to content

Commit 19f1235

Browse files
committed
update test\...\globals
1 parent 836666e commit 19f1235

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

test/deployment/globals/loadGlobals.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ window.loadGlobals = function loadGlobals() {
1414
window.RadioButton = jsPDF.AcroFormRadioButton;
1515
window.CheckBox = jsPDF.AcroFormCheckBox;
1616
window.TextField = jsPDF.AcroFormTextField;
17+
window.TextFieldParent = jsPDF.AcroFormTextFieldParent;
1718
window.PasswordField = jsPDF.AcroFormPasswordField;
1819
window.Appearance = jsPDF.AcroFormAppearance;
1920
window.Canvg = window.canvg.Canvg;

test/deployment/node/loadGlobals.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ global.loadGlobals = function() {
1515
global.PushButton = jsPDF.AcroFormPushButton;
1616
global.RadioButton = jsPDF.AcroFormRadioButton;
1717
global.CheckBox = jsPDF.AcroFormCheckBox;
18+
global.TextFieldParent = jsPDF.AcroFormTextFieldParent;
1819
global.TextField = jsPDF.AcroFormTextField;
1920
global.PasswordField = jsPDF.AcroFormPasswordField;
2021
global.Appearance = jsPDF.AcroFormAppearance;

test/saucelabs/loadGlobals.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ window.loadGlobals = function loadGlobals() {
1414
window.RadioButton = jsPDF.AcroFormRadioButton;
1515
window.CheckBox = jsPDF.AcroFormCheckBox;
1616
window.TextField = jsPDF.AcroFormTextField;
17+
window.TextFieldParent = jsPDF.AcroFormTextFieldParent;
1718
window.PasswordField = jsPDF.AcroFormPasswordField;
1819
window.Appearance = jsPDF.AcroFormAppearance;
1920
window.Canvg = window.canvg.Canvg;

test/unit/asyncImportHelper.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
AcroFormRadioButton,
1111
AcroFormCheckBox,
1212
AcroFormTextField,
13+
AcroFormTextFieldParent,
1314
AcroFormPasswordField,
1415
AcroFormAppearance
1516
} from "/base/src/index.js";
@@ -26,6 +27,7 @@ window.importsReady({
2627
AcroFormRadioButton,
2728
AcroFormCheckBox,
2829
AcroFormTextField,
30+
AcroFormTextFieldParent,
2931
AcroFormPasswordField,
3032
AcroFormAppearance
3133
});

test/unit/loadGlobals.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ window.loadGlobals = async function loadGlobals() {
2222
window.RadioButton = jsPDF.AcroFormRadioButton;
2323
window.CheckBox = jsPDF.AcroFormCheckBox;
2424
window.TextField = jsPDF.AcroFormTextField;
25+
window.TextFieldParent = jsPDF.AcroFormTextFieldParent;
2526
window.PasswordField = jsPDF.AcroFormPasswordField;
2627
window.Appearance = jsPDF.AcroFormAppearance;
2728
window.Canvg = window.canvg.Canvg;

0 commit comments

Comments
 (0)