mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
Compare commits
1 Commits
feature/ap
...
feature/up
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5e3ac45ce0 |
@@ -125,6 +125,8 @@ function deleteSelected() {
|
|||||||
:createClient="createClient"
|
:createClient="createClient"
|
||||||
:createTag="createTag"
|
:createTag="createTag"
|
||||||
:createTimeEntry="createTimeEntry"
|
:createTimeEntry="createTimeEntry"
|
||||||
|
:currency="getOrganizationCurrencyString()"
|
||||||
|
:canCreateProject="canCreateProjects()"
|
||||||
:projects
|
:projects
|
||||||
:tasks
|
:tasks
|
||||||
:tags
|
:tags
|
||||||
|
|||||||
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.10",
|
"version": "0.0.11",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@solidtime/ui",
|
"name": "@solidtime/ui",
|
||||||
"version": "0.0.9",
|
"version": "0.0.11",
|
||||||
"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.10",
|
"version": "0.0.11",
|
||||||
"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",
|
||||||
|
|||||||
@@ -19,8 +19,6 @@ import type {
|
|||||||
CreateTimeEntryBody,
|
CreateTimeEntryBody,
|
||||||
} from '@/packages/api/src';
|
} from '@/packages/api/src';
|
||||||
import TimePicker from '@/packages/ui/src/Input/TimePicker.vue';
|
import TimePicker from '@/packages/ui/src/Input/TimePicker.vue';
|
||||||
import { getOrganizationCurrencyString } from '@/utils/money';
|
|
||||||
import { canCreateProjects } from '@/utils/permissions';
|
|
||||||
import TagDropdown from '@/packages/ui/src/Tag/TagDropdown.vue';
|
import TagDropdown from '@/packages/ui/src/Tag/TagDropdown.vue';
|
||||||
import { Badge } from '@/packages/ui/src';
|
import { Badge } from '@/packages/ui/src';
|
||||||
import BillableIcon from '@/packages/ui/src/Icons/BillableIcon.vue';
|
import BillableIcon from '@/packages/ui/src/Icons/BillableIcon.vue';
|
||||||
@@ -46,6 +44,8 @@ const props = defineProps<{
|
|||||||
projects: Project[];
|
projects: Project[];
|
||||||
tasks: Task[];
|
tasks: Task[];
|
||||||
clients: Client[];
|
clients: Client[];
|
||||||
|
currency: string;
|
||||||
|
canCreateProject: boolean;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const description = ref<HTMLInputElement | null>(null);
|
const description = ref<HTMLInputElement | null>(null);
|
||||||
@@ -137,8 +137,8 @@ type BillableOption = {
|
|||||||
:clients
|
:clients
|
||||||
:createProject
|
:createProject
|
||||||
:createClient
|
:createClient
|
||||||
:canCreateProject="canCreateProjects()"
|
:canCreateProject
|
||||||
:currency="getOrganizationCurrencyString()"
|
:currency
|
||||||
size="xlarge"
|
size="xlarge"
|
||||||
class="bg-input-background"
|
class="bg-input-background"
|
||||||
:projects="projects"
|
:projects="projects"
|
||||||
|
|||||||
Reference in New Issue
Block a user