@alauda/ui 6.1.0 → 6.1.1-beta.10
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/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +21 -10
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/esm2015/form/form-item/form-item.component.js +1 -1
- package/esm2015/form/form-item/form-item.component.scss.ngstyle.js +1 -1
- package/esm2015/input/input-group/input-group.component.js +1 -1
- package/esm2015/input/input-group/input-group.component.scss.ngstyle.js +1 -1
- package/esm2015/input/search/search.component.js +3 -2
- package/esm2015/input/search/search.component.ngfactory.js +1 -1
- package/esm2015/input/search/search.component.ngsummary.json +1 -1
- package/esm2015/input/search/search.component.scss.ngstyle.js +1 -1
- package/esm2015/paginator/paginator.component.js +1 -1
- package/esm2015/paginator/paginator.component.scss.ngstyle.js +1 -1
- package/esm2015/status-bar/status-bar.component.js +1 -1
- package/esm2015/status-bar/status-bar.component.scss.ngstyle.js +1 -1
- package/esm2015/table/table-cell.component.js +2 -2
- package/esm2015/table/table-cell.component.ngfactory.js +1 -1
- package/esm2015/table/table-cell.component.ngsummary.json +1 -1
- package/esm2015/table/table-row.component.js +15 -5
- package/esm2015/table/table-row.component.ngfactory.js +1 -1
- package/esm2015/table/table-row.component.ngsummary.json +1 -1
- package/esm2015/table/table.component.js +1 -1
- package/esm2015/table/table.component.scss.ngstyle.js +1 -1
- package/fesm2015/alauda-ui.js +21 -10
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/table/table-row.component.d.ts +6 -1
- package/theme/_var.scss +29 -2
package/package.json
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { CdkRow } from '@angular/cdk/table';
|
|
2
|
+
import { AfterContentInit, ElementRef } from '@angular/core';
|
|
2
3
|
/** Data row template container that contains the cell outlet. Adds the right class and role. */
|
|
3
|
-
export declare class TableRowComponent extends CdkRow {
|
|
4
|
+
export declare class TableRowComponent extends CdkRow implements AfterContentInit {
|
|
5
|
+
private readonly elRef;
|
|
4
6
|
disabled: boolean;
|
|
7
|
+
hasPanel: boolean;
|
|
8
|
+
constructor(elRef: ElementRef<HTMLElement>);
|
|
9
|
+
ngAfterContentInit(): void;
|
|
5
10
|
}
|
package/theme/_var.scss
CHANGED
|
@@ -36,8 +36,8 @@ $text-button-mini-font-size: 12px;
|
|
|
36
36
|
|
|
37
37
|
// Table
|
|
38
38
|
$table-padding: 12px;
|
|
39
|
-
$table-row-min-height:
|
|
40
|
-
$table-cell-padding-v:
|
|
39
|
+
$table-row-min-height: 58px;
|
|
40
|
+
$table-cell-padding-v: 15px;
|
|
41
41
|
$table-cell-padding-h: 10px;
|
|
42
42
|
|
|
43
43
|
// Sort
|
|
@@ -157,6 +157,33 @@ $alerts-wrapper-top: 20px;
|
|
|
157
157
|
$alerts-wrapper-right: 0;
|
|
158
158
|
|
|
159
159
|
// Input
|
|
160
|
+
$input-size: (
|
|
161
|
+
large: (
|
|
162
|
+
height: get-size(inline-height-l),
|
|
163
|
+
font-size: get-size(font-size-l),
|
|
164
|
+
line-height: get-size(line-height-l),
|
|
165
|
+
icon-size: get-size(icon-size-l),
|
|
166
|
+
),
|
|
167
|
+
medium: (
|
|
168
|
+
height: get-size(inline-height-m),
|
|
169
|
+
font-size: get-size(font-size-m),
|
|
170
|
+
line-height: get-size(line-height-m),
|
|
171
|
+
icon-size: get-size(icon-size-m),
|
|
172
|
+
),
|
|
173
|
+
small: (
|
|
174
|
+
height: get-size(inline-height-s),
|
|
175
|
+
font-size: get-size(font-size-m),
|
|
176
|
+
line-height: get-size(line-height-m),
|
|
177
|
+
icon-size: get-size(icon-size-m),
|
|
178
|
+
),
|
|
179
|
+
mini: (
|
|
180
|
+
height: get-size(inline-height-xs),
|
|
181
|
+
font-size: get-size(font-size-s),
|
|
182
|
+
line-height: get-size(line-height-s),
|
|
183
|
+
icon-size: get-size(icon-size-s),
|
|
184
|
+
),
|
|
185
|
+
);
|
|
186
|
+
|
|
160
187
|
$input-border-radius: $border-radius;
|
|
161
188
|
$input-border-width: $border-width;
|
|
162
189
|
$input-border-style: $border-style;
|