@wirekyt/angular 0.0.14 → 0.0.16

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/README.md ADDED
@@ -0,0 +1,36 @@
1
+ Accessible, unstyled Angular components for building design systems and web applications. The components provide behavior, accessibility, and state while leaving styling to you.
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ pnpm add @wirekyt/angular
7
+ ```
8
+
9
+ Angular 22 or newer is required.
10
+
11
+ ## Usage
12
+
13
+ Import components from their feature entry point and add them to the component's `imports` array.
14
+
15
+ ```ts
16
+ import { Component } from "@angular/core";
17
+ import {
18
+ CollapsibleContent,
19
+ CollapsibleRoot,
20
+ CollapsibleTrigger,
21
+ } from "@wirekyt/angular/collapsible";
22
+
23
+ @Component({
24
+ selector: "app-example",
25
+ imports: [CollapsibleRoot, CollapsibleTrigger, CollapsibleContent],
26
+ template: `
27
+ <div collapsibleRoot>
28
+ <button collapsibleTrigger>Details</button>
29
+ <div *collapsibleContent>Accessible, headless UI for Angular.</div>
30
+ </div>
31
+ `,
32
+ })
33
+ export class ExampleComponent {}
34
+ ```
35
+
36
+ Each component is available through a dedicated entry point such as `@wirekyt/angular/dialog`, `@wirekyt/angular/select`, or `@wirekyt/angular/tooltip`.
package/dist/README.md ADDED
@@ -0,0 +1,36 @@
1
+ Accessible, unstyled Angular components for building design systems and web applications. The components provide behavior, accessibility, and state while leaving styling to you.
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ pnpm add @wirekyt/angular
7
+ ```
8
+
9
+ Angular 22 or newer is required.
10
+
11
+ ## Usage
12
+
13
+ Import components from their feature entry point and add them to the component's `imports` array.
14
+
15
+ ```ts
16
+ import { Component } from "@angular/core";
17
+ import {
18
+ CollapsibleContent,
19
+ CollapsibleRoot,
20
+ CollapsibleTrigger,
21
+ } from "@wirekyt/angular/collapsible";
22
+
23
+ @Component({
24
+ selector: "app-example",
25
+ imports: [CollapsibleRoot, CollapsibleTrigger, CollapsibleContent],
26
+ template: `
27
+ <div collapsibleRoot>
28
+ <button collapsibleTrigger>Details</button>
29
+ <div *collapsibleContent>Accessible, headless UI for Angular.</div>
30
+ </div>
31
+ `,
32
+ })
33
+ export class ExampleComponent {}
34
+ ```
35
+
36
+ Each component is available through a dedicated entry point such as `@wirekyt/angular/dialog`, `@wirekyt/angular/select`, or `@wirekyt/angular/tooltip`.
@@ -0,0 +1,83 @@
1
+ import * as i0 from '@angular/core';
2
+ import { inject, ErrorHandler, input, Directive } from '@angular/core';
3
+ import { injectEnvironment } from '@wirekyt/angular';
4
+ import { downloadFile } from '@wirekyt/dom/file-utils';
5
+
6
+ function useDownload(options) {
7
+ const environment = injectEnvironment();
8
+ const errorHandler = inject(ErrorHandler);
9
+ const download = () => {
10
+ const root = environment.getRootNode();
11
+ if (!root)
12
+ return;
13
+ const win = resolveWindow(root);
14
+ if (!win)
15
+ return;
16
+ const { data, fileName, mimeType } = options.context();
17
+ const saveToDisk = (value) => {
18
+ downloadFile({
19
+ file: value,
20
+ name: fileName,
21
+ type: mimeType,
22
+ win: win,
23
+ });
24
+ };
25
+ if (typeof data !== "function") {
26
+ saveToDisk(data);
27
+ return;
28
+ }
29
+ const result = data();
30
+ if (result instanceof Promise) {
31
+ result.then(saveToDisk).catch((error) => {
32
+ errorHandler.handleError(error);
33
+ });
34
+ return;
35
+ }
36
+ saveToDisk(result);
37
+ };
38
+ return { download };
39
+ }
40
+ function resolveWindow(root) {
41
+ if ("defaultView" in root)
42
+ return root.defaultView;
43
+ return root.ownerDocument.defaultView;
44
+ }
45
+
46
+ class DownloadTrigger {
47
+ fileName = input.required(/* @ts-ignore */
48
+ ...(ngDevMode ? [{ debugName: "fileName" }] : /* istanbul ignore next */ []));
49
+ mimeType = input.required(/* @ts-ignore */
50
+ ...(ngDevMode ? [{ debugName: "mimeType" }] : /* istanbul ignore next */ []));
51
+ data = input.required(/* @ts-ignore */
52
+ ...(ngDevMode ? [{ debugName: "data" }] : /* istanbul ignore next */ []));
53
+ download = useDownload({
54
+ context: () => ({
55
+ fileName: this.fileName(),
56
+ mimeType: this.mimeType(),
57
+ data: this.data(),
58
+ }),
59
+ }).download;
60
+ onClick(event) {
61
+ if (event.defaultPrevented)
62
+ return;
63
+ this.download();
64
+ }
65
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.3", ngImport: i0, type: DownloadTrigger, deps: [], target: i0.ɵɵFactoryTarget.Directive });
66
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.1.3", type: DownloadTrigger, isStandalone: true, selector: "[downloadTrigger]", inputs: { fileName: { classPropertyName: "fileName", publicName: "fileName", isSignal: true, isRequired: true, transformFunction: null }, mimeType: { classPropertyName: "mimeType", publicName: "mimeType", isSignal: true, isRequired: true, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null } }, host: { attributes: { "type": "button" }, listeners: { "click": "onClick($event)" } }, exportAs: ["downloadTrigger"], ngImport: i0 });
67
+ }
68
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.3", ngImport: i0, type: DownloadTrigger, decorators: [{
69
+ type: Directive,
70
+ args: [{
71
+ selector: "[downloadTrigger]",
72
+ standalone: true,
73
+ exportAs: "downloadTrigger",
74
+ host: { type: "button", "(click)": "onClick($event)" },
75
+ }]
76
+ }], propDecorators: { fileName: [{ type: i0.Input, args: [{ isSignal: true, alias: "fileName", required: true }] }], mimeType: [{ type: i0.Input, args: [{ isSignal: true, alias: "mimeType", required: true }] }], data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: true }] }] } });
77
+
78
+ /**
79
+ * Generated bundle index. Do not edit.
80
+ */
81
+
82
+ export { DownloadTrigger, useDownload };
83
+ //# sourceMappingURL=wirekyt-angular-download-trigger.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wirekyt-angular-download-trigger.mjs","sources":["../../src/components/download-trigger/use.ts","../../src/components/download-trigger/download-trigger.ts","../../src/components/download-trigger/wirekyt-angular-download-trigger.ts"],"sourcesContent":["import { ErrorHandler, inject } from \"@angular/core\";\nimport { injectEnvironment } from \"@wirekyt/angular\";\nimport { downloadFile } from \"@wirekyt/dom/file-utils\";\n\nimport type { DownloadableData, UseDownloadOptions, UseDownloadReturn } from \"./types\";\n\nexport function useDownload(options: UseDownloadOptions): UseDownloadReturn {\n const environment = injectEnvironment();\n const errorHandler = inject(ErrorHandler);\n\n const download = (): void => {\n const root = environment.getRootNode();\n if (!root) return;\n\n const win = resolveWindow(root);\n if (!win) return;\n\n const { data, fileName, mimeType } = options.context();\n const saveToDisk = (value: DownloadableData): void => {\n downloadFile({\n file: value,\n name: fileName,\n type: mimeType,\n win: win as Window & typeof globalThis,\n });\n };\n\n if (typeof data !== \"function\") {\n saveToDisk(data);\n return;\n }\n\n const result = data();\n if (result instanceof Promise) {\n result.then(saveToDisk).catch((error: unknown) => {\n errorHandler.handleError(error);\n });\n return;\n }\n\n saveToDisk(result);\n };\n\n return { download };\n}\n\nfunction resolveWindow(root: Document | ShadowRoot): Window | null {\n if (\"defaultView\" in root) return root.defaultView;\n return root.ownerDocument.defaultView;\n}\n","import type { MaybePromise } from \"@wirekyt/angular\";\nimport type { FileMimeType } from \"@wirekyt/dom/file-utils\";\n\nimport { Directive, input } from \"@angular/core\";\n\nimport { useDownload } from \"./use\";\n\ntype DownloadData = string | Blob | File | (() => MaybePromise<string | Blob | File>);\n\n@Directive({\n selector: \"[downloadTrigger]\",\n standalone: true,\n exportAs: \"downloadTrigger\",\n host: { type: \"button\", \"(click)\": \"onClick($event)\" },\n})\nexport class DownloadTrigger {\n readonly fileName = input.required<string>();\n readonly mimeType = input.required<FileMimeType>();\n readonly data = input.required<DownloadData>();\n\n private readonly download = useDownload({\n context: () => ({\n fileName: this.fileName(),\n mimeType: this.mimeType(),\n data: this.data(),\n }),\n }).download;\n\n onClick(event: MouseEvent): void {\n if (event.defaultPrevented) return;\n this.download();\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;AAMM,SAAU,WAAW,CAAC,OAA2B,EAAA;AACrD,IAAA,MAAM,WAAW,GAAG,iBAAiB,EAAE;AACvC,IAAA,MAAM,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;IAEzC,MAAM,QAAQ,GAAG,MAAW;AAC1B,QAAA,MAAM,IAAI,GAAG,WAAW,CAAC,WAAW,EAAE;AACtC,QAAA,IAAI,CAAC,IAAI;YAAE;AAEX,QAAA,MAAM,GAAG,GAAG,aAAa,CAAC,IAAI,CAAC;AAC/B,QAAA,IAAI,CAAC,GAAG;YAAE;AAEV,QAAA,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,OAAO,EAAE;AACtD,QAAA,MAAM,UAAU,GAAG,CAAC,KAAuB,KAAU;AACnD,YAAA,YAAY,CAAC;AACX,gBAAA,IAAI,EAAE,KAAK;AACX,gBAAA,IAAI,EAAE,QAAQ;AACd,gBAAA,IAAI,EAAE,QAAQ;AACd,gBAAA,GAAG,EAAE,GAAiC;AACvC,aAAA,CAAC;AACJ,QAAA,CAAC;AAED,QAAA,IAAI,OAAO,IAAI,KAAK,UAAU,EAAE;YAC9B,UAAU,CAAC,IAAI,CAAC;YAChB;QACF;AAEA,QAAA,MAAM,MAAM,GAAG,IAAI,EAAE;AACrB,QAAA,IAAI,MAAM,YAAY,OAAO,EAAE;YAC7B,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,KAAc,KAAI;AAC/C,gBAAA,YAAY,CAAC,WAAW,CAAC,KAAK,CAAC;AACjC,YAAA,CAAC,CAAC;YACF;QACF;QAEA,UAAU,CAAC,MAAM,CAAC;AACpB,IAAA,CAAC;IAED,OAAO,EAAE,QAAQ,EAAE;AACrB;AAEA,SAAS,aAAa,CAAC,IAA2B,EAAA;IAChD,IAAI,aAAa,IAAI,IAAI;QAAE,OAAO,IAAI,CAAC,WAAW;AAClD,IAAA,OAAO,IAAI,CAAC,aAAa,CAAC,WAAW;AACvC;;MClCa,eAAe,CAAA;IACjB,QAAQ,GAAG,KAAK,CAAC,QAAQ;iFAAU;IACnC,QAAQ,GAAG,KAAK,CAAC,QAAQ;iFAAgB;IACzC,IAAI,GAAG,KAAK,CAAC,QAAQ;6EAAgB;IAE7B,QAAQ,GAAG,WAAW,CAAC;AACtC,QAAA,OAAO,EAAE,OAAO;AACd,YAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE;AACzB,YAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE;AACzB,YAAA,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE;SAClB,CAAC;KACH,CAAC,CAAC,QAAQ;AAEX,IAAA,OAAO,CAAC,KAAiB,EAAA;QACvB,IAAI,KAAK,CAAC,gBAAgB;YAAE;QAC5B,IAAI,CAAC,QAAQ,EAAE;IACjB;uGAhBW,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAf,eAAe,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,MAAA,EAAA,QAAA,EAAA,EAAA,SAAA,EAAA,EAAA,OAAA,EAAA,iBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA,iBAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAf,eAAe,EAAA,UAAA,EAAA,CAAA;kBAN3B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,mBAAmB;AAC7B,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,iBAAiB;oBAC3B,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,iBAAiB,EAAE;AACvD,iBAAA;;;ACdD;;AAEG;;;;"}
package/dist/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@wirekyt/angular",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "Angular adapter for Wirekyt",
5
+ "readme": "README.md",
5
6
  "files": [
6
- "dist"
7
+ "dist",
8
+ "README.md"
7
9
  ],
