Skip to content

Commit 7c7a50b

Browse files
authored
Merge pull request #2324 from gluestack/release/@gluestack-ui/link@0.1.22
release: @gluestack-ui/link version 0.1.22
2 parents f7fbfba + 5acc82c commit 7c7a50b

File tree

36 files changed

+717
-355
lines changed

36 files changed

+717
-355
lines changed

example/storybook-nativewind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@gluestack-style/animation-resolver": "^1.0.4",
3333
"@gluestack-style/react": "^1.0.57",
3434
"@gluestack-ui/config": "^1.1.19",
35-
"@gluestack-ui/themed": "^1.1.40",
35+
"@gluestack-ui/themed": "^1.1.41",
3636
"@gluestack/design-system": "^0.5.36",
3737
"@gorhom/bottom-sheet": "^5.0.0-alpha.10",
3838
"@legendapp/motion": "^2.2.0",
239 KB
Loading
156 KB
Loading
988 KB
Loading

example/storybook-nativewind/src/apps/todo-app/index.stories.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ import { todoapp } from '../../extra-components/nativewind/appConfig';
1414

1515
This [Todo App](https://gluestack-ui-todo-example-app.vercel.app/) is built using `gluestack-ui v2`.
1616

17-
<Responsiveness {...todoapp} showMenuItems={true} />
17+
<Responsiveness {...todoapp} showMenuItems={false} />
1818

1919
GitHub link for this [Todo App](https://github.com/gluestack/gluestack-ui-todo-example-app).

example/storybook-nativewind/src/components/Alert/Alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { InfoIcon } from '@/components/ui/icon';
44

55
const AlertBasic = ({ ...props }: any) => {
66
return (
7-
<Alert {...props} className="gap-3">
7+
<Alert {...props}>
88
<AlertIcon as={InfoIcon} />
99
<AlertText>Selection successfully moved!</AlertText>
1010
</Alert>

example/storybook-nativewind/src/components/Checkbox/Checkbox.stories.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,17 @@ const CheckboxMeta: ComponentMeta<typeof Checkbox> = {
2626
control: 'boolean',
2727
options: [true, false],
2828
},
29+
isHovered: {
30+
control: 'boolean',
31+
options: [true, false],
32+
},
2933
},
3034
args: {
3135
size: 'md',
3236
isDisabled: false,
3337
isInvalid: false,
3438
isFocusVisible: false,
39+
isHovered: false,
3540
},
3641
};
3742

example/storybook-nativewind/src/components/FormControl/index.nw.stories.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ Form Action Buttons can also be utilized in conjunction with FormControl.
780780
</FormControl>
781781
<FormControl>
782782
<Button action='negative' className='ml-4'>
783-
<ButtonText className="text-white">
783+
<ButtonText className="text-white group-hover/button:text-white group-active/button:text-white">
784784
Delete
785785
</ButtonText>
786786
</Button>

example/storybook-nativewind/src/components/Toast/index.nw.stories.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -440,8 +440,7 @@ The Examples section provides visual representations of the different variants o
440440
<HStack space="md">
441441
<Icon
442442
as={HelpCircleIcon}
443-
className="stroke-typography-0"
444-
size="lg"
443+
className="stroke-error-500 mt-0.5"
445444
/>
446445
<VStack space="xs">
447446
<ToastTitle className="font-semibold text-error-500">Error!</ToastTitle>
@@ -710,7 +709,7 @@ The Examples section provides visual representations of the different variants o
710709
<Icon
711710
as={Send}
712711
size="xl"
713-
className="fill-blue-500 stroke-none"
712+
className="fill-typography-100 stroke-none"
714713
/>
715714
<Divider
716715
orientation="vertical"

0 commit comments

Comments
 (0)