@ouestfrance/sipa-bms-ui 8.30.0 → 8.31.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/BmsCombobox.vue.d.ts +1 -0
- package/dist/components/table/BmsTable.vue.d.ts +1 -2
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/search.helper.d.ts +1 -1
- package/dist/plugins/field/FieldDatalist.vue.d.ts +1 -0
- package/dist/sipa-bms-ui.css +22 -22
- package/dist/sipa-bms-ui.es.js +43 -23
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +43 -22
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/form/BmsCombobox.vue +17 -11
- package/src/components/table/BmsTable.spec.ts +5 -4
- package/src/components/table/BmsTable.vue +4 -9
- package/src/composables/index.ts +1 -0
- package/src/composables/search.helper.spec.ts +5 -5
- package/src/composables/search.helper.ts +1 -1
- package/src/plugins/field/FieldDatalist.vue +11 -0
- package/src/showroom/pages/combobox.vue +14 -13
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { defaultSearchFunction } from '../../composables/search.helper';
|
|
2
1
|
import { Filter, SavedFilter, SelectMode, Sort, TableHeader, TableMode } from '../../models';
|
|
3
2
|
interface UiTableProps {
|
|
4
3
|
disableSearch?: boolean;
|
|
@@ -17,7 +16,7 @@ interface UiTableProps {
|
|
|
17
16
|
selectable?: boolean;
|
|
18
17
|
selectableDisabled?: boolean;
|
|
19
18
|
selectMode?: SelectMode.DEFAULT | SelectMode.SINGLE;
|
|
20
|
-
customSearch?: (item: unknown, searchValue: string
|
|
19
|
+
customSearch?: (item: unknown, searchValue: string) => boolean;
|
|
21
20
|
}
|
|
22
21
|
type __VLS_Props = UiTableProps;
|
|
23
22
|
declare const __VLS_defaults: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Filter } from '../models';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const bmsDefaultSearchFilterFunction: (item: unknown, searchValue: string) => boolean;
|
|
3
3
|
export declare const isBetweenFilter: (filter: Filter) => boolean;
|
|
4
4
|
export declare const defaultNumberFilterFunction: (itemNumber: number, search: number, isAfterSearch: boolean) => boolean;
|
|
5
5
|
export declare const defaultIsAfterDateFilterFunction: (dateItem: Date, search: Date, isGreaterThan: boolean) => boolean;
|
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -578,7 +578,7 @@
|
|
|
578
578
|
position: relative;
|
|
579
579
|
display: inline-block;
|
|
580
580
|
outline: none;
|
|
581
|
-
}ul[data-v-
|
|
581
|
+
}ul[data-v-41a0e195] {
|
|
582
582
|
border-style: none;
|
|
583
583
|
border-radius: 0 0 4px 4px;
|
|
584
584
|
text-decoration: none;
|
|
@@ -588,18 +588,18 @@
|
|
|
588
588
|
--field-padding: 0.4em;
|
|
589
589
|
--field-height: 4rem;
|
|
590
590
|
}
|
|
591
|
-
ul li[data-v-
|
|
591
|
+
ul li[data-v-41a0e195]:first-of-type {
|
|
592
592
|
border-top: 1px solid var(--bms-grey-10);
|
|
593
593
|
}
|
|
594
|
-
ul li[data-v-
|
|
594
|
+
ul li[data-v-41a0e195]:first-child {
|
|
595
595
|
border-top-left-radius: var(--bms-border-radius);
|
|
596
596
|
border-top-right-radius: var(--bms-border-radius);
|
|
597
597
|
}
|
|
598
|
-
ul li[data-v-
|
|
598
|
+
ul li[data-v-41a0e195]:last-child {
|
|
599
599
|
border-bottom-left-radius: var(--bms-border-radius);
|
|
600
600
|
border-bottom-right-radius: var(--bms-border-radius);
|
|
601
601
|
}
|
|
602
|
-
ul li[data-v-
|
|
602
|
+
ul li[data-v-41a0e195] {
|
|
603
603
|
display: flex;
|
|
604
604
|
align-items: center;
|
|
605
605
|
cursor: pointer;
|
|
@@ -611,11 +611,11 @@ ul li[data-v-271f00b1] {
|
|
|
611
611
|
word-break: break-word;
|
|
612
612
|
line-break: anywhere;
|
|
613
613
|
}
|
|
614
|
-
ul li.small[data-v-
|
|
614
|
+
ul li.small[data-v-41a0e195] {
|
|
615
615
|
--field-padding: 0.2em 0.4em;
|
|
616
616
|
--field-height: 2rem;
|
|
617
617
|
}
|
|
618
|
-
ul li[data-v-
|
|
618
|
+
ul li[data-v-41a0e195]:hover, ul li.selected[data-v-41a0e195] {
|
|
619
619
|
background-color: var(--bms-grey-10);
|
|
620
620
|
}.input-wrapper[data-v-47a0ec36] {
|
|
621
621
|
display: flex;
|
|
@@ -1361,12 +1361,12 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1361
1361
|
line-height: 1;
|
|
1362
1362
|
width: 100%;
|
|
1363
1363
|
height: 100%;
|
|
1364
|
-
}.select-wrapper[data-v-
|
|
1364
|
+
}.select-wrapper[data-v-1ad08254] {
|
|
1365
1365
|
--field-border-color: var(--bms-grey-50);
|
|
1366
1366
|
--field-border-color-active: var(--bms-main-100);
|
|
1367
1367
|
--input-background-color: var(--bms-white);
|
|
1368
1368
|
}
|
|
1369
|
-
.select-wrapper .select-input[data-v-
|
|
1369
|
+
.select-wrapper .select-input[data-v-1ad08254] {
|
|
1370
1370
|
width: 100%;
|
|
1371
1371
|
padding: 0 0 0 var(--field-padding);
|
|
1372
1372
|
border-radius: var(--bms-border-radius);
|
|
@@ -1377,7 +1377,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1377
1377
|
align-items: center;
|
|
1378
1378
|
justify-content: space-between;
|
|
1379
1379
|
}
|
|
1380
|
-
.select-wrapper .select-input input[data-v-
|
|
1380
|
+
.select-wrapper .select-input input[data-v-1ad08254] {
|
|
1381
1381
|
border: none;
|
|
1382
1382
|
background-color: transparent;
|
|
1383
1383
|
flex-grow: 1;
|
|
@@ -1393,49 +1393,49 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1393
1393
|
width: 100%;
|
|
1394
1394
|
height: 100%;
|
|
1395
1395
|
}
|
|
1396
|
-
.select-wrapper .select-input__tags[data-v-
|
|
1396
|
+
.select-wrapper .select-input__tags[data-v-1ad08254] {
|
|
1397
1397
|
display: flex;
|
|
1398
1398
|
gap: 0.5em;
|
|
1399
1399
|
padding: var(--field-margin);
|
|
1400
1400
|
flex-wrap: wrap;
|
|
1401
1401
|
}
|
|
1402
|
-
.select-wrapper .select-input__tags[data-v-
|
|
1402
|
+
.select-wrapper .select-input__tags[data-v-1ad08254]:not(:empty) {
|
|
1403
1403
|
margin-right: 0.5em;
|
|
1404
1404
|
}
|
|
1405
|
-
.select-wrapper .select-input[data-v-
|
|
1405
|
+
.select-wrapper .select-input[data-v-1ad08254]:hover {
|
|
1406
1406
|
--field-border-color: var(--bms-grey-100);
|
|
1407
1407
|
}
|
|
1408
|
-
.select-wrapper .select-input[data-v-
|
|
1408
|
+
.select-wrapper .select-input[data-v-1ad08254]:has(input:focus) {
|
|
1409
1409
|
--field-border-color: var(--field-border-color-active);
|
|
1410
1410
|
}
|
|
1411
|
-
.select-wrapper .select-input.is-error[data-v-
|
|
1411
|
+
.select-wrapper .select-input.is-error[data-v-1ad08254] {
|
|
1412
1412
|
--field-border-color: var(--bms-red-100);
|
|
1413
1413
|
--input-background-color: var(--bms-red-25);
|
|
1414
1414
|
}
|
|
1415
|
-
.select-wrapper .select-input.is-disabled[data-v-
|
|
1415
|
+
.select-wrapper .select-input.is-disabled[data-v-1ad08254] {
|
|
1416
1416
|
--field-border-color: var(--bms-grey-25);
|
|
1417
1417
|
--input-background-color: var(--bms-grey-25);
|
|
1418
1418
|
pointer-events: none;
|
|
1419
1419
|
}
|
|
1420
|
-
.select-wrapper .icon-container[data-v-
|
|
1420
|
+
.select-wrapper .icon-container[data-v-1ad08254] {
|
|
1421
1421
|
height: 100%;
|
|
1422
1422
|
display: flex;
|
|
1423
1423
|
align-items: center;
|
|
1424
1424
|
}
|
|
1425
|
-
.select-wrapper .icon-container[data-v-
|
|
1425
|
+
.select-wrapper .icon-container[data-v-1ad08254]:hover {
|
|
1426
1426
|
cursor: pointer;
|
|
1427
1427
|
}
|
|
1428
|
-
.select-wrapper .icon-button[data-v-
|
|
1428
|
+
.select-wrapper .icon-button[data-v-1ad08254] {
|
|
1429
1429
|
width: 1em;
|
|
1430
1430
|
margin: 0 var(--field-padding);
|
|
1431
1431
|
display: block;
|
|
1432
1432
|
}
|
|
1433
|
-
.combobox-option[data-v-
|
|
1433
|
+
.combobox-option[data-v-1ad08254] {
|
|
1434
1434
|
display: flex;
|
|
1435
1435
|
align-items: center;
|
|
1436
1436
|
gap: 0.5em;
|
|
1437
1437
|
}
|
|
1438
|
-
.combobox-option__check[data-v-
|
|
1438
|
+
.combobox-option__check[data-v-1ad08254] {
|
|
1439
1439
|
width: 1em;
|
|
1440
1440
|
display: flex;
|
|
1441
1441
|
justify-content: center;
|
|
@@ -2737,7 +2737,7 @@ nav .additional[data-v-8b4752b4] {
|
|
|
2737
2737
|
padding-right: 32px;
|
|
2738
2738
|
}.table-search[data-v-c674a0d1] {
|
|
2739
2739
|
width: 260px;
|
|
2740
|
-
}.table-search[data-v-
|
|
2740
|
+
}.table-search[data-v-fd6979a1] {
|
|
2741
2741
|
width: 260px;
|
|
2742
2742
|
}.cocarde[data-v-d1c7b421] {
|
|
2743
2743
|
display: flex;
|
package/dist/sipa-bms-ui.es.js
CHANGED
|
@@ -40183,17 +40183,25 @@ const _sfc_main$1i = /* @__PURE__ */ defineComponent({
|
|
|
40183
40183
|
selected: index === currentSelectedItemIndex.value,
|
|
40184
40184
|
small: __props.small
|
|
40185
40185
|
}),
|
|
40186
|
+
onMousedown: _cache[0] || (_cache[0] = withModifiers(() => {
|
|
40187
|
+
}, ["prevent"])),
|
|
40186
40188
|
onClick: withModifiers(($event) => onClick(option), ["stop"])
|
|
40187
40189
|
}, [
|
|
40188
40190
|
renderSlot(_ctx.$slots, "option", { option }, () => [
|
|
40189
40191
|
createTextVNode(toDisplayString(option.label === null ? "N/A" : option.label), 1)
|
|
40190
40192
|
], true)
|
|
40191
|
-
],
|
|
40193
|
+
], 42, _hoisted_1$V);
|
|
40192
40194
|
}), 128)),
|
|
40193
|
-
displayNewOption.value ? (openBlock(), createElementBlock("li", {
|
|
40195
|
+
_ctx.$slots["search-hint"] && displayedOptions.value.length === 0 && !displayNewOption.value ? (openBlock(), createElementBlock("li", {
|
|
40194
40196
|
key: 0,
|
|
40197
|
+
class: normalizeClass(["datalist-option", { small: __props.small }])
|
|
40198
|
+
}, [
|
|
40199
|
+
renderSlot(_ctx.$slots, "search-hint", {}, void 0, true)
|
|
40200
|
+
], 2)) : createCommentVNode("", true),
|
|
40201
|
+
displayNewOption.value ? (openBlock(), createElementBlock("li", {
|
|
40202
|
+
key: 1,
|
|
40195
40203
|
"data-testid": "add-new-option",
|
|
40196
|
-
onClick: _cache[
|
|
40204
|
+
onClick: _cache[1] || (_cache[1] = withModifiers(($event) => $emits("addNewOption", __props.newOption), ["stop"])),
|
|
40197
40205
|
class: normalizeClass({
|
|
40198
40206
|
"datalist-option": true,
|
|
40199
40207
|
selected: currentSelectedItemIndex.value === __props.options.length,
|
|
@@ -40209,7 +40217,7 @@ const _sfc_main$1i = /* @__PURE__ */ defineComponent({
|
|
|
40209
40217
|
}
|
|
40210
40218
|
});
|
|
40211
40219
|
|
|
40212
|
-
const FieldDatalist = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__scopeId", "data-v-
|
|
40220
|
+
const FieldDatalist = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__scopeId", "data-v-41a0e195"]]);
|
|
40213
40221
|
|
|
40214
40222
|
const _hoisted_1$U = { class: "field__input-label" };
|
|
40215
40223
|
const _hoisted_2$B = { class: "field__input-icon field__input-icon--start" };
|
|
@@ -88585,17 +88593,11 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88585
88593
|
synchronizeSearchWithValue(modelValue.value);
|
|
88586
88594
|
});
|
|
88587
88595
|
watch(
|
|
88588
|
-
() => props.options,
|
|
88596
|
+
() => [props.options, modelValue.value],
|
|
88589
88597
|
() => {
|
|
88590
88598
|
synchronizeSearchWithValue(modelValue.value);
|
|
88591
88599
|
}
|
|
88592
88600
|
);
|
|
88593
|
-
watch(
|
|
88594
|
-
() => modelValue.value,
|
|
88595
|
-
(newValue) => {
|
|
88596
|
-
if (!props.canAddNewOption) synchronizeSearchWithValue(newValue);
|
|
88597
|
-
}
|
|
88598
|
-
);
|
|
88599
88601
|
const synchronizeSearchWithValue = (newValue) => {
|
|
88600
88602
|
if (Array.isArray(newValue)) {
|
|
88601
88603
|
searching.value = "";
|
|
@@ -88644,6 +88646,9 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88644
88646
|
});
|
|
88645
88647
|
return items;
|
|
88646
88648
|
});
|
|
88649
|
+
const showSearchHint = computed(
|
|
88650
|
+
() => props.request && props.autocomplete && !searching.value
|
|
88651
|
+
);
|
|
88647
88652
|
const isOptionSelected = (option) => {
|
|
88648
88653
|
if (Array.isArray(modelValue.value)) {
|
|
88649
88654
|
return modelValue.value?.findIndex(
|
|
@@ -88680,7 +88685,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88680
88685
|
});
|
|
88681
88686
|
const onToggleDatalist = () => {
|
|
88682
88687
|
if (!props.disabled) {
|
|
88683
|
-
if (isDatalistOpen.value) {
|
|
88688
|
+
if (isDatalistOpen.value && !props.autocomplete) {
|
|
88684
88689
|
closeDatalist();
|
|
88685
88690
|
} else {
|
|
88686
88691
|
openDatalist();
|
|
@@ -88709,8 +88714,13 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88709
88714
|
searching.value = "";
|
|
88710
88715
|
} else {
|
|
88711
88716
|
modelValue.value = selectedOption.value;
|
|
88712
|
-
|
|
88713
|
-
|
|
88717
|
+
if (props.autocomplete && props.request) {
|
|
88718
|
+
searching.value = "";
|
|
88719
|
+
openDatalist();
|
|
88720
|
+
} else {
|
|
88721
|
+
synchronizeSearchWithValue(selectedOption.value);
|
|
88722
|
+
closeDatalist();
|
|
88723
|
+
}
|
|
88714
88724
|
}
|
|
88715
88725
|
};
|
|
88716
88726
|
__expose({
|
|
@@ -88796,14 +88806,14 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88796
88806
|
]),
|
|
88797
88807
|
datalist: withCtx(() => [
|
|
88798
88808
|
withDirectives(createVNode(FieldDatalist, {
|
|
88799
|
-
options: filteredLocalOptions.value,
|
|
88809
|
+
options: showSearchHint.value ? [] : filteredLocalOptions.value,
|
|
88800
88810
|
"is-input-focused": isDatalistOpen.value,
|
|
88801
88811
|
"can-add-new-option": __props.canAddNewOption,
|
|
88802
88812
|
"new-option": searching.value,
|
|
88803
88813
|
small: __props.small,
|
|
88804
88814
|
onAddNewOption: _cache[1] || (_cache[1] = (option) => emits("addNewOption", option)),
|
|
88805
88815
|
onSelect
|
|
88806
|
-
}, {
|
|
88816
|
+
}, createSlots({
|
|
88807
88817
|
option: withCtx(({ option }) => [
|
|
88808
88818
|
renderSlot(_ctx.$slots, "option", {
|
|
88809
88819
|
option,
|
|
@@ -88827,8 +88837,18 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88827
88837
|
"new-option": withCtx(({ newOption }) => [
|
|
88828
88838
|
renderSlot(_ctx.$slots, "new-option", { newOption }, void 0, true)
|
|
88829
88839
|
]),
|
|
88830
|
-
_:
|
|
88831
|
-
},
|
|
88840
|
+
_: 2
|
|
88841
|
+
}, [
|
|
88842
|
+
__props.request && __props.autocomplete ? {
|
|
88843
|
+
name: "search-hint",
|
|
88844
|
+
fn: withCtx(() => [
|
|
88845
|
+
renderSlot(_ctx.$slots, "search-hint", {}, () => [
|
|
88846
|
+
_cache[2] || (_cache[2] = createTextVNode("Veuillez saisir un libellé", -1))
|
|
88847
|
+
], true)
|
|
88848
|
+
]),
|
|
88849
|
+
key: "0"
|
|
88850
|
+
} : void 0
|
|
88851
|
+
]), 1032, ["options", "is-input-focused", "can-add-new-option", "new-option", "small"]), [
|
|
88832
88852
|
[vShow, isDatalistOpen.value]
|
|
88833
88853
|
])
|
|
88834
88854
|
]),
|
|
@@ -88839,7 +88859,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
88839
88859
|
}
|
|
88840
88860
|
});
|
|
88841
88861
|
|
|
88842
|
-
const BmsCombobox = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-
|
|
88862
|
+
const BmsCombobox = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-1ad08254"]]);
|
|
88843
88863
|
|
|
88844
88864
|
const _hoisted_1$F = ["value", "required", "placeholder", "disabled"];
|
|
88845
88865
|
const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
@@ -99810,7 +99830,7 @@ function requireCloneDeep () {
|
|
|
99810
99830
|
var cloneDeepExports = requireCloneDeep();
|
|
99811
99831
|
const _cloneDeep = /*@__PURE__*/getDefaultExportFromCjs(cloneDeepExports);
|
|
99812
99832
|
|
|
99813
|
-
const
|
|
99833
|
+
const bmsDefaultSearchFilterFunction = (item, searchValue) => JSON.stringify(Object.values(item)).toLowerCase().includes(searchValue.toLowerCase());
|
|
99814
99834
|
const isBetweenFilter = (filter) => filter.type === "betweenDate" || filter.type === "betweenNumber" || filter.type === "betweenDateTime";
|
|
99815
99835
|
const defaultNumberFilterFunction = (itemNumber, search, isAfterSearch) => {
|
|
99816
99836
|
if (isEmptyStringOrNotDefined(itemNumber) || isEmptyStringOrNotDefined(search)) {
|
|
@@ -105456,7 +105476,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
105456
105476
|
description: search.value ? `Votre recherche n'a retourné aucun résultat.` : `Il semblerait qu'il n'y ait rien ici...`
|
|
105457
105477
|
}));
|
|
105458
105478
|
const getFilteredItems = () => {
|
|
105459
|
-
const applySearch = props.customSearch ? (item) => props.customSearch(item, search.value
|
|
105479
|
+
const applySearch = props.customSearch ? (item) => props.customSearch(item, search.value) : (item) => bmsDefaultSearchFilterFunction(item, search.value);
|
|
105460
105480
|
return sortItems(filterItems(props.items).filter(applySearch));
|
|
105461
105481
|
};
|
|
105462
105482
|
const isMounting = ref(true);
|
|
@@ -105652,7 +105672,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
105652
105672
|
}
|
|
105653
105673
|
});
|
|
105654
105674
|
|
|
105655
|
-
const BmsTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-
|
|
105675
|
+
const BmsTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-fd6979a1"]]);
|
|
105656
105676
|
|
|
105657
105677
|
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
105658
105678
|
__name: "BmsCocarde",
|
|
@@ -108561,5 +108581,5 @@ const createBmsUi = () => ({
|
|
|
108561
108581
|
}
|
|
108562
108582
|
});
|
|
108563
108583
|
|
|
108564
|
-
export { BMS_FORM_VALID_URL_REGEX, BmsAlert, BmsAutocomplete, BmsBackButton, BmsBadge, BmsBetweenInput, BmsBreadcrumb, _sfc_main$1t as BmsButton, BmsCaption, BmsCard, BmsChip, BmsCircularProgress, BmsCocarde, BmsCombobox, BmsContentPageLayout, BmsDraggableList, BmsEmptyScreen, BmsFilePicker, BmsFixedMenu, BmsFloatingWindow, BmsForm, BmsGhost, BmsHeader, BmsHeaderTitle, _sfc_main$1s as BmsIconButton, _sfc_main$19 as BmsInputBooleanCheckbox, BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup, BmsInputCheckboxGroup, BmsInputCode, _sfc_main$13 as BmsInputDateTime, BmsInputFile, _sfc_main$11 as BmsInputNumber, BmsInputRadio, BmsInputRadioCaption, BmsInputRadioCaptionGroup, BmsInputRadioGroup, _sfc_main$14 as BmsInputText, _sfc_main$O as BmsInputTime, BmsInputToggle, _sfc_main$1w as BmsLink, BmsLoader, BmsMenu, BmsMenuNav, BmsModal, BmsMultiSelect, BmsNotificationsInstance, BmsOverlay, BmsPagination, BmsProblem, _sfc_main$g as BmsRelativeTime, BmsSearch, BmsSection, BmsSelect, BmsServerAutocomplete, BmsServerTable, BmsShortLinkMenu, BmsSplitWindow, BmsStep, BmsStepper, BmsTable, _sfc_main$p as BmsTabs, BmsTag, BmsTenantSwitcher, BmsTextArea, BmsToggleIcon, BmsTooltip, ChipColor, CocardeBorder, ColumnType, ConfirmInstance, InputType, KeycloakAuthAdapterInstance, RuntimeEnv, SelectMode, SortValue, StatusType, TableMode, TooltipDirection, confirmPlugin, convertStringToCaption, createBmsUi, createRuntimeEnv, defaultSortFunction, enforceActionsColumnHeader, featureFlipperPlugin, fetchRuntimeEnv, field, getCurrentHistory, getCurrentLocation, getFiltersAsQueryParams, getHeaderClasses, getImageFromFile, getNumberFromPathQuery, getStringFromPathQuery, getUserPrefFromLocalStorage, getValueByPath, handleValueInSearchParams, isEmptyStringOrNotDefined, isExternalLink, isFileImage, isProblem, keycloakAuthAdapter, keycloakAuthAdapterInit, notifications, readableDate, reflectFiltersToPath, reflectSearchToPath, relativeDate, relativeDateDefaultFormatFunction, routerHistoryPlugin, sanitizeHtml, sanitizeString, saveValuesToPathQuery, searchString, setUserPrefFromLocalStorage, useClipboard, useConfirm, useFeatureFlipper, useKeycloakAuthAdapter, useNotifications, usePagination, useRouterHistory, useRuntimeEnv, useSearch, useSort, useUserPref, writeLocation };
|
|
108584
|
+
export { BMS_FORM_VALID_URL_REGEX, BmsAlert, BmsAutocomplete, BmsBackButton, BmsBadge, BmsBetweenInput, BmsBreadcrumb, _sfc_main$1t as BmsButton, BmsCaption, BmsCard, BmsChip, BmsCircularProgress, BmsCocarde, BmsCombobox, BmsContentPageLayout, BmsDraggableList, BmsEmptyScreen, BmsFilePicker, BmsFixedMenu, BmsFloatingWindow, BmsForm, BmsGhost, BmsHeader, BmsHeaderTitle, _sfc_main$1s as BmsIconButton, _sfc_main$19 as BmsInputBooleanCheckbox, BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup, BmsInputCheckboxGroup, BmsInputCode, _sfc_main$13 as BmsInputDateTime, BmsInputFile, _sfc_main$11 as BmsInputNumber, BmsInputRadio, BmsInputRadioCaption, BmsInputRadioCaptionGroup, BmsInputRadioGroup, _sfc_main$14 as BmsInputText, _sfc_main$O as BmsInputTime, BmsInputToggle, _sfc_main$1w as BmsLink, BmsLoader, BmsMenu, BmsMenuNav, BmsModal, BmsMultiSelect, BmsNotificationsInstance, BmsOverlay, BmsPagination, BmsProblem, _sfc_main$g as BmsRelativeTime, BmsSearch, BmsSection, BmsSelect, BmsServerAutocomplete, BmsServerTable, BmsShortLinkMenu, BmsSplitWindow, BmsStep, BmsStepper, BmsTable, _sfc_main$p as BmsTabs, BmsTag, BmsTenantSwitcher, BmsTextArea, BmsToggleIcon, BmsTooltip, ChipColor, CocardeBorder, ColumnType, ConfirmInstance, InputType, KeycloakAuthAdapterInstance, RuntimeEnv, SelectMode, SortValue, StatusType, TableMode, TooltipDirection, bmsDefaultSearchFilterFunction, confirmPlugin, convertStringToCaption, createBmsUi, createRuntimeEnv, defaultSortFunction, enforceActionsColumnHeader, featureFlipperPlugin, fetchRuntimeEnv, field, getCurrentHistory, getCurrentLocation, getFiltersAsQueryParams, getHeaderClasses, getImageFromFile, getNumberFromPathQuery, getStringFromPathQuery, getUserPrefFromLocalStorage, getValueByPath, handleValueInSearchParams, isEmptyStringOrNotDefined, isExternalLink, isFileImage, isProblem, keycloakAuthAdapter, keycloakAuthAdapterInit, notifications, readableDate, reflectFiltersToPath, reflectSearchToPath, relativeDate, relativeDateDefaultFormatFunction, routerHistoryPlugin, sanitizeHtml, sanitizeString, saveValuesToPathQuery, searchString, setUserPrefFromLocalStorage, useClipboard, useConfirm, useFeatureFlipper, useKeycloakAuthAdapter, useNotifications, usePagination, useRouterHistory, useRuntimeEnv, useSearch, useSort, useUserPref, writeLocation };
|
|
108565
108585
|
//# sourceMappingURL=sipa-bms-ui.es.js.map
|