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

Fix some development warnings #462

Merged
merged 3 commits into from
Feb 1, 2025
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
1 change: 0 additions & 1 deletion components/blog/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
</template>

<script lang="ts" setup>
import { defineProps } from 'vue'

import Ray from '../../components/midori/ray.vue'

Expand Down
2 changes: 1 addition & 1 deletion components/blog/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</template>

<script lang="ts" setup>
import { defineProps, onMounted, onUnmounted } from 'vue'
import { onMounted, onUnmounted } from 'vue'

import '../tailwind.css'

Expand Down
1 change: 0 additions & 1 deletion components/nearl/card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
</template>

<script setup lang="ts">
import { defineProps } from 'vue'

const props = defineProps<{
href: string
Expand Down
2 changes: 1 addition & 1 deletion components/nearl/playground.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</template>

<script setup lang="ts">
import { defineProps, ref, watch } from 'vue'
import { ref, watch } from 'vue'
import type { Elysia } from 'elysia'

const { elysia, mock = {}, alias = {} } = defineProps<{
Expand Down
24 changes: 16 additions & 8 deletions docs/essential/validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ TypeBox provides a basic primitive type with the same behavior as same as TypeSc
The following table lists the most common basic type:

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>TypeScript</td>
Expand Down Expand Up @@ -689,7 +690,7 @@ t.Literal(42)

</td>
</tr>

</tbody>
</table>

Elysia extends all types from TypeBox allowing you to reference most of the API from TypeBox to use in Elysia.
Expand All @@ -701,6 +702,7 @@ See [TypeBox's Type](https://github.com/sinclairzx81/typebox#json-types) for add
TypeBox can accept an argument for more comprehensive behavior based on JSON Schema 7 specification.

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>TypeScript</td>
Expand Down Expand Up @@ -804,7 +806,7 @@ y: 200

</td>
</tr>

</tbody>
</table>

See [JSON Schema 7 specification](https://json-schema.org/draft/2020-12/json-schema-validation) For more explanation for each attribute.
Expand All @@ -818,6 +820,7 @@ The following are common patterns that are often found useful when creating a sc
Allow multiple types via union.

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>TypeScript</td>
Expand Down Expand Up @@ -852,14 +855,15 @@ Hello

</td>
</tr>

</tbody>
</table>

### Optional

Provided in a property of `t.Object`, allowing the field to be undefined or optional.

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>TypeScript</td>
Expand Down Expand Up @@ -898,14 +902,15 @@ t.Object({

</td>
</tr>

</tbody>
</table>

### Partial

Allowing all of the fields in `t.Object` to be optional.

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>TypeScript</td>
Expand Down Expand Up @@ -946,14 +951,15 @@ t.Partial(

</td>
</tr>

</tbody>
</table>

## Custom Error

TypeBox offers an additional "**error**" property, allowing us to return a custom error message if the field is invalid.

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>Error</td>
Expand Down Expand Up @@ -999,7 +1005,7 @@ Invalid object UwU

</td>
</tr>

</tbody>
</table>

## Elysia Type
Expand Down Expand Up @@ -1176,6 +1182,7 @@ new Elysia()
The following is an example of usage of the error property on various types:

<table class="md-table">
<tbody>
<tr>
<td>TypeBox</td>
<td>Error</td>
Expand Down Expand Up @@ -1265,7 +1272,7 @@ Expected x to be a number

</td>
</tr>

</tbody>
</table>

### Error message as function
Expand Down Expand Up @@ -1299,6 +1306,7 @@ Please be cautious that the error function will only be called if the field is i
Please consider the following table:

<table class="md-table">
<tbody>
<tr>
<td>Code</td>
<td>Body</td>
Expand Down Expand Up @@ -1390,7 +1398,7 @@ t.Object(
Expected value to be an object
</td>
</tr>

</tbody>
</table>

### onError
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@
"allowJs": true,
"strict": true,
"jsx": "preserve"
}
},
"exclude": [
"postcss.config.js",
"tailwind.config.js"
]
}