@elevasis/ui 1.14.2 → 1.14.4
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/dist/{chunk-HGNP6EVB.js → chunk-4J3GVBB7.js} +0 -1
- package/dist/{chunk-YKHTHRLN.js → chunk-5OJM7FHM.js} +126 -17
- package/dist/{chunk-AMLON3UW.js → chunk-NOGBWAGU.js} +1 -1
- package/dist/{chunk-VPQU5BRN.js → chunk-PMSLNXUS.js} +2 -2
- package/dist/{chunk-QDHIJVQ2.js → chunk-RHHWAM22.js} +2 -2
- package/dist/{chunk-BUN337J3.js → chunk-YCOTIVEZ.js} +1 -1
- package/dist/components/index.d.ts +274 -256
- package/dist/components/index.js +10 -10
- package/dist/hooks/index.d.ts +274 -256
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.d.ts +274 -256
- package/dist/hooks/published.js +5 -5
- package/dist/index.d.ts +274 -256
- package/dist/index.js +6 -6
- package/dist/initialization/index.d.ts +274 -256
- package/dist/layout/index.d.ts +2 -0
- package/dist/layout/index.js +1 -2
- package/dist/organization/index.js +1 -1
- package/dist/profile/index.d.ts +274 -256
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.js +2 -2
- package/dist/supabase/index.d.ts +317 -281
- package/dist/types/index.d.ts +274 -256
- package/package.json +1 -2
- package/dist/layout/index.css +0 -44
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.4",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -96,7 +96,6 @@
|
|
|
96
96
|
"import": "./dist/components/navigation/index.js"
|
|
97
97
|
},
|
|
98
98
|
"./components/index.css": "./dist/components/index.css",
|
|
99
|
-
"./layout/index.css": "./dist/layout/index.css",
|
|
100
99
|
"./graph/index.css": "./dist/graph/index.css",
|
|
101
100
|
"./provider/index.css": "./dist/provider/index.css"
|
|
102
101
|
},
|
package/dist/layout/index.css
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/* src/components/display/ElevasisLoader.module.css */
|
|
2
|
-
.wrapper {
|
|
3
|
-
display: inline-flex;
|
|
4
|
-
align-items: center;
|
|
5
|
-
justify-content: center;
|
|
6
|
-
width: var(--loader-size);
|
|
7
|
-
height: var(--loader-size);
|
|
8
|
-
overflow: visible;
|
|
9
|
-
}
|
|
10
|
-
.loader {
|
|
11
|
-
width: 100%;
|
|
12
|
-
height: 100%;
|
|
13
|
-
display: block;
|
|
14
|
-
overflow: visible;
|
|
15
|
-
}
|
|
16
|
-
.chevron {
|
|
17
|
-
stroke: var(--loader-color);
|
|
18
|
-
stroke-width: 2;
|
|
19
|
-
stroke-linecap: square;
|
|
20
|
-
stroke-linejoin: miter;
|
|
21
|
-
fill: none;
|
|
22
|
-
opacity: 0.15;
|
|
23
|
-
animation: chevronPulse 2s ease-in-out infinite;
|
|
24
|
-
filter: drop-shadow(0 0 1.5px var(--loader-color));
|
|
25
|
-
}
|
|
26
|
-
.c1 {
|
|
27
|
-
animation-delay: 0s;
|
|
28
|
-
}
|
|
29
|
-
.c2 {
|
|
30
|
-
animation-delay: 0.2s;
|
|
31
|
-
}
|
|
32
|
-
.c3 {
|
|
33
|
-
animation-delay: 0.4s;
|
|
34
|
-
}
|
|
35
|
-
@keyframes chevronPulse {
|
|
36
|
-
0%, 100% {
|
|
37
|
-
opacity: 0.12;
|
|
38
|
-
filter: drop-shadow(0 0 1px var(--loader-color));
|
|
39
|
-
}
|
|
40
|
-
40%, 60% {
|
|
41
|
-
opacity: 1;
|
|
42
|
-
filter: drop-shadow(0 0 3px var(--loader-color));
|
|
43
|
-
}
|
|
44
|
-
}
|