@progress/kendo-react-layout 11.0.0-develop.2 → 11.0.0-develop.21
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 +30 -30
- package/dist/cdn/js/kendo-react-layout.js +1 -1
- package/index.d.mts +34 -2
- package/index.d.ts +34 -2
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
- package/tilelayout/InternalTile.js +1 -1
- package/tilelayout/InternalTile.mjs +109 -86
- package/tilelayout/TileLayout.js +1 -1
- package/tilelayout/TileLayout.mjs +61 -48
package/index.d.mts
CHANGED
|
@@ -233,7 +233,7 @@ export declare interface ActionSheetProps {
|
|
|
233
233
|
* <ActionSheet subTitle="Subtitle text" />
|
|
234
234
|
* ```
|
|
235
235
|
*/
|
|
236
|
-
subTitle?:
|
|
236
|
+
subTitle?: React_2.ReactNode;
|
|
237
237
|
/**
|
|
238
238
|
* Specifies the text that is rendered as title.
|
|
239
239
|
*
|
|
@@ -242,7 +242,7 @@ export declare interface ActionSheetProps {
|
|
|
242
242
|
* <ActionSheet title="Title text" />
|
|
243
243
|
* ```
|
|
244
244
|
*/
|
|
245
|
-
title?:
|
|
245
|
+
title?: React_2.ReactNode;
|
|
246
246
|
/**
|
|
247
247
|
* **Deprecated**. Fires when the modal overlay is clicked. Use `onClose` event instead.
|
|
248
248
|
*
|
|
@@ -3329,6 +3329,9 @@ export declare const Menu: ForwardRefExoticComponent<MenuProps & RefAttributes<a
|
|
|
3329
3329
|
/**
|
|
3330
3330
|
* Represents the [KendoReact Menu component]({% slug overview_menu %}).
|
|
3331
3331
|
*
|
|
3332
|
+
* @remarks
|
|
3333
|
+
* Supported children components are: {@link MenuItem}.
|
|
3334
|
+
*
|
|
3332
3335
|
* @example
|
|
3333
3336
|
* ```jsx
|
|
3334
3337
|
* class App extends React.Component {
|
|
@@ -3436,6 +3439,12 @@ export declare class MenuClassComponent extends React_2.Component<MenuProps, Men
|
|
|
3436
3439
|
export declare interface MenuHandle extends Pick<MenuClassComponent, keyof MenuClassComponent> {
|
|
3437
3440
|
}
|
|
3438
3441
|
|
|
3442
|
+
/**
|
|
3443
|
+
* Represents the MenuItem component.
|
|
3444
|
+
*
|
|
3445
|
+
* @remarks
|
|
3446
|
+
* Supported children components are: {@link MenuItem}.
|
|
3447
|
+
*/
|
|
3439
3448
|
export declare class MenuItem extends React_2.Component<MenuItemProps, {}> {
|
|
3440
3449
|
/**
|
|
3441
3450
|
* @hidden
|
|
@@ -3773,6 +3782,12 @@ declare enum NavigationAction {
|
|
|
3773
3782
|
Right = 6
|
|
3774
3783
|
}
|
|
3775
3784
|
|
|
3785
|
+
/**
|
|
3786
|
+
* Represents the [KendoReact PanelBar component]({% slug overview_panelbar %}).
|
|
3787
|
+
*
|
|
3788
|
+
* @remarks
|
|
3789
|
+
* Supported children components are: {@link PanelBarItem}.
|
|
3790
|
+
*/
|
|
3776
3791
|
export declare class PanelBar extends React_2.Component<PanelBarProps, PanelBarState> {
|
|
3777
3792
|
/**
|
|
3778
3793
|
* @hidden
|
|
@@ -3841,6 +3856,12 @@ export declare class PanelBar extends React_2.Component<PanelBarProps, PanelBarS
|
|
|
3841
3856
|
*/
|
|
3842
3857
|
export declare type PanelBarExpandMode = 'single' | 'multiple';
|
|
3843
3858
|
|
|
3859
|
+
/**
|
|
3860
|
+
* Represents the PanelBarItem component.
|
|
3861
|
+
*
|
|
3862
|
+
* @remarks
|
|
3863
|
+
* Supported children components are: {@link PanelBarItem}.
|
|
3864
|
+
*/
|
|
3844
3865
|
export declare class PanelBarItem extends React_2.PureComponent<PanelBarItemProps, PanelBarItemState> {
|
|
3845
3866
|
/**
|
|
3846
3867
|
* @hidden
|
|
@@ -4939,6 +4960,12 @@ export declare interface StepProps {
|
|
|
4939
4960
|
/** @hidden */
|
|
4940
4961
|
export declare const TabStrip: ForwardRefExoticComponent<TabStripProps & RefAttributes<any>>;
|
|
4941
4962
|
|
|
4963
|
+
/**
|
|
4964
|
+
* Represents the TabStrip component.
|
|
4965
|
+
*
|
|
4966
|
+
* @remarks
|
|
4967
|
+
* Supported children components are: {@link TabStripTab}.
|
|
4968
|
+
*/
|
|
4942
4969
|
export declare class TabStripClassComponent extends React_2.Component<TabStripProps, TabStripStateProps, {}> {
|
|
4943
4970
|
/**
|
|
4944
4971
|
* @hidden
|
|
@@ -5489,6 +5516,9 @@ declare interface TabStripStateProps {
|
|
|
5489
5516
|
containerScrollPosition: StateScrollPosition;
|
|
5490
5517
|
}
|
|
5491
5518
|
|
|
5519
|
+
/**
|
|
5520
|
+
* Represents the TabStripTab component.
|
|
5521
|
+
*/
|
|
5492
5522
|
export declare class TabStripTab extends React_2.Component<TabStripTabProps, {}> {
|
|
5493
5523
|
/**
|
|
5494
5524
|
* @hidden
|
|
@@ -5567,6 +5597,7 @@ export declare class TileLayout extends React_2.Component<TileLayoutProps, TileL
|
|
|
5567
5597
|
rowSpan: number;
|
|
5568
5598
|
colSpan: number;
|
|
5569
5599
|
} & TilePosition)[];
|
|
5600
|
+
activeHint: boolean;
|
|
5570
5601
|
};
|
|
5571
5602
|
/**
|
|
5572
5603
|
* Gets the HTML element of the TileLayout component.
|
|
@@ -5829,6 +5860,7 @@ export declare interface TileLayoutRepositionEvent extends BaseEvent<TileLayout>
|
|
|
5829
5860
|
*/
|
|
5830
5861
|
export declare interface TileLayoutState {
|
|
5831
5862
|
positions: TileStrictPosition[];
|
|
5863
|
+
activeHint?: boolean;
|
|
5832
5864
|
}
|
|
5833
5865
|
|
|
5834
5866
|
/**
|
package/index.d.ts
CHANGED
|
@@ -233,7 +233,7 @@ export declare interface ActionSheetProps {
|
|
|
233
233
|
* <ActionSheet subTitle="Subtitle text" />
|
|
234
234
|
* ```
|
|
235
235
|
*/
|
|
236
|
-
subTitle?:
|
|
236
|
+
subTitle?: React_2.ReactNode;
|
|
237
237
|
/**
|
|
238
238
|
* Specifies the text that is rendered as title.
|
|
239
239
|
*
|
|
@@ -242,7 +242,7 @@ export declare interface ActionSheetProps {
|
|
|
242
242
|
* <ActionSheet title="Title text" />
|
|
243
243
|
* ```
|
|
244
244
|
*/
|
|
245
|
-
title?:
|
|
245
|
+
title?: React_2.ReactNode;
|
|
246
246
|
/**
|
|
247
247
|
* **Deprecated**. Fires when the modal overlay is clicked. Use `onClose` event instead.
|
|
248
248
|
*
|
|
@@ -3329,6 +3329,9 @@ export declare const Menu: ForwardRefExoticComponent<MenuProps & RefAttributes<a
|
|
|
3329
3329
|
/**
|
|
3330
3330
|
* Represents the [KendoReact Menu component]({% slug overview_menu %}).
|
|
3331
3331
|
*
|
|
3332
|
+
* @remarks
|
|
3333
|
+
* Supported children components are: {@link MenuItem}.
|
|
3334
|
+
*
|
|
3332
3335
|
* @example
|
|
3333
3336
|
* ```jsx
|
|
3334
3337
|
* class App extends React.Component {
|
|
@@ -3436,6 +3439,12 @@ export declare class MenuClassComponent extends React_2.Component<MenuProps, Men
|
|
|
3436
3439
|
export declare interface MenuHandle extends Pick<MenuClassComponent, keyof MenuClassComponent> {
|
|
3437
3440
|
}
|
|
3438
3441
|
|
|
3442
|
+
/**
|
|
3443
|
+
* Represents the MenuItem component.
|
|
3444
|
+
*
|
|
3445
|
+
* @remarks
|
|
3446
|
+
* Supported children components are: {@link MenuItem}.
|
|
3447
|
+
*/
|
|
3439
3448
|
export declare class MenuItem extends React_2.Component<MenuItemProps, {}> {
|
|
3440
3449
|
/**
|
|
3441
3450
|
* @hidden
|
|
@@ -3773,6 +3782,12 @@ declare enum NavigationAction {
|
|
|
3773
3782
|
Right = 6
|
|
3774
3783
|
}
|
|
3775
3784
|
|
|
3785
|
+
/**
|
|
3786
|
+
* Represents the [KendoReact PanelBar component]({% slug overview_panelbar %}).
|
|
3787
|
+
*
|
|
3788
|
+
* @remarks
|
|
3789
|
+
* Supported children components are: {@link PanelBarItem}.
|
|
3790
|
+
*/
|
|
3776
3791
|
export declare class PanelBar extends React_2.Component<PanelBarProps, PanelBarState> {
|
|
3777
3792
|
/**
|
|
3778
3793
|
* @hidden
|
|
@@ -3841,6 +3856,12 @@ export declare class PanelBar extends React_2.Component<PanelBarProps, PanelBarS
|
|
|
3841
3856
|
*/
|
|
3842
3857
|
export declare type PanelBarExpandMode = 'single' | 'multiple';
|
|
3843
3858
|
|
|
3859
|
+
/**
|
|
3860
|
+
* Represents the PanelBarItem component.
|
|
3861
|
+
*
|
|
3862
|
+
* @remarks
|
|
3863
|
+
* Supported children components are: {@link PanelBarItem}.
|
|
3864
|
+
*/
|
|
3844
3865
|
export declare class PanelBarItem extends React_2.PureComponent<PanelBarItemProps, PanelBarItemState> {
|
|
3845
3866
|
/**
|
|
3846
3867
|
* @hidden
|
|
@@ -4939,6 +4960,12 @@ export declare interface StepProps {
|
|
|
4939
4960
|
/** @hidden */
|
|
4940
4961
|
export declare const TabStrip: ForwardRefExoticComponent<TabStripProps & RefAttributes<any>>;
|
|
4941
4962
|
|
|
4963
|
+
/**
|
|
4964
|
+
* Represents the TabStrip component.
|
|
4965
|
+
*
|
|
4966
|
+
* @remarks
|
|
4967
|
+
* Supported children components are: {@link TabStripTab}.
|
|
4968
|
+
*/
|
|
4942
4969
|
export declare class TabStripClassComponent extends React_2.Component<TabStripProps, TabStripStateProps, {}> {
|
|
4943
4970
|
/**
|
|
4944
4971
|
* @hidden
|
|
@@ -5489,6 +5516,9 @@ declare interface TabStripStateProps {
|
|
|
5489
5516
|
containerScrollPosition: StateScrollPosition;
|
|
5490
5517
|
}
|
|
5491
5518
|
|
|
5519
|
+
/**
|
|
5520
|
+
* Represents the TabStripTab component.
|
|
5521
|
+
*/
|
|
5492
5522
|
export declare class TabStripTab extends React_2.Component<TabStripTabProps, {}> {
|
|
5493
5523
|
/**
|
|
5494
5524
|
* @hidden
|
|
@@ -5567,6 +5597,7 @@ export declare class TileLayout extends React_2.Component<TileLayoutProps, TileL
|
|
|
5567
5597
|
rowSpan: number;
|
|
5568
5598
|
colSpan: number;
|
|
5569
5599
|
} & TilePosition)[];
|
|
5600
|
+
activeHint: boolean;
|
|
5570
5601
|
};
|
|
5571
5602
|
/**
|
|
5572
5603
|
* Gets the HTML element of the TileLayout component.
|
|
@@ -5829,6 +5860,7 @@ export declare interface TileLayoutRepositionEvent extends BaseEvent<TileLayout>
|
|
|
5829
5860
|
*/
|
|
5830
5861
|
export declare interface TileLayoutState {
|
|
5831
5862
|
positions: TileStrictPosition[];
|
|
5863
|
+
activeHint?: boolean;
|
|
5832
5864
|
}
|
|
5833
5865
|
|
|
5834
5866
|
/**
|
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-react-layout",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-layout",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1747664144,version:"11.0.0-develop.21",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "11.0.0-develop.
|
|
13
|
+
publishDate: 1747664144,
|
|
14
|
+
version: "11.0.0-develop.21",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-layout",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.21",
|
|
4
4
|
"description": "React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
},
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@progress/kendo-licensing": "^1.
|
|
29
|
-
"@progress/kendo-react-animation": "11.0.0-develop.
|
|
30
|
-
"@progress/kendo-react-buttons": "11.0.0-develop.
|
|
31
|
-
"@progress/kendo-react-common": "11.0.0-develop.
|
|
32
|
-
"@progress/kendo-react-intl": "11.0.0-develop.
|
|
33
|
-
"@progress/kendo-react-popup": "11.0.0-develop.
|
|
34
|
-
"@progress/kendo-react-progressbars": "11.0.0-develop.
|
|
28
|
+
"@progress/kendo-licensing": "^1.6.0",
|
|
29
|
+
"@progress/kendo-react-animation": "11.0.0-develop.21",
|
|
30
|
+
"@progress/kendo-react-buttons": "11.0.0-develop.21",
|
|
31
|
+
"@progress/kendo-react-common": "11.0.0-develop.21",
|
|
32
|
+
"@progress/kendo-react-intl": "11.0.0-develop.21",
|
|
33
|
+
"@progress/kendo-react-popup": "11.0.0-develop.21",
|
|
34
|
+
"@progress/kendo-react-progressbars": "11.0.0-develop.21",
|
|
35
35
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
36
36
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
37
37
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"package": {
|
|
77
77
|
"productName": "KendoReact",
|
|
78
78
|
"productCode": "KENDOUIREACT",
|
|
79
|
-
"publishDate":
|
|
79
|
+
"publishDate": 1747664144,
|
|
80
80
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
@@ -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 y=require("react"),
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("react"),a=require("prop-types"),u=require("@progress/kendo-react-common"),b=require("./ResizeHandlers.js");function E(c){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(c){for(const e in c)if(e!=="default"){const s=Object.getOwnPropertyDescriptor(c,e);Object.defineProperty(t,e,s.get?s:{enumerable:!0,get:()=>c[e]})}}return t.default=c,Object.freeze(t)}const d=E(y),f=200,p=class p extends d.Component{constructor(){super(...arguments),this.state={rtl:!1,visibleHint:!1},this.oldSize={},this.draggable=null,this.dragging=!1,this.resizing=!1,this.element=null,this.hintElement=null,this.ignoreDrag=!1,this.pressOffset={x:0,y:0},this.pressXY={x:0,y:0},this.currentTranslate={x:0,y:0},this.preventDataOps=void 0,this.handleResize=(t,e)=>{if(e.end){this.handleRelease();return}if(!this.element||!this.hintElement)return;const s=t.clientX,l=t.clientY;this.resizing=!0;const r=(e.direction!=="ns"?s-this.pressXY.x:0)*(this.state.rtl?-1:1),i=e.direction!=="ew"?l-this.pressXY.y:0;if(this.dragElement&&(this.state.rtl?this.dragElement.style.marginLeft=-r+"px":this.dragElement.style.marginRight=-r+"px",this.dragElement.style.height=`calc(100% + ${i}px)`),this.hintElement.classList.add("k-layout-item-hint-resize"),this.preventDataOps)return;let n=0,o=0;const h=this.element.getBoundingClientRect();r>h.width/this.props.defaultPosition.colSpan/3&&(n=1),r<-h.width/this.props.defaultPosition.colSpan/1.25&&(n=-1),i>h.height/this.props.defaultPosition.rowSpan/3&&(o=1),i<-h.height/this.props.defaultPosition.rowSpan/1.25&&(o=-1),(n!==0||o!==0)&&this.props.update(this.props.index,0,0,o,n)},this.handlePress=t=>{if(!this.dragElement)return;if(this.pressXY={x:t.event.clientX,y:t.event.clientY},this.ignoreDrag=!1,this.props.ignoreDrag&&this.props.ignoreDrag(t.event.originalEvent)){this.ignoreDrag=!0;return}this.element&&(this.element.style.zIndex="10",this.setState({visibleHint:!0})),this.dragElement.classList.remove("k-cursor-move"),this.dragElement.classList.add("k-cursor-grabbing");const e=this.dragElement.getBoundingClientRect();this.pressOffset={x:t.event.clientX-e.x,y:t.event.clientY-e.y},this.props.onPress()},this.handleDrag=t=>{var n;if(this.ignoreDrag)return;const e=this.dragElement;if(t.event.originalEvent.defaultPrevented||!e)return;this.dragging=!0,t.event.originalEvent.preventDefault();const s=e.getBoundingClientRect();if(this.currentTranslate={x:t.event.clientX-s.x-this.pressOffset.x+this.currentTranslate.x,y:t.event.clientY-s.y-this.pressOffset.y+this.currentTranslate.y},e.style.transform=`translate(${this.currentTranslate.x}px, ${this.currentTranslate.y}px)`,e.style.transition="transform 0s",this.preventDataOps)return;let l=0,r=0;this.currentTranslate.y>.7*s.height/this.props.defaultPosition.rowSpan&&(r=1),this.currentTranslate.y<.7*-s.height/this.props.defaultPosition.rowSpan&&(r=-1),this.currentTranslate.x>.7*s.width/this.props.defaultPosition.colSpan&&(l=1),this.currentTranslate.x<.7*-s.width/this.props.defaultPosition.colSpan&&(l=-1),this.props.update(this.props.index,r,this.state.rtl?-l:l,0,0);const i=(n=this.element)==null?void 0:n.closest(".k-tilelayout");if(i&&this.hintElement){const o=i.getBoundingClientRect(),h=u.getScrollbarWidth()||50;t.event.clientX<o.left-h||t.event.clientX>o.right-h||t.event.clientY<o.top||t.event.clientY>o.bottom?this.hintElement.style.display="none":this.hintElement.style.display="block"}},this.handleRelease=()=>{this.dragging=this.resizing=!1,this.currentTranslate={x:0,y:0},this.element&&this.hintElement&&(this.element.style.zIndex="1",this.hintElement.classList.remove("k-layout-item-hint-resize"),this.setState({visibleHint:!1}));const t=this.dragElement;t&&(t.style.transform="translate(0px, 0px)",t.style.transition=`transform ${f}ms cubic-bezier(0.2, 0, 0, 1) 0s`,t.style.marginRight="0px",t.style.marginLeft="0px",t.style.height="100%",t.classList.remove("k-cursor-grabbing"),t.classList.add("k-cursor-move")),this.props.onRelease()},this.handleMouseDown=()=>{this.setInitialHintPosition()},this.handleMouseUp=()=>{setTimeout(()=>{this.setInitialHintPosition()},100)},this.calcNewHintPosition=()=>{if(!this.dragElement||!this.hintElement)return;const t=this.dragElement.getBoundingClientRect(),e=t.top+this.currentTranslate.y,s=t.left+this.currentTranslate.x;this.hintElement.style.top=`${e}px`,this.hintElement.style.left=`${s}px`,this.hintElement.style.display="block"}}get reorderable(){return this.props.reorderable!==void 0?this.props.reorderable:p.defaultProps.reorderable}get dragElement(){return this.draggable?this.draggable.element:void 0}componentDidMount(){this.element&&(getComputedStyle(this.element).direction==="rtl"&&this.setState({rtl:!0}),this.hintElement&&(this.hintElement.style.height=this.element.offsetHeight+"px",this.hintElement.style.width=this.element.offsetWidth+"px"))}render(){u.canUseDOM&&clearTimeout&&typeof clearTimeout=="function"&&(clearTimeout(this.preventDataOps),this.preventDataOps=window.setTimeout(()=>{this.preventDataOps=void 0},200));const t=this.props.defaultPosition,e=this.props.resizable!==void 0?this.props.resizable:p.defaultProps.resizable,s={gridColumnStart:t.col,gridColumnEnd:`span ${t.colSpan}`,gridRowStart:t.row,gridRowEnd:`span ${t.rowSpan}`,outline:"none",order:t.order,display:"block",...this.props.hintStyle},l={gridColumnStart:t.col,gridColumnEnd:`span ${t.colSpan}`,gridRowStart:t.row,gridRowEnd:`span ${t.rowSpan}`,order:t.order},r=d.createElement("div",{ref:i=>{this.draggable=i?{element:i}:null},role:"listitem",tabIndex:0,"aria-labelledby":typeof this.props.header=="string"?this.props.header:`tile-${this.props.index}`,"aria-keyshortcuts":"Enter",className:u.classNames("k-tilelayout-item k-card",{"k-cursor-move":this.reorderable},this.props.className),style:{height:"100%",...l,...this.props.style},onMouseDown:this.handleMouseDown,onMouseUp:this.handleMouseUp},this.props.children,d.createElement(b.ResizeHandlers,{onPress:this.handlePress,onResize:this.handleResize,resizable:e,rtl:this.state.rtl}));return d.createElement(d.Fragment,null,this.state.visibleHint&&d.createElement("div",{ref:i=>{this.hintElement=i},style:{position:"fixed",...s},className:u.classNames("k-layout-item-hint",this.props.hintClassName)}),d.createElement(u.Draggable,{ref:i=>{this.draggable=i,this.element=i?i.element:null},onDrag:this.props.reorderable?this.handleDrag:void 0,onRelease:this.props.reorderable?this.handleRelease:void 0,onPress:this.props.reorderable?this.handlePress:void 0},r))}getSnapshotBeforeUpdate(t){return this.oldSize={},this.dragElement&&(this.oldSize=this.dragElement.getBoundingClientRect()),null}setInitialHintPosition(){if(this.element&&this.hintElement){const t=this.element.getBoundingClientRect();this.hintElement.style.top=t.top+"px",this.hintElement.style.left=t.left+"px",this.hintElement.style.height=this.element.offsetHeight+"px",this.hintElement.style.width=this.element.offsetWidth+"px"}}componentDidUpdate(t){const e=this.dragElement;if(!e)return;const s=e.getBoundingClientRect(),l=this.oldSize;if(this.resizing){const n=s.width-l.width;if(this.state.rtl){const g=parseFloat(e.style.marginLeft||"0");e.style.marginLeft=g-n+"px"}else{const g=parseFloat(e.style.marginRight||"0");e.style.marginRight=g+n+"px"}this.pressXY.x+=this.state.rtl?-n:n;const o=s.height-l.height,h=parseFloat(e.style.height.substring(12));e.style.height=`calc(100% + ${h+o}px)`,this.pressXY.y+=o}const r=l.left-s.left,i=l.top-s.top;if(!(r===0&&i===0)){if(this.dragging){(t.defaultPosition.order!==this.props.defaultPosition.order||t.defaultPosition.col!==this.props.defaultPosition.col)&&(this.currentTranslate.x=0,this.currentTranslate.y=0,e.style.transform="",this.calcNewHintPosition());return}Math.abs(i)<15&&Math.abs(r)<15||requestAnimationFrame(()=>{const n=this.element;n&&(n.style.transform=`translate(${r}px, ${i}px)`,n.style.transition="transform 0s",requestAnimationFrame(()=>{n.style.transform="",n.style.transition=`transform ${f}ms cubic-bezier(0.2, 0, 0, 1) 0s`}))})}}};p.propTypes={defaultPosition:a.object.isRequired,style:a.object,className:a.string,hintStyle:a.object,hintClassName:a.string,header:a.any,body:a.any,item:a.any,resizable:a.oneOf(["horizontal","vertical",!0,!1]),reorderable:a.bool},p.displayName="KendoTileLayoutItem",p.defaultProps={resizable:!0,reorderable:!0};let m=p;exports.InternalTile=m;
|
|
@@ -5,14 +5,15 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import * as
|
|
9
|
-
import
|
|
10
|
-
import { canUseDOM as
|
|
11
|
-
import { ResizeHandlers as
|
|
12
|
-
const
|
|
8
|
+
import * as d from "react";
|
|
9
|
+
import a from "prop-types";
|
|
10
|
+
import { getScrollbarWidth as f, canUseDOM as y, classNames as m, Draggable as x } from "@progress/kendo-react-common";
|
|
11
|
+
import { ResizeHandlers as E } from "./ResizeHandlers.mjs";
|
|
12
|
+
const g = 200, p = class p extends d.Component {
|
|
13
13
|
constructor() {
|
|
14
14
|
super(...arguments), this.state = {
|
|
15
|
-
rtl: !1
|
|
15
|
+
rtl: !1,
|
|
16
|
+
visibleHint: !1
|
|
16
17
|
}, this.oldSize = {}, this.draggable = null, this.dragging = !1, this.resizing = !1, this.element = null, this.hintElement = null, this.ignoreDrag = !1, this.pressOffset = { x: 0, y: 0 }, this.pressXY = { x: 0, y: 0 }, this.currentTranslate = { x: 0, y: 0 }, this.preventDataOps = void 0, this.handleResize = (t, e) => {
|
|
17
18
|
if (e.end) {
|
|
18
19
|
this.handleRelease();
|
|
@@ -20,14 +21,14 @@ const m = 200, h = class h extends p.Component {
|
|
|
20
21
|
}
|
|
21
22
|
if (!this.element || !this.hintElement)
|
|
22
23
|
return;
|
|
23
|
-
const
|
|
24
|
+
const n = t.clientX, l = t.clientY;
|
|
24
25
|
this.resizing = !0;
|
|
25
|
-
const
|
|
26
|
-
if (this.dragElement && (this.state.rtl ? this.dragElement.style.marginLeft = -
|
|
26
|
+
const r = (e.direction !== "ns" ? n - this.pressXY.x : 0) * (this.state.rtl ? -1 : 1), s = e.direction !== "ew" ? l - this.pressXY.y : 0;
|
|
27
|
+
if (this.dragElement && (this.state.rtl ? this.dragElement.style.marginLeft = -r + "px" : this.dragElement.style.marginRight = -r + "px", this.dragElement.style.height = `calc(100% + ${s}px)`), this.hintElement.classList.add("k-layout-item-hint-resize"), this.preventDataOps)
|
|
27
28
|
return;
|
|
28
|
-
let
|
|
29
|
-
const
|
|
30
|
-
|
|
29
|
+
let i = 0, o = 0;
|
|
30
|
+
const h = this.element.getBoundingClientRect();
|
|
31
|
+
r > h.width / this.props.defaultPosition.colSpan / 3 && (i = 1), r < -h.width / this.props.defaultPosition.colSpan / 1.25 && (i = -1), s > h.height / this.props.defaultPosition.rowSpan / 3 && (o = 1), s < -h.height / this.props.defaultPosition.rowSpan / 1.25 && (o = -1), (i !== 0 || o !== 0) && this.props.update(this.props.index, 0, 0, o, i);
|
|
31
32
|
}, this.handlePress = (t) => {
|
|
32
33
|
if (!this.dragElement)
|
|
33
34
|
return;
|
|
@@ -38,35 +39,52 @@ const m = 200, h = class h extends p.Component {
|
|
|
38
39
|
this.ignoreDrag = !0;
|
|
39
40
|
return;
|
|
40
41
|
}
|
|
41
|
-
this.element &&
|
|
42
|
+
this.element && (this.element.style.zIndex = "10", this.setState({ visibleHint: !0 })), this.dragElement.classList.remove("k-cursor-move"), this.dragElement.classList.add("k-cursor-grabbing");
|
|
42
43
|
const e = this.dragElement.getBoundingClientRect();
|
|
43
44
|
this.pressOffset = {
|
|
44
45
|
x: t.event.clientX - e.x,
|
|
45
46
|
y: t.event.clientY - e.y
|
|
46
|
-
};
|
|
47
|
+
}, this.props.onPress();
|
|
47
48
|
}, this.handleDrag = (t) => {
|
|
49
|
+
var i;
|
|
48
50
|
if (this.ignoreDrag)
|
|
49
51
|
return;
|
|
50
52
|
const e = this.dragElement;
|
|
51
53
|
if (t.event.originalEvent.defaultPrevented || !e)
|
|
52
54
|
return;
|
|
53
55
|
this.dragging = !0, t.event.originalEvent.preventDefault();
|
|
54
|
-
const
|
|
56
|
+
const n = e.getBoundingClientRect();
|
|
55
57
|
if (this.currentTranslate = {
|
|
56
|
-
x: t.event.clientX -
|
|
57
|
-
y: t.event.clientY -
|
|
58
|
+
x: t.event.clientX - n.x - this.pressOffset.x + this.currentTranslate.x,
|
|
59
|
+
y: t.event.clientY - n.y - this.pressOffset.y + this.currentTranslate.y
|
|
58
60
|
}, e.style.transform = `translate(${this.currentTranslate.x}px, ${this.currentTranslate.y}px)`, e.style.transition = "transform 0s", this.preventDataOps)
|
|
59
61
|
return;
|
|
60
|
-
let
|
|
61
|
-
this.currentTranslate.y > 0.7 *
|
|
62
|
+
let l = 0, r = 0;
|
|
63
|
+
this.currentTranslate.y > 0.7 * n.height / this.props.defaultPosition.rowSpan && (r = 1), this.currentTranslate.y < 0.7 * -n.height / this.props.defaultPosition.rowSpan && (r = -1), this.currentTranslate.x > 0.7 * n.width / this.props.defaultPosition.colSpan && (l = 1), this.currentTranslate.x < 0.7 * -n.width / this.props.defaultPosition.colSpan && (l = -1), this.props.update(this.props.index, r, this.state.rtl ? -l : l, 0, 0);
|
|
64
|
+
const s = (i = this.element) == null ? void 0 : i.closest(".k-tilelayout");
|
|
65
|
+
if (s && this.hintElement) {
|
|
66
|
+
const o = s.getBoundingClientRect(), h = f() || 50;
|
|
67
|
+
t.event.clientX < o.left - h || t.event.clientX > o.right - h || t.event.clientY < o.top || t.event.clientY > o.bottom ? this.hintElement.style.display = "none" : this.hintElement.style.display = "block";
|
|
68
|
+
}
|
|
62
69
|
}, this.handleRelease = () => {
|
|
63
|
-
this.dragging = this.resizing = !1, this.currentTranslate = { x: 0, y: 0 }, this.element && this.hintElement && (this.element.style.zIndex = "1", this.hintElement.classList.remove("k-layout-item-hint-resize"), this.
|
|
70
|
+
this.dragging = this.resizing = !1, this.currentTranslate = { x: 0, y: 0 }, this.element && this.hintElement && (this.element.style.zIndex = "1", this.hintElement.classList.remove("k-layout-item-hint-resize"), this.setState({ visibleHint: !1 }));
|
|
64
71
|
const t = this.dragElement;
|
|
65
|
-
t && (t.style.transform = "translate(0px, 0px)", t.style.transition = `transform ${
|
|
72
|
+
t && (t.style.transform = "translate(0px, 0px)", t.style.transition = `transform ${g}ms cubic-bezier(0.2, 0, 0, 1) 0s`, t.style.marginRight = "0px", t.style.marginLeft = "0px", t.style.height = "100%", t.classList.remove("k-cursor-grabbing"), t.classList.add("k-cursor-move")), this.props.onRelease();
|
|
73
|
+
}, this.handleMouseDown = () => {
|
|
74
|
+
this.setInitialHintPosition();
|
|
75
|
+
}, this.handleMouseUp = () => {
|
|
76
|
+
setTimeout(() => {
|
|
77
|
+
this.setInitialHintPosition();
|
|
78
|
+
}, 100);
|
|
79
|
+
}, this.calcNewHintPosition = () => {
|
|
80
|
+
if (!this.dragElement || !this.hintElement)
|
|
81
|
+
return;
|
|
82
|
+
const t = this.dragElement.getBoundingClientRect(), e = t.top + this.currentTranslate.y, n = t.left + this.currentTranslate.x;
|
|
83
|
+
this.hintElement.style.top = `${e}px`, this.hintElement.style.left = `${n}px`, this.hintElement.style.display = "block";
|
|
66
84
|
};
|
|
67
85
|
}
|
|
68
86
|
get reorderable() {
|
|
69
|
-
return this.props.reorderable !== void 0 ? this.props.reorderable :
|
|
87
|
+
return this.props.reorderable !== void 0 ? this.props.reorderable : p.defaultProps.reorderable;
|
|
70
88
|
}
|
|
71
89
|
get dragElement() {
|
|
72
90
|
return this.draggable ? this.draggable.element : void 0;
|
|
@@ -77,40 +95,46 @@ const m = 200, h = class h extends p.Component {
|
|
|
77
95
|
}), this.hintElement && (this.hintElement.style.height = this.element.offsetHeight + "px", this.hintElement.style.width = this.element.offsetWidth + "px"));
|
|
78
96
|
}
|
|
79
97
|
render() {
|
|
80
|
-
|
|
98
|
+
y && clearTimeout && typeof clearTimeout == "function" && (clearTimeout(this.preventDataOps), this.preventDataOps = window.setTimeout(() => {
|
|
81
99
|
this.preventDataOps = void 0;
|
|
82
100
|
}, 200));
|
|
83
|
-
const t = this.props.defaultPosition, e = this.props.resizable !== void 0 ? this.props.resizable :
|
|
101
|
+
const t = this.props.defaultPosition, e = this.props.resizable !== void 0 ? this.props.resizable : p.defaultProps.resizable, n = {
|
|
84
102
|
gridColumnStart: t.col,
|
|
85
103
|
gridColumnEnd: `span ${t.colSpan}`,
|
|
86
104
|
gridRowStart: t.row,
|
|
87
105
|
gridRowEnd: `span ${t.rowSpan}`,
|
|
88
106
|
outline: "none",
|
|
89
107
|
order: t.order,
|
|
90
|
-
display: "
|
|
108
|
+
display: "block",
|
|
91
109
|
...this.props.hintStyle
|
|
92
|
-
},
|
|
110
|
+
}, l = {
|
|
93
111
|
gridColumnStart: t.col,
|
|
94
112
|
gridColumnEnd: `span ${t.colSpan}`,
|
|
95
113
|
gridRowStart: t.row,
|
|
96
114
|
gridRowEnd: `span ${t.rowSpan}`,
|
|
97
115
|
order: t.order
|
|
98
|
-
},
|
|
116
|
+
}, r = /* @__PURE__ */ d.createElement(
|
|
99
117
|
"div",
|
|
100
118
|
{
|
|
101
119
|
ref: (s) => {
|
|
102
120
|
this.draggable = s ? { element: s } : null;
|
|
103
121
|
},
|
|
104
|
-
|
|
122
|
+
role: "listitem",
|
|
123
|
+
tabIndex: 0,
|
|
124
|
+
"aria-labelledby": typeof this.props.header == "string" ? this.props.header : `tile-${this.props.index}`,
|
|
125
|
+
"aria-keyshortcuts": "Enter",
|
|
126
|
+
className: m(
|
|
105
127
|
"k-tilelayout-item k-card",
|
|
106
|
-
{ "k-cursor-
|
|
128
|
+
{ "k-cursor-move": this.reorderable },
|
|
107
129
|
this.props.className
|
|
108
130
|
),
|
|
109
|
-
style: { height: "100%", ...
|
|
131
|
+
style: { height: "100%", ...l, ...this.props.style },
|
|
132
|
+
onMouseDown: this.handleMouseDown,
|
|
133
|
+
onMouseUp: this.handleMouseUp
|
|
110
134
|
},
|
|
111
135
|
this.props.children,
|
|
112
|
-
/* @__PURE__ */
|
|
113
|
-
|
|
136
|
+
/* @__PURE__ */ d.createElement(
|
|
137
|
+
E,
|
|
114
138
|
{
|
|
115
139
|
onPress: this.handlePress,
|
|
116
140
|
onResize: this.handleResize,
|
|
@@ -119,37 +143,27 @@ const m = 200, h = class h extends p.Component {
|
|
|
119
143
|
}
|
|
120
144
|
)
|
|
121
145
|
);
|
|
122
|
-
return /* @__PURE__ */
|
|
146
|
+
return /* @__PURE__ */ d.createElement(d.Fragment, null, this.state.visibleHint && /* @__PURE__ */ d.createElement(
|
|
123
147
|
"div",
|
|
124
148
|
{
|
|
125
149
|
ref: (s) => {
|
|
126
|
-
this.
|
|
150
|
+
this.hintElement = s;
|
|
127
151
|
},
|
|
128
|
-
style: n
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
style: { position: "absolute", ...i },
|
|
137
|
-
className: g("k-layout-item-hint", this.props.hintClassName)
|
|
138
|
-
}
|
|
139
|
-
),
|
|
140
|
-
/* @__PURE__ */ p.createElement(
|
|
141
|
-
y,
|
|
142
|
-
{
|
|
143
|
-
ref: (s) => {
|
|
144
|
-
this.draggable = s;
|
|
145
|
-
},
|
|
146
|
-
onDrag: this.props.reorderable ? this.handleDrag : void 0,
|
|
147
|
-
onRelease: this.props.reorderable ? this.handleRelease : void 0,
|
|
148
|
-
onPress: this.props.reorderable ? this.handlePress : void 0
|
|
152
|
+
style: { position: "fixed", ...n },
|
|
153
|
+
className: m("k-layout-item-hint", this.props.hintClassName)
|
|
154
|
+
}
|
|
155
|
+
), /* @__PURE__ */ d.createElement(
|
|
156
|
+
x,
|
|
157
|
+
{
|
|
158
|
+
ref: (s) => {
|
|
159
|
+
this.draggable = s, this.element = s ? s.element : null;
|
|
149
160
|
},
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
161
|
+
onDrag: this.props.reorderable ? this.handleDrag : void 0,
|
|
162
|
+
onRelease: this.props.reorderable ? this.handleRelease : void 0,
|
|
163
|
+
onPress: this.props.reorderable ? this.handlePress : void 0
|
|
164
|
+
},
|
|
165
|
+
r
|
|
166
|
+
));
|
|
153
167
|
}
|
|
154
168
|
/**
|
|
155
169
|
* @hidden
|
|
@@ -157,6 +171,15 @@ const m = 200, h = class h extends p.Component {
|
|
|
157
171
|
getSnapshotBeforeUpdate(t) {
|
|
158
172
|
return this.oldSize = {}, this.dragElement && (this.oldSize = this.dragElement.getBoundingClientRect()), null;
|
|
159
173
|
}
|
|
174
|
+
/**
|
|
175
|
+
* @hidden
|
|
176
|
+
*/
|
|
177
|
+
setInitialHintPosition() {
|
|
178
|
+
if (this.element && this.hintElement) {
|
|
179
|
+
const t = this.element.getBoundingClientRect();
|
|
180
|
+
this.hintElement.style.top = t.top + "px", this.hintElement.style.left = t.left + "px", this.hintElement.style.height = this.element.offsetHeight + "px", this.hintElement.style.width = this.element.offsetWidth + "px";
|
|
181
|
+
}
|
|
182
|
+
}
|
|
160
183
|
/**
|
|
161
184
|
* @hidden
|
|
162
185
|
*/
|
|
@@ -164,51 +187,51 @@ const m = 200, h = class h extends p.Component {
|
|
|
164
187
|
const e = this.dragElement;
|
|
165
188
|
if (!e)
|
|
166
189
|
return;
|
|
167
|
-
const
|
|
190
|
+
const n = e.getBoundingClientRect(), l = this.oldSize;
|
|
168
191
|
if (this.resizing) {
|
|
169
|
-
const
|
|
192
|
+
const i = n.width - l.width;
|
|
170
193
|
if (this.state.rtl) {
|
|
171
194
|
const c = parseFloat(e.style.marginLeft || "0");
|
|
172
|
-
e.style.marginLeft = c -
|
|
195
|
+
e.style.marginLeft = c - i + "px";
|
|
173
196
|
} else {
|
|
174
197
|
const c = parseFloat(e.style.marginRight || "0");
|
|
175
|
-
e.style.marginRight = c +
|
|
198
|
+
e.style.marginRight = c + i + "px";
|
|
176
199
|
}
|
|
177
|
-
this.pressXY.x += this.state.rtl ? -
|
|
178
|
-
const o =
|
|
179
|
-
e.style.height = `calc(100% + ${
|
|
200
|
+
this.pressXY.x += this.state.rtl ? -i : i;
|
|
201
|
+
const o = n.height - l.height, h = parseFloat(e.style.height.substring(12));
|
|
202
|
+
e.style.height = `calc(100% + ${h + o}px)`, this.pressXY.y += o;
|
|
180
203
|
}
|
|
181
|
-
const
|
|
182
|
-
if (!(
|
|
204
|
+
const r = l.left - n.left, s = l.top - n.top;
|
|
205
|
+
if (!(r === 0 && s === 0)) {
|
|
183
206
|
if (this.dragging) {
|
|
184
|
-
(t.defaultPosition.order !== this.props.defaultPosition.order || t.defaultPosition.col !== this.props.defaultPosition.col) && (this.currentTranslate.x = 0, this.currentTranslate.y = 0, e.style.transform = "");
|
|
207
|
+
(t.defaultPosition.order !== this.props.defaultPosition.order || t.defaultPosition.col !== this.props.defaultPosition.col) && (this.currentTranslate.x = 0, this.currentTranslate.y = 0, e.style.transform = "", this.calcNewHintPosition());
|
|
185
208
|
return;
|
|
186
209
|
}
|
|
187
|
-
Math.abs(s) < 15 && Math.abs(
|
|
188
|
-
const
|
|
189
|
-
|
|
190
|
-
|
|
210
|
+
Math.abs(s) < 15 && Math.abs(r) < 15 || requestAnimationFrame(() => {
|
|
211
|
+
const i = this.element;
|
|
212
|
+
i && (i.style.transform = `translate(${r}px, ${s}px)`, i.style.transition = "transform 0s", requestAnimationFrame(() => {
|
|
213
|
+
i.style.transform = "", i.style.transition = `transform ${g}ms cubic-bezier(0.2, 0, 0, 1) 0s`;
|
|
191
214
|
}));
|
|
192
215
|
});
|
|
193
216
|
}
|
|
194
217
|
}
|
|
195
218
|
};
|
|
196
|
-
|
|
197
|
-
defaultPosition:
|
|
198
|
-
style:
|
|
199
|
-
className:
|
|
200
|
-
hintStyle:
|
|
201
|
-
hintClassName:
|
|
202
|
-
header:
|
|
203
|
-
body:
|
|
204
|
-
item:
|
|
205
|
-
resizable:
|
|
206
|
-
reorderable:
|
|
207
|
-
},
|
|
219
|
+
p.propTypes = {
|
|
220
|
+
defaultPosition: a.object.isRequired,
|
|
221
|
+
style: a.object,
|
|
222
|
+
className: a.string,
|
|
223
|
+
hintStyle: a.object,
|
|
224
|
+
hintClassName: a.string,
|
|
225
|
+
header: a.any,
|
|
226
|
+
body: a.any,
|
|
227
|
+
item: a.any,
|
|
228
|
+
resizable: a.oneOf(["horizontal", "vertical", !0, !1]),
|
|
229
|
+
reorderable: a.bool
|
|
230
|
+
}, p.displayName = "KendoTileLayoutItem", p.defaultProps = {
|
|
208
231
|
resizable: !0,
|
|
209
232
|
reorderable: !0
|
|
210
233
|
};
|
|
211
|
-
let
|
|
234
|
+
let u = p;
|
|
212
235
|
export {
|
|
213
|
-
|
|
236
|
+
u as InternalTile
|
|
214
237
|
};
|