Skip to content

Commit 7ab347d

Browse files
committed
chore: wip
1 parent ae85566 commit 7ab347d

File tree

126 files changed

+106
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+106
-1
lines changed

bun.lockb

69.5 KB
Binary file not shown.

eslint.config.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// eslint.config.js
2+
import antfu from '@antfu/eslint-config'
3+
4+
export default antfu({
5+
// Enable stylistic formatting rules
6+
// stylistic: true,
7+
8+
// Or customize the stylistic rules
9+
stylistic: {
10+
indent: 2, // 4, or 'tab'
11+
quotes: 'single', // or 'double'
12+
},
13+
14+
// TypeScript and Vue are auto-detected, you can also explicitly enable them:
15+
typescript: false,
16+
vue: true,
17+
18+
// Disable jsonc and yaml support
19+
// jsonc: false,
20+
// yaml: false,
21+
22+
// `.eslintignore` is no longer supported in Flat config, use `ignores` instead
23+
ignores: [
24+
'**/fixtures',
25+
// ...globs
26+
],
27+
})

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,9 @@
7070
"storage/framework/email",
7171
"storage/framework/libs/*",
7272
"storage/framework/views/*"
73-
]
73+
],
74+
"devDependencies": {
75+
"@antfu/eslint-config": "^2.16.1",
76+
"eslint": "^9.1.1"
77+
}
7478
}
File renamed without changes.

resources/components/Dashboard/Deployments/DeploymentList.stx renamed to resources/components/Dashboard/Deployments/DeploymentList.vue

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,78 @@
208208
</div>
209209
</div>
210210
</div>
211+
212+
<BaseModal v-if="false">
213+
<template #modal-body>
214+
<div class="absolute top-0 right-0 hidden pt-4 pr-4 sm:block">
215+
<button
216+
type="button"
217+
class="text-gray-400 rounded-md dark:text-gray-200 dark-hover:text-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2"
218+
>
219+
<span class="sr-only">Close</span>
220+
<!-- Heroicon name: outline/x-mark -->
221+
<svg
222+
class="w-6 h-6"
223+
xmlns="http://www.w3.org/2000/svg"
224+
fill="none"
225+
viewBox="0 0 24 24"
226+
stroke-width="1.5"
227+
stroke="currentColor"
228+
aria-hidden="true"
229+
>
230+
<path
231+
stroke-linecap="round"
232+
stroke-linejoin="round"
233+
d="M6 18L18 6M6 6l12 12"
234+
/>
235+
</svg>
236+
</button>
237+
</div>
238+
239+
<div class="sm:flex sm:items-start">
240+
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
241+
<h3
242+
id="modal-title"
243+
class="text-lg font-medium leading-6 text-gray-900 dark:text-gray-100"
244+
>
245+
Search Engine Instance
246+
</h3>
247+
<div class="mt-2">
248+
<p
249+
id="subtitle"
250+
class="mb-2 text-xs text-green-800 dark:text-green-600"
251+
>
252+
baseUrl
253+
</p>
254+
255+
<a
256+
id="title"
257+
target="_new"
258+
href="#"
259+
class="text-lg text-blue-800 dark:text-blue-400"
260+
>
261+
262+
test title
263+
</a>
264+
265+
<p
266+
id="title"
267+
class="mt-2 text-sm text-gray-800 dark:text-gray-200"
268+
>
269+
test desc
270+
</p>
271+
</div>
272+
</div>
273+
</div>
274+
</template>
275+
276+
<template #modal-actions>
277+
<button
278+
type="button"
279+
class="secondary-button"
280+
>
281+
Close
282+
</button>
283+
</template>
284+
</BaseModal>
211285
</template>

0 commit comments

Comments
 (0)