@testgorilla/tgo-ui 3.10.13 → 3.10.14
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 +103 -103
- package/components/confirm-dialog/confirm-dialog.component.d.ts +5 -3
- package/components/confirm-dialog/confirm-dialog.model.d.ts +30 -2
- package/components/dialog/dialog.component.d.ts +3 -2
- package/components/dialog/dialog.model.d.ts +2 -2
- package/components/dialog/dialog.service.d.ts +5 -2
- package/esm2022/components/ai-feedback/ai-feedback.component.mjs +3 -3
- package/esm2022/components/ai-feedback/ai-feedback.model.mjs +1 -1
- package/esm2022/components/ai-feedback/ai-feedback.module.mjs +1 -1
- package/esm2022/components/alert-banner/alert-banner.component.mjs +1 -1
- package/esm2022/components/card/card.component.mjs +3 -3
- package/esm2022/components/checklist/checklist.component.mjs +3 -3
- package/esm2022/components/checklist/checklist.model.mjs +1 -1
- package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +10 -3
- package/esm2022/components/confirm-dialog/confirm-dialog.model.mjs +1 -1
- package/esm2022/components/datepicker/datepicker.component.mjs +3 -3
- package/esm2022/components/dialog/dialog.component.mjs +5 -4
- package/esm2022/components/dialog/dialog.model.mjs +1 -1
- package/esm2022/components/dialog/dialog.service.mjs +1 -1
- package/esm2022/components/empty-state/empty-state.model.mjs +1 -1
- package/esm2022/components/field/field.component.mjs +1 -1
- package/esm2022/components/file-upload/file-upload.component.mjs +3 -3
- package/esm2022/components/gaussian-chart/gaussian-chart.component.mjs +3 -3
- package/esm2022/components/icon/icon.config.mjs +1 -1
- package/esm2022/components/icon-label/icon-label.component.mjs +1 -1
- package/esm2022/components/multi-input/multi-input.component.mjs +1 -1
- package/esm2022/components/progress-bar/progress-bar.component.mjs +1 -1
- package/esm2022/components/selectable-card/selectable-card.component.mjs +3 -3
- package/esm2022/components/selectable-card/selectable-card.component.module.mjs +1 -1
- package/esm2022/components/side-panel/side-panel.animations.mjs +1 -1
- package/esm2022/components/side-panel/side-panel.component.mjs +3 -3
- package/esm2022/components/side-panel/side-panel.model.mjs +1 -1
- package/esm2022/components/side-panel/side-panel.service.mjs +1 -1
- package/esm2022/pipes/ui-translate.pipe.mjs +1 -1
- package/esm2022/public-api.mjs +4 -4
- package/fesm2022/testgorilla-tgo-ui.mjs +28 -20
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/projects/tgo-canopy-ui/assets/i18n/en.json +821 -821
- package/projects/tgo-canopy-ui/assets/icons/Switch-tab.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Credit-card-filled.svg +10 -10
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Credit-card-in-line.svg +10 -10
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Credit-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Credit-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Invoice-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Invoice-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Messages-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Open-in-new-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Open-in-new-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Open-lock-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Open-lock-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Switch-tab-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Switch-tab-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Thumb-down-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Thumb-down-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Thumb-up-filled.svg +3 -3
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Thumb-up-in-line.svg +3 -3
- package/projects/tgo-canopy-ui/theme/_input.scss +575 -575
- package/public-api.d.ts +3 -3
package/public-api.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export * from './models/universal-skills-report.model';
|
|
|
4
4
|
export * from './components/alert-banner/alert-banner.component';
|
|
5
5
|
export * from './components/alert-banner/alert-banner.component.module';
|
|
6
6
|
export * from './components/ai-feedback/ai-feedback.component';
|
|
7
|
-
export * from './components/ai-feedback/ai-feedback.module';
|
|
8
7
|
export * from './components/ai-feedback/ai-feedback.model';
|
|
8
|
+
export * from './components/ai-feedback/ai-feedback.module';
|
|
9
9
|
export * from './components/button/button.component';
|
|
10
10
|
export * from './components/button/button.component.module';
|
|
11
11
|
export * from './components/button/button.model';
|
|
@@ -18,7 +18,6 @@ export * from './components/checkbox/checkbox.component';
|
|
|
18
18
|
export * from './components/checkbox/checkbox.component.module';
|
|
19
19
|
export * from './components/dialog/dialog.component';
|
|
20
20
|
export * from './components/dialog/dialog.component.module';
|
|
21
|
-
export * from './components/dialog/dialog.model';
|
|
22
21
|
export * from './components/dialog/dialog.service';
|
|
23
22
|
export * from './components/donut-chart/donut-chart.component';
|
|
24
23
|
export * from './components/donut-chart/donut-chart.component.module';
|
|
@@ -55,8 +54,8 @@ export * from './pipes/data-property-getter';
|
|
|
55
54
|
export * from './components/tag/tag.component';
|
|
56
55
|
export * from './components/tag/tag.component.module';
|
|
57
56
|
export * from './components/tag/tag.model';
|
|
58
|
-
export * from './components/tooltip/tooltip.component';
|
|
59
57
|
export * from './components/tooltip/tooltip-template.directive';
|
|
58
|
+
export * from './components/tooltip/tooltip.component';
|
|
60
59
|
export * from './components/tooltip/tooltip.component.module';
|
|
61
60
|
export * from './components/tooltip/tooltip.model';
|
|
62
61
|
export * from './components/dropdown/dropdown.component';
|
|
@@ -67,6 +66,7 @@ export * from './components/spinner/spinner.model';
|
|
|
67
66
|
export * from './components/spinner/spinner.module';
|
|
68
67
|
export * from './components/confirm-dialog/confirm-dialog.component';
|
|
69
68
|
export * from './components/confirm-dialog/confirm-dialog.component.module';
|
|
69
|
+
export * from './components/confirm-dialog/confirm-dialog.model';
|
|
70
70
|
export * from './components/datepicker/datepicker.component';
|
|
71
71
|
export * from './components/datepicker/datepicker.component.module';
|
|
72
72
|
export * from './components/rating/rating.component';
|