Skip to content

Commit ff850b1

Browse files
committed
feat: opt-out all experimental flag
1 parent facef7a commit ff850b1

File tree

4 files changed

+23
-29
lines changed

4 files changed

+23
-29
lines changed

packages/devtools/client/pages/modules/analyze-build.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ definePageMeta({
88
title: 'Build Analyze',
99
layout: 'full',
1010
category: 'analyze',
11-
experimental: true,
1211
show() {
1312
return satisfyNuxtVersion('^3.5.0')
1413
},

packages/devtools/client/pages/modules/modules.vue

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ definePageMeta({
66
})
77
88
const installModuleOpen = ref(false)
9-
const { showExperimentalFeatures } = useDevToolsOptions()
109
const installedModules = useInstalledModules()
1110
1211
const packageModules = computed(() => installedModules.value.filter(i => i.isPackageModule))
@@ -28,7 +27,6 @@ const userModules = computed(() => installedModules.value.filter(i => !i.isPacka
2827
:mod="m"
2928
/>
3029
<NCard
31-
v-if="showExperimentalFeatures"
3230
border="1.5 dashed"
3331
min-h-30 p4 transition
3432
hover="border-primary"
@@ -59,31 +57,29 @@ const userModules = computed(() => installedModules.value.filter(i => !i.isPacka
5957
</template>
6058
</NSectionBlock>
6159

62-
<template v-if="showExperimentalFeatures">
63-
<Transition name="fade-in">
64-
<div
65-
v-if="installModuleOpen"
66-
class="fixed bottom-0 left-0 right-0 top-0 z-100"
67-
bg-black:20 backdrop-blur-2 @click="installModuleOpen = false"
60+
<Transition name="fade-in">
61+
<div
62+
v-if="installModuleOpen"
63+
class="fixed bottom-0 left-0 right-0 top-0 z-100"
64+
bg-black:20 backdrop-blur-2 @click="installModuleOpen = false"
65+
/>
66+
</Transition>
67+
<Transition name="slide-in">
68+
<div
69+
v-if="installModuleOpen" border="l base"
70+
pos="fixed bottom-0 right-0 top-0" z-200 w-150 bg-base
71+
>
72+
<NIconButton
73+
icon="carbon-close"
74+
pos="absolute top-3 right-3"
75+
rounded-full text-xl
76+
@click="installModuleOpen = false"
6877
/>
69-
</Transition>
70-
<Transition name="slide-in">
71-
<div
72-
v-if="installModuleOpen" border="l base"
73-
pos="fixed bottom-0 right-0 top-0" z-200 w-150 bg-base
74-
>
75-
<NIconButton
76-
icon="carbon-close"
77-
pos="absolute top-3 right-3"
78-
rounded-full text-xl
79-
@click="installModuleOpen = false"
80-
/>
8178

82-
<ModuleInstallList />
83-
</div>
84-
</Transition>
85-
<ModuleActionDialog />
86-
</template>
79+
<ModuleInstallList />
80+
</div>
81+
</Transition>
82+
<ModuleActionDialog />
8783
</div>
8884

8985
<HelpFab>

packages/devtools/client/pages/modules/storage.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import JsonEditorVue from 'json-editor-vue'
44
definePageMeta({
55
icon: 'carbon-data-base',
66
title: 'Storage',
7-
experimental: true,
87
layout: 'full',
98
category: 'server',
109
})

packages/devtools/client/pages/settings.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ function toggleTabCategory(name: string, v: boolean) {
111111
<NCheckbox v-model="interactionCloseOnOutsideClick" n-primary>
112112
<span>Close DevTools when clicking outside</span>
113113
</NCheckbox>
114-
<NCheckbox v-model="showExperimentalFeatures" n-primary>
114+
<!-- <NCheckbox v-model="showExperimentalFeatures" n-primary>
115115
<span>Show experimental features</span>
116-
</NCheckbox>
116+
</NCheckbox> -->
117117
<NCheckbox v-model="showHelpButtons" n-primary>
118118
<span>Show help buttons</span>
119119
</NCheckbox>

0 commit comments

Comments
 (0)