@choiceform/os-client-core 3.4.1 → 3.4.2
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/changelog.md +4 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1509,27 +1509,27 @@ declare const enum RICH_NODE_NAME {
|
|
|
1509
1509
|
/**
|
|
1510
1510
|
* span
|
|
1511
1511
|
*/
|
|
1512
|
-
SPAN = '
|
|
1512
|
+
SPAN = 'SPAN',
|
|
1513
1513
|
/**
|
|
1514
1514
|
* div
|
|
1515
1515
|
*/
|
|
1516
|
-
DIV = '
|
|
1516
|
+
DIV = 'DIV',
|
|
1517
1517
|
/**
|
|
1518
1518
|
* script
|
|
1519
1519
|
*/
|
|
1520
|
-
SCRIPT = '
|
|
1520
|
+
SCRIPT = 'SCRIPT',
|
|
1521
1521
|
/**
|
|
1522
1522
|
* ol
|
|
1523
1523
|
*/
|
|
1524
|
-
OL = '
|
|
1524
|
+
OL = 'OL',
|
|
1525
1525
|
/**
|
|
1526
1526
|
* ul
|
|
1527
1527
|
*/
|
|
1528
|
-
UL = '
|
|
1528
|
+
UL = 'UL',
|
|
1529
1529
|
/**
|
|
1530
1530
|
* br
|
|
1531
1531
|
*/
|
|
1532
|
-
BR = '
|
|
1532
|
+
BR = 'BR',
|
|
1533
1533
|
}
|
|
1534
1534
|
|
|
1535
1535
|
/**
|