Add popup & detail optimization #24

Merged
MrKBear merged 12 commits from dev-mrkbear into master 2022-03-22 22:20:48 +08:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 93e1a8d3ef - Show all commits

View File

@ -2,8 +2,8 @@ import { Component, ReactNode, DetailedHTMLProps, HTMLAttributes } from "react";
import { useSetting, IMixinSettingProps, Language } from "@Context/Setting"; import { useSetting, IMixinSettingProps, Language } from "@Context/Setting";
import "./Localization.scss"; import "./Localization.scss";
import EN_US from "../../Localization/EN-US"; import EN_US from "@Localization/EN-US";
import ZH_CN from "../../Localization/ZH-CN"; import ZH_CN from "@Localization/ZH-CN";
const LanguageDataBase = { const LanguageDataBase = {
EN_US, ZH_CN EN_US, ZH_CN

View File

@ -31,6 +31,12 @@
], ],
"@Component/*": [ "@Component/*": [
"./source/Component/*" "./source/Component/*"
],
"@Localization/*": [
"./source/Localization/*"
],
"@Panel/*": [
"./source/Panel/*"
] ]
} }
}, },