diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 94db6b99e5..47877e8534 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,14 @@ # docs +## 10.7.4 + +### Patch Changes + +- Bump version 10.7.4 +- Updated dependencies + - @heathmont/moon-core-tw@10.7.4 + - @heathmont/moon-base-tw@10.7.4 + ## 10.7.3 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index 21bd44148e..5a00135fe0 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "10.7.3", + "version": "10.7.4", "private": true, "scripts": { "dev": "next dev", @@ -9,8 +9,8 @@ "lint": "next lint" }, "dependencies": { - "@heathmont/moon-base-tw": "workspace:^10.7.3", - "@heathmont/moon-core-tw": "workspace:^10.7.3", + "@heathmont/moon-base-tw": "workspace:^10.7.4", + "@heathmont/moon-core-tw": "workspace:^10.7.4", "@heathmont/moon-icons-tw": "9.28.4", "@types/node": "20.4.9", "@types/react": "18.2.19", diff --git a/next-docs/CHANGELOG.md b/next-docs/CHANGELOG.md index 4e9f04bf67..551f53dab2 100644 --- a/next-docs/CHANGELOG.md +++ b/next-docs/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 10.7.4 + +### Patch Changes + +- Bump version 10.7.4 +- Updated dependencies + - @heathmont/moon-table-tw@10.7.4 + - @heathmont/moon-core-tw@10.7.4 + - @heathmont/moon-cmdk-tw@10.7.4 + - @heathmont/moon-themes-tw@10.7.4 + ## 10.7.3 ### Patch Changes diff --git a/next-docs/package.json b/next-docs/package.json index 69b2886f28..7ff8ac4750 100644 --- a/next-docs/package.json +++ b/next-docs/package.json @@ -1,6 +1,6 @@ { "name": "next-docs", - "version": "10.7.3", + "version": "10.7.4", "private": true, "scripts": { "dev": "next dev", @@ -19,9 +19,9 @@ "@heathmont/moon-assets": "workspace:^10.7.1", "@heathmont/moon-charts": "workspace:^10.7.1", "@heathmont/moon-components": "workspace:^10.7.1", - "@heathmont/moon-cmdk-tw": "workspace:^10.7.3", + "@heathmont/moon-cmdk-tw": "workspace:^10.7.4", "@heathmont/moon-core": "workspace:^10.7.1", - "@heathmont/moon-core-tw": "workspace:^10.7.3", + "@heathmont/moon-core-tw": "workspace:^10.7.4", "@heathmont/moon-datepicker": "workspace:^10.7.1", "@heathmont/moon-draggabletable": "workspace:^10.7.1", "@heathmont/moon-icons": "workspace:^10.7.1", @@ -30,9 +30,9 @@ "@heathmont/moon-select": "workspace:^10.7.1", "@heathmont/moon-sidebar": "workspace:^10.7.1", "@heathmont/moon-table": "workspace:^10.7.1", - "@heathmont/moon-table-tw": "workspace:^10.7.3", + "@heathmont/moon-table-tw": "workspace:^10.7.4", "@heathmont/moon-themes": "workspace:^10.7.1", - "@heathmont/moon-themes-tw": "workspace:^10.7.3", + "@heathmont/moon-themes-tw": "workspace:^10.7.4", "@heathmont/moon-utils": "workspace:^10.7.1", "@heathmont/moon-icons-tw": "9.28.5", "@hookform/resolvers": "3.2.0", diff --git a/next-docs/public/examples/combobox/__tests__/__snapshots__/index.test.tsx.snap b/next-docs/public/examples/combobox/__tests__/__snapshots__/index.test.tsx.snap index ab8344f4d7..aca3e1bad9 100644 --- a/next-docs/public/examples/combobox/__tests__/__snapshots__/index.test.tsx.snap +++ b/next-docs/public/examples/combobox/__tests__/__snapshots__/index.test.tsx.snap @@ -705,7 +705,7 @@ Object { >(({ children, className, innerLabel, -}: WithChildren) => { +}, + ref +) => { const { size, input, popper, disabled, isError } = useComboboxContext('Combobox.Trigger'); @@ -136,7 +138,7 @@ const Trigger = ({ {children} ); -}; +}); const Input = ({ displayValue, @@ -153,7 +155,6 @@ const Input = ({ onChange={({ target: { value } }) => { onQueryChange ? onQueryChange(value) : () => {}; }} - ref={popper?.setAnchor} as={NativeInput} displayValue={displayValue} placeholder={placeholder} @@ -165,11 +166,12 @@ const Input = ({ className )} disabled={disabled} - isError={isError} + error={isError} onFocus={() => input?.setIsFocused(true)} onBlur={() => input?.setIsFocused(false)} aria-label={rest['aria-label']} {...rest} + ref={popper?.setAnchor} /> ); }; @@ -190,7 +192,6 @@ const InsetInput = ({ onChange={({ target: { value } }) => { onQueryChange ? onQueryChange(value) : () => {}; }} - ref={popper?.setAnchor} as={NativeInput} displayValue={displayValue} placeholder={placeholder === undefined ? '' : `${placeholder}`} @@ -208,11 +209,12 @@ const InsetInput = ({ className, 'leading-5' )} - isError={isError} + error={isError} onFocus={() => input?.setIsFocused(true)} onBlur={() => input?.setIsFocused(false)} aria-label={rest['aria-label']} {...rest} + ref={popper?.setAnchor} /> {label} diff --git a/workspaces/tables/CHANGELOG.md b/workspaces/tables/CHANGELOG.md index 7d0bda91ef..9c4c266a6f 100644 --- a/workspaces/tables/CHANGELOG.md +++ b/workspaces/tables/CHANGELOG.md @@ -1,5 +1,13 @@ # @heathmont/moon-table-tw +## 10.7.4 + +### Patch Changes + +- Bump version 10.7.4 +- Updated dependencies + - @heathmont/moon-core-tw@10.7.4 + ## 10.7.3 ### Patch Changes diff --git a/workspaces/tables/package.json b/workspaces/tables/package.json index 2578d0454d..02698b45bf 100644 --- a/workspaces/tables/package.json +++ b/workspaces/tables/package.json @@ -1,7 +1,7 @@ { "name": "@heathmont/moon-table-tw", "sideEffects": false, - "version": "10.7.3", + "version": "10.7.4", "files": [ "lib" ], @@ -20,7 +20,7 @@ "chokidar": "chokidar \"**/*.tsx\" \"**/*.ts\" -i \"lib/**/*.d.ts\" -c \"pnpm run build:code\" " }, "dependencies": { - "@heathmont/moon-core-tw": "workspace:^10.7.3", + "@heathmont/moon-core-tw": "workspace:^10.7.4", "react": "18.2.0", "react-dom": "18.2.0", "react-table": "7.8.0", diff --git a/workspaces/tables/src/components/TD.tsx b/workspaces/tables/src/components/TD.tsx index 2f6f47c4d7..8a023b4127 100644 --- a/workspaces/tables/src/components/TD.tsx +++ b/workspaces/tables/src/components/TD.tsx @@ -51,7 +51,7 @@ const TD = forwardRef( stickySide === 'right' && 'before:absolute before:w-px before:bg-beerus before:h-[70%] before:bottom-[15%] before:start-0 before:-ms-2', isSelected || isHovered - ? 'border-piccolo cursor-pointer' + ? 'border-piccolo cursor-pointer bg-goku' : `bg-${backgroundColor} border-${backgroundColor}`, selectable && 'ps-2 text-bulma border-t-1 border-t-transparent border-b-1 border-b-transparent', diff --git a/workspaces/themes/CHANGELOG.md b/workspaces/themes/CHANGELOG.md index 6dc1a59a92..62fa443b39 100644 --- a/workspaces/themes/CHANGELOG.md +++ b/workspaces/themes/CHANGELOG.md @@ -1,5 +1,11 @@ # @heathmont/moon-themes-tw +## 10.7.4 + +### Patch Changes + +- Bump version 10.7.4 + ## 10.7.3 ### Patch Changes diff --git a/workspaces/themes/package.json b/workspaces/themes/package.json index 45f97c6662..ad87eb3dc8 100644 --- a/workspaces/themes/package.json +++ b/workspaces/themes/package.json @@ -1,7 +1,7 @@ { "name": "@heathmont/moon-themes-tw", "sideEffects": false, - "version": "10.7.3", + "version": "10.7.4", "files": [ "lib" ],