@taiga-ui/addon-table 2.61.0 → 3.0.0-rc.2
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/bundles/taiga-ui-addon-table-components-reorder.umd.js +422 -297
- package/bundles/taiga-ui-addon-table-components-reorder.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-components-table-pagination.umd.js +445 -314
- package/bundles/taiga-ui-addon-table-components-table-pagination.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-components-table.umd.js +863 -659
- package/bundles/taiga-ui-addon-table-components-table.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-components.umd.js +11 -25
- package/bundles/taiga-ui-addon-table-components.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-directives-table-filters.umd.js +453 -320
- package/bundles/taiga-ui-addon-table-directives-table-filters.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-directives.umd.js +5 -7
- package/bundles/taiga-ui-addon-table-directives.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-interfaces.umd.js +2 -2
- package/bundles/taiga-ui-addon-table-interfaces.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-tokens.umd.js +9 -5
- package/bundles/taiga-ui-addon-table-tokens.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-types.umd.js +2 -2
- package/bundles/taiga-ui-addon-table-types.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table-utils.umd.js +9 -11
- package/bundles/taiga-ui-addon-table-utils.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-table.umd.js +19 -21
- package/bundles/taiga-ui-addon-table.umd.js.map +1 -1
- package/components/index.d.ts +0 -1
- package/components/package.json +2 -5
- package/components/reorder/package.json +2 -5
- package/components/reorder/reorder.component.d.ts +3 -0
- package/components/reorder/reorder.module.d.ts +9 -0
- package/components/reorder/taiga-ui-addon-table-components-reorder.d.ts +1 -0
- package/components/table/directives/cell.directive.d.ts +3 -0
- package/components/table/directives/head.directive.d.ts +3 -0
- package/components/table/directives/resized.directive.d.ts +3 -0
- package/components/table/directives/row.directive.d.ts +3 -0
- package/components/table/directives/sort-by.directive.d.ts +3 -0
- package/components/table/directives/sortable.directive.d.ts +3 -0
- package/components/table/directives/table.directive.d.ts +5 -2
- package/components/table/directives/thead.directive.d.ts +3 -0
- package/components/table/package.json +2 -5
- package/components/table/pipes/table-sort.pipe.d.ts +3 -0
- package/components/table/providers/stuck.provider.d.ts +1 -3
- package/components/table/providers/table.provider.d.ts +0 -2
- package/components/table/providers/table.providers.d.ts +0 -6
- package/components/table/table.module.d.ts +22 -0
- package/components/table/taiga-ui-addon-table-components-table.d.ts +1 -0
- package/components/table/tbody/tbody.component.d.ts +3 -0
- package/components/table/td/td.component.d.ts +3 -0
- package/components/table/th/th.component.d.ts +3 -0
- package/components/table/th-group/th-group.component.d.ts +3 -0
- package/components/table/tr/tr.component.d.ts +3 -0
- package/components/table-pagination/package.json +2 -5
- package/components/table-pagination/table-pagination.component.d.ts +3 -0
- package/components/table-pagination/table-pagination.module.d.ts +8 -0
- package/components/table-pagination/taiga-ui-addon-table-components-table-pagination.d.ts +1 -0
- package/components/taiga-ui-addon-table-components.d.ts +1 -0
- package/directives/package.json +2 -5
- package/directives/table-filters/generic-filter.directive.d.ts +3 -0
- package/directives/table-filters/package.json +2 -5
- package/directives/table-filters/table-filter.directive.d.ts +3 -0
- package/directives/table-filters/table-filters.directive.d.ts +3 -0
- package/directives/table-filters/table-filters.module.d.ts +8 -0
- package/directives/table-filters/table-filters.pipe.d.ts +3 -0
- package/directives/table-filters/taiga-ui-addon-table-directives-table-filters.d.ts +1 -0
- package/directives/taiga-ui-addon-table-directives.d.ts +1 -0
- package/esm2015/components/index.js +1 -2
- package/esm2015/components/reorder/index.js +1 -1
- package/esm2015/components/reorder/reorder.component.js +34 -28
- package/esm2015/components/reorder/reorder.module.js +26 -13
- package/esm2015/components/reorder/taiga-ui-addon-table-components-reorder.js +1 -1
- package/esm2015/components/table/directives/cell.directive.js +18 -15
- package/esm2015/components/table/directives/head.directive.js +17 -17
- package/esm2015/components/table/directives/resized.directive.js +26 -25
- package/esm2015/components/table/directives/row.directive.js +18 -15
- package/esm2015/components/table/directives/sort-by.directive.js +26 -23
- package/esm2015/components/table/directives/sortable.directive.js +24 -18
- package/esm2015/components/table/directives/table.directive.js +48 -39
- package/esm2015/components/table/directives/thead.directive.js +33 -25
- package/esm2015/components/table/index.js +1 -1
- package/esm2015/components/table/pipes/table-sort.pipe.js +18 -15
- package/esm2015/components/table/providers/stuck.provider.js +6 -8
- package/esm2015/components/table/providers/table.provider.js +3 -5
- package/esm2015/components/table/providers/table.providers.js +7 -15
- package/esm2015/components/table/table.module.js +69 -41
- package/esm2015/components/table/taiga-ui-addon-table-components-table.js +1 -1
- package/esm2015/components/table/tbody/tbody.component.js +43 -32
- package/esm2015/components/table/td/td.component.js +23 -17
- package/esm2015/components/table/th/th.component.js +56 -36
- package/esm2015/components/table/th-group/th-group.component.js +27 -23
- package/esm2015/components/table/tr/tr.component.js +28 -22
- package/esm2015/components/table-pagination/index.js +1 -1
- package/esm2015/components/table-pagination/table-pagination-options.js +1 -1
- package/esm2015/components/table-pagination/table-pagination.component.js +40 -32
- package/esm2015/components/table-pagination/table-pagination.module.js +30 -13
- package/esm2015/components/table-pagination/taiga-ui-addon-table-components-table-pagination.js +1 -1
- package/esm2015/components/taiga-ui-addon-table-components.js +1 -1
- package/esm2015/directives/index.js +1 -1
- package/esm2015/directives/table-filters/abstract-table-filter.js +1 -1
- package/esm2015/directives/table-filters/generic-filter.directive.js +25 -20
- package/esm2015/directives/table-filters/index.js +2 -1
- package/esm2015/directives/table-filters/table-filter.directive.js +32 -24
- package/esm2015/directives/table-filters/table-filter.js +2 -1
- package/esm2015/directives/table-filters/table-filters.directive.js +12 -10
- package/esm2015/directives/table-filters/table-filters.module.js +30 -21
- package/esm2015/directives/table-filters/table-filters.pipe.js +16 -14
- package/esm2015/directives/table-filters/taiga-ui-addon-table-directives-table-filters.js +1 -1
- package/esm2015/directives/taiga-ui-addon-table-directives.js +1 -1
- package/esm2015/index.js +2 -1
- package/esm2015/interfaces/index.js +2 -1
- package/esm2015/interfaces/row-context.js +2 -1
- package/esm2015/interfaces/taiga-ui-addon-table-interfaces.js +2 -1
- package/esm2015/taiga-ui-addon-table.js +1 -1
- package/esm2015/tokens/i18n.js +4 -4
- package/esm2015/tokens/index.js +1 -1
- package/esm2015/tokens/taiga-ui-addon-table-tokens.js +1 -1
- package/esm2015/types/comparator.js +2 -1
- package/esm2015/types/index.js +2 -1
- package/esm2015/types/taiga-ui-addon-table-types.js +2 -1
- package/esm2015/utils/default-sort.js +4 -9
- package/esm2015/utils/index.js +1 -1
- package/esm2015/utils/taiga-ui-addon-table-utils.js +1 -1
- package/fesm2015/taiga-ui-addon-table-components-reorder.js +59 -38
- package/fesm2015/taiga-ui-addon-table-components-reorder.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-components-table-pagination.js +68 -41
- package/fesm2015/taiga-ui-addon-table-components-table-pagination.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-components-table.js +436 -347
- package/fesm2015/taiga-ui-addon-table-components-table.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-components.js +0 -1
- package/fesm2015/taiga-ui-addon-table-components.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-directives-table-filters.js +104 -76
- package/fesm2015/taiga-ui-addon-table-directives-table-filters.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-directives.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-interfaces.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-tokens.js +3 -3
- package/fesm2015/taiga-ui-addon-table-tokens.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-types.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table-utils.js +4 -9
- package/fesm2015/taiga-ui-addon-table-utils.js.map +1 -1
- package/fesm2015/taiga-ui-addon-table.js +1 -0
- package/fesm2015/taiga-ui-addon-table.js.map +1 -1
- package/interfaces/package.json +2 -5
- package/interfaces/taiga-ui-addon-table-interfaces.d.ts +1 -0
- package/package.json +12 -15
- package/taiga-ui-addon-table.d.ts +1 -0
- package/tokens/package.json +2 -5
- package/tokens/taiga-ui-addon-table-tokens.d.ts +1 -0
- package/types/package.json +2 -5
- package/types/taiga-ui-addon-table-types.d.ts +1 -0
- package/utils/default-sort.d.ts +1 -5
- package/utils/package.json +2 -5
- package/utils/taiga-ui-addon-table-utils.d.ts +1 -0
- package/bundles/taiga-ui-addon-table-components-reorder.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-components-reorder.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-components-resizable-column.umd.js +0 -338
- package/bundles/taiga-ui-addon-table-components-resizable-column.umd.js.map +0 -1
- package/bundles/taiga-ui-addon-table-components-resizable-column.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-components-resizable-column.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-components-table-pagination.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-components-table-pagination.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-components-table.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-components-table.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-components.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-components.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-directives-table-filters.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-directives-table-filters.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-directives.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-directives.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-interfaces.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-interfaces.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-tokens.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-tokens.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-types.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-types.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table-utils.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table-utils.umd.min.js.map +0 -1
- package/bundles/taiga-ui-addon-table.umd.min.js +0 -2
- package/bundles/taiga-ui-addon-table.umd.min.js.map +0 -1
- package/components/reorder/taiga-ui-addon-table-components-reorder.metadata.json +0 -1
- package/components/resizable-column/index.d.ts +0 -3
- package/components/resizable-column/package.json +0 -13
- package/components/resizable-column/resizable-column.component.d.ts +0 -5
- package/components/resizable-column/resizable-column.directive.d.ts +0 -9
- package/components/resizable-column/resizable-column.module.d.ts +0 -3
- package/components/resizable-column/taiga-ui-addon-table-components-resizable-column.d.ts +0 -4
- package/components/resizable-column/taiga-ui-addon-table-components-resizable-column.metadata.json +0 -1
- package/components/table/taiga-ui-addon-table-components-table.metadata.json +0 -1
- package/components/table-pagination/taiga-ui-addon-table-components-table-pagination.metadata.json +0 -1
- package/components/taiga-ui-addon-table-components.metadata.json +0 -1
- package/directives/table-filters/taiga-ui-addon-table-directives-table-filters.metadata.json +0 -1
- package/directives/taiga-ui-addon-table-directives.metadata.json +0 -1
- package/esm2015/components/resizable-column/index.js +0 -4
- package/esm2015/components/resizable-column/resizable-column.component.js +0 -30
- package/esm2015/components/resizable-column/resizable-column.directive.js +0 -37
- package/esm2015/components/resizable-column/resizable-column.module.js +0 -15
- package/esm2015/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js +0 -5
- package/esm5/components/index.js +0 -5
- package/esm5/components/reorder/index.js +0 -3
- package/esm5/components/reorder/reorder.component.js +0 -72
- package/esm5/components/reorder/reorder.module.js +0 -27
- package/esm5/components/reorder/taiga-ui-addon-table-components-reorder.js +0 -5
- package/esm5/components/resizable-column/index.js +0 -4
- package/esm5/components/resizable-column/resizable-column.component.js +0 -31
- package/esm5/components/resizable-column/resizable-column.directive.js +0 -42
- package/esm5/components/resizable-column/resizable-column.module.js +0 -18
- package/esm5/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js +0 -5
- package/esm5/components/table/directives/cell.directive.js +0 -25
- package/esm5/components/table/directives/head.directive.js +0 -22
- package/esm5/components/table/directives/resized.directive.js +0 -41
- package/esm5/components/table/directives/row.directive.js +0 -28
- package/esm5/components/table/directives/sort-by.directive.js +0 -41
- package/esm5/components/table/directives/sortable.directive.js +0 -52
- package/esm5/components/table/directives/table.directive.js +0 -88
- package/esm5/components/table/directives/thead.directive.js +0 -33
- package/esm5/components/table/index.js +0 -19
- package/esm5/components/table/pipes/table-sort.pipe.js +0 -31
- package/esm5/components/table/providers/stuck.provider.js +0 -21
- package/esm5/components/table/providers/table.provider.js +0 -17
- package/esm5/components/table/providers/table.providers.js +0 -48
- package/esm5/components/table/table.module.js +0 -63
- package/esm5/components/table/taiga-ui-addon-table-components-table.js +0 -5
- package/esm5/components/table/tbody/tbody.component.js +0 -70
- package/esm5/components/table/td/td.component.js +0 -22
- package/esm5/components/table/th/th.component.js +0 -88
- package/esm5/components/table/th-group/th-group.component.js +0 -42
- package/esm5/components/table/tr/tr.component.js +0 -45
- package/esm5/components/table-pagination/index.js +0 -4
- package/esm5/components/table-pagination/table-pagination-options.js +0 -17
- package/esm5/components/table-pagination/table-pagination.component.js +0 -113
- package/esm5/components/table-pagination/table-pagination.module.js +0 -28
- package/esm5/components/table-pagination/taiga-ui-addon-table-components-table-pagination.js +0 -5
- package/esm5/components/taiga-ui-addon-table-components.js +0 -5
- package/esm5/directives/index.js +0 -2
- package/esm5/directives/table-filters/abstract-table-filter.js +0 -7
- package/esm5/directives/table-filters/generic-filter.directive.js +0 -34
- package/esm5/directives/table-filters/index.js +0 -7
- package/esm5/directives/table-filters/table-filter.directive.js +0 -59
- package/esm5/directives/table-filters/table-filter.js +0 -1
- package/esm5/directives/table-filters/table-filters.directive.js +0 -39
- package/esm5/directives/table-filters/table-filters.module.js +0 -29
- package/esm5/directives/table-filters/table-filters.pipe.js +0 -23
- package/esm5/directives/table-filters/taiga-ui-addon-table-directives-table-filters.js +0 -5
- package/esm5/directives/taiga-ui-addon-table-directives.js +0 -5
- package/esm5/index.js +0 -5
- package/esm5/interfaces/index.js +0 -1
- package/esm5/interfaces/row-context.js +0 -1
- package/esm5/interfaces/taiga-ui-addon-table-interfaces.js +0 -4
- package/esm5/taiga-ui-addon-table.js +0 -5
- package/esm5/tokens/i18n.js +0 -9
- package/esm5/tokens/index.js +0 -2
- package/esm5/tokens/taiga-ui-addon-table-tokens.js +0 -5
- package/esm5/types/comparator.js +0 -1
- package/esm5/types/index.js +0 -1
- package/esm5/types/taiga-ui-addon-table-types.js +0 -4
- package/esm5/utils/default-sort.js +0 -18
- package/esm5/utils/index.js +0 -2
- package/esm5/utils/taiga-ui-addon-table-utils.js +0 -5
- package/fesm2015/taiga-ui-addon-table-components-resizable-column.js +0 -79
- package/fesm2015/taiga-ui-addon-table-components-resizable-column.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-components-reorder.js +0 -99
- package/fesm5/taiga-ui-addon-table-components-reorder.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-components-resizable-column.js +0 -88
- package/fesm5/taiga-ui-addon-table-components-resizable-column.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-components-table-pagination.js +0 -156
- package/fesm5/taiga-ui-addon-table-components-table-pagination.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-components-table.js +0 -669
- package/fesm5/taiga-ui-addon-table-components-table.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-components.js +0 -9
- package/fesm5/taiga-ui-addon-table-components.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-directives-table-filters.js +0 -174
- package/fesm5/taiga-ui-addon-table-directives-table-filters.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-directives.js +0 -6
- package/fesm5/taiga-ui-addon-table-directives.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-interfaces.js +0 -4
- package/fesm5/taiga-ui-addon-table-interfaces.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-tokens.js +0 -16
- package/fesm5/taiga-ui-addon-table-tokens.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-types.js +0 -4
- package/fesm5/taiga-ui-addon-table-types.js.map +0 -1
- package/fesm5/taiga-ui-addon-table-utils.js +0 -25
- package/fesm5/taiga-ui-addon-table-utils.js.map +0 -1
- package/fesm5/taiga-ui-addon-table.js +0 -9
- package/fesm5/taiga-ui-addon-table.js.map +0 -1
- package/interfaces/taiga-ui-addon-table-interfaces.metadata.json +0 -1
- package/taiga-ui-addon-table.metadata.json +0 -1
- package/tokens/taiga-ui-addon-table-tokens.metadata.json +0 -1
- package/types/taiga-ui-addon-table-types.metadata.json +0 -1
- package/utils/taiga-ui-addon-table-utils.metadata.json +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"TuiReorderComponent":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"tui-reorder","template":"<div\n cdkDropList\n class=\"t-wrapper\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <div\n *ngFor=\"let item of items\"\n tabindex=\"-1\"\n cdkDrag\n class=\"t-item\"\n >\n <tui-svg\n src=\"tuiIconDrag\"\n class=\"t-icon\"\n ></tui-svg>\n {{ item }}\n <button\n type=\"button\"\n tuiIconButton\n appearance=\"icon\"\n size=\"xs\"\n tuiPreventDefault=\"mousedown\"\n class=\"t-button\"\n [class.t-button_hidden]=\"!isEnabled(item)\"\n [title]=\"showHideText$ | async\"\n [icon]=\"getIcon(item)\"\n (click)=\"toggle(item)\"\n ></button>\n </div>\n</div>\n","styles":[":host{display:block;font:var(--tui-font-text-s);padding:.5rem 0}.t-item{transition-property:background;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;display:flex;height:2rem;align-items:center;padding:0 .75rem;cursor:ns-resize;background:var(--tui-base-01);outline:0}.t-item:hover{background:var(--tui-base-02)}.t-item:hover .t-button{opacity:1}.t-icon{margin-right:.5rem;color:var(--tui-base-05)}.t-button{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;margin-left:auto;opacity:0}.t-button_hidden{opacity:1}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating,.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder){transition:transform 250ms cubic-bezier(0,0,.2,1)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder):hover{background:var(--tui-base-01)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder) .t-button{display:none}"]}]}],"members":{"items":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":21,"character":5}}]}],"enabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":25,"character":5}}]}],"itemsChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":28,"character":5}}]}],"enabledChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":31,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":35,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/addon-table/tokens","name":"TUI_TABLE_SHOW_HIDE_MESSAGE","line":35,"character":16}]}]],"parameters":[{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"reference","name":"string"}]}]}],"noop":[{"__symbolic":"method","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostListener","line":38,"character":5},"arguments":["focusout.stop"]}]}],"isEnabled":[{"__symbolic":"method"}],"getIcon":[{"__symbolic":"method"}],"toggle":[{"__symbolic":"method"}],"drop":[{"__symbolic":"method"}],"updateEnabled":[{"__symbolic":"method"}]}},"TuiReorderModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":8,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":10,"character":8},{"__symbolic":"reference","module":"@angular/cdk/drag-drop","name":"DragDropModule","line":11,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiSvgModule","line":12,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiButtonModule","line":13,"character":8},{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TuiPreventDefaultModule","line":14,"character":8}],"declarations":[{"__symbolic":"reference","name":"TuiReorderComponent"}],"exports":[{"__symbolic":"reference","name":"TuiReorderComponent"}]}]}],"members":{}}},"origins":{"TuiReorderComponent":"./reorder.component","TuiReorderModule":"./reorder.module"},"importAs":"@taiga-ui/addon-table/components/reorder"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"main": "../../bundles/taiga-ui-addon-table-components-resizable-column.umd.js",
|
|
3
|
-
"module": "../../fesm5/taiga-ui-addon-table-components-resizable-column.js",
|
|
4
|
-
"es2015": "../../fesm2015/taiga-ui-addon-table-components-resizable-column.js",
|
|
5
|
-
"esm5": "../../esm5/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js",
|
|
6
|
-
"esm2015": "../../esm2015/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js",
|
|
7
|
-
"fesm5": "../../fesm5/taiga-ui-addon-table-components-resizable-column.js",
|
|
8
|
-
"fesm2015": "../../fesm2015/taiga-ui-addon-table-components-resizable-column.js",
|
|
9
|
-
"typings": "taiga-ui-addon-table-components-resizable-column.d.ts",
|
|
10
|
-
"metadata": "taiga-ui-addon-table-components-resizable-column.metadata.json",
|
|
11
|
-
"sideEffects": false,
|
|
12
|
-
"name": "@taiga-ui/addon-table/components/resizable-column"
|
|
13
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
/** @deprecated use `<th tuiTh [resizable]="true">` from {@link TuiTableModule} */
|
|
3
|
-
export declare class TuiResizableColumnDirective {
|
|
4
|
-
private readonly documentRef;
|
|
5
|
-
private readonly elementRef;
|
|
6
|
-
private readonly parentRef;
|
|
7
|
-
readonly tuiResizableColumn: import("rxjs").Observable<number>;
|
|
8
|
-
constructor(documentRef: Document, elementRef: ElementRef<HTMLElement>, parentRef: ElementRef<HTMLTableHeaderCellElement>);
|
|
9
|
-
}
|
package/components/resizable-column/taiga-ui-addon-table-components-resizable-column.metadata.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"TuiResizableColumnComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"th[tuiResizableColumn]","providers":[{"provide":{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_ELEMENT_REF","line":10,"character":21},"useExisting":{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":11,"character":25}}],"template":"<ng-content></ng-content>\n<div\n class=\"t-bar\"\n (tuiResizableColumn)=\"onResize($event)\"\n></div>\n","styles":[":host{position:relative}:host:last-child .t-bar{display:none}.t-bar{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;position:absolute;top:0;bottom:0;right:-1px;width:3px;justify-self:flex-end;border-left:2px solid transparent;background:var(--tui-support-12);background-clip:content-box;cursor:ew-resize;opacity:0}.t-bar:active,.t-bar:hover{opacity:1}"]}]}],"members":{"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":16,"character":5},"arguments":["style.width.px"]}]}],"onResize":[{"__symbolic":"method"}]}},"TuiResizableColumnDirective":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":8,"character":1},"arguments":[{"selector":"[tuiResizableColumn]"}]}],"members":{"tuiResizableColumn":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":12,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":30,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/common","name":"DOCUMENT","line":30,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":31,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":31,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":33,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_ELEMENT_REF","line":33,"character":16}]}]],"parameters":[{"__symbolic":"error","message":"Could not resolve type","line":30,"character":56,"context":{"typeName":"Document"},"module":"./resizable-column.directive"},{"__symbolic":"reference","name":"ElementRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":34,"character":47,"context":{"typeName":"HTMLTableHeaderCellElement"},"module":"./resizable-column.directive"}]},{"__symbolic":"reference","name":"ElementRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":34,"character":47,"context":{"typeName":"HTMLTableHeaderCellElement"},"module":"./resizable-column.directive"}]}]}]}},"TuiResizableColumnModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":6,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"TuiResizableColumnComponent"},{"__symbolic":"reference","name":"TuiResizableColumnDirective"}],"exports":[{"__symbolic":"reference","name":"TuiResizableColumnComponent"},{"__symbolic":"reference","name":"TuiResizableColumnDirective"}]}]}],"members":{}}},"origins":{"TuiResizableColumnComponent":"./resizable-column.component","TuiResizableColumnDirective":"./resizable-column.directive","TuiResizableColumnModule":"./resizable-column.module"},"importAs":"@taiga-ui/addon-table/components/resizable-column"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"TuiCellDirective":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":3,"character":1},"arguments":[{"selector":"[tuiCell]"}]}],"members":{"tuiCell":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":7,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":8,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":12,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"TemplateRef","line":12,"character":16}]}]],"parameters":[{"__symbolic":"reference","name":"TemplateRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":12,"character":60,"context":{"typeName":"Record"},"module":"./directives/cell.directive"}]}]}]}},"TuiHeadDirective":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":2,"character":1},"arguments":[{"selector":"[tuiHead]"}]}],"members":{"tuiHead":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":6,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":10,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"TemplateRef","line":10,"character":16}]}]],"parameters":[{"__symbolic":"reference","name":"TemplateRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":10,"character":60,"context":{"typeName":"Record"},"module":"./directives/head.directive"}]}]}]}},"TuiResizedDirective":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":7,"character":1},"arguments":[{"selector":"[tuiResized]"}]}],"members":{"tuiResized":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":11,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":26,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/common","name":"DOCUMENT","line":26,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":27,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":27,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":29,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_ELEMENT_REF","line":29,"character":16}]}]],"parameters":[{"__symbolic":"error","message":"Could not resolve type","line":26,"character":56,"context":{"typeName":"Document"},"module":"./directives/resized.directive"},{"__symbolic":"reference","name":"ElementRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":30,"character":47,"context":{"typeName":"HTMLTableHeaderCellElement"},"module":"./directives/resized.directive"}]},{"__symbolic":"reference","name":"ElementRef","module":"@angular/core","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":30,"character":47,"context":{"typeName":"HTMLTableHeaderCellElement"},"module":"./directives/resized.directive"}]}]}]}},"TuiRowDirective":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":4,"character":1},"arguments":[{"selector":"ng-template[tuiRow]"}]}],"members":{"tuiRowOf":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":9,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":12,"character":17},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"TemplateRef","line":12,"character":24}]}]],"parameters":[{"__symbolic":"reference","name":"TemplateRef","module":"@angular/core","arguments":[{"__symbolic":"reference","name":"TuiRowContext","module":"@taiga-ui/addon-table/interfaces","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":12,"character":82,"context":{"typeName":"T"},"module":"./directives/row.directive"}]}]}]}]},"statics":{"ngTemplateContextGuard":{"__symbolic":"function","parameters":["_dir","_ctx"],"value":true}}},"TuiSortByDirective":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":15,"character":1},"arguments":[{"selector":"table[tuiTable][tuiSortBy]"}]}],"members":{"sortables":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren","line":19,"character":5},"arguments":[{"__symbolic":"reference","name":"TuiSortableDirective"},{"descendants":true}]}]}],"tuiSortBy":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":22,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":23,"character":5}}]}],"tuiSortByChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":26,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":33,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiTableDirective"}]}],"getKey":[{"__symbolic":"method"}]}},"TuiSortableDirective":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":7,"character":1},"arguments":[{"selector":"th[tuiTh][tuiSortable]"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":12,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiSortByDirective"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":14,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":15,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiThComponent"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiSortByDirective"},{"__symbolic":"reference","name":"TuiTableDirective"},{"__symbolic":"reference","name":"TuiThComponent"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngDoCheck":[{"__symbolic":"method"}]}},"TuiTableDirective":{"__symbolic":"class","arity":1,"extends":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TuiController","line":27,"character":42},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":18,"character":1},"arguments":[{"selector":"table[tuiTable]","providers":{"__symbolic":"reference","name":"TUI_TABLE_PROVIDERS"},"host":{"($.data-mode.attr)":"mode$","($.class._stuck)":"stuck$","style":"border-collapse: separate","$quoted$":["($.data-mode.attr)","($.class._stuck)"]}}]}],"members":{"columns":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":28,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":29,"character":5}}]}],"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":32,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":33,"character":5},"arguments":["attr.data-size"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":34,"character":5}}]}],"direction":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":37,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":38,"character":5}}]}],"directionChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":41,"character":5}}]}],"sorterChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":44,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":48,"character":9},"arguments":[{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"IntersectionObserverService","line":48,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":50,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_MODE","line":50,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":51,"character":9},"arguments":[{"__symbolic":"reference","name":"TUI_STUCK"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":52,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectorRef","line":52,"character":16}]}]],"parameters":[{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"reference","name":"boolean"}]},{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"reference","name":"boolean"}]},{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"reference","name":"boolean"}]},{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectorRef","line":52,"character":71}]}],"sorter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":57,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":58,"character":5}}]}],"updateSorter":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}]}},"TuiTheadDirective":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":9,"character":1},"arguments":[{"selector":"thead[tuiThead]","providers":[{"__symbolic":"reference","name":"TUI_STUCK_PROVIDER"},{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"IntersectionObserverService","line":13,"character":8},{"provide":{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"INTERSECTION_ROOT_MARGIN","line":15,"character":21},"useValue":"0px 10000px 10000px 10000px"}],"host":{"($.class._stuck)":"stuck$","$quoted$":["($.class._stuck)"]}}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":24,"character":17},"arguments":[{"__symbolic":"reference","name":"TUI_STUCK"}]}]],"parameters":[{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"reference","name":"boolean"}]}]}]}},"TuiTableSortPipe":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":6,"character":1},"arguments":[{"name":"tuiTableSort","pure":false}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":12,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiTableDirective"}]}],"transform":[{"__symbolic":"method"}],"sort":[{"__symbolic":"method","decorators":[{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiPure","line":19,"character":5}]}]}},"stuckFactory":{"__symbolic":"function"},"TUI_STUCK":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":17,"character":29},"arguments":["Stream of sticky stuck events"]},"TUI_STUCK_PROVIDER":{"provide":{"__symbolic":"reference","name":"TUI_STUCK"},"deps":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":21,"character":11},{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"IntersectionObserverService","line":21,"character":23}],"useFactory":{"__symbolic":"reference","name":"stuckFactory"}},"TUI_TABLE_PROVIDER":[{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TuiDestroyService","line":11,"character":4},{"__symbolic":"reference","name":"TuiTableSortPipe"},{"provide":{"__symbolic":"reference","name":"TuiTableDirective"},"deps":[[{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf","line":15,"character":20}},{"__symbolic":"reference","name":"TuiTableDirective"}],{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectorRef","line":15,"character":52},{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TuiDestroyService","line":15,"character":71}],"useFactory":{"__symbolic":"reference","name":"watchedControllerFactory","module":"@taiga-ui/core"}}],"TABLE_THRESHOLD":[0,1],"TABLE_LABEL":{"labelOutside":true},"inputCountOptionsFactory":{"__symbolic":"function","parameters":["options"],"value":{"hideButtons":true}},"TUI_TABLE_PROVIDERS":[{"provide":{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"INTERSECTION_ROOT_MARGIN","line":32,"character":17},"useValue":"10000px 10000px 10000px 0px"},{"provide":{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"INTERSECTION_THRESHOLD","line":36,"character":17},"useValue":{"__symbolic":"reference","name":"TABLE_THRESHOLD"}},{"provide":{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_TEXTFIELD_APPEARANCE","line":40,"character":17},"useValue":"table"},{"provide":{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_TEXTFIELD_LABEL_OUTSIDE","line":45,"character":17},"useValue":{"__symbolic":"reference","name":"TABLE_LABEL"}},{"provide":{"__symbolic":"reference","module":"@taiga-ui/kit","name":"TUI_INPUT_COUNT_OPTIONS","line":49,"character":17},"deps":[[{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf","line":50,"character":20}},{"__symbolic":"reference","module":"@taiga-ui/kit","name":"TUI_INPUT_COUNT_OPTIONS","line":50,"character":32}]],"useFactory":{"__symbolic":"reference","name":"inputCountOptionsFactory"}},{"provide":{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_TEXTFIELD_SIZE","line":54,"character":17},"useExisting":{"__symbolic":"reference","name":"TuiTableDirective"}},{"__symbolic":"reference","module":"@ng-web-apis/intersection-observer","name":"IntersectionObserverService","line":57,"character":4},{"__symbolic":"reference","module":"@taiga-ui/core","name":"MODE_PROVIDER","line":58,"character":4},{"__symbolic":"reference","name":"TUI_STUCK_PROVIDER"}],"TuiTableModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":21,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":22,"character":14},{"__symbolic":"reference","module":"@tinkoff/ng-polymorpheus","name":"PolymorpheusModule","line":22,"character":28},{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"TuiMapperPipeModule","line":22,"character":48},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiSvgModule","line":22,"character":69}],"declarations":[{"__symbolic":"reference","name":"TuiTableDirective"},{"__symbolic":"reference","name":"TuiTbodyComponent"},{"__symbolic":"reference","name":"TuiThGroupComponent"},{"__symbolic":"reference","name":"TuiThComponent"},{"__symbolic":"reference","name":"TuiTdComponent"},{"__symbolic":"reference","name":"TuiTrComponent"},{"__symbolic":"reference","name":"TuiCellDirective"},{"__symbolic":"reference","name":"TuiHeadDirective"},{"__symbolic":"reference","name":"TuiRowDirective"},{"__symbolic":"reference","name":"TuiSortByDirective"},{"__symbolic":"reference","name":"TuiSortableDirective"},{"__symbolic":"reference","name":"TuiTheadDirective"},{"__symbolic":"reference","name":"TuiResizedDirective"},{"__symbolic":"reference","name":"TuiTableSortPipe"}],"exports":[{"__symbolic":"reference","name":"TuiTableDirective"},{"__symbolic":"reference","name":"TuiTbodyComponent"},{"__symbolic":"reference","name":"TuiThGroupComponent"},{"__symbolic":"reference","name":"TuiThComponent"},{"__symbolic":"reference","name":"TuiTdComponent"},{"__symbolic":"reference","name":"TuiTrComponent"},{"__symbolic":"reference","name":"TuiCellDirective"},{"__symbolic":"reference","name":"TuiHeadDirective"},{"__symbolic":"reference","name":"TuiRowDirective"},{"__symbolic":"reference","name":"TuiSortByDirective"},{"__symbolic":"reference","name":"TuiSortableDirective"},{"__symbolic":"reference","name":"TuiTheadDirective"},{"__symbolic":"reference","name":"TuiTableSortPipe"}]}]}],"members":{}},"TuiTbodyComponent":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":21,"character":1},"arguments":[{"selector":"tbody[tuiTbody]","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":25,"character":21},"member":"OnPush"},"providers":{"__symbolic":"reference","name":"TUI_TABLE_PROVIDER"},"template":"<ng-content></ng-content>\n<tr *ngIf=\"heading\">\n <th\n class=\"t-heading\"\n [colSpan]=\"table.columns.length\"\n >\n <button\n type=\"button\"\n class=\"t-expand\"\n (click)=\"onClick()\"\n >\n <span\n polymorpheus-outlet\n class=\"t-name\"\n [content]=\"heading\"\n ></span>\n <tui-svg\n src=\"tuiIconChevronDownLarge\"\n class=\"t-chevron\"\n [class.t-chevron_rotated]=\"open\"\n ></tui-svg>\n </button>\n </th>\n</tr>\n<ng-container *ngIf=\"open && row\">\n <ng-container\n *ngFor=\"let item of sorted; let index = index\"\n [ngTemplateOutlet]=\"row.template\"\n [ngTemplateOutletContext]=\"item | tuiMapper: toContext:index\"\n ></ng-container>\n</ng-container>\n","styles":[":host{border-color:var(--tui-base-04)}:host tr{border-color:inherit}.t-expand{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;border:0;background:0 0;font-size:inherit;line-height:inherit;display:flex;width:100%;height:100%;align-items:center;box-sizing:border-box;outline:0;font-weight:700;cursor:pointer;border-color:inherit}.t-expand:focus-visible .t-name{background:var(--tui-selection)}.t-expand:after,.t-expand:before{content:'';position:-webkit-sticky;position:sticky;height:100%;border-left:1px solid;border-color:inherit}.t-expand:before{left:0}.t-expand:after{right:0}.t-heading{height:var(--tui-height-m);font:var(--tui-font-text-s);padding:0;background:var(--tui-base-02);border-bottom:1px solid var(--tui-base-04);border-color:inherit}:host-context(table[data-size='l']) .t-heading{font:var(--tui-font-text-m);height:var(--tui-height-l)}.t-name{position:-webkit-sticky;position:sticky;left:.75rem;display:inline-block}:host-context(table[data-size='l']) .t-name{left:1rem}.t-chevron{transition-property:transform;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;position:-webkit-sticky;position:sticky;right:.75rem;margin:0 .6875rem 0 auto}.t-chevron_rotated{transform:rotate(180deg)}"]}]}],"members":{"data":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":29,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":30,"character":5}}]}],"heading":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":33,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":34,"character":5}}]}],"open":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":37,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":38,"character":5}}]}],"openChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":41,"character":5}}]}],"row":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild","line":44,"character":5},"arguments":[{"__symbolic":"reference","name":"TuiRowDirective"}]}]}],"rows":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren","line":47,"character":5},"arguments":[{"__symbolic":"reference","name":"TuiTrComponent"}]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":51,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableSortPipe"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":52,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiTableSortPipe"},{"__symbolic":"reference","name":"TuiTableDirective"}]}],"onClick":[{"__symbolic":"method"}]}},"TuiTdComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":8,"character":1},"arguments":[{"selector":"th[tuiTd], td[tuiTd]","template":"\n <ng-content></ng-content>\n ","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":14,"character":21},"member":"OnPush"},"styles":[":host{position:relative;height:var(--tui-height-m);font:var(--tui-font-text-s);text-align:left;padding:0 .75rem;background:var(--tui-base-01);border:1px solid var(--tui-base-04);border-top:none;box-sizing:border-box;transform:translate3d(0,0,0)}:host:first-child{left:0}:host:not(:first-child){border-left:none}:host._editable:focus-within{z-index:1}:host._editable{padding:0;vertical-align:top}:host(th){position:-webkit-sticky;position:sticky;z-index:1}:host(th):after{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;content:'';position:absolute;top:0;bottom:0;left:100%;width:.3125rem;pointer-events:none;background:rgba(237,237,237,.7);opacity:0}:host(th):focus-within:not(:disabled){z-index:11}:host-context(table[data-mode=onDark]):after{background:rgba(60,60,60,.9)}:host-context(table._stuck){z-index:10}:host-context(table._stuck):last-of-type:after{opacity:1}:host-context(table[data-size='l']){font:var(--tui-font-text-m);height:var(--tui-height-l);padding-left:1rem;padding-right:1rem}:host-context(table[data-size='l'])._editable{padding:0}:host(td):focus-within{z-index:1}:host(td):not(:focus-within){z-index:0}"]}]}],"members":{"control":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":17,"character":5},"arguments":["class._editable"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild","line":18,"character":5},"arguments":[{"__symbolic":"reference","module":"@angular/forms","name":"NgControl","line":18,"character":18}]}]}]}},"TuiThComponent":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":18,"character":1},"arguments":[{"selector":"th[tuiTh]","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":22,"character":21},"member":"OnPush"},"providers":[{"provide":{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_ELEMENT_REF","line":25,"character":21},"useExisting":{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":26,"character":25}}],"template":"<button\n *ngIf=\"sorter && table; else content\"\n type=\"button\"\n class=\"t-sort\"\n [class.t-sort_sorted]=\"isCurrent\"\n (click)=\"table.updateSorter(sorter)\"\n>\n <ng-container [ngTemplateOutlet]=\"content\"></ng-container>\n {{ table.change$ | async }}\n <tui-svg\n class=\"t-sort-icon\"\n [src]=\"icon\"\n [class.t-sort-icon_rotated]=\"isCurrent && table.direction === 1\"\n ></tui-svg>\n</button>\n<ng-template #content><ng-content></ng-content></ng-template>\n<div\n *ngIf=\"resizable\"\n class=\"t-bar\"\n (tuiResized)=\"onResized($event)\"\n></div>\n","styles":[":host{transition-property:box-shadow;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;position:relative;top:0;z-index:20;height:var(--tui-height-m);font:var(--tui-font-text-s);text-align:left;font-weight:700;color:var(--tui-text-02);background:var(--tui-base-01);cursor:default;padding:0 .75rem;box-sizing:border-box;box-shadow:0 .3125rem rgba(237,237,237,0);border:1px solid var(--tui-base-04)}:host:not(:first-child){border-left:none}:host._sticky{position:-webkit-sticky;position:sticky;z-index:30}:host._sticky:first-child{left:0}:host._sticky:after{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;content:'';position:absolute;top:0;left:100%;bottom:0;width:.3125rem;pointer-events:none;background:rgba(237,237,237,.7);opacity:0}:host-context(tr:not(:first-child)){border-top:none}:host-context(table[data-size='l']){height:var(--tui-height-l);font:var(--tui-font-text-m);font-weight:700;padding:0 1rem}:host-context(thead[tuiThead]){position:-webkit-sticky;position:sticky}:host-context(table._stuck)._sticky:after{opacity:1}:host-context(thead[tuiThead]._stuck){box-shadow:0 .3125rem rgba(237,237,237,.7)}:host-context(table[data-mode=onDark]):after{background:rgba(60,60,60,.9)}:host-context(table[data-mode=onDark]thead[tuiThead]._stuck){box-shadow:0 .3125rem rgba(60,60,60,.9)}:host-context(table[data-mode=onDark]thead[tuiThead]._stuck):first-child{box-shadow:.0625rem .3125rem rgba(60,60,60,.9)}:host-context(table[data-size='l']thead[tuiThead]tr:nth-child(2)){top:var(--tui-height-l)}:host-context(table[data-size='m']thead[tuiThead]tr:nth-child(2)){top:var(--tui-height-m)}:host-context(table[data-size='s']thead[tuiThead]tr:nth-child(2)){top:var(--tui-height-s)}.t-sort{transition-property:color;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;border:0;background:0 0;font-size:inherit;line-height:inherit;display:inline-flex;flex-direction:inherit;align-items:center;outline:0;font-weight:700;cursor:pointer}.t-sort_sorted{color:var(--tui-text-01)}.t-sort_sorted .t-sort-icon_rotated{transform:scaleY(-1)}.t-sort:focus-visible{background:var(--tui-selection)}.t-sort:hover{color:var(--tui-text-01)}.t-bar{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;position:absolute;top:0;bottom:0;right:-1px;width:3px;justify-self:flex-end;border-left:2px solid transparent;background:var(--tui-support-12);background-clip:content-box;cursor:ew-resize;opacity:0}.t-bar:active,.t-bar:hover{opacity:1}"]}]}],"members":{"sorter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":31,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":32,"character":5}}]}],"resizable":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":37,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":38,"character":5}}]}],"sticky":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":41,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":42,"character":5},"arguments":["class._sticky"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":43,"character":5}}]}],"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":46,"character":5},"arguments":["style.width.px"]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":50,"character":9}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":51,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiHeadDirective"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":53,"character":9}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":54,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiHeadDirective"},{"__symbolic":"reference","name":"TuiTableDirective"}]}],"onResized":[{"__symbolic":"method"}]}},"TuiThGroupComponent":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":17,"character":1},"arguments":[{"selector":"tr[tuiThGroup]","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":20,"character":21},"member":"OnPush"},"providers":[{"__symbolic":"reference","name":"TUI_TABLE_PROVIDER"}],"template":"<ng-content></ng-content>\n<ng-container *ngIf=\"heads$ | async as headings\">\n <ng-container\n *ngFor=\"let key of table.columns\"\n [ngTemplateOutlet]=\"headings[key.toString()]?.template || plain\"\n >\n <ng-template #plain>\n <th\n *ngIf=\"!th && !heads.length\"\n tuiTh\n >\n {{ key.toString() }}\n </th>\n </ng-template>\n </ng-container>\n</ng-container>\n"}]}],"members":{"th":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild","line":24,"character":5},"arguments":[{"__symbolic":"reference","name":"TuiThComponent"}]}]}],"heads":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren","line":27,"character":5},"arguments":[{"__symbolic":"reference","name":"TuiHeadDirective"}]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":41,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiTableDirective"}]}]}},"TuiTrComponent":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":16,"character":1},"arguments":[{"selector":"tr[tuiTr]","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":19,"character":21},"member":"OnPush"},"providers":[{"__symbolic":"reference","name":"TUI_TABLE_PROVIDER"}],"template":"<ng-container *ngIf=\"cells$ | async as items\">\n <ng-container\n *ngFor=\"let key of table.columns\"\n [ngTemplateOutlet]=\"items[key.toString()]?.template || plain\"\n >\n <ng-template #plain>\n <td\n *ngIf=\"item$ | async as item\"\n tuiTd\n >\n {{ item[key.toString()] }}\n </td>\n </ng-template>\n </ng-container>\n</ng-container>\n"}]}],"members":{"cells":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren","line":23,"character":5},"arguments":[{"__symbolic":"reference","name":"TuiCellDirective"}]}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":45,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableDirective"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":47,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTbodyComponent"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiTableDirective"},{"__symbolic":"reference","name":"TuiTbodyComponent"}]}]}}},"origins":{"TuiCellDirective":"./directives/cell.directive","TuiHeadDirective":"./directives/head.directive","TuiResizedDirective":"./directives/resized.directive","TuiRowDirective":"./directives/row.directive","TuiSortByDirective":"./directives/sort-by.directive","TuiSortableDirective":"./directives/sortable.directive","TuiTableDirective":"./directives/table.directive","TuiTheadDirective":"./directives/thead.directive","TuiTableSortPipe":"./pipes/table-sort.pipe","stuckFactory":"./providers/stuck.provider","TUI_STUCK":"./providers/stuck.provider","TUI_STUCK_PROVIDER":"./providers/stuck.provider","TABLE_FACTORY":"@taiga-ui/core","TUI_TABLE_PROVIDER":"./providers/table.provider","TABLE_THRESHOLD":"./providers/table.providers","TABLE_LABEL":"./providers/table.providers","inputCountOptionsFactory":"./providers/table.providers","TUI_TABLE_PROVIDERS":"./providers/table.providers","TuiTableModule":"./table.module","TuiTbodyComponent":"./tbody/tbody.component","TuiTdComponent":"./td/td.component","TuiThComponent":"./th/th.component","TuiThGroupComponent":"./th-group/th-group.component","TuiTrComponent":"./tr/tr.component"},"importAs":"@taiga-ui/addon-table/components/table"}
|
package/components/table-pagination/taiga-ui-addon-table-components-table-pagination.metadata.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"TuiTablePaginationComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":12,"character":1},"arguments":[{"selector":"tui-table-pagination","template":"<ng-container *ngIf=\"texts$ | async as texts\">\n <span class=\"t-pages\">\n {{ texts.pages }}\n <strong class=\"t-strong\">{{ pages }}</strong>\n </span>\n <span automation-id=\"tui-table-pagination__lines-per-page-wrapper\">\n {{ texts.linesPerPage }}\n <tui-hosted-dropdown\n [content]=\"content\"\n [(open)]=\"open\"\n >\n <button tuiLink>\n <strong>{{ start + 1 }}–{{ end }}</strong>\n </button>\n <ng-template #content>\n <tui-data-list>\n <ng-container *ngFor=\"let item of items\">\n <button\n tuiOption\n size=\"s\"\n class=\"t-item\"\n (click)=\"onItem(item)\"\n >\n <span\n polymorpheus-outlet\n [content]=\"options.sizeOptionContent\"\n [context]=\"{$implicit: item, total: total}\"\n ></span>\n <tui-svg\n *ngIf=\"item === size; else fakeIcon\"\n src=\"tuiIconCheckLarge\"\n class=\"t-checkmark\"\n ></tui-svg>\n\n <ng-template #fakeIcon>\n <span class=\"t-checkmark\"></span>\n </ng-template>\n </button>\n </ng-container>\n </tui-data-list>\n </ng-template>\n </tui-hosted-dropdown>\n {{ texts.of }}\n <strong class=\"t-strong\">{{ total }}</strong>\n </span>\n <ng-container *ngIf=\"spinTexts$ | async as spinTexts\">\n <button\n tuiIconButton\n type=\"button\"\n size=\"xs\"\n appearance=\"icon\"\n icon=\"tuiIconChevronLeft\"\n class=\"t-back\"\n [disabled]=\"leftDisabled\"\n [title]=\"spinTexts[0]\"\n (click)=\"back()\"\n ></button>\n <button\n tuiIconButton\n type=\"button\"\n size=\"xs\"\n appearance=\"icon\"\n icon=\"tuiIconChevronRight\"\n [disabled]=\"rightDisabled\"\n [title]=\"spinTexts[1]\"\n (click)=\"forth()\"\n ></button>\n </ng-container>\n</ng-container>\n","styles":[":host{display:flex;font:var(--tui-font-text-s);align-items:center;color:var(--tui-text-03)}.t-strong{color:var(--tui-text-01)}.t-pages{margin-right:auto}.t-item{min-width:5.5rem;box-sizing:border-box}.t-checkmark{min-width:1.5rem;border-left:5px solid transparent}.t-back{margin:0 .25rem 0 1.5rem}"]}]}],"members":{"items":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":19,"character":5}}]}],"total":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":22,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":23,"character":5}}]}],"page":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":26,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":27,"character":5}}]}],"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":30,"character":5}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@taiga-ui/cdk","name":"tuiDefaultProp","line":31,"character":5}}]}],"pageChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":34,"character":5}}]}],"sizeChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":37,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":43,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/core","name":"TUI_SPIN_TEXTS","line":43,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":44,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/addon-table/tokens","name":"TUI_TABLE_PAGINATION_TEXTS","line":44,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":46,"character":9},"arguments":[{"__symbolic":"reference","name":"TUI_TABLE_PAGINATION_OPTIONS"}]}]],"parameters":[{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":45,"character":36,"context":{"typeName":"Record"},"module":"./table-pagination.component"}]},{"__symbolic":"reference","name":"Observable","module":"rxjs","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":45,"character":36,"context":{"typeName":"Record"},"module":"./table-pagination.component"}]},{"__symbolic":"reference","name":"TuiTablePaginationOptions"}]}],"onItem":[{"__symbolic":"method"}],"back":[{"__symbolic":"method"}],"forth":[{"__symbolic":"method"}]}},"TuiTablePaginationModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":13,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":15,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiButtonModule","line":16,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiLinkModule","line":17,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiHostedDropdownModule","line":18,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiDataListModule","line":19,"character":8},{"__symbolic":"reference","module":"@taiga-ui/core","name":"TuiSvgModule","line":20,"character":8},{"__symbolic":"reference","module":"@tinkoff/ng-polymorpheus","name":"PolymorpheusModule","line":21,"character":8}],"declarations":[{"__symbolic":"reference","name":"TuiTablePaginationComponent"}],"exports":[{"__symbolic":"reference","name":"TuiTablePaginationComponent"}]}]}],"members":{}},"TuiTablePaginationOptions":{"__symbolic":"interface"},"TUI_TABLE_PAGINATION_DEFAULT_OPTIONS":{"__symbolic":"error","message":"Reference to a non-exported function","line":10,"character":9,"context":{"name":"defaultSizeOptionContent"},"module":"./table-pagination-options"},"TUI_TABLE_PAGINATION_OPTIONS":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"InjectionToken","line":18,"character":48},"arguments":["Default parameters for TablePagination component",{"__symbolic":"error","message":"Lambda not supported","line":20,"character":14,"module":"./table-pagination-options"}]},"tuiTablePaginationOptionsProvider":{"__symbolic":"function","parameters":["options"],"value":{"provide":{"__symbolic":"reference","name":"TUI_TABLE_PAGINATION_OPTIONS"},"useValue":{}}}},"origins":{"TuiTablePaginationComponent":"./table-pagination.component","TuiTablePaginationModule":"./table-pagination.module","TuiTablePaginationOptions":"./table-pagination-options","TUI_TABLE_PAGINATION_DEFAULT_OPTIONS":"./table-pagination-options","TUI_TABLE_PAGINATION_OPTIONS":"./table-pagination-options","tuiTablePaginationOptionsProvider":"./table-pagination-options"},"importAs":"@taiga-ui/addon-table/components/table-pagination"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"exports":[{"from":"@taiga-ui/addon-table/components/reorder"},{"from":"@taiga-ui/addon-table/components/resizable-column"},{"from":"@taiga-ui/addon-table/components/table"},{"from":"@taiga-ui/addon-table/components/table-pagination"}],"metadata":{},"origins":{},"importAs":"@taiga-ui/addon-table/components"}
|
package/directives/table-filters/taiga-ui-addon-table-directives-table-filters.metadata.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"AbstractTuiTableFilter":{"__symbolic":"class","arity":2,"members":{"filter":[{"__symbolic":"method"}]}},"TuiGenericFilterDirective":{"__symbolic":"class","arity":2,"extends":{"__symbolic":"reference","name":"AbstractTuiTableFilter"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":5,"character":1},"arguments":[{"selector":"[tuiGenericFilter]","providers":[{"provide":{"__symbolic":"reference","name":"AbstractTuiTableFilter"},"useExisting":{"__symbolic":"reference","name":"TuiGenericFilterDirective"}}]}]}],"members":{"tuiGenericFilter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":5}}]}],"filter":[{"__symbolic":"method"}]}},"TuiTableFilter":{"__symbolic":"interface"},"TuiTableFilterDirective":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":10,"character":1},"arguments":[{"selector":"[tuiTableFilter]"}]}],"members":{"tuiTableFilter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional","line":25,"character":9}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":26,"character":9},"arguments":[{"__symbolic":"reference","module":"@taiga-ui/addon-table/components","name":"TuiHeadDirective","line":26,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":28,"character":9},"arguments":[{"__symbolic":"reference","name":"AbstractTuiTableFilter"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":30,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/forms","name":"NgControl","line":30,"character":16}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":31,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableFiltersDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiHeadDirective","module":"@taiga-ui/addon-table/components","arguments":[{"__symbolic":"error","message":"Could not resolve type","line":27,"character":48,"context":{"typeName":"T"},"module":"./table-filter.directive"}]},{"__symbolic":"reference","name":"AbstractTuiTableFilter"},{"__symbolic":"reference","module":"@angular/forms","name":"NgControl","line":30,"character":53},{"__symbolic":"reference","name":"TuiTableFiltersDirective"}]}],"ngOnDestroy":[{"__symbolic":"method"}],"filter":[{"__symbolic":"method"}]}},"TuiTableFiltersDirective":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive","line":6,"character":1},"arguments":[{"selector":"[tuiTableFilters]"}]}],"members":{"register":[{"__symbolic":"method"}],"unregister":[{"__symbolic":"method"}],"filter":[{"__symbolic":"method"}],"check":[{"__symbolic":"method"}],"update":[{"__symbolic":"method"}]}},"TuiTableFiltersModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":7,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"TuiTableFiltersDirective"},{"__symbolic":"reference","name":"TuiTableFilterDirective"},{"__symbolic":"reference","name":"TuiTableFiltersPipe"},{"__symbolic":"reference","name":"TuiGenericFilterDirective"}],"exports":[{"__symbolic":"reference","name":"TuiTableFiltersDirective"},{"__symbolic":"reference","name":"TuiTableFilterDirective"},{"__symbolic":"reference","name":"TuiTableFiltersPipe"},{"__symbolic":"reference","name":"TuiGenericFilterDirective"}]}]}],"members":{}},"TuiTableFiltersPipe":{"__symbolic":"class","arity":1,"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":5,"character":1},"arguments":[{"name":"tuiTableFilters"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":10,"character":9},"arguments":[{"__symbolic":"reference","name":"TuiTableFiltersDirective"}]}]],"parameters":[{"__symbolic":"reference","name":"TuiTableFiltersDirective"}]}],"transform":[{"__symbolic":"method"}]}}},"origins":{"AbstractTuiTableFilter":"./abstract-table-filter","TuiGenericFilterDirective":"./generic-filter.directive","TuiTableFilter":"./table-filter","TuiTableFilterDirective":"./table-filter.directive","TuiTableFiltersDirective":"./table-filters.directive","TuiTableFiltersModule":"./table-filters.module","TuiTableFiltersPipe":"./table-filters.pipe"},"importAs":"@taiga-ui/addon-table/directives/table-filters"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"exports":[{"from":"@taiga-ui/addon-table/directives/table-filters"}],"metadata":{},"origins":{},"importAs":"@taiga-ui/addon-table/directives"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './resizable-column.component';
|
|
2
|
-
export * from './resizable-column.directive';
|
|
3
|
-
export * from './resizable-column.module';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZXNpemFibGUtY29sdW1uLyIsInNvdXJjZXMiOlsiaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3Jlc2l6YWJsZS1jb2x1bW4uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcmVzaXphYmxlLWNvbHVtbi5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9yZXNpemFibGUtY29sdW1uLm1vZHVsZSc7XG4iXX0=
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Component, ElementRef, HostBinding } from '@angular/core';
|
|
3
|
-
import { TUI_ELEMENT_REF } from '@taiga-ui/core';
|
|
4
|
-
/** @deprecated use `<th tuiTh [resizable]="true">` from {@link TuiTableModule} */
|
|
5
|
-
let TuiResizableColumnComponent = class TuiResizableColumnComponent {
|
|
6
|
-
constructor() {
|
|
7
|
-
this.width = null;
|
|
8
|
-
}
|
|
9
|
-
onResize(width) {
|
|
10
|
-
this.width = width;
|
|
11
|
-
}
|
|
12
|
-
};
|
|
13
|
-
__decorate([
|
|
14
|
-
HostBinding(`style.width.px`)
|
|
15
|
-
], TuiResizableColumnComponent.prototype, "width", void 0);
|
|
16
|
-
TuiResizableColumnComponent = __decorate([
|
|
17
|
-
Component({
|
|
18
|
-
selector: `th[tuiResizableColumn]`,
|
|
19
|
-
template: "<ng-content></ng-content>\n<div\n class=\"t-bar\"\n (tuiResizableColumn)=\"onResize($event)\"\n></div>\n",
|
|
20
|
-
providers: [
|
|
21
|
-
{
|
|
22
|
-
provide: TUI_ELEMENT_REF,
|
|
23
|
-
useExisting: ElementRef,
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
styles: [":host{position:relative}:host:last-child .t-bar{display:none}.t-bar{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;position:absolute;top:0;bottom:0;right:-1px;width:3px;justify-self:flex-end;border-left:2px solid transparent;background:var(--tui-support-12);background-clip:content-box;cursor:ew-resize;opacity:0}.t-bar:active,.t-bar:hover{opacity:1}"]
|
|
27
|
-
})
|
|
28
|
-
], TuiResizableColumnComponent);
|
|
29
|
-
export { TuiResizableColumnComponent };
|
|
30
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXphYmxlLWNvbHVtbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZXNpemFibGUtY29sdW1uLyIsInNvdXJjZXMiOlsicmVzaXphYmxlLWNvbHVtbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsVUFBVSxFQUFFLFdBQVcsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNqRSxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFFL0Msa0ZBQWtGO0FBWWxGLElBQWEsMkJBQTJCLEdBQXhDLE1BQWEsMkJBQTJCO0lBQXhDO1FBRUksVUFBSyxHQUFrQixJQUFJLENBQUM7SUFLaEMsQ0FBQztJQUhHLFFBQVEsQ0FBQyxLQUFhO1FBQ2xCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3ZCLENBQUM7Q0FDSixDQUFBO0FBTEc7SUFEQyxXQUFXLENBQUMsZ0JBQWdCLENBQUM7MERBQ0Y7QUFGbkIsMkJBQTJCO0lBWHZDLFNBQVMsQ0FBQztRQUNQLFFBQVEsRUFBRSx3QkFBd0I7UUFDbEMsMEhBQStDO1FBRS9DLFNBQVMsRUFBRTtZQUNQO2dCQUNJLE9BQU8sRUFBRSxlQUFlO2dCQUN4QixXQUFXLEVBQUUsVUFBVTthQUMxQjtTQUNKOztLQUNKLENBQUM7R0FDVywyQkFBMkIsQ0FPdkM7U0FQWSwyQkFBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgRWxlbWVudFJlZiwgSG9zdEJpbmRpbmd9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUVUlfRUxFTUVOVF9SRUZ9IGZyb20gJ0B0YWlnYS11aS9jb3JlJztcblxuLyoqIEBkZXByZWNhdGVkIHVzZSBgPHRoIHR1aVRoIFtyZXNpemFibGVdPVwidHJ1ZVwiPmAgZnJvbSB7QGxpbmsgVHVpVGFibGVNb2R1bGV9ICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogYHRoW3R1aVJlc2l6YWJsZUNvbHVtbl1gLFxuICAgIHRlbXBsYXRlVXJsOiBgLi9yZXNpemFibGUtY29sdW1uLnRlbXBsYXRlLmh0bWxgLFxuICAgIHN0eWxlVXJsczogW2AuL3Jlc2l6YWJsZS1jb2x1bW4uc3R5bGUubGVzc2BdLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgICBwcm92aWRlOiBUVUlfRUxFTUVOVF9SRUYsXG4gICAgICAgICAgICB1c2VFeGlzdGluZzogRWxlbWVudFJlZixcbiAgICAgICAgfSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlSZXNpemFibGVDb2x1bW5Db21wb25lbnQge1xuICAgIEBIb3N0QmluZGluZyhgc3R5bGUud2lkdGgucHhgKVxuICAgIHdpZHRoOiBudW1iZXIgfCBudWxsID0gbnVsbDtcblxuICAgIG9uUmVzaXplKHdpZHRoOiBudW1iZXIpOiB2b2lkIHtcbiAgICAgICAgdGhpcy53aWR0aCA9IHdpZHRoO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { __decorate, __param } from "tslib";
|
|
2
|
-
import { DOCUMENT } from '@angular/common';
|
|
3
|
-
import { Directive, ElementRef, Inject, Output } from '@angular/core';
|
|
4
|
-
import { preventDefault, typedFromEvent } from '@taiga-ui/cdk';
|
|
5
|
-
import { TUI_ELEMENT_REF } from '@taiga-ui/core';
|
|
6
|
-
import { distinctUntilChanged, map, switchMap, takeUntil } from 'rxjs/operators';
|
|
7
|
-
/** @deprecated use `<th tuiTh [resizable]="true">` from {@link TuiTableModule} */
|
|
8
|
-
// @dynamic
|
|
9
|
-
let TuiResizableColumnDirective = class TuiResizableColumnDirective {
|
|
10
|
-
constructor(documentRef, elementRef, parentRef) {
|
|
11
|
-
this.documentRef = documentRef;
|
|
12
|
-
this.elementRef = elementRef;
|
|
13
|
-
this.parentRef = parentRef;
|
|
14
|
-
this.tuiResizableColumn = typedFromEvent(this.elementRef.nativeElement, `mousedown`).pipe(preventDefault(), switchMap(() => {
|
|
15
|
-
const { width, right } = this.parentRef.nativeElement.getBoundingClientRect();
|
|
16
|
-
return typedFromEvent(this.documentRef, `mousemove`).pipe(distinctUntilChanged(), map(({ clientX }) => width + clientX - right), takeUntil(typedFromEvent(this.documentRef, `mouseup`)));
|
|
17
|
-
}));
|
|
18
|
-
}
|
|
19
|
-
};
|
|
20
|
-
TuiResizableColumnDirective.ctorParameters = () => [
|
|
21
|
-
{ type: Document, decorators: [{ type: Inject, args: [DOCUMENT,] }] },
|
|
22
|
-
{ type: ElementRef, decorators: [{ type: Inject, args: [ElementRef,] }] },
|
|
23
|
-
{ type: ElementRef, decorators: [{ type: Inject, args: [TUI_ELEMENT_REF,] }] }
|
|
24
|
-
];
|
|
25
|
-
__decorate([
|
|
26
|
-
Output()
|
|
27
|
-
], TuiResizableColumnDirective.prototype, "tuiResizableColumn", void 0);
|
|
28
|
-
TuiResizableColumnDirective = __decorate([
|
|
29
|
-
Directive({
|
|
30
|
-
selector: `[tuiResizableColumn]`,
|
|
31
|
-
}),
|
|
32
|
-
__param(0, Inject(DOCUMENT)),
|
|
33
|
-
__param(1, Inject(ElementRef)),
|
|
34
|
-
__param(2, Inject(TUI_ELEMENT_REF))
|
|
35
|
-
], TuiResizableColumnDirective);
|
|
36
|
-
export { TuiResizableColumnDirective };
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXphYmxlLWNvbHVtbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZXNpemFibGUtY29sdW1uLyIsInNvdXJjZXMiOlsicmVzaXphYmxlLWNvbHVtbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUN6QyxPQUFPLEVBQUMsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3BFLE9BQU8sRUFBQyxjQUFjLEVBQUUsY0FBYyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzdELE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUMvQyxPQUFPLEVBQUMsb0JBQW9CLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUUvRSxrRkFBa0Y7QUFDbEYsV0FBVztBQUlYLElBQWEsMkJBQTJCLEdBQXhDLE1BQWEsMkJBQTJCO0lBa0JwQyxZQUN1QyxXQUFxQixFQUV2QyxVQUFtQyxFQUVuQyxTQUFpRDtRQUovQixnQkFBVyxHQUFYLFdBQVcsQ0FBVTtRQUV2QyxlQUFVLEdBQVYsVUFBVSxDQUF5QjtRQUVuQyxjQUFTLEdBQVQsU0FBUyxDQUF3QztRQXJCN0QsdUJBQWtCLEdBQUcsY0FBYyxDQUN4QyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsRUFDN0IsV0FBVyxDQUNkLENBQUMsSUFBSSxDQUNGLGNBQWMsRUFBRSxFQUNoQixTQUFTLENBQUMsR0FBRyxFQUFFO1lBQ1gsTUFBTSxFQUFDLEtBQUssRUFBRSxLQUFLLEVBQUMsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsQ0FBQyxxQkFBcUIsRUFBRSxDQUFDO1lBRTVFLE9BQU8sY0FBYyxDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUUsV0FBVyxDQUFDLENBQUMsSUFBSSxDQUNyRCxvQkFBb0IsRUFBRSxFQUN0QixHQUFHLENBQUMsQ0FBQyxFQUFDLE9BQU8sRUFBQyxFQUFFLEVBQUUsQ0FBQyxLQUFLLEdBQUcsT0FBTyxHQUFHLEtBQUssQ0FBQyxFQUMzQyxTQUFTLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUUsU0FBUyxDQUFDLENBQUMsQ0FDekQsQ0FBQztRQUNOLENBQUMsQ0FBQyxDQUNMLENBQUM7SUFRQyxDQUFDO0NBQ1AsQ0FBQTs7WUFOdUQsUUFBUSx1QkFBdkQsTUFBTSxTQUFDLFFBQVE7WUFFYSxVQUFVLHVCQUR0QyxNQUFNLFNBQUMsVUFBVTtZQUdVLFVBQVUsdUJBRHJDLE1BQU0sU0FBQyxlQUFlOztBQXBCM0I7SUFEQyxNQUFNLEVBQUU7dUVBZVA7QUFoQk8sMkJBQTJCO0lBSHZDLFNBQVMsQ0FBQztRQUNQLFFBQVEsRUFBRSxzQkFBc0I7S0FDbkMsQ0FBQztJQW9CTyxXQUFBLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQTtJQUNoQixXQUFBLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQTtJQUVsQixXQUFBLE1BQU0sQ0FBQyxlQUFlLENBQUMsQ0FBQTtHQXRCbkIsMkJBQTJCLENBeUJ2QztTQXpCWSwyQkFBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RPQ1VNRU5UfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIEluamVjdCwgT3V0cHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7cHJldmVudERlZmF1bHQsIHR5cGVkRnJvbUV2ZW50fSBmcm9tICdAdGFpZ2EtdWkvY2RrJztcbmltcG9ydCB7VFVJX0VMRU1FTlRfUkVGfSBmcm9tICdAdGFpZ2EtdWkvY29yZSc7XG5pbXBvcnQge2Rpc3RpbmN0VW50aWxDaGFuZ2VkLCBtYXAsIHN3aXRjaE1hcCwgdGFrZVVudGlsfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbi8qKiBAZGVwcmVjYXRlZCB1c2UgYDx0aCB0dWlUaCBbcmVzaXphYmxlXT1cInRydWVcIj5gIGZyb20ge0BsaW5rIFR1aVRhYmxlTW9kdWxlfSAqL1xuLy8gQGR5bmFtaWNcbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiBgW3R1aVJlc2l6YWJsZUNvbHVtbl1gLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlSZXNpemFibGVDb2x1bW5EaXJlY3RpdmUge1xuICAgIEBPdXRwdXQoKVxuICAgIHJlYWRvbmx5IHR1aVJlc2l6YWJsZUNvbHVtbiA9IHR5cGVkRnJvbUV2ZW50KFxuICAgICAgICB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudCxcbiAgICAgICAgYG1vdXNlZG93bmAsXG4gICAgKS5waXBlKFxuICAgICAgICBwcmV2ZW50RGVmYXVsdCgpLFxuICAgICAgICBzd2l0Y2hNYXAoKCkgPT4ge1xuICAgICAgICAgICAgY29uc3Qge3dpZHRoLCByaWdodH0gPSB0aGlzLnBhcmVudFJlZi5uYXRpdmVFbGVtZW50LmdldEJvdW5kaW5nQ2xpZW50UmVjdCgpO1xuXG4gICAgICAgICAgICByZXR1cm4gdHlwZWRGcm9tRXZlbnQodGhpcy5kb2N1bWVudFJlZiwgYG1vdXNlbW92ZWApLnBpcGUoXG4gICAgICAgICAgICAgICAgZGlzdGluY3RVbnRpbENoYW5nZWQoKSxcbiAgICAgICAgICAgICAgICBtYXAoKHtjbGllbnRYfSkgPT4gd2lkdGggKyBjbGllbnRYIC0gcmlnaHQpLFxuICAgICAgICAgICAgICAgIHRha2VVbnRpbCh0eXBlZEZyb21FdmVudCh0aGlzLmRvY3VtZW50UmVmLCBgbW91c2V1cGApKSxcbiAgICAgICAgICAgICk7XG4gICAgICAgIH0pLFxuICAgICk7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQEluamVjdChET0NVTUVOVCkgcHJpdmF0ZSByZWFkb25seSBkb2N1bWVudFJlZjogRG9jdW1lbnQsXG4gICAgICAgIEBJbmplY3QoRWxlbWVudFJlZilcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBlbGVtZW50UmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICAgICAgQEluamVjdChUVUlfRUxFTUVOVF9SRUYpXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgcGFyZW50UmVmOiBFbGVtZW50UmVmPEhUTUxUYWJsZUhlYWRlckNlbGxFbGVtZW50PixcbiAgICApIHt9XG59XG4iXX0=
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { TuiResizableColumnComponent } from './resizable-column.component';
|
|
4
|
-
import { TuiResizableColumnDirective } from './resizable-column.directive';
|
|
5
|
-
/** @deprecated use `<th tuiTh [resizable]="true">` from {@link TuiTableModule} */
|
|
6
|
-
let TuiResizableColumnModule = class TuiResizableColumnModule {
|
|
7
|
-
};
|
|
8
|
-
TuiResizableColumnModule = __decorate([
|
|
9
|
-
NgModule({
|
|
10
|
-
declarations: [TuiResizableColumnComponent, TuiResizableColumnDirective],
|
|
11
|
-
exports: [TuiResizableColumnComponent, TuiResizableColumnDirective],
|
|
12
|
-
})
|
|
13
|
-
], TuiResizableColumnModule);
|
|
14
|
-
export { TuiResizableColumnModule };
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXphYmxlLWNvbHVtbi5tb2R1bGUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZXNpemFibGUtY29sdW1uLyIsInNvdXJjZXMiOlsicmVzaXphYmxlLWNvbHVtbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDekUsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFFekUsa0ZBQWtGO0FBS2xGLElBQWEsd0JBQXdCLEdBQXJDLE1BQWEsd0JBQXdCO0NBQUcsQ0FBQTtBQUEzQix3QkFBd0I7SUFKcEMsUUFBUSxDQUFDO1FBQ04sWUFBWSxFQUFFLENBQUMsMkJBQTJCLEVBQUUsMkJBQTJCLENBQUM7UUFDeEUsT0FBTyxFQUFFLENBQUMsMkJBQTJCLEVBQUUsMkJBQTJCLENBQUM7S0FDdEUsQ0FBQztHQUNXLHdCQUF3QixDQUFHO1NBQTNCLHdCQUF3QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQge1R1aVJlc2l6YWJsZUNvbHVtbkNvbXBvbmVudH0gZnJvbSAnLi9yZXNpemFibGUtY29sdW1uLmNvbXBvbmVudCc7XG5pbXBvcnQge1R1aVJlc2l6YWJsZUNvbHVtbkRpcmVjdGl2ZX0gZnJvbSAnLi9yZXNpemFibGUtY29sdW1uLmRpcmVjdGl2ZSc7XG5cbi8qKiBAZGVwcmVjYXRlZCB1c2UgYDx0aCB0dWlUaCBbcmVzaXphYmxlXT1cInRydWVcIj5gIGZyb20ge0BsaW5rIFR1aVRhYmxlTW9kdWxlfSAqL1xuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlSZXNpemFibGVDb2x1bW5Db21wb25lbnQsIFR1aVJlc2l6YWJsZUNvbHVtbkRpcmVjdGl2ZV0sXG4gICAgZXhwb3J0czogW1R1aVJlc2l6YWJsZUNvbHVtbkNvbXBvbmVudCwgVHVpUmVzaXphYmxlQ29sdW1uRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpUmVzaXphYmxlQ29sdW1uTW9kdWxlIHt9XG4iXX0=
|
package/esm2015/components/resizable-column/taiga-ui-addon-table-components-resizable-column.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './index';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktYWRkb24tdGFibGUtY29tcG9uZW50cy1yZXNpemFibGUtY29sdW1uLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHRhaWdhLXVpL2FkZG9uLXRhYmxlL2NvbXBvbmVudHMvcmVzaXphYmxlLWNvbHVtbi8iLCJzb3VyY2VzIjpbInRhaWdhLXVpLWFkZG9uLXRhYmxlLWNvbXBvbmVudHMtcmVzaXphYmxlLWNvbHVtbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
|
package/esm5/components/index.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@taiga-ui/addon-table/components/reorder';
|
|
2
|
-
export * from '@taiga-ui/addon-table/components/resizable-column';
|
|
3
|
-
export * from '@taiga-ui/addon-table/components/table';
|
|
4
|
-
export * from '@taiga-ui/addon-table/components/table-pagination';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImluZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxtREFBbUQsQ0FBQztBQUNsRSxjQUFjLHdDQUF3QyxDQUFDO0FBQ3ZELGNBQWMsbURBQW1ELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICdAdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZW9yZGVyJztcbmV4cG9ydCAqIGZyb20gJ0B0YWlnYS11aS9hZGRvbi10YWJsZS9jb21wb25lbnRzL3Jlc2l6YWJsZS1jb2x1bW4nO1xuZXhwb3J0ICogZnJvbSAnQHRhaWdhLXVpL2FkZG9uLXRhYmxlL2NvbXBvbmVudHMvdGFibGUnO1xuZXhwb3J0ICogZnJvbSAnQHRhaWdhLXVpL2FkZG9uLXRhYmxlL2NvbXBvbmVudHMvdGFibGUtcGFnaW5hdGlvbic7XG4iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './reorder.component';
|
|
2
|
-
export * from './reorder.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZW9yZGVyLyIsInNvdXJjZXMiOlsiaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGtCQUFrQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yZW9yZGVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3Jlb3JkZXIubW9kdWxlJztcbiJdfQ==
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { __decorate, __param, __read, __spread } from "tslib";
|
|
2
|
-
import { moveItemInArray } from '@angular/cdk/drag-drop';
|
|
3
|
-
import { Component, EventEmitter, HostListener, Inject, Input, Output, } from '@angular/core';
|
|
4
|
-
import { TUI_TABLE_SHOW_HIDE_MESSAGE } from '@taiga-ui/addon-table/tokens';
|
|
5
|
-
import { tuiDefaultProp } from '@taiga-ui/cdk';
|
|
6
|
-
import { Observable } from 'rxjs';
|
|
7
|
-
// @bad TODO: a11y
|
|
8
|
-
var TuiReorderComponent = /** @class */ (function () {
|
|
9
|
-
function TuiReorderComponent(showHideText$) {
|
|
10
|
-
this.showHideText$ = showHideText$;
|
|
11
|
-
this.items = [];
|
|
12
|
-
this.enabled = [];
|
|
13
|
-
this.itemsChange = new EventEmitter();
|
|
14
|
-
this.enabledChange = new EventEmitter();
|
|
15
|
-
}
|
|
16
|
-
TuiReorderComponent.prototype.noop = function () { };
|
|
17
|
-
TuiReorderComponent.prototype.isEnabled = function (item) {
|
|
18
|
-
return this.enabled.includes(item);
|
|
19
|
-
};
|
|
20
|
-
TuiReorderComponent.prototype.getIcon = function (item) {
|
|
21
|
-
return this.isEnabled(item) ? "tuiIconEyeOpen" : "tuiIconEyeClosed";
|
|
22
|
-
};
|
|
23
|
-
TuiReorderComponent.prototype.toggle = function (toggled) {
|
|
24
|
-
var enabled = this.isEnabled(toggled)
|
|
25
|
-
? this.enabled.filter(function (item) { return item !== toggled; })
|
|
26
|
-
: this.enabled.concat(toggled);
|
|
27
|
-
this.updateEnabled(enabled);
|
|
28
|
-
};
|
|
29
|
-
TuiReorderComponent.prototype.drop = function (event) {
|
|
30
|
-
var _this = this;
|
|
31
|
-
var items = __spread(this.items);
|
|
32
|
-
moveItemInArray(items, event.previousIndex, event.currentIndex);
|
|
33
|
-
this.items = items;
|
|
34
|
-
this.itemsChange.emit(items);
|
|
35
|
-
this.updateEnabled(items.filter(function (item) { return _this.enabled.includes(item); }));
|
|
36
|
-
};
|
|
37
|
-
TuiReorderComponent.prototype.updateEnabled = function (enabled) {
|
|
38
|
-
this.enabled = enabled;
|
|
39
|
-
this.enabledChange.emit(enabled);
|
|
40
|
-
};
|
|
41
|
-
TuiReorderComponent.ctorParameters = function () { return [
|
|
42
|
-
{ type: Observable, decorators: [{ type: Inject, args: [TUI_TABLE_SHOW_HIDE_MESSAGE,] }] }
|
|
43
|
-
]; };
|
|
44
|
-
__decorate([
|
|
45
|
-
Input(),
|
|
46
|
-
tuiDefaultProp()
|
|
47
|
-
], TuiReorderComponent.prototype, "items", void 0);
|
|
48
|
-
__decorate([
|
|
49
|
-
Input(),
|
|
50
|
-
tuiDefaultProp()
|
|
51
|
-
], TuiReorderComponent.prototype, "enabled", void 0);
|
|
52
|
-
__decorate([
|
|
53
|
-
Output()
|
|
54
|
-
], TuiReorderComponent.prototype, "itemsChange", void 0);
|
|
55
|
-
__decorate([
|
|
56
|
-
Output()
|
|
57
|
-
], TuiReorderComponent.prototype, "enabledChange", void 0);
|
|
58
|
-
__decorate([
|
|
59
|
-
HostListener("focusout.stop")
|
|
60
|
-
], TuiReorderComponent.prototype, "noop", null);
|
|
61
|
-
TuiReorderComponent = __decorate([
|
|
62
|
-
Component({
|
|
63
|
-
selector: "tui-reorder",
|
|
64
|
-
template: "<div\n cdkDropList\n class=\"t-wrapper\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <div\n *ngFor=\"let item of items\"\n tabindex=\"-1\"\n cdkDrag\n class=\"t-item\"\n >\n <tui-svg\n src=\"tuiIconDrag\"\n class=\"t-icon\"\n ></tui-svg>\n {{ item }}\n <button\n type=\"button\"\n tuiIconButton\n appearance=\"icon\"\n size=\"xs\"\n tuiPreventDefault=\"mousedown\"\n class=\"t-button\"\n [class.t-button_hidden]=\"!isEnabled(item)\"\n [title]=\"showHideText$ | async\"\n [icon]=\"getIcon(item)\"\n (click)=\"toggle(item)\"\n ></button>\n </div>\n</div>\n",
|
|
65
|
-
styles: [":host{display:block;font:var(--tui-font-text-s);padding:.5rem 0}.t-item{transition-property:background;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;display:flex;height:2rem;align-items:center;padding:0 .75rem;cursor:ns-resize;background:var(--tui-base-01);outline:0}.t-item:hover{background:var(--tui-base-02)}.t-item:hover .t-button{opacity:1}.t-icon{margin-right:.5rem;color:var(--tui-base-05)}.t-button{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;margin-left:auto;opacity:0}.t-button_hidden{opacity:1}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating,.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder){transition:transform 250ms cubic-bezier(0,0,.2,1)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder):hover{background:var(--tui-base-01)}.t-wrapper.cdk-drop-list-dragging .t-item:not(.cdk-drag-placeholder) .t-button{display:none}"]
|
|
66
|
-
}),
|
|
67
|
-
__param(0, Inject(TUI_TABLE_SHOW_HIDE_MESSAGE))
|
|
68
|
-
], TuiReorderComponent);
|
|
69
|
-
return TuiReorderComponent;
|
|
70
|
-
}());
|
|
71
|
-
export { TuiReorderComponent };
|
|
72
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVvcmRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZW9yZGVyLyIsInNvdXJjZXMiOlsicmVvcmRlci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBYyxlQUFlLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUNwRSxPQUFPLEVBQ0gsU0FBUyxFQUNULFlBQVksRUFDWixZQUFZLEVBQ1osTUFBTSxFQUNOLEtBQUssRUFDTCxNQUFNLEdBQ1QsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDekUsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUM3QyxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sTUFBTSxDQUFDO0FBRWhDLGtCQUFrQjtBQU1sQjtJQWVJLDZCQUNrRCxhQUFpQztRQUFqQyxrQkFBYSxHQUFiLGFBQWEsQ0FBb0I7UUFibkYsVUFBSyxHQUFpQixFQUFFLENBQUM7UUFJekIsWUFBTyxHQUFpQixFQUFFLENBQUM7UUFHbEIsZ0JBQVcsR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQztRQUcvQyxrQkFBYSxHQUFHLElBQUksWUFBWSxFQUFnQixDQUFDO0lBSXZELENBQUM7SUFHSixrQ0FBSSxHQUFKLGNBQWMsQ0FBQztJQUVmLHVDQUFTLEdBQVQsVUFBVSxJQUFPO1FBQ2IsT0FBTyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRUQscUNBQU8sR0FBUCxVQUFRLElBQU87UUFDWCxPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxrQkFBa0IsQ0FBQztJQUN4RSxDQUFDO0lBRUQsb0NBQU0sR0FBTixVQUFPLE9BQVU7UUFDYixJQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNuQyxDQUFDLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsVUFBQSxJQUFJLElBQUksT0FBQSxJQUFJLEtBQUssT0FBTyxFQUFoQixDQUFnQixDQUFDO1lBQy9DLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUVuQyxJQUFJLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ2hDLENBQUM7SUFFRCxrQ0FBSSxHQUFKLFVBQUssS0FBcUI7UUFBMUIsaUJBT0M7UUFORyxJQUFNLEtBQUssWUFBTyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7UUFFOUIsZUFBZSxDQUFDLEtBQUssRUFBRSxLQUFLLENBQUMsYUFBYSxFQUFFLEtBQUssQ0FBQyxZQUFZLENBQUMsQ0FBQztRQUNoRSxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUNuQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM3QixJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsVUFBQSxJQUFJLElBQUksT0FBQSxLQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsRUFBM0IsQ0FBMkIsQ0FBQyxDQUFDLENBQUM7SUFDMUUsQ0FBQztJQUVPLDJDQUFhLEdBQXJCLFVBQXNCLE9BQXFCO1FBQ3ZDLElBQUksQ0FBQyxPQUFPLEdBQUcsT0FBTyxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3JDLENBQUM7O2dCQWxDZ0UsVUFBVSx1QkFBdEUsTUFBTSxTQUFDLDJCQUEyQjs7SUFidkM7UUFGQyxLQUFLLEVBQUU7UUFDUCxjQUFjLEVBQUU7c0RBQ1E7SUFJekI7UUFGQyxLQUFLLEVBQUU7UUFDUCxjQUFjLEVBQUU7d0RBQ1U7SUFHM0I7UUFEQyxNQUFNLEVBQUU7NERBQytDO0lBR3hEO1FBREMsTUFBTSxFQUFFOzhEQUNpRDtJQU8xRDtRQURDLFlBQVksQ0FBQyxlQUFlLENBQUM7bURBQ2Y7SUFwQk4sbUJBQW1CO1FBTC9CLFNBQVMsQ0FBQztZQUNQLFFBQVEsRUFBRSxhQUFhO1lBQ3ZCLDR3QkFBc0M7O1NBRXpDLENBQUM7UUFpQk8sV0FBQSxNQUFNLENBQUMsMkJBQTJCLENBQUMsQ0FBQTtPQWhCL0IsbUJBQW1CLENBbUQvQjtJQUFELDBCQUFDO0NBQUEsQUFuREQsSUFtREM7U0FuRFksbUJBQW1CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDZGtEcmFnRHJvcCwgbW92ZUl0ZW1JbkFycmF5fSBmcm9tICdAYW5ndWxhci9jZGsvZHJhZy1kcm9wJztcbmltcG9ydCB7XG4gICAgQ29tcG9uZW50LFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBIb3N0TGlzdGVuZXIsXG4gICAgSW5qZWN0LFxuICAgIElucHV0LFxuICAgIE91dHB1dCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RVSV9UQUJMRV9TSE9XX0hJREVfTUVTU0FHRX0gZnJvbSAnQHRhaWdhLXVpL2FkZG9uLXRhYmxlL3Rva2Vucyc7XG5pbXBvcnQge3R1aURlZmF1bHRQcm9wfSBmcm9tICdAdGFpZ2EtdWkvY2RrJztcbmltcG9ydCB7T2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XG5cbi8vIEBiYWQgVE9ETzogYTExeVxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6IGB0dWktcmVvcmRlcmAsXG4gICAgdGVtcGxhdGVVcmw6IGAuL3Jlb3JkZXIudGVtcGxhdGUuaHRtbGAsXG4gICAgc3R5bGVVcmxzOiBbYC4vcmVvcmRlci5zdHlsZS5sZXNzYF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVJlb3JkZXJDb21wb25lbnQ8VD4ge1xuICAgIEBJbnB1dCgpXG4gICAgQHR1aURlZmF1bHRQcm9wKClcbiAgICBpdGVtczogcmVhZG9ubHkgVFtdID0gW107XG5cbiAgICBASW5wdXQoKVxuICAgIEB0dWlEZWZhdWx0UHJvcCgpXG4gICAgZW5hYmxlZDogcmVhZG9ubHkgVFtdID0gW107XG5cbiAgICBAT3V0cHV0KClcbiAgICByZWFkb25seSBpdGVtc0NoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8cmVhZG9ubHkgVFtdPigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgcmVhZG9ubHkgZW5hYmxlZENoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8cmVhZG9ubHkgVFtdPigpO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBJbmplY3QoVFVJX1RBQkxFX1NIT1dfSElERV9NRVNTQUdFKSByZWFkb25seSBzaG93SGlkZVRleHQkOiBPYnNlcnZhYmxlPHN0cmluZz4sXG4gICAgKSB7fVxuXG4gICAgQEhvc3RMaXN0ZW5lcihgZm9jdXNvdXQuc3RvcGApXG4gICAgbm9vcCgpOiB2b2lkIHt9XG5cbiAgICBpc0VuYWJsZWQoaXRlbTogVCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5lbmFibGVkLmluY2x1ZGVzKGl0ZW0pO1xuICAgIH1cblxuICAgIGdldEljb24oaXRlbTogVCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmlzRW5hYmxlZChpdGVtKSA/IGB0dWlJY29uRXllT3BlbmAgOiBgdHVpSWNvbkV5ZUNsb3NlZGA7XG4gICAgfVxuXG4gICAgdG9nZ2xlKHRvZ2dsZWQ6IFQpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgZW5hYmxlZCA9IHRoaXMuaXNFbmFibGVkKHRvZ2dsZWQpXG4gICAgICAgICAgICA/IHRoaXMuZW5hYmxlZC5maWx0ZXIoaXRlbSA9PiBpdGVtICE9PSB0b2dnbGVkKVxuICAgICAgICAgICAgOiB0aGlzLmVuYWJsZWQuY29uY2F0KHRvZ2dsZWQpO1xuXG4gICAgICAgIHRoaXMudXBkYXRlRW5hYmxlZChlbmFibGVkKTtcbiAgICB9XG5cbiAgICBkcm9wKGV2ZW50OiBDZGtEcmFnRHJvcDxUPik6IHZvaWQge1xuICAgICAgICBjb25zdCBpdGVtcyA9IFsuLi50aGlzLml0ZW1zXTtcblxuICAgICAgICBtb3ZlSXRlbUluQXJyYXkoaXRlbXMsIGV2ZW50LnByZXZpb3VzSW5kZXgsIGV2ZW50LmN1cnJlbnRJbmRleCk7XG4gICAgICAgIHRoaXMuaXRlbXMgPSBpdGVtcztcbiAgICAgICAgdGhpcy5pdGVtc0NoYW5nZS5lbWl0KGl0ZW1zKTtcbiAgICAgICAgdGhpcy51cGRhdGVFbmFibGVkKGl0ZW1zLmZpbHRlcihpdGVtID0+IHRoaXMuZW5hYmxlZC5pbmNsdWRlcyhpdGVtKSkpO1xuICAgIH1cblxuICAgIHByaXZhdGUgdXBkYXRlRW5hYmxlZChlbmFibGVkOiByZWFkb25seSBUW10pOiB2b2lkIHtcbiAgICAgICAgdGhpcy5lbmFibGVkID0gZW5hYmxlZDtcbiAgICAgICAgdGhpcy5lbmFibGVkQ2hhbmdlLmVtaXQoZW5hYmxlZCk7XG4gICAgfVxufVxuIl19
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
import { NgModule } from '@angular/core';
|
|
5
|
-
import { TuiPreventDefaultModule } from '@taiga-ui/cdk';
|
|
6
|
-
import { TuiButtonModule, TuiSvgModule } from '@taiga-ui/core';
|
|
7
|
-
import { TuiReorderComponent } from './reorder.component';
|
|
8
|
-
var TuiReorderModule = /** @class */ (function () {
|
|
9
|
-
function TuiReorderModule() {
|
|
10
|
-
}
|
|
11
|
-
TuiReorderModule = __decorate([
|
|
12
|
-
NgModule({
|
|
13
|
-
imports: [
|
|
14
|
-
CommonModule,
|
|
15
|
-
DragDropModule,
|
|
16
|
-
TuiSvgModule,
|
|
17
|
-
TuiButtonModule,
|
|
18
|
-
TuiPreventDefaultModule,
|
|
19
|
-
],
|
|
20
|
-
declarations: [TuiReorderComponent],
|
|
21
|
-
exports: [TuiReorderComponent],
|
|
22
|
-
})
|
|
23
|
-
], TuiReorderModule);
|
|
24
|
-
return TuiReorderModule;
|
|
25
|
-
}());
|
|
26
|
-
export { TuiReorderModule };
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVvcmRlci5tb2R1bGUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZW9yZGVyLyIsInNvdXJjZXMiOlsicmVvcmRlci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxjQUFjLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUN0RCxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdEQsT0FBTyxFQUFDLGVBQWUsRUFBRSxZQUFZLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUU3RCxPQUFPLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQWF4RDtJQUFBO0lBQStCLENBQUM7SUFBbkIsZ0JBQWdCO1FBWDVCLFFBQVEsQ0FBQztZQUNOLE9BQU8sRUFBRTtnQkFDTCxZQUFZO2dCQUNaLGNBQWM7Z0JBQ2QsWUFBWTtnQkFDWixlQUFlO2dCQUNmLHVCQUF1QjthQUMxQjtZQUNELFlBQVksRUFBRSxDQUFDLG1CQUFtQixDQUFDO1lBQ25DLE9BQU8sRUFBRSxDQUFDLG1CQUFtQixDQUFDO1NBQ2pDLENBQUM7T0FDVyxnQkFBZ0IsQ0FBRztJQUFELHVCQUFDO0NBQUEsQUFBaEMsSUFBZ0M7U0FBbkIsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEcmFnRHJvcE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlQcmV2ZW50RGVmYXVsdE1vZHVsZX0gZnJvbSAnQHRhaWdhLXVpL2Nkayc7XG5pbXBvcnQge1R1aUJ1dHRvbk1vZHVsZSwgVHVpU3ZnTW9kdWxlfSBmcm9tICdAdGFpZ2EtdWkvY29yZSc7XG5cbmltcG9ydCB7VHVpUmVvcmRlckNvbXBvbmVudH0gZnJvbSAnLi9yZW9yZGVyLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIERyYWdEcm9wTW9kdWxlLFxuICAgICAgICBUdWlTdmdNb2R1bGUsXG4gICAgICAgIFR1aUJ1dHRvbk1vZHVsZSxcbiAgICAgICAgVHVpUHJldmVudERlZmF1bHRNb2R1bGUsXG4gICAgXSxcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlSZW9yZGVyQ29tcG9uZW50XSxcbiAgICBleHBvcnRzOiBbVHVpUmVvcmRlckNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVJlb3JkZXJNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './index';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpZ2EtdWktYWRkb24tdGFibGUtY29tcG9uZW50cy1yZW9yZGVyLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHRhaWdhLXVpL2FkZG9uLXRhYmxlL2NvbXBvbmVudHMvcmVvcmRlci8iLCJzb3VyY2VzIjpbInRhaWdhLXVpLWFkZG9uLXRhYmxlLWNvbXBvbmVudHMtcmVvcmRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './resizable-column.component';
|
|
2
|
-
export * from './resizable-column.directive';
|
|
3
|
-
export * from './resizable-column.module';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZXNpemFibGUtY29sdW1uLyIsInNvdXJjZXMiOlsiaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3Jlc2l6YWJsZS1jb2x1bW4uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcmVzaXphYmxlLWNvbHVtbi5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9yZXNpemFibGUtY29sdW1uLm1vZHVsZSc7XG4iXX0=
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Component, ElementRef, HostBinding } from '@angular/core';
|
|
3
|
-
import { TUI_ELEMENT_REF } from '@taiga-ui/core';
|
|
4
|
-
/** @deprecated use `<th tuiTh [resizable]="true">` from {@link TuiTableModule} */
|
|
5
|
-
var TuiResizableColumnComponent = /** @class */ (function () {
|
|
6
|
-
function TuiResizableColumnComponent() {
|
|
7
|
-
this.width = null;
|
|
8
|
-
}
|
|
9
|
-
TuiResizableColumnComponent.prototype.onResize = function (width) {
|
|
10
|
-
this.width = width;
|
|
11
|
-
};
|
|
12
|
-
__decorate([
|
|
13
|
-
HostBinding("style.width.px")
|
|
14
|
-
], TuiResizableColumnComponent.prototype, "width", void 0);
|
|
15
|
-
TuiResizableColumnComponent = __decorate([
|
|
16
|
-
Component({
|
|
17
|
-
selector: "th[tuiResizableColumn]",
|
|
18
|
-
template: "<ng-content></ng-content>\n<div\n class=\"t-bar\"\n (tuiResizableColumn)=\"onResize($event)\"\n></div>\n",
|
|
19
|
-
providers: [
|
|
20
|
-
{
|
|
21
|
-
provide: TUI_ELEMENT_REF,
|
|
22
|
-
useExisting: ElementRef,
|
|
23
|
-
},
|
|
24
|
-
],
|
|
25
|
-
styles: [":host{position:relative}:host:last-child .t-bar{display:none}.t-bar{transition-property:opacity;transition-duration:var(--tui-duration,300ms);transition-timing-function:ease-in-out;position:absolute;top:0;bottom:0;right:-1px;width:3px;justify-self:flex-end;border-left:2px solid transparent;background:var(--tui-support-12);background-clip:content-box;cursor:ew-resize;opacity:0}.t-bar:active,.t-bar:hover{opacity:1}"]
|
|
26
|
-
})
|
|
27
|
-
], TuiResizableColumnComponent);
|
|
28
|
-
return TuiResizableColumnComponent;
|
|
29
|
-
}());
|
|
30
|
-
export { TuiResizableColumnComponent };
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXphYmxlLWNvbHVtbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AdGFpZ2EtdWkvYWRkb24tdGFibGUvY29tcG9uZW50cy9yZXNpemFibGUtY29sdW1uLyIsInNvdXJjZXMiOlsicmVzaXphYmxlLWNvbHVtbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsVUFBVSxFQUFFLFdBQVcsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNqRSxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFFL0Msa0ZBQWtGO0FBWWxGO0lBQUE7UUFFSSxVQUFLLEdBQWtCLElBQUksQ0FBQztJQUtoQyxDQUFDO0lBSEcsOENBQVEsR0FBUixVQUFTLEtBQWE7UUFDbEIsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDdkIsQ0FBQztJQUpEO1FBREMsV0FBVyxDQUFDLGdCQUFnQixDQUFDOzhEQUNGO0lBRm5CLDJCQUEyQjtRQVh2QyxTQUFTLENBQUM7WUFDUCxRQUFRLEVBQUUsd0JBQXdCO1lBQ2xDLDBIQUErQztZQUUvQyxTQUFTLEVBQUU7Z0JBQ1A7b0JBQ0ksT0FBTyxFQUFFLGVBQWU7b0JBQ3hCLFdBQVcsRUFBRSxVQUFVO2lCQUMxQjthQUNKOztTQUNKLENBQUM7T0FDVywyQkFBMkIsQ0FPdkM7SUFBRCxrQ0FBQztDQUFBLEFBUEQsSUFPQztTQVBZLDJCQUEyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBFbGVtZW50UmVmLCBIb3N0QmluZGluZ30gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RVSV9FTEVNRU5UX1JFRn0gZnJvbSAnQHRhaWdhLXVpL2NvcmUnO1xuXG4vKiogQGRlcHJlY2F0ZWQgdXNlIGA8dGggdHVpVGggW3Jlc2l6YWJsZV09XCJ0cnVlXCI+YCBmcm9tIHtAbGluayBUdWlUYWJsZU1vZHVsZX0gKi9cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiBgdGhbdHVpUmVzaXphYmxlQ29sdW1uXWAsXG4gICAgdGVtcGxhdGVVcmw6IGAuL3Jlc2l6YWJsZS1jb2x1bW4udGVtcGxhdGUuaHRtbGAsXG4gICAgc3R5bGVVcmxzOiBbYC4vcmVzaXphYmxlLWNvbHVtbi5zdHlsZS5sZXNzYF0sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IFRVSV9FTEVNRU5UX1JFRixcbiAgICAgICAgICAgIHVzZUV4aXN0aW5nOiBFbGVtZW50UmVmLFxuICAgICAgICB9LFxuICAgIF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVJlc2l6YWJsZUNvbHVtbkNvbXBvbmVudCB7XG4gICAgQEhvc3RCaW5kaW5nKGBzdHlsZS53aWR0aC5weGApXG4gICAgd2lkdGg6IG51bWJlciB8IG51bGwgPSBudWxsO1xuXG4gICAgb25SZXNpemUod2lkdGg6IG51bWJlcik6IHZvaWQge1xuICAgICAgICB0aGlzLndpZHRoID0gd2lkdGg7XG4gICAgfVxufVxuIl19
|