native-pytech 1.0.80 → 1.0.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ import Item from '../Item';
4
4
  export default memo(({ colorRows, ...pageProps }) => {
5
5
  return (<Host style={{ flex: 1 }}>
6
6
  <Column verticalArrangement={{ spacedBy: 16 }}>
7
- {colorRows.map((row, index) => (<Row key={index} verticalArrangement="spaceBetween">
7
+ {colorRows.map((row, index) => (<Row key={index} verticalArrangement="spaceEvenly">
8
8
  {row.map((color, indexColor) => (<Item color={color} size={55} {...pageProps}/>))}
9
9
  </Row>))}
10
10
  </Column>
@@ -5,9 +5,9 @@ import { colors } from '../../../../libs/components/Gradient';
5
5
  export default memo(({ color, size, selectedColor, onSelectColor, }) => {
6
6
  const modifiers = useMemo(() => [
7
7
  sizeModifier(size, size),
8
- clip({ type: 'circle' }),
8
+ border(2, colors[color].light),
9
9
  background(colors[color].middle),
10
- border(1, colors[color].light),
10
+ clip({ type: 'circle' }),
11
11
  clickable(() => onSelectColor?.(color))
12
12
  ], []);
13
13
  return <Box modifiers={modifiers}/>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-pytech",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
4
4
  "description": "Libreria de React Native Pytech",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",