tango-app-ui-ai-audio 3.0.1
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 +14 -0
- package/esm2022/lib/components/add-manage-cohort/add-manage-cohort.component.mjs +433 -0
- package/esm2022/lib/components/ai-chat/ai-chat.component.mjs +362 -0
- package/esm2022/lib/components/ai-filters/ai-filters.component.mjs +605 -0
- package/esm2022/lib/components/audio-page/audio-page.component.mjs +552 -0
- package/esm2022/lib/components/manage-cohort/manage-cohort.component.mjs +283 -0
- package/esm2022/lib/components/tango-ai-audio/tango-ai-audio.component.mjs +12 -0
- package/esm2022/lib/services/audio.service.mjs +121 -0
- package/esm2022/lib/services/filter.service.mjs +77 -0
- package/esm2022/lib/tango-ai-audio.module.mjs +85 -0
- package/esm2022/public-api.mjs +11 -0
- package/esm2022/tango-app-ui-ai-audio.mjs +5 -0
- package/fesm2022/tango-app-ui-ai-audio.mjs +2487 -0
- package/fesm2022/tango-app-ui-ai-audio.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/add-manage-cohort/add-manage-cohort.component.d.ts +98 -0
- package/lib/components/ai-chat/ai-chat.component.d.ts +59 -0
- package/lib/components/ai-filters/ai-filters.component.d.ts +103 -0
- package/lib/components/audio-page/audio-page.component.d.ts +111 -0
- package/lib/components/manage-cohort/manage-cohort.component.d.ts +58 -0
- package/lib/components/tango-ai-audio/tango-ai-audio.component.d.ts +5 -0
- package/lib/services/audio.service.d.ts +31 -0
- package/lib/services/filter.service.d.ts +26 -0
- package/lib/tango-ai-audio.module.d.ts +19 -0
- package/package.json +25 -0
- package/public-api.d.ts +6 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Tango AI Audio
|
|
2
|
+
|
|
3
|
+
This library provides audio utilities for AI features. Generated to match existing monorepo project layout.
|
|
4
|
+
|
|
5
|
+
The filters component uses the shared `lib-datepicker` component from the `LayoutModule`. It’s provided by `tango-app-ui-shared`.
|
|
6
|
+
|
|
7
|
+
To use the picker:
|
|
8
|
+
|
|
9
|
+
1. Import `LayoutModule` (already done) and `FormsModule`.
|
|
10
|
+
2. In templates include `<lib-datepicker …>`; extra configuration is managed by the shared library.
|
|
11
|
+
|
|
12
|
+
No further copy of datepicker code is required.
|
|
13
|
+
|
|
14
|
+
Build with `ng build tango-ai-audio` after adding the project to `angular.json` if needed.
|