knt-shared 1.8.0 → 1.8.2
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/Table/BasicTable.vue.d.ts +2 -2
- package/dist/components/Table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/Table/types.d.ts +53 -1
- package/dist/components/Table/types.d.ts.map +1 -1
- package/dist/index.cjs.js +70 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +70 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/style.css +9 -9
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -629,12 +629,12 @@ video[data-v-b982f870] {
|
|
|
629
629
|
margin-top: 4px;
|
|
630
630
|
}
|
|
631
631
|
|
|
632
|
-
.basic-table-wrapper[data-v-
|
|
632
|
+
.basic-table-wrapper[data-v-84dbe67a] {
|
|
633
633
|
background: var(--color-bg-2, #fff);
|
|
634
634
|
border-radius: 4px;
|
|
635
635
|
padding: 16px;
|
|
636
636
|
}
|
|
637
|
-
.basic-table-wrapper.is-fullscreen[data-v-
|
|
637
|
+
.basic-table-wrapper.is-fullscreen[data-v-84dbe67a] {
|
|
638
638
|
position: fixed;
|
|
639
639
|
top: 0;
|
|
640
640
|
left: 0;
|
|
@@ -644,39 +644,39 @@ video[data-v-b982f870] {
|
|
|
644
644
|
overflow: auto;
|
|
645
645
|
box-sizing: border-box;
|
|
646
646
|
}
|
|
647
|
-
.basic-table-toolbar[data-v-
|
|
647
|
+
.basic-table-toolbar[data-v-84dbe67a] {
|
|
648
648
|
display: flex;
|
|
649
649
|
justify-content: space-between;
|
|
650
650
|
align-items: center;
|
|
651
651
|
/* padding: 12px 0; */
|
|
652
652
|
margin-bottom: 12px;
|
|
653
653
|
}
|
|
654
|
-
.toolbar-left[data-v-
|
|
654
|
+
.toolbar-left[data-v-84dbe67a] {
|
|
655
655
|
display: flex;
|
|
656
656
|
align-items: center;
|
|
657
657
|
}
|
|
658
|
-
.toolbar-title[data-v-
|
|
658
|
+
.toolbar-title[data-v-84dbe67a] {
|
|
659
659
|
font-size: 16px;
|
|
660
660
|
font-weight: 600;
|
|
661
661
|
color: var(--color-text-1, #1d2129);
|
|
662
662
|
}
|
|
663
|
-
.toolbar-right[data-v-
|
|
663
|
+
.toolbar-right[data-v-84dbe67a] {
|
|
664
664
|
display: flex;
|
|
665
665
|
align-items: center;
|
|
666
666
|
}
|
|
667
|
-
.basic-table-search[data-v-
|
|
667
|
+
.basic-table-search[data-v-84dbe67a] {
|
|
668
668
|
/* margin-bottom: 16px; */
|
|
669
669
|
/* padding: 16px; */
|
|
670
670
|
background: var(--color-bg-1, #fff);
|
|
671
671
|
border-radius: 4px;
|
|
672
672
|
padding: 10px 0;
|
|
673
673
|
}
|
|
674
|
-
.column-setting[data-v-
|
|
674
|
+
.column-setting[data-v-84dbe67a] {
|
|
675
675
|
width: 200px;
|
|
676
676
|
max-height: 400px;
|
|
677
677
|
overflow-y: auto;
|
|
678
678
|
}
|
|
679
|
-
.column-setting-item[data-v-
|
|
679
|
+
.column-setting-item[data-v-84dbe67a] {
|
|
680
680
|
padding: 8px 0;
|
|
681
681
|
}
|
|
682
682
|
|