@ouestfrance/sipa-bms-ui 8.42.0 → 8.43.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.
@@ -2,6 +2,7 @@ import { FieldComponentProps } from '../../plugins/field/field-component.model';
2
2
  export interface Props extends FieldComponentProps {
3
3
  type: 'html' | 'json' | 'css' | 'javascript';
4
4
  modelValue: string;
5
+ extraExtensions?: any[];
5
6
  }
6
7
  type __VLS_Props = Props;
7
8
  declare const input: import('vue').ModelRef<string, string, string, string>;
@@ -18,5 +19,6 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
18
19
  modelValue: string;
19
20
  errors: (string | import('../..').Caption)[];
20
21
  captions: (string | import('../..').Caption)[];
22
+ extraExtensions: any[];
21
23
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
24
  export default _default;
@@ -0,0 +1,68 @@
1
+ import { Diagnostic } from '@codemirror/lint';
2
+ import { Extension } from '@codemirror/state';
3
+ /**
4
+ * Retourne les diagnostics HTML pour un code donné.
5
+ * Parse le contenu comme du XML strict pour détecter les erreurs de structure.
6
+ *
7
+ * Comportement attendu :
8
+ * - Chaîne vide → aucun diagnostic
9
+ * - HTML bien formé (`<div><p>Hello</p></div>`) → aucun diagnostic
10
+ * - Balises auto-fermantes XHTML (`<br />`, `<img />`) → aucun diagnostic
11
+ * - Balise non fermée (`<div><p>Hello</div>`) → diagnostic « HTML invalide »
12
+ * - Attribut mal formé (`<div class=>`) → diagnostic « HTML invalide »
13
+ *
14
+ * Limitation : le parser XML est plus strict que le parser HTML du navigateur.
15
+ * Les balises void HTML5 non fermées (`<br>`, `<img>`) sont considérées invalides.
16
+ */
17
+ export declare const htmlDiagnostics: (code: string) => Diagnostic[];
18
+ /**
19
+ * Retourne les diagnostics CSS pour un code donné.
20
+ * Utilise l'API Constructable Stylesheets (`CSSStyleSheet.replaceSync`).
21
+ *
22
+ * Comportement attendu :
23
+ * - Chaîne vide → aucun diagnostic
24
+ * - CSS valide (`.foo { color: red; }`) → aucun diagnostic
25
+ * - CSS invalide → diagnostic avec message du navigateur
26
+ * - Environnements sans `CSSStyleSheet.replaceSync` (SSR, jsdom) → aucun diagnostic
27
+ * (la validation est silencieusement désactivée)
28
+ */
29
+ export declare const cssDiagnostics: (code: string) => Diagnostic[];
30
+ /**
31
+ * Retourne les diagnostics JavaScript pour un code donné.
32
+ * Détecte les erreurs de syntaxe via `new Function(code)`.
33
+ *
34
+ * Comportement attendu :
35
+ * - Chaîne vide → aucun diagnostic
36
+ * - JS syntaxiquement valide (`const x = 1;`) → aucun diagnostic
37
+ * - Accolade mal formée (`const x = {;`) → diagnostic « JavaScript invalide »
38
+ * - Bloc non fermé (`function foo() {`) → diagnostic « JavaScript invalide »
39
+ *
40
+ * Limitation : valide uniquement la syntaxe, pas la sémantique ni les types.
41
+ * Les erreurs runtime (variable inexistante, etc.) ne sont pas détectées.
42
+ */
43
+ export declare const jsDiagnostics: (code: string) => Diagnostic[];
44
+ /**
45
+ * Linter syntaxique HTML pour BmsInputCode.
46
+ * À passer via la prop `extraExtensions`, combiné avec `lintGutter()`.
47
+ *
48
+ * @example
49
+ * <BmsInputCode type="html" :extra-extensions="[lintGutter(), htmlSyntaxLinter()]" />
50
+ */
51
+ export declare const htmlSyntaxLinter: () => Extension;
52
+ /**
53
+ * Linter syntaxique CSS pour BmsInputCode.
54
+ * À passer via la prop `extraExtensions`, combiné avec `lintGutter()`.
55
+ *
56
+ * @example
57
+ * <BmsInputCode type="css" :extra-extensions="[lintGutter(), cssSyntaxLinter()]" />
58
+ */
59
+ export declare const cssSyntaxLinter: () => Extension;
60
+ /**
61
+ * Linter syntaxique JavaScript pour BmsInputCode.
62
+ * À passer via la prop `extraExtensions`, combiné avec `lintGutter()`.
63
+ *
64
+ * @example
65
+ * <BmsInputCode type="javascript" :extra-extensions="[lintGutter(), jsSyntaxLinter()]" />
66
+ */
67
+ export declare const jsSyntaxLinter: () => Extension;
68
+ export { lintGutter } from '@codemirror/lint';
package/dist/index.d.ts CHANGED
@@ -70,6 +70,7 @@ export declare const createBmsUi: () => {
70
70
  install: (app: App) => void;
71
71
  };
