@axium/calendar 0.4.0 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axium/calendar",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"author": "James Prevett <axium@jamespre.dev>",
|
|
5
5
|
"description": "Calendar for Axium",
|
|
6
6
|
"funding": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"build": "tsc"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@axium/client": ">=0.
|
|
40
|
-
"@axium/core": ">=0.
|
|
39
|
+
"@axium/client": ">=0.20.0",
|
|
40
|
+
"@axium/core": ">=0.23.0",
|
|
41
41
|
"@axium/server": ">=0.36.0",
|
|
42
42
|
"@sveltejs/kit": "^2.27.3",
|
|
43
43
|
"utilium": "^2.7.0"
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
</svelte:head>
|
|
102
102
|
|
|
103
103
|
<div id="cal-app">
|
|
104
|
-
<div id="event-init-container">
|
|
105
|
-
<button class="event-init icon-text
|
|
104
|
+
<div id="event-init-container" class="mobile-hide">
|
|
105
|
+
<button class="event-init icon-text" command="show-modal" commandfor="event-init">
|
|
106
106
|
<Icon i="plus" />
|
|
107
107
|
<span>{text('calendar.new_event')}</span>
|
|
108
108
|
</button>
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
<span>{text('generic.delete')}</span>
|
|
183
183
|
</div>
|
|
184
184
|
</Popover>
|
|
185
|
-
<AccessControlDialog
|
|
185
|
+
<AccessControlDialog itemType="calendars" item={cal} bind:dialog={dialogs['share:' + cal.id]} {user} />
|
|
186
186
|
<FormDialog
|
|
187
187
|
bind:dialog={dialogs['delete:' + cal.id]}
|
|
188
188
|
submitText={text('generic.delete')}
|