@alauda/ui 5.7.7-beta.15 → 5.7.7-beta.19
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 +15 -16
- 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/button/button.component.js +1 -1
- package/esm2015/button/button.component.scss.ngstyle.js +1 -1
- package/esm2015/card/card.component.js +1 -1
- package/esm2015/card/card.component.scss.ngstyle.js +1 -1
- package/esm2015/card/section.component.js +1 -1
- package/esm2015/card/section.component.scss.ngstyle.js +1 -1
- package/esm2015/dropdown/dropdown-button/dropdown-button.component.js +1 -1
- package/esm2015/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.js +1 -1
- package/esm2015/dropdown/menu/menu.component.js +1 -1
- package/esm2015/dropdown/menu/menu.component.scss.ngstyle.js +1 -1
- package/esm2015/dropdown/menu-group/menu-group.component.js +1 -1
- package/esm2015/dropdown/menu-group/menu-group.component.scss.ngstyle.js +1 -1
- package/esm2015/dropdown/menu-item/menu-item.component.js +1 -1
- package/esm2015/dropdown/menu-item/menu-item.component.scss.ngstyle.js +1 -1
- package/esm2015/dropdown/submenu/submenu.component.js +3 -3
- package/esm2015/dropdown/submenu/submenu.component.scss.ngstyle.js +1 -1
- package/esm2015/input/number-input/number-input.component.js +1 -1
- package/esm2015/input/number-input/number-input.component.scss.ngstyle.js +1 -1
- package/esm2015/paginator/paginator.component.js +5 -6
- package/esm2015/paginator/paginator.component.ngfactory.js +40 -42
- package/esm2015/paginator/paginator.component.ngsummary.json +1 -1
- package/esm2015/paginator/paginator.component.scss.ngstyle.js +1 -1
- package/esm2015/paginator/paginator.module.ngfactory.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/tabs/tab-header.component.js +1 -1
- package/esm2015/tabs/tab-header.component.scss.ngstyle.js +1 -1
- package/fesm2015/alauda-ui.js +15 -16
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/paginator/paginator.component.d.ts +2 -1
- package/theme/_var.scss +2 -0
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { Bem } from '../utils';
|
|
2
3
|
import { PaginatorIntl } from './paginator-intl';
|
|
3
4
|
/**
|
|
4
5
|
* Change event object that is emitted when the user selects a
|
|
@@ -20,6 +21,7 @@ export declare class PageEvent {
|
|
|
20
21
|
export declare class PaginatorComponent implements OnDestroy {
|
|
21
22
|
intl: PaginatorIntl;
|
|
22
23
|
private readonly cdr;
|
|
24
|
+
bem: Bem;
|
|
23
25
|
get pageIndex(): number;
|
|
24
26
|
set pageIndex(val: number);
|
|
25
27
|
currentPage: number;
|
|
@@ -32,7 +34,6 @@ export declare class PaginatorComponent implements OnDestroy {
|
|
|
32
34
|
get length(): number;
|
|
33
35
|
set length(val: number);
|
|
34
36
|
layout: string | string[];
|
|
35
|
-
size: "small";
|
|
36
37
|
disabled: boolean;
|
|
37
38
|
readonly currentPageChange: EventEmitter<number>;
|
|
38
39
|
readonly pageSizeChange: EventEmitter<number>;
|
package/theme/_var.scss
CHANGED
|
@@ -330,6 +330,8 @@ $tab-label-z-index: 2;
|
|
|
330
330
|
$tab-active-indicator-z-index: 1;
|
|
331
331
|
$tab-label-focus-box-shadow: inset 0 0 0 3px rgba($color-primary, 0.3);
|
|
332
332
|
$tab-header-close-icon-size: 16px;
|
|
333
|
+
$tab-header-close-icon-color: $color-text-help;
|
|
334
|
+
$tab-header-close-icon-color-hover: $color-white;
|
|
333
335
|
|
|
334
336
|
// Status bar
|
|
335
337
|
$status-bar-border-radius: $border-radius;
|