@tsed/react-formio 2.2.1 → 2.2.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsed/react-formio",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "Provide a react formio wrapper. Written in TypeScript.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.modern.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"tooltip.js": ">=1.3.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@tsed/tailwind": "2.2.
|
|
35
|
-
"@tsed/tailwind-formio": "2.2.
|
|
34
|
+
"@tsed/tailwind": "2.2.3",
|
|
35
|
+
"@tsed/tailwind-formio": "2.2.3"
|
|
36
36
|
},
|
|
37
37
|
"repository": "https://github.com/TypedProject/tsed-formio",
|
|
38
38
|
"bugs": {
|
|
@@ -122,16 +122,11 @@ export function Pagination(props: PaginationProps) {
|
|
|
122
122
|
<strong>
|
|
123
123
|
{pageIndex + 1} of {pageOptions.length}
|
|
124
124
|
</strong>
|
|
125
|
-
{totalLength !== undefined && (
|
|
126
|
-
<span className='ml-3'>
|
|
127
|
-
{i18n("Totals")}: <strong>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
|
|
128
|
-
</span>
|
|
129
|
-
)}
|
|
130
125
|
</li>
|
|
131
126
|
)}
|
|
132
127
|
{totalLength !== undefined && (
|
|
133
128
|
<li className={"mb-3 flex items-center"} data-testid='pagination-total-items'>
|
|
134
|
-
{i18n("
|
|
129
|
+
{i18n("Total")}: <strong className='mx-1'>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
|
|
135
130
|
</li>
|
|
136
131
|
)}
|
|
137
132
|
</nav>
|