diff --git a/.github/workflows/size-limit.yml b/.github/workflows/size-limit.yml index 4b1697b8..bf2534a9 100644 --- a/.github/workflows/size-limit.yml +++ b/.github/workflows/size-limit.yml @@ -44,7 +44,7 @@ jobs: run: pnpm build - name: Download baseline stats - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v4 if: github.event.number with: workflow: size-limit.yml @@ -60,7 +60,7 @@ jobs: run: echo '${{ steps.measure_size.outputs.result }}' > ./size-limit-report/output.json - name: Upload stats - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: size-limit-report path: ${{ env.REPORT_FOLDER }} diff --git a/.size-limit.js b/.size-limit.js index 32d2c42f..2b069507 100644 --- a/.size-limit.js +++ b/.size-limit.js @@ -26,13 +26,13 @@ module.exports = [ path: './dist/es/index.js', webpack: true, import: '{ Button }', - limit: '34 kB', + limit: '36 kB', }, { name: 'Tree shaking (just an Icon)', path: './dist/es/index.js', webpack: true, import: '{ AiIcon }', - limit: '23 kB', + limit: '25 kB', }, ]; diff --git a/src/components/forms/FieldWrapper/FieldWrapper.tsx b/src/components/forms/FieldWrapper/FieldWrapper.tsx index be678d6c..5998913c 100644 --- a/src/components/forms/FieldWrapper/FieldWrapper.tsx +++ b/src/components/forms/FieldWrapper/FieldWrapper.tsx @@ -77,7 +77,6 @@ export const FieldWrapper = forwardRef(function FieldWrapper( ) { const { as, - qa, labelPosition = 'top', label, extra, @@ -158,7 +157,6 @@ export const FieldWrapper = forwardRef(function FieldWrapper( <> ( props: T, ) { let { - qa, label, extra, labelPosition = 'top', @@ -39,7 +38,6 @@ export function wrapWithField( return ( { return ( - - - - Item 1 - - - Item 2 - - - Item 3 - - - Item 4 - - - + + + Item 1 + + + Item 2 + + + Item 3 + + + Item 4 + + ); }; diff --git a/src/icons/CalendarEditIcon.tsx b/src/icons/CalendarEditIcon.tsx new file mode 100644 index 00000000..ef266b7f --- /dev/null +++ b/src/icons/CalendarEditIcon.tsx @@ -0,0 +1,16 @@ +export const CalendarEditIcon = ( + + + +); diff --git a/src/icons/index.ts b/src/icons/index.ts index 29c4ebbc..6cb5410d 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -11,6 +11,7 @@ import { BooleanIcon as _BooleanIcon } from './BooleanIcon'; import { CountIcon as _CountIcon } from './CountIcon'; import { CubeIcon as _CubeIcon } from './CubeIcon'; import { CalendarIcon as _CalendarIcon } from './CalendarIcon'; +import { CalendarEditIcon as _CalendarEditIcon } from './CalendarEditIcon'; import { DonutIcon as _DonutIcon } from './DonutIcon'; import { DownIcon as _DownIcon } from './DownIcon'; import { FilterIcon as _FilterIcon } from './FilterIcon'; @@ -79,6 +80,7 @@ export const BooleanIcon = wrapIcon('BooleanIcon', _BooleanIcon); export const CountIcon = wrapIcon('CountIcon', _CountIcon); export const CubeIcon = wrapIcon('CubeIcon', _CubeIcon); export const CalendarIcon = wrapIcon('CalendarIcon', _CalendarIcon); +export const CalendarEditIcon = wrapIcon('CalendarEditIcon', _CalendarEditIcon); export const DonutIcon = wrapIcon('DonutIcon', _DonutIcon); export const DownIcon = wrapIcon('DownIcon', _DownIcon); export const FilterIcon = wrapIcon('FilterIcon', _FilterIcon);