2023-03-03 06:47:35 +00:00
|
|
|
{
|
2024-08-16 05:49:42 +00:00
|
|
|
"name": "@appsmith/wds",
|
2023-03-03 06:47:35 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
|
"main": "src/index.ts",
|
|
|
|
|
"author": "Valera Melnikov <valera@appsmith.com>, Pawan Kumar <pawan@appsmith.com>",
|
|
|
|
|
"license": "MIT",
|
2023-03-23 11:32:18 +00:00
|
|
|
"scripts": {
|
2023-05-22 12:55:46 +00:00
|
|
|
"lint": "yarn g:lint",
|
|
|
|
|
"prettier": "yarn g:prettier",
|
feat: Tabler Icons (#30248)
Fixes #28443
Fixes #27866
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **New Features**
- Introduced `IconSelectControlV2` for enhanced icon selection with
keyboard navigation and state updates.
- Added new `iconStyle` theme property for users to define icon styles
globally.
- Implemented dynamic icon loading with fallback options, improving icon
management.
- **Enhancements**
- Simplified icon usage across various components like `Button`,
`IconButton`, `Menu`, `ModalHeader`, `TextInput`, and more by directly
using icon names.
- Enhanced `Tag` component to use a generic `Icon` component for the
remove action.
- **Style Updates**
- Added CSS classes for resizing, boundary display, and pointer event
handling.
- Updated icon size definitions using CSS custom properties.
- **Bug Fixes**
- Fixed icon-related issues in `Button`, `ActionGroup`, `Menu`, and
`TextInput` components to ensure proper icon display.
- **Documentation**
- Updated storybook and test cases to reflect new icon selection and
usage.
- **Refactor**
- Refactored theme and token management to include `iconStyle` for
consistent icon theming.
- Refined the `ButtonGroupWidget` and `MenuButtonWidget` to use the new
icon selection mechanism.
- **Chores**
- Cleaned up unused icon imports and components across the codebase to
streamline the icon system.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2024-01-19 08:54:44 +00:00
|
|
|
"test:unit": "yarn g:jest",
|
|
|
|
|
"build:icons": "npx tsx ./src/scripts/build-icons.ts"
|
2023-03-23 11:32:18 +00:00
|
|
|
},
|
2023-03-03 06:47:35 +00:00
|
|
|
"dependencies": {
|
2024-08-16 05:49:42 +00:00
|
|
|
"@appsmith/wds-headless": "workspace:^",
|
|
|
|
|
"@appsmith/wds-theming": "workspace:^",
|
2023-10-06 06:59:02 +00:00
|
|
|
"@emotion/css": "^11.11.2",
|
2024-09-30 09:28:46 +00:00
|
|
|
"@floating-ui/react": "^0.26.24",
|
|
|
|
|
"@react-aria/focus": "^3.18.2",
|
2023-04-18 11:51:56 +00:00
|
|
|
"@react-aria/utils": "^3.16.0",
|
2023-05-30 12:37:49 +00:00
|
|
|
"@react-aria/visually-hidden": "^3.8.0",
|
2024-09-30 09:28:46 +00:00
|
|
|
"@react-spectrum/utils": "^3.11.10",
|
|
|
|
|
"@react-stately/collections": "^3.10.9",
|
|
|
|
|
"@react-stately/list": "^3.10.8",
|
2023-12-19 13:04:27 +00:00
|
|
|
"@react-types/actiongroup": "^3.4.6",
|
2024-05-24 12:58:45 +00:00
|
|
|
"@react-types/shared": "^3.23.1",
|
2024-07-22 08:56:07 +00:00
|
|
|
"@tabler/icons-react": "^3.10.0",
|
2023-09-22 07:14:58 +00:00
|
|
|
"clsx": "^2.0.0",
|
2023-12-11 07:10:40 +00:00
|
|
|
"lodash": "*",
|
2024-05-24 12:58:45 +00:00
|
|
|
"react-aria-components": "^1.2.1"
|
2023-04-05 12:39:11 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
feat: Tabler Icons (#30248)
Fixes #28443
Fixes #27866
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **New Features**
- Introduced `IconSelectControlV2` for enhanced icon selection with
keyboard navigation and state updates.
- Added new `iconStyle` theme property for users to define icon styles
globally.
- Implemented dynamic icon loading with fallback options, improving icon
management.
- **Enhancements**
- Simplified icon usage across various components like `Button`,
`IconButton`, `Menu`, `ModalHeader`, `TextInput`, and more by directly
using icon names.
- Enhanced `Tag` component to use a generic `Icon` component for the
remove action.
- **Style Updates**
- Added CSS classes for resizing, boundary display, and pointer event
handling.
- Updated icon size definitions using CSS custom properties.
- **Bug Fixes**
- Fixed icon-related issues in `Button`, `ActionGroup`, `Menu`, and
`TextInput` components to ensure proper icon display.
- **Documentation**
- Updated storybook and test cases to reflect new icon selection and
usage.
- **Refactor**
- Refactored theme and token management to include `iconStyle` for
consistent icon theming.
- Refined the `ButtonGroupWidget` and `MenuButtonWidget` to use the new
icon selection mechanism.
- **Chores**
- Cleaned up unused icon imports and components across the codebase to
streamline the icon system.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2024-01-19 08:54:44 +00:00
|
|
|
"@types/fs-extra": "^11.0.4",
|
2023-04-27 06:25:14 +00:00
|
|
|
"eslint-plugin-storybook": "^0.6.10"
|
2023-04-05 12:39:11 +00:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
|
2023-03-03 06:47:35 +00:00
|
|
|
}
|
|
|
|
|
}
|