@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "1.14.2",
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
  },
@@ -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
- }