@testgorilla/tgo-ui 3.13.10 → 3.14.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.
Files changed (27) hide show
  1. package/components/donut-chart/donut-chart.component.d.ts +2 -2
  2. package/components/field/field.component.d.ts +2 -1
  3. package/components/inline-field/inline-field.component.d.ts +2 -2
  4. package/components/overflow-menu/overflow-menu.component.d.ts +3 -1
  5. package/components/prompt/prompt.component.d.ts +54 -0
  6. package/components/prompt/prompt.model.d.ts +9 -0
  7. package/components/prompt/prompt.module.d.ts +19 -0
  8. package/components/radio-button/radio-button.component.d.ts +7 -1
  9. package/components/skeleton/skeleton.component.d.ts +1 -1
  10. package/esm2022/assets/i18n/en.json +6 -0
  11. package/esm2022/components/breadcrumb/breadcrumb.component.mjs +1 -1
  12. package/esm2022/components/field/field.component.mjs +6 -3
  13. package/esm2022/components/filter-button/filter-button.component.mjs +1 -1
  14. package/esm2022/components/inline-field/inline-field.component.mjs +1 -1
  15. package/esm2022/components/multi-input/multi-input.component.mjs +1 -1
  16. package/esm2022/components/overflow-menu/overflow-menu.component.mjs +7 -3
  17. package/esm2022/components/password-criteria/password.component.mjs +1 -1
  18. package/esm2022/components/prompt/prompt.component.mjs +187 -0
  19. package/esm2022/components/prompt/prompt.model.mjs +2 -0
  20. package/esm2022/components/prompt/prompt.module.mjs +62 -0
  21. package/esm2022/components/radio-button/radio-button.component.mjs +12 -4
  22. package/esm2022/public-api.mjs +5 -1
  23. package/fesm2022/testgorilla-tgo-ui.mjs +1308 -1066
  24. package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
  25. package/package.json +1 -1
  26. package/projects/tgo-canopy-ui/assets/i18n/en.json +7 -0
  27. package/public-api.d.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testgorilla/tgo-ui",
3
- "version": "3.13.10",
3
+ "version": "3.14.1",
4
4
  "license": "proprietary-license",
5
5
  "lint-staged": {
6
6
  "src/**/*.ts": [
@@ -818,5 +818,12 @@
818
818
  },
819
819
  "AI_FEEDBACK": {
820
820
  "TITLE": "Were these suggestions useful?"
821
+ },
822
+ "PROMPT": {
823
+ "ASK_ANYTHING": "Ask me anything...",
824
+ "ADD_FILES": "Add files",
825
+ "FILES": "Files",
826
+ "VIEW_MORE": "View More"
827
+
821
828
  }
822
829
  }
package/public-api.d.ts CHANGED
@@ -50,6 +50,9 @@ export * from './components/deprecated-paginator/deprecated-paginator.component'
50
50
  export * from './components/deprecated-paginator/deprecated-paginator.component.module';
51
51
  export * from './components/progress-bar/progress-bar.component';
52
52
  export * from './components/progress-bar/progress-bar.component.module';
53
+ export * from './components/prompt/prompt.component';
54
+ export * from './components/prompt/prompt.module';
55
+ export * from './components/prompt/prompt.model';
53
56
  export * from './components/radio-button/radio-button.component';
54
57
  export * from './components/radio-button/radio-button.component.module';
55
58
  export * from './components/snackbar/snackbar.component';