72
72
  export * from './composables';
73
+ export * from './components/form/bms-input-code.linters';
73
74
  export * from './helpers';
74
75
  export * from './models';
75
76
  export * from './plugins/feature-flipper';
@@ -1059,7 +1059,7 @@ input[type=checkbox][data-v-e1d94c62]:checked::before {
1059
1059
  }
1060
1060
  .input-checkbox-group-caption-wrapper.column[data-v-3768fc44] {
1061
1061
  flex-direction: column;
1062
- }.code-mirror[data-v-4584ad3d] {
1062
+ }.code-mirror[data-v-ba2af147] {
1063
1063
  max-height: 50rem;
1064
1064
  width: 100%;
1065
1065
  overflow: auto;
@@ -2164,14 +2164,14 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
2164
2164
  display: flex;
2165
2165
  justify-content: flex-end;
2166
2166
  gap: 1em;
2167
- }.stepper-header[data-v-aef55cda] {
2167
+ }.stepper-header[data-v-0428024f] {
2168
2168
  display: flex;
2169
2169
  justify-content: center;
2170
2170
  align-items: center;
2171
2171
  top: 0;
2172
2172
  padding: 2em 0;
2173
2173
  }
2174
- .stepper-header[data-v-aef55cda]::before {
2174
+ .stepper-header[data-v-0428024f]::before {
2175
2175
  content: "";
2176
2176
  display: block;
2177
2177
  width: 80%;
@@ -2185,7 +2185,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
2185
2185
  opacity: 0;
2186
2186
  transition: opacity 0.2s linear;
2187
2187
  }
2188
- .stepper-header[data-v-aef55cda]::after {
2188
+ .stepper-header[data-v-0428024f]::after {
2189
2189
  content: "";
2190
2190
  display: block;
2191
2191
  position: absolute;
@@ -2196,49 +2196,51 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
2196
2196
  background: transparent;
2197
2197
  z-index: -1;
2198
2198
  }
2199
- .stepper-header--step[data-v-aef55cda] {
2199
+ .stepper-header--step[data-v-0428024f] {
2200
2200
  display: flex;
2201
2201
  justify-content: center;
2202
2202
  align-items: center;
2203
2203
  margin: 0 10px;
2204
2204
  }
2205
- .stepper-header--step[data-v-aef55cda]:first-child {
2205
+ .stepper-header--step[data-v-0428024f]:first-child {
2206
2206
  margin: 0 10px 0 0;
2207
2207
  }
2208
- .stepper-header--step[data-v-aef55cda]:last-child {
2208
+ .stepper-header--step[data-v-0428024f]:last-child {
2209
2209
  margin: 0;
2210
2210
  }
2211
- .stepper-header--step.clickable:hover div[data-v-aef55cda] {
2211
+ .stepper-header--step.clickable:hover div[data-v-0428024f] {
2212
2212
  cursor: pointer;
2213
2213
  }
2214
- .stepper-header--indicator[data-v-aef55cda] {
2214
+ .stepper-header--indicator[data-v-0428024f] {
2215
2215
  width: 30px;
2216
2216
  height: 30px;
2217
2217
  display: flex;
2218
2218
  align-items: center;
2219
2219
  justify-content: center;
2220
- background-color: var(--bms-main-50);
2221
- color: var(--bms-font-color);
2220
+ background-color: light-dark(var(--bms-main-50), var(--bms-main-140));
2221
+ color: light-dark(var(--bms-font-color), var(--bms-main-10));
2222
2222
  border-radius: 50%;
2223
2223
  font-weight: bold;
2224
2224
  margin-right: 10px;
2225
2225
  }
2226
- .stepper-header--indicator.active[data-v-aef55cda] {
2226
+ .stepper-header--indicator.active[data-v-0428024f] {
2227
2227
  border: none;
2228
2228
  background-color: var(--bms-main-100);
2229
2229
  color: var(--bms-white);
2230
2230
  }
2231
- .stepper-header--indicator.complete[data-v-aef55cda] {
2231
+ .stepper-header--indicator.complete[data-v-0428024f] {
2232
2232
  border: none;
2233
2233
  background-color: var(--bms-success-color);
2234
2234
  color: var(--bms-white);
2235
2235
  font-size: 20px;
2236
2236
  }
2237
- .stepper-header--separator[data-v-aef55cda] {
2237
+ .stepper-header--separator[data-v-0428024f] {
2238
2238
  width: 30px;
2239
2239
  margin-left: 10px;
2240
+ border: 0;
2241
+ border-top: 1px solid light-dark(var(--bms-grey-25), var(--bms-grey-100));
2240
2242
  }
2241
- .stepper-body[data-v-aef55cda] {
2243
+ .stepper-body[data-v-0428024f] {
2242
2244
  margin: 10px 10px 0 10px;
2243
2245
  }a[data-v-02d02028] {
2244
2246
  cursor: pointer;
@@ -83564,6 +83564,7 @@ var BmsInputCode_default = /* @__PURE__ */ _plugin_vue_export_helper_default(/*
83564
83564
  props: /* @__PURE__ */ mergeModels({
83565
83565
  type: {},
83566
83566
  modelValue: { default: "" },
83567
+ extraExtensions: { default: () => [] },
83567
83568
  label: {},
83568
83569
  loading: { type: Boolean },
83569
83570
  required: { type: Boolean },
@@ -83596,14 +83597,15 @@ var BmsInputCode_default = /* @__PURE__ */ _plugin_vue_export_helper_default(/*
83596
83597
  } });
83597
83598
  const extensions = computed(() => {
83598
83599
  switch (props.type) {
83599
- case "html": return [html()];
83600
- case "css": return [css()];
83601
- case "javascript": return [javascript()];
83600
+ case "html": return [html(), ...props.extraExtensions];
83601
+ case "css": return [css(), ...props.extraExtensions];
83602
+ case "javascript": return [javascript(), ...props.extraExtensions];
83602
83603
  default: return [
83603
83604
  json(),
83604
83605
  lintGutter(),
83605
83606
  linter(jsonParseLinter()),
83606
- jsonClickExtension
83607
+ jsonClickExtension,
83608
+ ...props.extraExtensions
83607
83609
  ];
83608
83610
  }
83609
83611
  });
@@ -83627,7 +83629,7 @@ var BmsInputCode_default = /* @__PURE__ */ _plugin_vue_export_helper_default(/*
83627
83629
  }, 16);
83628
83630
  };
83629
83631
  }
83630
- }), [["__scopeId", "data-v-4584ad3d"]]);
83632
+ }), [["__scopeId", "data-v-ba2af147"]]);
83631
83633
  //#endregion
83632
83634
  //#region src/components/form/BmsInputText.vue
83633
83635
  var BmsInputText_default = /* @__PURE__ */ defineComponent({
@@ -103491,7 +103493,7 @@ var BmsStepper_default = /* @__PURE__ */ _plugin_vue_export_helper_default(/* @_
103491
103493
  }), 128))]), createElementVNode("div", _hoisted_7$4, [currentStepObject.value ? (openBlock(), createBlock(resolveDynamicComponent(currentStepObject.value?.stepNode), { key: __props.currentStep })) : createCommentVNode("", true)])]);
103492
103494
  };
103493
103495
  }
103494
- }), [["__scopeId", "data-v-aef55cda"]]);
103496
+ }), [["__scopeId", "data-v-0428024f"]]);
103495
103497
  //#endregion
103496
103498
  //#region src/plugins/router-history/router-history.composable.ts
103497
103499
  var historyRoutes = ref([]);
@@ -112739,6 +112741,110 @@ var useDarkMode = () => {
112739
112741
  };
112740
112742
  };
112741
112743
  //#endregion
112744
+ //#region src/components/form/bms-input-code.linters.ts
112745
+ /**
112746
+ * Retourne les diagnostics HTML pour un code donné.
112747
+ * Parse le contenu comme du XML strict pour détecter les erreurs de structure.
112748
+ *
112749
+ * Comportement attendu :
112750
+ * - Chaîne vide → aucun diagnostic
112751
+ * - HTML bien formé (`<div><p>Hello</p></div>`) → aucun diagnostic
112752
+ * - Balises auto-fermantes XHTML (`<br />`, `<img />`) → aucun diagnostic
112753
+ * - Balise non fermée (`<div><p>Hello</div>`) → diagnostic « HTML invalide »
112754
+ * - Attribut mal formé (`<div class=>`) → diagnostic « HTML invalide »
112755
+ *
112756
+ * Limitation : le parser XML est plus strict que le parser HTML du navigateur.
112757
+ * Les balises void HTML5 non fermées (`<br>`, `<img>`) sont considérées invalides.
112758
+ */
112759
+ var htmlDiagnostics = (code) => {
112760
+ if (!code.trim()) return [];
112761
+ if (!new DOMParser().parseFromString(`<root>${code}</root>`, "text/xml").querySelector("parsererror")) return [];
112762
+ return [{
112763
+ from: 0,
112764
+ to: code.length,
112765
+ severity: "error",
112766
+ message: "HTML invalide : balise mal formée ou non fermée"
112767
+ }];
112768
+ };
112769
+ /**
112770
+ * Retourne les diagnostics CSS pour un code donné.
112771
+ * Utilise l'API Constructable Stylesheets (`CSSStyleSheet.replaceSync`).
112772
+ *
112773
+ * Comportement attendu :
112774
+ * - Chaîne vide → aucun diagnostic
112775
+ * - CSS valide (`.foo { color: red; }`) → aucun diagnostic
112776
+ * - CSS invalide → diagnostic avec message du navigateur
112777
+ * - Environnements sans `CSSStyleSheet.replaceSync` (SSR, jsdom) → aucun diagnostic
112778
+ * (la validation est silencieusement désactivée)
112779
+ */
112780
+ var cssDiagnostics = (code) => {
112781
+ if (!code.trim()) return [];
112782
+ try {
112783
+ const sheet = new CSSStyleSheet();
112784
+ if (typeof sheet.replaceSync !== "function") return [];
112785
+ sheet.replaceSync(code);
112786
+ return [];
112787
+ } catch (e) {
112788
+ return [{
112789
+ from: 0,
112790
+ to: code.length,
112791
+ severity: "error",
112792
+ message: `CSS invalide : ${e.message}`
112793
+ }];
112794
+ }
112795
+ };
112796
+ /**
112797
+ * Retourne les diagnostics JavaScript pour un code donné.
112798
+ * Détecte les erreurs de syntaxe via `new Function(code)`.
112799
+ *
112800
+ * Comportement attendu :
112801
+ * - Chaîne vide → aucun diagnostic
112802
+ * - JS syntaxiquement valide (`const x = 1;`) → aucun diagnostic
112803
+ * - Accolade mal formée (`const x = {;`) → diagnostic « JavaScript invalide »
112804
+ * - Bloc non fermé (`function foo() {`) → diagnostic « JavaScript invalide »
112805
+ *
112806
+ * Limitation : valide uniquement la syntaxe, pas la sémantique ni les types.
112807
+ * Les erreurs runtime (variable inexistante, etc.) ne sont pas détectées.
112808
+ */
112809
+ var jsDiagnostics = (code) => {
112810
+ if (!code.trim()) return [];
112811
+ try {
112812
+ new Function(code);
112813
+ return [];
112814
+ } catch (e) {
112815
+ return [{
112816
+ from: 0,
112817
+ to: code.length,
112818
+ severity: "error",
112819
+ message: `JavaScript invalide : ${e.message}`
112820
+ }];
112821
+ }
112822
+ };
112823
+ /**
112824
+ * Linter syntaxique HTML pour BmsInputCode.
112825
+ * À passer via la prop `extraExtensions`, combiné avec `lintGutter()`.
112826
+ *
112827
+ * @example
112828
+ * <BmsInputCode type="html" :extra-extensions="[lintGutter(), htmlSyntaxLinter()]" />
112829
+ */
112830
+ var htmlSyntaxLinter = () => linter((view) => htmlDiagnostics(view.state.doc.toString()));
112831
+ /**
112832
+ * Linter syntaxique CSS pour BmsInputCode.
112833
+ * À passer via la prop `extraExtensions`, combiné avec `lintGutter()`.
112834
+ *
112835
+ * @example
112836
+ * <BmsInputCode type="css" :extra-extensions="[lintGutter(), cssSyntaxLinter()]" />
112837
+ */
112838
+ var cssSyntaxLinter = () => linter((view) => cssDiagnostics(view.state.doc.toString()));
112839
+ /**
112840
+ * Linter syntaxique JavaScript pour BmsInputCode.
112841
+ * À passer via la prop `extraExtensions`, combiné avec `lintGutter()`.
112842
+ *
112843
+ * @example
112844
+ * <BmsInputCode type="javascript" :extra-extensions="[lintGutter(), jsSyntaxLinter()]" />
112845
+ */
112846
+ var jsSyntaxLinter = () => linter((view) => jsDiagnostics(view.state.doc.toString()));
112847
+ //#endregion
112742
112848
  //#region src/plugins/feature-flipper/featureFlipper.composable.ts
112743
112849
  var features = ref({});
112744
112850
  var useFeatureFlipper = () => {
@@ -114525,6 +114631,6 @@ var createBmsUi = () => ({ install: (app) => {
114525
114631
  app.component("BmsRelativeTime", BmsRelativeTime_default);
114526
114632
  } });
114527
114633
  //#endregion
114528
- export { BMS_FORM_VALID_URL_REGEX, BmsAlert_default as BmsAlert, BmsAutocomplete_default as BmsAutocomplete, BmsBackButton_default as BmsBackButton, BmsBadge_default as BmsBadge, BmsBetweenInput_default as BmsBetweenInput, BmsBreadcrumb_default as BmsBreadcrumb, BmsButton_default as BmsButton, BmsCaption_default as BmsCaption, BmsCard_default as BmsCard, BmsChip_default as BmsChip, BmsCircularProgress_default as BmsCircularProgress, BmsCocarde_default as BmsCocarde, BmsCombobox_default as BmsCombobox, BmsContentPageLayout_default as BmsContentPageLayout, DraggableList_default as BmsDraggableList, BmsEmptyScreen_default as BmsEmptyScreen, BmsFilePicker_default as BmsFilePicker, BmsFixedMenu_default as BmsFixedMenu, BmsFloatingWindow_default as BmsFloatingWindow, BmsForm_default as BmsForm, BmsGhost_default as BmsGhost, BmsHeader_default as BmsHeader, BmsHeaderTitle_default as BmsHeaderTitle, BmsIconButton_default as BmsIconButton, BmsInputBooleanCheckbox_default as BmsInputBooleanCheckbox, BmsInputCheckboxCaption_default as BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup_default as BmsInputCheckboxCaptionGroup, BmsInputCheckboxGroup_default as BmsInputCheckboxGroup, BmsInputCode_default as BmsInputCode, BmsInputDateTime_default as BmsInputDateTime, BmsInputFile_default as BmsInputFile, BmsInputNumber_default as BmsInputNumber, BmsInputRadio_default as BmsInputRadio, BmsInputRadioCaption_default as BmsInputRadioCaption, BmsInputRadioCaptionGroup_default as BmsInputRadioCaptionGroup, BmsInputRadioGroup_default as BmsInputRadioGroup, BmsInputText_default as BmsInputText, BmsInputTime_default as BmsInputTime, BmsInputToggle_default as BmsInputToggle, BmsLink_default as BmsLink, BmsLoader_default as BmsLoader, BmsMenu_default as BmsMenu, BmsMenuNav_default as BmsMenuNav, BmsModal_default as BmsModal, BmsMultiSelect_default as BmsMultiSelect, BmsNotificationsInstance, BmsOverlay_default as BmsOverlay, BmsPagination_default as BmsPagination, BmsProblem_default as BmsProblem, BmsRelativeTime_default as BmsRelativeTime, BmsSearch_default as BmsSearch, BmsSection_default as BmsSection, BmsSelect_default as BmsSelect, BmsServerAutocomplete_default as BmsServerAutocomplete, BmsServerTable_default as BmsServerTable, BmsShortLinkMenu_default as BmsShortLinkMenu, BmsSidePanel_default as BmsSidePanel, BmsSlidingPanelShell_default as BmsSlidingPanelShell, BmsSplitWindow_default as BmsSplitWindow, BmsStep_default as BmsStep, BmsStepper_default as BmsStepper, BmsTable_default as BmsTable, BmsTabs_default as BmsTabs, BmsTag_default as BmsTag, BmsTenantSwitcher_default as BmsTenantSwitcher, BmsTextArea_default as BmsTextArea, BmsToggleIcon_default as BmsToggleIcon, BmsTooltip_default as 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, useDarkMode, useFeatureFlipper, useKeycloakAuthAdapter, useNotifications, usePagination, useRouterHistory, useRuntimeEnv, useSearch, useSort, useUserPref, writeLocation };
114634
+ export { BMS_FORM_VALID_URL_REGEX, BmsAlert_default as BmsAlert, BmsAutocomplete_default as BmsAutocomplete, BmsBackButton_default as BmsBackButton, BmsBadge_default as BmsBadge, BmsBetweenInput_default as BmsBetweenInput, BmsBreadcrumb_default as BmsBreadcrumb, BmsButton_default as BmsButton, BmsCaption_default as BmsCaption, BmsCard_default as BmsCard, BmsChip_default as BmsChip, BmsCircularProgress_default as BmsCircularProgress, BmsCocarde_default as BmsCocarde, BmsCombobox_default as BmsCombobox, BmsContentPageLayout_default as BmsContentPageLayout, DraggableList_default as BmsDraggableList, BmsEmptyScreen_default as BmsEmptyScreen, BmsFilePicker_default as BmsFilePicker, BmsFixedMenu_default as BmsFixedMenu, BmsFloatingWindow_default as BmsFloatingWindow, BmsForm_default as BmsForm, BmsGhost_default as BmsGhost, BmsHeader_default as BmsHeader, BmsHeaderTitle_default as BmsHeaderTitle, BmsIconButton_default as BmsIconButton, BmsInputBooleanCheckbox_default as BmsInputBooleanCheckbox, BmsInputCheckboxCaption_default as BmsInputCheckboxCaption, BmsInputCheckboxCaptionGroup_default as BmsInputCheckboxCaptionGroup, BmsInputCheckboxGroup_default as BmsInputCheckboxGroup, BmsInputCode_default as BmsInputCode, BmsInputDateTime_default as BmsInputDateTime, BmsInputFile_default as BmsInputFile, BmsInputNumber_default as BmsInputNumber, BmsInputRadio_default as BmsInputRadio, BmsInputRadioCaption_default as BmsInputRadioCaption, BmsInputRadioCaptionGroup_default as BmsInputRadioCaptionGroup, BmsInputRadioGroup_default as BmsInputRadioGroup, BmsInputText_default as BmsInputText, BmsInputTime_default as BmsInputTime, BmsInputToggle_default as BmsInputToggle, BmsLink_default as BmsLink, BmsLoader_default as BmsLoader, BmsMenu_default as BmsMenu, BmsMenuNav_default as BmsMenuNav, BmsModal_default as BmsModal, BmsMultiSelect_default as BmsMultiSelect, BmsNotificationsInstance, BmsOverlay_default as BmsOverlay, BmsPagination_default as BmsPagination, BmsProblem_default as BmsProblem, BmsRelativeTime_default as BmsRelativeTime, BmsSearch_default as BmsSearch, BmsSection_default as BmsSection, BmsSelect_default as BmsSelect, BmsServerAutocomplete_default as BmsServerAutocomplete, BmsServerTable_default as BmsServerTable, BmsShortLinkMenu_default as BmsShortLinkMenu, BmsSidePanel_default as BmsSidePanel, BmsSlidingPanelShell_default as BmsSlidingPanelShell, BmsSplitWindow_default as BmsSplitWindow, BmsStep_default as BmsStep, BmsStepper_default as BmsStepper, BmsTable_default as BmsTable, BmsTabs_default as BmsTabs, BmsTag_default as BmsTag, BmsTenantSwitcher_default as BmsTenantSwitcher, BmsTextArea_default as BmsTextArea, BmsToggleIcon_default as BmsToggleIcon, BmsTooltip_default as BmsTooltip, ChipColor, CocardeBorder, ColumnType, ConfirmInstance, InputType, KeycloakAuthAdapterInstance, RuntimeEnv, SelectMode, SortValue, StatusType, TableMode, TooltipDirection, bmsDefaultSearchFilterFunction, confirmPlugin, convertStringToCaption, createBmsUi, createRuntimeEnv, cssDiagnostics, cssSyntaxLinter, defaultSortFunction, enforceActionsColumnHeader, featureFlipperPlugin, fetchRuntimeEnv, field, getCurrentHistory, getCurrentLocation, getFiltersAsQueryParams, getHeaderClasses, getImageFromFile, getNumberFromPathQuery, getStringFromPathQuery, getUserPrefFromLocalStorage, getValueByPath, handleValueInSearchParams, htmlDiagnostics, htmlSyntaxLinter, isEmptyStringOrNotDefined, isExternalLink, isFileImage, isProblem, jsDiagnostics, jsSyntaxLinter, keycloakAuthAdapter, keycloakAuthAdapterInit, lintGutter, notifications, readableDate, reflectFiltersToPath, reflectSearchToPath, relativeDate, relativeDateDefaultFormatFunction, routerHistoryPlugin, sanitizeHtml, sanitizeString, saveValuesToPathQuery, searchString, setUserPrefFromLocalStorage, useClipboard, useConfirm, useDarkMode, useFeatureFlipper, useKeycloakAuthAdapter, useNotifications, usePagination, useRouterHistory, useRuntimeEnv, useSearch, useSort, useUserPref, writeLocation };
114529
114635
 
114530
114636
  //# sourceMappingURL=sipa-bms-ui.es.js.map