ng-zorro-antd-check-list.mjs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. import * as i0 from '@angular/core';
  2. import { ViewEncapsulation, ChangeDetectionStrategy, Component, input, output, signal, computed, linkedSignal, inject, NgModule } from '@angular/core';
  3. import { toSignal } from '@angular/core/rxjs-interop';
  4. import { map } from 'rxjs/operators';
  5. import * as i3 from 'ng-zorro-antd/core/outlet';
  6. import { NzOutletModule } from 'ng-zorro-antd/core/outlet';
  7. import { NzI18nService } from 'ng-zorro-antd/i18n';
  8. import * as i1 from 'ng-zorro-antd/icon';
  9. import { NzIconModule } from 'ng-zorro-antd/icon';
  10. import * as i1$1 from 'ng-zorro-antd/popover';
  11. import { NzPopoverModule } from 'ng-zorro-antd/popover';
  12. import { DecimalPipe } from '@angular/common';
  13. import * as i8 from '@angular/forms';
  14. import { FormsModule } from '@angular/forms';
  15. import * as i5 from 'ng-zorro-antd/button';
  16. import { NzButtonModule } from 'ng-zorro-antd/button';
  17. import * as i4 from 'ng-zorro-antd/checkbox';
  18. import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
  19. import * as i2 from 'ng-zorro-antd/progress';
  20. import { NzProgressModule } from 'ng-zorro-antd/progress';
  21. import * as i6 from 'ng-zorro-antd/core/transition-patch';
  22. import * as i7 from 'ng-zorro-antd/core/wave';
  23. /**
  24. * Use of this source code is governed by an MIT-style license that can be
  25. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  26. */
  27. /**
  28. * Use of this source code is governed by an MIT-style license that can be
  29. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  30. */
  31. class NzCheckListButtonComponent {
  32. static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
  33. static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.2", type: NzCheckListButtonComponent, isStandalone: true, selector: "nz-check-list-button", host: { classAttribute: "ant-btn ant-btn-primary ant-check-list-button" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
  34. }
  35. i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListButtonComponent, decorators: [{
  36. type: Component,
  37. args: [{
  38. selector: 'nz-check-list-button',
  39. changeDetection: ChangeDetectionStrategy.OnPush,
  40. encapsulation: ViewEncapsulation.None,
  41. template: `<ng-content></ng-content>`,
  42. host: {
  43. class: 'ant-btn ant-btn-primary ant-check-list-button'
  44. }
  45. }]
  46. }] });
  47. /**
  48. * Use of this source code is governed by an MIT-style license that can be
  49. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  50. */
  51. class NzCheckListContentComponent {
  52. locale = input.required();
  53. items = input([]);
  54. index = input(0);
  55. progress = input(true);
  56. title = input(null);
  57. footer = input(null);
  58. closePopover = output();
  59. hide = output();
  60. checked = false;
  61. visible = signal(true);
  62. progressPercent = computed(() => {
  63. const index = Math.min(Math.max(this.index() - 1, 0), this.items().length);
  64. return (index / this.items().length) * 100;
  65. });
  66. static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
  67. static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: NzCheckListContentComponent, isStandalone: true, selector: "nz-check-list-content", inputs: { locale: { classPropertyName: "locale", publicName: "locale", isSignal: true, isRequired: true, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, index: { classPropertyName: "index", publicName: "index", isSignal: true, isRequired: false, transformFunction: null }, progress: { classPropertyName: "progress", publicName: "progress", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, footer: { classPropertyName: "footer", publicName: "footer", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closePopover: "closePopover", hide: "hide" }, host: { classAttribute: "ant-check-list-content" }, ngImport: i0, template: `
  68. @let i18n = locale();
  69. @if (visible()) {
  70. @if (progressPercent() === 100) {
  71. <div class="ant-check-list-header-finish">
  72. <nz-icon nzType="check-circle" nzTheme="outline" class="ant-check-list-header-finish-icon" />
  73. <h3 class="ant-check-list-header-finish-title">{{ i18n.checkListFinish }}</h3>
  74. <button nz-button nzType="primary" [style.margin.px]="24" (click)="closePopover.emit(false)">
  75. {{ i18n.checkListClose }}
  76. </button>
  77. </div>
  78. } @else {
  79. <div class="ant-check-list-header">
  80. <div class="ant-check-list-header-title">
  81. @if (!!title()) {
  82. <ng-container *nzStringTemplateOutlet="title()">{{ title() }}</ng-container>
  83. } @else {
  84. {{ i18n.checkList }}
  85. }
  86. </div>
  87. <div class="ant-check-list-header-extra">
  88. <nz-icon nzType="down" nzTheme="outline" (click)="closePopover.emit(false)" />
  89. </div>
  90. </div>
  91. @if (progress()) {
  92. <div class="ant-check-list-progressBar">
  93. <div class="ant-check-list-progressBar-progress">
  94. <nz-progress [nzPercent]="progressPercent() | number: '1.0-0'"></nz-progress>
  95. </div>
  96. </div>
  97. }
  98. }
  99. <div class="ant-check-list-steps-content">
  100. @for (item of items(); track item.key || item.description; let i = $index) {
  101. @let itemHighlight = index() === i + 1;
  102. @let itemChecked = index() > i + 1;
  103. <div
  104. class="ant-check-list-steps"
  105. [class.ant-check-list-highlight]="itemHighlight"
  106. [class.ant-check-list-checked]="itemChecked"
  107. >
  108. <div class="ant-check-list-steps-item">
  109. <div class="ant-check-list-steps-item-circle">
  110. @if (itemChecked) {
  111. <nz-icon nzType="check" nzTheme="outline" class="ant-check-list-steps-checkoutlined" />
  112. } @else {
  113. <div class="ant-check-list-steps-number">{{ i + 1 }}</div>
  114. }
  115. </div>
  116. <div class="ant-check-list-steps-item-description">{{ item.description }}</div>
  117. </div>
  118. @if (itemHighlight && !!item.onClick) {
  119. <nz-icon
  120. nzType="arrow-right"
  121. nzTheme="outline"
  122. class="ant-check-list-steps-item-arrows"
  123. (click)="item.onClick()"
  124. />
  125. }
  126. </div>
  127. }
  128. </div>
  129. <div class="ant-check-list-footer" (click)="visible.set(false)">
  130. @if (!!footer()) {
  131. <ng-container *nzStringTemplateOutlet="footer()">{{ footer() }}</ng-container>
  132. } @else {
  133. {{ i18n.checkListFooter }}
  134. }
  135. </div>
  136. } @else {
  137. <div class="ant-check-list-close-check">
  138. <div class="ant-check-list-close-check-title">{{ i18n.checkListCheck }}</div>
  139. <div class="ant-check-list-close-check-action">
  140. <button nz-button nzType="primary" (click)="visible.set(false); hide.emit(checked)">{{ i18n.ok }}</button>
  141. <button nz-button (click)="visible.set(true)">{{ i18n.cancel }}</button>
  142. </div>
  143. <div class="ant-check-list-close-check-other">
  144. <label nz-checkbox [(ngModel)]="checked">{{ i18n.checkListCheckOther }}</label>
  145. </div>
  146. </div>
  147. }
  148. `, isInline: true, dependencies: [{ kind: "ngmodule", type: NzIconModule }, { kind: "directive", type: i1.NzIconDirective, selector: "nz-icon,[nz-icon]", inputs: ["nzSpin", "nzRotate", "nzType", "nzTheme", "nzTwotoneColor", "nzIconfont"], exportAs: ["nzIcon"] }, { kind: "ngmodule", type: NzProgressModule }, { kind: "component", type: i2.NzProgressComponent, selector: "nz-progress", inputs: ["nzShowInfo", "nzWidth", "nzStrokeColor", "nzSize", "nzFormat", "nzSuccessPercent", "nzPercent", "nzStrokeWidth", "nzGapDegree", "nzStatus", "nzType", "nzGapPosition", "nzStrokeLinecap", "nzSteps"], exportAs: ["nzProgress"] }, { kind: "ngmodule", type: NzOutletModule }, { kind: "directive", type: i3.NzStringTemplateOutletDirective, selector: "[nzStringTemplateOutlet]", inputs: ["nzStringTemplateOutletContext", "nzStringTemplateOutlet"], exportAs: ["nzStringTemplateOutlet"] }, { kind: "ngmodule", type: NzCheckboxModule }, { kind: "component", type: i4.NzCheckboxComponent, selector: "[nz-checkbox]", inputs: ["nzValue", "nzAutoFocus", "nzDisabled", "nzIndeterminate", "nzChecked", "nzId", "nzName"], outputs: ["nzCheckedChange"], exportAs: ["nzCheckbox"] }, { kind: "ngmodule", type: NzButtonModule }, { kind: "component", type: i5.NzButtonComponent, selector: "button[nz-button], a[nz-button]", inputs: ["nzBlock", "nzGhost", "nzSearch", "nzLoading", "nzDanger", "disabled", "tabIndex", "nzType", "nzShape", "nzSize"], exportAs: ["nzButton"] }, { kind: "directive", type: i6.ɵNzTransitionPatchDirective, selector: "[nz-button], nz-button-group, [nz-icon], nz-icon, [nz-menu-item], [nz-submenu], nz-select-top-control, nz-select-placeholder, nz-input-group", inputs: ["hidden"] }, { kind: "directive", type: i7.NzWaveDirective, selector: "[nz-wave],button[nz-button]:not([nzType=\"link\"]):not([nzType=\"text\"])", inputs: ["nzWaveExtraNode"], exportAs: ["nzWave"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "pipe", type: DecimalPipe, name: "number" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
  149. }
  150. i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListContentComponent, decorators: [{
  151. type: Component,
  152. args: [{
  153. selector: 'nz-check-list-content',
  154. changeDetection: ChangeDetectionStrategy.OnPush,
  155. encapsulation: ViewEncapsulation.None,
  156. imports: [NzIconModule, NzProgressModule, NzOutletModule, NzCheckboxModule, NzButtonModule, FormsModule, DecimalPipe],
  157. template: `
  158. @let i18n = locale();
  159. @if (visible()) {
  160. @if (progressPercent() === 100) {
  161. <div class="ant-check-list-header-finish">
  162. <nz-icon nzType="check-circle" nzTheme="outline" class="ant-check-list-header-finish-icon" />
  163. <h3 class="ant-check-list-header-finish-title">{{ i18n.checkListFinish }}</h3>
  164. <button nz-button nzType="primary" [style.margin.px]="24" (click)="closePopover.emit(false)">
  165. {{ i18n.checkListClose }}
  166. </button>
  167. </div>
  168. } @else {
  169. <div class="ant-check-list-header">
  170. <div class="ant-check-list-header-title">
  171. @if (!!title()) {
  172. <ng-container *nzStringTemplateOutlet="title()">{{ title() }}</ng-container>
  173. } @else {
  174. {{ i18n.checkList }}
  175. }
  176. </div>
  177. <div class="ant-check-list-header-extra">
  178. <nz-icon nzType="down" nzTheme="outline" (click)="closePopover.emit(false)" />
  179. </div>
  180. </div>
  181. @if (progress()) {
  182. <div class="ant-check-list-progressBar">
  183. <div class="ant-check-list-progressBar-progress">
  184. <nz-progress [nzPercent]="progressPercent() | number: '1.0-0'"></nz-progress>
  185. </div>
  186. </div>
  187. }
  188. }
  189. <div class="ant-check-list-steps-content">
  190. @for (item of items(); track item.key || item.description; let i = $index) {
  191. @let itemHighlight = index() === i + 1;
  192. @let itemChecked = index() > i + 1;
  193. <div
  194. class="ant-check-list-steps"
  195. [class.ant-check-list-highlight]="itemHighlight"
  196. [class.ant-check-list-checked]="itemChecked"
  197. >
  198. <div class="ant-check-list-steps-item">
  199. <div class="ant-check-list-steps-item-circle">
  200. @if (itemChecked) {
  201. <nz-icon nzType="check" nzTheme="outline" class="ant-check-list-steps-checkoutlined" />
  202. } @else {
  203. <div class="ant-check-list-steps-number">{{ i + 1 }}</div>
  204. }
  205. </div>
  206. <div class="ant-check-list-steps-item-description">{{ item.description }}</div>
  207. </div>
  208. @if (itemHighlight && !!item.onClick) {
  209. <nz-icon
  210. nzType="arrow-right"
  211. nzTheme="outline"
  212. class="ant-check-list-steps-item-arrows"
  213. (click)="item.onClick()"
  214. />
  215. }
  216. </div>
  217. }
  218. </div>
  219. <div class="ant-check-list-footer" (click)="visible.set(false)">
  220. @if (!!footer()) {
  221. <ng-container *nzStringTemplateOutlet="footer()">{{ footer() }}</ng-container>
  222. } @else {
  223. {{ i18n.checkListFooter }}
  224. }
  225. </div>
  226. } @else {
  227. <div class="ant-check-list-close-check">
  228. <div class="ant-check-list-close-check-title">{{ i18n.checkListCheck }}</div>
  229. <div class="ant-check-list-close-check-action">
  230. <button nz-button nzType="primary" (click)="visible.set(false); hide.emit(checked)">{{ i18n.ok }}</button>
  231. <button nz-button (click)="visible.set(true)">{{ i18n.cancel }}</button>
  232. </div>
  233. <div class="ant-check-list-close-check-other">
  234. <label nz-checkbox [(ngModel)]="checked">{{ i18n.checkListCheckOther }}</label>
  235. </div>
  236. </div>
  237. }
  238. `,
  239. host: {
  240. class: 'ant-check-list-content'
  241. }
  242. }]
  243. }] });
  244. /**
  245. * Use of this source code is governed by an MIT-style license that can be
  246. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  247. */
  248. class NzCheckListComponent {
  249. nzItems = input([]);
  250. nzVisible = input(false);
  251. nzIndex = input(1);
  252. nzProgress = input(true);
  253. nzTriggerRender = input(null);
  254. nzTitle = input(null);
  255. nzFooter = input(null);
  256. nzHide = output();
  257. visible = linkedSignal(this.nzVisible);
  258. i18n = inject(NzI18nService);
  259. locale = toSignal(this.i18n.localeChange.pipe(map(() => this.i18n.getLocaleData('CheckList'))), { requireSync: true });
  260. static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
  261. static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: NzCheckListComponent, isStandalone: true, selector: "nz-check-list", inputs: { nzItems: { classPropertyName: "nzItems", publicName: "nzItems", isSignal: true, isRequired: false, transformFunction: null }, nzVisible: { classPropertyName: "nzVisible", publicName: "nzVisible", isSignal: true, isRequired: false, transformFunction: null }, nzIndex: { classPropertyName: "nzIndex", publicName: "nzIndex", isSignal: true, isRequired: false, transformFunction: null }, nzProgress: { classPropertyName: "nzProgress", publicName: "nzProgress", isSignal: true, isRequired: false, transformFunction: null }, nzTriggerRender: { classPropertyName: "nzTriggerRender", publicName: "nzTriggerRender", isSignal: true, isRequired: false, transformFunction: null }, nzTitle: { classPropertyName: "nzTitle", publicName: "nzTitle", isSignal: true, isRequired: false, transformFunction: null }, nzFooter: { classPropertyName: "nzFooter", publicName: "nzFooter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { nzHide: "nzHide" }, host: { classAttribute: "ant-check-list" }, ngImport: i0, template: `
  262. <nz-check-list-button
  263. nz-popover
  264. [nzPopoverContent]="checklistTemplate"
  265. nzPopoverTrigger="click"
  266. nzPopoverPlacement="topRight"
  267. [nzPopoverOverlayClickable]="false"
  268. [nzPopoverVisible]="visible()"
  269. (nzPopoverVisibleChange)="visible.set($event)"
  270. >
  271. @if (!!nzTriggerRender()) {
  272. <ng-container *nzStringTemplateOutlet="nzTriggerRender()">{{ nzTriggerRender() }}</ng-container>
  273. } @else {
  274. <nz-icon nzType="check-circle" nzTheme="outline" class="ant-check-list-icon" />
  275. <div class="ant-check-list-description">{{ locale().checkList }}</div>
  276. }
  277. </nz-check-list-button>
  278. <ng-template #checklistTemplate>
  279. <nz-check-list-content
  280. [locale]="locale()"
  281. [items]="nzItems()"
  282. [index]="nzIndex()"
  283. [title]="nzTitle()"
  284. [progress]="nzProgress()"
  285. [footer]="nzFooter()"
  286. (closePopover)="visible.set($event)"
  287. (hide)="visible.set($event); nzHide.emit($event)"
  288. ></nz-check-list-content>
  289. </ng-template>
  290. `, isInline: true, dependencies: [{ kind: "ngmodule", type: NzPopoverModule }, { kind: "directive", type: i1$1.NzPopoverDirective, selector: "[nz-popover]", inputs: ["nzPopoverArrowPointAtCenter", "nzPopoverTitle", "nzPopoverContent", "nz-popover", "nzPopoverTrigger", "nzPopoverPlacement", "nzPopoverOrigin", "nzPopoverVisible", "nzPopoverMouseEnterDelay", "nzPopoverMouseLeaveDelay", "nzPopoverOverlayClassName", "nzPopoverOverlayStyle", "nzPopoverOverlayClickable", "nzPopoverBackdrop"], outputs: ["nzPopoverVisibleChange"], exportAs: ["nzPopover"] }, { kind: "ngmodule", type: NzIconModule }, { kind: "directive", type: i1.NzIconDirective, selector: "nz-icon,[nz-icon]", inputs: ["nzSpin", "nzRotate", "nzType", "nzTheme", "nzTwotoneColor", "nzIconfont"], exportAs: ["nzIcon"] }, { kind: "ngmodule", type: NzOutletModule }, { kind: "directive", type: i3.NzStringTemplateOutletDirective, selector: "[nzStringTemplateOutlet]", inputs: ["nzStringTemplateOutletContext", "nzStringTemplateOutlet"], exportAs: ["nzStringTemplateOutlet"] }, { kind: "component", type: NzCheckListButtonComponent, selector: "nz-check-list-button" }, { kind: "component", type: NzCheckListContentComponent, selector: "nz-check-list-content", inputs: ["locale", "items", "index", "progress", "title", "footer"], outputs: ["closePopover", "hide"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
  291. }
  292. i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListComponent, decorators: [{
  293. type: Component,
  294. args: [{
  295. selector: 'nz-check-list',
  296. changeDetection: ChangeDetectionStrategy.OnPush,
  297. encapsulation: ViewEncapsulation.None,
  298. imports: [NzPopoverModule, NzIconModule, NzOutletModule, NzCheckListButtonComponent, NzCheckListContentComponent],
  299. template: `
  300. <nz-check-list-button
  301. nz-popover
  302. [nzPopoverContent]="checklistTemplate"
  303. nzPopoverTrigger="click"
  304. nzPopoverPlacement="topRight"
  305. [nzPopoverOverlayClickable]="false"
  306. [nzPopoverVisible]="visible()"
  307. (nzPopoverVisibleChange)="visible.set($event)"
  308. >
  309. @if (!!nzTriggerRender()) {
  310. <ng-container *nzStringTemplateOutlet="nzTriggerRender()">{{ nzTriggerRender() }}</ng-container>
  311. } @else {
  312. <nz-icon nzType="check-circle" nzTheme="outline" class="ant-check-list-icon" />
  313. <div class="ant-check-list-description">{{ locale().checkList }}</div>
  314. }
  315. </nz-check-list-button>
  316. <ng-template #checklistTemplate>
  317. <nz-check-list-content
  318. [locale]="locale()"
  319. [items]="nzItems()"
  320. [index]="nzIndex()"
  321. [title]="nzTitle()"
  322. [progress]="nzProgress()"
  323. [footer]="nzFooter()"
  324. (closePopover)="visible.set($event)"
  325. (hide)="visible.set($event); nzHide.emit($event)"
  326. ></nz-check-list-content>
  327. </ng-template>
  328. `,
  329. host: {
  330. class: 'ant-check-list'
  331. }
  332. }]
  333. }] });
  334. /**
  335. * Use of this source code is governed by an MIT-style license that can be
  336. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  337. */
  338. class NzCheckListModule {
  339. static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
  340. static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListModule, imports: [NzCheckListComponent], exports: [NzCheckListComponent] });
  341. static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListModule, imports: [NzCheckListComponent] });
  342. }
  343. i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: NzCheckListModule, decorators: [{
  344. type: NgModule,
  345. args: [{
  346. imports: [NzCheckListComponent],
  347. exports: [NzCheckListComponent]
  348. }]
  349. }] });
  350. /**
  351. * Use of this source code is governed by an MIT-style license that can be
  352. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  353. */
  354. /**
  355. * Generated bundle index. Do not edit.
  356. */
  357. export { NzCheckListComponent, NzCheckListModule };
  358. //# sourceMappingURL=ng-zorro-antd-check-list.mjs.map