Remove none from fill/justify options on tab configurator

This commit is contained in:
Kelani Tolulope
2023-04-18 15:34:40 +02:00
committed by Jože Fortun
parent 32826ff2bd
commit cb507e9530
7 changed files with 28 additions and 31 deletions
@@ -7,7 +7,7 @@ const kind = 'Navigation'
interface DisplayOptions {
appearance: string;
alignment: string;
fillJustify: string;
justify: string;
}
interface Options {
@@ -20,7 +20,7 @@ const defaults: Readonly<Options> = Object.freeze({
display: {
appearance: 'pills',
alignment: 'center',
fillJustify: 'fill',
justify: 'justify',
},
navigationItems: [],
magnifyOption: '',
+2 -2
View File
@@ -6,7 +6,7 @@ const kind = 'Tabs'
interface Style {
appearance: string;
alignment: string;
fillJustify: string;
justify: string;
orientation: string;
position: string;
}
@@ -26,7 +26,7 @@ const defaults: Readonly<Options> = Object.freeze({
style: {
appearance: 'tabs',
alignment: 'center',
fillJustify: 'justify',
justify: 'justify',
orientation: 'horizontal',
position: 'start',
},