Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Features] Add top bar and reframe feature flag #11757

Merged
merged 1 commit into from
Mar 18, 2024
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/brave-bags-smile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@shopify/polaris': patch
---

Added dynamicTopBarAndReframe feature flag type
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ export const featureFlagOptions = {
// defaultValue: false,
// control: {type: 'boolean'},
// },
dynamicTopBarAndReframe: {
name: 'dynamicTopBarAndReframe',
description: 'Toggle the top bar and reframe feature flag',
defaultValue: false,
control: {type: 'boolean'},
},
};

export const gridOptions = {
Expand Down
1 change: 1 addition & 0 deletions polaris-react/src/utilities/features/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export interface FeaturesConfig {
dynamicTopBarAndReframe?: boolean;
[key: string]: boolean | undefined;
}

Expand Down
Loading