@therms/atalaya
Advanced tools
Comparing version 1.4.0-beta.12 to 1.4.0-beta.13
@@ -0,1 +1,13 @@ | ||
# [1.4.0-beta.13](http://bitbucket.org/thermsio/atalaya/compare/v1.4.0-beta.12...v1.4.0-beta.13) (2021-03-05) | ||
### Bug Fixes | ||
* **CORE-1219:** update borderColor props with semantics ([e0e22b4](http://bitbucket.org/thermsio/atalaya/commits/e0e22b4c4cab6398b324ff0bae80b7d7c9ceefa0)) | ||
### Features | ||
* **CORE-1219:** update PrioritySquare with new semantics ([97106c0](http://bitbucket.org/thermsio/atalaya/commits/97106c070c66ee02482ae33f7f88a4e6e4b619fe)) | ||
# [1.4.0-beta.12](http://bitbucket.org/thermsio/atalaya/compare/v1.4.0-beta.11...v1.4.0-beta.12) (2021-03-05) | ||
@@ -2,0 +14,0 @@ |
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { SquareClassProps } from './utils'; | ||
declare const PrioritySquare: { | ||
({ sm, type, }: SquareClassProps): React.ReactElement; | ||
propTypes: { | ||
type: PropTypes.Requireable<string>; | ||
sm: PropTypes.Requireable<boolean>; | ||
}; | ||
defaultProps: { | ||
type: string; | ||
sm: boolean; | ||
}; | ||
}; | ||
declare const PrioritySquare: ({ sm, type, }: SquareClassProps) => React.ReactElement; | ||
export default PrioritySquare; |
@@ -0,4 +1,5 @@ | ||
import { PriorityTypes } from '../../../../types'; | ||
export interface SquareClassProps { | ||
/** Semantic meaning of the square */ | ||
type?: 'low' | 'medium' | 'high' | 'info'; | ||
type?: PriorityTypes; | ||
/** Use small square */ | ||
@@ -5,0 +6,0 @@ sm?: boolean; |
@@ -0,5 +1,6 @@ | ||
import { SemanticTypes } from '../types'; | ||
export declare type Alignment = 'baseline' | 'center' | 'end' | 'start' | 'stretch'; | ||
export declare type ColumnWidth = '1/12' | '2/12' | '3/12' | '4/12' | '5/12' | '6/12' | '7/12' | '8/12' | '9/12' | '10/12' | '11/12' | 'content'; | ||
export declare type Background = 'background' | 'surface' | 'surface-strong' | 'surface-subtle'; | ||
export declare type BorderColor = 'border' | 'current' | 'transparent' | 'actions-primary' | 'actions-secondary' | 'priority-low' | 'priority-medium' | 'priority-high'; | ||
export declare type BorderColor = 'border' | 'current' | 'transparent' | SemanticTypes; | ||
export declare type BorderWidth = 'none' | 'default' | 'md' | 'lg' | 'xl'; | ||
@@ -6,0 +7,0 @@ export declare type Justification = 'around' | 'between' | 'center' | 'end' | 'evenly' | 'start'; |
{ | ||
"name": "@therms/atalaya", | ||
"version": "1.4.0-beta.12", | ||
"version": "1.4.0-beta.13", | ||
"main": "./lib/cjs.js", | ||
@@ -5,0 +5,0 @@ "module": "./lib/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
173850
2202