@progress/kendo-angular-layout 7.1.5-dev.202210241150 → 7.1.6-dev.202211081310
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/avatar/avatar.component.d.ts +1 -1
- package/avatar.module.d.ts +1 -1
- package/bundles/kendo-angular-layout.umd.js +1 -1
- package/card.module.d.ts +1 -1
- package/drawer/models/drawer-animation.interface.d.ts +1 -1
- package/drawer/models/drawer-item.interface.d.ts +2 -2
- package/drawer.module.d.ts +1 -1
- package/esm2015/avatar.module.js +1 -1
- package/esm2015/card.module.js +1 -1
- package/esm2015/drawer/list.component.js +1 -0
- package/esm2015/drawer.module.js +1 -1
- package/esm2015/expansionpanel.module.js +1 -1
- package/esm2015/gridlayout.module.js +1 -1
- package/esm2015/layout.module.js +1 -1
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/panelbar.module.js +1 -1
- package/esm2015/splitter/splitter-bar.component.js +54 -73
- package/esm2015/splitter/splitter-pane.component.js +7 -1
- package/esm2015/splitter/splitter.component.js +22 -2
- package/esm2015/splitter/splitter.service.js +19 -0
- package/esm2015/splitter/util.js +34 -0
- package/esm2015/splitter.module.js +1 -1
- package/esm2015/stacklayout.module.js +1 -1
- package/esm2015/stepper.module.js +1 -1
- package/esm2015/tabstrip.module.js +1 -1
- package/esm2015/tilelayout.module.js +1 -1
- package/expansionpanel.module.d.ts +1 -1
- package/fesm2015/kendo-angular-layout.js +142 -88
- package/gridlayout.module.d.ts +1 -1
- package/layout.module.d.ts +1 -1
- package/package.json +1 -1
- package/panelbar.module.d.ts +1 -1
- package/splitter/splitter-bar.component.d.ts +7 -8
- package/splitter/splitter-pane.component.d.ts +5 -1
- package/splitter/splitter.component.d.ts +7 -1
- package/splitter/splitter.service.d.ts +3 -0
- package/splitter/util.d.ts +17 -0
- package/splitter.module.d.ts +1 -1
- package/stacklayout.module.d.ts +1 -1
- package/stepper/models/stepper-step.interface.d.ts +2 -2
- package/stepper.module.d.ts +1 -1
- package/tabstrip/models/tabstrip-tab.component.d.ts +2 -2
- package/tabstrip.module.d.ts +1 -1
- package/tilelayout.module.d.ts +1 -1
package/stacklayout.module.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
import * as i1 from "./layouts/stack-layout.component";
|
|
7
7
|
import * as i2 from "@angular/common";
|
|
8
8
|
/**
|
|
9
|
-
* Represents the [NgModule](
|
|
9
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
10
10
|
* definition for the StackLayout component.
|
|
11
11
|
*/
|
|
12
12
|
export declare class StackLayoutModule {
|
|
@@ -9,12 +9,12 @@ import { StepPredicateFn } from './step-predicate';
|
|
|
9
9
|
export interface StepperStep {
|
|
10
10
|
/**
|
|
11
11
|
* The CSS classes that will be rendered on the step element of the Stepper.
|
|
12
|
-
* Supports the type of values that are supported by [ngClass](
|
|
12
|
+
* Supports the type of values that are supported by [ngClass](link:site.data.urls.angular['ngclassapi']).
|
|
13
13
|
*/
|
|
14
14
|
cssClass?: any;
|
|
15
15
|
/**
|
|
16
16
|
* The CSS styles that will be rendered on the item element of the Drawer.
|
|
17
|
-
* Supports the type of values that are supported by [ngStyle](
|
|
17
|
+
* Supports the type of values that are supported by [ngStyle](link:site.data.urls.angular['ngstyleapi']).
|
|
18
18
|
*/
|
|
19
19
|
cssStyle?: any;
|
|
20
20
|
/**
|
package/stepper.module.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as i8 from "./stepper/template-directives/indicator-template.directive"
|
|
|
14
14
|
import * as i9 from "@angular/common";
|
|
15
15
|
import * as i10 from "@progress/kendo-angular-progressbar";
|
|
16
16
|
/**
|
|
17
|
-
* Represents the [NgModule](
|
|
17
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
18
18
|
* definition for the Stepper component.
|
|
19
19
|
*/
|
|
20
20
|
export declare class StepperModule {
|
|
@@ -22,12 +22,12 @@ export declare class TabStripTabComponent {
|
|
|
22
22
|
disabled: boolean;
|
|
23
23
|
/**
|
|
24
24
|
* The CSS classes that will be rendered on the `tab` element.
|
|
25
|
-
* Supports the type of values that are supported by [ngClass](
|
|
25
|
+
* Supports the type of values that are supported by [ngClass](link:site.data.urls.angular['ngclassapi']).
|
|
26
26
|
*/
|
|
27
27
|
cssClass: any;
|
|
28
28
|
/**
|
|
29
29
|
* The CSS styles that will be rendered on the `tab` element.
|
|
30
|
-
* Supports the type of values that are supported by [ngStyle](
|
|
30
|
+
* Supports the type of values that are supported by [ngStyle](link:site.data.urls.angular['ngstyleapi']).
|
|
31
31
|
*/
|
|
32
32
|
cssStyle: any;
|
|
33
33
|
/**
|
package/tabstrip.module.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as i8 from "./tabstrip/scrollable-button.component";
|
|
|
14
14
|
import * as i9 from "@angular/common";
|
|
15
15
|
import * as i10 from "@progress/kendo-angular-common";
|
|
16
16
|
/**
|
|
17
|
-
* Represents the [NgModule](
|
|
17
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
18
18
|
* definition for the TabStrip component.
|
|
19
19
|
*
|
|
20
20
|
* The module registers:
|
package/tilelayout.module.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as i4 from "./tilelayout/tilelayout-item-body.component";
|
|
|
10
10
|
import * as i5 from "./tilelayout/tilelayout-resize-handle.directive";
|
|
11
11
|
import * as i6 from "@angular/common";
|
|
12
12
|
/**
|
|
13
|
-
* Represents the [NgModule](
|
|
13
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
14
14
|
* definition for the TileLayout component.
|
|
15
15
|
*
|
|
16
16
|
* The module registers:
|