Skip to content

Commit

Permalink
export types
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermake committed Apr 30, 2024
1 parent b093040 commit 2ff7eb4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 63 deletions.
7 changes: 1 addition & 6 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
{
"recommendations": [
"Vue.volar",
"Vue.vscode-typescript-vue-plugin",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
"recommendations": ["EditorConfig.EditorConfig", "Vue.volar", "esbenp.prettier-vscode"]
}
56 changes: 2 additions & 54 deletions lib/main.ts
Original file line number Diff line number Diff line change
@@ -1,54 +1,2 @@
import "../src/assets/styles/index.scss";

import Boxes from "../src/components/atoms/boxes/Boxes.vue";
import Button from "../src/components/atoms/button/Button.vue";
import Checkbox from "../src/components/atoms/checkbox/Checkbox.vue";
import Close from "../src/components/atoms/close/Close.vue";
import Dialog from "../src/components/atoms/dialog/Dialog.vue";
import Dropdown from "../src/components/atoms/dropdown/Dropdown.vue";
import Input from "../src/components/atoms/input/Input.vue";
import NotificationBox from "../src/components/atoms/notification-box/NotificationBox.vue";
import NotificationButton from "../src/components/atoms/notification-button/NotificationButton.vue";
import Radio from "../src/components/atoms/radio/Radio.vue";
import Spinner from "../src/components/atoms/spinner/Spinner.vue";
import Tooltip from "../src/components/atoms/tooltip/Tooltip.vue";
import Wallet from "../src/components/atoms/wallet/Wallet.vue";

import CurrencyField from "../src/components/molecules/currency-field/CurrencyField.vue";
import MultilineCurrencyField from "../src/components/molecules/multiline-currency-field/MultilineCurrencyField.vue";
import Proposal from "../src/components/molecules/proposal/Proposal.vue";
import HistoryTableRow from "../src/components/molecules/table-rows/HistoryTableRow.vue";
import AssetsTableRow from "../src/components/molecules/table-rows/AssetsTableRow.vue";
import EarningAssetsTableRow from "../src/components/molecules/table-rows/EarningAssetsTableRow.vue";

import Lease from "../src/components/organisms/lease/Lease.vue";
import Table from "../src/components/organisms/table/Table.vue";

export {
// atoms
Boxes,
Button,
Checkbox,
Close,
Dialog,
Dropdown,
Input,
NotificationBox,
NotificationButton,
Radio,
Spinner,
Tooltip,
Wallet,

// molecules
CurrencyField,
MultilineCurrencyField,
Proposal,
HistoryTableRow,
AssetsTableRow,
EarningAssetsTableRow,

// organisms
Lease,
Table
};
export * from "../src/components";
export * from "../src/components/types";
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-components",
"version": "1.1.6",
"version": "1.1.7",
"private": false,
"sideEffects": [
"*.vue",
Expand Down

0 comments on commit 2ff7eb4

Please sign in to comment.