@therms/atalaya
Advanced tools
Comparing version 1.1.0-beta.48 to 1.1.0-beta.49
@@ -0,1 +1,14 @@ | ||
# [1.1.0-beta.49](http://bitbucket.org/thermsio/atalaya/compare/v1.1.0-beta.48...v1.1.0-beta.49) (2021-02-24) | ||
### Bug Fixes | ||
* **CORE-1219:** make Columns use space evenly ([f0c4b34](http://bitbucket.org/thermsio/atalaya/commits/f0c4b34427a159466e83c3dd878b81366ee50682)) | ||
### Features | ||
* **CORE-1219:** add fillY prop to Stack component ([fb5e895](http://bitbucket.org/thermsio/atalaya/commits/fb5e895ea6a74ce3c7842658444324de20917df2)) | ||
* **CORE-1219:** temporarely hide theme switcher ([f76dd67](http://bitbucket.org/thermsio/atalaya/commits/f76dd673520311f179448ed0e0fc1d7e2f19f659)) | ||
# [1.1.0-beta.48](http://bitbucket.org/thermsio/atalaya/compare/v1.1.0-beta.47...v1.1.0-beta.48) (2021-02-23) | ||
@@ -2,0 +15,0 @@ |
@@ -5,2 +5,2 @@ export interface BadgeClassProps { | ||
} | ||
export declare const curryBadgeClasses: ({ type }: BadgeClassProps) => string; | ||
export declare const makeBadgeClasses: ({ type }: BadgeClassProps) => string; |
@@ -15,2 +15,2 @@ export interface ImageClassProps { | ||
} | ||
export declare const curryImageClasses: ({ circle, className, fit, fluid, rounded, thumbnail, }: ImageClassProps) => string; | ||
export declare const makeImageClasses: ({ circle, className, fit, fluid, rounded, thumbnail, }: ImageClassProps) => string; |
@@ -5,2 +5,2 @@ export interface TagClassProps { | ||
} | ||
export declare const curryTagClasses: ({ type }: TagClassProps) => string; | ||
export declare const makeTagClasses: ({ type }: TagClassProps) => string; |
@@ -13,2 +13,3 @@ import configs from './configs'; | ||
import Tag from './components/atoms/Tag'; | ||
import './styles/base.css'; | ||
export { ActivityType, Badge, Button, Card, Columns, configs, DispatchUnassignedListItem, Image, Inline, Stack, Tag, tokens, }; |
@@ -5,5 +5,5 @@ import React from 'react'; | ||
children: React.ReactNode; | ||
width: ColumnWidth | Array<ColumnWidth>; | ||
width?: ColumnWidth | Array<ColumnWidth>; | ||
} | ||
declare const Column: ({ children, width }: ColumnProps) => React.ReactElement; | ||
export default Column; |
@@ -1,1 +0,1 @@ | ||
export declare const curryColumnClasses: (width: string | Array<string> | undefined) => string | undefined; | ||
export declare const makeColumnClasses: (width: string | Array<string> | undefined) => string; |
@@ -10,2 +10,2 @@ import { Alignment, BaseLayoutProps, Justification, Spacing } from '../../types'; | ||
} | ||
export declare const curryColumnClasses: ({ alignX, alignY, space, ...restOfProps }: ColumnClassProps) => string; | ||
export declare const makeColumnClasses: ({ alignX, alignY, space, ...restOfProps }: ColumnClassProps) => string; |
@@ -10,3 +10,3 @@ import { Alignment, BaseLayoutProps, Justification, Spacing } from '../../types'; | ||
} | ||
export declare const curryInlineClasses: ({ alignX, alignY, space, ...restOfProps }: InlineClassProps) => string; | ||
export declare const curryInlineChildrenClasses: (space?: "base" | "lg" | "sm" | "xl" | "2xl" | "2xs" | "xs" | Spacing[] | undefined) => string | undefined; | ||
export declare const makeInlineClasses: ({ alignX, alignY, space, ...restOfProps }: InlineClassProps) => string; | ||
export declare const makeInlineChildrenClasses: (space?: "base" | "lg" | "sm" | "xl" | "2xl" | "2xs" | "xs" | Spacing[] | undefined) => string | undefined; |
@@ -5,5 +5,7 @@ import { Alignment, BaseLayoutProps, Spacing } from '../../types'; | ||
alignX?: Array<Alignment> | Alignment; | ||
/** Should height stretch to fill container */ | ||
fillY?: Array<boolean> | boolean; | ||
/** Space between children */ | ||
space?: Array<Spacing> | Spacing; | ||
} | ||
export declare const curryStackClasses: ({ alignX, space, ...restOfProps }: StackClassProps) => string; | ||
export declare const makeStackClasses: ({ alignX, fillY, space, ...restOfProps }: StackClassProps) => string; |
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' | 'full'; | ||
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'; | ||
export declare type Background = 'background' | 'surface' | 'surface-strong' | 'surface-subtle'; | ||
@@ -4,0 +4,0 @@ export declare type BorderColor = 'border' | 'current' | 'transparent'; |
import { BaseLayoutProps } from '../types'; | ||
export declare const curryBaseLayoutClasses: (props: BaseLayoutProps) => string; | ||
export declare const makeBaseLayoutClasses: (props: BaseLayoutProps) => string; |
{ | ||
"name": "@therms/atalaya", | ||
"version": "1.1.0-beta.48", | ||
"version": "1.1.0-beta.49", | ||
"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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
192669
2553