@tsiky/components-r19 1.6.8 → 1.6.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/dist/chart.cjs.js +29 -29
- package/dist/chart.js +1779 -1737
- package/dist/components-r19.css +1 -1
- package/dist/index.cjs.js +1643 -1643
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +17361 -17383
- package/dist/src/components/ChartContainer/ChartContainer.d.ts +0 -1
- package/dist/src/components/ChartContainer/ChartContainer.d.ts.map +1 -1
- package/dist/src/components/ChartV2/ChartV2.d.ts.map +1 -1
- package/dist/src/components/ComponentVisibilityToggle/ComponentVisibilityToggle.d.ts +24 -0
- package/dist/src/components/ComponentVisibilityToggle/ComponentVisibilityToggle.d.ts.map +1 -0
- package/dist/src/components/ComponentVisibilityToggle/index.d.ts +3 -0
- package/dist/src/components/ComponentVisibilityToggle/index.d.ts.map +1 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts.map +1 -1
- package/dist/src/components/DayStatCardV2/DayStatCardV2.d.ts +1 -0
- package/dist/src/components/DayStatCardV2/DayStatCardV2.d.ts.map +1 -1
- package/dist/src/components/DraggableSwitcher/DraggableSwitcherButton.d.ts +2 -2
- package/dist/src/components/DraggableSwitcher/DraggableSwitcherButton.d.ts.map +1 -1
- package/dist/src/components/IndicatorItemV2/IndicatorItemV2.d.ts +1 -0
- package/dist/src/components/IndicatorItemV2/IndicatorItemV2.d.ts.map +1 -1
- package/dist/src/components/LegendFilter/LegendFilterSwitcherButton.d.ts +2 -2
- package/dist/src/components/LegendFilter/LegendFilterSwitcherButton.d.ts.map +1 -1
- package/dist/src/components/Logo/Logo.d.ts.map +1 -1
- package/dist/src/components/NavBarV2/NavBarV2.d.ts +0 -3
- package/dist/src/components/NavBarV2/NavBarV2.d.ts.map +1 -1
- package/dist/src/components/SankeyChartV2/SankeyChartV2.d.ts.map +1 -1
- package/dist/src/components/ShowDataSwitcher/ShowDataSwitcherButton.d.ts.map +1 -1
- package/dist/src/components/SubHeaderContent/SubHeaderContent.d.ts +0 -7
- package/dist/src/components/SubHeaderContent/SubHeaderContent.d.ts.map +1 -1
- package/dist/src/components/SubHeaderTitle/SubHeaderTitle.d.ts +1 -0
- package/dist/src/components/SubHeaderTitle/SubHeaderTitle.d.ts.map +1 -1
- package/dist/src/components/Switcher/Switcher.d.ts +2 -2
- package/dist/src/components/Switcher/Switcher.d.ts.map +1 -1
- package/dist/src/components/TableauxComponent/Pagination.d.ts +0 -1
- package/dist/src/components/TableauxComponent/Pagination.d.ts.map +1 -1
- package/dist/src/components/TableauxComponent/TableLayout.d.ts +1 -1
- package/dist/src/components/TableauxComponent/TableLayout.d.ts.map +1 -1
- package/dist/src/components/TableauxComponent/index.d.ts +1 -2
- package/dist/src/components/TableauxComponent/index.d.ts.map +1 -1
- package/dist/src/components/TableauxComponent/types.d.ts +16 -42
- package/dist/src/components/TableauxComponent/types.d.ts.map +1 -1
- package/dist/src/components/TableauxComponent/useTableLogic.d.ts +1 -8
- package/dist/src/components/TableauxComponent/useTableLogic.d.ts.map +1 -1
- package/dist/src/components/UserDropdownMenu/UserDropdownMenu.d.ts +48 -0
- package/dist/src/components/UserDropdownMenu/UserDropdownMenu.d.ts.map +1 -0
- package/dist/src/components/UserInfo/UserInfo.d.ts +8 -6
- package/dist/src/components/UserInfo/UserInfo.d.ts.map +1 -1
- package/package.json +100 -100
package/package.json
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tsiky/components-r19",
|
|
3
|
-
"version": "1.6.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"dev": "vite",
|
|
7
|
-
"build": "npm run build:types && npm run build:js",
|
|
8
|
-
"build:types": "tsc -b tsconfig.app.json --emitDeclarationOnly",
|
|
9
|
-
"build:js": "vite build --config vite.lib.config.ts",
|
|
10
|
-
"lint": "eslint . --fix",
|
|
11
|
-
"format": "prettier --write .",
|
|
12
|
-
"preview": "vite preview",
|
|
13
|
-
"storybook": "storybook dev -p 6006",
|
|
14
|
-
"build-storybook": "storybook build",
|
|
15
|
-
"prepublishOnly": "npm run build",
|
|
16
|
-
"type-check": "tsc --noEmit"
|
|
17
|
-
},
|
|
18
|
-
"main": "./dist/index.cjs.js",
|
|
19
|
-
"module": "./dist/index.js",
|
|
20
|
-
"types": "./dist/index.d.ts",
|
|
21
|
-
"style": "dist/components-r19.css",
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"import": "./dist/index.js",
|
|
26
|
-
"require": "./dist/index.cjs.js"
|
|
27
|
-
},
|
|
28
|
-
"./chart": {
|
|
29
|
-
"types": "./dist/chart.d.ts",
|
|
30
|
-
"import": "./dist/chart.js",
|
|
31
|
-
"require": "./dist/chart.cjs.js"
|
|
32
|
-
},
|
|
33
|
-
"./components-r19.css": "./dist/components-r19.css",
|
|
34
|
-
"./package.json": "./package.json"
|
|
35
|
-
},
|
|
36
|
-
"files": [
|
|
37
|
-
"dist"
|
|
38
|
-
],
|
|
39
|
-
"peerDependencies": {
|
|
40
|
-
"react": "^19.1.0",
|
|
41
|
-
"react-dom": "^19.1.0",
|
|
42
|
-
"styled-components": "^6.1.19"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@nivo/core": "^0.99.0",
|
|
46
|
-
"@nivo/sankey": "^0.99.0",
|
|
47
|
-
"ag-charts-react": "^12.2.0",
|
|
48
|
-
"apexsankey": "^1.2.5",
|
|
49
|
-
"chart.js": "^4.5.0",
|
|
50
|
-
"chartjs-chart-sankey": "^0.14.0",
|
|
51
|
-
"framer-motion": "^12.23.24",
|
|
52
|
-
"lucide-react": "^0.540.0",
|
|
53
|
-
"react-apexcharts": "^1.8.0",
|
|
54
|
-
"react-chartjs-2": "^5.3.0",
|
|
55
|
-
"recharts": "^3.6.0"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@chromatic-com/storybook": "^4.1.0",
|
|
59
|
-
"@eslint/js": "^9.30.1",
|
|
60
|
-
"@storybook/addon-a11y": "^9.1.0",
|
|
61
|
-
"@storybook/addon-docs": "^9.1.0",
|
|
62
|
-
"@storybook/addon-onboarding": "^9.1.0",
|
|
63
|
-
"@storybook/addon-vitest": "^9.1.0",
|
|
64
|
-
"@storybook/react-vite": "^9.1.0",
|
|
65
|
-
"@svgr/plugin-prettier": "^8.1.0",
|
|
66
|
-
"@svgr/plugin-svgo": "^8.1.0",
|
|
67
|
-
"@types/lodash": "^4.17.20",
|
|
68
|
-
"@types/react": "^19.1.8",
|
|
69
|
-
"@types/react-dom": "^19.1.6",
|
|
70
|
-
"@types/styled-components": "^5.1.34",
|
|
71
|
-
"@vitejs/plugin-react": "^4.6.0",
|
|
72
|
-
"@vitest/browser": "^3.2.4",
|
|
73
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
74
|
-
"eslint": "^9.30.1",
|
|
75
|
-
"eslint-config-prettier": "^10.1.8",
|
|
76
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
77
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
78
|
-
"eslint-plugin-react-refresh": "^0.4.20",
|
|
79
|
-
"eslint-plugin-storybook": "^9.1.0",
|
|
80
|
-
"globals": "^16.3.0",
|
|
81
|
-
"msw": "^2.12.7",
|
|
82
|
-
"msw-storybook-addon": "^2.0.6",
|
|
83
|
-
"playwright": "^1.54.2",
|
|
84
|
-
"prettier": "^3.6.2",
|
|
85
|
-
"react": "^19.1.0",
|
|
86
|
-
"react-dom": "^19.1.0",
|
|
87
|
-
"storybook": "^9.1.0",
|
|
88
|
-
"styled-components": "^6.1.19",
|
|
89
|
-
"typescript": "~5.8.3",
|
|
90
|
-
"typescript-eslint": "^8.35.1",
|
|
91
|
-
"vite": "^7.0.4",
|
|
92
|
-
"vite-plugin-svgr": "^4.5.0",
|
|
93
|
-
"vitest": "^3.2.4"
|
|
94
|
-
},
|
|
95
|
-
"msw": {
|
|
96
|
-
"workerDirectory": [
|
|
97
|
-
"public"
|
|
98
|
-
]
|
|
99
|
-
}
|
|
100
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tsiky/components-r19",
|
|
3
|
+
"version": "1.6.10",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite",
|
|
7
|
+
"build": "npm run build:types && npm run build:js",
|
|
8
|
+
"build:types": "tsc -b tsconfig.app.json --emitDeclarationOnly",
|
|
9
|
+
"build:js": "vite build --config vite.lib.config.ts",
|
|
10
|
+
"lint": "eslint . --fix",
|
|
11
|
+
"format": "prettier --write .",
|
|
12
|
+
"preview": "vite preview",
|
|
13
|
+
"storybook": "storybook dev -p 6006",
|
|
14
|
+
"build-storybook": "storybook build",
|
|
15
|
+
"prepublishOnly": "npm run build",
|
|
16
|
+
"type-check": "tsc --noEmit"
|
|
17
|
+
},
|
|
18
|
+
"main": "./dist/index.cjs.js",
|
|
19
|
+
"module": "./dist/index.js",
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"style": "dist/components-r19.css",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"import": "./dist/index.js",
|
|
26
|
+
"require": "./dist/index.cjs.js"
|
|
27
|
+
},
|
|
28
|
+
"./chart": {
|
|
29
|
+
"types": "./dist/chart.d.ts",
|
|
30
|
+
"import": "./dist/chart.js",
|
|
31
|
+
"require": "./dist/chart.cjs.js"
|
|
32
|
+
},
|
|
33
|
+
"./components-r19.css": "./dist/components-r19.css",
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^19.1.0",
|
|
41
|
+
"react-dom": "^19.1.0",
|
|
42
|
+
"styled-components": "^6.1.19"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@nivo/core": "^0.99.0",
|
|
46
|
+
"@nivo/sankey": "^0.99.0",
|
|
47
|
+
"ag-charts-react": "^12.2.0",
|
|
48
|
+
"apexsankey": "^1.2.5",
|
|
49
|
+
"chart.js": "^4.5.0",
|
|
50
|
+
"chartjs-chart-sankey": "^0.14.0",
|
|
51
|
+
"framer-motion": "^12.23.24",
|
|
52
|
+
"lucide-react": "^0.540.0",
|
|
53
|
+
"react-apexcharts": "^1.8.0",
|
|
54
|
+
"react-chartjs-2": "^5.3.0",
|
|
55
|
+
"recharts": "^3.6.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@chromatic-com/storybook": "^4.1.0",
|
|
59
|
+
"@eslint/js": "^9.30.1",
|
|
60
|
+
"@storybook/addon-a11y": "^9.1.0",
|
|
61
|
+
"@storybook/addon-docs": "^9.1.0",
|
|
62
|
+
"@storybook/addon-onboarding": "^9.1.0",
|
|
63
|
+
"@storybook/addon-vitest": "^9.1.0",
|
|
64
|
+
"@storybook/react-vite": "^9.1.0",
|
|
65
|
+
"@svgr/plugin-prettier": "^8.1.0",
|
|
66
|
+
"@svgr/plugin-svgo": "^8.1.0",
|
|
67
|
+
"@types/lodash": "^4.17.20",
|
|
68
|
+
"@types/react": "^19.1.8",
|
|
69
|
+
"@types/react-dom": "^19.1.6",
|
|
70
|
+
"@types/styled-components": "^5.1.34",
|
|
71
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
72
|
+
"@vitest/browser": "^3.2.4",
|
|
73
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
74
|
+
"eslint": "^9.30.1",
|
|
75
|
+
"eslint-config-prettier": "^10.1.8",
|
|
76
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
77
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
78
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
79
|
+
"eslint-plugin-storybook": "^9.1.0",
|
|
80
|
+
"globals": "^16.3.0",
|
|
81
|
+
"msw": "^2.12.7",
|
|
82
|
+
"msw-storybook-addon": "^2.0.6",
|
|
83
|
+
"playwright": "^1.54.2",
|
|
84
|
+
"prettier": "^3.6.2",
|
|
85
|
+
"react": "^19.1.0",
|
|
86
|
+
"react-dom": "^19.1.0",
|
|
87
|
+
"storybook": "^9.1.0",
|
|
88
|
+
"styled-components": "^6.1.19",
|
|
89
|
+
"typescript": "~5.8.3",
|
|
90
|
+
"typescript-eslint": "^8.35.1",
|
|
91
|
+
"vite": "^7.0.4",
|
|
92
|
+
"vite-plugin-svgr": "^4.5.0",
|
|
93
|
+
"vitest": "^3.2.4"
|
|
94
|
+
},
|
|
95
|
+
"msw": {
|
|
96
|
+
"workerDirectory": [
|
|
97
|
+
"public"
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
}
|