@ouestfrance/sipa-bms-ui 8.9.1 → 8.9.3
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/layout/BmsModal.vue.d.ts +1 -1
- package/dist/components/table/BmsServerTable.vue.d.ts +5 -5
- package/dist/components/table/BmsTable.vue.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/sipa-bms-ui.css +25 -27
- package/dist/sipa-bms-ui.es.js +384 -383
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +389 -387
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/layout/BmsStepper.vue +0 -2
- package/src/index.ts +4 -0
- package/src/showroom/server.js +11 -21
|
@@ -28,9 +28,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Pr
|
|
|
28
28
|
}>, {
|
|
29
29
|
type: StatusType;
|
|
30
30
|
modelValue: any;
|
|
31
|
+
loading: boolean;
|
|
31
32
|
priority: boolean;
|
|
32
33
|
backdropDismiss: boolean;
|
|
33
|
-
loading: boolean;
|
|
34
34
|
closable: boolean;
|
|
35
35
|
submitLabel: string;
|
|
36
36
|
cancelLabel: string;
|
|
@@ -65,17 +65,17 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
65
65
|
}>, {
|
|
66
66
|
mode: "normal" | "dense";
|
|
67
67
|
size: number;
|
|
68
|
+
request: (params: ServerTableRequestParams, abortController: AbortController, url?: string | undefined) => Promise<{
|
|
69
|
+
data: unknown[];
|
|
70
|
+
total: number;
|
|
71
|
+
}>;
|
|
72
|
+
filters: Filter[];
|
|
68
73
|
selectedItems: unknown[];
|
|
69
74
|
selectable: boolean;
|
|
70
75
|
selectMode: SelectMode;
|
|
71
76
|
selectableDisabled: boolean;
|
|
72
77
|
maxSelectedSize: number;
|
|
73
78
|
pagination: number[];
|
|
74
|
-
request: (params: ServerTableRequestParams, abortController: AbortController, url?: string | undefined) => Promise<{
|
|
75
|
-
data: unknown[];
|
|
76
|
-
total: number;
|
|
77
|
-
}>;
|
|
78
|
-
filters: Filter[];
|
|
79
79
|
canSaveFilters: boolean;
|
|
80
80
|
persistent: boolean;
|
|
81
81
|
initialPage: number;
|
|
@@ -52,10 +52,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
52
52
|
}>, {
|
|
53
53
|
mode: "normal" | "dense";
|
|
54
54
|
size: number;
|
|
55
|
+
filters: Filter[];
|
|
55
56
|
selectable: boolean;
|
|
56
57
|
selectableDisabled: boolean;
|
|
57
58
|
pagination: number[];
|
|
58
|
-
filters: Filter[];
|
|
59
59
|
canSaveFilters: boolean;
|
|
60
60
|
persistent: boolean;
|
|
61
61
|
defaultFiltersOpened: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { default as BmsCircularProgress } from './components/feedback/BmsCircula
|
|
|
8
8
|
import { default as BmsLoader } from './components/feedback/BmsLoader.vue';
|
|
9
9
|
import { default as BmsTooltip } from './components/feedback/BmsTooltip.vue';
|
|
10
10
|
import { default as BmsAutocomplete } from './components/form/BmsAutocomplete.vue';
|
|
11
|
+
import { default as BmsServerAutocomplete } from './components/form/BmsServerAutocomplete.vue';
|
|
11
12
|
import { default as BmsBetweenInput } from './components/form/BmsBetweenInput.vue';
|
|
12
13
|
import { default as BmsChip } from './components/form/BmsChip.vue';
|
|
13
14
|
import { default as BmsFilePicker } from './components/form/BmsFilePicker.vue';
|
|
@@ -71,4 +72,4 @@ export * from './plugins/confirm';
|
|
|
71
72
|
export * from './plugins/runtime-env';
|
|
72
73
|
export * from './plugins/router-history';
|
|
73
74
|
export * from './services';
|
|
74
|
-
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, BmsFixedMenu, BmsLink, BmsMenu, BmsMenuNav, BmsShortLinkMenu, BmsTabs, BmsTenantSwitcher, BmsDraggableList, BmsEmptyScreen, BmsPagination, BmsServerTable, BmsTable, BmsCocarde, BmsProblem, BmsRelativeTime, };
|
|
75
|
+
export { BmsButton, BmsIconButton, BmsAlert, BmsBadge, BmsCaption, BmsCircularProgress, BmsLoader, BmsTooltip, BmsAutocomplete, BmsServerAutocomplete, 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, BmsFixedMenu, BmsLink, BmsMenu, BmsMenuNav, BmsShortLinkMenu, BmsTabs, BmsTenantSwitcher, BmsDraggableList, BmsEmptyScreen, BmsPagination, BmsServerTable, BmsTable, BmsCocarde, BmsProblem, BmsRelativeTime, };
|
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -641,6 +641,19 @@ ul li[data-v-ba5302fc]:hover, ul li.selected[data-v-ba5302fc] {
|
|
|
641
641
|
}
|
|
642
642
|
.icon[data-v-b0e1e6f3] svg * {
|
|
643
643
|
fill: currentColor !important;
|
|
644
|
+
}.icon[data-v-3115cc27] {
|
|
645
|
+
height: 1em;
|
|
646
|
+
width: 1em;
|
|
647
|
+
}
|
|
648
|
+
.icon.datalist-icon[data-v-3115cc27] {
|
|
649
|
+
margin: 0 0.5em;
|
|
650
|
+
}
|
|
651
|
+
.icon[data-v-3115cc27] svg {
|
|
652
|
+
height: 100%;
|
|
653
|
+
width: 100%;
|
|
654
|
+
}
|
|
655
|
+
.icon[data-v-3115cc27] svg * {
|
|
656
|
+
fill: currentColor !important;
|
|
644
657
|
}.field-between__separator[data-v-f25b520b] {
|
|
645
658
|
margin-left: 10px;
|
|
646
659
|
margin-right: 10px;
|
|
@@ -1628,16 +1641,14 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1628
1641
|
display: flex;
|
|
1629
1642
|
justify-content: flex-end;
|
|
1630
1643
|
gap: 1em;
|
|
1631
|
-
}.stepper-header[data-v-
|
|
1644
|
+
}.stepper-header[data-v-c132d5cd] {
|
|
1632
1645
|
display: flex;
|
|
1633
1646
|
justify-content: center;
|
|
1634
1647
|
align-items: center;
|
|
1635
|
-
position: sticky;
|
|
1636
|
-
z-index: 2;
|
|
1637
1648
|
top: 0;
|
|
1638
1649
|
padding: 2em 0;
|
|
1639
1650
|
}
|
|
1640
|
-
.stepper-header[data-v-
|
|
1651
|
+
.stepper-header[data-v-c132d5cd]::before {
|
|
1641
1652
|
content: "";
|
|
1642
1653
|
display: block;
|
|
1643
1654
|
width: 80%;
|
|
@@ -1651,7 +1662,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1651
1662
|
opacity: 0;
|
|
1652
1663
|
transition: opacity 0.2s linear;
|
|
1653
1664
|
}
|
|
1654
|
-
.stepper-header[data-v-
|
|
1665
|
+
.stepper-header[data-v-c132d5cd]::after {
|
|
1655
1666
|
content: "";
|
|
1656
1667
|
display: block;
|
|
1657
1668
|
position: absolute;
|
|
@@ -1662,22 +1673,22 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1662
1673
|
background: transparent;
|
|
1663
1674
|
z-index: -1;
|
|
1664
1675
|
}
|
|
1665
|
-
.stepper-header--step[data-v-
|
|
1676
|
+
.stepper-header--step[data-v-c132d5cd] {
|
|
1666
1677
|
display: flex;
|
|
1667
1678
|
justify-content: center;
|
|
1668
1679
|
align-items: center;
|
|
1669
1680
|
margin: 0 10px;
|
|
1670
1681
|
}
|
|
1671
|
-
.stepper-header--step[data-v-
|
|
1682
|
+
.stepper-header--step[data-v-c132d5cd]:first-child {
|
|
1672
1683
|
margin: 0 10px 0 0;
|
|
1673
1684
|
}
|
|
1674
|
-
.stepper-header--step[data-v-
|
|
1685
|
+
.stepper-header--step[data-v-c132d5cd]:last-child {
|
|
1675
1686
|
margin: 0;
|
|
1676
1687
|
}
|
|
1677
|
-
.stepper-header--step.clickable:hover div[data-v-
|
|
1688
|
+
.stepper-header--step.clickable:hover div[data-v-c132d5cd] {
|
|
1678
1689
|
cursor: pointer;
|
|
1679
1690
|
}
|
|
1680
|
-
.stepper-header--indicator[data-v-
|
|
1691
|
+
.stepper-header--indicator[data-v-c132d5cd] {
|
|
1681
1692
|
width: 30px;
|
|
1682
1693
|
height: 30px;
|
|
1683
1694
|
display: flex;
|
|
@@ -1689,22 +1700,22 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1689
1700
|
font-weight: bold;
|
|
1690
1701
|
margin-right: 10px;
|
|
1691
1702
|
}
|
|
1692
|
-
.stepper-header--indicator.active[data-v-
|
|
1703
|
+
.stepper-header--indicator.active[data-v-c132d5cd] {
|
|
1693
1704
|
border: none;
|
|
1694
1705
|
background-color: var(--bms-main-100);
|
|
1695
1706
|
color: white;
|
|
1696
1707
|
}
|
|
1697
|
-
.stepper-header--indicator.complete[data-v-
|
|
1708
|
+
.stepper-header--indicator.complete[data-v-c132d5cd] {
|
|
1698
1709
|
border: none;
|
|
1699
1710
|
background-color: var(--bms-success-color);
|
|
1700
1711
|
color: white;
|
|
1701
1712
|
font-size: 20px;
|
|
1702
1713
|
}
|
|
1703
|
-
.stepper-header--separator[data-v-
|
|
1714
|
+
.stepper-header--separator[data-v-c132d5cd] {
|
|
1704
1715
|
width: 30px;
|
|
1705
1716
|
margin-left: 10px;
|
|
1706
1717
|
}
|
|
1707
|
-
.stepper-body[data-v-
|
|
1718
|
+
.stepper-body[data-v-c132d5cd] {
|
|
1708
1719
|
margin: 10px 10px 0 10px;
|
|
1709
1720
|
}a[data-v-02d02028] {
|
|
1710
1721
|
cursor: pointer;
|
|
@@ -2402,19 +2413,6 @@ nav .additional[data-v-731a6d8c] {
|
|
|
2402
2413
|
.indicator-scale-leave-from[data-v-6047ada7] {
|
|
2403
2414
|
opacity: 1;
|
|
2404
2415
|
transform: scale(1);
|
|
2405
|
-
}.icon[data-v-3115cc27] {
|
|
2406
|
-
height: 1em;
|
|
2407
|
-
width: 1em;
|
|
2408
|
-
}
|
|
2409
|
-
.icon.datalist-icon[data-v-3115cc27] {
|
|
2410
|
-
margin: 0 0.5em;
|
|
2411
|
-
}
|
|
2412
|
-
.icon[data-v-3115cc27] svg {
|
|
2413
|
-
height: 100%;
|
|
2414
|
-
width: 100%;
|
|
2415
|
-
}
|
|
2416
|
-
.icon[data-v-3115cc27] svg * {
|
|
2417
|
-
fill: currentColor !important;
|
|
2418
2416
|
}.filters[data-v-4a441463] {
|
|
2419
2417
|
padding: 16px;
|
|
2420
2418
|
background: var(--bms-white);
|