Skip to content

Commit 36f45c0

Browse files
authored
Merge branch 'main' into fix/correcciones-dropdown-post-implementación
2 parents 54e14b3 + 7385409 commit 36f45c0

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## [1.51.8](https://github.com/eclass/ui-kit/compare/v1.51.7...v1.51.8) (2025-03-06)
2+
3+
4+
### Bug Fixes
5+
6+
* nuevo tag de correccion a version publicada ([#680](https://github.com/eclass/ui-kit/issues/680)) ([c7b4e1c](https://github.com/eclass/ui-kit/commit/c7b4e1c51f8c20e1fd4a96a8894c098f8449b12e))
7+
8+
## [1.51.7](https://github.com/eclass/ui-kit/compare/v1.51.6...v1.51.7) (2025-03-06)
9+
10+
11+
### Bug Fixes
12+
13+
* version tag added ([#679](https://github.com/eclass/ui-kit/issues/679)) ([716032c](https://github.com/eclass/ui-kit/commit/716032c8e4e1c52e16621173b5d1802060eda482))
14+
15+
## [1.51.6](https://github.com/eclass/ui-kit/compare/v1.51.5...v1.51.6) (2025-03-06)
16+
17+
18+
### Bug Fixes
19+
20+
* tag de version para dependencias ([#678](https://github.com/eclass/ui-kit/issues/678)) ([a846eec](https://github.com/eclass/ui-kit/commit/a846eecb50f3fcc64483b60c8e3fa17d430c32ac))
21+
22+
## [1.51.5](https://github.com/eclass/ui-kit/compare/v1.51.4...v1.51.5) (2025-03-06)
23+
24+
25+
### Bug Fixes
26+
27+
* **PDYE-1136:** ajustes visuales menu dropdown ([#675](https://github.com/eclass/ui-kit/issues/675)) ([518c546](https://github.com/eclass/ui-kit/commit/518c5460fd23d9f0b3b107a99d4d29c5f5b697e7))
28+
* **tag:** tagnames correction release ([#677](https://github.com/eclass/ui-kit/issues/677)) ([6b296fa](https://github.com/eclass/ui-kit/commit/6b296fac01717863923a016a8ca4a66f6e55a718))
29+
* update tags in file ([#676](https://github.com/eclass/ui-kit/issues/676)) ([5c56b84](https://github.com/eclass/ui-kit/commit/5c56b84370a10b3dbe3e5fc9cf8d075d7daaa267))
30+
131
## [1.51.4](https://github.com/eclass/ui-kit/compare/v1.51.3...v1.51.4) (2025-03-05)
232

333

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eclass/ui-kit",
33
"description": "Elementos UI transversales eClass",
4-
"version": "1.51.4",
4+
"version": "1.51.8",
55
"files": [
66
"dist"
77
],

src/organisms/Alerts/Alert.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Close } from '@/atoms/Icons'
1515
* state='info'
1616
* buttonName='Texto botón'
1717
* buttonIcon={<Multimedia />}
18-
* onClick={() => alert('hola ')}
18+
* onClick={() => alert('hola')}
1919
* m='0 20px'>
2020
* Mensaje
2121
* </Alert>

src/organisms/Calendar/Dropdown/CalendarDropdown/Components/GoToCalendar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const GoToCalendar = ({
2424
<NewTooltip label={text ?? 'Calendario'} m="2px 0 0 0" isDisabled={tooltipDisabled}>
2525
<MenuButton
2626
onClick={() => onlyToCalendar && onClick && onClick()}
27-
background={vars('colors-main-blueGrey') || '#60798E'}
27+
background={vars('colors-main-blueGrey') ?? '#60798E'}
2828
border="1px solid transparent"
2929
borderRadius="100%"
3030
height="30px"

0 commit comments

Comments
 (0)