This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
@import './index.less';

91
node_modules/ng-zorro-antd/resizable/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,91 @@
.nz-resizable-preview {
position: absolute;
top: 0;
left: 0;
z-index: 8;
border: 1px dashed #d1d1d1;
}
.nz-resizable-handle {
position: absolute;
z-index: 9;
user-select: none;
}
.nz-resizable-handle-top {
top: -5px;
left: 0;
width: 100%;
height: 10px;
}
.nz-resizable-handle-right {
top: 0;
right: -5px;
width: 10px;
height: 100%;
}
.nz-resizable-handle-bottom {
bottom: -5px;
left: 0;
width: 100%;
height: 10px;
}
.nz-resizable-handle-left {
top: 0;
left: -5px;
width: 10px;
height: 100%;
}
.nz-resizable-handle-topRight {
top: -5px;
right: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
.nz-resizable-handle-bottomRight {
right: -5px;
bottom: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
.nz-resizable-handle-bottomLeft {
bottom: -5px;
left: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
.nz-resizable-handle-topLeft {
top: -5px;
left: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-top,
.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-bottom {
cursor: ns-resize;
}
.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-right,
.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-left {
cursor: ew-resize;
}
.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-top,
.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-bottom {
cursor: row-resize;
}
.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-right,
.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-left {
cursor: col-resize;
}
.nz-resizable .nz-resizable-handle-bottomRight,
.nz-resizable .nz-resizable-handle-topLeft {
cursor: nwse-resize;
}
.nz-resizable .nz-resizable-handle-bottomLeft,
.nz-resizable .nz-resizable-handle-topRight {
cursor: nesw-resize;
}
.nz-resizable-disabled .nz-resizable-handle {
pointer-events: none;
}

127
node_modules/ng-zorro-antd/resizable/style/index.less generated vendored Normal file
View File

@@ -0,0 +1,127 @@
@resizable-prefix-cls: ~'nz-resizable';
.@{resizable-prefix-cls} {
&-preview {
position: absolute;
top: 0;
left: 0;
z-index: 8;
border: 1px dashed #d1d1d1;
}
&-handle {
position: absolute;
z-index: 9;
user-select: none;
&-top {
top: -5px;
left: 0;
width: 100%;
height: 10px;
}
&-right {
top: 0;
right: -5px;
width: 10px;
height: 100%;
}
&-bottom {
bottom: -5px;
left: 0;
width: 100%;
height: 10px;
}
&-left {
top: 0;
left: -5px;
width: 10px;
height: 100%;
}
&-topRight {
top: -5px;
right: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
&-bottomRight {
right: -5px;
bottom: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
&-bottomLeft {
bottom: -5px;
left: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
&-topLeft {
top: -5px;
left: -5px;
z-index: 10;
width: 20px;
height: 20px;
}
}
.@{resizable-prefix-cls}-handle {
&-cursor-type {
&-window {
&.@{resizable-prefix-cls}-handle {
&-top,
&-bottom {
cursor: ns-resize;
}
&-right,
&-left {
cursor: ew-resize;
}
}
}
&-grid {
&.@{resizable-prefix-cls}-handle {
&-top,
&-bottom {
cursor: row-resize;
}
&-right,
&-left {
cursor: col-resize;
}
}
}
}
&-bottomRight,
&-topLeft {
cursor: nwse-resize;
}
&-bottomLeft,
&-topRight {
cursor: nesw-resize;
}
}
&-disabled {
.@{resizable-prefix-cls} {
&-handle {
pointer-events: none;
}
}
}
}

View File

@@ -0,0 +1 @@
.nz-resizable-preview{position:absolute;top:0;left:0;z-index:8;border:1px dashed #d1d1d1}.nz-resizable-handle{position:absolute;z-index:9;user-select:none}.nz-resizable-handle-top{top:-5px;left:0;width:100%;height:10px}.nz-resizable-handle-right{top:0;right:-5px;width:10px;height:100%}.nz-resizable-handle-bottom{bottom:-5px;left:0;width:100%;height:10px}.nz-resizable-handle-left{top:0;left:-5px;width:10px;height:100%}.nz-resizable-handle-topRight{top:-5px;right:-5px;z-index:10;width:20px;height:20px}.nz-resizable-handle-bottomRight{right:-5px;bottom:-5px;z-index:10;width:20px;height:20px}.nz-resizable-handle-bottomLeft{bottom:-5px;left:-5px;z-index:10;width:20px;height:20px}.nz-resizable-handle-topLeft{top:-5px;left:-5px;z-index:10;width:20px;height:20px}.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-bottom,.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-top{cursor:ns-resize}.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-left,.nz-resizable .nz-resizable-handle-cursor-type-window.nz-resizable-handle-right{cursor:ew-resize}.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-bottom,.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-top{cursor:row-resize}.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-left,.nz-resizable .nz-resizable-handle-cursor-type-grid.nz-resizable-handle-right{cursor:col-resize}.nz-resizable .nz-resizable-handle-bottomRight,.nz-resizable .nz-resizable-handle-topLeft{cursor:nwse-resize}.nz-resizable .nz-resizable-handle-bottomLeft,.nz-resizable .nz-resizable-handle-topRight{cursor:nesw-resize}.nz-resizable-disabled .nz-resizable-handle{pointer-events:none}