Skip to content

Commit

Permalink
feat: finalize home impl reports
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronicStone committed Apr 24, 2024
1 parent 8e53f34 commit 821f8c9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/.examples/financial-report/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ExcelSchemaBuilder } from '@chronicstone/typed-xlsx'
import type { FinancialReport } from './data'

export const financialReportSchema = ExcelSchemaBuilder.create<FinancialReport>()
.column('month', { key: 'month', label: 'Month', format: 'mmm yyyy' })
.column('month', { key: 'month', label: 'Month', format: 'MMM YYYY' })
.column('Department Name', {
key: 'departments',
label: 'Department',
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/ExampleRenderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { data } from '../data/examples.data'
const props = defineProps<{ fileKey: string }>()
const { isDark } = useData()
const GITHUB_URL = 'https://github.com/ChronicStone/typed-xlsx/raw/main/examples/'
const iframeUrl = `https://view.officeapps.live.com/op/embed.aspx?src=${GITHUB_URL}${props.fileKey}.xlsx`
const iframeUrl = `https://view.officeapps.live.com/op/embed.aspx?src=${GITHUB_URL}${props.fileKey}.xlsx&action=embedview&zoom=0.5`
const splitRef = ref<any>(null)
const loading = ref(false)
Expand Down
Binary file modified examples/financial-report.xlsx
Binary file not shown.
Binary file modified examples/kitchen-sink.xlsx
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"type": "module",
"version": "0.2.10",
"packageManager": "pnpm@8.11.0",
"description": "_description_",
"description": "High-Quality Type-safe Excel Reporting.",
"author": "ChronicStone <cthao.pro@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Chronicstone/typed-xlsx#readme",
"homepage": "https://typed-xlsx.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/Chronicstone/typed-xlsx.git"
Expand Down

0 comments on commit 821f8c9

Please sign in to comment.