Skip to content

Commit 4b4a640

Browse files
Merge pull request #700 from glints-dev/feature/autocomplete-to-@next
chore: support node 14 and autocomplete from @next
2 parents ab00719 + 685b788 commit 4b4a640

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"module": "./es/index.js",
77
"sideEffects": false,
88
"engines": {
9-
"node": ">=16.0.0"
9+
"node": "^14 || ^16"
1010
},
1111
"scripts": {
1212
"build": "npm run build:icon && npm run build:lib && npm run build:es && npm run build:ts",

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ export { default as Typography } from './General/Typography';
4444
// Employers
4545
export { default as ToggleSwitch } from './Input/ToggleSwitch';
4646

47-
// @next rename after deprecation
48-
export { default as NTypography } from './General/@next/Typography'
49-
5047
// Utilities
5148
export { Device, ScreenSize } from './Utils/StyleConfig';
5249
export { PrimaryColor, SecondaryColor, Greyscale } from './Utils/Colors';
@@ -60,6 +57,9 @@ import * as Fonts from './Utils/@next/fonts';
6057
import * as Spacing from './Utils/@next/spacing';
6158
export { Breakpoints, BorderRadius, Colors, DropShadow, Fonts, Spacing };
6259

60+
//@next
61+
export * from './@next';
62+
6363
// Icons
6464
export { default as AddIcon } from './General/Icon/components/AddIcon';
6565
export { default as AddCircleOutlineIcon } from './General/Icon/components/AddCircleOutlineIcon';

0 commit comments

Comments
 (0)