@testgorilla/tgo-ui 6.3.0 → 6.4.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/components/radio-button/radio-button.component.d.ts +1 -0
- package/components/write-with-ai/index.d.ts +5 -0
- package/components/write-with-ai/llm.service.d.ts +22 -0
- package/components/write-with-ai/public-api.d.ts +4 -0
- package/components/write-with-ai/write-with-ai.component.d.ts +79 -0
- package/components/write-with-ai/write-with-ai.model.d.ts +24 -0
- package/components/write-with-ai/write-with-ai.module.d.ts +7 -0
- package/fesm2022/testgorilla-tgo-ui-components-core.mjs +18 -1
- package/fesm2022/testgorilla-tgo-ui-components-core.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-prompt.mjs +2 -2
- package/fesm2022/testgorilla-tgo-ui-components-prompt.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-radio-button.mjs +6 -0
- package/fesm2022/testgorilla-tgo-ui-components-radio-button.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-write-with-ai.mjs +406 -0
- package/fesm2022/testgorilla-tgo-ui-components-write-with-ai.mjs.map +1 -0
- package/fesm2022/testgorilla-tgo-ui.mjs +1 -0
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +14 -11
- package/public-api.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testgorilla/tgo-ui",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.1",
|
|
4
4
|
"license": "proprietary-license",
|
|
5
5
|
"lint-staged": {
|
|
6
6
|
"{projects,components}/**/*.ts": [
|
|
@@ -49,12 +49,11 @@
|
|
|
49
49
|
"overrides": {
|
|
50
50
|
"tar": "^7.5.8",
|
|
51
51
|
"serialize-javascript": "^7.0.3",
|
|
52
|
-
"ajv": "^8.18.0",
|
|
53
52
|
"@eslint/eslintrc": {
|
|
54
|
-
"ajv": "
|
|
53
|
+
"ajv": "6.12.6"
|
|
55
54
|
},
|
|
56
55
|
"eslint": {
|
|
57
|
-
"ajv": "
|
|
56
|
+
"ajv": "6.12.6"
|
|
58
57
|
}
|
|
59
58
|
},
|
|
60
59
|
"module": "fesm2022/testgorilla-tgo-ui.mjs",
|
|
@@ -87,22 +86,22 @@
|
|
|
87
86
|
"types": "./components/alert-banner/index.d.ts",
|
|
88
87
|
"default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
|
|
89
88
|
},
|
|
90
|
-
"./components/
|
|
91
|
-
"types": "./components/
|
|
92
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-
|
|
89
|
+
"./components/autocomplete": {
|
|
90
|
+
"types": "./components/autocomplete/index.d.ts",
|
|
91
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs"
|
|
93
92
|
},
|
|
94
93
|
"./components/avatar": {
|
|
95
94
|
"types": "./components/avatar/index.d.ts",
|
|
96
95
|
"default": "./fesm2022/testgorilla-tgo-ui-components-avatar.mjs"
|
|
97
96
|
},
|
|
97
|
+
"./components/audio-waveform": {
|
|
98
|
+
"types": "./components/audio-waveform/index.d.ts",
|
|
99
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-audio-waveform.mjs"
|
|
100
|
+
},
|
|
98
101
|
"./components/badge": {
|
|
99
102
|
"types": "./components/badge/index.d.ts",
|
|
100
103
|
"default": "./fesm2022/testgorilla-tgo-ui-components-badge.mjs"
|
|
101
104
|
},
|
|
102
|
-
"./components/autocomplete": {
|
|
103
|
-
"types": "./components/autocomplete/index.d.ts",
|
|
104
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs"
|
|
105
|
-
},
|
|
106
105
|
"./components/breadcrumb": {
|
|
107
106
|
"types": "./components/breadcrumb/index.d.ts",
|
|
108
107
|
"default": "./fesm2022/testgorilla-tgo-ui-components-breadcrumb.mjs"
|
|
@@ -330,6 +329,10 @@
|
|
|
330
329
|
"./components/validation-error": {
|
|
331
330
|
"types": "./components/validation-error/index.d.ts",
|
|
332
331
|
"default": "./fesm2022/testgorilla-tgo-ui-components-validation-error.mjs"
|
|
332
|
+
},
|
|
333
|
+
"./components/write-with-ai": {
|
|
334
|
+
"types": "./components/write-with-ai/index.d.ts",
|
|
335
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-write-with-ai.mjs"
|
|
333
336
|
}
|
|
334
337
|
},
|
|
335
338
|
"sideEffects": false
|
package/public-api.d.ts
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
* - @testgorilla/tgo-ui/components/spider-chart
|
|
75
75
|
* - @testgorilla/tgo-ui/components/universal-skills
|
|
76
76
|
* - @testgorilla/tgo-ui/components/audio-waveform
|
|
77
|
+
* - @testgorilla/tgo-ui/components/write-with-ai
|
|
77
78
|
*/
|
|
78
79
|
export * from '@testgorilla/tgo-ui/components/core';
|
|
79
80
|
export * from './components/deprecated-paginator/deprecated-paginator.component';
|