@xy-planning-network/trees 0.7.0 → 0.7.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
|
@@ -15,7 +15,7 @@ const attrs = useAttrs()
|
|
|
15
15
|
<p class="sr-only">
|
|
16
16
|
<slot>loading</slot>
|
|
17
17
|
</p>
|
|
18
|
-
<div class="animate-spin-gear drop-shadow-
|
|
18
|
+
<div class="animate-spin-gear drop-shadow-sm">
|
|
19
19
|
<svg
|
|
20
20
|
class="h-full w-full text-xy-green-300"
|
|
21
21
|
viewBox="0 0 129 129"
|
|
@@ -56,37 +56,6 @@ const attrs = useAttrs()
|
|
|
56
56
|
<div
|
|
57
57
|
class="absolute top-0 left-0 right-0 bottom-0 flex justify-center items-center transform scale-50"
|
|
58
58
|
>
|
|
59
|
-
<svg
|
|
60
|
-
width="100%"
|
|
61
|
-
height="100%"
|
|
62
|
-
viewBox="0 0 53 32"
|
|
63
|
-
version="1.1"
|
|
64
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
65
|
-
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
66
|
-
>
|
|
67
|
-
<g
|
|
68
|
-
id="Page-1"
|
|
69
|
-
stroke="none"
|
|
70
|
-
stroke-width="1"
|
|
71
|
-
fill="none"
|
|
72
|
-
fill-rule="evenodd"
|
|
73
|
-
>
|
|
74
|
-
<g id="Group-3-Copy">
|
|
75
|
-
<polygon
|
|
76
|
-
id="Fill-1"
|
|
77
|
-
class="fill-xy-blue"
|
|
78
|
-
points="0.7994 0.3999 11.2214 16.0009 0.7994 31.5999 11.2214 31.5999 16.4004 24.0149 21.1934 31.5999 31.9994 31.5999 21.4254 15.7449 26.0064 9.1719 20.6194 1.3729 16.1554 7.9149 11.2214 0.3999"
|
|
79
|
-
></polygon>
|
|
80
|
-
<polygon
|
|
81
|
-
id="Fill-2"
|
|
82
|
-
class="fill-xy-green-300"
|
|
83
|
-
points="41.978 0.3999 36.799 7.6269 32.006 0.3999 21.2 0.3999 31.775 15.5069 27.194 21.7689 32.27 29.1999 52.4 0.3999"
|
|
84
|
-
></polygon>
|
|
85
|
-
</g>
|
|
86
|
-
</g>
|
|
87
|
-
</svg>
|
|
88
|
-
|
|
89
|
-
<!-- TODO: (spk) replace with logo mark
|
|
90
59
|
<svg
|
|
91
60
|
viewBox="0 0 280 280"
|
|
92
61
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -101,7 +70,6 @@ const attrs = useAttrs()
|
|
|
101
70
|
d="m267.5,140c0-85-42.5-127.5-127.5-127.5-55.06,0-92.27,17.86-111.66,53.53,28.32,8.48,56.67,16.85,84.98,25.37,27.05,8.14,54.01,16.55,81.06,24.67,5.45,1.64,7.5,4.76,6.63,10.27-.69,4.35-1.04,8.75-1.57,13.13-4.95,40.77-8.32,81.74-12.43,122.61,53.64-13.88,80.49-54.56,80.49-122.08Z"
|
|
102
71
|
/>
|
|
103
72
|
</svg>
|
|
104
|
-
-->
|
|
105
73
|
</div>
|
|
106
74
|
</div>
|
|
107
75
|
</div>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { default as useBaseAPI, useBaseAPIGet, useBaseAPIPut, useBaseAPIPost, useBaseAPIDelete } from "./useBaseAPI";
|
|
1
|
+
import { default as useBaseAPI, useBaseAPIGet, useBaseAPIPatch, useBaseAPIPut, useBaseAPIPost, useBaseAPIDelete } from "./useBaseAPI";
|
|
2
2
|
import type { UseBaseAPIOptions, UseBaseAPI } from "./useBaseAPI";
|
|
3
3
|
import type { DynamicTableOptions, DynamicTableAPI, TableActionItem, TableColumn, TableActions, TableCellAlignment, TableRowData, TableColumns, TableRowsData } from "./table";
|
|
4
4
|
export type { UseBaseAPIOptions, UseBaseAPI, DynamicTableOptions, DynamicTableAPI, TableActionItem, TableColumn, TableActions, TableCellAlignment, TableRowData, TableColumns, TableRowsData, };
|
|
5
|
-
export { useBaseAPI, useBaseAPIGet, useBaseAPIPut, useBaseAPIPost, useBaseAPIDelete, };
|
|
5
|
+
export { useBaseAPI, useBaseAPIGet, useBaseAPIPatch, useBaseAPIPut, useBaseAPIPost, useBaseAPIDelete, };
|
|
6
6
|
import { useFlashes, useAppFlashes, useAppFlasher } from "./useFlashes";
|
|
7
7
|
import type { FlashMessage, FlashType, FlashStore, Flasher } from "./useFlashes";
|
|
8
8
|
export type { FlashMessage, FlashType, FlashStore, Flasher };
|