@firedesktop/react-base 1.19.2 → 1.20.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.
@@ -365,4 +365,35 @@
365
365
  .AppInput_form svg{
366
366
  position: absolute;
367
367
  }
368
+
369
+ /*******************************************************************************/
370
+ /* AppPagination */
371
+ .page-item {
372
+ cursor: pointer;
373
+ margin-left: 2px;
374
+ margin-right: 2px;
375
+ }
376
+
377
+ .page-item span {
378
+ width: 28px;
379
+ height: 27px;
380
+ display: flex;
381
+ justify-content: center;
382
+ align-items: center;
383
+ }
384
+
385
+ .page-item.active span {
386
+ background: var(--background-color);
387
+ border-radius: 5px;
388
+ width: 28px;
389
+ height: 27px;
390
+ padding: 0;
391
+ text-align: center;
392
+ display: flex;
393
+ justify-content: center;
394
+ align-items: center;
395
+ color: #ffffff !important;
396
+ }
397
+
398
+
368
399
 
package/tsconfig.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "declaration": true,
14
14
  "esModuleInterop": true,
15
15
  "forceConsistentCasingInFileNames": true,
16
- "jsx": "react",
16
+ "jsx": "react-jsx",
17
17
  "module": "esnext",
18
18
  "moduleResolution": "node",
19
19
  "noFallthroughCasesInSwitch": true,
@@ -27,4 +27,4 @@
27
27
  "include": [
28
28
  "src/lib"
29
29
  ]
30
- }
30
+ }