@taiga-ui/experimental 5.0.0-canary.690ebfb → 5.0.0-canary.797b92a
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/components/index.d.ts +1 -0
- package/components/popout/index.d.ts +3 -0
- package/components/popout/popout.component.d.ts +21 -0
- package/components/popout/popout.directive.d.ts +8 -0
- package/components/popout/popout.service.d.ts +28 -0
- package/fesm2022/taiga-ui-experimental-components-popout.mjs +165 -0
- package/fesm2022/taiga-ui-experimental-components-popout.mjs.map +1 -0
- package/fesm2022/taiga-ui-experimental-components.mjs +1 -0
- package/fesm2022/taiga-ui-experimental-components.mjs.map +1 -1
- package/package.json +5 -1
package/components/index.d.ts
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type TuiPortalContext } from '@taiga-ui/cdk/portals';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type TuiPopoutOptions = {
|
|
4
|
+
readonly title: string;
|
|
5
|
+
readonly features: {
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
disallowReturnToOpener?: boolean;
|
|
9
|
+
preferInitialWindowPlacement?: boolean;
|
|
10
|
+
};
|
|
11
|
+
readonly pip: true;
|
|
12
|
+
} | {
|
|
13
|
+
readonly title: string;
|
|
14
|
+
readonly features: Record<any, any>;
|
|
15
|
+
readonly pip: false;
|
|
16
|
+
};
|
|
17
|
+
export declare class TuiPopoutComponent {
|
|
18
|
+
protected readonly context: TuiPortalContext<TuiPopoutOptions>;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPopoutComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiPopoutComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type TuiPopoutOptions } from './popout.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@taiga-ui/cdk/portals";
|
|
4
|
+
export declare class TuiPopout {
|
|
5
|
+
readonly tuiPopoutOptions: import("@angular/core").InputSignal<Partial<TuiPopoutOptions>>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPopout, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiPopout, "ng-template[tuiPopout]", never, { "tuiPopoutOptions": { "alias": "tuiPopoutOptions"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.TuiPortalDirective; inputs: { "options": "tuiPopoutOptions"; "open": "tuiPopout"; }; outputs: { "openChange": "tuiPopoutChange"; }; }]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { type OnDestroy, type OnInit } from '@angular/core';
|
|
2
|
+
import { TuiPortal } from '@taiga-ui/cdk/portals';
|
|
3
|
+
import { type TuiPopoutOptions } from './popout.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
declare class PopoutComponent implements OnInit, OnDestroy {
|
|
6
|
+
private readonly pip;
|
|
7
|
+
private readonly context;
|
|
8
|
+
private readonly doc;
|
|
9
|
+
private readonly options;
|
|
10
|
+
private popout;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
private process;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopoutComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoutComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
17
|
+
export declare class TuiPopoutService extends TuiPortal<TuiPopoutOptions> {
|
|
18
|
+
protected readonly component: typeof PopoutComponent;
|
|
19
|
+
protected readonly options: {
|
|
20
|
+
title: string;
|
|
21
|
+
features: {};
|
|
22
|
+
pip: boolean;
|
|
23
|
+
};
|
|
24
|
+
constructor();
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPopoutService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TuiPopoutService>;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject, provideExperimentalZonelessChangeDetection, Injectable, input, Directive } from '@angular/core';
|
|
3
|
+
import { TuiRoot } from '@taiga-ui/core/components/root';
|
|
4
|
+
import { injectContext, PolymorpheusOutlet, provideContext } from '@taiga-ui/polymorpheus';
|
|
5
|
+
import * as i1 from '@taiga-ui/cdk/portals';
|
|
6
|
+
import { TuiPortal, tuiAsPortal, TuiPortalDirective } from '@taiga-ui/cdk/portals';
|
|
7
|
+
import { DOCUMENT } from '@angular/common';
|
|
8
|
+
import { createApplication } from '@angular/platform-browser';
|
|
9
|
+
import { WA_DOCUMENT_PIP } from '@ng-web-apis/experimental';
|
|
10
|
+
import { TuiPopupService } from '@taiga-ui/core/portals/popup';
|
|
11
|
+
import { TUI_OPTIONS, provideTaiga } from '@taiga-ui/core/utils/miscellaneous';
|
|
12
|
+
|
|
13
|
+
class TuiPopoutComponent {
|
|
14
|
+
constructor() {
|
|
15
|
+
this.context = injectContext();
|
|
16
|
+
}
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
18
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: TuiPopoutComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
19
|
+
<tui-root>
|
|
20
|
+
<ng-container *polymorpheusOutlet="context.content as text; context: context">
|
|
21
|
+
{{ text }}
|
|
22
|
+
</ng-container>
|
|
23
|
+
</tui-root>
|
|
24
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: PolymorpheusOutlet, selector: "[polymorpheusOutlet]", inputs: ["polymorpheusOutlet", "polymorpheusOutletContext"] }, { kind: "component", type: TuiRoot, selector: "tui-root" }], changeDetection: i0.ChangeDetectionStrategy.Default }); }
|
|
25
|
+
}
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopoutComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{
|
|
29
|
+
imports: [PolymorpheusOutlet, TuiRoot],
|
|
30
|
+
template: `
|
|
31
|
+
<tui-root>
|
|
32
|
+
<ng-container *polymorpheusOutlet="context.content as text; context: context">
|
|
33
|
+
{{ text }}
|
|
34
|
+
</ng-container>
|
|
35
|
+
</tui-root>
|
|
36
|
+
`,
|
|
37
|
+
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
|
|
38
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
39
|
+
}]
|
|
40
|
+
}] });
|
|
41
|
+
|
|
42
|
+
class PopoutComponent {
|
|
43
|
+
constructor() {
|
|
44
|
+
this.pip = inject(WA_DOCUMENT_PIP);
|
|
45
|
+
this.context = injectContext();
|
|
46
|
+
this.doc = inject(DOCUMENT);
|
|
47
|
+
this.options = inject(TUI_OPTIONS);
|
|
48
|
+
this.popout = null;
|
|
49
|
+
}
|
|
50
|
+
ngOnInit() {
|
|
51
|
+
if (this.context.pip && this.pip) {
|
|
52
|
+
this.pip
|
|
53
|
+
.requestWindow(this.context.features)
|
|
54
|
+
.then((popout) => this.process(popout))
|
|
55
|
+
.catch((error) => {
|
|
56
|
+
this.context.$implicit.complete();
|
|
57
|
+
throw error;
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
this.process(this.doc.defaultView?.open('', '_blank', Object.entries(this.context.features)
|
|
62
|
+
.map(([key, value]) => `${key}=${value}`)
|
|
63
|
+
.concat(this.context.pip ? 'popup' : [])
|
|
64
|
+
.join(',')));
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
ngOnDestroy() {
|
|
68
|
+
this.popout?.close();
|
|
69
|
+
}
|
|
70
|
+
process(popout) {
|
|
71
|
+
if (!popout) {
|
|
72
|
+
this.context.$implicit.complete();
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
this.popout = popout;
|
|
76
|
+
this.popout.document.write(`
|
|
77
|
+
<!doctype html>
|
|
78
|
+
<html lang="${this.doc.documentElement.getAttribute('lang') || 'en'}">
|
|
79
|
+
<head>
|
|
80
|
+
<meta charset="utf-8" />
|
|
81
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
82
|
+
</head>
|
|
83
|
+
<body></body>
|
|
84
|
+
</html>
|
|
85
|
+
`);
|
|
86
|
+
this.popout.document.title = this.context.title;
|
|
87
|
+
this.popout.document.close();
|
|
88
|
+
this.doc.head
|
|
89
|
+
.querySelectorAll('base, style, link[rel="stylesheet"]')
|
|
90
|
+
.forEach((node) => this.popout?.document.head.append(node.cloneNode(true)));
|
|
91
|
+
const providers = [
|
|
92
|
+
provideTaiga(this.options),
|
|
93
|
+
provideContext(this.context),
|
|
94
|
+
{ provide: DOCUMENT, useValue: this.popout.document },
|
|
95
|
+
provideExperimentalZonelessChangeDetection(),
|
|
96
|
+
];
|
|
97
|
+
createApplication({ providers })
|
|
98
|
+
.then((app) => {
|
|
99
|
+
const ref = app.bootstrap(TuiPopoutComponent, this.popout?.document.body);
|
|
100
|
+
const cleanup = () => this.popout?.close();
|
|
101
|
+
this.doc.defaultView?.addEventListener('pagehide', cleanup);
|
|
102
|
+
this.popout?.addEventListener('pagehide', () => {
|
|
103
|
+
this.context.$implicit.complete();
|
|
104
|
+
ref.destroy();
|
|
105
|
+
app.destroy();
|
|
106
|
+
this.doc.defaultView?.removeEventListener('pagehide', cleanup);
|
|
107
|
+
});
|
|
108
|
+
})
|
|
109
|
+
.catch((error) => {
|
|
110
|
+
this.context.$implicit.complete();
|
|
111
|
+
throw error;
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: PopoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
115
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: PopoutComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
116
|
+
}
|
|
117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: PopoutComponent, decorators: [{
|
|
118
|
+
type: Component,
|
|
119
|
+
args: [{
|
|
120
|
+
template: '',
|
|
121
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
122
|
+
}]
|
|
123
|
+
}] });
|
|
124
|
+
class TuiPopoutService extends TuiPortal {
|
|
125
|
+
constructor() {
|
|
126
|
+
super(inject(TuiPopupService));
|
|
127
|
+
this.component = PopoutComponent;
|
|
128
|
+
this.options = { title: '', features: {}, pip: false };
|
|
129
|
+
}
|
|
130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopoutService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
131
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopoutService, providedIn: 'root' }); }
|
|
132
|
+
}
|
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopoutService, decorators: [{
|
|
134
|
+
type: Injectable,
|
|
135
|
+
args: [{ providedIn: 'root' }]
|
|
136
|
+
}], ctorParameters: () => [] });
|
|
137
|
+
|
|
138
|
+
class TuiPopout {
|
|
139
|
+
constructor() {
|
|
140
|
+
this.tuiPopoutOptions = input({});
|
|
141
|
+
}
|
|
142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopout, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
143
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.18", type: TuiPopout, isStandalone: true, selector: "ng-template[tuiPopout]", inputs: { tuiPopoutOptions: { classPropertyName: "tuiPopoutOptions", publicName: "tuiPopoutOptions", isSignal: true, isRequired: false, transformFunction: null } }, providers: [tuiAsPortal(TuiPopoutService)], hostDirectives: [{ directive: i1.TuiPortalDirective, inputs: ["options", "tuiPopoutOptions", "open", "tuiPopout"], outputs: ["openChange", "tuiPopoutChange"] }], ngImport: i0 }); }
|
|
144
|
+
}
|
|
145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TuiPopout, decorators: [{
|
|
146
|
+
type: Directive,
|
|
147
|
+
args: [{
|
|
148
|
+
selector: 'ng-template[tuiPopout]',
|
|
149
|
+
providers: [tuiAsPortal(TuiPopoutService)],
|
|
150
|
+
hostDirectives: [
|
|
151
|
+
{
|
|
152
|
+
directive: TuiPortalDirective,
|
|
153
|
+
inputs: ['options: tuiPopoutOptions', 'open: tuiPopout'],
|
|
154
|
+
outputs: ['openChange: tuiPopoutChange'],
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
}]
|
|
158
|
+
}] });
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Generated bundle index. Do not edit.
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
export { TuiPopout, TuiPopoutComponent, TuiPopoutService };
|
|
165
|
+
//# sourceMappingURL=taiga-ui-experimental-components-popout.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taiga-ui-experimental-components-popout.mjs","sources":["../../../projects/experimental/components/popout/popout.component.ts","../../../projects/experimental/components/popout/popout.service.ts","../../../projects/experimental/components/popout/popout.directive.ts","../../../projects/experimental/components/popout/taiga-ui-experimental-components-popout.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {type TuiPortalContext} from '@taiga-ui/cdk/portals';\nimport {TuiRoot} from '@taiga-ui/core/components/root';\nimport {injectContext, PolymorpheusOutlet} from '@taiga-ui/polymorpheus';\n\nexport type TuiPopoutOptions =\n | {\n readonly title: string;\n readonly features: {\n width?: number;\n height?: number;\n disallowReturnToOpener?: boolean;\n preferInitialWindowPlacement?: boolean;\n };\n readonly pip: true;\n }\n | {\n readonly title: string;\n readonly features: Record<any, any>;\n readonly pip: false;\n };\n\n@Component({\n imports: [PolymorpheusOutlet, TuiRoot],\n template: `\n <tui-root>\n <ng-container *polymorpheusOutlet=\"context.content as text; context: context\">\n {{ text }}\n </ng-container>\n </tui-root>\n `,\n // eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection\n changeDetection: ChangeDetectionStrategy.Default,\n})\nexport class TuiPopoutComponent {\n protected readonly context = injectContext<TuiPortalContext<TuiPopoutOptions>>();\n}\n","import {DOCUMENT} from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n inject,\n Injectable,\n type OnDestroy,\n type OnInit,\n provideExperimentalZonelessChangeDetection,\n} from '@angular/core';\nimport {createApplication} from '@angular/platform-browser';\nimport {WA_DOCUMENT_PIP} from '@ng-web-apis/experimental';\nimport {TuiPortal, type TuiPortalContext} from '@taiga-ui/cdk/portals';\nimport {TuiPopupService} from '@taiga-ui/core/portals/popup';\nimport {provideTaiga, TUI_OPTIONS} from '@taiga-ui/core/utils/miscellaneous';\nimport {injectContext, provideContext} from '@taiga-ui/polymorpheus';\n\nimport {TuiPopoutComponent, type TuiPopoutOptions} from './popout.component';\n\n@Component({\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nclass PopoutComponent implements OnInit, OnDestroy {\n private readonly pip = inject(WA_DOCUMENT_PIP);\n private readonly context = injectContext<TuiPortalContext<TuiPopoutOptions>>();\n private readonly doc = inject(DOCUMENT);\n private readonly options = inject(TUI_OPTIONS);\n private popout: Window | null = null;\n\n public ngOnInit(): void {\n if (this.context.pip && this.pip) {\n this.pip\n .requestWindow(this.context.features)\n .then((popout) => this.process(popout))\n .catch((error: unknown) => {\n this.context.$implicit.complete();\n throw error;\n });\n } else {\n this.process(\n this.doc.defaultView?.open(\n '',\n '_blank',\n Object.entries(this.context.features)\n .map(([key, value]) => `${key}=${value}`)\n .concat(this.context.pip ? 'popup' : [])\n .join(','),\n ),\n );\n }\n }\n\n public ngOnDestroy(): void {\n this.popout?.close();\n }\n\n private process(popout?: Window | null): void {\n if (!popout) {\n this.context.$implicit.complete();\n\n return;\n }\n\n this.popout = popout;\n this.popout.document.write(`\n <!doctype html>\n <html lang=\"${this.doc.documentElement.getAttribute('lang') || 'en'}\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\" />\n </head>\n <body></body>\n </html>\n `);\n this.popout.document.title = this.context.title;\n this.popout.document.close();\n this.doc.head\n .querySelectorAll('base, style, link[rel=\"stylesheet\"]')\n .forEach((node) => this.popout?.document.head.append(node.cloneNode(true)));\n\n const providers = [\n provideTaiga(this.options),\n provideContext(this.context),\n {provide: DOCUMENT, useValue: this.popout.document},\n provideExperimentalZonelessChangeDetection(),\n ];\n\n createApplication({providers})\n .then((app) => {\n const ref = app.bootstrap(TuiPopoutComponent, this.popout?.document.body);\n const cleanup = (): void => this.popout?.close();\n\n this.doc.defaultView?.addEventListener('pagehide', cleanup);\n this.popout?.addEventListener('pagehide', () => {\n this.context.$implicit.complete();\n ref.destroy();\n app.destroy();\n this.doc.defaultView?.removeEventListener('pagehide', cleanup);\n });\n })\n .catch((error: unknown) => {\n this.context.$implicit.complete();\n throw error;\n });\n }\n}\n\n@Injectable({providedIn: 'root'})\nexport class TuiPopoutService extends TuiPortal<TuiPopoutOptions> {\n protected readonly component = PopoutComponent;\n protected readonly options = {title: '', features: {}, pip: false};\n\n constructor() {\n super(inject(TuiPopupService));\n }\n}\n","import {Directive, input} from '@angular/core';\nimport {tuiAsPortal, TuiPortalDirective} from '@taiga-ui/cdk/portals';\n\nimport {type TuiPopoutOptions} from './popout.component';\nimport {TuiPopoutService} from './popout.service';\n\n@Directive({\n selector: 'ng-template[tuiPopout]',\n providers: [tuiAsPortal(TuiPopoutService)],\n hostDirectives: [\n {\n directive: TuiPortalDirective,\n inputs: ['options: tuiPopoutOptions', 'open: tuiPopout'],\n outputs: ['openChange: tuiPopoutChange'],\n },\n ],\n})\nexport class TuiPopout {\n public readonly tuiPopoutOptions = input<Partial<TuiPopoutOptions>>({});\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;;;MAkCa,kBAAkB,CAAA;AAZ/B,IAAA,WAAA,GAAA;QAauB,IAAO,CAAA,OAAA,GAAG,aAAa,EAAsC;AACnF;+GAFY,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,kBAAkB,EAVjB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,cAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA;;;;;;KAMT,EAPS,QAAA,EAAA,IAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,kBAAkB,8HAAE,OAAO,EAAA,QAAA,EAAA,UAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,OAAA,EAAA,CAAA,CAAA;;4FAW5B,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAZ9B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,OAAO,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC;AACtC,oBAAA,QAAQ,EAAE;;;;;;AAMT,IAAA,CAAA;;oBAED,eAAe,EAAE,uBAAuB,CAAC,OAAO;AACnD,iBAAA;;;ACdD,MAIM,eAAe,CAAA;AAJrB,IAAA,WAAA,GAAA;AAKqB,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,eAAe,CAAC;QAC7B,IAAO,CAAA,OAAA,GAAG,aAAa,EAAsC;AAC7D,QAAA,IAAA,CAAA,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC;AACtB,QAAA,IAAA,CAAA,OAAO,GAAG,MAAM,CAAC,WAAW,CAAC;QACtC,IAAM,CAAA,MAAA,GAAkB,IAAI;AA8EvC;IA5EU,QAAQ,GAAA;QACX,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,EAAE;AAC9B,YAAA,IAAI,CAAC;AACA,iBAAA,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ;AACnC,iBAAA,IAAI,CAAC,CAAC,MAAM,KAAK,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;AACrC,iBAAA,KAAK,CAAC,CAAC,KAAc,KAAI;AACtB,gBAAA,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,EAAE;AACjC,gBAAA,MAAM,KAAK;AACf,aAAC,CAAC;;aACH;YACH,IAAI,CAAC,OAAO,CACR,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,IAAI,CACtB,EAAE,EACF,QAAQ,EACR,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ;AAC/B,iBAAA,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,KAAK,CAAG,EAAA,GAAG,CAAI,CAAA,EAAA,KAAK,EAAE;AACvC,iBAAA,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,GAAG,OAAO,GAAG,EAAE;AACtC,iBAAA,IAAI,CAAC,GAAG,CAAC,CACjB,CACJ;;;IAIF,WAAW,GAAA;AACd,QAAA,IAAI,CAAC,MAAM,EAAE,KAAK,EAAE;;AAGhB,IAAA,OAAO,CAAC,MAAsB,EAAA;QAClC,IAAI,CAAC,MAAM,EAAE;AACT,YAAA,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,EAAE;YAEjC;;AAGJ,QAAA,IAAI,CAAC,MAAM,GAAG,MAAM;AACpB,QAAA,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC;;wBAEX,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,IAAI,CAAA;;;;;;;AAOpE,QAAA,CAAA,CAAC;AACF,QAAA,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK;AAC/C,QAAA,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE;QAC5B,IAAI,CAAC,GAAG,CAAC;aACJ,gBAAgB,CAAC,qCAAqC;aACtD,OAAO,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;AAE/E,QAAA,MAAM,SAAS,GAAG;AACd,YAAA,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC;AAC1B,YAAA,cAAc,CAAC,IAAI,CAAC,OAAO,CAAC;YAC5B,EAAC,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAC;AACnD,YAAA,0CAA0C,EAAE;SAC/C;AAED,QAAA,iBAAiB,CAAC,EAAC,SAAS,EAAC;AACxB,aAAA,IAAI,CAAC,CAAC,GAAG,KAAI;AACV,YAAA,MAAM,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,kBAAkB,EAAE,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC;YACzE,MAAM,OAAO,GAAG,MAAY,IAAI,CAAC,MAAM,EAAE,KAAK,EAAE;YAEhD,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,gBAAgB,CAAC,UAAU,EAAE,OAAO,CAAC;YAC3D,IAAI,CAAC,MAAM,EAAE,gBAAgB,CAAC,UAAU,EAAE,MAAK;AAC3C,gBAAA,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,EAAE;gBACjC,GAAG,CAAC,OAAO,EAAE;gBACb,GAAG,CAAC,OAAO,EAAE;gBACb,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,mBAAmB,CAAC,UAAU,EAAE,OAAO,CAAC;AAClE,aAAC,CAAC;AACN,SAAC;AACA,aAAA,KAAK,CAAC,CAAC,KAAc,KAAI;AACtB,YAAA,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,EAAE;AACjC,YAAA,MAAM,KAAK;AACf,SAAC,CAAC;;+GAjFR,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAf,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,eAAe,wEAHP,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;;4FAGV,eAAe,EAAA,UAAA,EAAA,CAAA;kBAJpB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,EAAE;oBACZ,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAClD,iBAAA;;AAuFK,MAAO,gBAAiB,SAAQ,SAA2B,CAAA;AAI7D,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;QAJf,IAAS,CAAA,SAAA,GAAG,eAAe;AAC3B,QAAA,IAAA,CAAA,OAAO,GAAG,EAAC,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAC;;+GAFzD,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAhB,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,cADJ,MAAM,EAAA,CAAA,CAAA;;4FAClB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAD5B,UAAU;mBAAC,EAAC,UAAU,EAAE,MAAM,EAAC;;;MC3FnB,SAAS,CAAA;AAXtB,IAAA,WAAA,GAAA;AAYoB,QAAA,IAAA,CAAA,gBAAgB,GAAG,KAAK,CAA4B,EAAE,CAAC;AAC1E;+GAFY,SAAS,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAT,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,SAAS,0OATP,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC,EAAA,cAAA,EAAA,CAAA,EAAA,SAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,MAAA,EAAA,CAAA,SAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,WAAA,CAAA,EAAA,OAAA,EAAA,CAAA,YAAA,EAAA,iBAAA,CAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FASjC,SAAS,EAAA,UAAA,EAAA,CAAA;kBAXrB,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,wBAAwB;AAClC,oBAAA,SAAS,EAAE,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC;AAC1C,oBAAA,cAAc,EAAE;AACZ,wBAAA;AACI,4BAAA,SAAS,EAAE,kBAAkB;AAC7B,4BAAA,MAAM,EAAE,CAAC,2BAA2B,EAAE,iBAAiB,CAAC;4BACxD,OAAO,EAAE,CAAC,6BAA6B,CAAC;AAC3C,yBAAA;AACJ,qBAAA;AACJ,iBAAA;;;AChBD;;AAEG;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-experimental-components.mjs","sources":["../../../projects/experimental/components/taiga-ui-experimental-components.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"taiga-ui-experimental-components.mjs","sources":["../../../projects/experimental/components/taiga-ui-experimental-components.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;AAAA;;AAEG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/experimental",
|
|
3
|
-
"version": "5.0.0-canary.
|
|
3
|
+
"version": "5.0.0-canary.797b92a",
|
|
4
4
|
"description": "A package with Taiga UI experimental components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -38,6 +38,10 @@
|
|
|
38
38
|
"types": "./components/index.d.ts",
|
|
39
39
|
"default": "./fesm2022/taiga-ui-experimental-components.mjs"
|
|
40
40
|
},
|
|
41
|
+
"./components/popout": {
|
|
42
|
+
"types": "./components/popout/index.d.ts",
|
|
43
|
+
"default": "./fesm2022/taiga-ui-experimental-components-popout.mjs"
|
|
44
|
+
},
|
|
41
45
|
"./components/search-results": {
|
|
42
46
|
"types": "./components/search-results/index.d.ts",
|
|
43
47
|
"default": "./fesm2022/taiga-ui-experimental-components-search-results.mjs"
|