mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
bd34858efd
* feat: add locale * feat: add locale interfaces * fix: add locale interfaces for components * fix: use local classes instead of interfaces * feat: implement the locale provider * feat: make some components to support localization * fix: default language * fix: test * chore: remove the useless reference
25 lines
705 B
C#
25 lines
705 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
@*<nz-select
|
|
class="ant-pagination-options-size-changer"
|
|
*ngIf="showSizeChanger"
|
|
[nzDisabled]="disabled"
|
|
[nzSize]="nzSize"
|
|
[ngModel]="pageSize"
|
|
(ngModelChange)="onPageSizeChange($event)"
|
|
>
|
|
<nz-option
|
|
*ngFor="let option of listOfPageSizeOption; trackBy: trackByOption"
|
|
[nzLabel]="option.label"
|
|
[nzValue]="option.value"
|
|
></nz-option>
|
|
</nz-select>*@
|
|
@if (ShowQuickJumper)
|
|
{
|
|
<div class="ant-pagination-options-quick-jumper">
|
|
@Pagination?.Locale.JumpTo
|
|
<input disabled="@Disabled" @bind="_inputValue" @onkeyup="JumpToPageViaInput" />
|
|
@Pagination?.Locale.Page
|
|
</div>
|
|
} |