diff --git a/core/.gitignore b/core/.gitignore deleted file mode 100644 index c925c21d..00000000 --- a/core/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/dist -/node_modules diff --git a/core/font/Inter-roman.var.woff2 b/core/font/Inter-roman.var.woff2 deleted file mode 100644 index 91e198b4..00000000 Binary files a/core/font/Inter-roman.var.woff2 and /dev/null differ diff --git a/core/font/local.css b/core/font/local.css deleted file mode 100644 index 75c3f83d..00000000 --- a/core/font/local.css +++ /dev/null @@ -1,8 +0,0 @@ -@font-face { - font-family: "Inter var"; - font-weight: 100 900; - font-style: normal; - font-named-instance: "Regular"; - font-display: swap; - src: url("./Inter-roman.var.woff2?3.13") format("woff2"); -} diff --git a/core/font/remote.css b/core/font/remote.css deleted file mode 100644 index 94fb87b2..00000000 --- a/core/font/remote.css +++ /dev/null @@ -1 +0,0 @@ -@import url("https://rsms.me/inter/inter.css"); diff --git a/core/package.json b/core/package.json deleted file mode 100644 index 831027f5..00000000 --- a/core/package.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "name": "@moai/core", - "version": "1.4.3", - "description": "A React UI toolkit for the web 🗿", - "main": "dist/cjs/index.js", - "module": "dist/esm/index.js", - "types": "dist/types/index.d.ts", - "sideEffects": false, - "files": [ - "dist" - ], - "scripts": { - "_build": "rollup --config", - "_report": "node ./scripts/report.js", - "_start": "rollup --config --watch", - "prepublishOnly": "yarn _build" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/moaijs/moai.git" - }, - "license": "MIT", - "bugs": { - "url": "https://github.com/moaijs/moai/issues" - }, - "homepage": "https://moai.thien.do", - "email": "moai@thien.do", - "peerDependencies": { - "react": ">=16", - "react-dom": ">=16" - }, - "dependencies": { - "@popperjs/core": "^2.9.2", - "@tippyjs/react": "^4.2.5", - "react-day-picker": "^7.4.10", - "react-hot-toast": "^1.0.2", - "react-icons": "^4.2.0", - "react-popper": "^2.2.5" - }, - "devDependencies": { - "@types/react": "^17.0.15", - "@types/react-dom": "^17.0.9", - "autoprefixer": "^10.3.1", - "modern-normalize": "^1.1.0", - "postcss": "^8.3.6", - "postcss-import": "^14.0.2", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "rollup": "^2.55.1", - "rollup-plugin-copy": "^3.4.0", - "rollup-plugin-delete": "^2.0.0", - "rollup-plugin-postcss": "^4.0.0", - "rollup-plugin-typescript2": "^0.30.0", - "tslib": "^2.3.0", - "typescript": "^4.3.4" - } -} diff --git a/core/rollup.config.js b/core/rollup.config.js deleted file mode 100644 index 83fb5085..00000000 --- a/core/rollup.config.js +++ /dev/null @@ -1,70 +0,0 @@ -/* eslint-env node */ - -import cssPrefix from "autoprefixer"; -import cssImport from "postcss-import"; -import copy from "rollup-plugin-copy"; -import del from "rollup-plugin-delete"; -import postcss from "rollup-plugin-postcss"; -// Reason for not using the official TS plugin: -// - https://github.com/rollup/plugins/issues/862 -import typescript2 from "rollup-plugin-typescript2"; -// import typescript from "@rollup/plugin-typescript"; - -/** @type {import("rollup-plugin-postcss").PostCSSPluginConf } */ -const postcssOptions = { - plugins: [cssImport, cssPrefix], - minimize: false, - // Extracting is important because we should not force the consumers to - // use a specific way to handle our CSS imports. - // See: https://github.com/vercel/next.js/blob/master/errors/css-npm.md - // Note that the path here is related to the bundled JS files - extract: "bundle.css", -}; - -/** - * Main bundling process - * @type {import("rollup").RollupOptions} - */ -const bundleMain = { - input: "src/index.ts", - output: [ - { - dir: "dist/cjs", - format: "cjs", - preserveModules: true, - exports: "named", - }, - { - dir: "dist/esm", - format: "esm", - preserveModules: true, - exports: "named", - }, - ], - external: [ - "@tippyjs/react/headless", - "focus-visible", - "react-day-picker/DayPickerInput", - "react-dom", - "react-hot-toast", - "react-icons/go", - "react-icons/ri", - "react-popper", - "react", - "react/jsx-runtime", - ], - plugins: [ - del({ targets: ["dist"] }), - // Copy source files - copy({ targets: [{ src: "font", dest: "dist" }] }), - postcss(postcssOptions), - typescript2({ useTsconfigDeclarationDir: true }), - // Copy dest files for easier import - copy({ - targets: [{ src: "dist/cjs/bundle.css", dest: "dist" }], - hook: "writeBundle", - }), - ], -}; - -export default [bundleMain]; diff --git a/core/scripts/report.js b/core/scripts/report.js deleted file mode 100755 index 021943c9..00000000 --- a/core/scripts/report.js +++ /dev/null @@ -1,11 +0,0 @@ -/* eslint-disable */ -const cp = require("child_process"); - -const files = ["esm.js", "cjs.js", "bundle.css"]; - -files.forEach((file) => { - const command = `gzip -c dist/${file} | wc -c`; - let size = cp.execSync(command).toString(); - size = size.replace("\n", ""); - console.log(`${size} ${file}`); -}); diff --git a/core/tsconfig.json b/core/tsconfig.json deleted file mode 100644 index af2bca99..00000000 --- a/core/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "composite": true, - "declaration": true, - "declarationDir": "dist/types", - "rootDir": "src" - }, - "include": ["src/**/*"] -} diff --git a/core/src/background/background.module.css b/src/core/background/background.module.css similarity index 100% rename from core/src/background/background.module.css rename to src/core/background/background.module.css diff --git a/core/src/background/background.tsx b/src/core/background/background.tsx similarity index 100% rename from core/src/background/background.tsx rename to src/core/background/background.tsx diff --git a/core/src/border/border.module.css b/src/core/border/border.module.css similarity index 100% rename from core/src/border/border.module.css rename to src/core/border/border.module.css diff --git a/core/src/border/border.tsx b/src/core/border/border.tsx similarity index 100% rename from core/src/border/border.tsx rename to src/core/border/border.tsx diff --git a/core/src/button-group/button-group.module.css b/src/core/button-group/button-group.module.css similarity index 100% rename from core/src/button-group/button-group.module.css rename to src/core/button-group/button-group.module.css diff --git a/core/src/button-group/button-group.tsx b/src/core/button-group/button-group.tsx similarity index 100% rename from core/src/button-group/button-group.tsx rename to src/core/button-group/button-group.tsx diff --git a/core/src/button-menu/button-menu.module.css b/src/core/button-menu/button-menu.module.css similarity index 100% rename from core/src/button-menu/button-menu.module.css rename to src/core/button-menu/button-menu.module.css diff --git a/core/src/button-menu/button-menu.tsx b/src/core/button-menu/button-menu.tsx similarity index 100% rename from core/src/button-menu/button-menu.tsx rename to src/core/button-menu/button-menu.tsx diff --git a/core/src/button/button.module.css b/src/core/button/button.module.css similarity index 100% rename from core/src/button/button.module.css rename to src/core/button/button.module.css diff --git a/core/src/button/button.tsx b/src/core/button/button.tsx similarity index 100% rename from core/src/button/button.tsx rename to src/core/button/button.tsx diff --git a/core/src/button/color/color.ts b/src/core/button/color/color.ts similarity index 100% rename from core/src/button/color/color.ts rename to src/core/button/color/color.ts diff --git a/core/src/button/color/failure.module.css b/src/core/button/color/failure.module.css similarity index 100% rename from core/src/button/color/failure.module.css rename to src/core/button/color/failure.module.css diff --git a/core/src/button/color/highlight.module.css b/src/core/button/color/highlight.module.css similarity index 100% rename from core/src/button/color/highlight.module.css rename to src/core/button/color/highlight.module.css diff --git a/core/src/button/color/none.module.css b/src/core/button/color/none.module.css similarity index 100% rename from core/src/button/color/none.module.css rename to src/core/button/color/none.module.css diff --git a/core/src/button/size/size.module.css b/src/core/button/size/size.module.css similarity index 100% rename from core/src/button/size/size.module.css rename to src/core/button/size/size.module.css diff --git a/core/src/button/size/size.ts b/src/core/button/size/size.ts similarity index 100% rename from core/src/button/size/size.ts rename to src/core/button/size/size.ts diff --git a/core/src/button/style/flat.module.css b/src/core/button/style/flat.module.css similarity index 100% rename from core/src/button/style/flat.module.css rename to src/core/button/style/flat.module.css diff --git a/core/src/button/style/outset.module.css b/src/core/button/style/outset.module.css similarity index 100% rename from core/src/button/style/outset.module.css rename to src/core/button/style/outset.module.css diff --git a/core/src/button/style/style.ts b/src/core/button/style/style.ts similarity index 100% rename from core/src/button/style/style.ts rename to src/core/button/style/style.ts diff --git a/core/src/category/category.tsx b/src/core/category/category.tsx similarity index 100% rename from core/src/category/category.tsx rename to src/core/category/category.tsx diff --git a/core/src/category/colors.module.css b/src/core/category/colors.module.css similarity index 100% rename from core/src/category/colors.module.css rename to src/core/category/colors.module.css diff --git a/core/src/checkbox/checkbox.module.css b/src/core/checkbox/checkbox.module.css similarity index 100% rename from core/src/checkbox/checkbox.module.css rename to src/core/checkbox/checkbox.module.css diff --git a/core/src/checkbox/checkbox.tsx b/src/core/checkbox/checkbox.tsx similarity index 100% rename from core/src/checkbox/checkbox.tsx rename to src/core/checkbox/checkbox.tsx diff --git a/core/src/checkbox/outset.module.css b/src/core/checkbox/outset.module.css similarity index 100% rename from core/src/checkbox/outset.module.css rename to src/core/checkbox/outset.module.css diff --git a/core/src/checkbox/shared.module.css b/src/core/checkbox/shared.module.css similarity index 100% rename from core/src/checkbox/shared.module.css rename to src/core/checkbox/shared.module.css diff --git a/core/src/date-input/date-input.css b/src/core/date-input/date-input.css similarity index 100% rename from core/src/date-input/date-input.css rename to src/core/date-input/date-input.css diff --git a/core/src/date-input/date-input.tsx b/src/core/date-input/date-input.tsx similarity index 100% rename from core/src/date-input/date-input.tsx rename to src/core/date-input/date-input.tsx diff --git a/core/src/date-input/format.ts b/src/core/date-input/format.ts similarity index 100% rename from core/src/date-input/format.ts rename to src/core/date-input/format.ts diff --git a/core/src/date-input/month/month.module.css b/src/core/date-input/month/month.module.css similarity index 100% rename from core/src/date-input/month/month.module.css rename to src/core/date-input/month/month.module.css diff --git a/core/src/date-input/month/month.tsx b/src/core/date-input/month/month.tsx similarity index 100% rename from core/src/date-input/month/month.tsx rename to src/core/date-input/month/month.tsx diff --git a/core/src/date-input/navbar/navbar.module.css b/src/core/date-input/navbar/navbar.module.css similarity index 100% rename from core/src/date-input/navbar/navbar.module.css rename to src/core/date-input/navbar/navbar.module.css diff --git a/core/src/date-input/navbar/navbar.tsx b/src/core/date-input/navbar/navbar.tsx similarity index 100% rename from core/src/date-input/navbar/navbar.tsx rename to src/core/date-input/navbar/navbar.tsx diff --git a/core/src/dialog/dialog.tsx b/src/core/dialog/dialog.tsx similarity index 100% rename from core/src/dialog/dialog.tsx rename to src/core/dialog/dialog.tsx diff --git a/core/src/dialog/main/main.module.css b/src/core/dialog/main/main.module.css similarity index 100% rename from core/src/dialog/main/main.module.css rename to src/core/dialog/main/main.module.css diff --git a/core/src/dialog/main/main.tsx b/src/core/dialog/main/main.tsx similarity index 100% rename from core/src/dialog/main/main.tsx rename to src/core/dialog/main/main.tsx diff --git a/core/src/dialog/native/alert.tsx b/src/core/dialog/native/alert.tsx similarity index 100% rename from core/src/dialog/native/alert.tsx rename to src/core/dialog/native/alert.tsx diff --git a/core/src/dialog/native/confirm.tsx b/src/core/dialog/native/confirm.tsx similarity index 100% rename from core/src/dialog/native/confirm.tsx rename to src/core/dialog/native/confirm.tsx diff --git a/core/src/dialog/native/native.ts b/src/core/dialog/native/native.ts similarity index 100% rename from core/src/dialog/native/native.ts rename to src/core/dialog/native/native.ts diff --git a/core/src/dialog/native/prompt.tsx b/src/core/dialog/native/prompt.tsx similarity index 100% rename from core/src/dialog/native/prompt.tsx rename to src/core/dialog/native/prompt.tsx diff --git a/core/src/dialog/sub/sub.module.css b/src/core/dialog/sub/sub.module.css similarity index 100% rename from core/src/dialog/sub/sub.module.css rename to src/core/dialog/sub/sub.module.css diff --git a/core/src/dialog/sub/sub.tsx b/src/core/dialog/sub/sub.tsx similarity index 100% rename from core/src/dialog/sub/sub.tsx rename to src/core/dialog/sub/sub.tsx diff --git a/core/src/div/div.module.css b/src/core/div/div.module.css similarity index 100% rename from core/src/div/div.module.css rename to src/core/div/div.module.css diff --git a/core/src/div/div.tsx b/src/core/div/div.tsx similarity index 100% rename from core/src/div/div.tsx rename to src/core/div/div.tsx diff --git a/core/src/form/error.tsx b/src/core/form/error.tsx similarity index 100% rename from core/src/form/error.tsx rename to src/core/form/error.tsx diff --git a/core/src/form/field.module.css b/src/core/form/field.module.css similarity index 100% rename from core/src/form/field.module.css rename to src/core/form/field.module.css diff --git a/core/src/form/field.tsx b/src/core/form/field.tsx similarity index 100% rename from core/src/form/field.tsx rename to src/core/form/field.tsx diff --git a/core/src/form/form.tsx b/src/core/form/form.tsx similarity index 100% rename from core/src/form/form.tsx rename to src/core/form/form.tsx diff --git a/core/src/global.d.ts b/src/core/global.d.ts similarity index 100% rename from core/src/global.d.ts rename to src/core/global.d.ts diff --git a/core/src/global/global.css b/src/core/global/global.css similarity index 100% rename from core/src/global/global.css rename to src/core/global/global.css diff --git a/core/src/icon/icon.module.css b/src/core/icon/icon.module.css similarity index 100% rename from core/src/icon/icon.module.css rename to src/core/icon/icon.module.css diff --git a/core/src/icon/icon.tsx b/src/core/icon/icon.tsx similarity index 100% rename from core/src/icon/icon.tsx rename to src/core/icon/icon.tsx diff --git a/core/src/icons/blank-icon.tsx b/src/core/icons/blank-icon.tsx similarity index 100% rename from core/src/icons/blank-icon.tsx rename to src/core/icons/blank-icon.tsx diff --git a/core/src/icons/icons.tsx b/src/core/icons/icons.tsx similarity index 100% rename from core/src/icons/icons.tsx rename to src/core/icons/icons.tsx diff --git a/core/src/index.ts b/src/core/index.ts similarity index 100% rename from core/src/index.ts rename to src/core/index.ts diff --git a/core/src/input/flat.module.css b/src/core/input/flat.module.css similarity index 100% rename from core/src/input/flat.module.css rename to src/core/input/flat.module.css diff --git a/core/src/input/input.module.css b/src/core/input/input.module.css similarity index 100% rename from core/src/input/input.module.css rename to src/core/input/input.module.css diff --git a/core/src/input/input.tsx b/src/core/input/input.tsx similarity index 100% rename from core/src/input/input.tsx rename to src/core/input/input.tsx diff --git a/core/src/input/outset.module.css b/src/core/input/outset.module.css similarity index 100% rename from core/src/input/outset.module.css rename to src/core/input/outset.module.css diff --git a/core/src/menu/item/item.module.css b/src/core/menu/item/item.module.css similarity index 100% rename from core/src/menu/item/item.module.css rename to src/core/menu/item/item.module.css diff --git a/core/src/menu/item/item.tsx b/src/core/menu/item/item.tsx similarity index 100% rename from core/src/menu/item/item.tsx rename to src/core/menu/item/item.tsx diff --git a/core/src/menu/menu.tsx b/src/core/menu/menu.tsx similarity index 100% rename from core/src/menu/menu.tsx rename to src/core/menu/menu.tsx diff --git a/core/src/outline/outline.module.css b/src/core/outline/outline.module.css similarity index 100% rename from core/src/outline/outline.module.css rename to src/core/outline/outline.module.css diff --git a/core/src/outline/outline.ts b/src/core/outline/outline.ts similarity index 100% rename from core/src/outline/outline.ts rename to src/core/outline/outline.ts diff --git a/core/src/pagination/input/input.module.css b/src/core/pagination/input/input.module.css similarity index 100% rename from core/src/pagination/input/input.module.css rename to src/core/pagination/input/input.module.css diff --git a/core/src/pagination/input/input.tsx b/src/core/pagination/input/input.tsx similarity index 100% rename from core/src/pagination/input/input.tsx rename to src/core/pagination/input/input.tsx diff --git a/core/src/pagination/pagination.module.css b/src/core/pagination/pagination.module.css similarity index 100% rename from core/src/pagination/pagination.module.css rename to src/core/pagination/pagination.module.css diff --git a/core/src/pagination/pagination.tsx b/src/core/pagination/pagination.tsx similarity index 100% rename from core/src/pagination/pagination.tsx rename to src/core/pagination/pagination.tsx diff --git a/core/src/pane/pane.module.css b/src/core/pane/pane.module.css similarity index 100% rename from core/src/pane/pane.module.css rename to src/core/pane/pane.module.css diff --git a/core/src/pane/pane.tsx b/src/core/pane/pane.tsx similarity index 100% rename from core/src/pane/pane.tsx rename to src/core/pane/pane.tsx diff --git a/core/src/popover/pane/pane.module.css b/src/core/popover/pane/pane.module.css similarity index 100% rename from core/src/popover/pane/pane.module.css rename to src/core/popover/pane/pane.module.css diff --git a/core/src/popover/pane/pane.tsx b/src/core/popover/pane/pane.tsx similarity index 100% rename from core/src/popover/pane/pane.tsx rename to src/core/popover/pane/pane.tsx diff --git a/core/src/popover/popover.tsx b/src/core/popover/popover.tsx similarity index 100% rename from core/src/popover/popover.tsx rename to src/core/popover/popover.tsx diff --git a/core/src/progress/circle.module.css b/src/core/progress/circle.module.css similarity index 100% rename from core/src/progress/circle.module.css rename to src/core/progress/circle.module.css diff --git a/core/src/progress/circle.tsx b/src/core/progress/circle.tsx similarity index 100% rename from core/src/progress/circle.tsx rename to src/core/progress/circle.tsx diff --git a/core/src/radio-group/radio-group.module.css b/src/core/radio-group/radio-group.module.css similarity index 100% rename from core/src/radio-group/radio-group.module.css rename to src/core/radio-group/radio-group.module.css diff --git a/core/src/radio-group/radio-group.tsx b/src/core/radio-group/radio-group.tsx similarity index 100% rename from core/src/radio-group/radio-group.tsx rename to src/core/radio-group/radio-group.tsx diff --git a/core/src/radio/radio.module.css b/src/core/radio/radio.module.css similarity index 100% rename from core/src/radio/radio.module.css rename to src/core/radio/radio.module.css diff --git a/core/src/radio/radio.tsx b/src/core/radio/radio.tsx similarity index 100% rename from core/src/radio/radio.tsx rename to src/core/radio/radio.tsx diff --git a/core/src/scrollbar/scrollbar.module.css b/src/core/scrollbar/scrollbar.module.css similarity index 100% rename from core/src/scrollbar/scrollbar.module.css rename to src/core/scrollbar/scrollbar.module.css diff --git a/core/src/scrollbar/scrollbar.ts b/src/core/scrollbar/scrollbar.ts similarity index 100% rename from core/src/scrollbar/scrollbar.ts rename to src/core/scrollbar/scrollbar.ts diff --git a/core/src/select/select.module.css b/src/core/select/select.module.css similarity index 100% rename from core/src/select/select.module.css rename to src/core/select/select.module.css diff --git a/core/src/select/select.tsx b/src/core/select/select.tsx similarity index 100% rename from core/src/select/select.tsx rename to src/core/select/select.tsx diff --git a/core/src/shadow/shadow.module.css b/src/core/shadow/shadow.module.css similarity index 100% rename from core/src/shadow/shadow.module.css rename to src/core/shadow/shadow.module.css diff --git a/core/src/shadow/shadow.tsx b/src/core/shadow/shadow.tsx similarity index 100% rename from core/src/shadow/shadow.tsx rename to src/core/shadow/shadow.tsx diff --git a/core/src/step/step.module.css b/src/core/step/step.module.css similarity index 100% rename from core/src/step/step.module.css rename to src/core/step/step.module.css diff --git a/core/src/step/step.tsx b/src/core/step/step.tsx similarity index 100% rename from core/src/step/step.tsx rename to src/core/step/step.tsx diff --git a/core/src/switcher/switcher.tsx b/src/core/switcher/switcher.tsx similarity index 100% rename from core/src/switcher/switcher.tsx rename to src/core/switcher/switcher.tsx diff --git a/core/src/tab/tab.module.css b/src/core/tab/tab.module.css similarity index 100% rename from core/src/tab/tab.module.css rename to src/core/tab/tab.module.css diff --git a/core/src/tab/tab.tsx b/src/core/tab/tab.tsx similarity index 100% rename from core/src/tab/tab.tsx rename to src/core/tab/tab.tsx diff --git a/core/src/table/actions/actions.module.css b/src/core/table/actions/actions.module.css similarity index 100% rename from core/src/table/actions/actions.module.css rename to src/core/table/actions/actions.module.css diff --git a/core/src/table/actions/actions.tsx b/src/core/table/actions/actions.tsx similarity index 100% rename from core/src/table/actions/actions.tsx rename to src/core/table/actions/actions.tsx diff --git a/core/src/table/actions/expandable/control.tsx b/src/core/table/actions/expandable/control.tsx similarity index 100% rename from core/src/table/actions/expandable/control.tsx rename to src/core/table/actions/expandable/control.tsx diff --git a/core/src/table/actions/expandable/state.ts b/src/core/table/actions/expandable/state.ts similarity index 100% rename from core/src/table/actions/expandable/state.ts rename to src/core/table/actions/expandable/state.ts diff --git a/core/src/table/actions/selectable/control.tsx b/src/core/table/actions/selectable/control.tsx similarity index 100% rename from core/src/table/actions/selectable/control.tsx rename to src/core/table/actions/selectable/control.tsx diff --git a/core/src/table/actions/selectable/state.tsx b/src/core/table/actions/selectable/state.tsx similarity index 100% rename from core/src/table/actions/selectable/state.tsx rename to src/core/table/actions/selectable/state.tsx diff --git a/core/src/table/body/body.tsx b/src/core/table/body/body.tsx similarity index 100% rename from core/src/table/body/body.tsx rename to src/core/table/body/body.tsx diff --git a/core/src/table/body/cell.tsx b/src/core/table/body/cell.tsx similarity index 100% rename from core/src/table/body/cell.tsx rename to src/core/table/body/cell.tsx diff --git a/core/src/table/body/expanded.tsx b/src/core/table/body/expanded.tsx similarity index 100% rename from core/src/table/body/expanded.tsx rename to src/core/table/body/expanded.tsx diff --git a/core/src/table/body/row.tsx b/src/core/table/body/row.tsx similarity index 100% rename from core/src/table/body/row.tsx rename to src/core/table/body/row.tsx diff --git a/core/src/table/column/column.ts b/src/core/table/column/column.ts similarity index 100% rename from core/src/table/column/column.ts rename to src/core/table/column/column.ts diff --git a/core/src/table/fixed/fixed.module.css b/src/core/table/fixed/fixed.module.css similarity index 100% rename from core/src/table/fixed/fixed.module.css rename to src/core/table/fixed/fixed.module.css diff --git a/core/src/table/fixed/fixed.ts b/src/core/table/fixed/fixed.ts similarity index 100% rename from core/src/table/fixed/fixed.ts rename to src/core/table/fixed/fixed.ts diff --git a/core/src/table/head/cell.tsx b/src/core/table/head/cell.tsx similarity index 100% rename from core/src/table/head/cell.tsx rename to src/core/table/head/cell.tsx diff --git a/core/src/table/head/head.tsx b/src/core/table/head/head.tsx similarity index 100% rename from core/src/table/head/head.tsx rename to src/core/table/head/head.tsx diff --git a/core/src/table/sizes.module.css b/src/core/table/sizes.module.css similarity index 100% rename from core/src/table/sizes.module.css rename to src/core/table/sizes.module.css diff --git a/core/src/table/table.module.css b/src/core/table/table.module.css similarity index 100% rename from core/src/table/table.module.css rename to src/core/table/table.module.css diff --git a/core/src/table/table.tsx b/src/core/table/table.tsx similarity index 100% rename from core/src/table/table.tsx rename to src/core/table/table.tsx diff --git a/core/src/tag/tag.module.css b/src/core/tag/tag.module.css similarity index 100% rename from core/src/tag/tag.module.css rename to src/core/tag/tag.module.css diff --git a/core/src/tag/tag.tsx b/src/core/tag/tag.tsx similarity index 100% rename from core/src/tag/tag.tsx rename to src/core/tag/tag.tsx diff --git a/core/src/text-area/text-area.module.css b/src/core/text-area/text-area.module.css similarity index 100% rename from core/src/text-area/text-area.module.css rename to src/core/text-area/text-area.module.css diff --git a/core/src/text-area/text-area.tsx b/src/core/text-area/text-area.tsx similarity index 100% rename from core/src/text-area/text-area.tsx rename to src/core/text-area/text-area.tsx diff --git a/core/src/text/text.module.css b/src/core/text/text.module.css similarity index 100% rename from core/src/text/text.module.css rename to src/core/text/text.module.css diff --git a/core/src/text/text.tsx b/src/core/text/text.tsx similarity index 100% rename from core/src/text/text.tsx rename to src/core/text/text.tsx diff --git a/core/src/time-input/time-input.tsx b/src/core/time-input/time-input.tsx similarity index 100% rename from core/src/time-input/time-input.tsx rename to src/core/time-input/time-input.tsx diff --git a/core/src/toast/container/container.module.css b/src/core/toast/container/container.module.css similarity index 100% rename from core/src/toast/container/container.module.css rename to src/core/toast/container/container.module.css diff --git a/core/src/toast/container/container.tsx b/src/core/toast/container/container.tsx similarity index 100% rename from core/src/toast/container/container.tsx rename to src/core/toast/container/container.tsx diff --git a/core/src/toast/pane/pane.module.css b/src/core/toast/pane/pane.module.css similarity index 100% rename from core/src/toast/pane/pane.module.css rename to src/core/toast/pane/pane.module.css diff --git a/core/src/toast/pane/pane.tsx b/src/core/toast/pane/pane.tsx similarity index 100% rename from core/src/toast/pane/pane.tsx rename to src/core/toast/pane/pane.tsx diff --git a/core/src/toast/toast.tsx b/src/core/toast/toast.tsx similarity index 100% rename from core/src/toast/toast.tsx rename to src/core/toast/toast.tsx diff --git a/core/src/toast/type/type.ts b/src/core/toast/type/type.ts similarity index 100% rename from core/src/toast/type/type.ts rename to src/core/toast/type/type.ts diff --git a/core/src/tooltip/tooltip.module.css b/src/core/tooltip/tooltip.module.css similarity index 100% rename from core/src/tooltip/tooltip.module.css rename to src/core/tooltip/tooltip.module.css diff --git a/core/src/tooltip/tooltip.tsx b/src/core/tooltip/tooltip.tsx similarity index 100% rename from core/src/tooltip/tooltip.tsx rename to src/core/tooltip/tooltip.tsx diff --git a/core/src/tree/row/actions/actions.tsx b/src/core/tree/row/actions/actions.tsx similarity index 100% rename from core/src/tree/row/actions/actions.tsx rename to src/core/tree/row/actions/actions.tsx diff --git a/core/src/tree/row/row.module.css b/src/core/tree/row/row.module.css similarity index 100% rename from core/src/tree/row/row.module.css rename to src/core/tree/row/row.module.css diff --git a/core/src/tree/row/row.tsx b/src/core/tree/row/row.tsx similarity index 100% rename from core/src/tree/row/row.tsx rename to src/core/tree/row/row.tsx diff --git a/core/src/tree/tree.module.css b/src/core/tree/tree.module.css similarity index 100% rename from core/src/tree/tree.module.css rename to src/core/tree/tree.module.css diff --git a/core/src/tree/tree.tsx b/src/core/tree/tree.tsx similarity index 100% rename from core/src/tree/tree.tsx rename to src/core/tree/tree.tsx diff --git a/core/src/tree/utils/add.ts b/src/core/tree/utils/add.ts similarity index 100% rename from core/src/tree/utils/add.ts rename to src/core/tree/utils/add.ts diff --git a/core/src/tree/utils/exist.ts b/src/core/tree/utils/exist.ts similarity index 100% rename from core/src/tree/utils/exist.ts rename to src/core/tree/utils/exist.ts diff --git a/core/src/tree/utils/leaf.ts b/src/core/tree/utils/leaf.ts similarity index 100% rename from core/src/tree/utils/leaf.ts rename to src/core/tree/utils/leaf.ts diff --git a/core/src/tree/utils/refresh.ts b/src/core/tree/utils/refresh.ts similarity index 100% rename from core/src/tree/utils/refresh.ts rename to src/core/tree/utils/refresh.ts diff --git a/core/src/tree/utils/remove.ts b/src/core/tree/utils/remove.ts similarity index 100% rename from core/src/tree/utils/remove.ts rename to src/core/tree/utils/remove.ts diff --git a/core/src/tree/utils/update.ts b/src/core/tree/utils/update.ts similarity index 100% rename from core/src/tree/utils/update.ts rename to src/core/tree/utils/update.ts diff --git a/core/src/tree/utils/utils.ts b/src/core/tree/utils/utils.ts similarity index 100% rename from core/src/tree/utils/utils.ts rename to src/core/tree/utils/utils.ts diff --git a/core/src/utils/omit.ts b/src/core/utils/omit.ts similarity index 100% rename from core/src/utils/omit.ts rename to src/core/utils/omit.ts diff --git a/core/src/utils/utils.module.css b/src/core/utils/utils.module.css similarity index 100% rename from core/src/utils/utils.module.css rename to src/core/utils/utils.module.css diff --git a/core/src/utils/utils.ts b/src/core/utils/utils.ts similarity index 100% rename from core/src/utils/utils.ts rename to src/core/utils/utils.ts