Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-alpha.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
titouanmathis committed Oct 15, 2024
2 parents 33662fd + 674586b commit ad8ac20
Show file tree
Hide file tree
Showing 43 changed files with 1,158 additions and 200 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [v1.0.0-alpha.9](https://github.com/studiometa/ui/compare/1.0.0-alpha.8..1.0.0-alpha.9) (2024-10-15)

### Added

- Add a [FigureShopify](https://ui.studiometa.dev/-/components/atoms/FigureShopify/) component ([#303](https://github.com/studiometa/ui/pull/303))
- **Transition:** add support for grouped transitions ([#305](https://github.com/studiometa/ui/issues/305), [#306](https://github.com/studiometa/ui/pull/306), [be85501](https://github.com/studiometa/ui/commit/be85501))

## [v1.0.0-alpha.8](https://github.com/studiometa/ui/compare/1.0.0-alpha.7..1.0.0-alpha.8) (2024-09-25)

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "studiometa/ui",
"version": "1.0.0-alpha.8",
"version": "1.0.0-alpha.9",
"description": "A set of opiniated, unstyled and accessible components.",
"license": "MIT",
"require": {
Expand Down
190 changes: 178 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studiometa/ui-workspace",
"version": "1.0.0-alpha.8",
"version": "1.0.0-alpha.9",
"private": true,
"workspaces": [
"packages/*"
Expand Down
31 changes: 31 additions & 0 deletions packages/docs/components/atoms/FigureShopify/examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: FigureShopify examples
---

# Examples

## Simple

This is a simple example using a 1 × 1 pixels transparent PNG as a placeholder.

<PreviewPlayground
:html="() => import('./stories/app.liquid?raw')"
:script="() => import('./stories/app.js?raw')"
/>

## Blurred placeholder

This example uses a small sized image with a maximum width of 10 pixels with a blur backdrop-filter as a placeholder.

<PreviewPlayground
:html="() => import('./stories/blurred.liquid?raw')"
:script="() => import('./stories/app.js?raw')"
/>

## Advanced reveal

<PreviewPlayground
:html="() => import('./stories/reveal.liquid?raw')"
:script="() => import('./stories/reveal.js?raw')"
:css="() => import('./stories/reveal.css?raw')"
/>
Loading

0 comments on commit ad8ac20

Please sign in to comment.