@datability/8ui 1.5.2 → 1.5.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/components/loading-overlay/index.scss +19 -0
- package/dist/index.css +1 -1
- package/dist/index.es.js +964 -960
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/types/components/input/auto-complete/index.d.ts +2 -2
- package/dist/types/components/input/auto-complete/index.type.d.ts +2 -1
- package/dist/types/components/input/checkbox/index.d.ts +2 -2
- package/dist/types/components/input/checkbox/index.type.d.ts +4 -4
- package/dist/types/components/input/date-input/index.d.ts +2 -2
- package/dist/types/components/input/date-input/index.type.d.ts +2 -1
- package/dist/types/components/input/date-range-input/index.d.ts +2 -2
- package/dist/types/components/input/date-range-input/index.type.d.ts +2 -1
- package/dist/types/components/input/date-time-input/index.d.ts +2 -2
- package/dist/types/components/input/date-time-input/index.type.d.ts +2 -1
- package/dist/types/components/input/input-base/index.type.d.ts +4 -4
- package/dist/types/components/input/multi-select/index.d.ts +2 -2
- package/dist/types/components/input/multi-select/index.type.d.ts +2 -1
- package/dist/types/components/input/number-input/index.d.ts +2 -2
- package/dist/types/components/input/number-input/index.type.d.ts +2 -1
- package/dist/types/components/input/password-input/index.d.ts +2 -2
- package/dist/types/components/input/password-input/index.type.d.ts +2 -1
- package/dist/types/components/input/phone-input/index.d.ts +2 -2
- package/dist/types/components/input/phone-input/index.type.d.ts +2 -1
- package/dist/types/components/input/radio-button/index.d.ts +2 -2
- package/dist/types/components/input/radio-button/index.type.d.ts +4 -4
- package/dist/types/components/input/range-slider/index.d.ts +2 -2
- package/dist/types/components/input/range-slider/index.type.d.ts +4 -4
- package/dist/types/components/input/select/index.d.ts +2 -2
- package/dist/types/components/input/select/index.type.d.ts +2 -1
- package/dist/types/components/input/slider/index.d.ts +2 -2
- package/dist/types/components/input/slider/index.type.d.ts +4 -4
- package/dist/types/components/input/text-input/index.d.ts +2 -2
- package/dist/types/components/input/text-input/index.type.d.ts +2 -1
- package/dist/types/components/input/textarea/index.d.ts +2 -2
- package/dist/types/components/input/textarea/index.type.d.ts +2 -1
- package/dist/types/components/input/toggle/index.d.ts +2 -2
- package/dist/types/components/input/toggle/index.type.d.ts +4 -4
- package/dist/types/components/loading-overlay/index.d.ts +4 -0
- package/dist/types/components/loading-overlay/index.type.d.ts +4 -0
- package/dist/types/components/quantity/index.d.ts +2 -2
- package/dist/types/components/quantity/index.type.d.ts +4 -4
- package/dist/types/components/search-bar/index.d.ts +2 -2
- package/dist/types/components/search-bar/index.type.d.ts +4 -4
- package/dist/types/index.d.ts +2 -0
- package/dist/types/pages/Components/demos/LoadingOverlayDemo.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.DBui-loadingOverlay {
|
|
2
|
+
position: fixed;
|
|
3
|
+
inset: 0;
|
|
4
|
+
z-index: 9999;
|
|
5
|
+
background: rgba(0, 0, 0, 0.4);
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
animation: DBui-loadingOverlay-fade-in 0.2s ease-out forwards;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@keyframes DBui-loadingOverlay-fade-in {
|
|
13
|
+
from {
|
|
14
|
+
opacity: 0;
|
|
15
|
+
}
|
|
16
|
+
to {
|
|
17
|
+
opacity: 1;
|
|
18
|
+
}
|
|
19
|
+
}
|