@testgorilla/tgo-ui 2.23.33 → 2.23.35
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/dialog/dialog.component.d.ts +13 -1
- package/components/dialog/dialog.service.d.ts +2 -2
- package/components/progress-bar/progress-bar.component.d.ts +22 -1
- package/components/progress-bar/progress-bar.component.module.d.ts +2 -1
- package/components/spinner/spinner.component.d.ts +8 -1
- package/components/spinner/spinner.module.d.ts +2 -1
- package/components/tag/tag.component.d.ts +10 -1
- package/components/tag/tag.component.module.d.ts +2 -1
- package/esm2022/assets/i18n/en.json +5 -1
- package/esm2022/components/autocomplete/autocomplete.component.mjs +1 -1
- package/esm2022/components/badge/badge.component.mjs +3 -3
- package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +1 -1
- package/esm2022/components/dialog/dialog.component.mjs +19 -3
- package/esm2022/components/dialog/dialog.service.mjs +3 -2
- package/esm2022/components/file-upload/file-upload.component.mjs +2 -2
- package/esm2022/components/password-criteria/password.component.mjs +1 -1
- package/esm2022/components/password-strength/password-strength.component.mjs +1 -1
- package/esm2022/components/progress-bar/progress-bar.component.mjs +34 -4
- package/esm2022/components/progress-bar/progress-bar.component.module.mjs +4 -3
- package/esm2022/components/spinner/spinner.component.mjs +14 -3
- package/esm2022/components/spinner/spinner.module.mjs +5 -4
- package/esm2022/components/tag/tag.component.mjs +25 -4
- package/esm2022/components/tag/tag.component.module.mjs +4 -3
- package/esm2022/components/toggle/toggle.component.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui.mjs +140 -64
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/projects/tgo-canopy-ui/assets/i18n/en.json +5 -1
package/package.json
CHANGED
|
@@ -58,7 +58,8 @@
|
|
|
58
58
|
"CLEAR": "Clear",
|
|
59
59
|
"PHONE_NUMBER": "Phone number",
|
|
60
60
|
"ON": "On",
|
|
61
|
-
"OFF": "Off"
|
|
61
|
+
"OFF": "Off",
|
|
62
|
+
"LOADING": "Loading..."
|
|
62
63
|
},
|
|
63
64
|
"DIALOG": {
|
|
64
65
|
"CLOSE_LABEL": "Close dialog",
|
|
@@ -116,5 +117,8 @@
|
|
|
116
117
|
"WARNING": "Warning:",
|
|
117
118
|
"ERROR": "Error:",
|
|
118
119
|
"SUCCESS": "Success:"
|
|
120
|
+
},
|
|
121
|
+
"TAG": {
|
|
122
|
+
"REMOVE": "Remove tag"
|
|
119
123
|
}
|
|
120
124
|
}
|