Skip to content

Commit

Permalink
Merge pull request #1513 from gluestack/release/@gluestack-ui/config@…
Browse files Browse the repository at this point in the history
…1.0.9

release: @gluestack-ui/config version 1.0.9
  • Loading branch information
Viraj-10 authored Dec 15, 2023
2 parents 9b1e9e0 + 6f9b8ff commit 61e3556
Show file tree
Hide file tree
Showing 12 changed files with 171 additions and 246 deletions.
1 change: 1 addition & 0 deletions create-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const packageNames = [
'transitions',
'react-native-aria',
'themed',
'config',
];
let response;
let releaseBranchName;
Expand Down
6 changes: 6 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @gluestack-ui/config

## 1.0.9

### Patch Changes

- fix userselect, select config

## 1.0.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gluestack-ui/config",
"version": "1.0.8",
"version": "1.0.9",
"main": "build/gluestack-ui.config.js",
"types": "build/gluestack-ui.config.d.ts",
"module": "build/gluestack-ui.config",
Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/theme/ActionsheetContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const ActionsheetContent = createStyle({
bg: '$backgroundDark900',
},
},
userSelect: 'none',
defaultProps: {
hardShadow: '5',
},
_web: {
userSelect: 'none',
pointerEvents: 'auto',
},
});
4 changes: 3 additions & 1 deletion packages/config/src/theme/ButtonText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ import { createStyle } from '@gluestack-style/react';

export const ButtonText = createStyle({
color: '$textLight0',
userSelect: 'none',
_web: {
userSelect: 'none',
},
});
2 changes: 1 addition & 1 deletion packages/config/src/theme/CheckboxLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export const CheckboxLabel = createStyle({
MozUserSelect: 'none',
WebkitUserSelect: 'none',
msUserSelect: 'none',
userSelect: 'none',
},
'userSelect': 'none',
'_dark': {
'color': '$textDark400',
':checked': {
Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/theme/RadioLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const RadioLabel = createStyle({
MozUserSelect: 'none',
WebkitUserSelect: 'none',
msUserSelect: 'none',
userSelect: 'none',
},
'userSelect': 'none',
'_dark': {
'color': '$textDark400',
':checked': {
Expand Down
1 change: 1 addition & 0 deletions packages/config/src/theme/SelectActionsheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export const SelectActionsheet = createStyle({
height: '$full',
justifyContent: 'flex-end',
alignItems: 'center',
pointerEvents: 'none',
});
1 change: 1 addition & 0 deletions packages/config/src/theme/SelectActionsheetBackdrop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ export const SelectActionsheetBackdrop = createStyle({
'_web': {
cursor: 'default',
},
'pointerEvents': 'auto',
});
5 changes: 4 additions & 1 deletion packages/config/src/theme/SelectActionsheetContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ export const SelectActionsheetContent = createStyle({
bg: '$backgroundDark900',
},
},
userSelect: 'none',
pointerEvents: 'auto',
_web: {
userSelect: 'none',
},
defaultProps: {
hardShadow: '5',
},
Expand Down
4 changes: 3 additions & 1 deletion packages/config/src/theme/TooltipText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ import { createStyle } from '@gluestack-style/react';
export const TooltipText = createStyle({
color: '$red400',
fontFamily: '$body',
userSelect: 'none',
_web: {
userSelect: 'none',
},
});
387 changes: 148 additions & 239 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 61e3556

Please sign in to comment.