Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/hip-dots-exist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@atomicjolt/atomic-elements": minor
---

Add DateField as a generalization of DateInput. Refactor DateInput to use DateField internally
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ packages/atomic-fuel/libs
.vscode


*.map
*.map

.claude
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import { BaseButton, ButtonProps } from "@components/Internal/BaseButton";
import { StyledButton } from "./Button.styles";
import { ButtonContext } from "./Button.context";

export type {
ButtonProps,
ButtonVariants,
} from "@components/Internal/BaseButton";

/** A button component that can be used to trigger actions or events
*
* @example <Button onPress={() => alert("Hello, world!")}>Click me</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports[`ChipGroup > matches snapshot 1`] = `
data-react-aria-hidden="true"
/>
<div
class="sc-eiwqOE kTkbYA aje-chip-group"
class="sc-fuExOL iflJZZ aje-chip-group"
>
<label
class="sc-FEMpB ipRIbq"
Expand All @@ -19,15 +19,15 @@ exports[`ChipGroup > matches snapshot 1`] = `
aria-labelledby="react-aria-:r1:"
aria-live="off"
aria-relevant="additions"
class="sc-dPKAra EVgkD"
class="sc-gjXmFk fSQRSD"
data-collection="react-aria-:r5:"
id="react-aria-:r0:"
role="grid"
tabindex="0"
>
<div
aria-label="Item"
class="sc-gjXmFk eErvzQ aje-chip"
class="sc-dVupuq fdlSjA aje-chip"
data-collection="react-aria-:r5:"
data-key="react-aria-1"
id="react-aria-:r0:-react-aria-1"
Expand All @@ -36,7 +36,7 @@ exports[`ChipGroup > matches snapshot 1`] = `
>
<div
aria-colindex="1"
class="sc-fuExOL iXcEFL"
class="sc-hORkcV cOPNJR"
role="gridcell"
>
Item
Expand Down
Loading