Skip to content

Commit bdeb505

Browse files
committed
Merge branch '4.x' of https://github.com/filamentphp/filamentphp.com into 4.x
2 parents 48edef4 + 4224d1f commit bdeb505

File tree

2 files changed

+21
-16
lines changed

2 files changed

+21
-16
lines changed

docs/.astro/icon.d.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
// da39a9defe414d98643d669242b8232e136e711bb6ce66a3bfeb2583d71b2ae0
33

44
declare module 'virtual:astro-icon' {
5-
export type Icon =
6-
| "chevron-right"
7-
| "close-icon"
8-
| "computer-desktop"
9-
| "danger"
10-
| "github"
11-
| "info"
12-
| "menu-icon"
13-
| "moon"
14-
| "sun"
15-
| "tip"
16-
| "warning";
17-
}
5+
export type Icon =
6+
| 'chevron-right'
7+
| 'close-icon'
8+
| 'computer-desktop'
9+
| 'danger'
10+
| 'github'
11+
| 'info'
12+
| 'menu-icon'
13+
| 'moon'
14+
| 'sun'
15+
| 'tip'
16+
| 'warning'
17+
}

docs/src/scripts/clipboard.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ export default (Alpine) => {
2020
let copyToClipboardButton = document.createElement('button')
2121
copyToClipboardButton.innerHTML = this.clipboardIcon
2222
copyToClipboardButton.id = `code-block-copy-button-${key}`
23-
;['md:block', 'hidden', 'absolute', 'top-3', 'end-3', 'text-white/50'].forEach(
24-
(value) => copyToClipboardButton.classList.add(value),
25-
)
23+
;[
24+
'md:block',
25+
'hidden',
26+
'absolute',
27+
'top-3',
28+
'end-3',
29+
'text-white/50',
30+
].forEach((value) => copyToClipboardButton.classList.add(value))
2631

2732
copyToClipboardButton.setAttribute(
2833
'aria-label',

0 commit comments

Comments
 (0)