@progress/kendo-vue-layout 6.1.0-develop.5 → 6.1.0-develop.7
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/actionsheet/ActionSheet.js +1 -1
- package/actionsheet/ActionSheet.mjs +48 -44
- package/dist/cdn/js/kendo-vue-layout.js +1 -1
- package/index.d.mts +42 -25
- package/index.d.ts +42 -25
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +7 -7
package/index.d.mts
CHANGED
|
@@ -5,13 +5,23 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
import { BottomNavigationItemProps as BottomNavigationItemProps_2 } from './BottomNavigationItemProps';
|
|
8
9
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
10
|
import { ComponentProvideOptions } from 'vue';
|
|
10
11
|
import { DefineComponent } from 'vue';
|
|
12
|
+
import { DrawerAnimation as DrawerAnimation_2 } from '..';
|
|
13
|
+
import { DrawerItemProps as DrawerItemProps_2 } from '..';
|
|
14
|
+
import { DrawerSelectEvent as DrawerSelectEvent_2 } from '..';
|
|
11
15
|
import { ExtractPropTypes } from 'vue';
|
|
16
|
+
import { GridLayoutColumnProps as GridLayoutColumnProps_2 } from '..';
|
|
17
|
+
import { GridLayoutGap as GridLayoutGap_2 } from './interfaces/GridLayoutProps';
|
|
18
|
+
import { GridLayoutRowProps as GridLayoutRowProps_2 } from '..';
|
|
19
|
+
import { MenuItemModel as MenuItemModel_2 } from '../..';
|
|
12
20
|
import { Navigation } from '@progress/kendo-vue-common';
|
|
21
|
+
import { PanelBarExpandMode as PanelBarExpandMode_2 } from './interfaces/PanelBarProps';
|
|
13
22
|
import { PropType } from 'vue';
|
|
14
23
|
import { PublicProps } from 'vue';
|
|
24
|
+
import { StepProps as StepProps_2 } from '..';
|
|
15
25
|
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
16
26
|
import { SVGIcon as SVGIcon_2 } from '@progress/kendo-svg-icons';
|
|
17
27
|
|
|
@@ -62,6 +72,7 @@ navigatableElements: {
|
|
|
62
72
|
type: PropType<string[]>;
|
|
63
73
|
default: () => any[];
|
|
64
74
|
};
|
|
75
|
+
actions: PropType<any>;
|
|
65
76
|
onClose: PropType<(event: any) => void>;
|
|
66
77
|
}>, {}, {
|
|
67
78
|
show: boolean;
|
|
@@ -126,6 +137,7 @@ navigatableElements: {
|
|
|
126
137
|
type: PropType<string[]>;
|
|
127
138
|
default: () => any[];
|
|
128
139
|
};
|
|
140
|
+
actions: PropType<any>;
|
|
129
141
|
onClose: PropType<(event: any) => void>;
|
|
130
142
|
}>> & Readonly<{}>, {
|
|
131
143
|
animation: boolean;
|
|
@@ -378,6 +390,11 @@ export declare interface ActionSheetProps {
|
|
|
378
390
|
* @hidden
|
|
379
391
|
*/
|
|
380
392
|
animationStyles?: any;
|
|
393
|
+
/**
|
|
394
|
+
* @hidden
|
|
395
|
+
* Used to render the close button in the header of the ActionSheet.
|
|
396
|
+
*/
|
|
397
|
+
actions?: any;
|
|
381
398
|
/**
|
|
382
399
|
* Specifies the duration of the transition for the entering and closing Animation. Defaults to `300ms`.
|
|
383
400
|
*/
|
|
@@ -756,7 +773,7 @@ default: string;
|
|
|
756
773
|
validator: (value: string) => any;
|
|
757
774
|
};
|
|
758
775
|
item: PropType<any>;
|
|
759
|
-
items: PropType<
|
|
776
|
+
items: PropType<BottomNavigationItemProps_2[]>;
|
|
760
777
|
itemFlow: {
|
|
761
778
|
type: PropType<string>;
|
|
762
779
|
default: string;
|
|
@@ -807,7 +824,7 @@ default: string;
|
|
|
807
824
|
validator: (value: string) => any;
|
|
808
825
|
};
|
|
809
826
|
item: PropType<any>;
|
|
810
|
-
items: PropType<
|
|
827
|
+
items: PropType<BottomNavigationItemProps_2[]>;
|
|
811
828
|
itemFlow: {
|
|
812
829
|
type: PropType<string>;
|
|
813
830
|
default: string;
|
|
@@ -1272,7 +1289,7 @@ export declare const downArrowIcon: SVGIcon_2;
|
|
|
1272
1289
|
*/
|
|
1273
1290
|
export declare const Drawer: DefineComponent<ExtractPropTypes< {
|
|
1274
1291
|
animation: {
|
|
1275
|
-
type: PropType<boolean |
|
|
1292
|
+
type: PropType<boolean | DrawerAnimation_2>;
|
|
1276
1293
|
default: boolean;
|
|
1277
1294
|
};
|
|
1278
1295
|
expanded: {
|
|
@@ -1298,7 +1315,7 @@ default: string;
|
|
|
1298
1315
|
validator: (value: string) => any;
|
|
1299
1316
|
};
|
|
1300
1317
|
items: {
|
|
1301
|
-
type: PropType<
|
|
1318
|
+
type: PropType<DrawerItemProps_2[]>;
|
|
1302
1319
|
default: any[];
|
|
1303
1320
|
};
|
|
1304
1321
|
mini: {
|
|
@@ -1321,11 +1338,11 @@ expanded: boolean;
|
|
|
1321
1338
|
mode: string;
|
|
1322
1339
|
dir: Function;
|
|
1323
1340
|
position: string;
|
|
1324
|
-
animation: boolean |
|
|
1341
|
+
animation: boolean | DrawerAnimation_2;
|
|
1325
1342
|
mini: boolean;
|
|
1326
1343
|
width: number;
|
|
1327
1344
|
miniWidth: number;
|
|
1328
|
-
items:
|
|
1345
|
+
items: DrawerItemProps_2[];
|
|
1329
1346
|
item: any;
|
|
1330
1347
|
};
|
|
1331
1348
|
showLicenseWatermark: boolean;
|
|
@@ -1340,7 +1357,7 @@ select: any;
|
|
|
1340
1357
|
overlayclick: any;
|
|
1341
1358
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1342
1359
|
animation: {
|
|
1343
|
-
type: PropType<boolean |
|
|
1360
|
+
type: PropType<boolean | DrawerAnimation_2>;
|
|
1344
1361
|
default: boolean;
|
|
1345
1362
|
};
|
|
1346
1363
|
expanded: {
|
|
@@ -1366,7 +1383,7 @@ default: string;
|
|
|
1366
1383
|
validator: (value: string) => any;
|
|
1367
1384
|
};
|
|
1368
1385
|
items: {
|
|
1369
|
-
type: PropType<
|
|
1386
|
+
type: PropType<DrawerItemProps_2[]>;
|
|
1370
1387
|
default: any[];
|
|
1371
1388
|
};
|
|
1372
1389
|
mini: {
|
|
@@ -1387,14 +1404,14 @@ onSelect?: (...args: any[] | unknown[]) => any;
|
|
|
1387
1404
|
onOverlayclick?: (...args: any[] | unknown[]) => any;
|
|
1388
1405
|
}>, {
|
|
1389
1406
|
mode: string;
|
|
1390
|
-
animation: boolean |
|
|
1407
|
+
animation: boolean | DrawerAnimation_2;
|
|
1391
1408
|
dir: string;
|
|
1392
1409
|
expanded: boolean;
|
|
1393
1410
|
mini: boolean;
|
|
1394
1411
|
position: string;
|
|
1395
1412
|
width: number;
|
|
1396
1413
|
miniWidth: number;
|
|
1397
|
-
items:
|
|
1414
|
+
items: DrawerItemProps_2[];
|
|
1398
1415
|
}, {}, {}, {}, string, () => {
|
|
1399
1416
|
kendoDrawer: any;
|
|
1400
1417
|
}, true, {}, any>;
|
|
@@ -1547,7 +1564,7 @@ footer: PropType<any>;
|
|
|
1547
1564
|
content: PropType<any>;
|
|
1548
1565
|
tabIndex: PropType<number>;
|
|
1549
1566
|
showLicenseWatermark: PropType<boolean>;
|
|
1550
|
-
onSelect: PropType<(event:
|
|
1567
|
+
onSelect: PropType<(event: DrawerSelectEvent_2) => void>;
|
|
1551
1568
|
}>, {}, {}, {
|
|
1552
1569
|
navigationClassNames(): DrawerNavigationComputed['navigationClassNames'];
|
|
1553
1570
|
}, {
|
|
@@ -1560,7 +1577,7 @@ footer: PropType<any>;
|
|
|
1560
1577
|
content: PropType<any>;
|
|
1561
1578
|
tabIndex: PropType<number>;
|
|
1562
1579
|
showLicenseWatermark: PropType<boolean>;
|
|
1563
|
-
onSelect: PropType<(event:
|
|
1580
|
+
onSelect: PropType<(event: DrawerSelectEvent_2) => void>;
|
|
1564
1581
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1565
1582
|
|
|
1566
1583
|
/**
|
|
@@ -1864,14 +1881,14 @@ export declare const getInitialState: (props: any, expandMode: PanelBarExpandMod
|
|
|
1864
1881
|
export declare const GridLayout: DefineComponent<ExtractPropTypes< {
|
|
1865
1882
|
id: PropType<string>;
|
|
1866
1883
|
gap: {
|
|
1867
|
-
type: PropType<
|
|
1884
|
+
type: PropType<GridLayoutGap_2>;
|
|
1868
1885
|
};
|
|
1869
1886
|
align: {
|
|
1870
1887
|
type: PropType<any>;
|
|
1871
1888
|
validator: (value: GridLayoutAlign) => any;
|
|
1872
1889
|
};
|
|
1873
|
-
rows: PropType<
|
|
1874
|
-
cols: PropType<
|
|
1890
|
+
rows: PropType<GridLayoutRowProps_2[]>;
|
|
1891
|
+
cols: PropType<GridLayoutColumnProps_2[]>;
|
|
1875
1892
|
items: PropType<GridLayoutItemProps[]>;
|
|
1876
1893
|
}>, {}, {}, {
|
|
1877
1894
|
hAlign(): any;
|
|
@@ -1898,14 +1915,14 @@ gridTemplateRows: any;
|
|
|
1898
1915
|
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1899
1916
|
id: PropType<string>;
|
|
1900
1917
|
gap: {
|
|
1901
|
-
type: PropType<
|
|
1918
|
+
type: PropType<GridLayoutGap_2>;
|
|
1902
1919
|
};
|
|
1903
1920
|
align: {
|
|
1904
1921
|
type: PropType<any>;
|
|
1905
1922
|
validator: (value: GridLayoutAlign) => any;
|
|
1906
1923
|
};
|
|
1907
|
-
rows: PropType<
|
|
1908
|
-
cols: PropType<
|
|
1924
|
+
rows: PropType<GridLayoutRowProps_2[]>;
|
|
1925
|
+
cols: PropType<GridLayoutColumnProps_2[]>;
|
|
1909
1926
|
items: PropType<GridLayoutItemProps[]>;
|
|
1910
1927
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1911
1928
|
|
|
@@ -2118,7 +2135,7 @@ vertical: {
|
|
|
2118
2135
|
type: PropType<boolean>;
|
|
2119
2136
|
default: boolean;
|
|
2120
2137
|
};
|
|
2121
|
-
items: PropType<
|
|
2138
|
+
items: PropType<MenuItemModel_2[]>;
|
|
2122
2139
|
dir: PropType<string>;
|
|
2123
2140
|
hoverOpenDelay: {
|
|
2124
2141
|
type: PropType<number>;
|
|
@@ -2162,7 +2179,7 @@ vertical: {
|
|
|
2162
2179
|
type: PropType<boolean>;
|
|
2163
2180
|
default: boolean;
|
|
2164
2181
|
};
|
|
2165
|
-
items: PropType<
|
|
2182
|
+
items: PropType<MenuItemModel_2[]>;
|
|
2166
2183
|
dir: PropType<string>;
|
|
2167
2184
|
hoverOpenDelay: {
|
|
2168
2185
|
type: PropType<number>;
|
|
@@ -2356,7 +2373,7 @@ default: any;
|
|
|
2356
2373
|
};
|
|
2357
2374
|
focused: PropType<string>;
|
|
2358
2375
|
expandMode: {
|
|
2359
|
-
type: PropType<
|
|
2376
|
+
type: PropType<PanelBarExpandMode_2>;
|
|
2360
2377
|
default: string;
|
|
2361
2378
|
validator: (value: string) => boolean;
|
|
2362
2379
|
};
|
|
@@ -2391,7 +2408,7 @@ default: any;
|
|
|
2391
2408
|
};
|
|
2392
2409
|
focused: PropType<string>;
|
|
2393
2410
|
expandMode: {
|
|
2394
|
-
type: PropType<
|
|
2411
|
+
type: PropType<PanelBarExpandMode_2>;
|
|
2395
2412
|
default: string;
|
|
2396
2413
|
validator: (value: string) => boolean;
|
|
2397
2414
|
};
|
|
@@ -2403,7 +2420,7 @@ onKeydown?: (...args: any[] | unknown[]) => any;
|
|
|
2403
2420
|
}>, {
|
|
2404
2421
|
animation: boolean;
|
|
2405
2422
|
expanded: string[];
|
|
2406
|
-
expandMode:
|
|
2423
|
+
expandMode: PanelBarExpandMode_2;
|
|
2407
2424
|
}, {}, {}, {}, string, () => {
|
|
2408
2425
|
dispatchItemSelect: any;
|
|
2409
2426
|
}, true, {}, any>;
|
|
@@ -3276,7 +3293,7 @@ item: {
|
|
|
3276
3293
|
type: PropType<any>;
|
|
3277
3294
|
default: any;
|
|
3278
3295
|
};
|
|
3279
|
-
items: PropType<
|
|
3296
|
+
items: PropType<StepProps_2[]>;
|
|
3280
3297
|
linear: PropType<boolean>;
|
|
3281
3298
|
mode: {
|
|
3282
3299
|
type: PropType<string>;
|
|
@@ -3356,7 +3373,7 @@ item: {
|
|
|
3356
3373
|
type: PropType<any>;
|
|
3357
3374
|
default: any;
|
|
3358
3375
|
};
|
|
3359
|
-
items: PropType<
|
|
3376
|
+
items: PropType<StepProps_2[]>;
|
|
3360
3377
|
linear: PropType<boolean>;
|
|
3361
3378
|
mode: {
|
|
3362
3379
|
type: PropType<string>;
|
package/index.d.ts
CHANGED
|
@@ -5,13 +5,23 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
import { BottomNavigationItemProps as BottomNavigationItemProps_2 } from './BottomNavigationItemProps';
|
|
8
9
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
10
|
import { ComponentProvideOptions } from 'vue';
|
|
10
11
|
import { DefineComponent } from 'vue';
|
|
12
|
+
import { DrawerAnimation as DrawerAnimation_2 } from '..';
|
|
13
|
+
import { DrawerItemProps as DrawerItemProps_2 } from '..';
|
|
14
|
+
import { DrawerSelectEvent as DrawerSelectEvent_2 } from '..';
|
|
11
15
|
import { ExtractPropTypes } from 'vue';
|
|
16
|
+
import { GridLayoutColumnProps as GridLayoutColumnProps_2 } from '..';
|
|
17
|
+
import { GridLayoutGap as GridLayoutGap_2 } from './interfaces/GridLayoutProps';
|
|
18
|
+
import { GridLayoutRowProps as GridLayoutRowProps_2 } from '..';
|
|
19
|
+
import { MenuItemModel as MenuItemModel_2 } from '../..';
|
|
12
20
|
import { Navigation } from '@progress/kendo-vue-common';
|
|
21
|
+
import { PanelBarExpandMode as PanelBarExpandMode_2 } from './interfaces/PanelBarProps';
|
|
13
22
|
import { PropType } from 'vue';
|
|
14
23
|
import { PublicProps } from 'vue';
|
|
24
|
+
import { StepProps as StepProps_2 } from '..';
|
|
15
25
|
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
16
26
|
import { SVGIcon as SVGIcon_2 } from '@progress/kendo-svg-icons';
|
|
17
27
|
|
|
@@ -62,6 +72,7 @@ navigatableElements: {
|
|
|
62
72
|
type: PropType<string[]>;
|
|
63
73
|
default: () => any[];
|
|
64
74
|
};
|
|
75
|
+
actions: PropType<any>;
|
|
65
76
|
onClose: PropType<(event: any) => void>;
|
|
66
77
|
}>, {}, {
|
|
67
78
|
show: boolean;
|
|
@@ -126,6 +137,7 @@ navigatableElements: {
|
|
|
126
137
|
type: PropType<string[]>;
|
|
127
138
|
default: () => any[];
|
|
128
139
|
};
|
|
140
|
+
actions: PropType<any>;
|
|
129
141
|
onClose: PropType<(event: any) => void>;
|
|
130
142
|
}>> & Readonly<{}>, {
|
|
131
143
|
animation: boolean;
|
|
@@ -378,6 +390,11 @@ export declare interface ActionSheetProps {
|
|
|
378
390
|
* @hidden
|
|
379
391
|
*/
|
|
380
392
|
animationStyles?: any;
|
|
393
|
+
/**
|
|
394
|
+
* @hidden
|
|
395
|
+
* Used to render the close button in the header of the ActionSheet.
|
|
396
|
+
*/
|
|
397
|
+
actions?: any;
|
|
381
398
|
/**
|
|
382
399
|
* Specifies the duration of the transition for the entering and closing Animation. Defaults to `300ms`.
|
|
383
400
|
*/
|
|
@@ -756,7 +773,7 @@ default: string;
|
|
|
756
773
|
validator: (value: string) => any;
|
|
757
774
|
};
|
|
758
775
|
item: PropType<any>;
|
|
759
|
-
items: PropType<
|
|
776
|
+
items: PropType<BottomNavigationItemProps_2[]>;
|
|
760
777
|
itemFlow: {
|
|
761
778
|
type: PropType<string>;
|
|
762
779
|
default: string;
|
|
@@ -807,7 +824,7 @@ default: string;
|
|
|
807
824
|
validator: (value: string) => any;
|
|
808
825
|
};
|
|
809
826
|
item: PropType<any>;
|
|
810
|
-
items: PropType<
|
|
827
|
+
items: PropType<BottomNavigationItemProps_2[]>;
|
|
811
828
|
itemFlow: {
|
|
812
829
|
type: PropType<string>;
|
|
813
830
|
default: string;
|
|
@@ -1272,7 +1289,7 @@ export declare const downArrowIcon: SVGIcon_2;
|
|
|
1272
1289
|
*/
|
|
1273
1290
|
export declare const Drawer: DefineComponent<ExtractPropTypes< {
|
|
1274
1291
|
animation: {
|
|
1275
|
-
type: PropType<boolean |
|
|
1292
|
+
type: PropType<boolean | DrawerAnimation_2>;
|
|
1276
1293
|
default: boolean;
|
|
1277
1294
|
};
|
|
1278
1295
|
expanded: {
|
|
@@ -1298,7 +1315,7 @@ default: string;
|
|
|
1298
1315
|
validator: (value: string) => any;
|
|
1299
1316
|
};
|
|
1300
1317
|
items: {
|
|
1301
|
-
type: PropType<
|
|
1318
|
+
type: PropType<DrawerItemProps_2[]>;
|
|
1302
1319
|
default: any[];
|
|
1303
1320
|
};
|
|
1304
1321
|
mini: {
|
|
@@ -1321,11 +1338,11 @@ expanded: boolean;
|
|
|
1321
1338
|
mode: string;
|
|
1322
1339
|
dir: Function;
|
|
1323
1340
|
position: string;
|
|
1324
|
-
animation: boolean |
|
|
1341
|
+
animation: boolean | DrawerAnimation_2;
|
|
1325
1342
|
mini: boolean;
|
|
1326
1343
|
width: number;
|
|
1327
1344
|
miniWidth: number;
|
|
1328
|
-
items:
|
|
1345
|
+
items: DrawerItemProps_2[];
|
|
1329
1346
|
item: any;
|
|
1330
1347
|
};
|
|
1331
1348
|
showLicenseWatermark: boolean;
|
|
@@ -1340,7 +1357,7 @@ select: any;
|
|
|
1340
1357
|
overlayclick: any;
|
|
1341
1358
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1342
1359
|
animation: {
|
|
1343
|
-
type: PropType<boolean |
|
|
1360
|
+
type: PropType<boolean | DrawerAnimation_2>;
|
|
1344
1361
|
default: boolean;
|
|
1345
1362
|
};
|
|
1346
1363
|
expanded: {
|
|
@@ -1366,7 +1383,7 @@ default: string;
|
|
|
1366
1383
|
validator: (value: string) => any;
|
|
1367
1384
|
};
|
|
1368
1385
|
items: {
|
|
1369
|
-
type: PropType<
|
|
1386
|
+
type: PropType<DrawerItemProps_2[]>;
|
|
1370
1387
|
default: any[];
|
|
1371
1388
|
};
|
|
1372
1389
|
mini: {
|
|
@@ -1387,14 +1404,14 @@ onSelect?: (...args: any[] | unknown[]) => any;
|
|
|
1387
1404
|
onOverlayclick?: (...args: any[] | unknown[]) => any;
|
|
1388
1405
|
}>, {
|
|
1389
1406
|
mode: string;
|
|
1390
|
-
animation: boolean |
|
|
1407
|
+
animation: boolean | DrawerAnimation_2;
|
|
1391
1408
|
dir: string;
|
|
1392
1409
|
expanded: boolean;
|
|
1393
1410
|
mini: boolean;
|
|
1394
1411
|
position: string;
|
|
1395
1412
|
width: number;
|
|
1396
1413
|
miniWidth: number;
|
|
1397
|
-
items:
|
|
1414
|
+
items: DrawerItemProps_2[];
|
|
1398
1415
|
}, {}, {}, {}, string, () => {
|
|
1399
1416
|
kendoDrawer: any;
|
|
1400
1417
|
}, true, {}, any>;
|
|
@@ -1547,7 +1564,7 @@ footer: PropType<any>;
|
|
|
1547
1564
|
content: PropType<any>;
|
|
1548
1565
|
tabIndex: PropType<number>;
|
|
1549
1566
|
showLicenseWatermark: PropType<boolean>;
|
|
1550
|
-
onSelect: PropType<(event:
|
|
1567
|
+
onSelect: PropType<(event: DrawerSelectEvent_2) => void>;
|
|
1551
1568
|
}>, {}, {}, {
|
|
1552
1569
|
navigationClassNames(): DrawerNavigationComputed['navigationClassNames'];
|
|
1553
1570
|
}, {
|
|
@@ -1560,7 +1577,7 @@ footer: PropType<any>;
|
|
|
1560
1577
|
content: PropType<any>;
|
|
1561
1578
|
tabIndex: PropType<number>;
|
|
1562
1579
|
showLicenseWatermark: PropType<boolean>;
|
|
1563
|
-
onSelect: PropType<(event:
|
|
1580
|
+
onSelect: PropType<(event: DrawerSelectEvent_2) => void>;
|
|
1564
1581
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1565
1582
|
|
|
1566
1583
|
/**
|
|
@@ -1864,14 +1881,14 @@ export declare const getInitialState: (props: any, expandMode: PanelBarExpandMod
|
|
|
1864
1881
|
export declare const GridLayout: DefineComponent<ExtractPropTypes< {
|
|
1865
1882
|
id: PropType<string>;
|
|
1866
1883
|
gap: {
|
|
1867
|
-
type: PropType<
|
|
1884
|
+
type: PropType<GridLayoutGap_2>;
|
|
1868
1885
|
};
|
|
1869
1886
|
align: {
|
|
1870
1887
|
type: PropType<any>;
|
|
1871
1888
|
validator: (value: GridLayoutAlign) => any;
|
|
1872
1889
|
};
|
|
1873
|
-
rows: PropType<
|
|
1874
|
-
cols: PropType<
|
|
1890
|
+
rows: PropType<GridLayoutRowProps_2[]>;
|
|
1891
|
+
cols: PropType<GridLayoutColumnProps_2[]>;
|
|
1875
1892
|
items: PropType<GridLayoutItemProps[]>;
|
|
1876
1893
|
}>, {}, {}, {
|
|
1877
1894
|
hAlign(): any;
|
|
@@ -1898,14 +1915,14 @@ gridTemplateRows: any;
|
|
|
1898
1915
|
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1899
1916
|
id: PropType<string>;
|
|
1900
1917
|
gap: {
|
|
1901
|
-
type: PropType<
|
|
1918
|
+
type: PropType<GridLayoutGap_2>;
|
|
1902
1919
|
};
|
|
1903
1920
|
align: {
|
|
1904
1921
|
type: PropType<any>;
|
|
1905
1922
|
validator: (value: GridLayoutAlign) => any;
|
|
1906
1923
|
};
|
|
1907
|
-
rows: PropType<
|
|
1908
|
-
cols: PropType<
|
|
1924
|
+
rows: PropType<GridLayoutRowProps_2[]>;
|
|
1925
|
+
cols: PropType<GridLayoutColumnProps_2[]>;
|
|
1909
1926
|
items: PropType<GridLayoutItemProps[]>;
|
|
1910
1927
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1911
1928
|
|
|
@@ -2118,7 +2135,7 @@ vertical: {
|
|
|
2118
2135
|
type: PropType<boolean>;
|
|
2119
2136
|
default: boolean;
|
|
2120
2137
|
};
|
|
2121
|
-
items: PropType<
|
|
2138
|
+
items: PropType<MenuItemModel_2[]>;
|
|
2122
2139
|
dir: PropType<string>;
|
|
2123
2140
|
hoverOpenDelay: {
|
|
2124
2141
|
type: PropType<number>;
|
|
@@ -2162,7 +2179,7 @@ vertical: {
|
|
|
2162
2179
|
type: PropType<boolean>;
|
|
2163
2180
|
default: boolean;
|
|
2164
2181
|
};
|
|
2165
|
-
items: PropType<
|
|
2182
|
+
items: PropType<MenuItemModel_2[]>;
|
|
2166
2183
|
dir: PropType<string>;
|
|
2167
2184
|
hoverOpenDelay: {
|
|
2168
2185
|
type: PropType<number>;
|
|
@@ -2356,7 +2373,7 @@ default: any;
|
|
|
2356
2373
|
};
|
|
2357
2374
|
focused: PropType<string>;
|
|
2358
2375
|
expandMode: {
|
|
2359
|
-
type: PropType<
|
|
2376
|
+
type: PropType<PanelBarExpandMode_2>;
|
|
2360
2377
|
default: string;
|
|
2361
2378
|
validator: (value: string) => boolean;
|
|
2362
2379
|
};
|
|
@@ -2391,7 +2408,7 @@ default: any;
|
|
|
2391
2408
|
};
|
|
2392
2409
|
focused: PropType<string>;
|
|
2393
2410
|
expandMode: {
|
|
2394
|
-
type: PropType<
|
|
2411
|
+
type: PropType<PanelBarExpandMode_2>;
|
|
2395
2412
|
default: string;
|
|
2396
2413
|
validator: (value: string) => boolean;
|
|
2397
2414
|
};
|
|
@@ -2403,7 +2420,7 @@ onKeydown?: (...args: any[] | unknown[]) => any;
|
|
|
2403
2420
|
}>, {
|
|
2404
2421
|
animation: boolean;
|
|
2405
2422
|
expanded: string[];
|
|
2406
|
-
expandMode:
|
|
2423
|
+
expandMode: PanelBarExpandMode_2;
|
|
2407
2424
|
}, {}, {}, {}, string, () => {
|
|
2408
2425
|
dispatchItemSelect: any;
|
|
2409
2426
|
}, true, {}, any>;
|
|
@@ -3276,7 +3293,7 @@ item: {
|
|
|
3276
3293
|
type: PropType<any>;
|
|
3277
3294
|
default: any;
|
|
3278
3295
|
};
|
|
3279
|
-
items: PropType<
|
|
3296
|
+
items: PropType<StepProps_2[]>;
|
|
3280
3297
|
linear: PropType<boolean>;
|
|
3281
3298
|
mode: {
|
|
3282
3299
|
type: PropType<string>;
|
|
@@ -3356,7 +3373,7 @@ item: {
|
|
|
3356
3373
|
type: PropType<any>;
|
|
3357
3374
|
default: any;
|
|
3358
3375
|
};
|
|
3359
|
-
items: PropType<
|
|
3376
|
+
items: PropType<StepProps_2[]>;
|
|
3360
3377
|
linear: PropType<boolean>;
|
|
3361
3378
|
mode: {
|
|
3362
3379
|
type: PropType<string>;
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738834079,version:"6.1.0-develop.7",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "6.1.0-develop.
|
|
13
|
+
publishDate: 1738834079,
|
|
14
|
+
version: "6.1.0-develop.7",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-layout",
|
|
3
|
-
"version": "6.1.0-develop.
|
|
3
|
+
"version": "6.1.0-develop.7",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@progress/kendo-licensing": "^1.3.4",
|
|
22
|
-
"@progress/kendo-vue-animation": "6.1.0-develop.
|
|
23
|
-
"@progress/kendo-vue-common": "6.1.0-develop.
|
|
24
|
-
"@progress/kendo-vue-intl": "6.1.0-develop.
|
|
25
|
-
"@progress/kendo-vue-popup": "6.1.0-develop.
|
|
26
|
-
"@progress/kendo-vue-progressbars": "6.1.0-develop.
|
|
22
|
+
"@progress/kendo-vue-animation": "6.1.0-develop.7",
|
|
23
|
+
"@progress/kendo-vue-common": "6.1.0-develop.7",
|
|
24
|
+
"@progress/kendo-vue-intl": "6.1.0-develop.7",
|
|
25
|
+
"@progress/kendo-vue-popup": "6.1.0-develop.7",
|
|
26
|
+
"@progress/kendo-vue-progressbars": "6.1.0-develop.7",
|
|
27
27
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
28
28
|
"vue": "^3.0.2"
|
|
29
29
|
},
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"package": {
|
|
45
45
|
"productName": "Kendo UI for Vue",
|
|
46
46
|
"productCode": "KENDOUIVUE",
|
|
47
|
-
"publishDate":
|
|
47
|
+
"publishDate": 1738834079,
|
|
48
48
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
49
49
|
}
|
|
50
50
|
},
|