@sapui5/ts-types 1.135.0 → 1.136.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/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.cux.home.d.ts +80 -0
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +105 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +30 -2
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +421 -47
- package/types/sap.fe.navigation.d.ts +1 -1
- 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 +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +78 -8
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +497 -32
- 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 +4 -4
- package/types/sap.suite.ui.commons.d.ts +12 -1
- package/types/sap.suite.ui.generic.template.d.ts +8 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -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 +3474 -380
- package/types/sap.ui.core.d.ts +108 -111
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -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.integration.d.ts +2 -2
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +127 -8
- package/types/sap.ui.richtexteditor.d.ts +8 -6
- package/types/sap.ui.rta.d.ts +1 -1
- 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 +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +11 -31
- 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 +295 -25
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +46 -37
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +2 -21
- 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
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1884,7 +1884,7 @@ declare namespace sap {
|
|
|
1884
1884
|
/**
|
|
1885
1885
|
* Indicator to retrieve the complete visibility definition or just the difference.
|
|
1886
1886
|
*/
|
|
1887
|
-
mode?: sap.ui.vk.VisibilityMode;
|
|
1887
|
+
mode?: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
1888
1888
|
};
|
|
1889
1889
|
}
|
|
1890
1890
|
): object;
|
|
@@ -2126,7 +2126,7 @@ declare namespace sap {
|
|
|
2126
2126
|
* fields are defined. If the mode equals {@link sap.ui.vk.VisibilityMode.Differences differences} then
|
|
2127
2127
|
* the changes field is defined.
|
|
2128
2128
|
*/
|
|
2129
|
-
mode: sap.ui.vk.VisibilityMode;
|
|
2129
|
+
mode: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
2130
2130
|
/**
|
|
2131
2131
|
* List of Ids of visible nodes.
|
|
2132
2132
|
*/
|
|
@@ -2556,6 +2556,253 @@ declare namespace sap {
|
|
|
2556
2556
|
>;
|
|
2557
2557
|
}
|
|
2558
2558
|
|
|
2559
|
+
namespace ecad {
|
|
2560
|
+
/**
|
|
2561
|
+
* Describes the settings that can be provided to the LayersPanel constructor.
|
|
2562
|
+
*/
|
|
2563
|
+
interface $LayersPanelSettings extends sap.ui.core.$ControlSettings {
|
|
2564
|
+
content?: sap.m.ScrollContainer;
|
|
2565
|
+
|
|
2566
|
+
/**
|
|
2567
|
+
* An association to the `ContentConnector` instance that manages content resources.
|
|
2568
|
+
*/
|
|
2569
|
+
contentConnector?: sap.ui.vk.ContentConnector | string;
|
|
2570
|
+
|
|
2571
|
+
/**
|
|
2572
|
+
* An association to the `ViewStateManager` instance.
|
|
2573
|
+
*/
|
|
2574
|
+
viewStateManager?: sap.ui.vk.ViewStateManagerBase | string;
|
|
2575
|
+
|
|
2576
|
+
/**
|
|
2577
|
+
* This event will be fired when content is replaced.
|
|
2578
|
+
*/
|
|
2579
|
+
contentChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
/**
|
|
2583
|
+
* Parameters of the LayersPanel#contentChanged event.
|
|
2584
|
+
*/
|
|
2585
|
+
interface LayersPanel$ContentChangedEventParameters {}
|
|
2586
|
+
|
|
2587
|
+
/**
|
|
2588
|
+
* Provides a flat list view of all the ECAD layers in a given scene in table format.
|
|
2589
|
+
*
|
|
2590
|
+
* @since 1.136.0
|
|
2591
|
+
*/
|
|
2592
|
+
class LayersPanel extends sap.ui.core.Control {
|
|
2593
|
+
/**
|
|
2594
|
+
* Constructor for a new LayersPanel.
|
|
2595
|
+
*
|
|
2596
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2597
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2598
|
+
* of the syntax of the settings object.
|
|
2599
|
+
*/
|
|
2600
|
+
constructor(
|
|
2601
|
+
/**
|
|
2602
|
+
* initial settings for the new control
|
|
2603
|
+
*/
|
|
2604
|
+
mSettings?: sap.ui.vk.ecad.$LayersPanelSettings
|
|
2605
|
+
);
|
|
2606
|
+
/**
|
|
2607
|
+
* Constructor for a new LayersPanel.
|
|
2608
|
+
*
|
|
2609
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2610
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2611
|
+
* of the syntax of the settings object.
|
|
2612
|
+
*/
|
|
2613
|
+
constructor(
|
|
2614
|
+
/**
|
|
2615
|
+
* id for the new control, generated automatically if no id is given
|
|
2616
|
+
*/
|
|
2617
|
+
sId?: string,
|
|
2618
|
+
/**
|
|
2619
|
+
* initial settings for the new control
|
|
2620
|
+
*/
|
|
2621
|
+
mSettings?: sap.ui.vk.ecad.$LayersPanelSettings
|
|
2622
|
+
);
|
|
2623
|
+
|
|
2624
|
+
/**
|
|
2625
|
+
* Creates a new subclass of class sap.ui.vk.ecad.LayersPanel with name `sClassName` and enriches it with
|
|
2626
|
+
* the information contained in `oClassInfo`.
|
|
2627
|
+
*
|
|
2628
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2629
|
+
*
|
|
2630
|
+
*
|
|
2631
|
+
* @returns Created class / constructor function
|
|
2632
|
+
*/
|
|
2633
|
+
static extend<T extends Record<string, unknown>>(
|
|
2634
|
+
/**
|
|
2635
|
+
* Name of the class being created
|
|
2636
|
+
*/
|
|
2637
|
+
sClassName: string,
|
|
2638
|
+
/**
|
|
2639
|
+
* Object literal with information about the class
|
|
2640
|
+
*/
|
|
2641
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vk.ecad.LayersPanel>,
|
|
2642
|
+
/**
|
|
2643
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2644
|
+
* used by this class
|
|
2645
|
+
*/
|
|
2646
|
+
FNMetaImpl?: Function
|
|
2647
|
+
): Function;
|
|
2648
|
+
/**
|
|
2649
|
+
* Returns a metadata object for class sap.ui.vk.ecad.LayersPanel.
|
|
2650
|
+
*
|
|
2651
|
+
*
|
|
2652
|
+
* @returns Metadata object describing this class
|
|
2653
|
+
*/
|
|
2654
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2655
|
+
/**
|
|
2656
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
2657
|
+
* `sap.ui.vk.ecad.LayersPanel`.
|
|
2658
|
+
*
|
|
2659
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2660
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.LayersPanel` itself.
|
|
2661
|
+
*
|
|
2662
|
+
* This event will be fired when content is replaced.
|
|
2663
|
+
*
|
|
2664
|
+
*
|
|
2665
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2666
|
+
*/
|
|
2667
|
+
attachContentChanged(
|
|
2668
|
+
/**
|
|
2669
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2670
|
+
* object when firing the event
|
|
2671
|
+
*/
|
|
2672
|
+
oData: object,
|
|
2673
|
+
/**
|
|
2674
|
+
* The function to be called when the event occurs
|
|
2675
|
+
*/
|
|
2676
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2677
|
+
/**
|
|
2678
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.LayersPanel` itself
|
|
2679
|
+
*/
|
|
2680
|
+
oListener?: object
|
|
2681
|
+
): this;
|
|
2682
|
+
/**
|
|
2683
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
2684
|
+
* `sap.ui.vk.ecad.LayersPanel`.
|
|
2685
|
+
*
|
|
2686
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2687
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.LayersPanel` itself.
|
|
2688
|
+
*
|
|
2689
|
+
* This event will be fired when content is replaced.
|
|
2690
|
+
*
|
|
2691
|
+
*
|
|
2692
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2693
|
+
*/
|
|
2694
|
+
attachContentChanged(
|
|
2695
|
+
/**
|
|
2696
|
+
* The function to be called when the event occurs
|
|
2697
|
+
*/
|
|
2698
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2699
|
+
/**
|
|
2700
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.LayersPanel` itself
|
|
2701
|
+
*/
|
|
2702
|
+
oListener?: object
|
|
2703
|
+
): this;
|
|
2704
|
+
/**
|
|
2705
|
+
* Destroys the content in the aggregation {@link #getContent content}.
|
|
2706
|
+
*
|
|
2707
|
+
*
|
|
2708
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2709
|
+
*/
|
|
2710
|
+
destroyContent(): this;
|
|
2711
|
+
/**
|
|
2712
|
+
* Detaches event handler `fnFunction` from the {@link #event:contentChanged contentChanged} event of this
|
|
2713
|
+
* `sap.ui.vk.ecad.LayersPanel`.
|
|
2714
|
+
*
|
|
2715
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2716
|
+
*
|
|
2717
|
+
*
|
|
2718
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2719
|
+
*/
|
|
2720
|
+
detachContentChanged(
|
|
2721
|
+
/**
|
|
2722
|
+
* The function to be called, when the event occurs
|
|
2723
|
+
*/
|
|
2724
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2725
|
+
/**
|
|
2726
|
+
* Context object on which the given function had to be called
|
|
2727
|
+
*/
|
|
2728
|
+
oListener?: object
|
|
2729
|
+
): this;
|
|
2730
|
+
/**
|
|
2731
|
+
* Fires event {@link #event:contentChanged contentChanged} to attached listeners.
|
|
2732
|
+
*
|
|
2733
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2734
|
+
*
|
|
2735
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2736
|
+
*/
|
|
2737
|
+
fireContentChanged(
|
|
2738
|
+
/**
|
|
2739
|
+
* Parameters to pass along with the event
|
|
2740
|
+
*/
|
|
2741
|
+
mParameters?: object
|
|
2742
|
+
): this;
|
|
2743
|
+
/**
|
|
2744
|
+
* Gets content of aggregation {@link #getContent content}.
|
|
2745
|
+
*/
|
|
2746
|
+
getContent(): sap.m.ScrollContainer;
|
|
2747
|
+
/**
|
|
2748
|
+
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
2749
|
+
* or `null`.
|
|
2750
|
+
*/
|
|
2751
|
+
getContentConnector(): sap.ui.core.ID | null;
|
|
2752
|
+
/**
|
|
2753
|
+
* ID of the element which is the current target of the association {@link #getViewStateManager viewStateManager},
|
|
2754
|
+
* or `null`.
|
|
2755
|
+
*/
|
|
2756
|
+
getViewStateManager(): sap.ui.core.ID | null;
|
|
2757
|
+
/**
|
|
2758
|
+
* Sets the aggregated {@link #getContent content}.
|
|
2759
|
+
*
|
|
2760
|
+
*
|
|
2761
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2762
|
+
*/
|
|
2763
|
+
setContent(
|
|
2764
|
+
/**
|
|
2765
|
+
* The content to set
|
|
2766
|
+
*/
|
|
2767
|
+
oContent: sap.m.ScrollContainer
|
|
2768
|
+
): this;
|
|
2769
|
+
/**
|
|
2770
|
+
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
2771
|
+
*
|
|
2772
|
+
*
|
|
2773
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2774
|
+
*/
|
|
2775
|
+
setContentConnector(
|
|
2776
|
+
/**
|
|
2777
|
+
* ID of an element which becomes the new target of this contentConnector association; alternatively, an
|
|
2778
|
+
* element instance may be given
|
|
2779
|
+
*/
|
|
2780
|
+
oContentConnector: sap.ui.core.ID | sap.ui.vk.ContentConnector
|
|
2781
|
+
): this;
|
|
2782
|
+
/**
|
|
2783
|
+
* Sets the associated {@link #getViewStateManager viewStateManager}.
|
|
2784
|
+
*
|
|
2785
|
+
*
|
|
2786
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2787
|
+
*/
|
|
2788
|
+
setViewStateManager(
|
|
2789
|
+
/**
|
|
2790
|
+
* ID of an element which becomes the new target of this viewStateManager association; alternatively, an
|
|
2791
|
+
* element instance may be given
|
|
2792
|
+
*/
|
|
2793
|
+
oViewStateManager: sap.ui.core.ID | sap.ui.vk.ViewStateManagerBase
|
|
2794
|
+
): this;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
/**
|
|
2798
|
+
* Event object of the LayersPanel#contentChanged event.
|
|
2799
|
+
*/
|
|
2800
|
+
type LayersPanel$ContentChangedEvent = sap.ui.base.Event<
|
|
2801
|
+
LayersPanel$ContentChangedEventParameters,
|
|
2802
|
+
LayersPanel
|
|
2803
|
+
>;
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2559
2806
|
namespace pdf {
|
|
2560
2807
|
/**
|
|
2561
2808
|
* Describes the settings that can be provided to the Viewport constructor.
|
|
@@ -4233,7 +4480,7 @@ declare namespace sap {
|
|
|
4233
4480
|
/**
|
|
4234
4481
|
* Indicator to retrieve the complete visibility definition or just the difference.
|
|
4235
4482
|
*/
|
|
4236
|
-
mode?: sap.ui.vk.VisibilityMode;
|
|
4483
|
+
mode?: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
4237
4484
|
};
|
|
4238
4485
|
/**
|
|
4239
4486
|
* Indicator to retrieve selection information.
|
|
@@ -4307,7 +4554,7 @@ declare namespace sap {
|
|
|
4307
4554
|
* fields are defined. If the mode equals {@link sap.ui.vk.VisibilityMode.Differences differences} then
|
|
4308
4555
|
* the changes field is defined.
|
|
4309
4556
|
*/
|
|
4310
|
-
mode: sap.ui.vk.VisibilityMode;
|
|
4557
|
+
mode: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
4311
4558
|
/**
|
|
4312
4559
|
* List of Ids of visible nodes.
|
|
4313
4560
|
*/
|
|
@@ -6529,7 +6776,7 @@ declare namespace sap {
|
|
|
6529
6776
|
/**
|
|
6530
6777
|
* Indicator to retrieve the complete visibility definition or just the difference.
|
|
6531
6778
|
*/
|
|
6532
|
-
mode?: sap.ui.vk.VisibilityMode;
|
|
6779
|
+
mode?: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
6533
6780
|
};
|
|
6534
6781
|
/**
|
|
6535
6782
|
* Indicator to retrieve selection information.
|
|
@@ -6686,7 +6933,7 @@ declare namespace sap {
|
|
|
6686
6933
|
* fields are defined. If the mode equals {@link sap.ui.vk.VisibilityMode.Differences differences} then
|
|
6687
6934
|
* the changes field is defined.
|
|
6688
6935
|
*/
|
|
6689
|
-
mode: sap.ui.vk.VisibilityMode;
|
|
6936
|
+
mode: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
6690
6937
|
/**
|
|
6691
6938
|
* List of Ids of visible nodes.
|
|
6692
6939
|
*/
|
|
@@ -18357,6 +18604,14 @@ declare namespace sap {
|
|
|
18357
18604
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18358
18605
|
| `{${string}}`;
|
|
18359
18606
|
|
|
18607
|
+
/**
|
|
18608
|
+
* If set to true, will load metadata
|
|
18609
|
+
*/
|
|
18610
|
+
includeMetadata?:
|
|
18611
|
+
| boolean
|
|
18612
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18613
|
+
| `{${string}}`;
|
|
18614
|
+
|
|
18360
18615
|
/**
|
|
18361
18616
|
* Optional parameter to load UsageIds. Valid values:
|
|
18362
18617
|
* `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
|
|
@@ -25412,6 +25667,17 @@ declare namespace sap {
|
|
|
25412
25667
|
* @returns Value of property `includeHidden`
|
|
25413
25668
|
*/
|
|
25414
25669
|
getIncludeHidden(): boolean;
|
|
25670
|
+
/**
|
|
25671
|
+
* Gets current value of property {@link #getIncludeMetadata includeMetadata}.
|
|
25672
|
+
*
|
|
25673
|
+
* If set to true, will load metadata
|
|
25674
|
+
*
|
|
25675
|
+
* Default value is `false`.
|
|
25676
|
+
*
|
|
25677
|
+
*
|
|
25678
|
+
* @returns Value of property `includeMetadata`
|
|
25679
|
+
*/
|
|
25680
|
+
getIncludeMetadata(): boolean;
|
|
25415
25681
|
/**
|
|
25416
25682
|
* Gets current value of property {@link #getIncludeParametric includeParametric}.
|
|
25417
25683
|
*
|
|
@@ -25759,6 +26025,24 @@ declare namespace sap {
|
|
|
25759
26025
|
*/
|
|
25760
26026
|
bIncludeHidden?: boolean
|
|
25761
26027
|
): this;
|
|
26028
|
+
/**
|
|
26029
|
+
* Sets a new value for property {@link #getIncludeMetadata includeMetadata}.
|
|
26030
|
+
*
|
|
26031
|
+
* If set to true, will load metadata
|
|
26032
|
+
*
|
|
26033
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26034
|
+
*
|
|
26035
|
+
* Default value is `false`.
|
|
26036
|
+
*
|
|
26037
|
+
*
|
|
26038
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
26039
|
+
*/
|
|
26040
|
+
setIncludeMetadata(
|
|
26041
|
+
/**
|
|
26042
|
+
* New value for property `includeMetadata`
|
|
26043
|
+
*/
|
|
26044
|
+
bIncludeMetadata?: boolean
|
|
26045
|
+
): this;
|
|
25762
26046
|
/**
|
|
25763
26047
|
* Sets a new value for property {@link #getIncludeParametric includeParametric}.
|
|
25764
26048
|
*
|
|
@@ -40885,7 +41169,7 @@ declare namespace sap {
|
|
|
40885
41169
|
/**
|
|
40886
41170
|
* Indicator to retrieve the complete visibility definition or just the difference.
|
|
40887
41171
|
*/
|
|
40888
|
-
mode?: sap.ui.vk.VisibilityMode;
|
|
41172
|
+
mode?: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
40889
41173
|
};
|
|
40890
41174
|
/**
|
|
40891
41175
|
* Indicator to retrieve selection information.
|
|
@@ -40993,7 +41277,7 @@ declare namespace sap {
|
|
|
40993
41277
|
* fields are defined. If the mode equals {@link sap.ui.vk.VisibilityMode.Differences differences} then
|
|
40994
41278
|
* the changes field is defined.
|
|
40995
41279
|
*/
|
|
40996
|
-
mode: sap.ui.vk.VisibilityMode;
|
|
41280
|
+
mode: /* was: sap.ui.vk.VisibilityMode */ any;
|
|
40997
41281
|
/**
|
|
40998
41282
|
* List of Ids of visible nodes.
|
|
40999
41283
|
*/
|
|
@@ -45201,20 +45485,6 @@ declare namespace sap {
|
|
|
45201
45485
|
|
|
45202
45486
|
Sticky = "sticky",
|
|
45203
45487
|
}
|
|
45204
|
-
/**
|
|
45205
|
-
* Visibility mode for {@link sap.ui.vk.Viewport#getViewInfo sap.ui.vk.Viewport.getViewInfo}.
|
|
45206
|
-
*/
|
|
45207
|
-
enum VisibilityMode {
|
|
45208
|
-
/**
|
|
45209
|
-
* The view information contains a full definition of all nodes that are visible or hidden.
|
|
45210
|
-
*/
|
|
45211
|
-
Complete = "complete",
|
|
45212
|
-
/**
|
|
45213
|
-
* The view information contains a list of nodes that have inverted visibility state compared to their original
|
|
45214
|
-
* state.
|
|
45215
|
-
*/
|
|
45216
|
-
Differences = "differences",
|
|
45217
|
-
}
|
|
45218
45488
|
/**
|
|
45219
45489
|
* ZoomTo options.
|
|
45220
45490
|
*/
|
|
@@ -45978,6 +46248,8 @@ declare namespace sap {
|
|
|
45978
46248
|
|
|
45979
46249
|
"sap/ui/vk/dvl/ViewStateManager": undefined;
|
|
45980
46250
|
|
|
46251
|
+
"sap/ui/vk/ecad/LayersPanel": undefined;
|
|
46252
|
+
|
|
45981
46253
|
"sap/ui/vk/FlexibleControl": undefined;
|
|
45982
46254
|
|
|
45983
46255
|
"sap/ui/vk/FlexibleControlLayoutData": undefined;
|
|
@@ -46204,8 +46476,6 @@ declare namespace sap {
|
|
|
46204
46476
|
|
|
46205
46477
|
"sap/ui/vk/ViewStateManagerBase": undefined;
|
|
46206
46478
|
|
|
46207
|
-
"sap/ui/vk/VisibilityMode": undefined;
|
|
46208
|
-
|
|
46209
46479
|
"sap/ui/vk/ZoomTo": undefined;
|
|
46210
46480
|
}
|
|
46211
46481
|
}
|
package/types/sap.ui.vtm.d.ts
CHANGED