-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: #17316 - Improve presets' type definitions in Theme
Fixed #17316
- Loading branch information
1 parent
df74566
commit 5020d66
Showing
5 changed files
with
201 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _default: any; | ||
import { AuraBaseDesignTokens } from '@primeng/themes/aura/base'; | ||
import { Preset } from '../types'; | ||
|
||
declare const _default: Preset<AuraBaseDesignTokens>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _default: any; | ||
import { LaraBaseDesignTokens } from '@primeng/themes/lara/base'; | ||
import { Preset } from '../types'; | ||
|
||
declare const _default: Preset<LaraBaseDesignTokens>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _default: any; | ||
import { MaterialBaseDesignTokens } from '@primeng/themes/material/base'; | ||
import { Preset } from '../types'; | ||
|
||
declare const _default: Preset<MaterialBaseDesignTokens>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _default: any; | ||
import { NoraBaseDesignTokens } from '@primeng/themes/nora/base'; | ||
import { Preset } from '../types'; | ||
|
||
declare const _default: Preset<NoraBaseDesignTokens>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters