xrk-components 2.0.0-beta.24 → 2.0.0-beta.26
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/lib/index.css +14 -0
- package/lib/index.esm.js +410 -352
- package/lib/index.umd.js +410 -352
- package/lib/packages/base/autocomplete/autocomplete.d.ts +176 -0
- package/lib/packages/base/autocomplete/index.d.ts +46 -0
- package/lib/packages/components.d.ts +2 -1
- package/lib/packages/types.d.ts +1 -0
- package/lib/packages/xrk/search/index.d.ts +1 -0
- package/lib/packages/xrk/search/types/type.d.ts +6 -0
- package/package.json +1 -1
package/lib/index.css
CHANGED
|
@@ -19893,6 +19893,20 @@
|
|
|
19893
19893
|
overflow: auto;
|
|
19894
19894
|
min-height: 24px;
|
|
19895
19895
|
}
|
|
19896
|
+
.xrk-dialog .xrk-dialog__footer {
|
|
19897
|
+
display: -webkit-box;
|
|
19898
|
+
display: -webkit-flex;
|
|
19899
|
+
display: -ms-flexbox;
|
|
19900
|
+
display: flex;
|
|
19901
|
+
-webkit-box-pack: end;
|
|
19902
|
+
-webkit-justify-content: flex-end;
|
|
19903
|
+
-ms-flex-pack: end;
|
|
19904
|
+
justify-content: flex-end;
|
|
19905
|
+
padding: 16px 24px;
|
|
19906
|
+
border-top: 1px solid #f0f0f0;
|
|
19907
|
+
-webkit-box-sizing: border-box;
|
|
19908
|
+
box-sizing: border-box;
|
|
19909
|
+
}
|
|
19896
19910
|
.base-upload[data-v-75b461d5] {
|
|
19897
19911
|
line-height: 1.4;
|
|
19898
19912
|
}
|