@ouestfrance/sipa-bms-ui 8.1.3 → 8.2.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/form/BmsMultiSelect.vue.d.ts +29 -0
- package/dist/components/form/BmsSelect.vue.d.ts +15 -4
- package/dist/components/table/BmsServerTable.vue.d.ts +2 -2
- package/dist/components/table/UiBmsTable.vue.d.ts +8 -4
- package/dist/components/table/UiBmsTableRow.vue.d.ts +38 -0
- package/dist/composables/search.composable.d.ts +2 -2
- package/dist/index.d.ts +2 -1
- package/dist/mockServiceWorker.js +1 -1
- package/dist/models/table.model.d.ts +2 -1
- package/dist/sipa-bms-ui.css +115 -56
- package/dist/sipa-bms-ui.es.js +1677 -1452
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +1682 -1456
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +10 -10
- package/src/components/form/BmsMultiSelect.stories.js +82 -0
- package/src/components/form/BmsMultiSelect.vue +140 -0
- package/src/components/form/BmsSelect.vue +30 -25
- package/src/components/table/BmsTable.stories.js +113 -0
- package/src/components/table/UiBmsTable.stories.js +41 -0
- package/src/components/table/UiBmsTable.vue +68 -71
- package/src/components/table/UiBmsTableRow.stories.js +143 -0
- package/src/components/table/UiBmsTableRow.vue +150 -0
- package/src/index.ts +3 -0
- package/src/models/table.model.ts +2 -1
- package/src/showroom/pages/forms.vue +23 -1
- package/src/showroom/pages/table.vue +30 -5
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Caption, InputOption } from '../../models';
|
|
2
|
+
export interface Props {
|
|
3
|
+
options: InputOption[];
|
|
4
|
+
label?: string;
|
|
5
|
+
errors?: string[] | Caption[];
|
|
6
|
+
captions?: string[] | Caption[];
|
|
7
|
+
required?: boolean;
|
|
8
|
+
optional?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
helperText?: string;
|
|
11
|
+
placeholder?: string;
|
|
12
|
+
}
|
|
13
|
+
type __VLS_Props = Props;
|
|
14
|
+
type __VLS_PublicProps = {
|
|
15
|
+
'modelValue': InputOption[];
|
|
16
|
+
'open'?: boolean;
|
|
17
|
+
} & __VLS_Props;
|
|
18
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: InputOption[]) => any;
|
|
20
|
+
"update:open": (value: boolean) => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
+
"onUpdate:modelValue"?: ((value: InputOption[]) => any) | undefined;
|
|
23
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
label: string;
|
|
26
|
+
required: boolean;
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
export default _default;
|
|
@@ -10,25 +10,36 @@ export interface Props {
|
|
|
10
10
|
disabled?: boolean;
|
|
11
11
|
helperText?: string;
|
|
12
12
|
placeholder?: string;
|
|
13
|
-
open?: boolean;
|
|
14
13
|
}
|
|
15
14
|
type __VLS_Props = Props;
|
|
16
15
|
type __VLS_PublicProps = {
|
|
17
16
|
'modelValue': any;
|
|
17
|
+
'open'?: boolean;
|
|
18
18
|
} & __VLS_Props;
|
|
19
|
-
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_PublicProps, {
|
|
20
20
|
setFocus: () => void;
|
|
21
21
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
22
|
"update:modelValue": (value: any) => any;
|
|
23
|
+
"update:open": (value: boolean) => any;
|
|
23
24
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
25
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
26
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
25
27
|
}>, {
|
|
26
28
|
label: string;
|
|
27
29
|
required: boolean;
|
|
28
30
|
disabled: boolean;
|
|
29
|
-
open: boolean;
|
|
30
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
32
|
selectWrapper: HTMLSpanElement;
|
|
32
33
|
selectInput: HTMLInputElement;
|
|
33
|
-
}, any
|
|
34
|
+
}, any>, {
|
|
35
|
+
input?(_: {}): any;
|
|
36
|
+
option?(_: {
|
|
37
|
+
option: any;
|
|
38
|
+
}): any;
|
|
39
|
+
}>;
|
|
34
40
|
export default _default;
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -47,11 +47,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
47
47
|
}>, {
|
|
48
48
|
mode: "normal" | "dense";
|
|
49
49
|
size: number;
|
|
50
|
+
selectedItems: unknown[];
|
|
50
51
|
selectable: boolean;
|
|
52
|
+
selectMode: SelectMode;
|
|
51
53
|
selectableDisabled: boolean;
|
|
52
|
-
selectedItems: unknown[];
|
|
53
54
|
maxSelectedSize: number;
|
|
54
|
-
selectMode: SelectMode;
|
|
55
55
|
pagination: number[];
|
|
56
56
|
canSaveFilters: boolean;
|
|
57
57
|
filters: Filter[];
|
|
@@ -33,9 +33,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
33
33
|
}>, {
|
|
34
34
|
sort: Sort;
|
|
35
35
|
mode: "normal" | "dense";
|
|
36
|
-
hasFilters: boolean;
|
|
37
36
|
selectable: boolean;
|
|
37
|
+
selectMode: SelectMode;
|
|
38
38
|
selectableDisabled: boolean;
|
|
39
|
+
hasFilters: boolean;
|
|
39
40
|
maxSelectedSize: number;
|
|
40
41
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
41
42
|
blob: HTMLDivElement;
|
|
@@ -43,9 +44,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
43
44
|
thead: HTMLTableSectionElement;
|
|
44
45
|
pagination: HTMLDivElement;
|
|
45
46
|
}, HTMLDivElement>, Partial<Record<string, (_: {
|
|
46
|
-
row:
|
|
47
|
+
row: any;
|
|
48
|
+
isChildElement: false | undefined;
|
|
47
49
|
}) => any>> & Partial<Record<string, (_: {
|
|
48
|
-
row:
|
|
50
|
+
row: any;
|
|
51
|
+
isChildElement: false | undefined;
|
|
49
52
|
}) => any>> & {
|
|
50
53
|
'custom-actions'?(_: {}): any;
|
|
51
54
|
'saved-filters'?(_: {}): any;
|
|
@@ -53,8 +56,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
53
56
|
filters?(_: {}): any;
|
|
54
57
|
'alert-action'?(_: {}): any;
|
|
55
58
|
default?(_: {
|
|
56
|
-
row:
|
|
59
|
+
row: any;
|
|
57
60
|
}): any;
|
|
61
|
+
'child-element'?(_: {}): any;
|
|
58
62
|
empty?(_: {}): any;
|
|
59
63
|
pagination?(_: {}): any;
|
|
60
64
|
}>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { SelectMode, TableHeader } from '../../models';
|
|
2
|
+
interface Props {
|
|
3
|
+
item: any;
|
|
4
|
+
selectedItems: any[];
|
|
5
|
+
selectable: boolean;
|
|
6
|
+
headers: TableHeader[];
|
|
7
|
+
selectMode: SelectMode;
|
|
8
|
+
selectableDisabled?: boolean;
|
|
9
|
+
dense?: boolean;
|
|
10
|
+
isChildElement?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
select: (item: any) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
15
|
+
onSelect?: ((item: any) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
dense: boolean;
|
|
18
|
+
selectableDisabled: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLTableRowElement>, Partial<Record<string, (_: {
|
|
20
|
+
row: any;
|
|
21
|
+
isChildElement: true;
|
|
22
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
23
|
+
row: any;
|
|
24
|
+
isChildElement: false | undefined;
|
|
25
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
26
|
+
row: any;
|
|
27
|
+
isChildElement: false | undefined;
|
|
28
|
+
}) => any>> & {
|
|
29
|
+
default?(_: {
|
|
30
|
+
row: any;
|
|
31
|
+
}): any;
|
|
32
|
+
}>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -5,7 +5,7 @@ export declare const useSearch: (persistent?: boolean | Ref<boolean>, defaultFil
|
|
|
5
5
|
reflect: Ref<boolean, boolean>;
|
|
6
6
|
filters: Ref<{
|
|
7
7
|
label: string;
|
|
8
|
-
inputType?:
|
|
8
|
+
inputType?: import('../models').InputType | undefined;
|
|
9
9
|
key: string;
|
|
10
10
|
type: import('../models').FilterType;
|
|
11
11
|
value?: any;
|
|
@@ -22,7 +22,7 @@ export declare const useSearch: (persistent?: boolean | Ref<boolean>, defaultFil
|
|
|
22
22
|
customFilter?: Function | undefined;
|
|
23
23
|
}[], Filter[] | {
|
|
24
24
|
label: string;
|
|
25
|
-
inputType?:
|
|
25
|
+
inputType?: import('../models').InputType | undefined;
|
|
26
26
|
key: string;
|
|
27
27
|
type: import('../models').FilterType;
|
|
28
28
|
value?: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ import { default as BmsInputRadioCaption } from './components/form/BmsInputRadio
|
|
|
25
25
|
import { default as BmsInputRadioCaptionGroup } from './components/form/BmsInputRadioCaptionGroup.vue';
|
|
26
26
|
import { default as BmsInputText } from './components/form/BmsInputText.vue';
|
|
27
27
|
import { default as BmsInputToggle } from './components/form/BmsInputToggle.vue';
|
|
28
|
+
import { default as BmsMultiSelect } from './components/form/BmsMultiSelect.vue';
|
|
28
29
|
import { default as BmsSearch } from './components/form/BmsSearch.vue';
|
|
29
30
|
import { default as BmsSelect } from './components/form/BmsSelect.vue';
|
|
30
31
|
import { default as BmsTag } from './components/form/BmsTag.vue';
|
|
@@ -69,4 +70,4 @@ export * from './plugins/confirm';
|
|
|
69
70
|
export * from './plugins/runtime-env';
|
|
70
71
|
export * from './plugins/router-history';
|
|
71
72
|
export * from './services';
|
|
72
|
-
export { BmsButton, BmsIconButton, BmsAlert, BmsBadge, BmsCaption, BmsCircularProgress, BmsLoader, BmsTooltip, BmsAutocomplete, BmsBetweenInput, BmsChip, BmsFilePicker, BmsInputBooleanCheckbox, BmsInputCheckboxGroup, BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup, BmsInputCode, BmsInputDateTime, BmsInputFile, BmsInputNumber, BmsInputRadio, BmsInputRadioGroup, BmsInputRadioCaption, BmsInputRadioCaptionGroup, BmsInputText, BmsInputToggle, BmsSearch, BmsSelect, BmsTag, BmsTextArea, BmsContentPageLayout, BmsCard, BmsForm, BmsHeader, BmsHeaderTitle, BmsModal, BmsOverlay, BmsSection, BmsStep, BmsStepper, BmsBackButton, BmsBreadcrumb, BmsLink, BmsMenu, BmsMenuNav, BmsShortLinkMenu, BmsTabs, BmsTenantSwitcher, BmsDraggableList, BmsEmptyScreen, BmsPagination, BmsServerTable, BmsTable, BmsCocarde, BmsProblem, BmsRelativeTime, };
|
|
73
|
+
export { BmsButton, BmsIconButton, BmsAlert, BmsBadge, BmsCaption, BmsCircularProgress, BmsLoader, BmsTooltip, BmsAutocomplete, BmsBetweenInput, BmsChip, BmsFilePicker, BmsInputBooleanCheckbox, BmsInputCheckboxGroup, BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup, BmsInputCode, BmsInputDateTime, BmsInputFile, BmsInputNumber, BmsInputRadio, BmsInputRadioGroup, BmsInputRadioCaption, BmsInputRadioCaptionGroup, BmsInputText, BmsInputToggle, BmsMultiSelect, BmsSearch, BmsSelect, BmsTag, BmsTextArea, BmsContentPageLayout, BmsCard, BmsForm, BmsHeader, BmsHeaderTitle, BmsModal, BmsOverlay, BmsSection, BmsStep, BmsStepper, BmsBackButton, BmsBreadcrumb, BmsLink, BmsMenu, BmsMenuNav, BmsShortLinkMenu, BmsTabs, BmsTenantSwitcher, BmsDraggableList, BmsEmptyScreen, BmsPagination, BmsServerTable, BmsTable, BmsCocarde, BmsProblem, BmsRelativeTime, };
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* - Please do NOT modify this file.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
const PACKAGE_VERSION = '2.10.
|
|
10
|
+
const PACKAGE_VERSION = '2.10.3'
|
|
11
11
|
const INTEGRITY_CHECKSUM = 'f5825c521429caf22a4dd13b66e243af'
|
|
12
12
|
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
|
|
13
13
|
const activeClientIds = new Set()
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { InputType } from './form.model';
|
|
1
2
|
import { Sort, SortFunction } from './sort.model';
|
|
2
3
|
export interface TableHeader {
|
|
3
4
|
label: string;
|
|
@@ -20,7 +21,7 @@ export interface ServerTableRequestParams {
|
|
|
20
21
|
export type FilterType = 'select' | 'input' | 'inputDate' | 'boolean' | 'autocomplete' | 'betweenNumber' | 'betweenDate' | 'betweenDateTime';
|
|
21
22
|
export interface Filter {
|
|
22
23
|
label: string;
|
|
23
|
-
inputType?:
|
|
24
|
+
inputType?: InputType;
|
|
24
25
|
key: string;
|
|
25
26
|
type: FilterType;
|
|
26
27
|
value?: any;
|
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -1083,61 +1083,60 @@ input[type=radio][data-v-cb26402d]:checked::before {
|
|
|
1083
1083
|
}
|
|
1084
1084
|
.input-toggle[data-v-2d2ac60e]:hover {
|
|
1085
1085
|
cursor: var(--cursor);
|
|
1086
|
-
}.
|
|
1087
|
-
cursor: pointer;
|
|
1088
|
-
}.field__input[data-v-32aead3c] {
|
|
1086
|
+
}.field__input[data-v-c57d6d77] {
|
|
1089
1087
|
--field-border-color: var(--bms-grey-50);
|
|
1090
1088
|
--field-border-color-active: var(--bms-main-100);
|
|
1091
1089
|
--input-background-color: var(--bms-white);
|
|
1092
1090
|
}
|
|
1093
|
-
.field__input .select-wrapper[data-v-
|
|
1091
|
+
.field__input .select-wrapper[data-v-c57d6d77] {
|
|
1094
1092
|
width: 100%;
|
|
1095
|
-
padding: 0;
|
|
1093
|
+
padding: 0 0 0 1em;
|
|
1096
1094
|
margin: 0.5em 0;
|
|
1097
1095
|
border-radius: var(--bms-border-radius);
|
|
1098
1096
|
border: 1px solid var(--field-border-color);
|
|
1099
1097
|
background-color: var(--input-background-color);
|
|
1100
|
-
height: 48px;
|
|
1098
|
+
min-height: 48px;
|
|
1101
1099
|
display: flex;
|
|
1102
1100
|
align-items: center;
|
|
1101
|
+
justify-content: space-between;
|
|
1103
1102
|
}
|
|
1104
|
-
.field__input .select-wrapper .icon-down-container[data-v-
|
|
1103
|
+
.field__input .select-wrapper .icon-down-container[data-v-c57d6d77] {
|
|
1105
1104
|
height: 100%;
|
|
1106
1105
|
display: flex;
|
|
1107
1106
|
align-items: center;
|
|
1108
1107
|
}
|
|
1109
|
-
.field__input .select-wrapper .icon-down-container[data-v-
|
|
1108
|
+
.field__input .select-wrapper .icon-down-container[data-v-c57d6d77]:hover {
|
|
1110
1109
|
cursor: pointer;
|
|
1111
1110
|
}
|
|
1112
|
-
.field__input .select-wrapper .icon-down-button[data-v-
|
|
1111
|
+
.field__input .select-wrapper .icon-down-button[data-v-c57d6d77] {
|
|
1113
1112
|
width: 1em;
|
|
1114
1113
|
margin: 0 1em 0 0.5em;
|
|
1115
1114
|
display: block;
|
|
1116
1115
|
}
|
|
1117
|
-
.field__input .select-wrapper[data-v-
|
|
1116
|
+
.field__input .select-wrapper[data-v-c57d6d77]:hover {
|
|
1118
1117
|
--field-border-color: var(--bms-grey-100);
|
|
1119
1118
|
}
|
|
1120
|
-
.field__input .select-wrapper[data-v-
|
|
1119
|
+
.field__input .select-wrapper[data-v-c57d6d77]:has(input:focus) {
|
|
1121
1120
|
--field-border-color: var(--field-border-color-active);
|
|
1122
1121
|
}
|
|
1123
|
-
.field__input .select-wrapper.is-error[data-v-
|
|
1122
|
+
.field__input .select-wrapper.is-error[data-v-c57d6d77] {
|
|
1124
1123
|
--field-border-color: var(--bms-red-100);
|
|
1125
1124
|
--input-background-color: var(--bms-red-25);
|
|
1126
1125
|
}
|
|
1127
|
-
.field__input .select-wrapper.is-disabled[data-v-
|
|
1126
|
+
.field__input .select-wrapper.is-disabled[data-v-c57d6d77] {
|
|
1128
1127
|
--field-border-color: var(--bms-grey-25);
|
|
1129
1128
|
--input-background-color: var(--bms-grey-25);
|
|
1130
1129
|
pointer-events: none;
|
|
1131
1130
|
}
|
|
1132
|
-
.field__input .select-wrapper input[data-v-
|
|
1131
|
+
.field__input .select-wrapper input[data-v-c57d6d77] {
|
|
1133
1132
|
border: none;
|
|
1134
1133
|
background-color: transparent;
|
|
1135
1134
|
caret-color: transparent;
|
|
1136
1135
|
cursor: pointer;
|
|
1137
1136
|
outline: none;
|
|
1138
1137
|
appearance: none;
|
|
1139
|
-
padding: 0 0 0 1em;
|
|
1140
1138
|
margin: 0;
|
|
1139
|
+
padding: 0;
|
|
1141
1140
|
font: inherit;
|
|
1142
1141
|
color: inherit;
|
|
1143
1142
|
height: 24px;
|
|
@@ -1205,6 +1204,33 @@ input[type=radio][data-v-cb26402d]:checked::before {
|
|
|
1205
1204
|
}
|
|
1206
1205
|
.tag .dismiss-button[data-v-3c04a9f9] .bms-button:hover {
|
|
1207
1206
|
background-color: var(--tag-background-color);
|
|
1207
|
+
}.tags[data-v-a6e4687c] {
|
|
1208
|
+
display: flex;
|
|
1209
|
+
gap: 0.5em;
|
|
1210
|
+
padding: 10px 0;
|
|
1211
|
+
flex-wrap: wrap;
|
|
1212
|
+
width: 100%;
|
|
1213
|
+
}
|
|
1214
|
+
.tags .search[data-v-a6e4687c] {
|
|
1215
|
+
outline: none;
|
|
1216
|
+
border: none;
|
|
1217
|
+
background-color: transparent;
|
|
1218
|
+
flex-grow: 1;
|
|
1219
|
+
}
|
|
1220
|
+
.icon-container[data-v-a6e4687c] {
|
|
1221
|
+
height: 100%;
|
|
1222
|
+
display: flex;
|
|
1223
|
+
align-items: center;
|
|
1224
|
+
}
|
|
1225
|
+
.icon-container[data-v-a6e4687c]:hover {
|
|
1226
|
+
cursor: pointer;
|
|
1227
|
+
}
|
|
1228
|
+
.icon-button[data-v-a6e4687c] {
|
|
1229
|
+
width: 1em;
|
|
1230
|
+
margin: 0 1em 0 0.5em;
|
|
1231
|
+
display: block;
|
|
1232
|
+
}.clean-icon[data-v-66c267f2]:hover {
|
|
1233
|
+
cursor: pointer;
|
|
1208
1234
|
}.field__input textarea[data-v-ec1c11a0] {
|
|
1209
1235
|
display: flex;
|
|
1210
1236
|
align-items: center;
|
|
@@ -2067,13 +2093,48 @@ nav .additional[data-v-f1abaa99] {
|
|
|
2067
2093
|
.bms-pagination__select[data-v-e10f3b80] .field__wrapper {
|
|
2068
2094
|
min-width: 10em;
|
|
2069
2095
|
width: 10em;
|
|
2070
|
-
}.bms-
|
|
2096
|
+
}.bms-table__row[data-v-e0f602cf] {
|
|
2097
|
+
--table-cell-padding: 1em;
|
|
2098
|
+
background-color: rgb(255, 255, 255);
|
|
2099
|
+
}
|
|
2100
|
+
.bms-table__row td[data-v-e0f602cf] {
|
|
2101
|
+
padding: var(--table-cell-padding);
|
|
2102
|
+
background-color: rgb(255, 255, 255);
|
|
2103
|
+
}
|
|
2104
|
+
.bms-table__row--dense[data-v-e0f602cf] {
|
|
2105
|
+
--table-cell-padding: 0.5em 1em;
|
|
2106
|
+
}
|
|
2107
|
+
.bms-table__row--selected td[data-v-e0f602cf] {
|
|
2108
|
+
background-color: var(--bms-main-10);
|
|
2109
|
+
}
|
|
2110
|
+
.bms-table__row--disabled td[data-v-e0f602cf] {
|
|
2111
|
+
color: var(--bms-grey-50);
|
|
2112
|
+
}
|
|
2113
|
+
.bms-table__row__cell__checkbox[data-v-e0f602cf] {
|
|
2114
|
+
width: 4em;
|
|
2115
|
+
}
|
|
2116
|
+
.bms-table__row__cell--action[data-v-e0f602cf] {
|
|
2117
|
+
display: flex;
|
|
2118
|
+
justify-content: end;
|
|
2119
|
+
}
|
|
2120
|
+
.bms-table__row__cell--empty[data-v-e0f602cf] {
|
|
2121
|
+
height: 360px;
|
|
2122
|
+
}
|
|
2123
|
+
.bms-table__row__cell--child-element[data-v-e0f602cf] {
|
|
2124
|
+
display: inline-flex;
|
|
2125
|
+
align-items: flex-end;
|
|
2126
|
+
}
|
|
2127
|
+
.bms-table__row__cell--child-element__icon[data-v-e0f602cf] {
|
|
2128
|
+
display: flex;
|
|
2129
|
+
min-width: 1em;
|
|
2130
|
+
margin-right: 1em;
|
|
2131
|
+
}.bms-table[data-v-9cbfc981] {
|
|
2071
2132
|
--table-cell-padding: 1em;
|
|
2072
2133
|
--table-cell-radius: var(--bms-border-radius-large);
|
|
2073
2134
|
--dynamic-border-height: 2px;
|
|
2074
2135
|
--table-border: 1px solid var(--bms-grey-10);
|
|
2075
2136
|
}
|
|
2076
|
-
.bms-table__loader[data-v-
|
|
2137
|
+
.bms-table__loader[data-v-9cbfc981] {
|
|
2077
2138
|
position: absolute;
|
|
2078
2139
|
background: rgba(255, 255, 255, 0.72);
|
|
2079
2140
|
inset: 0;
|
|
@@ -2083,103 +2144,103 @@ nav .additional[data-v-f1abaa99] {
|
|
|
2083
2144
|
font-size: 3em;
|
|
2084
2145
|
z-index: 10;
|
|
2085
2146
|
}
|
|
2086
|
-
.bms-table__actions[data-v-
|
|
2147
|
+
.bms-table__actions[data-v-9cbfc981] {
|
|
2087
2148
|
display: flex;
|
|
2088
2149
|
align-items: center;
|
|
2089
2150
|
justify-content: space-between;
|
|
2090
2151
|
margin-bottom: 16px;
|
|
2091
2152
|
}
|
|
2092
|
-
.bms-table__actions__saved-filters[data-v-
|
|
2153
|
+
.bms-table__actions__saved-filters[data-v-9cbfc981] {
|
|
2093
2154
|
display: flex;
|
|
2094
2155
|
align-items: center;
|
|
2095
2156
|
flex-wrap: wrap;
|
|
2096
2157
|
gap: 1em;
|
|
2097
2158
|
}
|
|
2098
|
-
.bms-table__actions__search[data-v-
|
|
2159
|
+
.bms-table__actions__search[data-v-9cbfc981] {
|
|
2099
2160
|
display: flex;
|
|
2100
2161
|
align-items: center;
|
|
2101
2162
|
gap: 1em;
|
|
2102
2163
|
}
|
|
2103
|
-
.bms-table__actions__custom[data-v-
|
|
2164
|
+
.bms-table__actions__custom[data-v-9cbfc981] {
|
|
2104
2165
|
display: flex;
|
|
2105
2166
|
gap: 1em;
|
|
2106
2167
|
}
|
|
2107
|
-
.bms-table__actions__custom[data-v-
|
|
2168
|
+
.bms-table__actions__custom[data-v-9cbfc981]:empty {
|
|
2108
2169
|
display: none;
|
|
2109
2170
|
}
|
|
2110
|
-
.bms-table__selected[data-v-
|
|
2171
|
+
.bms-table__selected[data-v-9cbfc981] {
|
|
2111
2172
|
margin-bottom: 1em;
|
|
2112
2173
|
}
|
|
2113
|
-
.bms-table__selected .select-mode-all[data-v-
|
|
2174
|
+
.bms-table__selected .select-mode-all[data-v-9cbfc981] {
|
|
2114
2175
|
cursor: pointer;
|
|
2115
2176
|
color: var(--bms-main-100);
|
|
2116
2177
|
}
|
|
2117
|
-
.bms-table__cell__checkbox[data-v-
|
|
2178
|
+
.bms-table__cell__checkbox[data-v-9cbfc981] {
|
|
2118
2179
|
width: 4em;
|
|
2119
2180
|
}
|
|
2120
|
-
.bms-table__cell--action[data-v-
|
|
2181
|
+
.bms-table__cell--action[data-v-9cbfc981] {
|
|
2121
2182
|
display: flex;
|
|
2122
2183
|
justify-content: end;
|
|
2123
2184
|
}
|
|
2124
|
-
.bms-table__cell--empty[data-v-
|
|
2185
|
+
.bms-table__cell--empty[data-v-9cbfc981] {
|
|
2125
2186
|
height: 360px;
|
|
2126
2187
|
}
|
|
2127
|
-
.bms-table__table[data-v-
|
|
2188
|
+
.bms-table__table[data-v-9cbfc981] {
|
|
2128
2189
|
width: 100%;
|
|
2129
2190
|
border-spacing: 0 var(--dynamic-border-height);
|
|
2130
2191
|
border-radius: var(--bms-border-radius-large);
|
|
2131
2192
|
border: var(--table-border);
|
|
2132
2193
|
position: relative;
|
|
2133
2194
|
}
|
|
2134
|
-
.bms-table__table-wrapper[data-v-
|
|
2195
|
+
.bms-table__table-wrapper[data-v-9cbfc981] {
|
|
2135
2196
|
position: relative;
|
|
2136
2197
|
}
|
|
2137
|
-
.bms-table__table thead[data-v-
|
|
2198
|
+
.bms-table__table thead[data-v-9cbfc981] {
|
|
2138
2199
|
position: sticky;
|
|
2139
2200
|
z-index: 2;
|
|
2140
2201
|
top: var(--header-height, 0);
|
|
2141
2202
|
}
|
|
2142
|
-
.bms-table__table--dense[data-v-
|
|
2203
|
+
.bms-table__table--dense[data-v-9cbfc981] {
|
|
2143
2204
|
--table-cell-padding: 0.5em 1em;
|
|
2144
2205
|
}
|
|
2145
|
-
.bms-table__table[data-v-
|
|
2206
|
+
.bms-table__table[data-v-9cbfc981] tr td {
|
|
2146
2207
|
padding: var(--table-cell-padding);
|
|
2147
2208
|
}
|
|
2148
|
-
.bms-table__table[data-v-
|
|
2209
|
+
.bms-table__table th[data-v-9cbfc981] {
|
|
2149
2210
|
--header-content-sort-icon-color: var(--bms-grey-25);
|
|
2150
2211
|
--header-content-justify: start;
|
|
2151
2212
|
width: var(--table-cell-width, auto);
|
|
2152
2213
|
padding: var(--table-cell-padding);
|
|
2153
2214
|
}
|
|
2154
|
-
.bms-table__table[data-v-
|
|
2215
|
+
.bms-table__table th.sortable[data-v-9cbfc981]:hover {
|
|
2155
2216
|
--header-content-sort-icon-color: var(--bms-grey-100);
|
|
2156
2217
|
cursor: pointer;
|
|
2157
2218
|
}
|
|
2158
|
-
.bms-table__table
|
|
2219
|
+
.bms-table__table th.u-text-align-start[data-v-9cbfc981] {
|
|
2159
2220
|
--header-content-justify: start;
|
|
2160
2221
|
}
|
|
2161
|
-
.bms-table__table
|
|
2222
|
+
.bms-table__table th.u-text-align-center[data-v-9cbfc981] {
|
|
2162
2223
|
--header-content-justify: center;
|
|
2163
2224
|
}
|
|
2164
|
-
.bms-table__table
|
|
2225
|
+
.bms-table__table th.u-text-align-end[data-v-9cbfc981] {
|
|
2165
2226
|
--header-content-justify: end;
|
|
2166
2227
|
}
|
|
2167
|
-
.bms-table__table[data-v-
|
|
2228
|
+
.bms-table__table th.sorted[data-v-9cbfc981] {
|
|
2168
2229
|
--header-content-sort-icon-color: var(--bms-grey-100);
|
|
2169
2230
|
}
|
|
2170
|
-
.bms-table__table
|
|
2231
|
+
.bms-table__table th .header-content[data-v-9cbfc981] {
|
|
2171
2232
|
display: flex;
|
|
2172
2233
|
align-items: center;
|
|
2173
2234
|
justify-content: var(--header-content-justify);
|
|
2174
2235
|
gap: 0.5em;
|
|
2175
2236
|
}
|
|
2176
|
-
.bms-table__table
|
|
2237
|
+
.bms-table__table th .header-content-sort[data-v-9cbfc981] {
|
|
2177
2238
|
color: var(--header-content-sort-icon-color);
|
|
2178
2239
|
}
|
|
2179
|
-
.bms-table__footer[data-v-
|
|
2240
|
+
.bms-table__footer[data-v-9cbfc981] {
|
|
2180
2241
|
padding-top: 16px;
|
|
2181
2242
|
}
|
|
2182
|
-
.bms-table .blob[data-v-
|
|
2243
|
+
.bms-table .blob[data-v-9cbfc981] {
|
|
2183
2244
|
visibility: hidden;
|
|
2184
2245
|
--table-blob-height: 80px;
|
|
2185
2246
|
width: 200px;
|
|
@@ -2190,41 +2251,39 @@ nav .additional[data-v-f1abaa99] {
|
|
|
2190
2251
|
z-index: -5;
|
|
2191
2252
|
filter: blur(20px);
|
|
2192
2253
|
}
|
|
2193
|
-
.bms-table .blob.dense[data-v-
|
|
2254
|
+
.bms-table .blob.dense[data-v-9cbfc981] {
|
|
2194
2255
|
--table-blob-height: 50px;
|
|
2195
2256
|
}
|
|
2196
|
-
[data-v-
|
|
2257
|
+
[data-v-9cbfc981] table {
|
|
2197
2258
|
padding: 0 var(--dynamic-border-height);
|
|
2198
2259
|
}
|
|
2199
|
-
[data-v-
|
|
2260
|
+
[data-v-9cbfc981] table th:first-child {
|
|
2200
2261
|
border-top-left-radius: var(--table-cell-radius);
|
|
2201
2262
|
}
|
|
2202
|
-
[data-v-
|
|
2263
|
+
[data-v-9cbfc981] table .stuck th:first-child {
|
|
2203
2264
|
border-top-left-radius: 0;
|
|
2204
2265
|
}
|
|
2205
|
-
[data-v-
|
|
2266
|
+
[data-v-9cbfc981] table .stuck th:last-child {
|
|
2206
2267
|
border-top-right-radius: 0;
|
|
2207
2268
|
}
|
|
2208
|
-
[data-v-
|
|
2269
|
+
[data-v-9cbfc981] table th:last-child {
|
|
2209
2270
|
border-top-right-radius: var(--table-cell-radius);
|
|
2210
2271
|
}
|
|
2211
|
-
[data-v-
|
|
2272
|
+
[data-v-9cbfc981] table tr:last-child td:first-child {
|
|
2212
2273
|
border-bottom-left-radius: var(--table-cell-radius);
|
|
2213
2274
|
}
|
|
2214
|
-
[data-v-
|
|
2275
|
+
[data-v-9cbfc981] table tr:last-child td:last-child {
|
|
2215
2276
|
border-bottom-right-radius: var(--table-cell-radius);
|
|
2216
2277
|
}
|
|
2217
|
-
[data-v-
|
|
2278
|
+
[data-v-9cbfc981] table th {
|
|
2218
2279
|
background-color: rgb(255, 255, 255);
|
|
2219
2280
|
}
|
|
2220
|
-
[data-v-
|
|
2281
|
+
[data-v-9cbfc981] table tbody {
|
|
2221
2282
|
overflow: hidden;
|
|
2283
|
+
background: white;
|
|
2222
2284
|
}
|
|
2223
|
-
[data-v-
|
|
2285
|
+
[data-v-9cbfc981] table tbody tr {
|
|
2224
2286
|
position: relative;
|
|
2225
|
-
}
|
|
2226
|
-
[data-v-54404d98] table tbody tr.selected td {
|
|
2227
|
-
background-color: var(--bms-main-10);
|
|
2228
2287
|
}.filter-button-container[data-v-6047ada7] {
|
|
2229
2288
|
position: relative;
|
|
2230
2289
|
}
|