Skip to content

Commit

Permalink
chore(release): 1.0.1
Browse files Browse the repository at this point in the history
## [1.0.1](v1.0.0...v1.0.1) (2022-08-18)

### Bug Fixes

* add explicit function return types ([#3](#3)) ([ccf7099](ccf7099))
  • Loading branch information
semantic-release-bot committed Aug 18, 2022
1 parent ccf7099 commit 9062e21
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 46 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.0.1](https://github.com/dash-ui/layout/compare/v1.0.0...v1.0.1) (2022-08-18)

### Bug Fixes

- add explicit function return types ([#3](https://github.com/dash-ui/layout/issues/3)) ([ccf7099](https://github.com/dash-ui/layout/commit/ccf70992ff9c4ff630121d97a0a81c5f06a653de))

# [1.0.0](https://github.com/dash-ui/layout/compare/v0.1.3...v1.0.0) (2022-06-25)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash-ui/layout",
"version": "1.0.0",
"version": "1.0.1",
"description": "A framework-agnostic layout library written in Dash",
"license": "MIT",
"author": "Jared Lunde <jared.lunde@gmail.com> (https://jaredlunde.com/)",
Expand Down
44 changes: 0 additions & 44 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6623,13 +6623,7 @@ declare function layout<
MQ
>;
readonly default: import("@dash-ui/responsive").ResponsiveOne<MQ>;
/**
* Makes the component display as an `inline-grid` rather than `grid`
*/
readonly inline: import("@dash-ui/responsive").ResponsiveOne<MQ>;
/**
* Sets a `justify-items` CSS property on your component
*/
readonly alignX: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -6645,9 +6639,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets an `align-items` CSS property on your component
*/
readonly alignY: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -6663,9 +6654,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets a `justify-content` CSS property on your component
*/
readonly distributeX: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -6684,9 +6672,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets an `align-content` CSS property on your component
*/
readonly distributeY: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -6705,10 +6690,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets a horizontal and vertical gap between the child elements in the row
* using the "gap" token in your theme
*/
readonly gap: import("@dash-ui/responsive").ResponsiveLazy<
| Extract<keyof Tokens["gap"], string | number>
| [
Expand All @@ -6717,9 +6698,6 @@ declare function layout<
],
MQ
>;
/**
* Sets a `grid-template-rows` CSS property on your component
*/
readonly rows: import("@dash-ui/responsive").ResponsiveLazy<
number | (string | number)[],
MQ
Expand Down Expand Up @@ -9285,13 +9263,7 @@ declare function layout<
}) => string[];
styles: {
readonly default: import("@dash-ui/responsive").ResponsiveOne<MQ>;
/**
* Makes the component display as an `inline-grid` rather than `grid`
*/
readonly inline: import("@dash-ui/responsive").ResponsiveOne<MQ>;
/**
* Sets a `justify-items` CSS property on your component
*/
readonly alignX: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -9307,9 +9279,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets an `align-items` CSS property on your component
*/
readonly alignY: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -9325,9 +9294,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets a `justify-content` CSS property on your component
*/
readonly distributeX: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -9346,9 +9312,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets an `align-content` CSS property on your component
*/
readonly distributeY: import("@dash-ui/responsive").ResponsiveStyle<
| "inherit"
| "initial"
Expand All @@ -9367,10 +9330,6 @@ declare function layout<
Themes,
MQ
>;
/**
* Sets a horizontal and vertical gap between the child elements in the row
* using the "gap" token in your theme
*/
readonly gap: import("@dash-ui/responsive").ResponsiveLazy<
| Extract<keyof Tokens["gap"], string | number>
| [
Expand All @@ -9379,9 +9338,6 @@ declare function layout<
],
MQ
>;
/**
* Sets a `grid-template-rows` CSS property on your component
*/
readonly rows: import("@dash-ui/responsive").ResponsiveLazy<
number | (string | number)[],
MQ
Expand Down
2 changes: 1 addition & 1 deletion types/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

0 comments on commit 9062e21

Please # to comment.