mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-15 03:32:15 +01:00
explicitly define exported components
This commit is contained in:
4
resources/js/packages/ui/package-lock.json
generated
4
resources/js/packages/ui/package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@solidtime/ui",
|
"name": "@solidtime/ui",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@solidtime/ui",
|
"name": "@solidtime/ui",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^22.4.1",
|
"@types/node": "^22.4.1",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@solidtime/ui",
|
"name": "@solidtime/ui",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"description": "Package containing the solidtime ui components",
|
"description": "Package containing the solidtime ui components",
|
||||||
"main": "./dist/solidtime-ui-lib.umd.cjs",
|
"main": "./dist/solidtime-ui-lib.umd.cjs",
|
||||||
"module": "./dist/solidtime-ui-lib.js",
|
"module": "./dist/solidtime-ui-lib.js",
|
||||||
|
|||||||
@@ -5,64 +5,43 @@ declare global {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export * from './utils/money';
|
import * as money from './utils/money';
|
||||||
export * from './utils/color';
|
import * as color from './utils/color';
|
||||||
export * from './utils/random';
|
import * as random from './utils/random';
|
||||||
export * from './utils/time';
|
import * as time from './utils/time';
|
||||||
|
|
||||||
export * from './Badge.vue';
|
import PrimaryButton from './Buttons/PrimaryButton.vue';
|
||||||
export * from './BillableRateModal.vue';
|
import SecondaryButton from './Buttons/SecondaryButton.vue';
|
||||||
export * from './CardTitle.vue';
|
import TimeTrackerStartStop from './TimeTrackerStartStop.vue';
|
||||||
export * from './DaySectionHeader.vue';
|
import ProjectBadge from './Project/ProjectBadge.vue';
|
||||||
export * from './DialogModal.vue';
|
import LoadingSpinner from './LoadingSpinner.vue';
|
||||||
export * from './GroupedItemsCountButton.vue';
|
import Modal from './Modal.vue';
|
||||||
export * from './LoadingSpinner.vue';
|
import TextInput from './Input/TextInput.vue';
|
||||||
export * from './Modal.vue';
|
import InputLabel from './Input/InputLabel.vue';
|
||||||
export * from './TimeTrackerStartStop.vue';
|
import TimeTrackerRunningInDifferentOrganizationOverlay from './TimeTracker/TimeTrackerRunningInDifferentOrganizationOverlay.vue';
|
||||||
|
import TimeTrackerControls from './TimeTracker/TimeTrackerControls.vue';
|
||||||
|
import CardTitle from './TimeTracker/TimeTrackerControls.vue';
|
||||||
|
import SelectDropdown from './TimeTracker/TimeTrackerControls.vue';
|
||||||
|
import Badge from './Badge.vue';
|
||||||
|
import Checkbox from './Input/Checkbox.vue';
|
||||||
|
|
||||||
export * from './TimeTracker/TimeTrackerControls.vue';
|
export {
|
||||||
export * from './TimeTracker/TimeTrackerProjectTaskDropdown.vue';
|
money,
|
||||||
export * from './TimeTracker/TimeTrackerRangeSelector.vue';
|
color,
|
||||||
export * from './TimeTracker/TimeTrackerRunningInDifferentOrganizationOverlay.vue';
|
random,
|
||||||
export * from './TimeTracker/TimeTrackerTagDropdown.vue';
|
time,
|
||||||
|
PrimaryButton,
|
||||||
export * from './TimeEntry/TimeEntryAggregateRow.vue';
|
SecondaryButton,
|
||||||
export * from './TimeEntry/TimeEntryDescriptionInput.vue';
|
TimeTrackerStartStop,
|
||||||
export * from './TimeEntry/TimeEntryGroupedTable.vue';
|
ProjectBadge,
|
||||||
export * from './TimeEntry/TimeEntryMoreOptionsDropdown.vue';
|
LoadingSpinner,
|
||||||
export * from './TimeEntry/TimeEntryRangeSelector.vue';
|
Modal,
|
||||||
export * from './TimeEntry/TimeEntryRow.vue';
|
TextInput,
|
||||||
export * from './TimeEntry/TimeEntryRowDurationInput.vue';
|
InputLabel,
|
||||||
export * from './TimeEntry/TimeEntryRowHeading.vue';
|
TimeTrackerRunningInDifferentOrganizationOverlay,
|
||||||
export * from './TimeEntry/TimeEntryRowTagDropdown.vue';
|
TimeTrackerControls,
|
||||||
|
CardTitle,
|
||||||
export * from './Tag/TagBadge.vue';
|
SelectDropdown,
|
||||||
export * from './Tag/TagCreateModal.vue';
|
Badge,
|
||||||
export * from './Tag/TagDropdown.vue';
|
Checkbox
|
||||||
|
};
|
||||||
export * from './Project/ProjectBadge.vue';
|
|
||||||
export * from './Project/ProjectBillableRateModal.vue';
|
|
||||||
export * from './Project/ProjectBillableSelect.vue';
|
|
||||||
export * from './Project/ProjectColorSelector.vue';
|
|
||||||
export * from './Project/ProjectCreateModal.vue';
|
|
||||||
|
|
||||||
export * from './Input/BillableRateInput.vue';
|
|
||||||
export * from './Input/BillableToggleButton.vue';
|
|
||||||
export * from './Input/Checkbox.vue';
|
|
||||||
export * from './Input/DatePicker.vue';
|
|
||||||
export * from './Input/DateRangePicker.vue';
|
|
||||||
export * from './Input/Dropdown.vue';
|
|
||||||
export * from './Input/InputError.vue';
|
|
||||||
export * from './Input/InputLabel.vue';
|
|
||||||
export * from './Input/SelectDropdown.vue';
|
|
||||||
export * from './Input/SelectDropdownItem.vue';
|
|
||||||
export * from './Input/TextInput.vue';
|
|
||||||
|
|
||||||
export * from './Icons/BillableIcon.vue';
|
|
||||||
|
|
||||||
export * from './Client/ClientDropdown.vue';
|
|
||||||
export * from './Client/ClientDropdownItem.vue';
|
|
||||||
|
|
||||||
export * from './Buttons/DangerButton.vue';
|
|
||||||
export * from './Buttons/PrimaryButton.vue';
|
|
||||||
export * from './Buttons/SecondaryButton.vue';
|
|
||||||
|
|||||||
Reference in New Issue
Block a user