-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b093040
commit 2ff7eb4
Showing
4 changed files
with
6 additions
and
63 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
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"] | ||
} |
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,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"; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,6 +1,6 @@ | ||
{ | ||
"name": "web-components", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"private": false, | ||
"sideEffects": [ | ||
"*.vue", | ||
|