-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(addon-commerce, addon-chart)!: remove deprecated enums (#2095)
- Loading branch information
1 parent
b33914d
commit 877607f
Showing
66 changed files
with
512 additions
and
611 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 +1,4 @@ | ||
export * from '@taiga-ui/addon-charts/components'; | ||
export * from '@taiga-ui/addon-charts/constants'; | ||
export * from '@taiga-ui/addon-charts/enums'; | ||
export * from '@taiga-ui/addon-charts/interfaces'; | ||
export * from '@taiga-ui/addon-charts/types'; |
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,3 +1,3 @@ | ||
import {TuiLineTypeT} from './line-type'; | ||
import {TuiLineType} from './line-type'; | ||
|
||
export type TuiLineHandler = (index: number, total: number) => TuiLineTypeT; | ||
export type TuiLineHandler = (index: number, total: number) => TuiLineType; |
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,4 +1,4 @@ | ||
/** | ||
* Native CSS border-style options | ||
*/ | ||
export type TuiLineTypeT = 'solid' | 'dashed' | 'dotted' | 'none' | 'hidden'; | ||
export type TuiLineType = 'solid' | 'dashed' | 'dotted' | 'none' | 'hidden'; |
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
Oops, something went wrong.