@alauda/ui 7.3.3-beta.12 → 7.3.3-beta.13
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/esm2022/icon/icons.mjs +2 -2
- package/esm2022/index.mjs +1 -2
- package/esm2022/table/index.mjs +1 -2
- package/esm2022/table/table-cell.directive.mjs +4 -3
- package/esm2022/table/table-header-cell.directive.mjs +4 -3
- package/esm2022/table/table-scroll.directive.mjs +19 -15
- package/esm2022/table/table.component.mjs +11 -15
- package/fesm2022/alauda-ui.mjs +45 -249
- package/fesm2022/alauda-ui.mjs.map +1 -1
- package/icon/icons.d.ts +1 -1
- package/index.d.ts +0 -1
- package/package.json +1 -2
- package/table/index.d.ts +0 -1
- package/table/table-scroll.directive.d.ts +2 -2
- package/table/table.component.d.ts +1 -4
- package/esm2022/resizable/index.mjs +0 -2
- package/esm2022/resizable/resizable.directive.mjs +0 -147
- package/esm2022/table/table-col-resizable.directive.mjs +0 -71
- package/resizable/index.d.ts +0 -1
- package/resizable/resizable.directive.d.ts +0 -34
- package/resizable/resizable.scss +0 -44
- package/table/table-col-resizable.directive.d.ts +0 -17
package/resizable/resizable.scss
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
@import '../theme/var';
|
|
2
|
-
|
|
3
|
-
[auiresizable],
|
|
4
|
-
.aui-container-for-resizable {
|
|
5
|
-
position: relative;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
[auiresizable]:hover {
|
|
9
|
-
.resize-handle {
|
|
10
|
-
visibility: visible;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.resize-handle {
|
|
15
|
-
display: inline-block;
|
|
16
|
-
position: absolute;
|
|
17
|
-
right: 0;
|
|
18
|
-
top: 0;
|
|
19
|
-
width: 6px;
|
|
20
|
-
cursor: col-resize;
|
|
21
|
-
height: 100%;
|
|
22
|
-
z-index: 9999;
|
|
23
|
-
border-right: 2px solid use-rgb(p-2);
|
|
24
|
-
visibility: hidden;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.resize-overlay {
|
|
28
|
-
position: absolute;
|
|
29
|
-
display: block;
|
|
30
|
-
inset: 0;
|
|
31
|
-
z-index: 1000;
|
|
32
|
-
cursor: col-resize;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.resize-bar {
|
|
36
|
-
top: 0;
|
|
37
|
-
bottom: 0;
|
|
38
|
-
position: absolute;
|
|
39
|
-
cursor: col-resize;
|
|
40
|
-
background: use-rgb(p-2);
|
|
41
|
-
width: 2px;
|
|
42
|
-
z-index: 9999;
|
|
43
|
-
display: block;
|
|
44
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit } from '@angular/core';
|
|
2
|
-
import { ResizableDirective } from '../resizable';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TableColResizableDirective extends ResizableDirective implements AfterViewInit {
|
|
5
|
-
minWidth: string;
|
|
6
|
-
readonly manualAdjustment = true;
|
|
7
|
-
private readonly tableColumnDefDirective;
|
|
8
|
-
private readonly tableComponent;
|
|
9
|
-
private readonly tableScrollWrapperDirective;
|
|
10
|
-
private styleEl;
|
|
11
|
-
private sheet;
|
|
12
|
-
private hostAttr;
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
|
-
ngOnDestroy(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TableColResizableDirective, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableColResizableDirective, "[auiTableColResizable]", never, { "minWidth": { "alias": "minWidth"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
-
}
|