New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@therms/atalaya

Package Overview
Dependencies
Maintainers
2
Versions
790
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@therms/atalaya - npm Package Compare versions

Comparing version 1.1.0-beta.48 to 1.1.0-beta.49

13

CHANGELOG.md

@@ -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 @@

2

lib/components/atoms/Badge/utils/index.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc