fit-ui 2.8.3 → 2.8.4
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/dist/Documentation.html +1 -1
- package/dist/Fit.UI.js +9 -7
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +11 -1
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -4321,7 +4321,7 @@ declare namespace Fit
|
|
|
4321
4321
|
|
|
4322
4322
|
The data eventuelly results in a tag being added to the editor with the following format:
|
|
4323
4323
|
Tag name 1
|
|
4324
|
-
The data-tag-data
|
|
4324
|
+
The data-tag-data and data-tag-context attributes are only declared if the corresponding Data and Context properties are defined in data.
|
|
4325
4325
|
* @member {string} QueryUrl
|
|
4326
4326
|
*/
|
|
4327
4327
|
QueryUrl:string;
|
|
@@ -4455,6 +4455,11 @@ declare namespace Fit
|
|
|
4455
4455
|
{
|
|
4456
4456
|
// Properties defined by Fit.Controls.InputTypeDefs.DesignModeTagsOnResponseJsonTag
|
|
4457
4457
|
/**
|
|
4458
|
+
* Optional context information to associate with tag.
|
|
4459
|
+
* @member {string} [Context=undefined]
|
|
4460
|
+
*/
|
|
4461
|
+
Context?:string;
|
|
4462
|
+
/**
|
|
4458
4463
|
* Optional data to associate with tag.
|
|
4459
4464
|
* @member {string} [Data=undefined]
|
|
4460
4465
|
*/
|
|
@@ -4511,6 +4516,11 @@ declare namespace Fit
|
|
|
4511
4516
|
{
|
|
4512
4517
|
// Properties defined by Fit.Controls.InputTypeDefs.DesignModeTagsTagCreatorReturnType
|
|
4513
4518
|
/**
|
|
4519
|
+
* Optional tag context.
|
|
4520
|
+
* @member {string} [Context=undefined]
|
|
4521
|
+
*/
|
|
4522
|
+
Context?:string;
|
|
4523
|
+
/**
|
|
4514
4524
|
* Optional tag data.
|
|
4515
4525
|
* @member {string} [Data=undefined]
|
|
4516
4526
|
*/
|