@sapui5/ts-types 1.150.1 → 1.152.0
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/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +427 -157
- package/types/sap.f.d.ts +1189 -292
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +2 -222
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +61 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +220 -85
- package/types/sap.fe.navigation.d.ts +3 -2
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +12 -2
- package/types/sap.fe.test.d.ts +3 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +138 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +246 -3
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +957 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +178 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +4 -2
- package/types/sap.ui.core.d.ts +561 -245
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +10393 -8758
- package/types/sap.ui.integration.d.ts +130 -326
- package/types/sap.ui.joule.frontend.d.ts +710 -0
- package/types/sap.ui.layout.d.ts +33 -7
- package/types/sap.ui.mdc.d.ts +36 -8
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +4 -4
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +2 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +160 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +84 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.152.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -232,6 +232,122 @@ declare namespace sap {
|
|
|
232
232
|
static getMetadata(): sap.ui.base.Metadata;
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
|
+
/**
|
|
236
|
+
* Describes the settings that can be provided to the UniversalCollaborationBar constructor.
|
|
237
|
+
*/
|
|
238
|
+
interface $UniversalCollaborationBarSettings
|
|
239
|
+
extends sap.m.$MenuSettings {
|
|
240
|
+
/**
|
|
241
|
+
* Enables or disables the share to email option.
|
|
242
|
+
*/
|
|
243
|
+
shareToEmailEnabled?:
|
|
244
|
+
| boolean
|
|
245
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
246
|
+
| `{${string}}`;
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Enables or disables the share as chat option for Microsoft Teams.
|
|
250
|
+
*/
|
|
251
|
+
shareAsChatEnabled?:
|
|
252
|
+
| boolean
|
|
253
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
254
|
+
| `{${string}}`;
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Enables or disables the share as tab option for Microsoft Teams.
|
|
258
|
+
*/
|
|
259
|
+
shareAsTabEnabled?:
|
|
260
|
+
| boolean
|
|
261
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
262
|
+
| `{${string}}`;
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Enables or disables the share as adaptive card option for Microsoft Teams.
|
|
266
|
+
*/
|
|
267
|
+
shareAsCardEnabled?:
|
|
268
|
+
| boolean
|
|
269
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
270
|
+
| `{${string}}`;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Enables or disables the SAP Collaboration Manager option.
|
|
274
|
+
*/
|
|
275
|
+
shareToCollaborationManagerEnabled?:
|
|
276
|
+
| boolean
|
|
277
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
278
|
+
| `{${string}}`;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* Enables or disables the copy link option.
|
|
282
|
+
*/
|
|
283
|
+
copyLinkEnabled?:
|
|
284
|
+
| boolean
|
|
285
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
286
|
+
| `{${string}}`;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Fired when the user selects the share as chat option.
|
|
290
|
+
*/
|
|
291
|
+
shareToChatSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* Fired when the user selects the share as tab option.
|
|
295
|
+
*/
|
|
296
|
+
shareToTabSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Fired when the user selects the share as adaptive card option.
|
|
300
|
+
*/
|
|
301
|
+
shareAsCardSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Fired when the user selects the copy link option.
|
|
305
|
+
*/
|
|
306
|
+
copyLinkSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* Fired when the user selects the share to email option.
|
|
310
|
+
*/
|
|
311
|
+
shareToEmailSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Fired when the user selects the collaboration manager option.
|
|
315
|
+
*/
|
|
316
|
+
shareToCollaborationManagerSelected?: (
|
|
317
|
+
oEvent: sap.ui.base.Event
|
|
318
|
+
) => void;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
* Parameters of the UniversalCollaborationBar#copyLinkSelected event.
|
|
323
|
+
*/
|
|
324
|
+
interface UniversalCollaborationBar$CopyLinkSelectedEventParameters {}
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Parameters of the UniversalCollaborationBar#shareAsCardSelected event.
|
|
328
|
+
*/
|
|
329
|
+
interface UniversalCollaborationBar$ShareAsCardSelectedEventParameters {}
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* Parameters of the UniversalCollaborationBar#shareToChatSelected event.
|
|
333
|
+
*/
|
|
334
|
+
interface UniversalCollaborationBar$ShareToChatSelectedEventParameters {}
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* Parameters of the UniversalCollaborationBar#shareToCollaborationManagerSelected event.
|
|
338
|
+
*/
|
|
339
|
+
interface UniversalCollaborationBar$ShareToCollaborationManagerSelectedEventParameters {}
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* Parameters of the UniversalCollaborationBar#shareToEmailSelected event.
|
|
343
|
+
*/
|
|
344
|
+
interface UniversalCollaborationBar$ShareToEmailSelectedEventParameters {}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Parameters of the UniversalCollaborationBar#shareToTabSelected event.
|
|
348
|
+
*/
|
|
349
|
+
interface UniversalCollaborationBar$ShareToTabSelectedEventParameters {}
|
|
350
|
+
|
|
235
351
|
/**
|
|
236
352
|
* Service container to get the collaboration type.
|
|
237
353
|
*
|
|
@@ -264,6 +380,800 @@ declare namespace sap {
|
|
|
264
380
|
import("sap/suite/ui/commons/collaboration/BaseHelperService").default
|
|
265
381
|
>;
|
|
266
382
|
}
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* @since 1.152
|
|
386
|
+
*/
|
|
387
|
+
class UniversalCollaborationBar extends sap.m.Menu {
|
|
388
|
+
/**
|
|
389
|
+
* A universal collaboration bar that provides sharing options through Microsoft Teams, email, link and
|
|
390
|
+
* SAP Collaboration Manager.
|
|
391
|
+
*
|
|
392
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
393
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
394
|
+
* of the syntax of the settings object.
|
|
395
|
+
*/
|
|
396
|
+
constructor(
|
|
397
|
+
/**
|
|
398
|
+
* Initial settings for the new control
|
|
399
|
+
*/
|
|
400
|
+
mSettings?: sap.suite.ui.commons.collaboration.$UniversalCollaborationBarSettings
|
|
401
|
+
);
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Creates a new subclass of class sap.suite.ui.commons.collaboration.UniversalCollaborationBar with name
|
|
405
|
+
* `sClassName` and enriches it with the information contained in `oClassInfo`.
|
|
406
|
+
*
|
|
407
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Menu.extend}.
|
|
408
|
+
*
|
|
409
|
+
*
|
|
410
|
+
* @returns Created class / constructor function
|
|
411
|
+
*/
|
|
412
|
+
static extend<T extends Record<string, unknown>>(
|
|
413
|
+
/**
|
|
414
|
+
* Name of the class being created
|
|
415
|
+
*/
|
|
416
|
+
sClassName: string,
|
|
417
|
+
/**
|
|
418
|
+
* Object literal with information about the class
|
|
419
|
+
*/
|
|
420
|
+
oClassInfo?: sap.ClassInfo<
|
|
421
|
+
T,
|
|
422
|
+
sap.suite.ui.commons.collaboration.UniversalCollaborationBar
|
|
423
|
+
>,
|
|
424
|
+
/**
|
|
425
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
426
|
+
* used by this class
|
|
427
|
+
*/
|
|
428
|
+
FNMetaImpl?: Function
|
|
429
|
+
): Function;
|
|
430
|
+
/**
|
|
431
|
+
* Returns a metadata object for class sap.suite.ui.commons.collaboration.UniversalCollaborationBar.
|
|
432
|
+
*
|
|
433
|
+
*
|
|
434
|
+
* @returns Metadata object describing this class
|
|
435
|
+
*/
|
|
436
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
437
|
+
/**
|
|
438
|
+
* Attaches event handler `fnFunction` to the {@link #event:copyLinkSelected copyLinkSelected} event of
|
|
439
|
+
* this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
440
|
+
*
|
|
441
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
442
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
443
|
+
*
|
|
444
|
+
* Fired when the user selects the copy link option.
|
|
445
|
+
*
|
|
446
|
+
*
|
|
447
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
448
|
+
*/
|
|
449
|
+
attachCopyLinkSelected(
|
|
450
|
+
/**
|
|
451
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
452
|
+
* object when firing the event
|
|
453
|
+
*/
|
|
454
|
+
oData: object,
|
|
455
|
+
/**
|
|
456
|
+
* The function to be called when the event occurs
|
|
457
|
+
*/
|
|
458
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
459
|
+
/**
|
|
460
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
461
|
+
* itself
|
|
462
|
+
*/
|
|
463
|
+
oListener?: object
|
|
464
|
+
): this;
|
|
465
|
+
/**
|
|
466
|
+
* Attaches event handler `fnFunction` to the {@link #event:copyLinkSelected copyLinkSelected} event of
|
|
467
|
+
* this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
468
|
+
*
|
|
469
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
470
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
471
|
+
*
|
|
472
|
+
* Fired when the user selects the copy link option.
|
|
473
|
+
*
|
|
474
|
+
*
|
|
475
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
476
|
+
*/
|
|
477
|
+
attachCopyLinkSelected(
|
|
478
|
+
/**
|
|
479
|
+
* The function to be called when the event occurs
|
|
480
|
+
*/
|
|
481
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
482
|
+
/**
|
|
483
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
484
|
+
* itself
|
|
485
|
+
*/
|
|
486
|
+
oListener?: object
|
|
487
|
+
): this;
|
|
488
|
+
/**
|
|
489
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareAsCardSelected shareAsCardSelected} event
|
|
490
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
491
|
+
*
|
|
492
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
493
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
494
|
+
*
|
|
495
|
+
* Fired when the user selects the share as adaptive card option.
|
|
496
|
+
*
|
|
497
|
+
*
|
|
498
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
499
|
+
*/
|
|
500
|
+
attachShareAsCardSelected(
|
|
501
|
+
/**
|
|
502
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
503
|
+
* object when firing the event
|
|
504
|
+
*/
|
|
505
|
+
oData: object,
|
|
506
|
+
/**
|
|
507
|
+
* The function to be called when the event occurs
|
|
508
|
+
*/
|
|
509
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
510
|
+
/**
|
|
511
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
512
|
+
* itself
|
|
513
|
+
*/
|
|
514
|
+
oListener?: object
|
|
515
|
+
): this;
|
|
516
|
+
/**
|
|
517
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareAsCardSelected shareAsCardSelected} event
|
|
518
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
519
|
+
*
|
|
520
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
521
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
522
|
+
*
|
|
523
|
+
* Fired when the user selects the share as adaptive card option.
|
|
524
|
+
*
|
|
525
|
+
*
|
|
526
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
527
|
+
*/
|
|
528
|
+
attachShareAsCardSelected(
|
|
529
|
+
/**
|
|
530
|
+
* The function to be called when the event occurs
|
|
531
|
+
*/
|
|
532
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
533
|
+
/**
|
|
534
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
535
|
+
* itself
|
|
536
|
+
*/
|
|
537
|
+
oListener?: object
|
|
538
|
+
): this;
|
|
539
|
+
/**
|
|
540
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToChatSelected shareToChatSelected} event
|
|
541
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
542
|
+
*
|
|
543
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
544
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
545
|
+
*
|
|
546
|
+
* Fired when the user selects the share as chat option.
|
|
547
|
+
*
|
|
548
|
+
*
|
|
549
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
550
|
+
*/
|
|
551
|
+
attachShareToChatSelected(
|
|
552
|
+
/**
|
|
553
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
554
|
+
* object when firing the event
|
|
555
|
+
*/
|
|
556
|
+
oData: object,
|
|
557
|
+
/**
|
|
558
|
+
* The function to be called when the event occurs
|
|
559
|
+
*/
|
|
560
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
561
|
+
/**
|
|
562
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
563
|
+
* itself
|
|
564
|
+
*/
|
|
565
|
+
oListener?: object
|
|
566
|
+
): this;
|
|
567
|
+
/**
|
|
568
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToChatSelected shareToChatSelected} event
|
|
569
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
570
|
+
*
|
|
571
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
572
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
573
|
+
*
|
|
574
|
+
* Fired when the user selects the share as chat option.
|
|
575
|
+
*
|
|
576
|
+
*
|
|
577
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
578
|
+
*/
|
|
579
|
+
attachShareToChatSelected(
|
|
580
|
+
/**
|
|
581
|
+
* The function to be called when the event occurs
|
|
582
|
+
*/
|
|
583
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
584
|
+
/**
|
|
585
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
586
|
+
* itself
|
|
587
|
+
*/
|
|
588
|
+
oListener?: object
|
|
589
|
+
): this;
|
|
590
|
+
/**
|
|
591
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToCollaborationManagerSelected shareToCollaborationManagerSelected }
|
|
592
|
+
* event of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
593
|
+
*
|
|
594
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
595
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
596
|
+
*
|
|
597
|
+
* Fired when the user selects the collaboration manager option.
|
|
598
|
+
*
|
|
599
|
+
*
|
|
600
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
601
|
+
*/
|
|
602
|
+
attachShareToCollaborationManagerSelected(
|
|
603
|
+
/**
|
|
604
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
605
|
+
* object when firing the event
|
|
606
|
+
*/
|
|
607
|
+
oData: object,
|
|
608
|
+
/**
|
|
609
|
+
* The function to be called when the event occurs
|
|
610
|
+
*/
|
|
611
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
612
|
+
/**
|
|
613
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
614
|
+
* itself
|
|
615
|
+
*/
|
|
616
|
+
oListener?: object
|
|
617
|
+
): this;
|
|
618
|
+
/**
|
|
619
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToCollaborationManagerSelected shareToCollaborationManagerSelected }
|
|
620
|
+
* event of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
621
|
+
*
|
|
622
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
623
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
624
|
+
*
|
|
625
|
+
* Fired when the user selects the collaboration manager option.
|
|
626
|
+
*
|
|
627
|
+
*
|
|
628
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
629
|
+
*/
|
|
630
|
+
attachShareToCollaborationManagerSelected(
|
|
631
|
+
/**
|
|
632
|
+
* The function to be called when the event occurs
|
|
633
|
+
*/
|
|
634
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
635
|
+
/**
|
|
636
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
637
|
+
* itself
|
|
638
|
+
*/
|
|
639
|
+
oListener?: object
|
|
640
|
+
): this;
|
|
641
|
+
/**
|
|
642
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToEmailSelected shareToEmailSelected} event
|
|
643
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
644
|
+
*
|
|
645
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
646
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
647
|
+
*
|
|
648
|
+
* Fired when the user selects the share to email option.
|
|
649
|
+
*
|
|
650
|
+
*
|
|
651
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
652
|
+
*/
|
|
653
|
+
attachShareToEmailSelected(
|
|
654
|
+
/**
|
|
655
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
656
|
+
* object when firing the event
|
|
657
|
+
*/
|
|
658
|
+
oData: object,
|
|
659
|
+
/**
|
|
660
|
+
* The function to be called when the event occurs
|
|
661
|
+
*/
|
|
662
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
663
|
+
/**
|
|
664
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
665
|
+
* itself
|
|
666
|
+
*/
|
|
667
|
+
oListener?: object
|
|
668
|
+
): this;
|
|
669
|
+
/**
|
|
670
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToEmailSelected shareToEmailSelected} event
|
|
671
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
672
|
+
*
|
|
673
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
674
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
675
|
+
*
|
|
676
|
+
* Fired when the user selects the share to email option.
|
|
677
|
+
*
|
|
678
|
+
*
|
|
679
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
680
|
+
*/
|
|
681
|
+
attachShareToEmailSelected(
|
|
682
|
+
/**
|
|
683
|
+
* The function to be called when the event occurs
|
|
684
|
+
*/
|
|
685
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
686
|
+
/**
|
|
687
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
688
|
+
* itself
|
|
689
|
+
*/
|
|
690
|
+
oListener?: object
|
|
691
|
+
): this;
|
|
692
|
+
/**
|
|
693
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToTabSelected shareToTabSelected} event
|
|
694
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
695
|
+
*
|
|
696
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
697
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
698
|
+
*
|
|
699
|
+
* Fired when the user selects the share as tab option.
|
|
700
|
+
*
|
|
701
|
+
*
|
|
702
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
703
|
+
*/
|
|
704
|
+
attachShareToTabSelected(
|
|
705
|
+
/**
|
|
706
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
707
|
+
* object when firing the event
|
|
708
|
+
*/
|
|
709
|
+
oData: object,
|
|
710
|
+
/**
|
|
711
|
+
* The function to be called when the event occurs
|
|
712
|
+
*/
|
|
713
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
714
|
+
/**
|
|
715
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
716
|
+
* itself
|
|
717
|
+
*/
|
|
718
|
+
oListener?: object
|
|
719
|
+
): this;
|
|
720
|
+
/**
|
|
721
|
+
* Attaches event handler `fnFunction` to the {@link #event:shareToTabSelected shareToTabSelected} event
|
|
722
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
723
|
+
*
|
|
724
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
725
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar` itself.
|
|
726
|
+
*
|
|
727
|
+
* Fired when the user selects the share as tab option.
|
|
728
|
+
*
|
|
729
|
+
*
|
|
730
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
731
|
+
*/
|
|
732
|
+
attachShareToTabSelected(
|
|
733
|
+
/**
|
|
734
|
+
* The function to be called when the event occurs
|
|
735
|
+
*/
|
|
736
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
737
|
+
/**
|
|
738
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`
|
|
739
|
+
* itself
|
|
740
|
+
*/
|
|
741
|
+
oListener?: object
|
|
742
|
+
): this;
|
|
743
|
+
/**
|
|
744
|
+
* Detaches event handler `fnFunction` from the {@link #event:copyLinkSelected copyLinkSelected} event of
|
|
745
|
+
* this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
746
|
+
*
|
|
747
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
748
|
+
*
|
|
749
|
+
*
|
|
750
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
751
|
+
*/
|
|
752
|
+
detachCopyLinkSelected(
|
|
753
|
+
/**
|
|
754
|
+
* The function to be called, when the event occurs
|
|
755
|
+
*/
|
|
756
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
757
|
+
/**
|
|
758
|
+
* Context object on which the given function had to be called
|
|
759
|
+
*/
|
|
760
|
+
oListener?: object
|
|
761
|
+
): this;
|
|
762
|
+
/**
|
|
763
|
+
* Detaches event handler `fnFunction` from the {@link #event:shareAsCardSelected shareAsCardSelected} event
|
|
764
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
765
|
+
*
|
|
766
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
767
|
+
*
|
|
768
|
+
*
|
|
769
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
770
|
+
*/
|
|
771
|
+
detachShareAsCardSelected(
|
|
772
|
+
/**
|
|
773
|
+
* The function to be called, when the event occurs
|
|
774
|
+
*/
|
|
775
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
776
|
+
/**
|
|
777
|
+
* Context object on which the given function had to be called
|
|
778
|
+
*/
|
|
779
|
+
oListener?: object
|
|
780
|
+
): this;
|
|
781
|
+
/**
|
|
782
|
+
* Detaches event handler `fnFunction` from the {@link #event:shareToChatSelected shareToChatSelected} event
|
|
783
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
784
|
+
*
|
|
785
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
786
|
+
*
|
|
787
|
+
*
|
|
788
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
789
|
+
*/
|
|
790
|
+
detachShareToChatSelected(
|
|
791
|
+
/**
|
|
792
|
+
* The function to be called, when the event occurs
|
|
793
|
+
*/
|
|
794
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
795
|
+
/**
|
|
796
|
+
* Context object on which the given function had to be called
|
|
797
|
+
*/
|
|
798
|
+
oListener?: object
|
|
799
|
+
): this;
|
|
800
|
+
/**
|
|
801
|
+
* Detaches event handler `fnFunction` from the {@link #event:shareToCollaborationManagerSelected shareToCollaborationManagerSelected }
|
|
802
|
+
* event of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
803
|
+
*
|
|
804
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
805
|
+
*
|
|
806
|
+
*
|
|
807
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
808
|
+
*/
|
|
809
|
+
detachShareToCollaborationManagerSelected(
|
|
810
|
+
/**
|
|
811
|
+
* The function to be called, when the event occurs
|
|
812
|
+
*/
|
|
813
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
814
|
+
/**
|
|
815
|
+
* Context object on which the given function had to be called
|
|
816
|
+
*/
|
|
817
|
+
oListener?: object
|
|
818
|
+
): this;
|
|
819
|
+
/**
|
|
820
|
+
* Detaches event handler `fnFunction` from the {@link #event:shareToEmailSelected shareToEmailSelected }
|
|
821
|
+
* event of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
822
|
+
*
|
|
823
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
824
|
+
*
|
|
825
|
+
*
|
|
826
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
827
|
+
*/
|
|
828
|
+
detachShareToEmailSelected(
|
|
829
|
+
/**
|
|
830
|
+
* The function to be called, when the event occurs
|
|
831
|
+
*/
|
|
832
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
833
|
+
/**
|
|
834
|
+
* Context object on which the given function had to be called
|
|
835
|
+
*/
|
|
836
|
+
oListener?: object
|
|
837
|
+
): this;
|
|
838
|
+
/**
|
|
839
|
+
* Detaches event handler `fnFunction` from the {@link #event:shareToTabSelected shareToTabSelected} event
|
|
840
|
+
* of this `sap.suite.ui.commons.collaboration.UniversalCollaborationBar`.
|
|
841
|
+
*
|
|
842
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
843
|
+
*
|
|
844
|
+
*
|
|
845
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
846
|
+
*/
|
|
847
|
+
detachShareToTabSelected(
|
|
848
|
+
/**
|
|
849
|
+
* The function to be called, when the event occurs
|
|
850
|
+
*/
|
|
851
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
852
|
+
/**
|
|
853
|
+
* Context object on which the given function had to be called
|
|
854
|
+
*/
|
|
855
|
+
oListener?: object
|
|
856
|
+
): this;
|
|
857
|
+
/**
|
|
858
|
+
* Fires event {@link #event:copyLinkSelected copyLinkSelected} to attached listeners.
|
|
859
|
+
*
|
|
860
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
861
|
+
*
|
|
862
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
863
|
+
*/
|
|
864
|
+
fireCopyLinkSelected(
|
|
865
|
+
/**
|
|
866
|
+
* Parameters to pass along with the event
|
|
867
|
+
*/
|
|
868
|
+
mParameters?: object
|
|
869
|
+
): this;
|
|
870
|
+
/**
|
|
871
|
+
* Fires event {@link #event:shareAsCardSelected shareAsCardSelected} to attached listeners.
|
|
872
|
+
*
|
|
873
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
874
|
+
*
|
|
875
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
876
|
+
*/
|
|
877
|
+
fireShareAsCardSelected(
|
|
878
|
+
/**
|
|
879
|
+
* Parameters to pass along with the event
|
|
880
|
+
*/
|
|
881
|
+
mParameters?: object
|
|
882
|
+
): this;
|
|
883
|
+
/**
|
|
884
|
+
* Fires event {@link #event:shareToChatSelected shareToChatSelected} to attached listeners.
|
|
885
|
+
*
|
|
886
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
887
|
+
*
|
|
888
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
889
|
+
*/
|
|
890
|
+
fireShareToChatSelected(
|
|
891
|
+
/**
|
|
892
|
+
* Parameters to pass along with the event
|
|
893
|
+
*/
|
|
894
|
+
mParameters?: object
|
|
895
|
+
): this;
|
|
896
|
+
/**
|
|
897
|
+
* Fires event {@link #event:shareToCollaborationManagerSelected shareToCollaborationManagerSelected} to
|
|
898
|
+
* attached listeners.
|
|
899
|
+
*
|
|
900
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
901
|
+
*
|
|
902
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
903
|
+
*/
|
|
904
|
+
fireShareToCollaborationManagerSelected(
|
|
905
|
+
/**
|
|
906
|
+
* Parameters to pass along with the event
|
|
907
|
+
*/
|
|
908
|
+
mParameters?: object
|
|
909
|
+
): this;
|
|
910
|
+
/**
|
|
911
|
+
* Fires event {@link #event:shareToEmailSelected shareToEmailSelected} to attached listeners.
|
|
912
|
+
*
|
|
913
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
914
|
+
*
|
|
915
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
916
|
+
*/
|
|
917
|
+
fireShareToEmailSelected(
|
|
918
|
+
/**
|
|
919
|
+
* Parameters to pass along with the event
|
|
920
|
+
*/
|
|
921
|
+
mParameters?: object
|
|
922
|
+
): this;
|
|
923
|
+
/**
|
|
924
|
+
* Fires event {@link #event:shareToTabSelected shareToTabSelected} to attached listeners.
|
|
925
|
+
*
|
|
926
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
927
|
+
*
|
|
928
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
929
|
+
*/
|
|
930
|
+
fireShareToTabSelected(
|
|
931
|
+
/**
|
|
932
|
+
* Parameters to pass along with the event
|
|
933
|
+
*/
|
|
934
|
+
mParameters?: object
|
|
935
|
+
): this;
|
|
936
|
+
/**
|
|
937
|
+
* Gets current value of property {@link #getCopyLinkEnabled copyLinkEnabled}.
|
|
938
|
+
*
|
|
939
|
+
* Enables or disables the copy link option.
|
|
940
|
+
*
|
|
941
|
+
* Default value is `true`.
|
|
942
|
+
*
|
|
943
|
+
*
|
|
944
|
+
* @returns Value of property `copyLinkEnabled`
|
|
945
|
+
*/
|
|
946
|
+
getCopyLinkEnabled(): boolean;
|
|
947
|
+
/**
|
|
948
|
+
* Gets current value of property {@link #getShareAsCardEnabled shareAsCardEnabled}.
|
|
949
|
+
*
|
|
950
|
+
* Enables or disables the share as adaptive card option for Microsoft Teams.
|
|
951
|
+
*
|
|
952
|
+
* Default value is `false`.
|
|
953
|
+
*
|
|
954
|
+
*
|
|
955
|
+
* @returns Value of property `shareAsCardEnabled`
|
|
956
|
+
*/
|
|
957
|
+
getShareAsCardEnabled(): boolean;
|
|
958
|
+
/**
|
|
959
|
+
* Gets current value of property {@link #getShareAsChatEnabled shareAsChatEnabled}.
|
|
960
|
+
*
|
|
961
|
+
* Enables or disables the share as chat option for Microsoft Teams.
|
|
962
|
+
*
|
|
963
|
+
* Default value is `false`.
|
|
964
|
+
*
|
|
965
|
+
*
|
|
966
|
+
* @returns Value of property `shareAsChatEnabled`
|
|
967
|
+
*/
|
|
968
|
+
getShareAsChatEnabled(): boolean;
|
|
969
|
+
/**
|
|
970
|
+
* Gets current value of property {@link #getShareAsTabEnabled shareAsTabEnabled}.
|
|
971
|
+
*
|
|
972
|
+
* Enables or disables the share as tab option for Microsoft Teams.
|
|
973
|
+
*
|
|
974
|
+
* Default value is `false`.
|
|
975
|
+
*
|
|
976
|
+
*
|
|
977
|
+
* @returns Value of property `shareAsTabEnabled`
|
|
978
|
+
*/
|
|
979
|
+
getShareAsTabEnabled(): boolean;
|
|
980
|
+
/**
|
|
981
|
+
* Gets current value of property {@link #getShareToCollaborationManagerEnabled shareToCollaborationManagerEnabled}.
|
|
982
|
+
*
|
|
983
|
+
* Enables or disables the SAP Collaboration Manager option.
|
|
984
|
+
*
|
|
985
|
+
* Default value is `false`.
|
|
986
|
+
*
|
|
987
|
+
*
|
|
988
|
+
* @returns Value of property `shareToCollaborationManagerEnabled`
|
|
989
|
+
*/
|
|
990
|
+
getShareToCollaborationManagerEnabled(): boolean;
|
|
991
|
+
/**
|
|
992
|
+
* Gets current value of property {@link #getShareToEmailEnabled shareToEmailEnabled}.
|
|
993
|
+
*
|
|
994
|
+
* Enables or disables the share to email option.
|
|
995
|
+
*
|
|
996
|
+
* Default value is `true`.
|
|
997
|
+
*
|
|
998
|
+
*
|
|
999
|
+
* @returns Value of property `shareToEmailEnabled`
|
|
1000
|
+
*/
|
|
1001
|
+
getShareToEmailEnabled(): boolean;
|
|
1002
|
+
/**
|
|
1003
|
+
* Opens the menu.
|
|
1004
|
+
*
|
|
1005
|
+
*
|
|
1006
|
+
* @returns The menu instance.
|
|
1007
|
+
*/
|
|
1008
|
+
openBy(
|
|
1009
|
+
/**
|
|
1010
|
+
* The control that opens the menu.
|
|
1011
|
+
*/
|
|
1012
|
+
oControl: sap.ui.core.Control
|
|
1013
|
+
): this;
|
|
1014
|
+
/**
|
|
1015
|
+
* Sets a new value for property {@link #getCopyLinkEnabled copyLinkEnabled}.
|
|
1016
|
+
*
|
|
1017
|
+
* Enables or disables the copy link option.
|
|
1018
|
+
*
|
|
1019
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1020
|
+
*
|
|
1021
|
+
* Default value is `true`.
|
|
1022
|
+
*
|
|
1023
|
+
*
|
|
1024
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1025
|
+
*/
|
|
1026
|
+
setCopyLinkEnabled(
|
|
1027
|
+
/**
|
|
1028
|
+
* New value for property `copyLinkEnabled`
|
|
1029
|
+
*/
|
|
1030
|
+
bCopyLinkEnabled?: boolean
|
|
1031
|
+
): this;
|
|
1032
|
+
/**
|
|
1033
|
+
* Sets a new value for property {@link #getShareAsCardEnabled shareAsCardEnabled}.
|
|
1034
|
+
*
|
|
1035
|
+
* Enables or disables the share as adaptive card option for Microsoft Teams.
|
|
1036
|
+
*
|
|
1037
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1038
|
+
*
|
|
1039
|
+
* Default value is `false`.
|
|
1040
|
+
*
|
|
1041
|
+
*
|
|
1042
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1043
|
+
*/
|
|
1044
|
+
setShareAsCardEnabled(
|
|
1045
|
+
/**
|
|
1046
|
+
* New value for property `shareAsCardEnabled`
|
|
1047
|
+
*/
|
|
1048
|
+
bShareAsCardEnabled?: boolean
|
|
1049
|
+
): this;
|
|
1050
|
+
/**
|
|
1051
|
+
* Sets a new value for property {@link #getShareAsChatEnabled shareAsChatEnabled}.
|
|
1052
|
+
*
|
|
1053
|
+
* Enables or disables the share as chat option for Microsoft Teams.
|
|
1054
|
+
*
|
|
1055
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1056
|
+
*
|
|
1057
|
+
* Default value is `false`.
|
|
1058
|
+
*
|
|
1059
|
+
*
|
|
1060
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1061
|
+
*/
|
|
1062
|
+
setShareAsChatEnabled(
|
|
1063
|
+
/**
|
|
1064
|
+
* New value for property `shareAsChatEnabled`
|
|
1065
|
+
*/
|
|
1066
|
+
bShareAsChatEnabled?: boolean
|
|
1067
|
+
): this;
|
|
1068
|
+
/**
|
|
1069
|
+
* Sets a new value for property {@link #getShareAsTabEnabled shareAsTabEnabled}.
|
|
1070
|
+
*
|
|
1071
|
+
* Enables or disables the share as tab option for Microsoft Teams.
|
|
1072
|
+
*
|
|
1073
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1074
|
+
*
|
|
1075
|
+
* Default value is `false`.
|
|
1076
|
+
*
|
|
1077
|
+
*
|
|
1078
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1079
|
+
*/
|
|
1080
|
+
setShareAsTabEnabled(
|
|
1081
|
+
/**
|
|
1082
|
+
* New value for property `shareAsTabEnabled`
|
|
1083
|
+
*/
|
|
1084
|
+
bShareAsTabEnabled?: boolean
|
|
1085
|
+
): this;
|
|
1086
|
+
/**
|
|
1087
|
+
* Sets a new value for property {@link #getShareToCollaborationManagerEnabled shareToCollaborationManagerEnabled}.
|
|
1088
|
+
*
|
|
1089
|
+
* Enables or disables the SAP Collaboration Manager option.
|
|
1090
|
+
*
|
|
1091
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1092
|
+
*
|
|
1093
|
+
* Default value is `false`.
|
|
1094
|
+
*
|
|
1095
|
+
*
|
|
1096
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1097
|
+
*/
|
|
1098
|
+
setShareToCollaborationManagerEnabled(
|
|
1099
|
+
/**
|
|
1100
|
+
* New value for property `shareToCollaborationManagerEnabled`
|
|
1101
|
+
*/
|
|
1102
|
+
bShareToCollaborationManagerEnabled?: boolean
|
|
1103
|
+
): this;
|
|
1104
|
+
/**
|
|
1105
|
+
* Sets a new value for property {@link #getShareToEmailEnabled shareToEmailEnabled}.
|
|
1106
|
+
*
|
|
1107
|
+
* Enables or disables the share to email option.
|
|
1108
|
+
*
|
|
1109
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1110
|
+
*
|
|
1111
|
+
* Default value is `true`.
|
|
1112
|
+
*
|
|
1113
|
+
*
|
|
1114
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1115
|
+
*/
|
|
1116
|
+
setShareToEmailEnabled(
|
|
1117
|
+
/**
|
|
1118
|
+
* New value for property `shareToEmailEnabled`
|
|
1119
|
+
*/
|
|
1120
|
+
bShareToEmailEnabled?: boolean
|
|
1121
|
+
): this;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
/**
|
|
1125
|
+
* Event object of the UniversalCollaborationBar#copyLinkSelected event.
|
|
1126
|
+
*/
|
|
1127
|
+
type UniversalCollaborationBar$CopyLinkSelectedEvent =
|
|
1128
|
+
sap.ui.base.Event<
|
|
1129
|
+
UniversalCollaborationBar$CopyLinkSelectedEventParameters,
|
|
1130
|
+
UniversalCollaborationBar
|
|
1131
|
+
>;
|
|
1132
|
+
|
|
1133
|
+
/**
|
|
1134
|
+
* Event object of the UniversalCollaborationBar#shareAsCardSelected event.
|
|
1135
|
+
*/
|
|
1136
|
+
type UniversalCollaborationBar$ShareAsCardSelectedEvent =
|
|
1137
|
+
sap.ui.base.Event<
|
|
1138
|
+
UniversalCollaborationBar$ShareAsCardSelectedEventParameters,
|
|
1139
|
+
UniversalCollaborationBar
|
|
1140
|
+
>;
|
|
1141
|
+
|
|
1142
|
+
/**
|
|
1143
|
+
* Event object of the UniversalCollaborationBar#shareToChatSelected event.
|
|
1144
|
+
*/
|
|
1145
|
+
type UniversalCollaborationBar$ShareToChatSelectedEvent =
|
|
1146
|
+
sap.ui.base.Event<
|
|
1147
|
+
UniversalCollaborationBar$ShareToChatSelectedEventParameters,
|
|
1148
|
+
UniversalCollaborationBar
|
|
1149
|
+
>;
|
|
1150
|
+
|
|
1151
|
+
/**
|
|
1152
|
+
* Event object of the UniversalCollaborationBar#shareToCollaborationManagerSelected event.
|
|
1153
|
+
*/
|
|
1154
|
+
type UniversalCollaborationBar$ShareToCollaborationManagerSelectedEvent =
|
|
1155
|
+
sap.ui.base.Event<
|
|
1156
|
+
UniversalCollaborationBar$ShareToCollaborationManagerSelectedEventParameters,
|
|
1157
|
+
UniversalCollaborationBar
|
|
1158
|
+
>;
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* Event object of the UniversalCollaborationBar#shareToEmailSelected event.
|
|
1162
|
+
*/
|
|
1163
|
+
type UniversalCollaborationBar$ShareToEmailSelectedEvent =
|
|
1164
|
+
sap.ui.base.Event<
|
|
1165
|
+
UniversalCollaborationBar$ShareToEmailSelectedEventParameters,
|
|
1166
|
+
UniversalCollaborationBar
|
|
1167
|
+
>;
|
|
1168
|
+
|
|
1169
|
+
/**
|
|
1170
|
+
* Event object of the UniversalCollaborationBar#shareToTabSelected event.
|
|
1171
|
+
*/
|
|
1172
|
+
type UniversalCollaborationBar$ShareToTabSelectedEvent =
|
|
1173
|
+
sap.ui.base.Event<
|
|
1174
|
+
UniversalCollaborationBar$ShareToTabSelectedEventParameters,
|
|
1175
|
+
UniversalCollaborationBar
|
|
1176
|
+
>;
|
|
267
1177
|
}
|
|
268
1178
|
|
|
269
1179
|
namespace imageeditor {
|
|
@@ -5346,6 +6256,17 @@ declare namespace sap {
|
|
|
5346
6256
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5347
6257
|
| `{${string}}`;
|
|
5348
6258
|
|
|
6259
|
+
/**
|
|
6260
|
+
* Enables enhanced line routing for the network graph. When set to `true`, overlapping connections are
|
|
6261
|
+
* visually separated.
|
|
6262
|
+
*
|
|
6263
|
+
* @since 1.151
|
|
6264
|
+
*/
|
|
6265
|
+
enableEnhancedLineRouting?:
|
|
6266
|
+
| boolean
|
|
6267
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6268
|
+
| `{${string}}`;
|
|
6269
|
+
|
|
5349
6270
|
/**
|
|
5350
6271
|
* Holds the lines to be displayed in the graph.
|
|
5351
6272
|
*/
|
|
@@ -8451,6 +9372,19 @@ declare namespace sap {
|
|
|
8451
9372
|
* @returns Current zoom level
|
|
8452
9373
|
*/
|
|
8453
9374
|
getCurrentZoomLevel(): number;
|
|
9375
|
+
/**
|
|
9376
|
+
* Gets current value of property {@link #getEnableEnhancedLineRouting enableEnhancedLineRouting}.
|
|
9377
|
+
*
|
|
9378
|
+
* Enables enhanced line routing for the network graph. When set to `true`, overlapping connections are
|
|
9379
|
+
* visually separated.
|
|
9380
|
+
*
|
|
9381
|
+
* Default value is `true`.
|
|
9382
|
+
*
|
|
9383
|
+
* @since 1.151
|
|
9384
|
+
*
|
|
9385
|
+
* @returns Value of property `enableEnhancedLineRouting`
|
|
9386
|
+
*/
|
|
9387
|
+
getEnableEnhancedLineRouting(): boolean;
|
|
8454
9388
|
/**
|
|
8455
9389
|
* Gets current value of property {@link #getEnableWheelZoom enableWheelZoom}.
|
|
8456
9390
|
*
|
|
@@ -9064,6 +9998,26 @@ declare namespace sap {
|
|
|
9064
9998
|
isGroup: boolean;
|
|
9065
9999
|
}
|
|
9066
10000
|
): void;
|
|
10001
|
+
/**
|
|
10002
|
+
* Sets a new value for property {@link #getEnableEnhancedLineRouting enableEnhancedLineRouting}.
|
|
10003
|
+
*
|
|
10004
|
+
* Enables enhanced line routing for the network graph. When set to `true`, overlapping connections are
|
|
10005
|
+
* visually separated.
|
|
10006
|
+
*
|
|
10007
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10008
|
+
*
|
|
10009
|
+
* Default value is `true`.
|
|
10010
|
+
*
|
|
10011
|
+
* @since 1.151
|
|
10012
|
+
*
|
|
10013
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
10014
|
+
*/
|
|
10015
|
+
setEnableEnhancedLineRouting(
|
|
10016
|
+
/**
|
|
10017
|
+
* New value for property `enableEnhancedLineRouting`
|
|
10018
|
+
*/
|
|
10019
|
+
bEnableEnhancedLineRouting?: boolean
|
|
10020
|
+
): this;
|
|
9067
10021
|
/**
|
|
9068
10022
|
* Sets a new value for property {@link #getEnableWheelZoom enableWheelZoom}.
|
|
9069
10023
|
*
|
|
@@ -52710,6 +53664,8 @@ declare namespace sap {
|
|
|
52710
53664
|
|
|
52711
53665
|
"sap/suite/ui/commons/collaboration/TeamsHelperService": undefined;
|
|
52712
53666
|
|
|
53667
|
+
"sap/suite/ui/commons/collaboration/UniversalCollaborationBar": undefined;
|
|
53668
|
+
|
|
52713
53669
|
"sap/suite/ui/commons/ColumnData": undefined;
|
|
52714
53670
|
|
|
52715
53671
|
"sap/suite/ui/commons/ColumnMicroChart": undefined;
|