@therms/atalaya
Advanced tools
Comparing version 1.4.0-beta.9 to 1.4.0-beta.10
@@ -0,1 +1,8 @@ | ||
# [1.4.0-beta.10](http://bitbucket.org/thermsio/atalaya/compare/v1.4.0-beta.9...v1.4.0-beta.10) (2021-03-03) | ||
### Bug Fixes | ||
* **CORE-1251:** update inline children type ([c0c7d21](http://bitbucket.org/thermsio/atalaya/commits/c0c7d212033b7944d82bddaee7fa0a0f330e91d9)) | ||
# [1.4.0-beta.9](http://bitbucket.org/thermsio/atalaya/compare/v1.4.0-beta.8...v1.4.0-beta.9) (2021-03-03) | ||
@@ -2,0 +9,0 @@ |
import React from 'react'; | ||
import { TagProps } from '../../atoms/Tag'; | ||
import { Spacing } from '../../../layout/types'; | ||
interface Props { | ||
alignX?: Spacing | Spacing[]; | ||
children: React.ReactElement<TagProps>[]; | ||
import { Justification } from '../../../layout/types'; | ||
interface TagListItemProps extends TagProps { | ||
key: string; | ||
} | ||
interface TagGroupProps { | ||
alignX?: Justification | Justification[]; | ||
max?: number; | ||
sm?: boolean; | ||
tags: TagListItemProps | TagListItemProps[]; | ||
} | ||
declare const TagGroup: ({ children, max, sm, }: Props) => React.ReactElement; | ||
declare const TagGroup: ({ alignX, max, sm, tags, }: TagGroupProps) => React.ReactElement; | ||
export default TagGroup; |
import React from 'react'; | ||
import { InlineClassProps } from './utils'; | ||
interface InlineProps extends InlineClassProps { | ||
children: React.ReactElement; | ||
children: React.ReactNode; | ||
} | ||
declare const Inline: (props: InlineProps) => React.ReactElement; | ||
export default Inline; |
{ | ||
"name": "@therms/atalaya", | ||
"version": "1.4.0-beta.9", | ||
"version": "1.4.0-beta.10", | ||
"main": "./lib/cjs.js", | ||
@@ -36,9 +36,6 @@ "module": "./lib/index.js", | ||
"@babel/core": "^7.12.13", | ||
"@fortawesome/fontawesome-svg-core": "^1.2.34", | ||
"@fortawesome/free-solid-svg-icons": "^5.15.2", | ||
"@fortawesome/react-fontawesome": "^0.1.14", | ||
"@rollup/plugin-commonjs": "^17.1.0", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@rollup/plugin-node-resolve": "^11.1.1", | ||
"@rollup/plugin-typescript": "^8.1.1", | ||
"@rollup/plugin-typescript": "^8.2.0", | ||
"@semantic-release/changelog": "^5.0.1", | ||
@@ -45,0 +42,0 @@ "@semantic-release/commit-analyzer": "^8.0.1", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
206709
68
2865