kts-components-document-access-point 1.4.11 → 1.4.12
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/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/DocumentsList/index.less +23 -0
package/dist/index.esm.js
CHANGED
|
@@ -3724,7 +3724,7 @@ var PageHeader = (function () {
|
|
|
3724
3724
|
}));
|
|
3725
3725
|
});
|
|
3726
3726
|
|
|
3727
|
-
var css_248z$3 = "";
|
|
3727
|
+
var css_248z$3 = ".header {\n padding: 10px 0px;\n display: flex;\n align-items: center;\n}\n.header .buttonGroup {\n margin-right: 20px;\n white-space: nowrap;\n}\n.header .buttons {\n text-align: right;\n flex: 1;\n white-space: nowrap;\n}\n.tabel-action {\n padding: 0 5px;\n font-size: 12px;\n font-family: PingFangSC-Regular, PingFang SC;\n font-weight: 400;\n color: #0074ff;\n white-space: nowrap;\n cursor: pointer;\n}\n";
|
|
3728
3728
|
styleInject(css_248z$3);
|
|
3729
3729
|
|
|
3730
3730
|
var attributionEnum = {
|
package/dist/index.js
CHANGED
|
@@ -3738,7 +3738,7 @@ var PageHeader = (function () {
|
|
|
3738
3738
|
}));
|
|
3739
3739
|
});
|
|
3740
3740
|
|
|
3741
|
-
var css_248z$3 = "";
|
|
3741
|
+
var css_248z$3 = ".header {\n padding: 10px 0px;\n display: flex;\n align-items: center;\n}\n.header .buttonGroup {\n margin-right: 20px;\n white-space: nowrap;\n}\n.header .buttons {\n text-align: right;\n flex: 1;\n white-space: nowrap;\n}\n.tabel-action {\n padding: 0 5px;\n font-size: 12px;\n font-family: PingFangSC-Regular, PingFang SC;\n font-weight: 400;\n color: #0074ff;\n white-space: nowrap;\n cursor: pointer;\n}\n";
|
|
3742
3742
|
styleInject(css_248z$3);
|
|
3743
3743
|
|
|
3744
3744
|
var attributionEnum = {
|
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.header{
|
|
2
|
+
padding:10px 0px;
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
.buttonGroup{
|
|
6
|
+
margin-right: 20px;
|
|
7
|
+
white-space: nowrap;
|
|
8
|
+
}
|
|
9
|
+
.buttons{
|
|
10
|
+
text-align: right;
|
|
11
|
+
flex: 1;
|
|
12
|
+
white-space: nowrap;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
.tabel-action{
|
|
16
|
+
padding: 0 5px;
|
|
17
|
+
font-size: 12px;
|
|
18
|
+
font-family: PingFangSC-Regular,PingFang SC;
|
|
19
|
+
font-weight: 400;
|
|
20
|
+
color: #0074ff;
|
|
21
|
+
white-space: nowrap;
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
}
|