File tree Expand file tree Collapse file tree 6 files changed +5
-9
lines changed Expand file tree Collapse file tree 6 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,7 @@ const buildAll = async () => {
3737 try {
3838 await fs . access ( filepath )
3939 await runBuild ( name , filepath )
40- } catch ( e ) {
41- }
40+ } catch { }
4241 }
4342 } )
4443 await Promise . all ( results )
Original file line number Diff line number Diff line change 11<script lang="ts">
22import type { ButtonProps } from ' ./Button.vue'
3-
4- export interface CloseButtonProps extends ButtonProps {}
53 </script >
64
75<script setup lang="ts">
86import { Primitive } from ' reka-ui'
97import CrossIcon from ' ~icons/radix-icons/cross-2'
108import { buildPropsClass } from ' ../util'
119
12- const props = withDefaults (defineProps <CloseButtonProps >(), {
10+ const props = withDefaults (defineProps <ButtonProps >(), {
1311 as: ' button' ,
1412 size: ' 2' ,
1513 variant: ' ghost' ,
Original file line number Diff line number Diff line change 11<script lang="ts">
22import type { ButtonProps } from ' ./Button.vue'
33
4- export interface IconButtonProps extends ButtonProps {}
4+ export type IconButtonProps = ButtonProps
55</script >
66
77< script setup lang = " ts" >
Original file line number Diff line number Diff line change @@ -10,5 +10,4 @@ export {
1010
1111export {
1212 default as CloseButton ,
13- type CloseButtonProps ,
1413} from './CloseButton.vue'
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import type {
55} from ' reka-ui'
66import ThemeWrapper from ' ../provider/ThemeWrapper.vue'
77
8- export interface AlertDialogPopupProps extends AlertDialogContentProps {}
8+ export type AlertDialogPopupProps = AlertDialogContentProps
99</script >
1010
1111< script setup lang = " ts" >
Original file line number Diff line number Diff line change 11<script lang="ts">
22import type { RadioGroupItemProps } from ' reka-ui'
33
4- export interface RadioTabsItemProps extends RadioGroupItemProps {}
4+ export type RadioTabsItemProps = RadioGroupItemProps
55</script >
66
77< script setup lang = " ts" >
You can’t perform that action at this time.
0 commit comments