@ttoss/react-dashboard 0.1.1 → 0.1.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/README.md +1 -1
- package/dist/esm/index.js +3 -5
- package/package.json +14 -15
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ A comprehensive React dashboard module that provides fully customizable dashboar
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```shell
|
|
10
|
-
pnpm add @ttoss/react-dashboard
|
|
10
|
+
pnpm add @ttoss/react-dashboard
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Getting Started
|
package/dist/esm/index.js
CHANGED
|
@@ -363,8 +363,8 @@ var useDashboard = /* @__PURE__ */__name(() => {
|
|
|
363
363
|
|
|
364
364
|
// src/Filters/DateRangeFilter.tsx
|
|
365
365
|
import { FormFieldDatePicker } from "@ttoss/forms";
|
|
366
|
+
import { FormProvider, useForm } from "@ttoss/forms";
|
|
366
367
|
import * as React3 from "react";
|
|
367
|
-
import { FormProvider, useForm } from "react-hook-form";
|
|
368
368
|
var DateRangeFilter = /* @__PURE__ */__name(({
|
|
369
369
|
label,
|
|
370
370
|
value,
|
|
@@ -411,9 +411,8 @@ var DateRangeFilter = /* @__PURE__ */__name(({
|
|
|
411
411
|
}, "DateRangeFilter");
|
|
412
412
|
|
|
413
413
|
// src/Filters/SelectFilter.tsx
|
|
414
|
-
import { FormFieldSelect } from "@ttoss/forms";
|
|
414
|
+
import { FormFieldSelect, FormProvider as FormProvider2, useForm as useForm2 } from "@ttoss/forms";
|
|
415
415
|
import * as React4 from "react";
|
|
416
|
-
import { FormProvider as FormProvider2, useForm as useForm2 } from "react-hook-form";
|
|
417
416
|
var SelectFilter = /* @__PURE__ */__name(props => {
|
|
418
417
|
const {
|
|
419
418
|
value,
|
|
@@ -450,9 +449,8 @@ var SelectFilter = /* @__PURE__ */__name(props => {
|
|
|
450
449
|
}, "SelectFilter");
|
|
451
450
|
|
|
452
451
|
// src/Filters/TextFilter.tsx
|
|
453
|
-
import { FormFieldInput } from "@ttoss/forms";
|
|
452
|
+
import { FormFieldInput, FormProvider as FormProvider3, useForm as useForm3 } from "@ttoss/forms";
|
|
454
453
|
import * as React5 from "react";
|
|
455
|
-
import { FormProvider as FormProvider3, useForm as useForm3 } from "react-hook-form";
|
|
456
454
|
var TextFilter = /* @__PURE__ */__name(props => {
|
|
457
455
|
const {
|
|
458
456
|
value,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/react-dashboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "ttoss dashboard module for React apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -23,26 +23,25 @@
|
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
25
|
"sideEffects": false,
|
|
26
|
-
"
|
|
27
|
-
"react": "
|
|
28
|
-
"react-day-picker": "^9.11.2",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"react-day-picker": "^9.11.3",
|
|
29
28
|
"react-grid-layout": "^1.5.2",
|
|
30
|
-
"
|
|
31
|
-
"@ttoss/
|
|
32
|
-
"@ttoss/
|
|
33
|
-
"@ttoss/
|
|
34
|
-
"@ttoss/
|
|
35
|
-
|
|
36
|
-
|
|
29
|
+
"@ttoss/components": "^2.10.2",
|
|
30
|
+
"@ttoss/forms": "^0.36.0",
|
|
31
|
+
"@ttoss/react-icons": "^0.5.6",
|
|
32
|
+
"@ttoss/react-i18n": "^2.0.25",
|
|
33
|
+
"@ttoss/ui": "^6.1.0"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"react": ">=16.8.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@types/react": "^19.2.
|
|
39
|
+
"@types/react": "^19.2.7",
|
|
40
40
|
"@types/react-grid-layout": "^1.3.6",
|
|
41
41
|
"jest": "^30.2.0",
|
|
42
|
-
"react
|
|
42
|
+
"react": "^19.2.1",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
|
-
"@ttoss/
|
|
45
|
-
"@ttoss/forms": "^0.35.2"
|
|
44
|
+
"@ttoss/config": "^1.35.12"
|
|
46
45
|
},
|
|
47
46
|
"keywords": [
|
|
48
47
|
"React",
|