@sassoftware/vi-api 1.15.2 → 1.40.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/alert-reps/index.d.ts +681 -0
- package/alert-reps/package.json +5 -0
- package/api.module.js +2 -0
- package/component/bindings.d.ts +5 -1
- package/component/index.d.ts +3 -1
- package/component/index.js +1 -0
- package/config/config-api.d.ts +50 -17
- package/control/control-api.d.ts +11 -0
- package/control/data-types.d.ts +7 -6
- package/control/data-types.js +1 -1
- package/control/events.d.ts +2 -2
- package/control/restrictions.d.ts +2 -2
- package/event/event-api.d.ts +3 -0
- package/event/event-api.js +4 -0
- package/index.d.ts +4 -2
- package/localization/localization-api.d.ts +38 -24
- package/metadata/metadata-api.d.ts +2 -2
- package/object/object-api.d.ts +38 -3
- package/package.json +1 -1
- package/page-model/page-model-api.d.ts +9 -6
- package/page-template/package.json +9 -0
- package/page-template/page-template-api.d.ts +40 -0
- package/page-template/page-template-api.js +1 -0
- package/page-template/public-api.d.ts +1 -0
- package/page-template/public-api.js +1 -0
- package/property/property-api.d.ts +2 -2
- package/score-reps/index.d.ts +133 -0
- package/score-reps/package.json +5 -0
- package/search/client/client-search-api.d.ts +17 -16
- package/sheet/sheet-api.d.ts +1 -1
- package/shell-tabs/shell-tabs-api.d.ts +76 -36
- package/shell-tabs/shell-tabs-lifecycle-api.d.ts +4 -4
- package/svi-datahub/index.d.ts +4667 -0
- package/svi-datahub/package.json +5 -0
- package/svi-sand/index.d.ts +1081 -0
- package/svi-sand/package.json +5 -0
- package/tab/tab-api.d.ts +9 -0
package/tab/tab-api.d.ts
CHANGED
|
@@ -14,6 +14,15 @@ export interface TabApi {
|
|
|
14
14
|
* @return A Promise that resolves when the tab is opened.
|
|
15
15
|
*/
|
|
16
16
|
openTab(objectType: string, objectId: string, suppressNavigation?: boolean, mode?: PageModeEvent): Promise<void>;
|
|
17
|
+
/**
|
|
18
|
+
* @method
|
|
19
|
+
* @description Close the tab of a specified object.
|
|
20
|
+
* @param objectType {string} Type of the object to be closed.
|
|
21
|
+
* @param objectId {string} ID of the object to be closed.
|
|
22
|
+
* @return A Promise resolving once the tab has been successfully removed (resolves to true)
|
|
23
|
+
* or once the tab could not be removed or found (resolving to false).
|
|
24
|
+
*/
|
|
25
|
+
closeTab(objectType: string, objectId: string): Promise<boolean>;
|
|
17
26
|
/**
|
|
18
27
|
* @method
|
|
19
28
|
* @description Checks to see if an open tab is dirty.
|