Skip to content

Commit 63a4430

Browse files
committed
chore: wip
1 parent b02d6e9 commit 63a4430

Some content is hidden

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

66 files changed

+308
-724
lines changed

app/Actions/Payment/CreatePaymentIntentAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default new Action({
1010
const amount = Number(request.get('amount'))
1111

1212
const paymentIntent = await stripe.paymentIntent.create({
13-
amount,
13+
amount,
1414
currency: 'usd',
1515
})
1616

routes/api.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ route.post('/ai/summary', 'Actions/AI/SummaryAction')
2727

2828
route.post('/create-payment-intent', 'Actions/Payment/CreatePaymentIntentAction')
2929

30-
31-
3230
// route.group('/some-path', async () => {...})
3331
// route.action('/example') // equivalent to `route.get('/example', 'ExampleAction')`
3432
// route.action('Dashboard/GetProjects')

storage/framework/core/components/calendar/src/components/Expand.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import { computed, ref } from 'vue'
33
import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
5-
import CheckIcon from './icons/CheckIcon.vue'
6-
import CopyIcon from './icons/CopyIcon.vue'
75
86
const props = defineProps({
97
expand: {
@@ -78,8 +76,8 @@ async function handleCopyCode() {
7876
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
7977
@click="handleCopyCode"
8078
>
81-
<CheckIcon v-if="showCheckIcon" />
82-
<CopyIcon v-else />
79+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
80+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
8381
</button>
8482
</div>
8583
</div>

storage/framework/core/components/calendar/src/components/Installation.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import { ref } from 'vue'
33
import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
5-
import CheckIcon from './icons/CheckIcon.vue'
6-
import CopyIcon from './icons/CopyIcon.vue'
75
86
const code = `bun install @stacksjs/notification`
97
@@ -33,8 +31,8 @@ async function handleCopyCode() {
3331
class="btn-border absolute right-2 top-2 p-1"
3432
@click="handleCopyCode"
3533
>
36-
<CheckIcon v-if="showCheckIcon" />
37-
<CopyIcon v-else />
34+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
35+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
3836
</button>
3937
</div>
4038
</div>

storage/framework/core/components/calendar/src/components/Others.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
55
import HeadlessToast from './HeadlessToast.vue'
66
import HeadlessToastWithProps from './HeadlessToastWithProps.vue'
7-
import CheckIcon from './icons/CheckIcon.vue'
8-
import CopyIcon from './icons/CopyIcon.vue'
97
108
const emit = defineEmits(['setRichColors', 'setCloseButton'])
119
@@ -163,8 +161,8 @@ async function handleCopyCode() {
163161
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
164162
@click="handleCopyCode"
165163
>
166-
<CheckIcon v-if="showCheckIcon" />
167-
<CopyIcon v-else />
164+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
165+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
168166
</button>
169167
</div>
170168
</div>

storage/framework/core/components/calendar/src/components/Position.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import type { Position } from '../types'
44
import { computed, ref } from 'vue'
55
import { notification } from '../'
66
import { useCopyCode } from '../composables/useCopyCode'
7-
import CheckIcon from './icons/CheckIcon.vue'
8-
import CopyIcon from './icons/CopyIcon.vue'
97
108
const props = defineProps({
119
position: String as PropType<Position>,
@@ -74,8 +72,8 @@ async function handleCopyCode() {
7472
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
7573
@click="handleCopyCode"
7674
>
77-
<CheckIcon v-if="showCheckIcon" />
78-
<CopyIcon v-else />
75+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
76+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
7977
</button>
8078
</div>
8179
</div>

storage/framework/core/components/calendar/src/components/Styling.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import { computed, ref } from 'vue'
33
import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
5-
import CheckIcon from './icons/CheckIcon.vue'
6-
import CopyIcon from './icons/CopyIcon.vue'
75
86
const currentAction = ref('all')
97
const showCheckIcon = ref(false)
@@ -89,8 +87,8 @@ async function handleCopyCode() {
8987
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
9088
@click="handleCopyCode"
9189
>
92-
<CheckIcon v-if="showCheckIcon" />
93-
<CopyIcon v-else />
90+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
91+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
9492
</button>
9593
</div>
9694
</div>

storage/framework/core/components/calendar/src/components/Theming.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import { computed, ref } from 'vue'
33
import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
5-
import CheckIcon from './icons/CheckIcon.vue'
6-
import CopyIcon from './icons/CopyIcon.vue'
75
86
const emit = defineEmits(['setTheme'])
97
@@ -67,8 +65,8 @@ async function handleCopyCode() {
6765
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
6866
@click="handleCopyCode"
6967
>
70-
<CheckIcon v-if="showCheckIcon" />
71-
<CopyIcon v-else />
68+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
69+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
7270
</button>
7371
</div>
7472
</div>

storage/framework/core/components/calendar/src/components/Types.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import { defineComponent, h, markRaw, ref } from 'vue'
33
import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
5-
import CheckIcon from './icons/CheckIcon.vue'
6-
import CopyIcon from './icons/CopyIcon.vue'
75
86
// eslint-disable-next-line no-template-curly-in-string
97
const promiseCode = '`${data.name} notification has been added`'
@@ -172,8 +170,8 @@ async function handleCopyCode() {
172170
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
173171
@click="handleCopyCode"
174172
>
175-
<CheckIcon v-if="showCheckIcon" />
176-
<CopyIcon v-else />
173+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
174+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
177175
</button>
178176
</div>
179177
</div>

storage/framework/core/components/calendar/src/components/Usage.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import { ref } from 'vue'
33
import { notification } from '../'
44
import { useCopyCode } from '../composables/useCopyCode'
5-
import CheckIcon from './icons/CheckIcon.vue'
6-
import CopyIcon from './icons/CopyIcon.vue'
75
86
const code = `<!-- App.vue -->
97
<script lang="ts" setup>
@@ -48,8 +46,8 @@ async function handleCopyCode() {
4846
class="btn-border absolute right-2 top-2 hidden p-1 group-hover:block"
4947
@click="handleCopyCode"
5048
>
51-
<CheckIcon v-if="showCheckIcon" />
52-
<CopyIcon v-else />
49+
<div v-if="showCheckIcon" class="i-ic:baseline-check text-gray-500" />
50+
<div v-else class="i-ic:baseline-content-copy text-gray-500" />
5351
</button>
5452
</div>
5553
</div>

0 commit comments

Comments
 (0)