@testgorilla/tgo-ui 2.26.9 → 2.26.10
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/button/button.component.d.ts +7 -5
- package/components/checkbox/checkbox.component.d.ts +13 -3
- package/components/field/field.component.d.ts +1 -0
- package/components/filter-button/filter-button.component.d.ts +6 -1
- package/components/password-criteria/password.component.d.ts +3 -1
- package/components/radio-button/radio-button.component.d.ts +11 -1
- package/esm2022/assets/i18n/en.json +12 -2
- package/esm2022/components/alert-banner/alert-banner.component.mjs +2 -2
- package/esm2022/components/avatar/avatar.component.mjs +1 -1
- package/esm2022/components/button/button.component.mjs +8 -5
- package/esm2022/components/checkbox/checkbox.component.mjs +17 -3
- package/esm2022/components/checklist/checklist.component.mjs +2 -2
- package/esm2022/components/dialog/dialog.component.mjs +1 -1
- package/esm2022/components/dropdown/dropdown.component.mjs +1 -1
- package/esm2022/components/empty-state/empty-state.component.mjs +1 -1
- package/esm2022/components/field/field.component.mjs +8 -3
- package/esm2022/components/filter-button/filter-button.component.mjs +27 -4
- package/esm2022/components/media-card/media-card.component.mjs +2 -2
- package/esm2022/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.mjs +2 -2
- package/esm2022/components/navbar/navbar.component.mjs +1 -1
- package/esm2022/components/page-header/page-header.component.mjs +1 -1
- package/esm2022/components/password-criteria/password.component.mjs +10 -4
- package/esm2022/components/radial-progress/radial-progress.component.mjs +1 -1
- package/esm2022/components/radio-button/radio-button.component.mjs +17 -3
- package/esm2022/components/side-panel/side-panel.component.mjs +2 -2
- package/esm2022/components/side-sheet/side-sheet.component.mjs +1 -1
- package/esm2022/components/snackbar/snackbar.component.mjs +2 -2
- package/esm2022/components/table/table.component.mjs +3 -3
- package/fesm2022/testgorilla-tgo-ui.mjs +108 -33
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/projects/tgo-canopy-ui/assets/i18n/en.json +12 -2
package/package.json
CHANGED
|
@@ -87,14 +87,19 @@
|
|
|
87
87
|
"ON": "On",
|
|
88
88
|
"OFF": "Off",
|
|
89
89
|
"LOADING": "Loading...",
|
|
90
|
-
"PROGRESS": "Progress is {{progress}}"
|
|
90
|
+
"PROGRESS": "Progress is {{progress}}",
|
|
91
|
+
"PASSED": "Passed",
|
|
92
|
+
"FAILED": "Failed"
|
|
91
93
|
},
|
|
92
94
|
"DIALOG": {
|
|
93
95
|
"CLOSE_LABEL": "Close dialog",
|
|
94
96
|
"CLOSED": "Dialog closed"
|
|
95
97
|
},
|
|
96
98
|
"FIELD": {
|
|
97
|
-
"VIEW_PASSWORD": "View password"
|
|
99
|
+
"VIEW_PASSWORD": "View password",
|
|
100
|
+
"SHOW_PASSWORD": "Show password",
|
|
101
|
+
"HIDE_PASSWORD": "Hide password",
|
|
102
|
+
"ALL_PASSWORD_REQ_PASSED": "All password requirements are met."
|
|
98
103
|
},
|
|
99
104
|
"FILE_UPLOAD": {
|
|
100
105
|
"DRAG_AND_DROP": "Drag and drop file here or click to upload",
|
|
@@ -797,5 +802,10 @@
|
|
|
797
802
|
},
|
|
798
803
|
"TOOLTIP": {
|
|
799
804
|
"DETAILS": "Details"
|
|
805
|
+
},
|
|
806
|
+
"FILTER_BUTTON": {
|
|
807
|
+
"ACTIVE_ITEM": "Item {{active}} of {{total}}",
|
|
808
|
+
"SELECTED": "Selected",
|
|
809
|
+
"DESELECTED": "Deselected"
|
|
800
810
|
}
|
|
801
811
|
}
|