-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GitHub Actions
committed
Jan 27, 2025
0 parents
commit f86cae8
Showing
21 changed files
with
52,660 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// .eslintrc.mjs | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
'plugin:@wordpress/eslint-plugin/recommended-with-formatting', | ||
'plugin:storybook/recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
], | ||
settings: { | ||
'import/resolver': { | ||
node: { | ||
extensions: ['.js', '.jsx', '.ts', '.tsx'], | ||
}, | ||
alias: { | ||
map: [ | ||
['@/icons', './src/ui/icons.js'], | ||
['@/components', './src/components'], | ||
['@/utilities', './src/utilities'], | ||
['@', './src'], | ||
], | ||
extensions: ['.js', '.jsx', '.ts', '.tsx'], | ||
}, | ||
}, | ||
}, | ||
parserOptions: { | ||
requireConfigFile: false, | ||
babelOptions: { | ||
presets: ['@wordpress/babel-preset-default'], | ||
}, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['./src/utilities/withTW.js'], | ||
rules: { | ||
'@typescript-eslint/no-var-requires': 'off', | ||
}, | ||
}, | ||
], | ||
rules: { | ||
'jsx-a11y/click-events-have-key-events': 'off', | ||
'react-hooks/exhaustive-deps': 'off', | ||
'jsx-a11y/label-has-associated-control': 'off', | ||
'jsx-a11y/no-noninteractive-element-interactions': 'off', | ||
'jsx-a11y/anchor-is-valid': 'off', | ||
|
||
'no-mixed-spaces-and-tabs': 'off', | ||
'no-mixed-operators': 'off', | ||
}, | ||
globals: { | ||
localStorage: 'readonly', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Import the default config file and expose it in the project root. | ||
// Useful for editor integrations. | ||
|
||
import config from '@wordpress/prettier-config'; | ||
|
||
config.overrides = [ | ||
{ | ||
files: ['*.scss', '*.css'], | ||
options: { | ||
printWidth: 500, | ||
singleQuote: false, | ||
}, | ||
}, | ||
]; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
export default { | ||
extends: ['@wordpress/stylelint-config'], | ||
rules: { | ||
'font-family-name-quotes': 'always-where-recommended', | ||
'function-url-quotes': 'always', | ||
'declaration-property-unit-allowed-list': { | ||
'/^line-height/': ['em', 'rem', 'px'], | ||
}, | ||
'comment-empty-line-before': null, | ||
'selector-class-pattern': null, | ||
'selector-id-pattern': null, | ||
'no-descending-specificity': null, | ||
'no-duplicate-selectors': null, | ||
'at-rule-no-unknown': null, | ||
'at-rule-empty-line-before': null, | ||
'at-rule-empty-line-before': [ | ||
'always', | ||
{ | ||
except: ['blockless-after-same-name-blockless', 'first-nested'], | ||
ignore: ['after-comment'], | ||
}, | ||
], | ||
'block-no-empty': true, | ||
'no-empty-source': true, | ||
'declaration-empty-line-before': [ | ||
'always', | ||
{ | ||
except: ['after-declaration', 'first-nested'], | ||
ignore: ['after-comment', 'inside-single-line-block'], | ||
}, | ||
], | ||
'rule-empty-line-before': [ | ||
'always-multi-line', | ||
{ | ||
except: ['first-nested'], | ||
ignore: ['after-comment'], | ||
}, | ||
], | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.scss', '**/*.scss'], | ||
extends: '@wordpress/stylelint-config/scss-stylistic', | ||
}, | ||
{ | ||
files: ['*.css', '**/*.css'], | ||
extends: '@wordpress/stylelint-config/stylistic', | ||
}, | ||
], | ||
customSyntax: 'postcss-scss', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
Version 1.4.0 - 27th January, 2025 | ||
- New: Added a Hamburger Menu component. | ||
- Improvement: Added Y-axis tick formatter to the BarChart component. | ||
|
||
Version 1.3.6 - 9th January, 2025 | ||
- Improvement: Optimized the Select component item search logic and reorganized props for improved usability. | ||
- Improvement: Added a vertical dashed line feature to the LineChart. | ||
- Fixed: LineChart component Tooltip does not show the required information. | ||
|
||
Version 1.3.5 - 6th January, 2025 | ||
- Improvement: Display a light blue color on hover when selecting a date range. | ||
|
||
Version 1.3.4 - 31th December, 2024 | ||
- Improvement - Enhanced the UI of the Table and Line chart component for responsive design. | ||
- Improvement - Added option group to the Select component. | ||
- Improvement - Updated the Table component design. | ||
- Improvement - Added support for controlling selected dates through the 'selected' prop in DatePicker component. | ||
- Improvement - Enhanced the UI of the Drawer component. | ||
- Improvement - Added a new prop to the Badge component to disable hover effect. | ||
- Fixed - Adjusted search icon size in Select combobox for better visual consistency. | ||
- Fixed - Focus ring offset of Select, Switch, Checkbox, and dropdown component. | ||
- Fixed - Checkbox/Switch toggle behavior with hint text and adjusted help text size. | ||
- Fixed - DatePicker component crash when navigating through years. | ||
- Fixed - DatePicker component UI styles for better visual consistency. | ||
|
||
Version 1.3.3 - 20th December, 2024 | ||
- Fixed - React `Each child in a list should have a unique "key" prop` console warning. | ||
- Fixed - Toaster content overlapping with the close button. | ||
|
||
Version 1.3.2 - 17th December, 2024 | ||
- Fixed - Adjusted the color of the Switch component label and help text. | ||
|
||
Version 1.3.1 - 17th December, 2024 | ||
- Fixed - The underline issue to enhance visual consistency. | ||
- Fixed - Issue with the Select component where a check mark was displayed even when no item was selected. | ||
- Fixed - Design mismatch in the Switch component. | ||
- Fixed - Text, icon size, alignment, and color inconsistencies in the Date Picker to ensure a uniform appearance. | ||
- Fixed - Input ref not pointing to the input field. | ||
- Fixed - Icon size and alignment issues in the Menu component for better visual clarity. | ||
- Fixed - Sidebar height not being overridable. | ||
- Improvement - Removed backdrop blur to enhance performance and visual clarity. | ||
|
||
Version 1.3.0 - 16th December, 2024 | ||
- New - Table component. | ||
- Fixed - Asterisk missing on required input label. | ||
|
||
Version 1.2.2 - 4th December, 2024 | ||
- Improvement - Removed margin and added new props to the Line Chart component for customizability. | ||
|
||
Version 1.2.1 - 25th November, 2024 | ||
- Improvement - Added new props to the Bar Chart component for customizability. | ||
- Improvement - Dropzone UAT improvements. | ||
- Improvement - Sidebar Compatibility fixes with NextJS. | ||
- Improvement - Improved the storybook deployment workflow to use latest library. | ||
|
||
Version 1.2.0 - 20th November, 2024 | ||
- New - Dropzone | ||
- New - Added Unit Tests setup and a11y CI setup | ||
- Improvement - All components are a11y compatible. | ||
- Fixes - Issues reported by internal dev team. | ||
|
||
Version 1.1.0 - 11th November, 2024 | ||
- New - Area Chart | ||
- New - Bar Chart | ||
- New - Line Chart | ||
- New - Pie Chart | ||
- New - Accordion | ||
- New - Search | ||
- New - Pagination | ||
- New - Breadcrumb | ||
- Improvement - Used vite instead of webpack for better build performance | ||
- Improvement - Used typescript for better storybook development and easy documentation | ||
- Fixes - Button component used in dropdown component | ||
- Fixed - Fixed multiple issues suggested in developer UAT. | ||
|
||
Version 1.0.0 - 17th October, 2024 | ||
- New - Alert | ||
- New - Avatar | ||
- New - Badge | ||
- New - Button | ||
- New - Buttom Group | ||
- New - Cards | ||
- New - Container | ||
- New - Checkbox | ||
- New - Datepicker | ||
- New - Dialog | ||
- New - Drawer | ||
- New - Dropdown Menu | ||
- New - Editor Input | ||
- New - Input | ||
- New - Label | ||
- New - Loader | ||
- New - Menu Item | ||
- New - Progress Bar | ||
- New - Progress Steps | ||
- New - Radio Button Group | ||
- New - Search | ||
- New - Select | ||
- New - Sidebar | ||
- New - Skeleton | ||
- New - Switch | ||
- New - Tabs | ||
- New - Text Area | ||
- New - Title | ||
- New - Toaster | ||
- New - Tooltip | ||
- New - Topbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"use strict";var o=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function l(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}exports.commonjsGlobal=o;exports.getDefaultExportFromCjs=l; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
var o = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {}; | ||
function l(e) { | ||
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e; | ||
} | ||
export { | ||
o as c, | ||
l as g | ||
}; |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.