mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-13 02:41:34 +00:00
Compare commits
29 Commits
fix/regist
...
shadcn/cod
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
69a88f9579 | ||
|
|
4e8263d7a3 | ||
|
|
e000e17856 | ||
|
|
1be8f98c46 | ||
|
|
6e476e4756 | ||
|
|
e2d36a3a7d | ||
|
|
a97ebe54f1 | ||
|
|
b2cc0dfe59 | ||
|
|
af99d4ebd3 | ||
|
|
a0a072dcdd | ||
|
|
447c7aac06 | ||
|
|
752615f231 | ||
|
|
f9b365bc7f | ||
|
|
17a1a9093a | ||
|
|
8159e98075 | ||
|
|
6a527b3e75 | ||
|
|
ebe689e85c | ||
|
|
8b683b44e6 | ||
|
|
8e9f781cdb | ||
|
|
9d7c205442 | ||
|
|
902379fa3e | ||
|
|
94dcf37add | ||
|
|
843a5e2334 | ||
|
|
cdaad392ae | ||
|
|
49abe0d594 | ||
|
|
eeb33ae9c9 | ||
|
|
55fa1bb7cc | ||
|
|
da05ee321c | ||
|
|
554a1a69a7 |
125
.github/workflows/code-format.yml
vendored
Normal file
125
.github/workflows/code-format.yml
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
name: Code format
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["Code check"]
|
||||
types:
|
||||
- completed
|
||||
|
||||
permissions:
|
||||
actions: read
|
||||
contents: write
|
||||
pull-requests: read
|
||||
|
||||
jobs:
|
||||
format:
|
||||
if: |
|
||||
github.event.workflow_run.conclusion == 'failure' &&
|
||||
github.event.workflow_run.event == 'pull_request'
|
||||
runs-on: ubuntu-latest
|
||||
name: Run pnpm format:write
|
||||
steps:
|
||||
- name: Inspect failed workflow run
|
||||
id: meta
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const pr = context.payload.workflow_run.pull_requests[0]
|
||||
|
||||
if (!pr) {
|
||||
core.notice("Skipping because the failed run is not attached to a pull request.")
|
||||
core.setOutput("should_run", "false")
|
||||
return
|
||||
}
|
||||
|
||||
const { data: pullRequest } = await github.rest.pulls.get({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
pull_number: pr.number,
|
||||
})
|
||||
|
||||
const { data: jobs } = await github.rest.actions.listJobsForWorkflowRun({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
run_id: context.payload.workflow_run.id,
|
||||
per_page: 100,
|
||||
})
|
||||
|
||||
const formatJob = jobs.jobs.find((job) => job.name === "pnpm format:check")
|
||||
const sameRepo =
|
||||
pullRequest.head.repo.full_name === `${context.repo.owner}/${context.repo.repo}`
|
||||
const shouldRun = formatJob?.conclusion === "failure" && sameRepo
|
||||
|
||||
if (!formatJob) {
|
||||
core.notice("Skipping because the format job could not be found in the failed run.")
|
||||
} else if (formatJob.conclusion !== "failure") {
|
||||
core.notice(
|
||||
`Skipping because the format job concluded with "${formatJob.conclusion}".`
|
||||
)
|
||||
}
|
||||
|
||||
if (!sameRepo) {
|
||||
core.notice(
|
||||
`Skipping PR #${pullRequest.number} because its head branch lives in ${pullRequest.head.repo.full_name}.`
|
||||
)
|
||||
}
|
||||
|
||||
core.setOutput("head_ref", pullRequest.head.ref)
|
||||
core.setOutput("should_run", shouldRun ? "true" : "false")
|
||||
|
||||
- name: Checkout pull request branch
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: ${{ steps.meta.outputs.head_ref }}
|
||||
|
||||
- name: Install Node.js
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
|
||||
- name: Install pnpm
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 9.0.6
|
||||
run_install: false
|
||||
|
||||
- name: Get pnpm store directory
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
id: pnpm-cache
|
||||
run: |
|
||||
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Setup pnpm cache
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
|
||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pnpm-store-
|
||||
|
||||
- name: Install dependencies
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
run: pnpm install
|
||||
|
||||
- name: Apply formatting
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
run: pnpm format:write
|
||||
|
||||
- name: Commit formatting changes
|
||||
if: steps.meta.outputs.should_run == 'true'
|
||||
run: |
|
||||
if git diff --quiet; then
|
||||
echo "No formatting changes to commit."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git add -A
|
||||
git commit -m "style: apply automated formatting"
|
||||
git push origin HEAD:${{ steps.meta.outputs.head_ref }}
|
||||
40
.github/workflows/validate-registries.yml
vendored
40
.github/workflows/validate-registries.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
check-registry-sync:
|
||||
if: github.event_name == 'pull_request'
|
||||
runs-on: ubuntu-latest
|
||||
name: Check registry sync
|
||||
name: check-registry-sync
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
@@ -66,6 +66,44 @@ jobs:
|
||||
with:
|
||||
node-version: 20
|
||||
|
||||
- name: Block reserved registry namespaces
|
||||
env:
|
||||
RESERVED_NAMESPACES: "@shadcn,@ui,@blocks,@components,@block,@component,@util,@utils,@registry,@lib,@hook,@hooks,@theme,@themes,@chart,@charts"
|
||||
run: |
|
||||
node <<'EOF'
|
||||
const fs = require("node:fs")
|
||||
|
||||
const files = [
|
||||
"apps/v4/public/r/registries.json",
|
||||
"apps/v4/registry/directory.json",
|
||||
]
|
||||
const reservedNamespaces = new Set(
|
||||
process.env.RESERVED_NAMESPACES.split(",").filter(Boolean)
|
||||
)
|
||||
|
||||
function readNames(filePath) {
|
||||
return JSON.parse(fs.readFileSync(filePath, "utf8")).map(
|
||||
(entry) => entry.name
|
||||
)
|
||||
}
|
||||
|
||||
const violations = files.flatMap((filePath) => {
|
||||
return readNames(filePath)
|
||||
.filter((name) => reservedNamespaces.has(name))
|
||||
.map((name) => `${filePath}: ${name}`)
|
||||
})
|
||||
|
||||
if (violations.length > 0) {
|
||||
console.error("Reserved registry namespaces are not allowed:")
|
||||
|
||||
for (const violation of violations) {
|
||||
console.error(`- ${violation}`)
|
||||
}
|
||||
|
||||
process.exit(1)
|
||||
}
|
||||
EOF
|
||||
|
||||
- uses: pnpm/action-setup@v4
|
||||
name: Install pnpm
|
||||
id: pnpm-install
|
||||
|
||||
@@ -16,13 +16,13 @@ description: Install and configure shadcn/ui for TanStack Start.
|
||||
Run the following command to create a new TanStack Start project with shadcn/ui:
|
||||
|
||||
```bash
|
||||
npx shadcn@latest init -t tanstack
|
||||
npx shadcn@latest init -t start
|
||||
```
|
||||
|
||||
**For a monorepo project, use `--monorepo` flag:**
|
||||
|
||||
```bash
|
||||
npx shadcn@latest init -t tanstack --monorepo
|
||||
npx shadcn@latest init -t start --monorepo
|
||||
```
|
||||
|
||||
### Add Components
|
||||
|
||||
@@ -325,7 +325,8 @@ A `registry:font` item installs a Google Font. The `font` field is required and
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -343,7 +344,8 @@ A `registry:font` item installs a Google Font. The `font` field is required and
|
||||
"import": "JetBrains_Mono",
|
||||
"variable": "--font-mono",
|
||||
"weight": ["400", "500", "600", "700"],
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -360,7 +362,8 @@ A `registry:font` item installs a Google Font. The `font` field is required and
|
||||
"provider": "google",
|
||||
"import": "Lora",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -380,7 +383,8 @@ Use the `selector` field to apply a font to specific CSS selectors instead of gl
|
||||
"import": "Playfair_Display",
|
||||
"variable": "--font-heading",
|
||||
"subsets": ["latin"],
|
||||
"selector": "h1, h2, h3, h4, h5, h6"
|
||||
"selector": "h1, h2, h3, h4, h5, h6",
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
@@ -339,6 +339,34 @@ Environment variables are added to the `.env.local` or `.env` file. Existing var
|
||||
|
||||
</Callout>
|
||||
|
||||
### font
|
||||
|
||||
The `font` property is required for `registry:font` items. It configures the font family, provider, import name, CSS variable, and the npm package to install for non-Next.js projects.
|
||||
|
||||
```json title="registry-item.json" showLineNumbers
|
||||
{
|
||||
"font": {
|
||||
"family": "'Inter Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
| Property | Type | Required | Description |
|
||||
| ------------ | ---------- | -------- | ----------------------------------------------------------------------------------------- |
|
||||
| `family` | `string` | Yes | The CSS font-family value. |
|
||||
| `provider` | `string` | Yes | The font provider. Currently only `google` is supported. |
|
||||
| `import` | `string` | Yes | The import name for the font from `next/font/google`. |
|
||||
| `variable` | `string` | Yes | The CSS variable name for the font (e.g., `--font-sans`, `--font-mono`). |
|
||||
| `weight` | `string[]` | No | Array of font weights to include. |
|
||||
| `subsets` | `string[]` | No | Array of font subsets to include. |
|
||||
| `selector` | `string` | No | CSS selector to apply the font to. Defaults to `html`. |
|
||||
| `dependency` | `string` | No | The npm package to install for non-Next.js projects (e.g., `@fontsource-variable/inter`). |
|
||||
|
||||
### docs
|
||||
|
||||
Use `docs` to show custom documentation or message when installing your registry item via the CLI.
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
"rehype-pretty-code": "^0.14.1",
|
||||
"rimraf": "^6.0.1",
|
||||
"server-only": "^0.0.1",
|
||||
"shadcn": "4.0.6",
|
||||
"shadcn": "4.0.8",
|
||||
"shiki": "^1.10.1",
|
||||
"sonner": "^2.0.0",
|
||||
"swr": "^2.3.6",
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"@basecn": "https://basecn.dev/r/{name}.json",
|
||||
"@better-upload": "https://better-upload.com/r/{name}.json",
|
||||
"@billingsdk": "https://billingsdk.com/r/{name}.json",
|
||||
"@blocks": "https://blocks.so/r/{name}.json",
|
||||
"@blocks-so": "https://blocks.so/r/{name}.json",
|
||||
"@bucharitesh": "https://bucharitesh.in/r/{name}.json",
|
||||
"@bundui": "https://bundui.io/r/{name}.json",
|
||||
"@cardcn": "https://cardcn.dev/r/{name}.json",
|
||||
@@ -41,7 +41,7 @@
|
||||
"@gaia": "https://ui.heygaia.io/r/{name}.json",
|
||||
"@glass-ui": "https://glass-ui.crenspire.com/r/{name}.json",
|
||||
"@heseui": "https://www.heseui.com/r/{name}.json",
|
||||
"@hooks": "https://shadcn-hooks.com/r/{name}.json",
|
||||
"@shadcnhooks": "https://shadcn-hooks.com/r/{name}.json",
|
||||
"@intentui": "https://intentui.com/r/{name}",
|
||||
"@kibo-ui": "https://www.kibo-ui.com/r/{name}.json",
|
||||
"@kanpeki": "https://kanpeki.vercel.app/r/{name}.json",
|
||||
|
||||
@@ -114,7 +114,7 @@
|
||||
"description": "BillingSDK is an open-source React and Next.js component library for SaaS billing and payments. It offers ready-to-use, customizable components for subscriptions, invoices, usage-based pricing and billing - fully compatible with Dodo Payments and Stripe."
|
||||
},
|
||||
{
|
||||
"name": "@blocks",
|
||||
"name": "@blocks-so",
|
||||
"homepage": "https://blocks.so",
|
||||
"url": "https://blocks.so/r/{name}.json",
|
||||
"description": "A set of clean, modern application building blocks for you in your applications. Free and Open Source"
|
||||
@@ -252,7 +252,7 @@
|
||||
"description": "Ready-to-use foundation components/blocks built on top of shadcn/ui."
|
||||
},
|
||||
{
|
||||
"name": "@hooks",
|
||||
"name": "@shadcnhooks",
|
||||
"homepage": "https://shadcn-hooks.com",
|
||||
"url": "https://shadcn-hooks.com/r/{name}.json",
|
||||
"description": "A comprehensive React Hooks Collection built with Shadcn."
|
||||
@@ -577,8 +577,8 @@
|
||||
},
|
||||
{
|
||||
"name": "@waves-cn",
|
||||
"homepage": "https://waves-cn.vercel.app/r/{name}.json",
|
||||
"url": "https://waves-cn.vercel.app",
|
||||
"homepage": "https://waves-cn.vercel.app",
|
||||
"url": "https://waves-cn.vercel.app/r/{name}.json",
|
||||
"description": "A collection of wave players and waveform components built with wavesurfer.js and shadcn/ui."
|
||||
},
|
||||
{
|
||||
@@ -887,6 +887,12 @@
|
||||
"url": "https://componentry.fun/r/{name}.json",
|
||||
"description": "Beautiful, interactive React + Tailwind components for modern product UIs."
|
||||
},
|
||||
{
|
||||
"name": "@paletteui",
|
||||
"homepage": "https://paletteui.xyz",
|
||||
"url": "https://paletteui.xyz/r/{name}.json",
|
||||
"description": "Curated OKLCH color themes for shadcn/ui + visual theme editor with CSS, Tailwind v4, and Figma export."
|
||||
},
|
||||
{
|
||||
"name": "@fluid",
|
||||
"homepage": "https://www.fluidfunctionalism.com",
|
||||
@@ -898,5 +904,11 @@
|
||||
"homepage": "https://www.gammaui.com",
|
||||
"url": "https://www.gammaui.com/r/{name}.json",
|
||||
"description": "Beautifully designed landing page components built with React & Tailwind CSS & Motion."
|
||||
},
|
||||
{
|
||||
"name": "@flx",
|
||||
"homepage": "https://ui.flexnative.com",
|
||||
"url": "https://ui.flexnative.com/r/{name}.json",
|
||||
"description": "A collection of customizable UI blocks with interactive live previews"
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
}
|
||||
@@ -2838,7 +2838,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2850,7 +2851,8 @@
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2861,7 +2863,8 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2872,7 +2875,8 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2884,7 +2888,8 @@
|
||||
"provider": "google",
|
||||
"import": "Figtree",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2896,7 +2901,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2908,7 +2914,8 @@
|
||||
"provider": "google",
|
||||
"import": "Raleway",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2920,7 +2927,8 @@
|
||||
"provider": "google",
|
||||
"import": "DM_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2932,7 +2940,8 @@
|
||||
"provider": "google",
|
||||
"import": "Public_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2944,7 +2953,8 @@
|
||||
"provider": "google",
|
||||
"import": "Outfit",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2956,7 +2966,8 @@
|
||||
"provider": "google",
|
||||
"import": "JetBrains_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2968,7 +2979,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2980,7 +2992,8 @@
|
||||
"provider": "google",
|
||||
"import": "Noto_Serif",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2992,7 +3005,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto_Slab",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3004,7 +3018,8 @@
|
||||
"provider": "google",
|
||||
"import": "Merriweather",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3016,7 +3031,8 @@
|
||||
"provider": "google",
|
||||
"import": "Lora",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3028,7 +3044,8 @@
|
||||
"provider": "google",
|
||||
"import": "Playfair_Display",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
}
|
||||
@@ -2838,7 +2838,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2850,7 +2851,8 @@
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2861,7 +2863,8 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2872,7 +2875,8 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2884,7 +2888,8 @@
|
||||
"provider": "google",
|
||||
"import": "Figtree",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2896,7 +2901,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2908,7 +2914,8 @@
|
||||
"provider": "google",
|
||||
"import": "Raleway",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2920,7 +2927,8 @@
|
||||
"provider": "google",
|
||||
"import": "DM_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2932,7 +2940,8 @@
|
||||
"provider": "google",
|
||||
"import": "Public_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2944,7 +2953,8 @@
|
||||
"provider": "google",
|
||||
"import": "Outfit",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2956,7 +2966,8 @@
|
||||
"provider": "google",
|
||||
"import": "JetBrains_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2968,7 +2979,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2980,7 +2992,8 @@
|
||||
"provider": "google",
|
||||
"import": "Noto_Serif",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2992,7 +3005,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto_Slab",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3004,7 +3018,8 @@
|
||||
"provider": "google",
|
||||
"import": "Merriweather",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3016,7 +3031,8 @@
|
||||
"provider": "google",
|
||||
"import": "Lora",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3028,7 +3044,8 @@
|
||||
"provider": "google",
|
||||
"import": "Playfair_Display",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
}
|
||||
@@ -2838,7 +2838,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2850,7 +2851,8 @@
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2861,7 +2863,8 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2872,7 +2875,8 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2884,7 +2888,8 @@
|
||||
"provider": "google",
|
||||
"import": "Figtree",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2896,7 +2901,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2908,7 +2914,8 @@
|
||||
"provider": "google",
|
||||
"import": "Raleway",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2920,7 +2927,8 @@
|
||||
"provider": "google",
|
||||
"import": "DM_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2932,7 +2940,8 @@
|
||||
"provider": "google",
|
||||
"import": "Public_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2944,7 +2953,8 @@
|
||||
"provider": "google",
|
||||
"import": "Outfit",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2956,7 +2966,8 @@
|
||||
"provider": "google",
|
||||
"import": "JetBrains_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2968,7 +2979,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2980,7 +2992,8 @@
|
||||
"provider": "google",
|
||||
"import": "Noto_Serif",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2992,7 +3005,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto_Slab",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3004,7 +3018,8 @@
|
||||
"provider": "google",
|
||||
"import": "Merriweather",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3016,7 +3031,8 @@
|
||||
"provider": "google",
|
||||
"import": "Lora",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3028,7 +3044,8 @@
|
||||
"provider": "google",
|
||||
"import": "Playfair_Display",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
}
|
||||
@@ -2838,7 +2838,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2850,7 +2851,8 @@
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2861,7 +2863,8 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2872,7 +2875,8 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2884,7 +2888,8 @@
|
||||
"provider": "google",
|
||||
"import": "Figtree",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2896,7 +2901,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2908,7 +2914,8 @@
|
||||
"provider": "google",
|
||||
"import": "Raleway",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2920,7 +2927,8 @@
|
||||
"provider": "google",
|
||||
"import": "DM_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2932,7 +2940,8 @@
|
||||
"provider": "google",
|
||||
"import": "Public_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2944,7 +2953,8 @@
|
||||
"provider": "google",
|
||||
"import": "Outfit",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2956,7 +2966,8 @@
|
||||
"provider": "google",
|
||||
"import": "JetBrains_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2968,7 +2979,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2980,7 +2992,8 @@
|
||||
"provider": "google",
|
||||
"import": "Noto_Serif",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2992,7 +3005,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto_Slab",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3004,7 +3018,8 @@
|
||||
"provider": "google",
|
||||
"import": "Merriweather",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3016,7 +3031,8 @@
|
||||
"provider": "google",
|
||||
"import": "Lora",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3028,7 +3044,8 @@
|
||||
"provider": "google",
|
||||
"import": "Playfair_Display",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-mono",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-serif",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
}
|
||||
@@ -2838,7 +2838,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2850,7 +2851,8 @@
|
||||
"provider": "google",
|
||||
"import": "Inter",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/inter"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2861,7 +2863,8 @@
|
||||
"family": "'Noto Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Noto_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/noto-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2872,7 +2875,8 @@
|
||||
"family": "'Nunito Sans Variable', sans-serif",
|
||||
"provider": "google",
|
||||
"import": "Nunito_Sans",
|
||||
"variable": "--font-sans"
|
||||
"variable": "--font-sans",
|
||||
"dependency": "@fontsource-variable/nunito-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2884,7 +2888,8 @@
|
||||
"provider": "google",
|
||||
"import": "Figtree",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2896,7 +2901,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2908,7 +2914,8 @@
|
||||
"provider": "google",
|
||||
"import": "Raleway",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/raleway"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2920,7 +2927,8 @@
|
||||
"provider": "google",
|
||||
"import": "DM_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2932,7 +2940,8 @@
|
||||
"provider": "google",
|
||||
"import": "Public_Sans",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/public-sans"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2944,7 +2953,8 @@
|
||||
"provider": "google",
|
||||
"import": "Outfit",
|
||||
"variable": "--font-sans",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/outfit"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2956,7 +2966,8 @@
|
||||
"provider": "google",
|
||||
"import": "JetBrains_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/jetbrains-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2968,7 +2979,8 @@
|
||||
"provider": "google",
|
||||
"import": "Geist_Mono",
|
||||
"variable": "--font-mono",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/geist-mono"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2980,7 +2992,8 @@
|
||||
"provider": "google",
|
||||
"import": "Noto_Serif",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/noto-serif"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -2992,7 +3005,8 @@
|
||||
"provider": "google",
|
||||
"import": "Roboto_Slab",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/roboto-slab"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3004,7 +3018,8 @@
|
||||
"provider": "google",
|
||||
"import": "Merriweather",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/merriweather"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3016,7 +3031,8 @@
|
||||
"provider": "google",
|
||||
"import": "Lora",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/lora"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -3028,7 +3044,8 @@
|
||||
"provider": "google",
|
||||
"import": "Playfair_Display",
|
||||
"variable": "--font-serif",
|
||||
"subsets": ["latin"]
|
||||
"subsets": ["latin"],
|
||||
"dependency": "@fontsource-variable/playfair-display"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/dm-sans"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
"variable": "--font-sans",
|
||||
"subsets": [
|
||||
"latin"
|
||||
]
|
||||
],
|
||||
"dependency": "@fontsource-variable/figtree"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user