next 15.4.0-canary.72 → 15.4.0-canary.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/next +1 -1
- package/dist/build/index.js +2 -2
- package/dist/build/swc/index.js +1 -1
- package/dist/build/webpack-config.js +2 -2
- package/dist/client/app-bootstrap.js +1 -1
- package/dist/client/index.js +1 -1
- package/dist/compiled/@next/font/dist/google/font-data.json +164 -1
- package/dist/compiled/@next/font/dist/google/index.d.ts +93 -2
- package/dist/compiled/next-devtools/index.js +1 -1
- package/dist/compiled/next-devtools/index.js.map +1 -1
- package/dist/compiled/next-server/pages-api.runtime.dev.js +1 -1
- package/dist/compiled/next-server/pages-api.runtime.dev.js.map +1 -1
- package/dist/compiled/next-server/pages-api.runtime.prod.js +1 -1
- package/dist/compiled/next-server/pages-api.runtime.prod.js.map +1 -1
- package/dist/compiled/next-server/pages.runtime.dev.js +2 -2
- package/dist/compiled/next-server/pages.runtime.dev.js.map +1 -1
- package/dist/compiled/next-server/pages.runtime.prod.js +2 -2
- package/dist/compiled/next-server/pages.runtime.prod.js.map +1 -1
- package/dist/compiled/next-server/server.runtime.prod.js +1 -1
- package/dist/compiled/next-server/server.runtime.prod.js.map +1 -1
- package/dist/esm/build/index.js +2 -2
- package/dist/esm/build/swc/index.js +1 -1
- package/dist/esm/build/webpack-config.js +2 -2
- package/dist/esm/client/app-bootstrap.js +1 -1
- package/dist/esm/client/index.js +1 -1
- package/dist/esm/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/esm/server/lib/app-info-log.js +1 -1
- package/dist/esm/server/lib/start-server.js +1 -1
- package/dist/esm/server/lib/streaming-metadata.js +5 -2
- package/dist/esm/server/lib/streaming-metadata.js.map +1 -1
- package/dist/esm/shared/lib/canary-only.js +1 -1
- package/dist/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/server/lib/app-info-log.js +1 -1
- package/dist/server/lib/start-server.js +1 -1
- package/dist/server/lib/streaming-metadata.js +5 -2
- package/dist/server/lib/streaming-metadata.js.map +1 -1
- package/dist/shared/lib/canary-only.js +1 -1
- package/dist/telemetry/anonymous-meta.js +1 -1
- package/dist/telemetry/events/session-stopped.js +2 -2
- package/dist/telemetry/events/version.js +2 -2
- package/package.json +15 -15
package/dist/bin/next
CHANGED
@@ -79,7 +79,7 @@ const program = new NextRootCommand();
|
|
79
79
|
program.name('next').description('The Next.js CLI allows you to develop, build, start your application, and more.').configureHelp({
|
80
80
|
formatHelp: (cmd, helper)=>(0, _formatclihelpoutput.formatCliHelpOutput)(cmd, helper),
|
81
81
|
subcommandTerm: (cmd)=>`${cmd.name()} ${cmd.usage()}`
|
82
|
-
}).helpCommand(false).helpOption('-h, --help', 'Displays this message.').version(`Next.js v${"15.4.0-canary.
|
82
|
+
}).helpCommand(false).helpOption('-h, --help', 'Displays this message.').version(`Next.js v${"15.4.0-canary.74"}`, '-v, --version', 'Outputs the Next.js version.');
|
83
83
|
program.command('build').description('Creates an optimized production build of your application. The output displays information about each route.').argument('[directory]', `A directory on which to build the application. ${(0, _picocolors.italic)('If no directory is provided, the current directory will be used.')}`).option('-d, --debug', 'Enables a more verbose build output.').option('--no-lint', 'Disables linting.').option('--no-mangling', 'Disables mangling.').option('--profile', 'Enables production profiling for React.').option('--experimental-app-only', 'Builds only App Router routes.').option('--turbo', 'Starts development mode using Turbopack.').option('--turbopack', 'Starts development mode using Turbopack.').addOption(new _commander.Option('--experimental-build-mode [mode]', 'Uses an experimental build mode.').choices([
|
84
84
|
'compile',
|
85
85
|
'generate',
|
package/dist/build/index.js
CHANGED
@@ -363,7 +363,7 @@ async function build(dir, reactProductionProfiling = false, debugOutput = false,
|
|
363
363
|
const nextBuildSpan = (0, _trace.trace)('next-build', undefined, {
|
364
364
|
buildMode: experimentalBuildMode,
|
365
365
|
isTurboBuild: String(isTurbopack),
|
366
|
-
version: "15.4.0-canary.
|
366
|
+
version: "15.4.0-canary.74"
|
367
367
|
});
|
368
368
|
_buildcontext.NextBuildContext.nextBuildSpan = nextBuildSpan;
|
369
369
|
_buildcontext.NextBuildContext.dir = dir;
|
@@ -744,7 +744,7 @@ async function build(dir, reactProductionProfiling = false, debugOutput = false,
|
|
744
744
|
// Files outside of the distDir can be "type": "module"
|
745
745
|
await writeFileUtf8(_path.default.join(distDir, 'package.json'), '{"type": "commonjs"}');
|
746
746
|
// These are written to distDir, so they need to come after creating and cleaning distDr.
|
747
|
-
await (0, _builddiagnostics.recordFrameworkVersion)("15.4.0-canary.
|
747
|
+
await (0, _builddiagnostics.recordFrameworkVersion)("15.4.0-canary.74");
|
748
748
|
await (0, _builddiagnostics.updateBuildDiagnostics)({
|
749
749
|
buildStage: 'start'
|
750
750
|
});
|
package/dist/build/swc/index.js
CHANGED
@@ -123,7 +123,7 @@ function _interop_require_wildcard(obj, nodeInterop) {
|
|
123
123
|
}
|
124
124
|
return newObj;
|
125
125
|
}
|
126
|
-
const nextVersion = "15.4.0-canary.
|
126
|
+
const nextVersion = "15.4.0-canary.74";
|
127
127
|
const ArchName = (0, _os.arch)();
|
128
128
|
const PlatformName = (0, _os.platform)();
|
129
129
|
function infoLog(...args) {
|
@@ -1674,7 +1674,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
1674
1674
|
isClient && new _copyfileplugin.CopyFilePlugin({
|
1675
1675
|
// file path to build output of `@next/polyfill-nomodule`
|
1676
1676
|
filePath: require.resolve('./polyfills/polyfill-nomodule'),
|
1677
|
-
cacheKey: "15.4.0-canary.
|
1677
|
+
cacheKey: "15.4.0-canary.74",
|
1678
1678
|
name: `static/chunks/polyfills${dev ? '' : '-[hash]'}.js`,
|
1679
1679
|
minimize: false,
|
1680
1680
|
info: {
|
@@ -1854,7 +1854,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
1854
1854
|
// - Next.js location on disk (some loaders use absolute paths and some resolve options depend on absolute paths)
|
1855
1855
|
// - Next.js version
|
1856
1856
|
// - next.config.js keys that affect compilation
|
1857
|
-
version: `${__dirname}|${"15.4.0-canary.
|
1857
|
+
version: `${__dirname}|${"15.4.0-canary.74"}|${configVars}`,
|
1858
1858
|
cacheDirectory: _path.default.join(distDir, 'cache', 'webpack'),
|
1859
1859
|
// For production builds, it's more efficient to compress all cache files together instead of compression each one individually.
|
1860
1860
|
// So we disable compression here and allow the build runner to take care of compressing the cache as a whole.
|
package/dist/client/index.js
CHANGED
@@ -61,7 +61,7 @@ const _hooksclientcontextsharedruntime = require("../shared/lib/hooks-client-con
|
|
61
61
|
const _onrecoverableerror = require("./react-client-callbacks/on-recoverable-error");
|
62
62
|
const _tracer = /*#__PURE__*/ _interop_require_default._(require("./tracing/tracer"));
|
63
63
|
const _isnextroutererror = require("./components/is-next-router-error");
|
64
|
-
const version = "15.4.0-canary.
|
64
|
+
const version = "15.4.0-canary.74";
|
65
65
|
let router;
|
66
66
|
const emitter = (0, _mitt.default)();
|
67
67
|
const looseToArray = (input)=>[].slice.call(input);
|
@@ -512,6 +512,30 @@
|
|
512
512
|
"styles": ["normal", "italic"],
|
513
513
|
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
|
514
514
|
},
|
515
|
+
"Alumni Sans SC": {
|
516
|
+
"weights": [
|
517
|
+
"100",
|
518
|
+
"200",
|
519
|
+
"300",
|
520
|
+
"400",
|
521
|
+
"500",
|
522
|
+
"600",
|
523
|
+
"700",
|
524
|
+
"800",
|
525
|
+
"900",
|
526
|
+
"variable"
|
527
|
+
],
|
528
|
+
"styles": ["normal", "italic"],
|
529
|
+
"axes": [
|
530
|
+
{
|
531
|
+
"tag": "wght",
|
532
|
+
"min": 100,
|
533
|
+
"max": 900,
|
534
|
+
"defaultValue": 400
|
535
|
+
}
|
536
|
+
],
|
537
|
+
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
|
538
|
+
},
|
515
539
|
"Amarante": {
|
516
540
|
"weights": ["400"],
|
517
541
|
"styles": ["normal"],
|
@@ -1241,6 +1265,19 @@
|
|
1241
1265
|
],
|
1242
1266
|
"subsets": ["hebrew", "latin", "latin-ext"]
|
1243
1267
|
},
|
1268
|
+
"Asta Sans": {
|
1269
|
+
"weights": ["300", "400", "500", "600", "700", "800", "variable"],
|
1270
|
+
"styles": ["normal"],
|
1271
|
+
"axes": [
|
1272
|
+
{
|
1273
|
+
"tag": "wght",
|
1274
|
+
"min": 300,
|
1275
|
+
"max": 800,
|
1276
|
+
"defaultValue": 400
|
1277
|
+
}
|
1278
|
+
],
|
1279
|
+
"subsets": ["latin"]
|
1280
|
+
},
|
1244
1281
|
"Astloch": {
|
1245
1282
|
"weights": ["400", "700"],
|
1246
1283
|
"styles": ["normal"],
|
@@ -3581,6 +3618,19 @@
|
|
3581
3618
|
],
|
3582
3619
|
"subsets": ["latin", "latin-ext"]
|
3583
3620
|
},
|
3621
|
+
"Edu NSW ACT Cursive": {
|
3622
|
+
"weights": ["400", "500", "600", "700", "variable"],
|
3623
|
+
"styles": ["normal"],
|
3624
|
+
"axes": [
|
3625
|
+
{
|
3626
|
+
"tag": "wght",
|
3627
|
+
"min": 400,
|
3628
|
+
"max": 700,
|
3629
|
+
"defaultValue": 400
|
3630
|
+
}
|
3631
|
+
],
|
3632
|
+
"subsets": ["latin", "latin-ext"]
|
3633
|
+
},
|
3584
3634
|
"Edu NSW ACT Foundation": {
|
3585
3635
|
"weights": ["400", "500", "600", "700", "variable"],
|
3586
3636
|
"styles": ["normal"],
|
@@ -3594,6 +3644,19 @@
|
|
3594
3644
|
],
|
3595
3645
|
"subsets": ["latin"]
|
3596
3646
|
},
|
3647
|
+
"Edu NSW ACT Hand Pre": {
|
3648
|
+
"weights": ["400", "500", "600", "700", "variable"],
|
3649
|
+
"styles": ["normal"],
|
3650
|
+
"axes": [
|
3651
|
+
{
|
3652
|
+
"tag": "wght",
|
3653
|
+
"min": 400,
|
3654
|
+
"max": 700,
|
3655
|
+
"defaultValue": 400
|
3656
|
+
}
|
3657
|
+
],
|
3658
|
+
"subsets": ["latin", "latin-ext"]
|
3659
|
+
},
|
3597
3660
|
"Edu QLD Beginner": {
|
3598
3661
|
"weights": ["400", "500", "600", "700", "variable"],
|
3599
3662
|
"styles": ["normal"],
|
@@ -3607,6 +3670,19 @@
|
|
3607
3670
|
],
|
3608
3671
|
"subsets": ["latin"]
|
3609
3672
|
},
|
3673
|
+
"Edu QLD Hand": {
|
3674
|
+
"weights": ["400", "500", "600", "700", "variable"],
|
3675
|
+
"styles": ["normal"],
|
3676
|
+
"axes": [
|
3677
|
+
{
|
3678
|
+
"tag": "wght",
|
3679
|
+
"min": 400,
|
3680
|
+
"max": 700,
|
3681
|
+
"defaultValue": 400
|
3682
|
+
}
|
3683
|
+
],
|
3684
|
+
"subsets": ["latin", "latin-ext", "vietnamese"]
|
3685
|
+
},
|
3610
3686
|
"Edu SA Beginner": {
|
3611
3687
|
"weights": ["400", "500", "600", "700", "variable"],
|
3612
3688
|
"styles": ["normal"],
|
@@ -3620,6 +3696,19 @@
|
|
3620
3696
|
],
|
3621
3697
|
"subsets": ["latin"]
|
3622
3698
|
},
|
3699
|
+
"Edu SA Hand": {
|
3700
|
+
"weights": ["400", "500", "600", "700", "variable"],
|
3701
|
+
"styles": ["normal"],
|
3702
|
+
"axes": [
|
3703
|
+
{
|
3704
|
+
"tag": "wght",
|
3705
|
+
"min": 400,
|
3706
|
+
"max": 700,
|
3707
|
+
"defaultValue": 400
|
3708
|
+
}
|
3709
|
+
],
|
3710
|
+
"subsets": ["latin", "latin-ext"]
|
3711
|
+
},
|
3623
3712
|
"Edu TAS Beginner": {
|
3624
3713
|
"weights": ["400", "500", "600", "700", "variable"],
|
3625
3714
|
"styles": ["normal"],
|
@@ -3646,6 +3735,32 @@
|
|
3646
3735
|
],
|
3647
3736
|
"subsets": ["latin"]
|
3648
3737
|
},
|
3738
|
+
"Edu VIC WA NT Hand": {
|
3739
|
+
"weights": ["400", "500", "600", "700", "variable"],
|
3740
|
+
"styles": ["normal"],
|
3741
|
+
"axes": [
|
3742
|
+
{
|
3743
|
+
"tag": "wght",
|
3744
|
+
"min": 400,
|
3745
|
+
"max": 700,
|
3746
|
+
"defaultValue": 400
|
3747
|
+
}
|
3748
|
+
],
|
3749
|
+
"subsets": ["latin", "latin-ext"]
|
3750
|
+
},
|
3751
|
+
"Edu VIC WA NT Hand Pre": {
|
3752
|
+
"weights": ["400", "500", "600", "700", "variable"],
|
3753
|
+
"styles": ["normal"],
|
3754
|
+
"axes": [
|
3755
|
+
{
|
3756
|
+
"tag": "wght",
|
3757
|
+
"min": 400,
|
3758
|
+
"max": 700,
|
3759
|
+
"defaultValue": 400
|
3760
|
+
}
|
3761
|
+
],
|
3762
|
+
"subsets": ["latin", "latin-ext"]
|
3763
|
+
},
|
3649
3764
|
"El Messiri": {
|
3650
3765
|
"weights": ["400", "500", "600", "700", "variable"],
|
3651
3766
|
"styles": ["normal"],
|
@@ -10135,8 +10250,33 @@
|
|
10135
10250
|
"subsets": ["latin", "latin-ext", "thai"]
|
10136
10251
|
},
|
10137
10252
|
"Noto Sans Thai Looped": {
|
10138
|
-
"weights": [
|
10253
|
+
"weights": [
|
10254
|
+
"100",
|
10255
|
+
"200",
|
10256
|
+
"300",
|
10257
|
+
"400",
|
10258
|
+
"500",
|
10259
|
+
"600",
|
10260
|
+
"700",
|
10261
|
+
"800",
|
10262
|
+
"900",
|
10263
|
+
"variable"
|
10264
|
+
],
|
10139
10265
|
"styles": ["normal"],
|
10266
|
+
"axes": [
|
10267
|
+
{
|
10268
|
+
"tag": "wdth",
|
10269
|
+
"min": 62.5,
|
10270
|
+
"max": 100,
|
10271
|
+
"defaultValue": 100
|
10272
|
+
},
|
10273
|
+
{
|
10274
|
+
"tag": "wght",
|
10275
|
+
"min": 100,
|
10276
|
+
"max": 900,
|
10277
|
+
"defaultValue": 400
|
10278
|
+
}
|
10279
|
+
],
|
10140
10280
|
"subsets": ["latin", "latin-ext", "thai"]
|
10141
10281
|
},
|
10142
10282
|
"Noto Sans Tifinagh": {
|
@@ -14426,6 +14566,29 @@
|
|
14426
14566
|
"styles": ["normal"],
|
14427
14567
|
"subsets": ["latin"]
|
14428
14568
|
},
|
14569
|
+
"Savate": {
|
14570
|
+
"weights": [
|
14571
|
+
"200",
|
14572
|
+
"300",
|
14573
|
+
"400",
|
14574
|
+
"500",
|
14575
|
+
"600",
|
14576
|
+
"700",
|
14577
|
+
"800",
|
14578
|
+
"900",
|
14579
|
+
"variable"
|
14580
|
+
],
|
14581
|
+
"styles": ["normal", "italic"],
|
14582
|
+
"axes": [
|
14583
|
+
{
|
14584
|
+
"tag": "wght",
|
14585
|
+
"min": 200,
|
14586
|
+
"max": 900,
|
14587
|
+
"defaultValue": 400
|
14588
|
+
}
|
14589
|
+
],
|
14590
|
+
"subsets": ["latin", "latin-ext"]
|
14591
|
+
},
|
14429
14592
|
"Sawarabi Gothic": {
|
14430
14593
|
"weights": ["400"],
|
14431
14594
|
"styles": ["normal"],
|
@@ -576,6 +576,16 @@ export declare function Alumni_Sans_Pinstripe<T extends CssVariable | undefined
|
|
576
576
|
adjustFontFallback?: boolean;
|
577
577
|
subsets?: Array<'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'>;
|
578
578
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
579
|
+
export declare function Alumni_Sans_SC<T extends CssVariable | undefined = undefined>(options?: {
|
580
|
+
weight?: '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | 'variable' | Array<'100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'>;
|
581
|
+
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>;
|
582
|
+
display?: Display;
|
583
|
+
variable?: T;
|
584
|
+
preload?: boolean;
|
585
|
+
fallback?: string[];
|
586
|
+
adjustFontFallback?: boolean;
|
587
|
+
subsets?: Array<'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'>;
|
588
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
579
589
|
export declare function Amarante<T extends CssVariable | undefined = undefined>(options: {
|
580
590
|
weight: '400' | Array<'400'>;
|
581
591
|
style?: 'normal' | Array<'normal'>;
|
@@ -1199,6 +1209,16 @@ export declare function Assistant<T extends CssVariable | undefined = undefined>
|
|
1199
1209
|
adjustFontFallback?: boolean;
|
1200
1210
|
subsets?: Array<'hebrew' | 'latin' | 'latin-ext'>;
|
1201
1211
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
1212
|
+
export declare function Asta_Sans<T extends CssVariable | undefined = undefined>(options?: {
|
1213
|
+
weight?: '300' | '400' | '500' | '600' | '700' | '800' | 'variable' | Array<'300' | '400' | '500' | '600' | '700' | '800'>;
|
1214
|
+
style?: 'normal' | Array<'normal'>;
|
1215
|
+
display?: Display;
|
1216
|
+
variable?: T;
|
1217
|
+
preload?: boolean;
|
1218
|
+
fallback?: string[];
|
1219
|
+
adjustFontFallback?: boolean;
|
1220
|
+
subsets?: Array<'latin'>;
|
1221
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
1202
1222
|
export declare function Astloch<T extends CssVariable | undefined = undefined>(options: {
|
1203
1223
|
weight: '400' | '700' | Array<'400' | '700'>;
|
1204
1224
|
style?: 'normal' | Array<'normal'>;
|
@@ -4136,6 +4156,16 @@ export declare function Edu_AU_VIC_WA_NT_Pre<T extends CssVariable | undefined =
|
|
4136
4156
|
adjustFontFallback?: boolean;
|
4137
4157
|
subsets?: Array<'latin' | 'latin-ext'>;
|
4138
4158
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4159
|
+
export declare function Edu_NSW_ACT_Cursive<T extends CssVariable | undefined = undefined>(options?: {
|
4160
|
+
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4161
|
+
style?: 'normal' | Array<'normal'>;
|
4162
|
+
display?: Display;
|
4163
|
+
variable?: T;
|
4164
|
+
preload?: boolean;
|
4165
|
+
fallback?: string[];
|
4166
|
+
adjustFontFallback?: boolean;
|
4167
|
+
subsets?: Array<'latin' | 'latin-ext'>;
|
4168
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4139
4169
|
export declare function Edu_NSW_ACT_Foundation<T extends CssVariable | undefined = undefined>(options?: {
|
4140
4170
|
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4141
4171
|
style?: 'normal' | Array<'normal'>;
|
@@ -4146,6 +4176,16 @@ export declare function Edu_NSW_ACT_Foundation<T extends CssVariable | undefined
|
|
4146
4176
|
adjustFontFallback?: boolean;
|
4147
4177
|
subsets?: Array<'latin'>;
|
4148
4178
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4179
|
+
export declare function Edu_NSW_ACT_Hand_Pre<T extends CssVariable | undefined = undefined>(options?: {
|
4180
|
+
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4181
|
+
style?: 'normal' | Array<'normal'>;
|
4182
|
+
display?: Display;
|
4183
|
+
variable?: T;
|
4184
|
+
preload?: boolean;
|
4185
|
+
fallback?: string[];
|
4186
|
+
adjustFontFallback?: boolean;
|
4187
|
+
subsets?: Array<'latin' | 'latin-ext'>;
|
4188
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4149
4189
|
export declare function Edu_QLD_Beginner<T extends CssVariable | undefined = undefined>(options?: {
|
4150
4190
|
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4151
4191
|
style?: 'normal' | Array<'normal'>;
|
@@ -4156,6 +4196,16 @@ export declare function Edu_QLD_Beginner<T extends CssVariable | undefined = und
|
|
4156
4196
|
adjustFontFallback?: boolean;
|
4157
4197
|
subsets?: Array<'latin'>;
|
4158
4198
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4199
|
+
export declare function Edu_QLD_Hand<T extends CssVariable | undefined = undefined>(options?: {
|
4200
|
+
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4201
|
+
style?: 'normal' | Array<'normal'>;
|
4202
|
+
display?: Display;
|
4203
|
+
variable?: T;
|
4204
|
+
preload?: boolean;
|
4205
|
+
fallback?: string[];
|
4206
|
+
adjustFontFallback?: boolean;
|
4207
|
+
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>;
|
4208
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4159
4209
|
export declare function Edu_SA_Beginner<T extends CssVariable | undefined = undefined>(options?: {
|
4160
4210
|
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4161
4211
|
style?: 'normal' | Array<'normal'>;
|
@@ -4166,6 +4216,16 @@ export declare function Edu_SA_Beginner<T extends CssVariable | undefined = unde
|
|
4166
4216
|
adjustFontFallback?: boolean;
|
4167
4217
|
subsets?: Array<'latin'>;
|
4168
4218
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4219
|
+
export declare function Edu_SA_Hand<T extends CssVariable | undefined = undefined>(options?: {
|
4220
|
+
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4221
|
+
style?: 'normal' | Array<'normal'>;
|
4222
|
+
display?: Display;
|
4223
|
+
variable?: T;
|
4224
|
+
preload?: boolean;
|
4225
|
+
fallback?: string[];
|
4226
|
+
adjustFontFallback?: boolean;
|
4227
|
+
subsets?: Array<'latin' | 'latin-ext'>;
|
4228
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4169
4229
|
export declare function Edu_TAS_Beginner<T extends CssVariable | undefined = undefined>(options?: {
|
4170
4230
|
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4171
4231
|
style?: 'normal' | Array<'normal'>;
|
@@ -4186,6 +4246,26 @@ export declare function Edu_VIC_WA_NT_Beginner<T extends CssVariable | undefined
|
|
4186
4246
|
adjustFontFallback?: boolean;
|
4187
4247
|
subsets?: Array<'latin'>;
|
4188
4248
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4249
|
+
export declare function Edu_VIC_WA_NT_Hand<T extends CssVariable | undefined = undefined>(options?: {
|
4250
|
+
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4251
|
+
style?: 'normal' | Array<'normal'>;
|
4252
|
+
display?: Display;
|
4253
|
+
variable?: T;
|
4254
|
+
preload?: boolean;
|
4255
|
+
fallback?: string[];
|
4256
|
+
adjustFontFallback?: boolean;
|
4257
|
+
subsets?: Array<'latin' | 'latin-ext'>;
|
4258
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4259
|
+
export declare function Edu_VIC_WA_NT_Hand_Pre<T extends CssVariable | undefined = undefined>(options?: {
|
4260
|
+
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4261
|
+
style?: 'normal' | Array<'normal'>;
|
4262
|
+
display?: Display;
|
4263
|
+
variable?: T;
|
4264
|
+
preload?: boolean;
|
4265
|
+
fallback?: string[];
|
4266
|
+
adjustFontFallback?: boolean;
|
4267
|
+
subsets?: Array<'latin' | 'latin-ext'>;
|
4268
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
4189
4269
|
export declare function El_Messiri<T extends CssVariable | undefined = undefined>(options?: {
|
4190
4270
|
weight?: '400' | '500' | '600' | '700' | 'variable' | Array<'400' | '500' | '600' | '700'>;
|
4191
4271
|
style?: 'normal' | Array<'normal'>;
|
@@ -11307,8 +11387,8 @@ export declare function Noto_Sans_Thai<T extends CssVariable | undefined = undef
|
|
11307
11387
|
subsets?: Array<'latin' | 'latin-ext' | 'thai'>;
|
11308
11388
|
axes?: 'wdth'[];
|
11309
11389
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
11310
|
-
export declare function Noto_Sans_Thai_Looped<T extends CssVariable | undefined = undefined>(options
|
11311
|
-
weight
|
11390
|
+
export declare function Noto_Sans_Thai_Looped<T extends CssVariable | undefined = undefined>(options?: {
|
11391
|
+
weight?: '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | 'variable' | Array<'100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'>;
|
11312
11392
|
style?: 'normal' | Array<'normal'>;
|
11313
11393
|
display?: Display;
|
11314
11394
|
variable?: T;
|
@@ -11316,6 +11396,7 @@ export declare function Noto_Sans_Thai_Looped<T extends CssVariable | undefined
|
|
11316
11396
|
fallback?: string[];
|
11317
11397
|
adjustFontFallback?: boolean;
|
11318
11398
|
subsets?: Array<'latin' | 'latin-ext' | 'thai'>;
|
11399
|
+
axes?: 'wdth'[];
|
11319
11400
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
11320
11401
|
export declare function Noto_Sans_Tifinagh<T extends CssVariable | undefined = undefined>(options: {
|
11321
11402
|
weight: '400' | Array<'400'>;
|
@@ -15358,6 +15439,16 @@ export declare function Satisfy<T extends CssVariable | undefined = undefined>(o
|
|
15358
15439
|
adjustFontFallback?: boolean;
|
15359
15440
|
subsets?: Array<'latin'>;
|
15360
15441
|
}): T extends undefined ? NextFont : NextFontWithVariable;
|
15442
|
+
export declare function Savate<T extends CssVariable | undefined = undefined>(options?: {
|
15443
|
+
weight?: '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | 'variable' | Array<'200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'>;
|
15444
|
+
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>;
|
15445
|
+
display?: Display;
|
15446
|
+
variable?: T;
|
15447
|
+
preload?: boolean;
|
15448
|
+
fallback?: string[];
|
15449
|
+
adjustFontFallback?: boolean;
|
15450
|
+
subsets?: Array<'latin' | 'latin-ext'>;
|
15451
|
+
}): T extends undefined ? NextFont : NextFontWithVariable;
|
15361
15452
|
export declare function Sawarabi_Gothic<T extends CssVariable | undefined = undefined>(options: {
|
15362
15453
|
weight: '400' | Array<'400'>;
|
15363
15454
|
style?: 'normal' | Array<'normal'>;
|