@taiga-ui/experimental 3.62.0 → 3.64.0-canary.0c1cd7d
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-experimental-components-app-bar.umd.js +157 -0
- package/bundles/taiga-ui-experimental-components-app-bar.umd.js.map +1 -0
- package/bundles/taiga-ui-experimental-components-avatar-labeled.umd.js +71 -0
- package/bundles/taiga-ui-experimental-components-avatar-labeled.umd.js.map +1 -0
- package/bundles/taiga-ui-experimental-components-badge-notification.umd.js +22 -7
- package/bundles/taiga-ui-experimental-components-badge-notification.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components-badge.umd.js +1 -1
- package/bundles/taiga-ui-experimental-components-badge.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components-chip.umd.js +1 -1
- package/bundles/taiga-ui-experimental-components-chip.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components-segmented.umd.js +231 -0
- package/bundles/taiga-ui-experimental-components-segmented.umd.js.map +1 -0
- package/bundles/taiga-ui-experimental-components-swipe-action.umd.js +119 -0
- package/bundles/taiga-ui-experimental-components-swipe-action.umd.js.map +1 -0
- package/bundles/taiga-ui-experimental-components-thumbnail-card.umd.js +1 -1
- package/bundles/taiga-ui-experimental-components-thumbnail-card.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components-tooltip.umd.js +7 -7
- package/bundles/taiga-ui-experimental-components-tooltip.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-components.umd.js +28 -4
- package/bundles/taiga-ui-experimental-components.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-card.umd.js +40 -17
- package/bundles/taiga-ui-experimental-directives-card.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-cell.umd.js +1 -1
- package/bundles/taiga-ui-experimental-directives-cell.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-header.umd.js +112 -0
- package/bundles/taiga-ui-experimental-directives-header.umd.js.map +1 -0
- package/bundles/taiga-ui-experimental-directives-icons.umd.js +2 -2
- package/bundles/taiga-ui-experimental-directives-icons.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-sensitive.umd.js +344 -8
- package/bundles/taiga-ui-experimental-directives-sensitive.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives-surface.umd.js +1 -1
- package/bundles/taiga-ui-experimental-directives-surface.umd.js.map +1 -1
- package/bundles/taiga-ui-experimental-directives.umd.js +10 -4
- package/bundles/taiga-ui-experimental-directives.umd.js.map +1 -1
- package/components/app-bar/app-bar-back.component.d.ts +5 -0
- package/components/app-bar/app-bar.component.d.ts +13 -0
- package/components/app-bar/app-bar.directive.d.ts +6 -0
- package/components/app-bar/app-bar.module.d.ts +12 -0
- package/components/app-bar/app-bar.providers.d.ts +2 -0
- package/components/app-bar/index.d.ts +5 -0
- package/components/app-bar/package.json +10 -0
- package/components/app-bar/taiga-ui-experimental-components-app-bar.d.ts +5 -0
- package/components/avatar-labeled/avatar-labeled.component.d.ts +5 -0
- package/components/avatar-labeled/avatar-labeled.module.d.ts +7 -0
- package/components/avatar-labeled/index.d.ts +2 -0
- package/components/avatar-labeled/package.json +10 -0
- package/components/avatar-labeled/taiga-ui-experimental-components-avatar-labeled.d.ts +5 -0
- package/components/badge-notification/badge-notification.component.d.ts +3 -1
- package/components/badge-notification/badge-notification.options.d.ts +8 -0
- package/components/badge-notification/index.d.ts +1 -0
- package/components/index.d.ts +4 -0
- package/components/segmented/index.d.ts +3 -0
- package/components/segmented/package.json +10 -0
- package/components/segmented/segmented.component.d.ts +20 -0
- package/components/segmented/segmented.directive.d.ts +20 -0
- package/components/segmented/segmented.module.d.ts +8 -0
- package/components/segmented/taiga-ui-experimental-components-segmented.d.ts +5 -0
- package/components/swipe-action/index.d.ts +3 -0
- package/components/swipe-action/package.json +10 -0
- package/components/swipe-action/swipe-actions-auto-close.directive.d.ts +11 -0
- package/components/swipe-action/swipe-actions.component.d.ts +7 -0
- package/components/swipe-action/swipe-actions.module.d.ts +10 -0
- package/components/swipe-action/taiga-ui-experimental-components-swipe-action.d.ts +5 -0
- package/directives/card/card.directive.d.ts +9 -5
- package/directives/card/card.module.d.ts +1 -1
- package/directives/header/header.component.d.ts +5 -0
- package/directives/header/header.directive.d.ts +9 -0
- package/directives/header/header.module.d.ts +8 -0
- package/directives/header/index.d.ts +3 -0
- package/directives/header/package.json +10 -0
- package/directives/header/taiga-ui-experimental-directives-header.d.ts +5 -0
- package/directives/icons/icons.directive.d.ts +1 -1
- package/directives/index.d.ts +1 -0
- package/directives/sensitive/sensitive.directive.d.ts +4 -2
- package/esm2015/components/app-bar/app-bar-back.component.js +16 -0
- package/esm2015/components/app-bar/app-bar.component.js +51 -0
- package/esm2015/components/app-bar/app-bar.directive.js +18 -0
- package/esm2015/components/app-bar/app-bar.module.js +22 -0
- package/esm2015/components/app-bar/app-bar.providers.js +21 -0
- package/esm2015/components/app-bar/index.js +6 -0
- package/esm2015/components/app-bar/taiga-ui-experimental-components-app-bar.js +5 -0
- package/esm2015/components/avatar-labeled/avatar-labeled.component.js +17 -0
- package/esm2015/components/avatar-labeled/avatar-labeled.module.js +16 -0
- package/esm2015/components/avatar-labeled/index.js +3 -0
- package/esm2015/components/avatar-labeled/taiga-ui-experimental-components-avatar-labeled.js +5 -0
- package/esm2015/components/badge/badge.component.js +1 -1
- package/esm2015/components/badge-notification/badge-notification.component.js +9 -4
- package/esm2015/components/badge-notification/badge-notification.options.js +9 -0
- package/esm2015/components/badge-notification/index.js +2 -1
- package/esm2015/components/chip/chip.component.js +1 -1
- package/esm2015/components/index.js +5 -1
- package/esm2015/components/segmented/index.js +4 -0
- package/esm2015/components/segmented/segmented.component.js +87 -0
- package/esm2015/components/segmented/segmented.directive.js +77 -0
- package/esm2015/components/segmented/segmented.module.js +17 -0
- package/esm2015/components/segmented/taiga-ui-experimental-components-segmented.js +5 -0
- package/esm2015/components/swipe-action/index.js +4 -0
- package/esm2015/components/swipe-action/swipe-actions-auto-close.directive.js +38 -0
- package/esm2015/components/swipe-action/swipe-actions.component.js +26 -0
- package/esm2015/components/swipe-action/swipe-actions.module.js +20 -0
- package/esm2015/components/swipe-action/taiga-ui-experimental-components-swipe-action.js +5 -0
- package/esm2015/components/thumbnail-card/thumbnail-card.component.js +1 -1
- package/esm2015/components/tooltip/tooltip.component.js +3 -3
- package/esm2015/directives/card/card.component.js +1 -1
- package/esm2015/directives/card/card.directive.js +30 -11
- package/esm2015/directives/card/card.module.js +5 -5
- package/esm2015/directives/cell/cell.component.js +1 -1
- package/esm2015/directives/header/header.component.js +19 -0
- package/esm2015/directives/header/header.directive.js +40 -0
- package/esm2015/directives/header/header.module.js +17 -0
- package/esm2015/directives/header/index.js +4 -0
- package/esm2015/directives/header/taiga-ui-experimental-directives-header.js +5 -0
- package/esm2015/directives/icons/icons.directive.js +3 -3
- package/esm2015/directives/index.js +2 -1
- package/esm2015/directives/sensitive/sensitive.component.js +1 -1
- package/esm2015/directives/sensitive/sensitive.directive.js +18 -5
- package/esm2015/directives/surface/surface.component.js +1 -1
- package/fesm2015/taiga-ui-experimental-components-app-bar.js +123 -0
- package/fesm2015/taiga-ui-experimental-components-app-bar.js.map +1 -0
- package/fesm2015/taiga-ui-experimental-components-avatar-labeled.js +37 -0
- package/fesm2015/taiga-ui-experimental-components-avatar-labeled.js.map +1 -0
- package/fesm2015/taiga-ui-experimental-components-badge-notification.js +17 -4
- package/fesm2015/taiga-ui-experimental-components-badge-notification.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-components-badge.js +1 -1
- package/fesm2015/taiga-ui-experimental-components-badge.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-components-chip.js +1 -1
- package/fesm2015/taiga-ui-experimental-components-chip.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-components-segmented.js +177 -0
- package/fesm2015/taiga-ui-experimental-components-segmented.js.map +1 -0
- package/fesm2015/taiga-ui-experimental-components-swipe-action.js +84 -0
- package/fesm2015/taiga-ui-experimental-components-swipe-action.js.map +1 -0
- package/fesm2015/taiga-ui-experimental-components-thumbnail-card.js +1 -1
- package/fesm2015/taiga-ui-experimental-components-thumbnail-card.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-components-tooltip.js +3 -3
- package/fesm2015/taiga-ui-experimental-components-tooltip.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-components.js +4 -0
- package/fesm2015/taiga-ui-experimental-components.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives-card.js +34 -15
- package/fesm2015/taiga-ui-experimental-directives-card.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives-cell.js +1 -1
- package/fesm2015/taiga-ui-experimental-directives-cell.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives-header.js +76 -0
- package/fesm2015/taiga-ui-experimental-directives-header.js.map +1 -0
- package/fesm2015/taiga-ui-experimental-directives-icons.js +2 -2
- package/fesm2015/taiga-ui-experimental-directives-icons.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives-sensitive.js +18 -5
- package/fesm2015/taiga-ui-experimental-directives-sensitive.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives-surface.js +1 -1
- package/fesm2015/taiga-ui-experimental-directives-surface.js.map +1 -1
- package/fesm2015/taiga-ui-experimental-directives.js +1 -0
- package/fesm2015/taiga-ui-experimental-directives.js.map +1 -1
- package/package.json +31 -31
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-experimental-directives-surface.umd.js","sources":["../../../projects/experimental/directives/surface/surface.component.ts","../../../projects/experimental/directives/surface/surface.directive.ts","../../../projects/experimental/directives/surface/surface.module.ts","../../../projects/experimental/directives/surface/taiga-ui-experimental-directives-surface.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\n\n@Component({\n template: '',\n styleUrls: ['./surface.style.less'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'tui-surface-styles',\n },\n})\nexport class TuiSurfaceComponent {}\n","import {Directive, Inject, Input} from '@angular/core';\nimport {TuiDirectiveStylesService} from '@taiga-ui/cdk';\n\nimport {TuiSurfaceComponent} from './surface.component';\n\n@Directive({\n selector: '[tuiSurface]',\n host: {\n tuiSurface: '',\n '[attr.data-surface]': 'tuiSurface',\n },\n})\nexport class TuiSurfaceDirective {\n @Input()\n tuiSurface = '';\n\n constructor(\n @Inject(TuiDirectiveStylesService) directiveStyles: TuiDirectiveStylesService,\n ) {\n directiveStyles.addComponent(TuiSurfaceComponent);\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiSurfaceComponent} from './surface.component';\nimport {TuiSurfaceDirective} from './surface.directive';\n\n@NgModule({\n declarations: [TuiSurfaceComponent, TuiSurfaceDirective],\n exports: [TuiSurfaceDirective],\n})\nexport class TuiSurfaceModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i0","Component","ViewEncapsulation","ChangeDetectionStrategy","TuiDirectiveStylesService","Directive","Inject","Input","NgModule"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAWA,YAAA,mBAAA,kBAAA,YAAA;QAAA,IAAA,SAAA,mBAAA,GAAA;;;;+IAAa,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAAA,aAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;QAAnB,mBAAA,CAAA,IAAA,GAAAA,aAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,mBAAmB,+GARlB,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,
|
|
1
|
+
{"version":3,"file":"taiga-ui-experimental-directives-surface.umd.js","sources":["../../../projects/experimental/directives/surface/surface.component.ts","../../../projects/experimental/directives/surface/surface.directive.ts","../../../projects/experimental/directives/surface/surface.module.ts","../../../projects/experimental/directives/surface/taiga-ui-experimental-directives-surface.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\n\n@Component({\n template: '',\n styleUrls: ['./surface.style.less'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'tui-surface-styles',\n },\n})\nexport class TuiSurfaceComponent {}\n","import {Directive, Inject, Input} from '@angular/core';\nimport {TuiDirectiveStylesService} from '@taiga-ui/cdk';\n\nimport {TuiSurfaceComponent} from './surface.component';\n\n@Directive({\n selector: '[tuiSurface]',\n host: {\n tuiSurface: '',\n '[attr.data-surface]': 'tuiSurface',\n },\n})\nexport class TuiSurfaceDirective {\n @Input()\n tuiSurface = '';\n\n constructor(\n @Inject(TuiDirectiveStylesService) directiveStyles: TuiDirectiveStylesService,\n ) {\n directiveStyles.addComponent(TuiSurfaceComponent);\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiSurfaceComponent} from './surface.component';\nimport {TuiSurfaceDirective} from './surface.directive';\n\n@NgModule({\n declarations: [TuiSurfaceComponent, TuiSurfaceDirective],\n exports: [TuiSurfaceDirective],\n})\nexport class TuiSurfaceModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i0","Component","ViewEncapsulation","ChangeDetectionStrategy","TuiDirectiveStylesService","Directive","Inject","Input","NgModule"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAWA,YAAA,mBAAA,kBAAA,YAAA;QAAA,IAAA,SAAA,mBAAA,GAAA;;;;+IAAa,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAAA,aAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;QAAnB,mBAAA,CAAA,IAAA,GAAAA,aAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,mBAAmB,+GARlB,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,+yHAAA,CAAA,EAAA,eAAA,EAAAA,aAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,aAAA,EAAAA,aAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;0HAQH,mBAAmB,EAAA,UAAA,EAAA,CAAA;0BAT/BC,YAAS;QAAC,YAAA,IAAA,EAAA,CAAA;QACP,oBAAA,QAAQ,EAAE,EAAE;4BACZ,SAAS,EAAE,CAAC,sBAAsB,CAAC;4BACnC,aAAa,EAAEC,oBAAiB,CAAC,IAAI;4BACrC,eAAe,EAAEC,0BAAuB,CAAC,MAAM;QAC/C,oBAAA,IAAI,EAAE;QACF,wBAAA,KAAK,EAAE,oBAAoB;QAC9B,qBAAA;yBACJ,CAAA;;;ACED,YAAA,mBAAA,kBAAA,YAAA;QAII,IAAA,SAAA,mBAAA,CACuC,eAA0C,EAAA;QAHjF,QAAA,IAAU,CAAA,UAAA,GAAG,EAAE,CAAC;QAKZ,QAAA,eAAe,CAAC,YAAY,CAAC,mBAAmB,CAAC,CAAC;aACrD;;;QARQ,mBAAA,CAAA,IAAA,GAAAH,aAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAAA,aAAA,EAAA,IAAA,EAAA,mBAAmB,kBAKhBI,4BAAyB,EAAA,CAAA,EAAA,MAAA,EAAAJ,aAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;wHAL5B,mBAAmB,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,EAAA,UAAA,EAAA,YAAA,EAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,YAAA,EAAA,EAAA,EAAA,EAAA,UAAA,EAAA,EAAA,mBAAA,EAAA,YAAA,EAAA,EAAA,EAAA,QAAA,EAAAA,aAAA,EAAA,CAAA,CAAA;0HAAnB,mBAAmB,EAAA,UAAA,EAAA,CAAA;0BAP/BK,YAAS;QAAC,YAAA,IAAA,EAAA,CAAA;QACP,oBAAA,QAAQ,EAAE,cAAc;QACxB,oBAAA,IAAI,EAAE;QACF,wBAAA,UAAU,EAAE,EAAE;QACd,wBAAA,qBAAqB,EAAE,YAAY;QACtC,qBAAA;yBACJ,CAAA;;;sCAMQC,SAAM;uCAACF,4BAAyB,CAAA;;iCAHrC,UAAU,EAAA,CAAA;8BADTG,QAAK;;;ACJV,YAAA,gBAAA,kBAAA,YAAA;QAAA,IAAA,SAAA,gBAAA,GAAA;;;;4IAAa,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAAP,aAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;QAAhB,gBAAA,CAAA,IAAA,GAAAA,aAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAAA,aAAA,EAAA,IAAA,EAAA,gBAAgB,EAHV,YAAA,EAAA,CAAA,mBAAmB,EAAE,mBAAmB,aAC7C,mBAAmB,CAAA,EAAA,CAAA,CAAA;6IAEpB,gBAAgB,EAAA,CAAA,CAAA;0HAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;0BAJ5BQ,WAAQ;QAAC,YAAA,IAAA,EAAA,CAAA;QACN,oBAAA,YAAY,EAAE,CAAC,mBAAmB,EAAE,mBAAmB,CAAC;4BACxD,OAAO,EAAE,CAAC,mBAAmB,CAAC;yBACjC,CAAA;;;QCRD;;QAEG;;;;;;;;;;;;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@taiga-ui/experimental/directives/appearance'), require('@taiga-ui/experimental/directives/button-close'), require('@taiga-ui/experimental/directives/button-vertical'), require('@taiga-ui/experimental/directives/card'), require('@taiga-ui/experimental/directives/cell'), require('@taiga-ui/experimental/directives/fade'), require('@taiga-ui/experimental/directives/icons'), require('@taiga-ui/experimental/directives/progress-segmented'), require('@taiga-ui/experimental/directives/sensitive'), require('@taiga-ui/experimental/directives/surface'), require('@taiga-ui/experimental/directives/title')) :
|
|
3
|
-
typeof define === 'function' && define.amd ? define('@taiga-ui/experimental/directives', ['exports', '@taiga-ui/experimental/directives/appearance', '@taiga-ui/experimental/directives/button-close', '@taiga-ui/experimental/directives/button-vertical', '@taiga-ui/experimental/directives/card', '@taiga-ui/experimental/directives/cell', '@taiga-ui/experimental/directives/fade', '@taiga-ui/experimental/directives/icons', '@taiga-ui/experimental/directives/progress-segmented', '@taiga-ui/experimental/directives/sensitive', '@taiga-ui/experimental/directives/surface', '@taiga-ui/experimental/directives/title'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["taiga-ui"] = global["taiga-ui"] || {}, global["taiga-ui"].experimental = global["taiga-ui"].experimental || {}, global["taiga-ui"].experimental.directives = {}), global["taiga-ui"].experimental.directives.appearance, global["taiga-ui"].experimental.directives["button-close"], global["taiga-ui"].experimental.directives["button-vertical"], global["taiga-ui"].experimental.directives.card, global["taiga-ui"].experimental.directives.cell, global["taiga-ui"].experimental.directives.fade, global["taiga-ui"].experimental.directives.icons, global["taiga-ui"].experimental.directives["progress-segmented"], global["taiga-ui"].experimental.directives.sensitive, global["taiga-ui"].experimental.directives.surface, global["taiga-ui"].experimental.directives.title));
|
|
5
|
-
})(this, (function (exports, appearance, buttonClose, buttonVertical, card, cell, fade, icons, progressSegmented, sensitive, surface, title) { 'use strict';
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@taiga-ui/experimental/directives/appearance'), require('@taiga-ui/experimental/directives/button-close'), require('@taiga-ui/experimental/directives/button-vertical'), require('@taiga-ui/experimental/directives/card'), require('@taiga-ui/experimental/directives/cell'), require('@taiga-ui/experimental/directives/fade'), require('@taiga-ui/experimental/directives/header'), require('@taiga-ui/experimental/directives/icons'), require('@taiga-ui/experimental/directives/progress-segmented'), require('@taiga-ui/experimental/directives/sensitive'), require('@taiga-ui/experimental/directives/surface'), require('@taiga-ui/experimental/directives/title')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define('@taiga-ui/experimental/directives', ['exports', '@taiga-ui/experimental/directives/appearance', '@taiga-ui/experimental/directives/button-close', '@taiga-ui/experimental/directives/button-vertical', '@taiga-ui/experimental/directives/card', '@taiga-ui/experimental/directives/cell', '@taiga-ui/experimental/directives/fade', '@taiga-ui/experimental/directives/header', '@taiga-ui/experimental/directives/icons', '@taiga-ui/experimental/directives/progress-segmented', '@taiga-ui/experimental/directives/sensitive', '@taiga-ui/experimental/directives/surface', '@taiga-ui/experimental/directives/title'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["taiga-ui"] = global["taiga-ui"] || {}, global["taiga-ui"].experimental = global["taiga-ui"].experimental || {}, global["taiga-ui"].experimental.directives = {}), global["taiga-ui"].experimental.directives.appearance, global["taiga-ui"].experimental.directives["button-close"], global["taiga-ui"].experimental.directives["button-vertical"], global["taiga-ui"].experimental.directives.card, global["taiga-ui"].experimental.directives.cell, global["taiga-ui"].experimental.directives.fade, global["taiga-ui"].experimental.directives.header, global["taiga-ui"].experimental.directives.icons, global["taiga-ui"].experimental.directives["progress-segmented"], global["taiga-ui"].experimental.directives.sensitive, global["taiga-ui"].experimental.directives.surface, global["taiga-ui"].experimental.directives.title));
|
|
5
|
+
})(this, (function (exports, appearance, buttonClose, buttonVertical, card, cell, fade, header, icons, progressSegmented, sensitive, surface, title) { 'use strict';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Generated bundle index. Do not edit.
|
|
@@ -44,6 +44,12 @@
|
|
|
44
44
|
get: function () { return fade[k]; }
|
|
45
45
|
});
|
|
46
46
|
});
|
|
47
|
+
Object.keys(header).forEach(function (k) {
|
|
48
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () { return header[k]; }
|
|
51
|
+
});
|
|
52
|
+
});
|
|
47
53
|
Object.keys(icons).forEach(function (k) {
|
|
48
54
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
49
55
|
enumerable: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-experimental-directives.umd.js","sources":["../../../projects/experimental/directives/taiga-ui-experimental-directives.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;CAAA;;CAEG
|
|
1
|
+
{"version":3,"file":"taiga-ui-experimental-directives.umd.js","sources":["../../../projects/experimental/directives/taiga-ui-experimental-directives.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;CAAA;;CAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiAppBarBackComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarBackComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiAppBarBackComponent, "button[tuiAppBarBack], a[tuiAppBarBack]", never, {}, {}, never, ["*"]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TuiSizeL } from '@taiga-ui/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TuiAppBarComponent {
|
|
5
|
+
private readonly resize$;
|
|
6
|
+
private readonly mutation$;
|
|
7
|
+
private readonly side;
|
|
8
|
+
size: TuiSizeL;
|
|
9
|
+
readonly width$: Observable<number>;
|
|
10
|
+
constructor(resize$: Observable<unknown>, mutation$: Observable<unknown>);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiAppBarComponent, "tui-app-bar", never, { "size": "size"; }, {}, never, ["[tuiSlot='left']", "*", "[tuiSlot='right']"]>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiAppBarDirective {
|
|
3
|
+
tuiSlot: string | 'left' | 'right';
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiAppBarDirective, "[tuiSlot]", never, { "tuiSlot": "tuiSlot"; }, {}, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./app-bar.component";
|
|
3
|
+
import * as i2 from "./app-bar.directive";
|
|
4
|
+
import * as i3 from "./app-bar-back.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@taiga-ui/core";
|
|
7
|
+
import * as i6 from "@taiga-ui/experimental/directives/fade";
|
|
8
|
+
export declare class TuiAppBarModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAppBarModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiAppBarModule, [typeof i1.TuiAppBarComponent, typeof i2.TuiAppBarDirective, typeof i3.TuiAppBarBackComponent], [typeof i4.CommonModule, typeof i5.TuiSvgModule, typeof i6.TuiFadeModule], [typeof i1.TuiAppBarComponent, typeof i2.TuiAppBarDirective, typeof i3.TuiAppBarBackComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiAppBarModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../../bundles/taiga-ui-experimental-components-app-bar.umd.js",
|
|
3
|
+
"module": "../../fesm2015/taiga-ui-experimental-components-app-bar.js",
|
|
4
|
+
"es2015": "../../fesm2015/taiga-ui-experimental-components-app-bar.js",
|
|
5
|
+
"esm2015": "../../esm2015/components/app-bar/taiga-ui-experimental-components-app-bar.js",
|
|
6
|
+
"fesm2015": "../../fesm2015/taiga-ui-experimental-components-app-bar.js",
|
|
7
|
+
"typings": "taiga-ui-experimental-components-app-bar.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "@taiga-ui/experimental/components/app-bar"
|
|
10
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiAvatarLabeledComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAvatarLabeledComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiAvatarLabeledComponent, "tui-avatar-labeled", never, {}, {}, never, ["*"]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./avatar-labeled.component";
|
|
3
|
+
export declare class TuiAvatarLabeledModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAvatarLabeledModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiAvatarLabeledModule, [typeof i1.TuiAvatarLabeledComponent], never, [typeof i1.TuiAvatarLabeledComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiAvatarLabeledModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../../bundles/taiga-ui-experimental-components-avatar-labeled.umd.js",
|
|
3
|
+
"module": "../../fesm2015/taiga-ui-experimental-components-avatar-labeled.js",
|
|
4
|
+
"es2015": "../../fesm2015/taiga-ui-experimental-components-avatar-labeled.js",
|
|
5
|
+
"esm2015": "../../esm2015/components/avatar-labeled/taiga-ui-experimental-components-avatar-labeled.js",
|
|
6
|
+
"fesm2015": "../../fesm2015/taiga-ui-experimental-components-avatar-labeled.js",
|
|
7
|
+
"typings": "taiga-ui-experimental-components-avatar-labeled.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "@taiga-ui/experimental/components/avatar-labeled"
|
|
10
|
+
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { TuiAnimationOptions, TuiSizeL, TuiSizeXS } from '@taiga-ui/core';
|
|
2
|
+
import { TuiBadgeNotificationOptions } from './badge-notification.options';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TuiBadgeNotificationComponent {
|
|
4
5
|
readonly animation: TuiAnimationOptions;
|
|
6
|
+
private readonly options;
|
|
5
7
|
size: TuiSizeL | TuiSizeXS;
|
|
6
|
-
constructor(animation: TuiAnimationOptions);
|
|
8
|
+
constructor(animation: TuiAnimationOptions, options: TuiBadgeNotificationOptions);
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiBadgeNotificationComponent, never>;
|
|
8
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<TuiBadgeNotificationComponent, "tui-badge-notification", never, { "size": "size"; }, {}, never, ["*"]>;
|
|
9
11
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Provider } from '@angular/core';
|
|
2
|
+
import { TuiSizeL, TuiSizeXS } from '@taiga-ui/core';
|
|
3
|
+
export interface TuiBadgeNotificationOptions {
|
|
4
|
+
readonly size: TuiSizeL | TuiSizeXS;
|
|
5
|
+
}
|
|
6
|
+
export declare const TUI_BADGE_NOTIFICATION_DEFAULT_OPTIONS: TuiBadgeNotificationOptions;
|
|
7
|
+
export declare const TUI_BADGE_NOTIFICATION_OPTIONS: import("@angular/core").InjectionToken<TuiBadgeNotificationOptions>;
|
|
8
|
+
export declare function tuiBadgeNotificationOptionsProvider(options: Partial<TuiBadgeNotificationOptions>): Provider;
|
package/components/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export * from '@taiga-ui/experimental/components/app-bar';
|
|
1
2
|
export * from '@taiga-ui/experimental/components/avatar';
|
|
3
|
+
export * from '@taiga-ui/experimental/components/avatar-labeled';
|
|
2
4
|
export * from '@taiga-ui/experimental/components/avatar-stack';
|
|
3
5
|
export * from '@taiga-ui/experimental/components/badge';
|
|
4
6
|
export * from '@taiga-ui/experimental/components/badge-notification';
|
|
@@ -11,6 +13,8 @@ export * from '@taiga-ui/experimental/components/icon';
|
|
|
11
13
|
export * from '@taiga-ui/experimental/components/pin';
|
|
12
14
|
export * from '@taiga-ui/experimental/components/radio';
|
|
13
15
|
export * from '@taiga-ui/experimental/components/rating';
|
|
16
|
+
export * from '@taiga-ui/experimental/components/segmented';
|
|
17
|
+
export * from '@taiga-ui/experimental/components/swipe-action';
|
|
14
18
|
export * from '@taiga-ui/experimental/components/thumbnail-card';
|
|
15
19
|
export * from '@taiga-ui/experimental/components/toggle';
|
|
16
20
|
export * from '@taiga-ui/experimental/components/tooltip';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../../bundles/taiga-ui-experimental-components-segmented.umd.js",
|
|
3
|
+
"module": "../../fesm2015/taiga-ui-experimental-components-segmented.js",
|
|
4
|
+
"es2015": "../../fesm2015/taiga-ui-experimental-components-segmented.js",
|
|
5
|
+
"esm2015": "../../esm2015/components/segmented/taiga-ui-experimental-components-segmented.js",
|
|
6
|
+
"fesm2015": "../../fesm2015/taiga-ui-experimental-components-segmented.js",
|
|
7
|
+
"typings": "taiga-ui-experimental-components-segmented.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "@taiga-ui/experimental/components/segmented"
|
|
10
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges } from '@angular/core';
|
|
2
|
+
import { TuiSizeL, TuiSizeS } from '@taiga-ui/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TuiSegmentedComponent implements OnChanges {
|
|
6
|
+
private readonly el;
|
|
7
|
+
size: TuiSizeL | TuiSizeS;
|
|
8
|
+
activeItemIndex: number;
|
|
9
|
+
readonly activeItemIndexChange: EventEmitter<number>;
|
|
10
|
+
constructor(el: ElementRef<HTMLElement>, resize$: Observable<unknown>, destroy$: Observable<unknown>);
|
|
11
|
+
get tabs(): HTMLCollection;
|
|
12
|
+
ngOnChanges(): void;
|
|
13
|
+
update(activeItemIndex: number): void;
|
|
14
|
+
private get left();
|
|
15
|
+
private get width();
|
|
16
|
+
private get activeElement();
|
|
17
|
+
private refresh;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSegmentedComponent, [null, null, { self: true; }]>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSegmentedComponent, "tui-segmented", never, { "size": "size"; "activeItemIndex": "activeItemIndex"; }, { "activeItemIndexChange": "activeItemIndexChange"; }, never, ["*"]>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AfterContentChecked, AfterContentInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { TuiSegmentedComponent } from './segmented.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TuiSegmentedDirective implements AfterContentChecked, AfterContentInit {
|
|
6
|
+
private readonly destroy$;
|
|
7
|
+
private readonly component;
|
|
8
|
+
private readonly el;
|
|
9
|
+
private readonly controls;
|
|
10
|
+
private readonly links;
|
|
11
|
+
private readonly elements;
|
|
12
|
+
constructor(destroy$: Observable<unknown>, component: TuiSegmentedComponent, el: ElementRef<HTMLElement>);
|
|
13
|
+
update(target: Element | null): void;
|
|
14
|
+
ngAfterContentInit(): void;
|
|
15
|
+
ngAfterContentChecked(): void;
|
|
16
|
+
private get linkIndex();
|
|
17
|
+
private getIndex;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSegmentedDirective, [{ self: true; }, null, null]>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSegmentedDirective, "tui-segmented", never, {}, {}, ["controls", "links", "elements"]>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./segmented.component";
|
|
3
|
+
import * as i2 from "./segmented.directive";
|
|
4
|
+
export declare class TuiSegmentedModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSegmentedModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiSegmentedModule, [typeof i1.TuiSegmentedComponent, typeof i2.TuiSegmentedDirective], never, [typeof i1.TuiSegmentedComponent, typeof i2.TuiSegmentedDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiSegmentedModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../../bundles/taiga-ui-experimental-components-swipe-action.umd.js",
|
|
3
|
+
"module": "../../fesm2015/taiga-ui-experimental-components-swipe-action.js",
|
|
4
|
+
"es2015": "../../fesm2015/taiga-ui-experimental-components-swipe-action.js",
|
|
5
|
+
"esm2015": "../../esm2015/components/swipe-action/taiga-ui-experimental-components-swipe-action.js",
|
|
6
|
+
"fesm2015": "../../fesm2015/taiga-ui-experimental-components-swipe-action.js",
|
|
7
|
+
"typings": "taiga-ui-experimental-components-swipe-action.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "@taiga-ui/experimental/components/swipe-action"
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TuiSwipeActionsAutoCloseDirective {
|
|
4
|
+
private readonly el;
|
|
5
|
+
autoClose: boolean;
|
|
6
|
+
constructor(el: ElementRef<HTMLElement>);
|
|
7
|
+
onPointer(event: PointerEvent): void;
|
|
8
|
+
private close;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSwipeActionsAutoCloseDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSwipeActionsAutoCloseDirective, "tui-swipe-actions[autoClose]", never, { "autoClose": "autoClose"; }, {}, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiSwipeActionsComponent {
|
|
3
|
+
actionsWidth: number;
|
|
4
|
+
onResize({ target }: ResizeObserverEntry): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSwipeActionsComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSwipeActionsComponent, "tui-swipe-actions", never, {}, {}, never, ["*", "[tuiSwipeAction]"]>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./swipe-actions.component";
|
|
3
|
+
import * as i2 from "./swipe-actions-auto-close.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@taiga-ui/cdk";
|
|
6
|
+
export declare class TuiSwipeActionsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSwipeActionsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiSwipeActionsModule, [typeof i1.TuiSwipeActionsComponent, typeof i2.TuiSwipeActionsAutoCloseDirective], [typeof i3.CommonModule, typeof i4.TuiResizeModule], [typeof i1.TuiSwipeActionsComponent, typeof i2.TuiSwipeActionsAutoCloseDirective]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiSwipeActionsModule>;
|
|
10
|
+
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { TuiDirectiveStylesService } from '@taiga-ui/cdk';
|
|
2
|
-
import { TuiSizeL } from '@taiga-ui/core';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
5
|
-
size: TuiSizeL | '';
|
|
3
|
+
export declare class TuiCardMediumDirective {
|
|
6
4
|
constructor(directiveStyles: TuiDirectiveStylesService);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiCardMediumDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiCardMediumDirective, "[tuiCardMedium]", never, {}, {}, never>;
|
|
7
|
+
}
|
|
8
|
+
export declare class TuiCardLargeDirective {
|
|
9
|
+
space: '' | 'compact' | 'normal';
|
|
10
|
+
constructor(directiveStyles: TuiDirectiveStylesService);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiCardLargeDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiCardLargeDirective, "[tuiCardLarge]", never, { "space": "tuiCardLarge"; }, {}, never>;
|
|
9
13
|
}
|
|
@@ -3,6 +3,6 @@ import * as i1 from "./card.component";
|
|
|
3
3
|
import * as i2 from "./card.directive";
|
|
4
4
|
export declare class TuiCardModule {
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiCardModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiCardModule, [typeof i1.TuiCardComponent, typeof i2.
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiCardModule, [typeof i1.TuiCardComponent, typeof i2.TuiCardLargeDirective, typeof i2.TuiCardMediumDirective], never, [typeof i2.TuiCardLargeDirective, typeof i2.TuiCardMediumDirective]>;
|
|
7
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<TuiCardModule>;
|
|
8
8
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TuiDirectiveStylesService } from '@taiga-ui/cdk';
|
|
2
|
+
import { TuiSizeXXL, TuiSizeXXS } from '@taiga-ui/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TuiHeaderDirective {
|
|
5
|
+
size: TuiSizeXXL | TuiSizeXXS | '';
|
|
6
|
+
constructor(directiveStyles: TuiDirectiveStylesService);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiHeaderDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiHeaderDirective, "[tuiHeader]", never, { "size": "tuiHeader"; }, {}, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./header.component";
|
|
3
|
+
import * as i2 from "./header.directive";
|
|
4
|
+
export declare class TuiHeaderModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiHeaderModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiHeaderModule, [typeof i1.TuiHeaderComponent, typeof i2.TuiHeaderDirective], never, [typeof i1.TuiHeaderComponent, typeof i2.TuiHeaderDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiHeaderModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../../bundles/taiga-ui-experimental-directives-header.umd.js",
|
|
3
|
+
"module": "../../fesm2015/taiga-ui-experimental-directives-header.js",
|
|
4
|
+
"es2015": "../../fesm2015/taiga-ui-experimental-directives-header.js",
|
|
5
|
+
"esm2015": "../../esm2015/directives/header/taiga-ui-experimental-directives-header.js",
|
|
6
|
+
"fesm2015": "../../fesm2015/taiga-ui-experimental-directives-header.js",
|
|
7
|
+
"typings": "taiga-ui-experimental-directives-header.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "@taiga-ui/experimental/directives/header"
|
|
10
|
+
}
|
|
@@ -6,5 +6,5 @@ export declare class TuiIconsDirective {
|
|
|
6
6
|
iconRight: string;
|
|
7
7
|
constructor(resolver: TuiStringHandler<string>, directiveStyles: TuiDirectiveStylesService);
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiIconsDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiIconsDirective, "[iconLeft]:is(button,tui-badge,tui-chip),[iconRight]:is(button,tui-badge,tui-chip),[tuiBadge][iconLeft],[tuiBadge][iconRight],[tuiChip][iconLeft],[tuiChip][iconRight],[tuiButtonClose]", never, { "iconLeft": "iconLeft"; "iconRight": "iconRight"; }, {}, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiIconsDirective, "[iconLeft]:is(a,button,tui-badge,tui-chip),[iconRight]:is(a,button,tui-badge,tui-chip),[tuiBadge][iconLeft],[tuiBadge][iconRight],[tuiChip][iconLeft],[tuiChip][iconRight],[tuiButtonClose]", never, { "iconLeft": "iconLeft"; "iconRight": "iconRight"; }, {}, never>;
|
|
10
10
|
}
|
package/directives/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from '@taiga-ui/experimental/directives/button-vertical';
|
|
|
4
4
|
export * from '@taiga-ui/experimental/directives/card';
|
|
5
5
|
export * from '@taiga-ui/experimental/directives/cell';
|
|
6
6
|
export * from '@taiga-ui/experimental/directives/fade';
|
|
7
|
+
export * from '@taiga-ui/experimental/directives/header';
|
|
7
8
|
export * from '@taiga-ui/experimental/directives/icons';
|
|
8
9
|
export * from '@taiga-ui/experimental/directives/progress-segmented';
|
|
9
10
|
export * from '@taiga-ui/experimental/directives/sensitive';
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { TuiDirectiveStylesService } from '@taiga-ui/cdk';
|
|
1
|
+
import { TuiDirectiveStylesService, TuiResizeService } from '@taiga-ui/cdk';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TuiSensitiveDirective {
|
|
4
|
+
private readonly resize$;
|
|
4
5
|
tuiSensitive: boolean | null;
|
|
5
6
|
readonly offset: number;
|
|
6
|
-
|
|
7
|
+
readonly height$: import("rxjs").Observable<number>;
|
|
8
|
+
constructor(directiveStyles: TuiDirectiveStylesService, resize$: TuiResizeService);
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSensitiveDirective, never>;
|
|
8
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSensitiveDirective, "[tuiSensitive]", never, { "tuiSensitive": "tuiSensitive"; }, {}, never>;
|
|
9
11
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class TuiAppBarBackComponent {
|
|
4
|
+
}
|
|
5
|
+
TuiAppBarBackComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarBackComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
TuiAppBarBackComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiAppBarBackComponent, selector: "button[tuiAppBarBack], a[tuiAppBarBack]", ngImport: i0, template: "<svg\n height=\"24\"\n viewBox=\"0 0 24 24\"\n width=\"24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"t-ios\"\n>\n <path\n d=\"M7.44025 12L14.9826 4.43872C15.5391 3.88083 15.5391 2.97631 14.9826 2.41842C14.4261 1.86053 13.5239 1.86053 12.9674 2.41842L4.41737 10.9898C3.86088 11.5477 3.86088 12.4523 4.41737 13.0102L12.9674 21.5816C13.5239 22.1395 14.4261 22.1395 14.9826 21.5816C15.5391 21.0237 15.5391 20.1192 14.9826 19.5613L7.44025 12Z\"\n fill=\"currentColor\"\n />\n</svg>\n<svg\n height=\"24\"\n viewBox=\"0 0 24 24\"\n width=\"24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"t-android\"\n>\n <path\n d=\"M19.6999 11.5899C19.6999 11.0377 19.2522 10.5899 18.6999 10.5899H7.49992L12.3999 5.68995C12.7865 5.30335 12.7865 4.67655 12.3999 4.28995V4.28995C12.0133 3.90335 11.3865 3.90335 10.9999 4.28995L4.40703 10.8828C4.0165 11.2734 4.01651 11.9065 4.40703 12.2971L10.9999 18.89C11.3865 19.2765 12.0133 19.2765 12.3999 18.8899V18.8899C12.7865 18.5034 12.7865 17.8765 12.3999 17.49L7.49992 12.5899H18.6999C19.2522 12.5899 19.6999 12.1422 19.6999 11.5899V11.5899Z\"\n fill=\"currentColor\"\n />\n</svg>\n<ng-content></ng-content>\n", styles: [":host{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;background:none;font-size:inherit;line-height:inherit;text-decoration:none;display:flex;align-items:center;padding:0 .625rem 0 .125rem;color:var(--tui-link)}:host :host-context([data-platform=\"android\"]){font-size:0;padding:0 .625rem}:host :host-context([data-platform=\"android\"]) .t-ios{display:none}:host :host-context([data-platform=\"android\"]) .t-android{display:block}.t-android{display:none}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarBackComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{
|
|
10
|
+
selector: 'button[tuiAppBarBack], a[tuiAppBarBack]',
|
|
11
|
+
templateUrl: './app-bar-back.template.html',
|
|
12
|
+
styleUrls: ['./app-bar-back.style.less'],
|
|
13
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14
|
+
}]
|
|
15
|
+
}] });
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci1iYWNrLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2V4cGVyaW1lbnRhbC9jb21wb25lbnRzL2FwcC1iYXIvYXBwLWJhci1iYWNrLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2V4cGVyaW1lbnRhbC9jb21wb25lbnRzL2FwcC1iYXIvYXBwLWJhci1iYWNrLnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLHVCQUF1QixFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7QUFRakUsTUFBTSxPQUFPLHNCQUFzQjs7b0hBQXRCLHNCQUFzQjt3R0FBdEIsc0JBQXNCLCtFQ1JuQyxnc0NBeUJBOzRGRGpCYSxzQkFBc0I7a0JBTmxDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHlDQUF5QztvQkFDbkQsV0FBVyxFQUFFLDhCQUE4QjtvQkFDM0MsU0FBUyxFQUFFLENBQUMsMkJBQTJCLENBQUM7b0JBQ3hDLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2lCQUNsRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnYnV0dG9uW3R1aUFwcEJhckJhY2tdLCBhW3R1aUFwcEJhckJhY2tdJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYXBwLWJhci1iYWNrLnRlbXBsYXRlLmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2FwcC1iYXItYmFjay5zdHlsZS5sZXNzJ10sXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFR1aUFwcEJhckJhY2tDb21wb25lbnQge31cbiIsIjxzdmdcbiAgICBoZWlnaHQ9XCIyNFwiXG4gICAgdmlld0JveD1cIjAgMCAyNCAyNFwiXG4gICAgd2lkdGg9XCIyNFwiXG4gICAgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Z1wiXG4gICAgY2xhc3M9XCJ0LWlvc1wiXG4+XG4gICAgPHBhdGhcbiAgICAgICAgZD1cIk03LjQ0MDI1IDEyTDE0Ljk4MjYgNC40Mzg3MkMxNS41MzkxIDMuODgwODMgMTUuNTM5MSAyLjk3NjMxIDE0Ljk4MjYgMi40MTg0MkMxNC40MjYxIDEuODYwNTMgMTMuNTIzOSAxLjg2MDUzIDEyLjk2NzQgMi40MTg0Mkw0LjQxNzM3IDEwLjk4OThDMy44NjA4OCAxMS41NDc3IDMuODYwODggMTIuNDUyMyA0LjQxNzM3IDEzLjAxMDJMMTIuOTY3NCAyMS41ODE2QzEzLjUyMzkgMjIuMTM5NSAxNC40MjYxIDIyLjEzOTUgMTQuOTgyNiAyMS41ODE2QzE1LjUzOTEgMjEuMDIzNyAxNS41MzkxIDIwLjExOTIgMTQuOTgyNiAxOS41NjEzTDcuNDQwMjUgMTJaXCJcbiAgICAgICAgZmlsbD1cImN1cnJlbnRDb2xvclwiXG4gICAgLz5cbjwvc3ZnPlxuPHN2Z1xuICAgIGhlaWdodD1cIjI0XCJcbiAgICB2aWV3Qm94PVwiMCAwIDI0IDI0XCJcbiAgICB3aWR0aD1cIjI0XCJcbiAgICB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCJcbiAgICBjbGFzcz1cInQtYW5kcm9pZFwiXG4+XG4gICAgPHBhdGhcbiAgICAgICAgZD1cIk0xOS42OTk5IDExLjU4OTlDMTkuNjk5OSAxMS4wMzc3IDE5LjI1MjIgMTAuNTg5OSAxOC42OTk5IDEwLjU4OTlINy40OTk5MkwxMi4zOTk5IDUuNjg5OTVDMTIuNzg2NSA1LjMwMzM1IDEyLjc4NjUgNC42NzY1NSAxMi4zOTk5IDQuMjg5OTVWNC4yODk5NUMxMi4wMTMzIDMuOTAzMzUgMTEuMzg2NSAzLjkwMzM1IDEwLjk5OTkgNC4yODk5NUw0LjQwNzAzIDEwLjg4MjhDNC4wMTY1IDExLjI3MzQgNC4wMTY1MSAxMS45MDY1IDQuNDA3MDMgMTIuMjk3MUwxMC45OTk5IDE4Ljg5QzExLjM4NjUgMTkuMjc2NSAxMi4wMTMzIDE5LjI3NjUgMTIuMzk5OSAxOC44ODk5VjE4Ljg4OTlDMTIuNzg2NSAxOC41MDM0IDEyLjc4NjUgMTcuODc2NSAxMi4zOTk5IDE3LjQ5TDcuNDk5OTIgMTIuNTg5OUgxOC42OTk5QzE5LjI1MjIgMTIuNTg5OSAxOS42OTk5IDEyLjE0MjIgMTkuNjk5OSAxMS41ODk5VjExLjU4OTlaXCJcbiAgICAgICAgZmlsbD1cImN1cnJlbnRDb2xvclwiXG4gICAgLz5cbjwvc3ZnPlxuPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuIl19
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, HostBinding, Inject, Input, ViewChildren, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
import { MutationObserverService } from '@ng-web-apis/mutation-observer';
|
|
3
|
+
import { EMPTY_QUERY, TuiResizeService } from '@taiga-ui/cdk';
|
|
4
|
+
import { merge } from 'rxjs';
|
|
5
|
+
import { map } from 'rxjs/operators';
|
|
6
|
+
import { TUI_APP_BAR_PROVIDERS } from './app-bar.providers';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "@taiga-ui/experimental/directives/fade";
|
|
9
|
+
import * as i2 from "@angular/common";
|
|
10
|
+
import * as i3 from "rxjs";
|
|
11
|
+
export class TuiAppBarComponent {
|
|
12
|
+
constructor(resize$, mutation$) {
|
|
13
|
+
this.resize$ = resize$;
|
|
14
|
+
this.mutation$ = mutation$;
|
|
15
|
+
this.side = EMPTY_QUERY;
|
|
16
|
+
this.size = 'm';
|
|
17
|
+
this.width$ = merge(this.resize$, this.mutation$).pipe(map(() => {
|
|
18
|
+
var _a, _b;
|
|
19
|
+
return 2 *
|
|
20
|
+
Math.max((_a = this.side.first) === null || _a === void 0 ? void 0 : _a.nativeElement.clientWidth, (_b = this.side.last) === null || _b === void 0 ? void 0 : _b.nativeElement.clientWidth);
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
TuiAppBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarComponent, deps: [{ token: TuiResizeService }, { token: MutationObserverService }], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
+
TuiAppBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiAppBarComponent, selector: "tui-app-bar", inputs: { size: "size" }, host: { properties: { "attr.data-size": "this.size" } }, providers: TUI_APP_BAR_PROVIDERS, viewQueries: [{ propertyName: "side", predicate: ["side"], descendants: true }], ngImport: i0, template: "<div #side>\n <ng-content select=\"[tuiSlot='left']\"></ng-content>\n</div>\n<div\n tuiFade\n class=\"t-content\"\n [style.--sides.px]=\"width$ | async\"\n>\n <ng-content></ng-content>\n</div>\n<div #side>\n <ng-content select=\"[tuiSlot='right']\"></ng-content>\n</div>\n", styles: ["tui-app-bar{position:relative;display:flex;height:3rem;align-items:center;justify-content:space-between;border:solid transparent;border-width:0 .375rem;box-sizing:border-box;font:var(--tui-font-text-m);font-weight:bold;text-align:center;color:var(--tui-text-01);background:var(--tui-base-01);-webkit-backdrop-filter:blur(2rem);backdrop-filter:blur(2rem)}tui-app-bar>.t-content{left:50%;transform:translate(-50%);position:absolute;display:flex;height:100%;max-width:calc(100% - var(--sides, 0px));flex-direction:column;justify-content:center;flex:1;padding:0 .375rem;box-sizing:border-box;text-align:inherit;white-space:nowrap}tui-app-bar [tuiButton][data-size=m]{font-weight:normal}tui-app-bar [tuiTitle]{text-align:inherit;font:inherit}tui-app-bar [tuiSubtitle]{color:var(--tui-text-02)}tui-app-bar[data-size=m] [tuiTitle]{line-height:1.2em;grid-gap:0;gap:0}tui-app-bar[data-size=l]{border:0;height:4rem}tui-app-bar[data-size=l]>:first-child,tui-app-bar[data-size=l]>:last-child{margin:0 -.75rem}\n"], directives: [{ type: i1.TuiFadeDirective, selector: "[tuiFade]", inputs: ["tuiFadeHeight", "tuiFadeSize", "tuiFadeOffset", "tuiFade"] }], pipes: { "async": i2.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{
|
|
29
|
+
selector: 'tui-app-bar',
|
|
30
|
+
templateUrl: './app-bar.template.html',
|
|
31
|
+
styleUrls: ['./app-bar.style.less'],
|
|
32
|
+
encapsulation: ViewEncapsulation.None,
|
|
33
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
34
|
+
providers: TUI_APP_BAR_PROVIDERS,
|
|
35
|
+
}]
|
|
36
|
+
}], ctorParameters: function () { return [{ type: i3.Observable, decorators: [{
|
|
37
|
+
type: Inject,
|
|
38
|
+
args: [TuiResizeService]
|
|
39
|
+
}] }, { type: i3.Observable, decorators: [{
|
|
40
|
+
type: Inject,
|
|
41
|
+
args: [MutationObserverService]
|
|
42
|
+
}] }]; }, propDecorators: { side: [{
|
|
43
|
+
type: ViewChildren,
|
|
44
|
+
args: ['side']
|
|
45
|
+
}], size: [{
|
|
46
|
+
type: Input
|
|
47
|
+
}, {
|
|
48
|
+
type: HostBinding,
|
|
49
|
+
args: ['attr.data-size']
|
|
50
|
+
}] } });
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9leHBlcmltZW50YWwvY29tcG9uZW50cy9hcHAtYmFyL2FwcC1iYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZXhwZXJpbWVudGFsL2NvbXBvbmVudHMvYXBwLWJhci9hcHAtYmFyLnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILHVCQUF1QixFQUN2QixTQUFTLEVBRVQsV0FBVyxFQUNYLE1BQU0sRUFDTixLQUFLLEVBRUwsWUFBWSxFQUNaLGlCQUFpQixHQUNwQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN2RSxPQUFPLEVBQUMsV0FBVyxFQUFFLGdCQUFnQixFQUFDLE1BQU0sZUFBZSxDQUFDO0FBRTVELE9BQU8sRUFBQyxLQUFLLEVBQWEsTUFBTSxNQUFNLENBQUM7QUFDdkMsT0FBTyxFQUFDLEdBQUcsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBRW5DLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHFCQUFxQixDQUFDOzs7OztBQVUxRCxNQUFNLE9BQU8sa0JBQWtCO0lBbUIzQixZQUMrQyxPQUE0QixFQUNyQixTQUE4QjtRQURyQyxZQUFPLEdBQVAsT0FBTyxDQUFxQjtRQUNyQixjQUFTLEdBQVQsU0FBUyxDQUFxQjtRQW5CbkUsU0FBSSxHQUF1QyxXQUFXLENBQUM7UUFJeEUsU0FBSSxHQUFhLEdBQUcsQ0FBQztRQUVaLFdBQU0sR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsSUFBSSxDQUN0RCxHQUFHLENBQ0MsR0FBRyxFQUFFOztZQUNELE9BQUEsQ0FBQztnQkFDRCxJQUFJLENBQUMsR0FBRyxDQUNKLE1BQUEsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLDBDQUFFLGFBQWEsQ0FBQyxXQUFXLEVBQzFDLE1BQUEsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLDBDQUFFLGFBQWEsQ0FBQyxXQUFXLENBQzVDLENBQUE7U0FBQSxDQUNSLENBQ0osQ0FBQztJQUtDLENBQUM7O2dIQXRCSyxrQkFBa0Isa0JBb0JmLGdCQUFnQixhQUNoQix1QkFBdUI7b0dBckIxQixrQkFBa0IseUhBRmhCLHFCQUFxQiwyR0N6QnBDLG9TQWFBOzRGRGNhLGtCQUFrQjtrQkFSOUIsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsYUFBYTtvQkFDdkIsV0FBVyxFQUFFLHlCQUF5QjtvQkFDdEMsU0FBUyxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ25DLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsU0FBUyxFQUFFLHFCQUFxQjtpQkFDbkM7OzBCQXFCUSxNQUFNOzJCQUFDLGdCQUFnQjs7MEJBQ3ZCLE1BQU07MkJBQUMsdUJBQXVCOzRDQW5CbEIsSUFBSTtzQkFEcEIsWUFBWTt1QkFBQyxNQUFNO2dCQUtwQixJQUFJO3NCQUZILEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgICBDb21wb25lbnQsXG4gICAgRWxlbWVudFJlZixcbiAgICBIb3N0QmluZGluZyxcbiAgICBJbmplY3QsXG4gICAgSW5wdXQsXG4gICAgUXVlcnlMaXN0LFxuICAgIFZpZXdDaGlsZHJlbixcbiAgICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge011dGF0aW9uT2JzZXJ2ZXJTZXJ2aWNlfSBmcm9tICdAbmctd2ViLWFwaXMvbXV0YXRpb24tb2JzZXJ2ZXInO1xuaW1wb3J0IHtFTVBUWV9RVUVSWSwgVHVpUmVzaXplU2VydmljZX0gZnJvbSAnQHRhaWdhLXVpL2Nkayc7XG5pbXBvcnQge1R1aVNpemVMfSBmcm9tICdAdGFpZ2EtdWkvY29yZSc7XG5pbXBvcnQge21lcmdlLCBPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcbmltcG9ydCB7bWFwfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbmltcG9ydCB7VFVJX0FQUF9CQVJfUFJPVklERVJTfSBmcm9tICcuL2FwcC1iYXIucHJvdmlkZXJzJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICd0dWktYXBwLWJhcicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2FwcC1iYXIudGVtcGxhdGUuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vYXBwLWJhci5zdHlsZS5sZXNzJ10sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBwcm92aWRlcnM6IFRVSV9BUFBfQkFSX1BST1ZJREVSUyxcbn0pXG5leHBvcnQgY2xhc3MgVHVpQXBwQmFyQ29tcG9uZW50IHtcbiAgICBAVmlld0NoaWxkcmVuKCdzaWRlJylcbiAgICBwcml2YXRlIHJlYWRvbmx5IHNpZGU6IFF1ZXJ5TGlzdDxFbGVtZW50UmVmPEhUTUxFbGVtZW50Pj4gPSBFTVBUWV9RVUVSWTtcblxuICAgIEBJbnB1dCgpXG4gICAgQEhvc3RCaW5kaW5nKCdhdHRyLmRhdGEtc2l6ZScpXG4gICAgc2l6ZTogVHVpU2l6ZUwgPSAnbSc7XG5cbiAgICByZWFkb25seSB3aWR0aCQgPSBtZXJnZSh0aGlzLnJlc2l6ZSQsIHRoaXMubXV0YXRpb24kKS5waXBlKFxuICAgICAgICBtYXAoXG4gICAgICAgICAgICAoKSA9PlxuICAgICAgICAgICAgICAgIDIgKlxuICAgICAgICAgICAgICAgIE1hdGgubWF4KFxuICAgICAgICAgICAgICAgICAgICB0aGlzLnNpZGUuZmlyc3Q/Lm5hdGl2ZUVsZW1lbnQuY2xpZW50V2lkdGgsXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc2lkZS5sYXN0Py5uYXRpdmVFbGVtZW50LmNsaWVudFdpZHRoLFxuICAgICAgICAgICAgICAgICksXG4gICAgICAgICksXG4gICAgKTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KFR1aVJlc2l6ZVNlcnZpY2UpIHByaXZhdGUgcmVhZG9ubHkgcmVzaXplJDogT2JzZXJ2YWJsZTx1bmtub3duPixcbiAgICAgICAgQEluamVjdChNdXRhdGlvbk9ic2VydmVyU2VydmljZSkgcHJpdmF0ZSByZWFkb25seSBtdXRhdGlvbiQ6IE9ic2VydmFibGU8dW5rbm93bj4sXG4gICAgKSB7fVxufVxuIiwiPGRpdiAjc2lkZT5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbdHVpU2xvdD0nbGVmdCddXCI+PC9uZy1jb250ZW50PlxuPC9kaXY+XG48ZGl2XG4gICAgdHVpRmFkZVxuICAgIGNsYXNzPVwidC1jb250ZW50XCJcbiAgICBbc3R5bGUuLS1zaWRlcy5weF09XCJ3aWR0aCQgfCBhc3luY1wiXG4+XG4gICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9kaXY+XG48ZGl2ICNzaWRlPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIlt0dWlTbG90PSdyaWdodCddXCI+PC9uZy1jb250ZW50PlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Directive, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class TuiAppBarDirective {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.tuiSlot = 'left';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
TuiAppBarDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
9
|
+
TuiAppBarDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiAppBarDirective, selector: "[tuiSlot]", inputs: { tuiSlot: "tuiSlot" }, ngImport: i0 });
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAppBarDirective, decorators: [{
|
|
11
|
+
type: Directive,
|
|
12
|
+
args: [{
|
|
13
|
+
selector: '[tuiSlot]',
|
|
14
|
+
}]
|
|
15
|
+
}], propDecorators: { tuiSlot: [{
|
|
16
|
+
type: Input
|
|
17
|
+
}] } });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWJhci5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9leHBlcmltZW50YWwvY29tcG9uZW50cy9hcHAtYmFyL2FwcC1iYXIuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDOztBQUsvQyxNQUFNLE9BQU8sa0JBQWtCO0lBSC9CO1FBS0ksWUFBTyxHQUE4QixNQUFNLENBQUM7S0FDL0M7O2dIQUhZLGtCQUFrQjtvR0FBbEIsa0JBQWtCOzRGQUFsQixrQkFBa0I7a0JBSDlCLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLFdBQVc7aUJBQ3hCOzhCQUdHLE9BQU87c0JBRE4sS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVNsb3RdJyxcbn0pXG5leHBvcnQgY2xhc3MgVHVpQXBwQmFyRGlyZWN0aXZlIHtcbiAgICBASW5wdXQoKVxuICAgIHR1aVNsb3Q6IHN0cmluZyB8ICdsZWZ0JyB8ICdyaWdodCcgPSAnbGVmdCc7XG59XG4iXX0=
|