Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/gsoft-inc/wl-hopper into fe…
Browse files Browse the repository at this point in the history
…at/DS-116-combobox
  • Loading branch information
vicky-comeau committed Sep 19, 2024
2 parents 38c9b68 + 5807a53 commit 3781423
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 19 deletions.
2 changes: 1 addition & 1 deletion apps/docs/datas/tokens-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@
},
{
"name": "hop-neutral-text-weakest",
"value": "#777775"
"value": "#959593"
},
{
"name": "hop-primary-border-active",
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/datas/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@
},
{
"name": "hop-neutral-text-weakest",
"value": "#b3b3b1"
"value": "#959593"
},
{
"name": "hop-primary-border-active",
Expand Down
7 changes: 7 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hopper-ui/components

## 1.3.8

### Patch Changes

- 7f8b609: Adjusted text-neutral-weakest color
- @hopper-ui/icons@2.8.0

## 1.3.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hopper-ui/components",
"author": "Workleap",
"version": "1.3.7",
"version": "1.3.8",
"description": "The components package.",
"license": "Apache-2.0",
"repository": {
Expand Down
20 changes: 10 additions & 10 deletions packages/components/src/Select/tests/chromatic/Select.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const meta = {
args: {
children: [],
"aria-label": "Animals"
}
}
} satisfies Meta<typeof Select>;

export default meta;
Expand Down Expand Up @@ -180,7 +180,7 @@ export const SelectedItem = {
<Select.Option id="raccoon">Raccoon</Select.Option>
<Select.Option id="frog">Frog</Select.Option>
</Select>
<h1>Limited Width</h1>
<h1>Limited Width</h1>
<Div width="11%">
<Select {...args} defaultSelectedKey="raccoon" isFluid>
<Select.Option id="dog">Dog</Select.Option>
Expand Down Expand Up @@ -249,7 +249,7 @@ export const SelectedItemWithIcon = {
</Select.Option>
<Select.Option id="frog">Frog</Select.Option>
</Select>
<h1>Limited Width</h1>
<h1>Limited Width</h1>
<Div width="11%">
<Select {...args} defaultSelectedKey="raccoon" isFluid>
<Select.Option id="dog" textValue="Dog">
Expand Down Expand Up @@ -324,7 +324,7 @@ export const SelectedItemWithEndIcon = {
</Select.Option>
<Select.Option id="frog">Frog</Select.Option>
</Select>
<h1>Limited Width</h1>
<h1>Limited Width</h1>
<Div width="11%">
<Select {...args} defaultSelectedKey="raccoon" isFluid>
<Select.Option id="dog" textValue="Dog">
Expand Down Expand Up @@ -378,7 +378,7 @@ export const ScrollingWithSelectedItemOutsideVisibleScope = {
const selectTrigger = canvas.getAllByRole("button")[0];
await userEvent.click(selectTrigger);
},
decorators: marginBottomDecoratorMD
decorators: marginBottomDecoratorMD
} satisfies Story;

export const CustomTriggerWidth = {
Expand Down Expand Up @@ -424,7 +424,7 @@ export const Direction = {
<Story />
</Div>
)
]
]
} satisfies Story;

export const DirectionTop = {
Expand All @@ -441,7 +441,7 @@ export const DirectionTop = {
<Story />
</Div>
)
]
]
} satisfies Story;

export const Invalid = {
Expand Down Expand Up @@ -587,7 +587,7 @@ export const Styling = {
<Select.Option id="2">Voodoo</Select.Option>
<Select.Option id="3">Dusty</Select.Option>
</Select>
<Select {...args}
<Select {...args}
triggerProps={
{ className: "border-red" }
}
Expand All @@ -596,7 +596,7 @@ export const Styling = {
<Select.Option id="2">Voodoo</Select.Option>
<Select.Option id="3">Dusty</Select.Option>
</Select>
<Select {...args}
<Select {...args}
triggerProps={
{ style: { border: "1px solid red" } }
}
Expand All @@ -611,4 +611,4 @@ export const Styling = {
defaultSelectedKey: "2"
},
decorators: marginBottomDecoratorSM
} satisfies Story;
} satisfies Story;
6 changes: 6 additions & 0 deletions packages/styled-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @hopper-ui/styled-system

## 2.3.3

### Patch Changes

- 7f8b609: Adjusted text-neutral-weakest color

## 2.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/styled-system/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hopper-ui/styled-system",
"author": "Workleap",
"version": "2.3.2",
"version": "2.3.3",
"description": "The styled-system package.",
"license": "Apache-2.0",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const DarkSemanticTokens = {
"--hop-neutral-text-weak-hover": "var(--hop-rock-75)",
"--hop-neutral-text-weak-press": "var(--hop-rock-50)",
"--hop-neutral-text-weak-selected": "var(--hop-rock-75)",
"--hop-neutral-text-weakest": "var(--hop-rock-400)",
"--hop-neutral-text-weakest": "var(--hop-rock-300)",
"--hop-primary-border-active": "var(--hop-sapphire-500)",
"--hop-primary-icon-active": "var(--hop-sapphire-75)",
"--hop-primary-surface-active": "var(--hop-sapphire-500)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export const SemanticTokens = {
"--hop-neutral-text-weak-hover": "var(--hop-rock-600)",
"--hop-neutral-text-weak-press": "var(--hop-rock-700)",
"--hop-neutral-text-weak-selected": "var(--hop-rock-600)",
"--hop-neutral-text-weakest": "var(--hop-rock-200)",
"--hop-neutral-text-weakest": "var(--hop-rock-300)",
"--hop-primary-border-active": "var(--hop-sapphire-300)",
"--hop-primary-icon-active": "var(--hop-sapphire-700)",
"--hop-primary-surface-active": "var(--hop-sapphire-300)",
Expand Down
6 changes: 6 additions & 0 deletions packages/tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @hopper-ui/tokens

## 4.3.3

### Patch Changes

- 7f8b609: Adjusted text-neutral-weakest color

## 4.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hopper-ui/tokens",
"author": "Workleap",
"version": "4.3.2",
"version": "4.3.3",
"description": "The tokens package.",
"license": "Apache-2.0",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@
},
"text-weakest": {
"$type": "color",
"$value": "{rock.400}"
"$value": "{rock.300}"
}
},
"primary": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@
},
"text-weakest": {
"$type": "color",
"$value": "{rock.200}"
"$value": "{rock.300}"
}
},
"primary": {
Expand Down

0 comments on commit 3781423

Please sign in to comment.