knt-shared 1.6.9 → 1.6.10
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/BasicLoading.vue.d.ts.map +1 -1
- package/dist/components/Loading/LoadingOverlay.vue.d.ts.map +1 -1
- package/dist/components/Loading/LoadingSpinner.vue.d.ts +16 -0
- package/dist/components/Loading/LoadingSpinner.vue.d.ts.map +1 -0
- package/dist/index.cjs.js +184 -160
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +184 -160
- package/dist/index.esm.js.map +1 -1
- package/dist/style.css +44 -2
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -809,10 +809,52 @@ video[data-v-e8cbf700] {
|
|
|
809
809
|
background: var(--color-fill-2);
|
|
810
810
|
}
|
|
811
811
|
|
|
812
|
-
.knt-
|
|
812
|
+
.knt-spinner[data-v-8cd97aae] {
|
|
813
|
+
display: flex;
|
|
814
|
+
flex-direction: column;
|
|
815
|
+
align-items: center;
|
|
816
|
+
gap: 12px;
|
|
817
|
+
}
|
|
818
|
+
.knt-spinner__ring[data-v-8cd97aae] {
|
|
819
|
+
position: relative;
|
|
820
|
+
width: 36px;
|
|
821
|
+
height: 36px;
|
|
822
|
+
}
|
|
823
|
+
.knt-spinner__ring span[data-v-8cd97aae] {
|
|
824
|
+
position: absolute;
|
|
825
|
+
inset: 0;
|
|
826
|
+
border: 3px solid transparent;
|
|
827
|
+
border-top-color: var(--color-primary, #165dff);
|
|
828
|
+
border-radius: 50%;
|
|
829
|
+
animation: knt-spin-8cd97aae 1s linear infinite;
|
|
830
|
+
}
|
|
831
|
+
.knt-spinner__ring span[data-v-8cd97aae]:nth-child(2) {
|
|
832
|
+
animation-delay: -0.25s;
|
|
833
|
+
opacity: 0.6;
|
|
834
|
+
}
|
|
835
|
+
.knt-spinner__ring span[data-v-8cd97aae]:nth-child(3) {
|
|
836
|
+
animation-delay: -0.5s;
|
|
837
|
+
opacity: 0.3;
|
|
838
|
+
}
|
|
839
|
+
.knt-spinner__ring span[data-v-8cd97aae]:nth-child(4) {
|
|
840
|
+
animation-delay: -0.75s;
|
|
841
|
+
opacity: 0.15;
|
|
842
|
+
}
|
|
843
|
+
.knt-spinner__tip[data-v-8cd97aae] {
|
|
844
|
+
margin: 0;
|
|
845
|
+
font-size: 14px;
|
|
846
|
+
color: var(--color-text-2, #4e5969);
|
|
847
|
+
}
|
|
848
|
+
@keyframes knt-spin-8cd97aae {
|
|
849
|
+
to {
|
|
850
|
+
transform: rotate(360deg);
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.knt-loading-overlay[data-v-b25f4ff8] {
|
|
813
855
|
pointer-events: auto;
|
|
814
856
|
}
|
|
815
|
-
.knt-loading-overlay__content[data-v-
|
|
857
|
+
.knt-loading-overlay__content[data-v-b25f4ff8] {
|
|
816
858
|
display: flex;
|
|
817
859
|
align-items: center;
|
|
818
860
|
justify-content: center;
|