From 4c53174fffe465c662e95ac1022f98b85c1a14a8 Mon Sep 17 00:00:00 2001 From: "@casey_baggz_omni" Date: Wed, 28 Aug 2024 15:05:17 -0500 Subject: [PATCH 1/3] feat: Update version to 0.8.0 --- configs/src/versions.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/src/versions.mjs b/configs/src/versions.mjs index f06375e..b10c7c7 100644 --- a/configs/src/versions.mjs +++ b/configs/src/versions.mjs @@ -1,4 +1,4 @@ -export const version = '0.7.4' +export const version = '0.8.0' export const nextTag = 'next' export const packages = ['panda-preset', 'icons', 'react', 'styled-system'] From 5509bf936c9bd959d4425823d3aa01d6127840d8 Mon Sep 17 00:00:00 2001 From: "@casey_baggz_omni" Date: Wed, 28 Aug 2024 15:06:33 -0500 Subject: [PATCH 2/3] feat: Update side-nav.json with new tags for routes --- docs/app/preset/side-nav.json | 2 +- docs/app/react/side-nav.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/app/preset/side-nav.json b/docs/app/preset/side-nav.json index 47f6aee..443fa96 100644 --- a/docs/app/preset/side-nav.json +++ b/docs/app/preset/side-nav.json @@ -27,7 +27,7 @@ "id": "2:b", "label": "Colors", "route": "/preset/colors", - "tag": "next", + "tag": "new", "type": "route" }, { diff --git a/docs/app/react/side-nav.json b/docs/app/react/side-nav.json index 4398769..466c661 100644 --- a/docs/app/react/side-nav.json +++ b/docs/app/react/side-nav.json @@ -32,7 +32,7 @@ { "label": "Notification", "route": "/react/notification", - "tag": "next", + "tag": "new", "type": "route" }, { @@ -72,7 +72,7 @@ { "label": "Table", "route": "/react/table", - "tag": "next", + "tag": "new", "type": "route" }, { @@ -98,7 +98,7 @@ { "label": "Drag & Drop", "route": "/react/drag-n-drop", - "tag": "next", + "tag": "new", "type": "route" }, { @@ -126,7 +126,7 @@ { "label": "File Uploader", "route": "/react/file-uploader", - "tag": "next", + "tag": "new", "type": "route" }, { From 9fa743dca7f157450e8eec86b8c23d49bbc46120 Mon Sep 17 00:00:00 2001 From: "@casey_baggz_omni" Date: Wed, 28 Aug 2024 15:19:03 -0500 Subject: [PATCH 3/3] feat: update input radii --- packages/panda-preset/src/recipes/shared/input.base.ts | 2 +- tests/panda-preset/recipes/slots/input.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/panda-preset/src/recipes/shared/input.base.ts b/packages/panda-preset/src/recipes/shared/input.base.ts index 74f757c..0970ef4 100644 --- a/packages/panda-preset/src/recipes/shared/input.base.ts +++ b/packages/panda-preset/src/recipes/shared/input.base.ts @@ -6,7 +6,7 @@ export const input = { color: 'page.text.initial', h: 'full', pxi: '4', - rounded: 'md', + rounded: 'sm', transitionProperty: 'border-color', transitionDuration: '200ms', transitionTimingFunction: 'ease-in-out', diff --git a/tests/panda-preset/recipes/slots/input.test.ts b/tests/panda-preset/recipes/slots/input.test.ts index 2c5d7ae..35f83c7 100644 --- a/tests/panda-preset/recipes/slots/input.test.ts +++ b/tests/panda-preset/recipes/slots/input.test.ts @@ -24,7 +24,7 @@ describe('input recipe', () => { color: 'page.text.initial', h: 'full', pxi: '4', - rounded: 'md', + rounded: 'sm', transitionProperty: 'border-color', transitionDuration: '200ms', transitionTimingFunction: 'ease-in-out',