@progress/kendo-angular-treelist 13.0.0-develop.2 → 13.0.0-develop.21
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/binding-directives/base-binding.directive.d.ts +5 -1
- package/binding-directives/data-bound-tree-component.d.ts +9 -0
- package/binding-directives/flat-binding.directive.d.ts +14 -3
- package/binding-directives/hierarchy-binding.directive.d.ts +12 -3
- package/column-menu/column-chooser.component.d.ts +10 -6
- package/column-menu/column-menu-chooser.component.d.ts +6 -10
- package/column-menu/column-menu-filter.component.d.ts +6 -10
- package/column-menu/column-menu-item-content-template.directive.d.ts +1 -1
- package/column-menu/column-menu-item.component.d.ts +8 -6
- package/column-menu/column-menu-lock.component.d.ts +5 -11
- package/column-menu/column-menu-settings.interface.d.ts +7 -10
- package/column-menu/column-menu-sort.component.d.ts +5 -11
- package/column-menu/column-menu.component.d.ts +1 -1
- package/column-menu/column-menu.service.d.ts +1 -1
- package/column-resizing/column-resize.interface.d.ts +1 -1
- package/columns/checkbox-column.component.d.ts +1 -1
- package/columns/column-base.d.ts +4 -0
- package/columns/column-group.component.d.ts +9 -6
- package/columns/column.component.d.ts +16 -66
- package/columns/command-column.component.d.ts +13 -15
- package/columns/rowreorder-column.component.d.ts +19 -0
- package/columns/span-column.component.d.ts +10 -81
- package/data/change-event-args.interface.d.ts +2 -2
- package/data/data.collection.d.ts +6 -0
- package/dragdrop/column-reorder-config.d.ts +1 -1
- package/editing/add-command.directive.d.ts +1 -1
- package/editing/cancel-command.directive.d.ts +1 -1
- package/editing/edit-command.directive.d.ts +1 -1
- package/editing/edit-event-args.interface.d.ts +1 -1
- package/editing/edit-template.directive.d.ts +11 -0
- package/editing/remove-command.directive.d.ts +1 -1
- package/editing/remove-event-args.interface.d.ts +1 -1
- package/editing/save-command.directive.d.ts +1 -1
- package/editing/save-event-args.interface.d.ts +1 -1
- package/esm2020/binding-directives/base-binding.directive.mjs +9 -3
- package/esm2020/binding-directives/flat-binding.directive.mjs +56 -6
- package/esm2020/binding-directives/hierarchy-binding.directive.mjs +46 -6
- package/esm2020/column-menu/column-chooser.component.mjs +10 -6
- package/esm2020/column-menu/column-menu-chooser.component.mjs +8 -12
- package/esm2020/column-menu/column-menu-filter.component.mjs +6 -10
- package/esm2020/column-menu/column-menu-item-content-template.directive.mjs +1 -1
- package/esm2020/column-menu/column-menu-item.component.mjs +9 -7
- package/esm2020/column-menu/column-menu-lock.component.mjs +5 -11
- package/esm2020/column-menu/column-menu-sort.component.mjs +5 -11
- package/esm2020/column-menu/column-menu.component.mjs +2 -2
- package/esm2020/column-menu/column-menu.service.mjs +1 -1
- package/esm2020/columns/checkbox-column.component.mjs +1 -1
- package/esm2020/columns/column-base.mjs +4 -0
- package/esm2020/columns/column-group.component.mjs +9 -6
- package/esm2020/columns/column.component.mjs +16 -39
- package/esm2020/columns/command-column.component.mjs +13 -15
- package/esm2020/columns/rowreorder-column.component.mjs +47 -0
- package/esm2020/columns/span-column.component.mjs +10 -81
- package/esm2020/data/data.collection.mjs +41 -28
- package/esm2020/editing/add-command.directive.mjs +2 -2
- package/esm2020/editing/base-command.directive.mjs +1 -1
- package/esm2020/editing/cancel-command.directive.mjs +2 -2
- package/esm2020/editing/edit-command.directive.mjs +2 -2
- package/esm2020/editing/edit-template.directive.mjs +11 -0
- package/esm2020/editing/remove-command.directive.mjs +2 -2
- package/esm2020/editing/save-command.directive.mjs +2 -2
- package/esm2020/excel/excel-command.directive.mjs +2 -2
- package/esm2020/filtering/cell/autocomplete-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +29 -12
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +23 -12
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +36 -1
- package/esm2020/filtering/cell/filter-cell-wrapper.component.mjs +3 -1
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +25 -13
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +26 -14
- package/esm2020/filtering/date-filter.component.mjs +6 -1
- package/esm2020/filtering/filter-input.directive.mjs +29 -3
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +33 -19
- package/esm2020/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/date-filter-menu.component.mjs +12 -12
- package/esm2020/filtering/menu/filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +12 -12
- package/esm2020/filtering/menu/string-filter-menu-input.component.mjs +19 -8
- package/esm2020/filtering/menu/string-filter-menu.component.mjs +15 -0
- package/esm2020/filtering/numeric-filter.component.mjs +4 -1
- package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/before-filter-operator.component.mjs +3 -6
- package/esm2020/filtering/operators/contains-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/eq-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/gt-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/gte-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -5
- package/esm2020/filtering/operators/lte-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/neq-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +1 -4
- package/esm2020/filtering/string-filter.component.mjs +2 -1
- package/esm2020/index.mjs +2 -0
- package/esm2020/localization/custom-messages.component.mjs +1 -1
- package/esm2020/localization/messages.mjs +13 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pager/pager-element.component.mjs +17 -0
- package/esm2020/pager/pager-next-buttons.component.mjs +8 -11
- package/esm2020/pager/pager-numeric-buttons.component.mjs +1 -1
- package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
- package/esm2020/pager/pager-prev-buttons.component.mjs +8 -11
- package/esm2020/pager/pager-template.directive.mjs +1 -1
- package/esm2020/pdf/pdf-command.directive.mjs +2 -2
- package/esm2020/pdf/pdf-margin.component.mjs +9 -0
- package/esm2020/rendering/cell-template.directive.mjs +1 -1
- package/esm2020/rendering/cell.component.mjs +73 -20
- package/esm2020/rendering/common/spacer.component.mjs +1 -1
- package/esm2020/rendering/constants.mjs +4 -0
- package/esm2020/rendering/header/header.component.mjs +6 -1
- package/esm2020/rendering/list.component.mjs +20 -18
- package/esm2020/rendering/table-body.component.mjs +5 -3
- package/esm2020/row-reordering/flat-reorder.service.mjs +48 -0
- package/esm2020/row-reordering/hierarchical-reorder.service.mjs +55 -0
- package/esm2020/row-reordering/row-reorder.service.mjs +220 -0
- package/esm2020/row-reordering/types.mjs +5 -0
- package/esm2020/row-reordering/utils.mjs +129 -0
- package/esm2020/shared.module.mjs +8 -3
- package/esm2020/treelist.component.mjs +229 -321
- package/esm2020/treelist.module.mjs +71 -66
- package/excel/excel-command.directive.d.ts +1 -1
- package/excel/excel-export-data.interface.d.ts +1 -1
- package/excel/excel.component.d.ts +9 -8
- package/fesm2015/progress-kendo-angular-treelist.mjs +1434 -832
- package/fesm2020/progress-kendo-angular-treelist.mjs +1426 -833
- package/filtering/cell/autocomplete-filter-cell.component.d.ts +4 -0
- package/filtering/cell/boolean-filter-cell.component.d.ts +19 -11
- package/filtering/cell/date-filter-cell.component.d.ts +15 -11
- package/filtering/cell/filter-cell-operators.component.d.ts +29 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +17 -12
- package/filtering/cell/string-filter-cell.component.d.ts +16 -11
- package/filtering/date-filter.component.d.ts +7 -11
- package/filtering/filter-input.directive.d.ts +7 -1
- package/filtering/menu/boolean-filter-menu.component.d.ts +19 -13
- package/filtering/menu/date-filter-menu.component.d.ts +12 -12
- package/filtering/menu/numeric-filter-menu.component.d.ts +12 -12
- package/filtering/menu/string-filter-menu-input.component.d.ts +4 -0
- package/filtering/menu/string-filter-menu.component.d.ts +15 -0
- package/filtering/numeric-filter.component.d.ts +4 -1
- package/filtering/operators/after-eq-filter-operator.component.d.ts +4 -0
- package/filtering/operators/after-filter-operator.component.d.ts +4 -0
- package/filtering/operators/before-eq-filter-operator.component.d.ts +4 -0
- package/filtering/operators/before-filter-operator.component.d.ts +4 -0
- package/filtering/operators/contains-filter-operator.component.d.ts +1 -4
- package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -4
- package/filtering/operators/eq-filter-operator.component.d.ts +1 -4
- package/filtering/operators/gte-filter-operator.component.d.ts +1 -4
- package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -4
- package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -4
- package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -4
- package/filtering/operators/isnull-filter-operator.component.d.ts +1 -4
- package/filtering/operators/lt-filter-operator.component.d.ts +4 -0
- package/filtering/operators/neq-filter-operator.component.d.ts +1 -4
- package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -4
- package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -4
- package/filtering/string-filter.component.d.ts +2 -1
- package/index.d.ts +2 -0
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/messages.d.ts +42 -2
- package/navigation/navigation-cell.interface.d.ts +1 -4
- package/navigation/navigation-row.interface.d.ts +1 -4
- package/package.json +16 -15
- package/pager/pager-element.component.d.ts +9 -0
- package/pager/pager-next-buttons.component.d.ts +0 -3
- package/pager/pager-numeric-buttons.component.d.ts +1 -1
- package/pager/pager-prev-buttons.component.d.ts +0 -3
- package/pager/pager-settings.d.ts +1 -15
- package/pager/pager-template.directive.d.ts +1 -1
- package/pdf/pdf-command.directive.d.ts +1 -1
- package/pdf/pdf-margin.component.d.ts +9 -0
- package/rendering/cell-template.directive.d.ts +1 -1
- package/rendering/cell.component.d.ts +10 -1
- package/rendering/common/spacer.component.d.ts +1 -1
- package/rendering/constants.d.ts +4 -0
- package/rendering/header/header.component.d.ts +1 -0
- package/row-reordering/flat-reorder.service.d.ts +16 -0
- package/row-reordering/hierarchical-reorder.service.d.ts +16 -0
- package/row-reordering/row-reorder.service.d.ts +61 -0
- package/row-reordering/types.d.ts +39 -0
- package/row-reordering/utils.d.ts +85 -0
- package/schematics/ngAdd/index.js +3 -3
- package/scrolling/content-scroll-event.d.ts +1 -1
- package/scrolling/scroll-bottom-event.d.ts +1 -1
- package/scrolling/scroll-request.service.d.ts +6 -0
- package/selection/selectable-settings.d.ts +5 -15
- package/selection/selectable.directive.d.ts +1 -1
- package/selection/selection-change-event.d.ts +1 -1
- package/shared.module.d.ts +5 -4
- package/treelist.component.d.ts +66 -289
- package/treelist.module.d.ts +68 -66
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `EndsWith` (**Ends with**) string filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class EndsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("endswith", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `Equal` (**Is equal to**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class EqualFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("eq", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/*
|
|
11
11
|
* Represents the `Greater` (**Is greater than**) numeric filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class GreaterFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("gt", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("gte", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `IsEmpty` (**Is empty**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("isempty", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `IsNotEmpty` (**Is not empty**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("isnotempty", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `IsNotNull` (**Is not null**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("isnotnull", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `IsNull` (**Is null**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class IsNullFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("isnull", localization); }
|
|
@@ -7,12 +7,9 @@ import { FilterOperatorBase } from './filter-operator.base';
|
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
|
-
|
|
10
|
+
/**
|
|
11
11
|
* Represents the `Less` (**Is less than**) numeric filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class LessFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("lt", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/*
|
|
11
11
|
* Represents the `LessOrEqualTo` (**Is less than or equal to**) numeric filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class LessOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("lte", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `NotEqual` (**Is not equal to**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class NotEqualFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("neq", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `DoesNotContain` (**Does not contain**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("doesnotcontain", localization); }
|
|
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `StartsWith` (**Starts with**) filter operator.
|
|
12
|
-
*
|
|
13
|
-
* For more information and examples, refer to:
|
|
14
|
-
* * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
|
|
15
|
-
* * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
|
|
12
|
+
* [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
|
|
16
13
|
*/
|
|
17
14
|
export class StartsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
18
15
|
constructor(localization) { super("startswith", localization); }
|
|
@@ -32,8 +32,9 @@ export class StringFilterComponent extends BaseFilterCellComponent {
|
|
|
32
32
|
super(filterService);
|
|
33
33
|
this.localization = localization;
|
|
34
34
|
/**
|
|
35
|
-
* The default filter operator.
|
|
35
|
+
* The default filter operator.
|
|
36
36
|
* @type {string}
|
|
37
|
+
* @default 'contains'
|
|
37
38
|
*/
|
|
38
39
|
this.operator = "contains";
|
|
39
40
|
}
|
package/esm2020/index.mjs
CHANGED
|
@@ -107,6 +107,8 @@ export { SinglePopupService, PopupCloseEvent } from './common/single-popup.servi
|
|
|
107
107
|
export { ExpandEvent } from './expand-state/expand-event';
|
|
108
108
|
export { ExpandableDirective } from './expand-state/expandable.directive';
|
|
109
109
|
export { ExpandableTreeComponent } from './expand-state/expandable-tree-component';
|
|
110
|
+
export { RowReorderColumnComponent } from './columns/rowreorder-column.component';
|
|
111
|
+
export * from './row-reordering/types';
|
|
110
112
|
// addresses error NG3001: Unsupported private class
|
|
111
113
|
export { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
|
|
112
114
|
export { EditCommandDirective } from './editing/edit-command.directive';
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
11
|
* Custom component messages override default component messages
|
|
12
|
-
* ([see example](
|
|
12
|
+
* ([see example](slug:globalization_treelist#toc-custom-messages)).
|
|
13
13
|
*/
|
|
14
14
|
export class CustomMessagesComponent extends Messages {
|
|
15
15
|
constructor(service) {
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export class Messages extends ComponentMessages {
|
|
12
12
|
}
|
|
13
13
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", selectPage: "selectPage", filter: "filter", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", loading: "loading", columnMenu: "columnMenu", columns: "columns", lock: "lock", unlock: "unlock", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", columnsApply: "columnsApply", columnsReset: "columnsReset", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel" }, usesInheritance: true, ngImport: i0 });
|
|
14
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", selectPage: "selectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", loading: "loading", columnMenu: "columnMenu", columns: "columns", lock: "lock", unlock: "unlock", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", columnsApply: "columnsApply", columnsReset: "columnsReset", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", dragRowHandleLabel: "dragRowHandleLabel", selectRowCheckboxLabel: "selectRowCheckboxLabel", selectAllRowsCheckboxLabel: "selectAllRowsCheckboxLabel" }, usesInheritance: true, ngImport: i0 });
|
|
15
15
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
16
16
|
type: Directive,
|
|
17
17
|
args: [{}]
|
|
@@ -43,6 +43,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
43
43
|
type: Input
|
|
44
44
|
}], filter: [{
|
|
45
45
|
type: Input
|
|
46
|
+
}], filterInputLabel: [{
|
|
47
|
+
type: Input
|
|
48
|
+
}], filterCellOperatorLabel: [{
|
|
49
|
+
type: Input
|
|
50
|
+
}], booleanFilterCellLabel: [{
|
|
51
|
+
type: Input
|
|
46
52
|
}], filterEqOperator: [{
|
|
47
53
|
type: Input
|
|
48
54
|
}], filterNotEqOperator: [{
|
|
@@ -123,4 +129,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
123
129
|
type: Input
|
|
124
130
|
}], bottomToolbarLabel: [{
|
|
125
131
|
type: Input
|
|
132
|
+
}], dragRowHandleLabel: [{
|
|
133
|
+
type: Input
|
|
134
|
+
}], selectRowCheckboxLabel: [{
|
|
135
|
+
type: Input
|
|
136
|
+
}], selectAllRowsCheckboxLabel: [{
|
|
137
|
+
type: Input
|
|
126
138
|
}] } });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treelist',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.0.0-develop.
|
|
12
|
+
publishDate: 1685973039,
|
|
13
|
+
version: '13.0.0-develop.21',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ChangeDetectorRef, Directive } from '@angular/core';
|
|
6
6
|
import { PagerContextService } from "./pager-context.service";
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
|
+
import { caretAltLeftIcon, caretAltRightIcon, caretAltToLeftIcon, caretAltToRightIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
11
|
import * as i2 from "./pager-context.service";
|
|
@@ -20,6 +21,10 @@ export class PagerElementComponent {
|
|
|
20
21
|
this.skip = this.pagerContext.skip;
|
|
21
22
|
this.pageSize = this.pagerContext.pageSize;
|
|
22
23
|
this.allCount = this.pagerContext.allCount;
|
|
24
|
+
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
25
|
+
this.caretAltToLeftIcon = caretAltToLeftIcon;
|
|
26
|
+
this.caretAltRightIcon = caretAltRightIcon;
|
|
27
|
+
this.caretAltToRightIcon = caretAltToRightIcon;
|
|
23
28
|
}
|
|
24
29
|
/**
|
|
25
30
|
* @hidden
|
|
@@ -77,6 +82,18 @@ export class PagerElementComponent {
|
|
|
77
82
|
this.subscriptions.unsubscribe();
|
|
78
83
|
}
|
|
79
84
|
}
|
|
85
|
+
get prevArrowIcons() {
|
|
86
|
+
return !this.localization.rtl ? ['caret-alt-to-left', 'caret-alt-left'] : ['caret-alt-to-right', 'caret-alt-right'];
|
|
87
|
+
}
|
|
88
|
+
get prevArrowSVGIcons() {
|
|
89
|
+
return !this.localization.rtl ? [this.caretAltToLeftIcon, this.caretAltLeftIcon] : [this.caretAltToRightIcon, this.caretAltRightIcon];
|
|
90
|
+
}
|
|
91
|
+
get nextArrowIcons() {
|
|
92
|
+
return !this.localization.rtl ? ['caret-alt-right', 'caret-alt-to-right'] : ['caret-alt-left', 'caret-alt-to-left'];
|
|
93
|
+
}
|
|
94
|
+
get nextArrowSVGIcons() {
|
|
95
|
+
return !this.localization.rtl ? [this.caretAltRightIcon, this.caretAltToRightIcon] : [this.caretAltLeftIcon, this.caretAltToLeftIcon];
|
|
96
|
+
}
|
|
80
97
|
}
|
|
81
98
|
PagerElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerElementComponent, deps: [{ token: i1.LocalizationService }, { token: i2.PagerContextService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
82
99
|
PagerElementComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: PagerElementComponent, ngImport: i0 });
|
|
@@ -7,7 +7,6 @@ import { Component, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@a
|
|
|
7
7
|
import { PagerContextService } from "./pager-context.service";
|
|
8
8
|
import { PagerElementComponent } from './pager-element.component';
|
|
9
9
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
10
|
-
import { caretAltRightIcon, caretAltToRightIcon } from '@progress/kendo-svg-icons';
|
|
11
10
|
import { NavigationService } from '../navigation/navigation.service';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
13
12
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -22,8 +21,6 @@ export class PagerNextButtonsComponent extends PagerElementComponent {
|
|
|
22
21
|
constructor(localization, pagerContext, cd, navigationService) {
|
|
23
22
|
super(localization, pagerContext, cd);
|
|
24
23
|
this.navigationService = navigationService;
|
|
25
|
-
this.caretAltRightIcon = caretAltRightIcon;
|
|
26
|
-
this.caretAltToRightIcon = caretAltToRightIcon;
|
|
27
24
|
}
|
|
28
25
|
/**
|
|
29
26
|
* @hidden
|
|
@@ -58,8 +55,8 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
58
55
|
type="button"
|
|
59
56
|
kendoTreeListFocusable
|
|
60
57
|
[enabled]="!disabled"
|
|
61
|
-
icon="
|
|
62
|
-
[svgIcon]="
|
|
58
|
+
[icon]="nextArrowIcons[0]"
|
|
59
|
+
[svgIcon]="nextArrowSVGIcons[0]"
|
|
63
60
|
fillMode="flat"
|
|
64
61
|
rounded="none"
|
|
65
62
|
class="k-pager-nav"
|
|
@@ -73,8 +70,8 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
73
70
|
type="button"
|
|
74
71
|
kendoTreeListFocusable
|
|
75
72
|
[enabled]="!disabled"
|
|
76
|
-
icon="
|
|
77
|
-
[svgIcon]="
|
|
73
|
+
[icon]="nextArrowIcons[1]"
|
|
74
|
+
[svgIcon]="nextArrowSVGIcons[1]"
|
|
78
75
|
fillMode="flat"
|
|
79
76
|
rounded="none"
|
|
80
77
|
class="k-pager-nav k-pager-last"
|
|
@@ -95,8 +92,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
95
92
|
type="button"
|
|
96
93
|
kendoTreeListFocusable
|
|
97
94
|
[enabled]="!disabled"
|
|
98
|
-
icon="
|
|
99
|
-
[svgIcon]="
|
|
95
|
+
[icon]="nextArrowIcons[0]"
|
|
96
|
+
[svgIcon]="nextArrowSVGIcons[0]"
|
|
100
97
|
fillMode="flat"
|
|
101
98
|
rounded="none"
|
|
102
99
|
class="k-pager-nav"
|
|
@@ -110,8 +107,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
110
107
|
type="button"
|
|
111
108
|
kendoTreeListFocusable
|
|
112
109
|
[enabled]="!disabled"
|
|
113
|
-
icon="
|
|
114
|
-
[svgIcon]="
|
|
110
|
+
[icon]="nextArrowIcons[1]"
|
|
111
|
+
[svgIcon]="nextArrowSVGIcons[1]"
|
|
115
112
|
fillMode="flat"
|
|
116
113
|
rounded="none"
|
|
117
114
|
class="k-pager-nav k-pager-last"
|
|
@@ -14,7 +14,7 @@ import * as i3 from "@progress/kendo-angular-buttons";
|
|
|
14
14
|
import * as i4 from "../navigation/focusable.directive";
|
|
15
15
|
import * as i5 from "@angular/common";
|
|
16
16
|
/**
|
|
17
|
-
* Displays numeric buttons to enable navigation between the pages.
|
|
17
|
+
* Displays numeric buttons to enable navigation between the pages ([see example]({% slug paging_treelist %}#toc-pager-templates)).
|
|
18
18
|
*/
|
|
19
19
|
export class PagerNumericButtonsComponent extends PagerElementComponent {
|
|
20
20
|
constructor(localization, cd, pagerContext) {
|
|
@@ -105,7 +105,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
105
105
|
[attr.aria-label]="textFor('pagerItemsPerPage')"
|
|
106
106
|
(valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
|
|
107
107
|
<kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
|
|
108
|
-
`, isInline: true, components: [{ type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }], directives: [{ type: i5.FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
108
|
+
`, isInline: true, components: [{ type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }], directives: [{ type: i5.FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
109
109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
|
|
110
110
|
type: Component,
|
|
111
111
|
args: [{
|
|
@@ -7,7 +7,6 @@ import { Component, ChangeDetectionStrategy, ChangeDetectorRef, } from '@angular
|
|
|
7
7
|
import { PagerContextService } from "./pager-context.service";
|
|
8
8
|
import { PagerElementComponent } from './pager-element.component';
|
|
9
9
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
10
|
-
import { caretAltLeftIcon, caretAltToLeftIcon } from '@progress/kendo-svg-icons';
|
|
11
10
|
import { NavigationService } from '../navigation/navigation.service';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
13
12
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -22,8 +21,6 @@ export class PagerPrevButtonsComponent extends PagerElementComponent {
|
|
|
22
21
|
constructor(localization, pagerContext, cd, navigationService) {
|
|
23
22
|
super(localization, pagerContext, cd);
|
|
24
23
|
this.navigationService = navigationService;
|
|
25
|
-
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
26
|
-
this.caretAltToLeftIcon = caretAltToLeftIcon;
|
|
27
24
|
}
|
|
28
25
|
/**
|
|
29
26
|
* @hidden
|
|
@@ -62,8 +59,8 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
62
59
|
[attr.aria-label]="textFor('pagerFirstPage')"
|
|
63
60
|
(click)="onButtonClick('firstPage')"
|
|
64
61
|
role="button"
|
|
65
|
-
icon="
|
|
66
|
-
[svgIcon]="
|
|
62
|
+
[icon]="prevArrowIcons[0]"
|
|
63
|
+
[svgIcon]="prevArrowSVGIcons[0]"
|
|
67
64
|
class="k-pager-nav k-pager-first"
|
|
68
65
|
[disabled]="disabled"
|
|
69
66
|
fillMode="flat"
|
|
@@ -76,8 +73,8 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
76
73
|
[enabled]="!disabled"
|
|
77
74
|
class="k-pager-nav"
|
|
78
75
|
[disabled]="disabled"
|
|
79
|
-
icon="
|
|
80
|
-
[svgIcon]="
|
|
76
|
+
[icon]="prevArrowIcons[1]"
|
|
77
|
+
[svgIcon]="prevArrowSVGIcons[1]"
|
|
81
78
|
fillMode="flat"
|
|
82
79
|
rounded="none"
|
|
83
80
|
[title]="textFor('pagerPreviousPage')"
|
|
@@ -100,8 +97,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
100
97
|
[attr.aria-label]="textFor('pagerFirstPage')"
|
|
101
98
|
(click)="onButtonClick('firstPage')"
|
|
102
99
|
role="button"
|
|
103
|
-
icon="
|
|
104
|
-
[svgIcon]="
|
|
100
|
+
[icon]="prevArrowIcons[0]"
|
|
101
|
+
[svgIcon]="prevArrowSVGIcons[0]"
|
|
105
102
|
class="k-pager-nav k-pager-first"
|
|
106
103
|
[disabled]="disabled"
|
|
107
104
|
fillMode="flat"
|
|
@@ -114,8 +111,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
114
111
|
[enabled]="!disabled"
|
|
115
112
|
class="k-pager-nav"
|
|
116
113
|
[disabled]="disabled"
|
|
117
|
-
icon="
|
|
118
|
-
[svgIcon]="
|
|
114
|
+
[icon]="prevArrowIcons[1]"
|
|
115
|
+
[svgIcon]="prevArrowSVGIcons[1]"
|
|
119
116
|
fillMode="flat"
|
|
120
117
|
rounded="none"
|
|
121
118
|
[title]="textFor('pagerPreviousPage')"
|
|
@@ -21,7 +21,7 @@ import * as i4 from "@angular/common";
|
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
23
|
* ```html
|
|
24
|
-
* <kendo-treelist
|
|
24
|
+
* <kendo-treelist ...>
|
|
25
25
|
* <ng-template kendoTreeListToolbarTemplate>
|
|
26
26
|
* <button kendoTreeListPDFCommand>Export to PDF</button>
|
|
27
27
|
* </ng-template>
|
|
@@ -61,7 +61,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
61
61
|
</span>
|
|
62
62
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
63
63
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
64
|
-
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
64
|
+
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
65
65
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
|
|
66
66
|
type: Component,
|
|
67
67
|
args: [{
|
|
@@ -5,6 +5,15 @@
|
|
|
5
5
|
import { Component } from '@angular/core';
|
|
6
6
|
import { PDFExportMarginComponent } from '@progress/kendo-angular-pdf-export';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* Represents the Kendo UI PDFMargin component for Angular.
|
|
10
|
+
* The supported units are:
|
|
11
|
+
* `"mm"`
|
|
12
|
+
* `"cm"`
|
|
13
|
+
* `"in"`
|
|
14
|
+
* `"pt"` (default).
|
|
15
|
+
* Numbers are considered to be points (`"pt"`).
|
|
16
|
+
*/
|
|
8
17
|
export class PDFMarginComponent extends PDFExportMarginComponent {
|
|
9
18
|
}
|
|
10
19
|
PDFMarginComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFMarginComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
|
|
|
20
20
|
* - `loading`—Specifies if the item children are currently loading.
|
|
21
21
|
* - `rowIndex`—The current row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
|
|
22
22
|
*
|
|
23
|
-
*
|
|
23
|
+
* @example
|
|
24
24
|
* ```html
|
|
25
25
|
* <kendo-treelist ...>
|
|
26
26
|
* <kendo-treelist-column field="ProductName">
|