Skip to content

Commit 13601da

Browse files
committed
Release v0.22.1
1 parent 3d48e66 commit 13601da

3 files changed

Lines changed: 10 additions & 25 deletions

File tree

manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ schema-version = 1
77

88
[package]
99
title = "Vega TV Interfaces Sample App"
10-
version = "0.21.0"
10+
version = "0.21.1"
1111
id = "com.amazondeveloper.keplertvinterfaces"
1212
icon = "@image/tv-interfaces-app-dark.png"
1313

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@amazon-devices/keplertvinterfaces",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"files": [
55
"dist"
66
],
@@ -33,15 +33,15 @@
3333
"i18n:sync": "npx i18next-locales-sync -c ./localesSync.config.js"
3434
},
3535
"dependencies": {
36-
"@amazon-devices/asset-resolver-lib": "^1.0.0",
37-
"@amazon-devices/kepler-ui-components": "^2.0.0",
38-
"@amazon-devices/keplerscript-kepleri18n-lib": "^1.0.0",
39-
"@amazon-devices/keplerscript-netmgr-lib": "^2.0.2",
40-
"@amazon-devices/react-native-device-info": "^2.0.0",
36+
"@amazon-devices/asset-resolver-lib": "~1.0.0",
37+
"@amazon-devices/kepler-ui-components": "~2.4.0",
38+
"@amazon-devices/keplerscript-kepleri18n-lib": "~1.1.0",
39+
"@amazon-devices/keplerscript-netmgr-lib": "~2.0.0",
40+
"@amazon-devices/react-native-device-info": "~2.0.0",
4141
"@amazon-devices/react-native-kepler": "~2.0.0",
42-
"@amazon-devices/react-native-reanimated": "^2.0.0",
42+
"@amazon-devices/react-native-reanimated": "~2.0.0",
4343
"@amazon-devices/react-native-screens": "~2.0.0",
44-
"@amazon-devices/react-native-vector-icons": "^2.0.1731521715",
44+
"@amazon-devices/react-native-vector-icons": "~2.0.0",
4545
"@amazon-devices/react-navigation__core": "~7.0.0",
4646
"@amazon-devices/react-navigation__devtools": "~7.0.0",
4747
"@amazon-devices/react-navigation__drawer": "~7.0.0",
@@ -62,7 +62,7 @@
6262
"zustand": "^5.0.2"
6363
},
6464
"devDependencies": {
65-
"@amazon-devices/kepler-cli-platform": "^0",
65+
"@amazon-devices/kepler-cli-platform": "~0.22.0",
6666
"@amazon-devices/shopify__flash-list": "~2.0.0",
6767
"@babel/plugin-proposal-decorators": "^7.25.9",
6868
"@callstack/eslint-config": "^14.2.0",

src/components/features/MenuWrapper/MenuWrapper.tsx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -121,21 +121,6 @@ export const MenuWrapper: React.FC = () => {
121121
),
122122
)}
123123
</View>
124-
<View style={styles.closeButtonWrapper}>
125-
{isOpen && (
126-
<MenuItem
127-
icon="close"
128-
onFocus={onMenuItemFocus}
129-
onPress={closeDrawer}
130-
label={t('common-close')}
131-
accessibilityHint={t('menu-item-use-direction-to-go-to-a11y-label')
132-
.replace('<direction>', t('a11y-hint-direction-up'))
133-
.replace('<go-to-label>', menuItems[menuItems.length - 1]!.label)}
134-
aria-label={t('close-menu-button-a11y-label')}
135-
aria-hidden
136-
/>
137-
)}
138-
</View>
139124
</FocusGuideView>
140125
);
141126
};

0 commit comments

Comments
 (0)