2025-01-14 16:50:41 +05:30
|
|
|
{
|
|
|
|
|
"name": "@plane/propel",
|
2025-09-01 19:38:21 +05:30
|
|
|
"version": "1.0.0",
|
2025-01-14 16:50:41 +05:30
|
|
|
"private": true,
|
2025-03-04 20:20:38 +05:30
|
|
|
"license": "AGPL-3.0",
|
2025-02-10 16:01:06 +05:30
|
|
|
"scripts": {
|
2025-07-24 13:14:51 -07:00
|
|
|
"check:lint": "eslint . --max-warnings 7",
|
2025-07-04 14:23:18 +05:30
|
|
|
"check:types": "tsc --noEmit",
|
|
|
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
|
|
|
"fix:lint": "eslint . --fix",
|
|
|
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
|
2025-08-26 02:14:00 +05:30
|
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
|
|
|
|
|
"storybook": "storybook dev -p 6006",
|
|
|
|
|
"build-storybook": "storybook build"
|
2025-01-14 16:50:41 +05:30
|
|
|
},
|
2025-02-10 16:01:06 +05:30
|
|
|
"exports": {
|
2025-08-18 19:35:34 +05:30
|
|
|
"./avatar": "./src/avatar/index.ts",
|
2025-05-09 14:26:29 +05:30
|
|
|
"./charts/*": "./src/charts/*/index.ts",
|
2025-08-18 19:35:34 +05:30
|
|
|
"./dialog": "./src/dialog/index.ts",
|
|
|
|
|
"./menu": "./src/menu/index.ts",
|
[WEB-3781] Analytics page enhancements (#7005)
* chore: analytics endpoint
* added anlytics v2
* updated status icons
* added area chart in workitems and en translations
* active projects
* chore: created analytics chart
* chore: validation errors
* improved radar-chart , added empty states , added projects summary
* chore: added a new graph in advance analytics
* integrated priority chart
* chore: added csv exporter
* added priority dropdown
* integrated created vs resolved chart
* custom x and y axis label in bar and area chart
* added wrapper styles to legends
* added filter components
* fixed temp data imports
* integrated filters in priority charts
* added label to priority chart and updated duration filter
* refactor
* reverted to void onchange
* fixed some contant exports
* fixed type issues
* fixed some type and build issues
* chore: updated the filtering logic for analytics
* updated default value to last_30_days
* percentage value whole number and added some rules for axis options
* fixed some translations
* added - custom tick for radar, calc of insight cards, filter labels
* chore: opitmised the analytics endpoint
* replace old analytics path with new , updated labels of insight card, done some store fixes
* chore: updated the export request
* Enhanced ProjectSelect to support multi-select, improved state management, and optimized data fetching and component structure.
* fix: round completion percentage calculation in ActiveProjectItem
* added empty states in project insights
* Added loader and empty state in created/resolved chart
* added loaders
* added icons in filters
* added custom colors in customised charts
* cleaned up some code
* added some responsiveness
* updated translations
* updated serrchbar for the table
* added work item modal in project analytics
* fixed some of the layput issues in the peek view
* chore: updated the base function for viewsets
* synced tab to url
* code cleanup
* chore: updated the export logic
* fixed project_ids filter
* added icon in projectdropdown
* updated export button position
* export csv and emptystates icons
* refactor
* code refactor
* updated loaders, moved color pallete to contants, added nullish collasece operator in neccessary places
* removed uneccessary cn
* fixed formatting issues
* fixed empty project_ids in payload
* improved null checks
* optimized charts
* modified relevant variables to observable.ref
* fixed the duration type
* optimized some code
* updated query key in project-insight
* updated query key in project-insight
* updated formatting
* chore: replaced analytics route with new one and done some optimizations
* removed the old analytics
---------
Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
2025-05-12 20:50:33 +05:30
|
|
|
"./table": "./src/table/index.ts",
|
2025-08-18 19:35:34 +05:30
|
|
|
"./tabs": "./src/tabs/index.ts",
|
2025-08-21 13:03:18 +05:30
|
|
|
"./popover": "./src/popover/index.ts",
|
2025-08-21 15:32:29 +05:30
|
|
|
"./command": "./src/command/index.ts",
|
|
|
|
|
"./combobox": "./src/combobox/index.ts",
|
2025-08-21 13:03:18 +05:30
|
|
|
"./tooltip": "./src/tooltip/index.ts",
|
2025-08-23 00:27:31 +05:30
|
|
|
"./styles/fonts": "./src/styles/fonts/index.css",
|
2025-09-01 19:42:12 +05:30
|
|
|
"./switch": "./src/switch/index.ts",
|
2025-09-02 18:19:56 +05:30
|
|
|
"./utils": "./src/utils/index.ts",
|
2025-09-01 19:42:12 +05:30
|
|
|
"./accordion": "./src/accordion/index.ts",
|
|
|
|
|
"./card": "./src/card/index.ts"
|
2025-01-14 16:50:41 +05:30
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-08-18 19:35:34 +05:30
|
|
|
"@base-ui-components/react": "^1.0.0-beta.2",
|
2025-08-19 07:36:42 -07:00
|
|
|
"@plane/constants": "workspace:*",
|
|
|
|
|
"@plane/hooks": "workspace:*",
|
|
|
|
|
"@plane/types": "workspace:*",
|
[WEB-3781] Analytics page enhancements (#7005)
* chore: analytics endpoint
* added anlytics v2
* updated status icons
* added area chart in workitems and en translations
* active projects
* chore: created analytics chart
* chore: validation errors
* improved radar-chart , added empty states , added projects summary
* chore: added a new graph in advance analytics
* integrated priority chart
* chore: added csv exporter
* added priority dropdown
* integrated created vs resolved chart
* custom x and y axis label in bar and area chart
* added wrapper styles to legends
* added filter components
* fixed temp data imports
* integrated filters in priority charts
* added label to priority chart and updated duration filter
* refactor
* reverted to void onchange
* fixed some contant exports
* fixed type issues
* fixed some type and build issues
* chore: updated the filtering logic for analytics
* updated default value to last_30_days
* percentage value whole number and added some rules for axis options
* fixed some translations
* added - custom tick for radar, calc of insight cards, filter labels
* chore: opitmised the analytics endpoint
* replace old analytics path with new , updated labels of insight card, done some store fixes
* chore: updated the export request
* Enhanced ProjectSelect to support multi-select, improved state management, and optimized data fetching and component structure.
* fix: round completion percentage calculation in ActiveProjectItem
* added empty states in project insights
* Added loader and empty state in created/resolved chart
* added loaders
* added icons in filters
* added custom colors in customised charts
* cleaned up some code
* added some responsiveness
* updated translations
* updated serrchbar for the table
* added work item modal in project analytics
* fixed some of the layput issues in the peek view
* chore: updated the base function for viewsets
* synced tab to url
* code cleanup
* chore: updated the export logic
* fixed project_ids filter
* added icon in projectdropdown
* updated export button position
* export csv and emptystates icons
* refactor
* code refactor
* updated loaders, moved color pallete to contants, added nullish collasece operator in neccessary places
* removed uneccessary cn
* fixed formatting issues
* fixed empty project_ids in payload
* improved null checks
* optimized charts
* modified relevant variables to observable.ref
* fixed the duration type
* optimized some code
* updated query key in project-insight
* updated query key in project-insight
* updated formatting
* chore: replaced analytics route with new one and done some optimizations
* removed the old analytics
---------
Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
2025-05-12 20:50:33 +05:30
|
|
|
"@tanstack/react-table": "^8.21.3",
|
2025-01-14 16:50:41 +05:30
|
|
|
"class-variance-authority": "^0.7.1",
|
2025-09-02 18:19:56 +05:30
|
|
|
"cmdk": "^1.1.1",
|
2025-08-26 02:14:00 +05:30
|
|
|
"clsx": "^2.1.1",
|
2025-01-14 16:50:41 +05:30
|
|
|
"lucide-react": "^0.469.0",
|
2025-09-01 19:42:56 +05:30
|
|
|
"react": "catalog:",
|
|
|
|
|
"react-dom": "catalog:",
|
2025-08-28 18:39:27 +05:30
|
|
|
"recharts": "^2.15.1",
|
|
|
|
|
"tailwind-merge": "^3.3.1"
|
2025-02-10 16:01:06 +05:30
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-08-19 07:36:42 -07:00
|
|
|
"@plane/eslint-config": "workspace:*",
|
|
|
|
|
"@plane/tailwind-config": "workspace:*",
|
|
|
|
|
"@plane/typescript-config": "workspace:*",
|
2025-08-26 02:14:00 +05:30
|
|
|
"@storybook/react-vite": "^9.1.2",
|
2025-09-01 19:42:56 +05:30
|
|
|
"@types/react": "catalog:",
|
|
|
|
|
"@types/react-dom": "catalog:",
|
2025-08-26 02:14:00 +05:30
|
|
|
"eslint-plugin-storybook": "^9.1.2",
|
|
|
|
|
"storybook": "^9.1.2",
|
2025-09-01 19:42:56 +05:30
|
|
|
"typescript": "catalog:"
|
2025-01-14 16:50:41 +05:30
|
|
|
}
|
2025-06-30 23:56:34 +05:30
|
|
|
}
|