@testgorilla/tgo-ui 5.1.2-beta.0 → 5.2.0
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/ai-caveat/ai-caveat.component.d.ts +36 -0
- package/components/ai-caveat/ai-caveat.component.module.d.ts +10 -0
- package/components/ai-caveat/index.d.ts +5 -0
- package/components/ai-caveat/public-api.d.ts +3 -0
- package/components/ai-feedback/ai-feedback.component.d.ts +49 -12
- package/components/ai-feedback/ai-feedback.model.d.ts +19 -1
- package/components/ai-feedback/ai-feedback.module.d.ts +10 -4
- package/components/icon/icon.model.d.ts +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs +79 -0
- package/fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs.map +1 -0
- package/fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs +240 -30
- package/fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-core.mjs +6 -1
- package/fesm2022/testgorilla-tgo-ui-components-core.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-icon.mjs +2 -2
- package/fesm2022/testgorilla-tgo-ui-components-icon.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui.mjs +1 -0
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +63 -59
- package/public-api.d.ts +1 -0
|
@@ -129,6 +129,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
129
129
|
* - @testgorilla/tgo-ui/components/table
|
|
130
130
|
* - @testgorilla/tgo-ui/components/datepicker
|
|
131
131
|
* - @testgorilla/tgo-ui/components/ai-audio-circle
|
|
132
|
+
* - @testgorilla/tgo-ui/components/ai-caveat
|
|
132
133
|
* - @testgorilla/tgo-ui/components/ai-feedback
|
|
133
134
|
* - @testgorilla/tgo-ui/components/checklist
|
|
134
135
|
* - @testgorilla/tgo-ui/components/file-upload
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"testgorilla-tgo-ui.mjs","sources":["../../../projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.ts","../../../projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.html","../../../projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.module.ts","../../../projects/tgo-canopy-ui/public-api.ts","../../../projects/tgo-canopy-ui/testgorilla-tgo-ui.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { PageEvent } from '@angular/material/paginator';\n\n@Component({\n selector: 'ui-paginator',\n templateUrl: './deprecated-paginator.component.html',\n styleUrls: ['./deprecated-paginator.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: false\n})\nexport class DeprecatedPaginatorComponent implements OnInit {\n // TODO: Some properties and methods are ignored on purpose because of a current issue with compodoc and angular 13\n // https://github.com/StoryFnbookjs/StoryFnbook/issues/16865\n // https://github.com/StoryFnbookjs/StoryFnbook/issues/17004\n\n /**\n * Paginator size options\n *\n * @type {number[]}\n * @memberof PaginatorComponent\n */\n readonly pageSizeOptions = [10, 25, 50];\n\n /**\n * Data length\n *\n * @type {number}\n * @memberof PaginatorComponent\n */\n @Input() length = 0;\n\n /**\n * Default page size\n *\n * @type {number}\n * @memberof PaginatorComponent\n */\n @Input() defaultPageSize = 25;\n\n /**\n * @ignore\n */\n @Output() paginatorChangedEvent: EventEmitter<PageEvent> = new EventEmitter<PageEvent>();\n\n /**\n * @ignore\n */\n ngOnInit(): void {}\n\n constructor() {}\n\n paginatorChanged(paginator: PageEvent) {\n this.paginatorChangedEvent.emit(paginator);\n }\n}\n","<mat-paginator [length]=\"length\"\n [pageSize]=\"defaultPageSize\"\n [pageSizeOptions]=\"pageSizeOptions\"\n (page)=\"paginatorChanged($event)\">\n</mat-paginator>","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { DeprecatedPaginatorComponent } from './deprecated-paginator.component';\n\n@NgModule({\n declarations: [DeprecatedPaginatorComponent],\n imports: [CommonModule, MatPaginatorModule],\n exports: [DeprecatedPaginatorComponent],\n providers: [],\n})\nexport class DeprecatedPaginatorComponentModule {}\n","/* eslint-disable */\n/**\n * @testgorilla/tgo-ui Public API\n *\n * IMPORTANT: For optimal tree-shaking, import directly from entry points:\n *\n * @example\n * import { ButtonComponent } from '@testgorilla/tgo-ui/components/button';\n * import { IconComponent } from '@testgorilla/tgo-ui/components/icon';\n * import { DialogService } from '@testgorilla/tgo-ui/components/dialog';\n *\n * Available entry points:\n * - @testgorilla/tgo-ui/components/core (shared utilities, pipes, directives)\n * - @testgorilla/tgo-ui/components/icon\n * - @testgorilla/tgo-ui/components/badge\n * - @testgorilla/tgo-ui/components/button\n * - @testgorilla/tgo-ui/components/card\n * - @testgorilla/tgo-ui/components/checkbox\n * - @testgorilla/tgo-ui/components/dropdown\n * - @testgorilla/tgo-ui/components/field\n * - @testgorilla/tgo-ui/components/inline-field\n * - @testgorilla/tgo-ui/components/toggle\n * - @testgorilla/tgo-ui/components/radio-button\n * - @testgorilla/tgo-ui/components/slider\n * - @testgorilla/tgo-ui/components/rating\n * - @testgorilla/tgo-ui/components/scale\n * - @testgorilla/tgo-ui/components/autocomplete\n * - @testgorilla/tgo-ui/components/divider\n * - @testgorilla/tgo-ui/components/skeleton\n * - @testgorilla/tgo-ui/components/elevation-shadow\n * - @testgorilla/tgo-ui/components/tooltip\n * - @testgorilla/tgo-ui/components/spinner\n * - @testgorilla/tgo-ui/components/progress-bar\n * - @testgorilla/tgo-ui/components/radial-progress\n * - @testgorilla/tgo-ui/components/tag\n * - @testgorilla/tgo-ui/components/avatar\n * - @testgorilla/tgo-ui/components/logo\n * - @testgorilla/tgo-ui/components/empty-state\n * - @testgorilla/tgo-ui/components/filter-button\n * - @testgorilla/tgo-ui/components/segmented-button\n * - @testgorilla/tgo-ui/components/segmented-bar\n * - @testgorilla/tgo-ui/components/paginator\n * - @testgorilla/tgo-ui/components/validation-error\n * - @testgorilla/tgo-ui/components/accordion\n * - @testgorilla/tgo-ui/components/alert-banner\n * - @testgorilla/tgo-ui/components/breadcrumb\n * - @testgorilla/tgo-ui/components/navbar\n * - @testgorilla/tgo-ui/components/page-header\n * - @testgorilla/tgo-ui/components/tabs\n * - @testgorilla/tgo-ui/components/stepper\n * - @testgorilla/tgo-ui/components/dialog\n * - @testgorilla/tgo-ui/components/snackbar\n * - @testgorilla/tgo-ui/components/side-panel\n * - @testgorilla/tgo-ui/components/side-sheet\n * - @testgorilla/tgo-ui/components/table\n * - @testgorilla/tgo-ui/components/datepicker\n * - @testgorilla/tgo-ui/components/ai-audio-circle\n * - @testgorilla/tgo-ui/components/ai-feedback\n * - @testgorilla/tgo-ui/components/checklist\n * - @testgorilla/tgo-ui/components/file-upload\n * - @testgorilla/tgo-ui/components/multi-input\n * - @testgorilla/tgo-ui/components/overflow-menu\n * - @testgorilla/tgo-ui/components/password-criteria\n * - @testgorilla/tgo-ui/components/password-strength\n * - @testgorilla/tgo-ui/components/phone-input\n * - @testgorilla/tgo-ui/components/prompt\n * - @testgorilla/tgo-ui/components/scale-table\n * - @testgorilla/tgo-ui/components/icon-label\n * - @testgorilla/tgo-ui/components/media-card\n * - @testgorilla/tgo-ui/components/media-dialog\n * - @testgorilla/tgo-ui/components/selectable-card\n * - @testgorilla/tgo-ui/components/donut-chart\n * - @testgorilla/tgo-ui/components/gaussian-chart\n * - @testgorilla/tgo-ui/components/spider-chart\n * - @testgorilla/tgo-ui/components/universal-skills\n */\n\n// Core utilities (re-exported for backward compatibility)\nexport * from '@testgorilla/tgo-ui/components/core';\n\n// Legacy: Deprecated Paginator (not an entry point)\nexport * from './components/deprecated-paginator/deprecated-paginator.component';\nexport * from './components/deprecated-paginator/deprecated-paginator.component.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;MAUa,4BAA4B,CAAA;AAkCvC;;AAEG;AACH,IAAA,QAAQ;AAER,IAAA,WAAA,GAAA;;;;AAlCA;;;;;AAKG;QACM,IAAe,CAAA,eAAA,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC;AAEvC;;;;;AAKG;QACM,IAAM,CAAA,MAAA,GAAG,CAAC;AAEnB;;;;;AAKG;QACM,IAAe,CAAA,eAAA,GAAG,EAAE;AAE7B;;AAEG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAA4B,IAAI,YAAY,EAAa;;AASxF,IAAA,gBAAgB,CAAC,SAAoB,EAAA;AACnC,QAAA,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,SAAS,CAAC;;+GA1CjC,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA5B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,4BAA4B,wMCVzC,6MAIgB,EAAA,MAAA,EAAA,CAAA,2yFAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,WAAA,EAAA,QAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,sBAAA,EAAA,cAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,MAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;;4FDMH,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBAPxC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,cAAc,EAGP,eAAA,EAAA,uBAAuB,CAAC,MAAM,cACnC,KAAK,EAAA,QAAA,EAAA,6MAAA,EAAA,MAAA,EAAA,CAAA,2yFAAA,CAAA,EAAA;wDAqBV,MAAM,EAAA,CAAA;sBAAd;gBAQQ,eAAe,EAAA,CAAA;sBAAvB;gBAKS,qBAAqB,EAAA,CAAA;sBAA9B;;;ME/BU,kCAAkC,CAAA;+GAAlC,kCAAkC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAlC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kCAAkC,iBAL9B,4BAA4B,CAAA,EAAA,OAAA,EAAA,CACjC,YAAY,EAAE,kBAAkB,aAChC,4BAA4B,CAAA,EAAA,CAAA,CAAA;gHAG3B,kCAAkC,EAAA,OAAA,EAAA,CAJnC,YAAY,EAAE,kBAAkB,CAAA,EAAA,CAAA,CAAA;;4FAI/B,kCAAkC,EAAA,UAAA,EAAA,CAAA;kBAN9C,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,4BAA4B,CAAC;AAC5C,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,kBAAkB,CAAC;oBAC3C,OAAO,EAAE,CAAC,4BAA4B,CAAC;AACvC,oBAAA,SAAS,EAAE,EAAE;AACd,iBAAA;;;ACVD;AACA
|
|
1
|
+
{"version":3,"file":"testgorilla-tgo-ui.mjs","sources":["../../../projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.ts","../../../projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.html","../../../projects/tgo-canopy-ui/components/deprecated-paginator/deprecated-paginator.component.module.ts","../../../projects/tgo-canopy-ui/public-api.ts","../../../projects/tgo-canopy-ui/testgorilla-tgo-ui.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { PageEvent } from '@angular/material/paginator';\n\n@Component({\n selector: 'ui-paginator',\n templateUrl: './deprecated-paginator.component.html',\n styleUrls: ['./deprecated-paginator.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: false\n})\nexport class DeprecatedPaginatorComponent implements OnInit {\n // TODO: Some properties and methods are ignored on purpose because of a current issue with compodoc and angular 13\n // https://github.com/StoryFnbookjs/StoryFnbook/issues/16865\n // https://github.com/StoryFnbookjs/StoryFnbook/issues/17004\n\n /**\n * Paginator size options\n *\n * @type {number[]}\n * @memberof PaginatorComponent\n */\n readonly pageSizeOptions = [10, 25, 50];\n\n /**\n * Data length\n *\n * @type {number}\n * @memberof PaginatorComponent\n */\n @Input() length = 0;\n\n /**\n * Default page size\n *\n * @type {number}\n * @memberof PaginatorComponent\n */\n @Input() defaultPageSize = 25;\n\n /**\n * @ignore\n */\n @Output() paginatorChangedEvent: EventEmitter<PageEvent> = new EventEmitter<PageEvent>();\n\n /**\n * @ignore\n */\n ngOnInit(): void {}\n\n constructor() {}\n\n paginatorChanged(paginator: PageEvent) {\n this.paginatorChangedEvent.emit(paginator);\n }\n}\n","<mat-paginator [length]=\"length\"\n [pageSize]=\"defaultPageSize\"\n [pageSizeOptions]=\"pageSizeOptions\"\n (page)=\"paginatorChanged($event)\">\n</mat-paginator>","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { DeprecatedPaginatorComponent } from './deprecated-paginator.component';\n\n@NgModule({\n declarations: [DeprecatedPaginatorComponent],\n imports: [CommonModule, MatPaginatorModule],\n exports: [DeprecatedPaginatorComponent],\n providers: [],\n})\nexport class DeprecatedPaginatorComponentModule {}\n","/* eslint-disable */\n/**\n * @testgorilla/tgo-ui Public API\n *\n * IMPORTANT: For optimal tree-shaking, import directly from entry points:\n *\n * @example\n * import { ButtonComponent } from '@testgorilla/tgo-ui/components/button';\n * import { IconComponent } from '@testgorilla/tgo-ui/components/icon';\n * import { DialogService } from '@testgorilla/tgo-ui/components/dialog';\n *\n * Available entry points:\n * - @testgorilla/tgo-ui/components/core (shared utilities, pipes, directives)\n * - @testgorilla/tgo-ui/components/icon\n * - @testgorilla/tgo-ui/components/badge\n * - @testgorilla/tgo-ui/components/button\n * - @testgorilla/tgo-ui/components/card\n * - @testgorilla/tgo-ui/components/checkbox\n * - @testgorilla/tgo-ui/components/dropdown\n * - @testgorilla/tgo-ui/components/field\n * - @testgorilla/tgo-ui/components/inline-field\n * - @testgorilla/tgo-ui/components/toggle\n * - @testgorilla/tgo-ui/components/radio-button\n * - @testgorilla/tgo-ui/components/slider\n * - @testgorilla/tgo-ui/components/rating\n * - @testgorilla/tgo-ui/components/scale\n * - @testgorilla/tgo-ui/components/autocomplete\n * - @testgorilla/tgo-ui/components/divider\n * - @testgorilla/tgo-ui/components/skeleton\n * - @testgorilla/tgo-ui/components/elevation-shadow\n * - @testgorilla/tgo-ui/components/tooltip\n * - @testgorilla/tgo-ui/components/spinner\n * - @testgorilla/tgo-ui/components/progress-bar\n * - @testgorilla/tgo-ui/components/radial-progress\n * - @testgorilla/tgo-ui/components/tag\n * - @testgorilla/tgo-ui/components/avatar\n * - @testgorilla/tgo-ui/components/logo\n * - @testgorilla/tgo-ui/components/empty-state\n * - @testgorilla/tgo-ui/components/filter-button\n * - @testgorilla/tgo-ui/components/segmented-button\n * - @testgorilla/tgo-ui/components/segmented-bar\n * - @testgorilla/tgo-ui/components/paginator\n * - @testgorilla/tgo-ui/components/validation-error\n * - @testgorilla/tgo-ui/components/accordion\n * - @testgorilla/tgo-ui/components/alert-banner\n * - @testgorilla/tgo-ui/components/breadcrumb\n * - @testgorilla/tgo-ui/components/navbar\n * - @testgorilla/tgo-ui/components/page-header\n * - @testgorilla/tgo-ui/components/tabs\n * - @testgorilla/tgo-ui/components/stepper\n * - @testgorilla/tgo-ui/components/dialog\n * - @testgorilla/tgo-ui/components/snackbar\n * - @testgorilla/tgo-ui/components/side-panel\n * - @testgorilla/tgo-ui/components/side-sheet\n * - @testgorilla/tgo-ui/components/table\n * - @testgorilla/tgo-ui/components/datepicker\n * - @testgorilla/tgo-ui/components/ai-audio-circle\n * - @testgorilla/tgo-ui/components/ai-caveat\n * - @testgorilla/tgo-ui/components/ai-feedback\n * - @testgorilla/tgo-ui/components/checklist\n * - @testgorilla/tgo-ui/components/file-upload\n * - @testgorilla/tgo-ui/components/multi-input\n * - @testgorilla/tgo-ui/components/overflow-menu\n * - @testgorilla/tgo-ui/components/password-criteria\n * - @testgorilla/tgo-ui/components/password-strength\n * - @testgorilla/tgo-ui/components/phone-input\n * - @testgorilla/tgo-ui/components/prompt\n * - @testgorilla/tgo-ui/components/scale-table\n * - @testgorilla/tgo-ui/components/icon-label\n * - @testgorilla/tgo-ui/components/media-card\n * - @testgorilla/tgo-ui/components/media-dialog\n * - @testgorilla/tgo-ui/components/selectable-card\n * - @testgorilla/tgo-ui/components/donut-chart\n * - @testgorilla/tgo-ui/components/gaussian-chart\n * - @testgorilla/tgo-ui/components/spider-chart\n * - @testgorilla/tgo-ui/components/universal-skills\n */\n\n// Core utilities (re-exported for backward compatibility)\nexport * from '@testgorilla/tgo-ui/components/core';\n\n// Legacy: Deprecated Paginator (not an entry point)\nexport * from './components/deprecated-paginator/deprecated-paginator.component';\nexport * from './components/deprecated-paginator/deprecated-paginator.component.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;MAUa,4BAA4B,CAAA;AAkCvC;;AAEG;AACH,IAAA,QAAQ;AAER,IAAA,WAAA,GAAA;;;;AAlCA;;;;;AAKG;QACM,IAAe,CAAA,eAAA,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC;AAEvC;;;;;AAKG;QACM,IAAM,CAAA,MAAA,GAAG,CAAC;AAEnB;;;;;AAKG;QACM,IAAe,CAAA,eAAA,GAAG,EAAE;AAE7B;;AAEG;AACO,QAAA,IAAA,CAAA,qBAAqB,GAA4B,IAAI,YAAY,EAAa;;AASxF,IAAA,gBAAgB,CAAC,SAAoB,EAAA;AACnC,QAAA,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,SAAS,CAAC;;+GA1CjC,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA5B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,4BAA4B,wMCVzC,6MAIgB,EAAA,MAAA,EAAA,CAAA,2yFAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,WAAA,EAAA,QAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,sBAAA,EAAA,cAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,MAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;;4FDMH,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBAPxC,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,cAAc,EAGP,eAAA,EAAA,uBAAuB,CAAC,MAAM,cACnC,KAAK,EAAA,QAAA,EAAA,6MAAA,EAAA,MAAA,EAAA,CAAA,2yFAAA,CAAA,EAAA;wDAqBV,MAAM,EAAA,CAAA;sBAAd;gBAQQ,eAAe,EAAA,CAAA;sBAAvB;gBAKS,qBAAqB,EAAA,CAAA;sBAA9B;;;ME/BU,kCAAkC,CAAA;+GAAlC,kCAAkC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAlC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kCAAkC,iBAL9B,4BAA4B,CAAA,EAAA,OAAA,EAAA,CACjC,YAAY,EAAE,kBAAkB,aAChC,4BAA4B,CAAA,EAAA,CAAA,CAAA;gHAG3B,kCAAkC,EAAA,OAAA,EAAA,CAJnC,YAAY,EAAE,kBAAkB,CAAA,EAAA,CAAA,CAAA;;4FAI/B,kCAAkC,EAAA,UAAA,EAAA,CAAA;kBAN9C,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,4BAA4B,CAAC;AAC5C,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,kBAAkB,CAAC;oBAC3C,OAAO,EAAE,CAAC,4BAA4B,CAAC;AACvC,oBAAA,SAAS,EAAE,EAAE;AACd,iBAAA;;;ACVD;AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2EG;AAEH;;AC9EA;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testgorilla/tgo-ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"license": "proprietary-license",
|
|
5
5
|
"lint-staged": {
|
|
6
6
|
"{projects,components}/**/*.ts": [
|
|
@@ -63,22 +63,26 @@
|
|
|
63
63
|
"types": "./components/accordion/index.d.ts",
|
|
64
64
|
"default": "./fesm2022/testgorilla-tgo-ui-components-accordion.mjs"
|
|
65
65
|
},
|
|
66
|
-
"./components/ai-
|
|
67
|
-
"types": "./components/ai-
|
|
68
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-ai-
|
|
69
|
-
},
|
|
70
|
-
"./components/alert-banner": {
|
|
71
|
-
"types": "./components/alert-banner/index.d.ts",
|
|
72
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
|
|
66
|
+
"./components/ai-caveat": {
|
|
67
|
+
"types": "./components/ai-caveat/index.d.ts",
|
|
68
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs"
|
|
73
69
|
},
|
|
74
70
|
"./components/ai-feedback": {
|
|
75
71
|
"types": "./components/ai-feedback/index.d.ts",
|
|
76
72
|
"default": "./fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs"
|
|
77
73
|
},
|
|
74
|
+
"./components/ai-audio-circle": {
|
|
75
|
+
"types": "./components/ai-audio-circle/index.d.ts",
|
|
76
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-ai-audio-circle.mjs"
|
|
77
|
+
},
|
|
78
78
|
"./components/autocomplete": {
|
|
79
79
|
"types": "./components/autocomplete/index.d.ts",
|
|
80
80
|
"default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs"
|
|
81
81
|
},
|
|
82
|
+
"./components/alert-banner": {
|
|
83
|
+
"types": "./components/alert-banner/index.d.ts",
|
|
84
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
|
|
85
|
+
},
|
|
82
86
|
"./components/avatar": {
|
|
83
87
|
"types": "./components/avatar/index.d.ts",
|
|
84
88
|
"default": "./fesm2022/testgorilla-tgo-ui-components-avatar.mjs"
|
|
@@ -91,10 +95,6 @@
|
|
|
91
95
|
"types": "./components/breadcrumb/index.d.ts",
|
|
92
96
|
"default": "./fesm2022/testgorilla-tgo-ui-components-breadcrumb.mjs"
|
|
93
97
|
},
|
|
94
|
-
"./components/button": {
|
|
95
|
-
"types": "./components/button/index.d.ts",
|
|
96
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-button.mjs"
|
|
97
|
-
},
|
|
98
98
|
"./components/card": {
|
|
99
99
|
"types": "./components/card/index.d.ts",
|
|
100
100
|
"default": "./fesm2022/testgorilla-tgo-ui-components-card.mjs"
|
|
@@ -103,6 +103,14 @@
|
|
|
103
103
|
"types": "./components/checkbox/index.d.ts",
|
|
104
104
|
"default": "./fesm2022/testgorilla-tgo-ui-components-checkbox.mjs"
|
|
105
105
|
},
|
|
106
|
+
"./components/button": {
|
|
107
|
+
"types": "./components/button/index.d.ts",
|
|
108
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-button.mjs"
|
|
109
|
+
},
|
|
110
|
+
"./components/core": {
|
|
111
|
+
"types": "./components/core/index.d.ts",
|
|
112
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-core.mjs"
|
|
113
|
+
},
|
|
106
114
|
"./components/checklist": {
|
|
107
115
|
"types": "./components/checklist/index.d.ts",
|
|
108
116
|
"default": "./fesm2022/testgorilla-tgo-ui-components-checklist.mjs"
|
|
@@ -111,21 +119,17 @@
|
|
|
111
119
|
"types": "./components/datepicker/index.d.ts",
|
|
112
120
|
"default": "./fesm2022/testgorilla-tgo-ui-components-datepicker.mjs"
|
|
113
121
|
},
|
|
114
|
-
"./components/core": {
|
|
115
|
-
"types": "./components/core/index.d.ts",
|
|
116
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-core.mjs"
|
|
117
|
-
},
|
|
118
|
-
"./components/dialog": {
|
|
119
|
-
"types": "./components/dialog/index.d.ts",
|
|
120
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-dialog.mjs"
|
|
121
|
-
},
|
|
122
122
|
"./components/divider": {
|
|
123
123
|
"types": "./components/divider/index.d.ts",
|
|
124
124
|
"default": "./fesm2022/testgorilla-tgo-ui-components-divider.mjs"
|
|
125
125
|
},
|
|
126
|
-
"./components/
|
|
127
|
-
"types": "./components/
|
|
128
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-
|
|
126
|
+
"./components/donut-chart": {
|
|
127
|
+
"types": "./components/donut-chart/index.d.ts",
|
|
128
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-donut-chart.mjs"
|
|
129
|
+
},
|
|
130
|
+
"./components/dialog": {
|
|
131
|
+
"types": "./components/dialog/index.d.ts",
|
|
132
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-dialog.mjs"
|
|
129
133
|
},
|
|
130
134
|
"./components/elevation-shadow": {
|
|
131
135
|
"types": "./components/elevation-shadow/index.d.ts",
|
|
@@ -135,10 +139,6 @@
|
|
|
135
139
|
"types": "./components/empty-state/index.d.ts",
|
|
136
140
|
"default": "./fesm2022/testgorilla-tgo-ui-components-empty-state.mjs"
|
|
137
141
|
},
|
|
138
|
-
"./components/donut-chart": {
|
|
139
|
-
"types": "./components/donut-chart/index.d.ts",
|
|
140
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-donut-chart.mjs"
|
|
141
|
-
},
|
|
142
142
|
"./components/field": {
|
|
143
143
|
"types": "./components/field/index.d.ts",
|
|
144
144
|
"default": "./fesm2022/testgorilla-tgo-ui-components-field.mjs"
|
|
@@ -147,14 +147,18 @@
|
|
|
147
147
|
"types": "./components/file-upload/index.d.ts",
|
|
148
148
|
"default": "./fesm2022/testgorilla-tgo-ui-components-file-upload.mjs"
|
|
149
149
|
},
|
|
150
|
-
"./components/gaussian-chart": {
|
|
151
|
-
"types": "./components/gaussian-chart/index.d.ts",
|
|
152
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-gaussian-chart.mjs"
|
|
153
|
-
},
|
|
154
150
|
"./components/filter-button": {
|
|
155
151
|
"types": "./components/filter-button/index.d.ts",
|
|
156
152
|
"default": "./fesm2022/testgorilla-tgo-ui-components-filter-button.mjs"
|
|
157
153
|
},
|
|
154
|
+
"./components/dropdown": {
|
|
155
|
+
"types": "./components/dropdown/index.d.ts",
|
|
156
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-dropdown.mjs"
|
|
157
|
+
},
|
|
158
|
+
"./components/gaussian-chart": {
|
|
159
|
+
"types": "./components/gaussian-chart/index.d.ts",
|
|
160
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-gaussian-chart.mjs"
|
|
161
|
+
},
|
|
158
162
|
"./components/icon": {
|
|
159
163
|
"types": "./components/icon/index.d.ts",
|
|
160
164
|
"default": "./fesm2022/testgorilla-tgo-ui-components-icon.mjs"
|
|
@@ -175,10 +179,6 @@
|
|
|
175
179
|
"types": "./components/media-card/index.d.ts",
|
|
176
180
|
"default": "./fesm2022/testgorilla-tgo-ui-components-media-card.mjs"
|
|
177
181
|
},
|
|
178
|
-
"./components/multi-input": {
|
|
179
|
-
"types": "./components/multi-input/index.d.ts",
|
|
180
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-multi-input.mjs"
|
|
181
|
-
},
|
|
182
182
|
"./components/media-dialog": {
|
|
183
183
|
"types": "./components/media-dialog/index.d.ts",
|
|
184
184
|
"default": "./fesm2022/testgorilla-tgo-ui-components-media-dialog.mjs"
|
|
@@ -187,6 +187,10 @@
|
|
|
187
187
|
"types": "./components/navbar/index.d.ts",
|
|
188
188
|
"default": "./fesm2022/testgorilla-tgo-ui-components-navbar.mjs"
|
|
189
189
|
},
|
|
190
|
+
"./components/multi-input": {
|
|
191
|
+
"types": "./components/multi-input/index.d.ts",
|
|
192
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-multi-input.mjs"
|
|
193
|
+
},
|
|
190
194
|
"./components/page-header": {
|
|
191
195
|
"types": "./components/page-header/index.d.ts",
|
|
192
196
|
"default": "./fesm2022/testgorilla-tgo-ui-components-page-header.mjs"
|
|
@@ -207,18 +211,22 @@
|
|
|
207
211
|
"types": "./components/password-strength/index.d.ts",
|
|
208
212
|
"default": "./fesm2022/testgorilla-tgo-ui-components-password-strength.mjs"
|
|
209
213
|
},
|
|
210
|
-
"./components/progress-bar": {
|
|
211
|
-
"types": "./components/progress-bar/index.d.ts",
|
|
212
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-progress-bar.mjs"
|
|
213
|
-
},
|
|
214
214
|
"./components/phone-input": {
|
|
215
215
|
"types": "./components/phone-input/index.d.ts",
|
|
216
216
|
"default": "./fesm2022/testgorilla-tgo-ui-components-phone-input.mjs"
|
|
217
217
|
},
|
|
218
|
+
"./components/progress-bar": {
|
|
219
|
+
"types": "./components/progress-bar/index.d.ts",
|
|
220
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-progress-bar.mjs"
|
|
221
|
+
},
|
|
218
222
|
"./components/prompt": {
|
|
219
223
|
"types": "./components/prompt/index.d.ts",
|
|
220
224
|
"default": "./fesm2022/testgorilla-tgo-ui-components-prompt.mjs"
|
|
221
225
|
},
|
|
226
|
+
"./components/radial-progress": {
|
|
227
|
+
"types": "./components/radial-progress/index.d.ts",
|
|
228
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-radial-progress.mjs"
|
|
229
|
+
},
|
|
222
230
|
"./components/radio-button": {
|
|
223
231
|
"types": "./components/radio-button/index.d.ts",
|
|
224
232
|
"default": "./fesm2022/testgorilla-tgo-ui-components-radio-button.mjs"
|
|
@@ -227,42 +235,38 @@
|
|
|
227
235
|
"types": "./components/rating/index.d.ts",
|
|
228
236
|
"default": "./fesm2022/testgorilla-tgo-ui-components-rating.mjs"
|
|
229
237
|
},
|
|
230
|
-
"./components/radial-progress": {
|
|
231
|
-
"types": "./components/radial-progress/index.d.ts",
|
|
232
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-radial-progress.mjs"
|
|
233
|
-
},
|
|
234
238
|
"./components/scale": {
|
|
235
239
|
"types": "./components/scale/index.d.ts",
|
|
236
240
|
"default": "./fesm2022/testgorilla-tgo-ui-components-scale.mjs"
|
|
237
241
|
},
|
|
238
|
-
"./components/segmented-bar": {
|
|
239
|
-
"types": "./components/segmented-bar/index.d.ts",
|
|
240
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-segmented-bar.mjs"
|
|
241
|
-
},
|
|
242
|
-
"./components/selectable-card": {
|
|
243
|
-
"types": "./components/selectable-card/index.d.ts",
|
|
244
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-selectable-card.mjs"
|
|
245
|
-
},
|
|
246
242
|
"./components/scale-table": {
|
|
247
243
|
"types": "./components/scale-table/index.d.ts",
|
|
248
244
|
"default": "./fesm2022/testgorilla-tgo-ui-components-scale-table.mjs"
|
|
249
245
|
},
|
|
246
|
+
"./components/segmented-bar": {
|
|
247
|
+
"types": "./components/segmented-bar/index.d.ts",
|
|
248
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-segmented-bar.mjs"
|
|
249
|
+
},
|
|
250
250
|
"./components/segmented-button": {
|
|
251
251
|
"types": "./components/segmented-button/index.d.ts",
|
|
252
252
|
"default": "./fesm2022/testgorilla-tgo-ui-components-segmented-button.mjs"
|
|
253
253
|
},
|
|
254
|
+
"./components/selectable-card": {
|
|
255
|
+
"types": "./components/selectable-card/index.d.ts",
|
|
256
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-selectable-card.mjs"
|
|
257
|
+
},
|
|
254
258
|
"./components/side-panel": {
|
|
255
259
|
"types": "./components/side-panel/index.d.ts",
|
|
256
260
|
"default": "./fesm2022/testgorilla-tgo-ui-components-side-panel.mjs"
|
|
257
261
|
},
|
|
258
|
-
"./components/skeleton": {
|
|
259
|
-
"types": "./components/skeleton/index.d.ts",
|
|
260
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-skeleton.mjs"
|
|
261
|
-
},
|
|
262
262
|
"./components/side-sheet": {
|
|
263
263
|
"types": "./components/side-sheet/index.d.ts",
|
|
264
264
|
"default": "./fesm2022/testgorilla-tgo-ui-components-side-sheet.mjs"
|
|
265
265
|
},
|
|
266
|
+
"./components/skeleton": {
|
|
267
|
+
"types": "./components/skeleton/index.d.ts",
|
|
268
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-skeleton.mjs"
|
|
269
|
+
},
|
|
266
270
|
"./components/slider": {
|
|
267
271
|
"types": "./components/slider/index.d.ts",
|
|
268
272
|
"default": "./fesm2022/testgorilla-tgo-ui-components-slider.mjs"
|
|
@@ -295,14 +299,14 @@
|
|
|
295
299
|
"types": "./components/tag/index.d.ts",
|
|
296
300
|
"default": "./fesm2022/testgorilla-tgo-ui-components-tag.mjs"
|
|
297
301
|
},
|
|
298
|
-
"./components/tooltip": {
|
|
299
|
-
"types": "./components/tooltip/index.d.ts",
|
|
300
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-tooltip.mjs"
|
|
301
|
-
},
|
|
302
302
|
"./components/toggle": {
|
|
303
303
|
"types": "./components/toggle/index.d.ts",
|
|
304
304
|
"default": "./fesm2022/testgorilla-tgo-ui-components-toggle.mjs"
|
|
305
305
|
},
|
|
306
|
+
"./components/tooltip": {
|
|
307
|
+
"types": "./components/tooltip/index.d.ts",
|
|
308
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-tooltip.mjs"
|
|
309
|
+
},
|
|
306
310
|
"./components/universal-skills": {
|
|
307
311
|
"types": "./components/universal-skills/index.d.ts",
|
|
308
312
|
"default": "./fesm2022/testgorilla-tgo-ui-components-universal-skills.mjs"
|
package/public-api.d.ts
CHANGED
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
* - @testgorilla/tgo-ui/components/table
|
|
55
55
|
* - @testgorilla/tgo-ui/components/datepicker
|
|
56
56
|
* - @testgorilla/tgo-ui/components/ai-audio-circle
|
|
57
|
+
* - @testgorilla/tgo-ui/components/ai-caveat
|
|
57
58
|
* - @testgorilla/tgo-ui/components/ai-feedback
|
|
58
59
|
* - @testgorilla/tgo-ui/components/checklist
|
|
59
60
|
* - @testgorilla/tgo-ui/components/file-upload
|