@ouestfrance/sipa-bms-ui 8.48.1 → 8.49.0
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/BmsTable.vue.d.ts +3 -0
- package/dist/components/table/UiBmsTable.vue.d.ts +15 -10
- package/dist/components/table/UiBmsTableRow.vue.d.ts +18 -8
- package/dist/sipa-bms-ui.css +94 -70
- package/dist/sipa-bms-ui.es.js +239 -140
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +239 -140
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/form/BmsCombobox.vue +5 -0
- package/src/components/table/BmsTable.stories.js +70 -0
- package/src/components/table/BmsTable.vue +24 -3
- package/src/components/table/UiBmsTable.stories.js +40 -0
- package/src/components/table/UiBmsTable.vue +74 -7
- package/src/components/table/UiBmsTableRow.vue +41 -3
|
@@ -17,6 +17,7 @@ interface UiTableProps {
|
|
|
17
17
|
selectableDisabled?: boolean;
|
|
18
18
|
selectMode?: SelectMode.DEFAULT | SelectMode.SINGLE;
|
|
19
19
|
customSearch?: (item: unknown, searchValue: string) => boolean;
|
|
20
|
+
draggable?: boolean;
|
|
20
21
|
}
|
|
21
22
|
type __VLS_Props = UiTableProps;
|
|
22
23
|
declare const __VLS_defaults: {
|
|
@@ -26,6 +27,7 @@ type __VLS_PublicProps = __VLS_Props & {
|
|
|
26
27
|
'selectedItems'?: typeof __VLS_defaults['selectedItems'];
|
|
27
28
|
};
|
|
28
29
|
declare const _default: __VLS_WithSlots<import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
30
|
+
reorder: (items: unknown[]) => any;
|
|
29
31
|
"update:selectedItems": (value: unknown[]) => any;
|
|
30
32
|
saveFilter: (value: SavedFilter) => any;
|
|
31
33
|
filterInput: (args_0: {
|
|
@@ -39,6 +41,7 @@ declare const _default: __VLS_WithSlots<import('vue').DefineComponent<__VLS_Publ
|
|
|
39
41
|
}) => any;
|
|
40
42
|
deleteSavedFilter: (value: SavedFilter) => any;
|
|
41
43
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
44
|
+
onReorder?: ((items: unknown[]) => any) | undefined;
|
|
42
45
|
"onUpdate:selectedItems"?: ((value: unknown[]) => any) | undefined;
|
|
43
46
|
onSaveFilter?: ((value: SavedFilter) => any) | undefined;
|
|
44
47
|
onFilterInput?: ((args_0: {
|
|
@@ -12,6 +12,7 @@ interface UiBmsTableProps {
|
|
|
12
12
|
totalSize: number;
|
|
13
13
|
maxSelectedSize?: number;
|
|
14
14
|
selectMode?: SelectMode;
|
|
15
|
+
draggable?: boolean;
|
|
15
16
|
}
|
|
16
17
|
type __VLS_Props = UiBmsTableProps;
|
|
17
18
|
declare const __VLS_defaults: {
|
|
@@ -20,19 +21,19 @@ declare const __VLS_defaults: {
|
|
|
20
21
|
type __VLS_PublicProps = __VLS_Props & {
|
|
21
22
|
'selectedItems'?: typeof __VLS_defaults['selectedItems'];
|
|
22
23
|
};
|
|
23
|
-
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_12: {},
|
|
24
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_12: {}, __VLS_52: string, __VLS_53: {
|
|
24
25
|
row: any;
|
|
25
26
|
isChildElement: false | undefined;
|
|
26
|
-
},
|
|
27
|
+
}, __VLS_55: {
|
|
27
28
|
row: any;
|
|
28
|
-
},
|
|
29
|
+
}, __VLS_57: {}, __VLS_67: string, __VLS_68: {
|
|
29
30
|
row: any;
|
|
30
31
|
isChildElement: false | undefined;
|
|
31
|
-
},
|
|
32
|
+
}, __VLS_70: {}, __VLS_72: {};
|
|
32
33
|
type __VLS_Slots = {} & {
|
|
33
|
-
[K in NonNullable<typeof
|
|
34
|
+
[K in NonNullable<typeof __VLS_52>]?: (props: typeof __VLS_53) => any;
|
|
34
35
|
} & {
|
|
35
|
-
[K in NonNullable<typeof
|
|
36
|
+
[K in NonNullable<typeof __VLS_67>]?: (props: typeof __VLS_68) => any;
|
|
36
37
|
} & {
|
|
37
38
|
'custom-actions'?: (props: typeof __VLS_1) => any;
|
|
38
39
|
} & {
|
|
@@ -44,23 +45,27 @@ type __VLS_Slots = {} & {
|
|
|
44
45
|
} & {
|
|
45
46
|
'alert-action'?: (props: typeof __VLS_12) => any;
|
|
46
47
|
} & {
|
|
47
|
-
default?: (props: typeof
|
|
48
|
+
default?: (props: typeof __VLS_55) => any;
|
|
48
49
|
} & {
|
|
49
|
-
'child-element'?: (props: typeof
|
|
50
|
+
'child-element'?: (props: typeof __VLS_57) => any;
|
|
50
51
|
} & {
|
|
51
|
-
empty?: (props: typeof
|
|
52
|
+
empty?: (props: typeof __VLS_70) => any;
|
|
52
53
|
} & {
|
|
53
|
-
pagination?: (props: typeof
|
|
54
|
+
pagination?: (props: typeof __VLS_72) => any;
|
|
54
55
|
};
|
|
55
56
|
declare const _default: __VLS_WithSlots<import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
57
|
selectAll: () => any;
|
|
57
58
|
clickHeader: (header: TableHeader) => any;
|
|
58
59
|
clearSelection: () => any;
|
|
60
|
+
reorder: (items: unknown[]) => any;
|
|
61
|
+
selectionIndicesUpdate: (indices: number[]) => any;
|
|
59
62
|
"update:selectedItems": (value: unknown[]) => any;
|
|
60
63
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
61
64
|
onSelectAll?: (() => any) | undefined;
|
|
62
65
|
onClickHeader?: ((header: TableHeader) => any) | undefined;
|
|
63
66
|
onClearSelection?: (() => any) | undefined;
|
|
67
|
+
onReorder?: ((items: unknown[]) => any) | undefined;
|
|
68
|
+
onSelectionIndicesUpdate?: ((indices: number[]) => any) | undefined;
|
|
64
69
|
"onUpdate:selectedItems"?: ((value: unknown[]) => any) | undefined;
|
|
65
70
|
}>, {
|
|
66
71
|
sort: Sort;
|
|
@@ -8,34 +8,44 @@ interface Props {
|
|
|
8
8
|
selectableDisabled?: boolean;
|
|
9
9
|
dense?: boolean;
|
|
10
10
|
isChildElement?: boolean;
|
|
11
|
+
draggable?: boolean;
|
|
11
12
|
}
|
|
12
|
-
declare var
|
|
13
|
+
declare var __VLS_22: {
|
|
13
14
|
row: any;
|
|
14
|
-
},
|
|
15
|
+
}, __VLS_29: string, __VLS_30: {
|
|
15
16
|
row: any;
|
|
16
17
|
isChildElement: true;
|
|
17
|
-
},
|
|
18
|
+
}, __VLS_36: string, __VLS_37: {
|
|
18
19
|
row: any;
|
|
19
20
|
isChildElement: false | undefined;
|
|
20
|
-
},
|
|
21
|
+
}, __VLS_40: string, __VLS_41: {
|
|
21
22
|
row: any;
|
|
22
23
|
isChildElement: false | undefined;
|
|
23
24
|
};
|
|
24
25
|
type __VLS_Slots = {} & {
|
|
25
|
-
[K in NonNullable<typeof
|
|
26
|
-
} & {
|
|
27
|
-
[K in NonNullable<typeof __VLS_32>]?: (props: typeof __VLS_33) => any;
|
|
26
|
+
[K in NonNullable<typeof __VLS_29>]?: (props: typeof __VLS_30) => any;
|
|
28
27
|
} & {
|
|
29
28
|
[K in NonNullable<typeof __VLS_36>]?: (props: typeof __VLS_37) => any;
|
|
30
29
|
} & {
|
|
31
|
-
|
|
30
|
+
[K in NonNullable<typeof __VLS_40>]?: (props: typeof __VLS_41) => any;
|
|
31
|
+
} & {
|
|
32
|
+
default?: (props: typeof __VLS_22) => any;
|
|
32
33
|
};
|
|
33
34
|
declare const _default: __VLS_WithSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
35
|
select: (item: any) => any;
|
|
36
|
+
drop: () => any;
|
|
37
|
+
dragStart: () => any;
|
|
38
|
+
dragOver: () => any;
|
|
39
|
+
dragEnd: () => any;
|
|
35
40
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
36
41
|
onSelect?: ((item: any) => any) | undefined;
|
|
42
|
+
onDrop?: (() => any) | undefined;
|
|
43
|
+
onDragStart?: (() => any) | undefined;
|
|
44
|
+
onDragOver?: (() => any) | undefined;
|
|
45
|
+
onDragEnd?: (() => any) | undefined;
|
|
37
46
|
}>, {
|
|
38
47
|
dense: boolean;
|
|
48
|
+
draggable: boolean;
|
|
39
49
|
selectableDisabled: boolean;
|
|
40
50
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, __VLS_Slots>;
|
|
41
51
|
export default _default;
|
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -1593,12 +1593,12 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1593
1593
|
line-height: 1;
|
|
1594
1594
|
width: 100%;
|
|
1595
1595
|
height: 100%;
|
|
1596
|
-
}.select-wrapper[data-v-
|
|
1596
|
+
}.select-wrapper[data-v-7df0bce4] {
|
|
1597
1597
|
--field-border-color: light-dark(var(--bms-grey-50), var(--bms-grey-140));
|
|
1598
1598
|
--field-border-color-active: var(--bms-main-100);
|
|
1599
1599
|
--input-background-color: var(--bms-white);
|
|
1600
1600
|
}
|
|
1601
|
-
.select-wrapper .field__input-label[data-v-
|
|
1601
|
+
.select-wrapper .field__input-label[data-v-7df0bce4] {
|
|
1602
1602
|
display: block;
|
|
1603
1603
|
color: var(--bms-grey-50);
|
|
1604
1604
|
font-size: 12px;
|
|
@@ -1606,7 +1606,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1606
1606
|
margin-top: 6px;
|
|
1607
1607
|
margin-bottom: 4px;
|
|
1608
1608
|
}
|
|
1609
|
-
.select-wrapper .select-input[data-v-
|
|
1609
|
+
.select-wrapper .select-input[data-v-7df0bce4] {
|
|
1610
1610
|
width: 100%;
|
|
1611
1611
|
padding: 0 0 0 var(--field-padding);
|
|
1612
1612
|
border-radius: var(--bms-border-radius);
|
|
@@ -1617,16 +1617,19 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1617
1617
|
align-items: center;
|
|
1618
1618
|
justify-content: space-between;
|
|
1619
1619
|
}
|
|
1620
|
-
.select-wrapper .select-input
|
|
1620
|
+
.select-wrapper .select-input.has-icon[data-v-7df0bce4] {
|
|
1621
|
+
gap: 5px;
|
|
1622
|
+
}
|
|
1623
|
+
.select-wrapper .select-input .field__input-icon[data-v-7df0bce4] {
|
|
1621
1624
|
display: flex;
|
|
1622
1625
|
}
|
|
1623
|
-
.select-wrapper .select-input .field__input-icon--start[data-v-
|
|
1626
|
+
.select-wrapper .select-input .field__input-icon--start[data-v-7df0bce4] {
|
|
1624
1627
|
margin-right: 0.5em;
|
|
1625
1628
|
}
|
|
1626
|
-
.select-wrapper .select-input .field__input-icon--end[data-v-
|
|
1629
|
+
.select-wrapper .select-input .field__input-icon--end[data-v-7df0bce4] {
|
|
1627
1630
|
margin-left: 0.5em;
|
|
1628
1631
|
}
|
|
1629
|
-
.select-wrapper .select-input input[data-v-
|
|
1632
|
+
.select-wrapper .select-input input[data-v-7df0bce4] {
|
|
1630
1633
|
border: none;
|
|
1631
1634
|
background-color: transparent;
|
|
1632
1635
|
flex-grow: 1;
|
|
@@ -1642,59 +1645,59 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1642
1645
|
width: 100%;
|
|
1643
1646
|
height: 100%;
|
|
1644
1647
|
}
|
|
1645
|
-
.select-wrapper .select-input__tags[data-v-
|
|
1648
|
+
.select-wrapper .select-input__tags[data-v-7df0bce4] {
|
|
1646
1649
|
display: flex;
|
|
1647
1650
|
gap: 0.5em;
|
|
1648
1651
|
padding: var(--field-margin);
|
|
1649
1652
|
flex-wrap: wrap;
|
|
1650
1653
|
}
|
|
1651
|
-
.select-wrapper .select-input__tags[data-v-
|
|
1654
|
+
.select-wrapper .select-input__tags[data-v-7df0bce4]:not(:empty) {
|
|
1652
1655
|
margin-right: 0.5em;
|
|
1653
1656
|
}
|
|
1654
|
-
.select-wrapper .select-input[data-v-
|
|
1657
|
+
.select-wrapper .select-input[data-v-7df0bce4]:hover {
|
|
1655
1658
|
--field-border-color: var(--bms-grey-100);
|
|
1656
1659
|
}
|
|
1657
|
-
.select-wrapper .select-input[data-v-
|
|
1660
|
+
.select-wrapper .select-input[data-v-7df0bce4]:has(input:focus) {
|
|
1658
1661
|
--field-border-color: var(--field-border-color-active);
|
|
1659
1662
|
}
|
|
1660
|
-
.select-wrapper .select-input.is-error[data-v-
|
|
1663
|
+
.select-wrapper .select-input.is-error[data-v-7df0bce4] {
|
|
1661
1664
|
--field-border-color: var(--bms-red-100);
|
|
1662
1665
|
--input-background-color: var(--bms-red-25);
|
|
1663
1666
|
}
|
|
1664
|
-
.select-wrapper .select-input.is-disabled[data-v-
|
|
1667
|
+
.select-wrapper .select-input.is-disabled[data-v-7df0bce4] {
|
|
1665
1668
|
--field-border-color: var(--bms-field-disabled-border-color);
|
|
1666
1669
|
--input-background-color: var(--bms-field-disabled-background);
|
|
1667
1670
|
color: var(--bms-field-disabled-text-color);
|
|
1668
1671
|
pointer-events: none;
|
|
1669
1672
|
}
|
|
1670
|
-
.select-wrapper .select-input.is-disabled input[data-v-
|
|
1673
|
+
.select-wrapper .select-input.is-disabled input[data-v-7df0bce4]:disabled {
|
|
1671
1674
|
opacity: 1;
|
|
1672
1675
|
-webkit-text-fill-color: currentColor;
|
|
1673
1676
|
}
|
|
1674
|
-
.select-wrapper .icon-container[data-v-
|
|
1677
|
+
.select-wrapper .icon-container[data-v-7df0bce4] {
|
|
1675
1678
|
height: 100%;
|
|
1676
1679
|
display: flex;
|
|
1677
1680
|
align-items: center;
|
|
1678
1681
|
}
|
|
1679
|
-
.select-wrapper .icon-container[data-v-
|
|
1682
|
+
.select-wrapper .icon-container[data-v-7df0bce4]:hover {
|
|
1680
1683
|
cursor: pointer;
|
|
1681
1684
|
}
|
|
1682
|
-
.select-wrapper .icon-button[data-v-
|
|
1685
|
+
.select-wrapper .icon-button[data-v-7df0bce4] {
|
|
1683
1686
|
width: 1em;
|
|
1684
1687
|
margin: 0 var(--field-padding);
|
|
1685
1688
|
display: block;
|
|
1686
1689
|
}
|
|
1687
|
-
.combobox-option[data-v-
|
|
1690
|
+
.combobox-option[data-v-7df0bce4] {
|
|
1688
1691
|
display: flex;
|
|
1689
1692
|
align-items: center;
|
|
1690
1693
|
gap: 0.5em;
|
|
1691
1694
|
}
|
|
1692
|
-
.combobox-option__check[data-v-
|
|
1695
|
+
.combobox-option__check[data-v-7df0bce4] {
|
|
1693
1696
|
width: 1em;
|
|
1694
1697
|
display: flex;
|
|
1695
1698
|
justify-content: center;
|
|
1696
1699
|
}
|
|
1697
|
-
.combobox-option--select-all[data-v-
|
|
1700
|
+
.combobox-option--select-all[data-v-7df0bce4] {
|
|
1698
1701
|
font-weight: 600;
|
|
1699
1702
|
width: 100%;
|
|
1700
1703
|
}.field__input textarea[data-v-6d84521c] {
|
|
@@ -2832,47 +2835,59 @@ nav .additional[data-v-43dce565] {
|
|
|
2832
2835
|
.bms-pagination__select[data-v-86561b3b] .field__wrapper {
|
|
2833
2836
|
min-width: 10em;
|
|
2834
2837
|
width: 10em;
|
|
2835
|
-
}.bms-table__row[data-v-
|
|
2838
|
+
}.bms-table__row[data-v-13885778] {
|
|
2836
2839
|
--table-cell-padding: 1em;
|
|
2837
2840
|
background-color: var(--bms-white);
|
|
2838
2841
|
}
|
|
2839
|
-
.bms-table__row td[data-v-
|
|
2842
|
+
.bms-table__row td[data-v-13885778] {
|
|
2840
2843
|
padding: var(--table-cell-padding);
|
|
2841
2844
|
background-color: var(--bms-white);
|
|
2842
2845
|
}
|
|
2843
|
-
.bms-table__row--dense[data-v-
|
|
2846
|
+
.bms-table__row--dense[data-v-13885778] {
|
|
2844
2847
|
--table-cell-padding: 0.5em 1em;
|
|
2845
2848
|
}
|
|
2846
|
-
.bms-table__row--selected[data-v-
|
|
2849
|
+
.bms-table__row--selected[data-v-13885778] td {
|
|
2847
2850
|
background-color: light-dark(var(--bms-main-10), color-mix(in srgb, var(--bms-main-100) 32%, var(--bms-white)));
|
|
2848
2851
|
}
|
|
2849
|
-
.bms-table__row--disabled td[data-v-
|
|
2852
|
+
.bms-table__row--disabled td[data-v-13885778] {
|
|
2850
2853
|
color: var(--bms-grey-50);
|
|
2851
2854
|
}
|
|
2852
|
-
.bms-table__row__cell__checkbox[data-v-
|
|
2855
|
+
.bms-table__row__cell__checkbox[data-v-13885778] {
|
|
2853
2856
|
width: 4em;
|
|
2854
2857
|
}
|
|
2855
|
-
.bms-table__row__cell--action[data-v-
|
|
2858
|
+
.bms-table__row__cell--action[data-v-13885778] {
|
|
2856
2859
|
display: flex;
|
|
2857
2860
|
justify-content: end;
|
|
2858
2861
|
}
|
|
2859
|
-
.bms-table__row__cell--empty[data-v-
|
|
2862
|
+
.bms-table__row__cell--empty[data-v-13885778] {
|
|
2860
2863
|
height: 360px;
|
|
2861
2864
|
}
|
|
2862
|
-
.bms-table__row__cell--child-element[data-v-
|
|
2865
|
+
.bms-table__row__cell--child-element[data-v-13885778] {
|
|
2863
2866
|
display: inline-flex;
|
|
2864
2867
|
align-items: flex-end;
|
|
2865
2868
|
}
|
|
2866
|
-
.bms-table__row__cell--child-element__icon[data-v-
|
|
2869
|
+
.bms-table__row__cell--child-element__icon[data-v-13885778] {
|
|
2867
2870
|
display: flex;
|
|
2868
2871
|
margin-right: 1em;
|
|
2869
|
-
}
|
|
2872
|
+
}
|
|
2873
|
+
.bms-table__row__cell--drag-handle[data-v-13885778] {
|
|
2874
|
+
width: 2em;
|
|
2875
|
+
cursor: default;
|
|
2876
|
+
}
|
|
2877
|
+
.bms-table__row__cell--drag-handle .drag-handle-icon[data-v-13885778] {
|
|
2878
|
+
display: block;
|
|
2879
|
+
cursor: grab;
|
|
2880
|
+
color: var(--bms-grey-50);
|
|
2881
|
+
}
|
|
2882
|
+
.bms-table__row__cell--drag-handle .drag-handle-icon[data-v-13885778]:active {
|
|
2883
|
+
cursor: grabbing;
|
|
2884
|
+
}.bms-table[data-v-c883a5f1] {
|
|
2870
2885
|
--table-cell-padding: 1em;
|
|
2871
2886
|
--table-cell-radius: var(--bms-border-radius-large);
|
|
2872
2887
|
--dynamic-border-height: 2px;
|
|
2873
2888
|
--table-border: 1px solid var(--bms-border-color);
|
|
2874
2889
|
}
|
|
2875
|
-
.bms-table__loader[data-v-
|
|
2890
|
+
.bms-table__loader[data-v-c883a5f1] {
|
|
2876
2891
|
position: absolute;
|
|
2877
2892
|
background: color-mix(in srgb, var(--bms-white) 72%, transparent);
|
|
2878
2893
|
inset: 0;
|
|
@@ -2882,126 +2897,135 @@ nav .additional[data-v-43dce565] {
|
|
|
2882
2897
|
font-size: 3em;
|
|
2883
2898
|
z-index: 10;
|
|
2884
2899
|
}
|
|
2885
|
-
.bms-table__actions[data-v-
|
|
2900
|
+
.bms-table__actions[data-v-c883a5f1] {
|
|
2886
2901
|
display: flex;
|
|
2887
2902
|
align-items: center;
|
|
2888
2903
|
justify-content: space-between;
|
|
2889
2904
|
margin-bottom: 1em;
|
|
2890
2905
|
}
|
|
2891
|
-
.bms-table__actions--small[data-v-
|
|
2906
|
+
.bms-table__actions--small[data-v-c883a5f1] {
|
|
2892
2907
|
margin-bottom: 0.5em;
|
|
2893
2908
|
}
|
|
2894
|
-
.bms-table__actions__saved-filters[data-v-
|
|
2909
|
+
.bms-table__actions__saved-filters[data-v-c883a5f1] {
|
|
2895
2910
|
display: flex;
|
|
2896
2911
|
align-items: center;
|
|
2897
2912
|
flex-wrap: wrap;
|
|
2898
2913
|
gap: 1em;
|
|
2899
2914
|
}
|
|
2900
|
-
.bms-table__actions__search[data-v-
|
|
2915
|
+
.bms-table__actions__search[data-v-c883a5f1] {
|
|
2901
2916
|
display: flex;
|
|
2902
2917
|
align-items: center;
|
|
2903
2918
|
gap: 1em;
|
|
2904
2919
|
}
|
|
2905
|
-
.bms-table__actions__custom[data-v-
|
|
2920
|
+
.bms-table__actions__custom[data-v-c883a5f1] {
|
|
2906
2921
|
display: flex;
|
|
2907
2922
|
gap: 1em;
|
|
2908
2923
|
}
|
|
2909
|
-
.bms-table__actions__custom[data-v-
|
|
2924
|
+
.bms-table__actions__custom[data-v-c883a5f1]:empty {
|
|
2910
2925
|
display: none;
|
|
2911
2926
|
}
|
|
2912
|
-
.bms-table__selected[data-v-
|
|
2927
|
+
.bms-table__selected[data-v-c883a5f1] {
|
|
2913
2928
|
margin-bottom: 1em;
|
|
2914
2929
|
}
|
|
2915
|
-
.bms-table__selected .select-mode-all[data-v-
|
|
2930
|
+
.bms-table__selected .select-mode-all[data-v-c883a5f1] {
|
|
2916
2931
|
cursor: pointer;
|
|
2917
2932
|
color: var(--bms-main-100);
|
|
2918
2933
|
}
|
|
2919
|
-
.bms-table__cell__checkbox[data-v-
|
|
2934
|
+
.bms-table__cell__checkbox[data-v-c883a5f1] {
|
|
2920
2935
|
width: 4em;
|
|
2921
2936
|
}
|
|
2922
|
-
.bms-table__cell--action[data-v-
|
|
2937
|
+
.bms-table__cell--action[data-v-c883a5f1] {
|
|
2923
2938
|
display: flex;
|
|
2924
2939
|
justify-content: end;
|
|
2925
2940
|
}
|
|
2926
|
-
.bms-table__cell--empty[data-v-
|
|
2941
|
+
.bms-table__cell--empty[data-v-c883a5f1] {
|
|
2927
2942
|
height: 360px;
|
|
2928
2943
|
}
|
|
2929
|
-
.bms-table__table[data-v-
|
|
2944
|
+
.bms-table__table[data-v-c883a5f1] {
|
|
2930
2945
|
width: 100%;
|
|
2931
2946
|
border-spacing: 0 var(--dynamic-border-height);
|
|
2932
2947
|
border-radius: var(--bms-border-radius-large);
|
|
2933
2948
|
border: var(--table-border);
|
|
2934
2949
|
position: relative;
|
|
2935
2950
|
}
|
|
2936
|
-
.bms-table__table-wrapper[data-v-
|
|
2951
|
+
.bms-table__table-wrapper[data-v-c883a5f1] {
|
|
2937
2952
|
position: relative;
|
|
2938
2953
|
}
|
|
2939
|
-
.bms-table__table thead[data-v-
|
|
2954
|
+
.bms-table__table thead[data-v-c883a5f1] {
|
|
2940
2955
|
position: sticky;
|
|
2941
2956
|
z-index: 2;
|
|
2942
2957
|
top: var(--header-height, 0);
|
|
2943
2958
|
}
|
|
2944
|
-
.bms-table__table--dense[data-v-
|
|
2959
|
+
.bms-table__table--dense[data-v-c883a5f1] {
|
|
2945
2960
|
--table-cell-padding: 0.5em 1em;
|
|
2946
2961
|
}
|
|
2947
|
-
.bms-table__table[data-v-
|
|
2962
|
+
.bms-table__table[data-v-c883a5f1] tr td {
|
|
2948
2963
|
padding: var(--table-cell-padding);
|
|
2949
2964
|
}
|
|
2950
|
-
.bms-table__table th[data-v-
|
|
2965
|
+
.bms-table__table th[data-v-c883a5f1] {
|
|
2951
2966
|
--header-content-sort-icon-color: var(--bms-grey-25);
|
|
2952
2967
|
--header-content-justify: start;
|
|
2953
2968
|
width: var(--table-cell-width, auto);
|
|
2954
2969
|
padding: var(--table-cell-padding);
|
|
2955
2970
|
}
|
|
2956
|
-
.bms-table__table th.sortable[data-v-
|
|
2971
|
+
.bms-table__table th.sortable[data-v-c883a5f1]:hover {
|
|
2957
2972
|
--header-content-sort-icon-color: light-dark(
|
|
2958
2973
|
var(--bms-grey-100),
|
|
2959
2974
|
var(--bms-font-color)
|
|
2960
2975
|
);
|
|
2961
2976
|
cursor: pointer;
|
|
2962
2977
|
}
|
|
2963
|
-
.bms-table__table th.u-text-align-start[data-v-
|
|
2978
|
+
.bms-table__table th.u-text-align-start[data-v-c883a5f1] {
|
|
2964
2979
|
--header-content-justify: start;
|
|
2965
2980
|
}
|
|
2966
|
-
.bms-table__table th.u-text-align-center[data-v-
|
|
2981
|
+
.bms-table__table th.u-text-align-center[data-v-c883a5f1] {
|
|
2967
2982
|
--header-content-justify: center;
|
|
2968
2983
|
}
|
|
2969
|
-
.bms-table__table th.u-text-align-end[data-v-
|
|
2984
|
+
.bms-table__table th.u-text-align-end[data-v-c883a5f1] {
|
|
2970
2985
|
--header-content-justify: end;
|
|
2971
2986
|
}
|
|
2972
|
-
.bms-table__table th.sorted[data-v-
|
|
2987
|
+
.bms-table__table th.sorted[data-v-c883a5f1] {
|
|
2973
2988
|
--header-content-sort-icon-color: light-dark(
|
|
2974
2989
|
var(--bms-grey-100),
|
|
2975
2990
|
var(--bms-font-color)
|
|
2976
2991
|
);
|
|
2977
2992
|
}
|
|
2978
|
-
.bms-table__table th .header-content[data-v-
|
|
2993
|
+
.bms-table__table th .header-content[data-v-c883a5f1] {
|
|
2979
2994
|
display: flex;
|
|
2980
2995
|
align-items: center;
|
|
2981
2996
|
justify-content: var(--header-content-justify);
|
|
2982
2997
|
gap: 0.5em;
|
|
2983
2998
|
}
|
|
2984
|
-
.bms-table__table th .header-content-sort[data-v-
|
|
2999
|
+
.bms-table__table th .header-content-sort[data-v-c883a5f1] {
|
|
2985
3000
|
flex-shrink: 0;
|
|
2986
3001
|
color: var(--header-content-sort-icon-color);
|
|
2987
3002
|
}
|
|
2988
|
-
.bms-table__table th .header-content-helper[data-v-
|
|
3003
|
+
.bms-table__table th .header-content-helper[data-v-c883a5f1] {
|
|
2989
3004
|
display: flex;
|
|
2990
3005
|
align-items: center;
|
|
2991
3006
|
flex-shrink: 0;
|
|
2992
3007
|
color: light-dark(var(--bms-grey-100), var(--bms-font-color));
|
|
2993
3008
|
}
|
|
2994
|
-
.bms-table__footer[data-v-
|
|
3009
|
+
.bms-table__footer[data-v-c883a5f1] {
|
|
2995
3010
|
padding-top: 16px;
|
|
2996
3011
|
}
|
|
2997
|
-
.bms-table .
|
|
3012
|
+
.bms-table .drag-handle-header[data-v-c883a5f1] {
|
|
3013
|
+
width: 2em;
|
|
3014
|
+
}
|
|
3015
|
+
.bms-table[data-v-c883a5f1] .bms-table__row--drag-insert-before td {
|
|
3016
|
+
border-top: 2px solid var(--bms-main-100);
|
|
3017
|
+
}
|
|
3018
|
+
.bms-table[data-v-c883a5f1] .bms-table__row--drag-insert-after td {
|
|
3019
|
+
border-bottom: 2px solid var(--bms-main-100);
|
|
3020
|
+
}
|
|
3021
|
+
.bms-table .blob[data-v-c883a5f1] {
|
|
2998
3022
|
visibility: hidden;
|
|
2999
3023
|
--table-blob-height: 80px;
|
|
3000
3024
|
}
|
|
3001
|
-
.bms-table .blob.small[data-v-
|
|
3025
|
+
.bms-table .blob.small[data-v-c883a5f1], .bms-table .blob.dense[data-v-c883a5f1] {
|
|
3002
3026
|
--table-blob-height: 50px;
|
|
3003
3027
|
}
|
|
3004
|
-
.bms-table .blob[data-v-
|
|
3028
|
+
.bms-table .blob[data-v-c883a5f1] {
|
|
3005
3029
|
width: 200px;
|
|
3006
3030
|
height: var(--table-blob-height);
|
|
3007
3031
|
background-color: var(--bms-main-50);
|
|
@@ -3010,29 +3034,29 @@ nav .additional[data-v-43dce565] {
|
|
|
3010
3034
|
z-index: -5;
|
|
3011
3035
|
filter: blur(20px);
|
|
3012
3036
|
}
|
|
3013
|
-
[data-v-
|
|
3037
|
+
[data-v-c883a5f1] table {
|
|
3014
3038
|
padding: 0 var(--dynamic-border-height);
|
|
3015
3039
|
}
|
|
3016
|
-
[data-v-
|
|
3040
|
+
[data-v-c883a5f1] table th:first-child {
|
|
3017
3041
|
border-top-left-radius: var(--table-cell-radius);
|
|
3018
3042
|
}
|
|
3019
|
-
[data-v-
|
|
3043
|
+
[data-v-c883a5f1] table th:last-child {
|
|
3020
3044
|
border-top-right-radius: var(--table-cell-radius);
|
|
3021
3045
|
}
|
|
3022
|
-
[data-v-
|
|
3046
|
+
[data-v-c883a5f1] table tr:last-child td:first-child {
|
|
3023
3047
|
border-bottom-left-radius: var(--table-cell-radius);
|
|
3024
3048
|
}
|
|
3025
|
-
[data-v-
|
|
3049
|
+
[data-v-c883a5f1] table tr:last-child td:last-child {
|
|
3026
3050
|
border-bottom-right-radius: var(--table-cell-radius);
|
|
3027
3051
|
}
|
|
3028
|
-
[data-v-
|
|
3052
|
+
[data-v-c883a5f1] table th {
|
|
3029
3053
|
background-color: var(--bms-white);
|
|
3030
3054
|
}
|
|
3031
|
-
[data-v-
|
|
3055
|
+
[data-v-c883a5f1] table tbody {
|
|
3032
3056
|
overflow: hidden;
|
|
3033
3057
|
background: var(--bms-white);
|
|
3034
3058
|
}
|
|
3035
|
-
[data-v-
|
|
3059
|
+
[data-v-c883a5f1] table tbody tr {
|
|
3036
3060
|
position: relative;
|
|
3037
3061
|
}.filter-button-container[data-v-36a9eb9a] {
|
|
3038
3062
|
position: relative;
|
|
@@ -3116,7 +3140,7 @@ nav .additional[data-v-43dce565] {
|
|
|
3116
3140
|
padding-right: 32px;
|
|
3117
3141
|
}.table-search[data-v-c674a0d1] {
|
|
3118
3142
|
width: 260px;
|
|
3119
|
-
}.table-search[data-v-
|
|
3143
|
+
}.table-search[data-v-9ae7d971] {
|
|
3120
3144
|
width: 260px;
|
|
3121
3145
|
}.cocarde[data-v-f48ea977] {
|
|
3122
3146
|
display: flex;
|