Skip to content

Commit 156c8f0

Browse files
committed
662648c6b3 chore(release): release 13.0.1 (#7215)
* chore(release): release 13.0.1 * chore(release): fix changelog * chore(release): fix description of changelog
1 parent 011764a commit 156c8f0

5,125 files changed

Lines changed: 208262 additions & 186592 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎README.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ English | [简体中文](README-zh_CN.md)
5050

5151
## 🖥 Environment Support
5252

53-
* Angular `^11.0.0` [![npm package](https://img.shields.io/npm/v/ng-zorro-antd.svg?style=flat-square)](https://www.npmjs.org/package/ng-zorro-antd)
53+
* Angular `^13.0.0` [![npm package](https://img.shields.io/npm/v/ng-zorro-antd.svg?style=flat-square)](https://www.npmjs.org/package/ng-zorro-antd)
5454
* Server-side Rendering
55-
* Modern browsers and Internet Explorer 11+ (with [polyfills](https://angular.io/guide/browser-support))
55+
* Modern browsers including the following [specific versions](https://angular.io/guide/browser-support)
5656
* [Electron](http://electron.atom.io/)
5757

5858
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Opera | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png" alt="Electron" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Electron |
5959
| --------- | --------- | --------- | --------- | --------- | --------- |
60-
| IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions
60+
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions
6161

6262

6363
## 🎨 Design Specification

‎affix/affix.component.d.ts‎

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@
22
* Use of this source code is governed by an MIT-style license that can be
33
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
44
*/
5+
import { Direction, Directionality } from '@angular/cdk/bidi';
56
import { Platform } from '@angular/cdk/platform';
67
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core';
8+
import { NzResizeObserver } from 'ng-zorro-antd/cdk/resize-observer';
79
import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config';
810
import { NzScrollService } from 'ng-zorro-antd/core/services';
911
import { NumberInput, NzSafeAny } from 'ng-zorro-antd/core/types';
10-
import { Direction, Directionality } from '@angular/cdk/bidi';
1112
import { SimpleRect } from './utils';
13+
import * as i0 from "@angular/core";
1214
export declare class NzAffixComponent implements AfterViewInit, OnChanges, OnDestroy, OnInit {
1315
nzConfigService: NzConfigService;
1416
private scrollSrv;
1517
private ngZone;
1618
private platform;
1719
private renderer;
20+
private nzResizeObserver;
1821
private cdr;
1922
private directionality;
2023
readonly _nzModuleName: NzConfigKey;
@@ -35,7 +38,7 @@ export declare class NzAffixComponent implements AfterViewInit, OnChanges, OnDes
3538
private timeout?;
3639
private document;
3740
private get target();
38-
constructor(el: ElementRef, doc: NzSafeAny, nzConfigService: NzConfigService, scrollSrv: NzScrollService, ngZone: NgZone, platform: Platform, renderer: Renderer2, cdr: ChangeDetectorRef, directionality: Directionality);
41+
constructor(el: ElementRef, doc: NzSafeAny, nzConfigService: NzConfigService, scrollSrv: NzScrollService, ngZone: NgZone, platform: Platform, renderer: Renderer2, nzResizeObserver: NzResizeObserver, cdr: ChangeDetectorRef, directionality: Directionality);
3942
ngOnInit(): void;
4043
ngOnChanges(changes: SimpleChanges): void;
4144
ngAfterViewInit(): void;
@@ -48,4 +51,6 @@ export declare class NzAffixComponent implements AfterViewInit, OnChanges, OnDes
4851
private syncPlaceholderStyle;
4952
updatePosition(e: Event): void;
5053
private updateRtlClass;
54+
static ɵfac: i0.ɵɵFactoryDeclaration<NzAffixComponent, [null, null, null, null, null, null, null, null, null, { optional: true; }]>;
55+
static ɵcmp: i0.ɵɵComponentDeclaration<NzAffixComponent, "nz-affix", ["nzAffix"], { "nzTarget": "nzTarget"; "nzOffsetTop": "nzOffsetTop"; "nzOffsetBottom": "nzOffsetBottom"; }, { "nzChange": "nzChange"; }, never, ["*"]>;
5156
}

‎affix/affix.module.d.ts‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1+
import * as i0 from "@angular/core";
2+
import * as i1 from "./affix.component";
3+
import * as i2 from "@angular/cdk/bidi";
4+
import * as i3 from "@angular/common";
5+
import * as i4 from "@angular/cdk/platform";
16
export declare class NzAffixModule {
7+
static ɵfac: i0.ɵɵFactoryDeclaration<NzAffixModule, never>;
8+
static ɵmod: i0.ɵɵNgModuleDeclaration<NzAffixModule, [typeof i1.NzAffixComponent], [typeof i2.BidiModule, typeof i3.CommonModule, typeof i4.PlatformModule], [typeof i1.NzAffixComponent]>;
9+
static ɵinj: i0.ɵɵInjectorDeclaration<NzAffixModule>;
210
}

‎affix/ng-zorro-antd-affix.d.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
22
* Generated bundle index. Do not edit.
33
*/
4+
/// <amd-module name="ng-zorro-antd/affix" />
45
export * from './public-api';

‎affix/ng-zorro-antd-affix.metadata.json‎

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎affix/package.json‎

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
2-
"main": "../bundles/ng-zorro-antd-affix.umd.js",
3-
"module": "../fesm2015/ng-zorro-antd-affix.js",
4-
"es2015": "../fesm2015/ng-zorro-antd-affix.js",
5-
"esm2015": "../esm2015/affix/ng-zorro-antd-affix.js",
6-
"fesm2015": "../fesm2015/ng-zorro-antd-affix.js",
2+
"module": "../fesm2015/ng-zorro-antd-affix.mjs",
3+
"es2020": "../fesm2020/ng-zorro-antd-affix.mjs",
4+
"esm2020": "../esm2020/affix/ng-zorro-antd-affix.mjs",
5+
"fesm2020": "../fesm2020/ng-zorro-antd-affix.mjs",
6+
"fesm2015": "../fesm2015/ng-zorro-antd-affix.mjs",
77
"typings": "ng-zorro-antd-affix.d.ts",
8-
"metadata": "ng-zorro-antd-affix.metadata.json",
98
"sideEffects": false,
109
"name": "ng-zorro-antd/affix"
1110
}

‎alert/alert.component.d.ts‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { Direction, Directionality } from '@angular/cdk/bidi';
66
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
77
import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config';
88
import { BooleanInput } from 'ng-zorro-antd/core/types';
9+
import * as i0 from "@angular/core";
910
export declare class NzAlertComponent implements OnChanges, OnDestroy, OnInit {
1011
nzConfigService: NzConfigService;
1112
private cdr;
@@ -38,4 +39,6 @@ export declare class NzAlertComponent implements OnChanges, OnDestroy, OnInit {
3839
onFadeAnimationDone(): void;
3940
ngOnChanges(changes: SimpleChanges): void;
4041
ngOnDestroy(): void;
42+
static ɵfac: i0.ɵɵFactoryDeclaration<NzAlertComponent, [null, null, { optional: true; }]>;
43+
static ɵcmp: i0.ɵɵComponentDeclaration<NzAlertComponent, "nz-alert", ["nzAlert"], { "nzCloseText": "nzCloseText"; "nzIconType": "nzIconType"; "nzMessage": "nzMessage"; "nzDescription": "nzDescription"; "nzType": "nzType"; "nzCloseable": "nzCloseable"; "nzShowIcon": "nzShowIcon"; "nzBanner": "nzBanner"; "nzNoAnimation": "nzNoAnimation"; }, { "nzOnClose": "nzOnClose"; }, never, never>;
4144
}

‎alert/alert.module.d.ts‎

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
/**
2-
* Use of this source code is governed by an MIT-style license that can be
3-
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
4-
*/
1+
import * as i0 from "@angular/core";
2+
import * as i1 from "./alert.component";
3+
import * as i2 from "@angular/cdk/bidi";
4+
import * as i3 from "@angular/common";
5+
import * as i4 from "ng-zorro-antd/icon";
6+
import * as i5 from "ng-zorro-antd/core/outlet";
57
export declare class NzAlertModule {
8+
static ɵfac: i0.ɵɵFactoryDeclaration<NzAlertModule, never>;
9+
static ɵmod: i0.ɵɵNgModuleDeclaration<NzAlertModule, [typeof i1.NzAlertComponent], [typeof i2.BidiModule, typeof i3.CommonModule, typeof i4.NzIconModule, typeof i5.NzOutletModule], [typeof i1.NzAlertComponent]>;
10+
static ɵinj: i0.ɵɵInjectorDeclaration<NzAlertModule>;
611
}

‎alert/ng-zorro-antd-alert.d.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
22
* Generated bundle index. Do not edit.
33
*/
4+
/// <amd-module name="ng-zorro-antd/alert" />
45
export * from './public-api';

0 commit comments

Comments
 (0)