8
10
  "type": "module",
9
11
  "sideEffects": false,
@@ -70,6 +72,10 @@
70
72
  "types": "./types/wirekyt-angular-dialog.d.ts",
71
73
  "default": "./fesm2022/wirekyt-angular-dialog.mjs"
72
74
  },
75
+ "./download-trigger": {
76
+ "types": "./types/wirekyt-angular-download-trigger.d.ts",
77
+ "default": "./fesm2022/wirekyt-angular-download-trigger.mjs"
78
+ },
73
79
  "./field": {
74
80
  "types": "./types/wirekyt-angular-field.d.ts",
75
81
  "default": "./fesm2022/wirekyt-angular-field.mjs"
@@ -9,7 +9,7 @@ import { PresenceBase } from '@wirekyt/angular/presence';
9
9
  import { ControlValueAccessor } from '@angular/forms';
10
10
  import { ColorStringFormat } from '@wirekyt/dom/color-utils';
11
11
 
12
- declare const colorPickerAnatomy: _wirekyt_dom_anatomy.Anatomy<"root" | "content" | "trigger" | "label" | "control" | "positioner" | "area" | "valueText" | "formatSelect" | "areaThumb" | "channelInput" | "channelSliderTrack" | "channelSliderThumb" | "areaBackground" | "channelSlider" | "channelSliderLabel" | "channelSliderValueText" | "transparencyGrid" | "swatchGroup" | "swatchTrigger" | "swatchIndicator" | "swatch" | "eyeDropperTrigger" | "formatTrigger">;
12
+ declare const colorPickerAnatomy: _wirekyt_dom_anatomy.Anatomy<"root" | "area" | "label" | "control" | "trigger" | "content" | "valueText" | "positioner" | "formatSelect" | "areaThumb" | "channelInput" | "channelSliderTrack" | "channelSliderThumb" | "areaBackground" | "channelSlider" | "channelSliderLabel" | "channelSliderValueText" | "transparencyGrid" | "swatchGroup" | "swatchTrigger" | "swatchIndicator" | "swatch" | "eyeDropperTrigger" | "formatTrigger">;
13
13
 
14
14
  declare class ColorPickerArea {
15
15
  readonly xChannel: InputSignal<colorPicker.ColorChannel | undefined>;
@@ -13,7 +13,7 @@ import { PresenceBase } from '@wirekyt/angular/presence';
13
13
  import { ControlValueAccessor } from '@angular/forms';
14
14
  import * as _wirekyt_angular_combobox from '@wirekyt/angular/combobox';
15
15
 
16
- declare const comboboxAnatomy: _wirekyt_dom_anatomy.AnatomyInstance<"root" | "content" | "trigger" | "item" | "itemGroup" | "label" | "clearTrigger" | "input" | "control" | "positioner" | "itemText" | "list" | "itemIndicator" | "itemGroupLabel" | "empty">;
16
+ declare const comboboxAnatomy: _wirekyt_dom_anatomy.AnatomyInstance<"root" | "item" | "itemGroup" | "input" | "label" | "control" | "trigger" | "clearTrigger" | "list" | "content" | "positioner" | "itemIndicator" | "itemText" | "itemGroupLabel" | "empty">;
17
17
 
18
18
  type ComboboxSchema<T extends CollectionItem = CollectionItem> = Machine<T> extends Machine$1<infer S> ? S : never;
19
19
 
@@ -9,7 +9,7 @@ import * as _wirekyt_angular_presence from '@wirekyt/angular/presence';
9
9
  import { PresenceBase } from '@wirekyt/angular/presence';
10
10
  import { ControlValueAccessor } from '@angular/forms';
11
11
 
12
- declare const datePickerAnatomy: _wirekyt_dom_anatomy.AnatomyInstance<"root" | "content" | "trigger" | "label" | "clearTrigger" | "input" | "control" | "positioner" | "table" | "view" | "nextTrigger" | "prevTrigger" | "tableHeader" | "tableBody" | "tableRow" | "viewTrigger" | "monthSelect" | "yearSelect" | "presetTrigger" | "rangeText" | "tableCell" | "tableCellTrigger" | "tableHead" | "viewControl" | "valueText">;
12
+ declare const datePickerAnatomy: _wirekyt_dom_anatomy.AnatomyInstance<"root" | "prevTrigger" | "nextTrigger" | "input" | "label" | "table" | "view" | "control" | "trigger" | "clearTrigger" | "content" | "positioner" | "monthSelect" | "presetTrigger" | "rangeText" | "tableBody" | "tableCell" | "tableCellTrigger" | "tableHead" | "tableHeader" | "tableRow" | "viewControl" | "viewTrigger" | "yearSelect" | "valueText">;
13
13
 
14
14
  type OptionalId<T extends {
15
15
  id?: string | undefined;
@@ -0,0 +1,35 @@
1
+ import * as _angular_core from '@angular/core';
2
+ import { MaybePromise } from '@wirekyt/angular';
3
+ import { FileMimeType } from '@wirekyt/dom/file-utils';
4
+
5
+ type DownloadData = string | Blob | File | (() => MaybePromise<string | Blob | File>);
6
+ declare class DownloadTrigger {
7
+ readonly fileName: _angular_core.InputSignal<string>;
8
+ readonly mimeType: _angular_core.InputSignal<FileMimeType>;
9
+ readonly data: _angular_core.InputSignal<DownloadData>;
10
+ private readonly download;
11
+ onClick(event: MouseEvent): void;
12
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DownloadTrigger, never>;
13
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DownloadTrigger, "[downloadTrigger]", ["downloadTrigger"], { "fileName": { "alias": "fileName"; "required": true; "isSignal": true; }; "mimeType": { "alias": "mimeType"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
14
+ }
15
+
16
+ type DownloadableData = string | Blob | File;
17
+ interface UseDownloadProps {
18
+ fileName: string;
19
+ mimeType: FileMimeType;
20
+ data: DownloadableData | (() => MaybePromise<DownloadableData>);
21
+ }
22
+ interface UseDownloadOptions {
23
+ context: () => UseDownloadProps;
24
+ }
25
+ interface UseDownloadReturn {
26
+ download: () => void;
27
+ }
28
+ interface DownloadTriggerProps extends UseDownloadProps {
29
+ }
30
+
31
+ declare function useDownload(options: UseDownloadOptions): UseDownloadReturn;
32
+
33
+ export { DownloadTrigger, useDownload };
34
+ export type { DownloadTriggerProps, DownloadableData, UseDownloadOptions, UseDownloadProps, UseDownloadReturn };
35
+ //# sourceMappingURL=wirekyt-angular-download-trigger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wirekyt-angular-download-trigger.d.ts","sources":["../../src/components/download-trigger/download-trigger.ts","../../src/components/download-trigger/types.ts","../../src/components/download-trigger/use.ts"],"mappings":";;;;AAOA,KAAK,YAAY,YAAY,IAAI,GAAG,IAAI,UAAU,YAAY,UAAU,IAAI,GAAG,IAAI;AAEnF,cAMa,eAAe;uBACT,aAAA,CAAA,WAAA;uBACA,aAAA,CAAA,WAAA,CAAA,YAAA;mBACJ,aAAA,CAAA,WAAA,CAAA,YAAA;AAEb;AAQA,mBAAe,UAAU;oDAbd,eAAe;sDAAf,eAAe;AAiB3B;;AC7BK,KAAM,gBAAgB,YAAY,IAAI,GAAG,IAAI;UAElC,gBAAgB;;cAErB,YAAY;UAChB,gBAAgB,UAAU,YAAY,CAAC,gBAAgB;AAC9D;UAEgB,kBAAkB;mBAClB,gBAAgB;AAChC;UAEgB,iBAAiB;;AAEjC;AAEK,UAAW,oBAAqB,SAAQ,gBAAgB;AAAG;;ACbjE,iBAAgB,WAAW,UAAU,kBAAkB,GAAG,iBAAiB;;;;","names":[]}
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@wirekyt/angular",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "Angular adapter for Wirekyt",
5
+ "readme": "README.md",
5
6
  "files": [
6
- "dist"
7
+ "dist",
8
+ "README.md"
7
9
  ],
8
10
  "type": "module",
9
11
  "sideEffects": false,
@@ -70,6 +72,10 @@
70
72
  "types": "./dist/types/wirekyt-angular-dialog.d.ts",
71
73
  "default": "./dist/fesm2022/wirekyt-angular-dialog.mjs"
72
74
  },
75
+ "./download-trigger": {
76
+ "types": "./dist/types/wirekyt-angular-download-trigger.d.ts",
77
+ "default": "./dist/fesm2022/wirekyt-angular-download-trigger.mjs"
78
+ },
73
79
  "./field": {
74
80
  "types": "./dist/types/wirekyt-angular-field.d.ts",
75
81
  "default": "./dist/fesm2022/wirekyt-angular-field.mjs"
@@ -91,7 +97,7 @@
91
97
  "dependencies": {
92
98
  "@internationalized/date": "^3.12.3",
93
99
  "@internationalized/number": "^3.6.7",
94
- "@wirekyt/dom": "0.0.14",
100
+ "@wirekyt/dom": "0.0.16",
95
101
  "tslib": "^2.8.1"
96
102
  },
97
103
  "peerDependencies": {