@ouestfrance/sipa-bms-ui 8.34.0 → 8.35.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/BmsInputCode.vue.d.ts +4 -2
- package/dist/components/form/bms-input-code.helper.d.ts +2 -0
- package/dist/components/form/bms-input-code.helper.spec.d.ts +1 -0
- package/dist/components/layout/BmsFloatingWindow.vue.d.ts +1 -0
- package/dist/sipa-bms-ui.css +18 -13
- package/dist/sipa-bms-ui.es.js +4864 -4773
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +4864 -4773
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +11 -11
- package/src/components/form/BmsInputCode.stories.js +38 -0
- package/src/components/form/BmsInputCode.vue +20 -2
- package/src/components/form/bms-input-code.helper.spec.ts +111 -0
- package/src/components/form/bms-input-code.helper.ts +45 -0
- package/src/components/layout/BmsFloatingWindow.stories.js +5 -1
- package/src/components/layout/BmsFloatingWindow.vue +7 -0
|
@@ -9,9 +9,11 @@ type __VLS_PublicProps = {
|
|
|
9
9
|
modelValue?: typeof input['value'];
|
|
10
10
|
} & __VLS_Props;
|
|
11
11
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (...args:
|
|
12
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
13
|
+
"click-json-path": (path: string) => any;
|
|
13
14
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
-
"onUpdate:modelValue"?: ((...args:
|
|
15
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
16
|
+
"onClick-json-path"?: ((path: string) => any) | undefined;
|
|
15
17
|
}>, {
|
|
16
18
|
modelValue: string;
|
|
17
19
|
errors: (string | import('../..').Caption)[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/sipa-bms-ui.css
CHANGED
|
@@ -954,7 +954,7 @@ input[type=checkbox][data-v-e1d94c62]:checked::before {
|
|
|
954
954
|
}
|
|
955
955
|
.input-checkbox-group-caption-wrapper.column[data-v-3768fc44] {
|
|
956
956
|
flex-direction: column;
|
|
957
|
-
}.code-mirror[data-v-
|
|
957
|
+
}.code-mirror[data-v-89cfc77f] {
|
|
958
958
|
max-height: 50rem;
|
|
959
959
|
width: 100%;
|
|
960
960
|
overflow: auto;
|
|
@@ -1615,7 +1615,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1615
1615
|
position: absolute;
|
|
1616
1616
|
border-radius: 50%;
|
|
1617
1617
|
filter: blur(10px);
|
|
1618
|
-
}.floating-window-wrapper[data-v-
|
|
1618
|
+
}.floating-window-wrapper[data-v-bdf13cba] {
|
|
1619
1619
|
--breakpoint: 900px;
|
|
1620
1620
|
container-name: floating-window;
|
|
1621
1621
|
container-type: inline-size;
|
|
@@ -1629,7 +1629,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1629
1629
|
align-items: center;
|
|
1630
1630
|
pointer-events: none;
|
|
1631
1631
|
}
|
|
1632
|
-
.floating-window-wrapper .floating-window__drag-overlay[data-v-
|
|
1632
|
+
.floating-window-wrapper .floating-window__drag-overlay[data-v-bdf13cba] {
|
|
1633
1633
|
position: fixed;
|
|
1634
1634
|
top: 0;
|
|
1635
1635
|
left: 0;
|
|
@@ -1639,7 +1639,7 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1639
1639
|
pointer-events: all;
|
|
1640
1640
|
cursor: grabbing;
|
|
1641
1641
|
}
|
|
1642
|
-
.floating-window-wrapper .floating-window[data-v-
|
|
1642
|
+
.floating-window-wrapper .floating-window[data-v-bdf13cba] {
|
|
1643
1643
|
background-color: var(--bms-white);
|
|
1644
1644
|
border-radius: var(--bms-border-radius-large);
|
|
1645
1645
|
border: 1px solid var(--bms-grey-10);
|
|
@@ -1650,20 +1650,20 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1650
1650
|
z-index: var(--bms-z-index-modal);
|
|
1651
1651
|
transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
1652
1652
|
}
|
|
1653
|
-
.floating-window-wrapper .floating-window--expanded[data-v-
|
|
1653
|
+
.floating-window-wrapper .floating-window--expanded[data-v-bdf13cba] {
|
|
1654
1654
|
border-radius: 0;
|
|
1655
1655
|
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
1656
1656
|
}
|
|
1657
|
-
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-
|
|
1657
|
+
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-bdf13cba] {
|
|
1658
1658
|
cursor: default;
|
|
1659
1659
|
}
|
|
1660
|
-
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-
|
|
1660
|
+
.floating-window-wrapper .floating-window--expanded .floating-window__header[data-v-bdf13cba]:active {
|
|
1661
1661
|
cursor: default;
|
|
1662
1662
|
}
|
|
1663
|
-
.floating-window-wrapper .floating-window--dragging[data-v-
|
|
1663
|
+
.floating-window-wrapper .floating-window--dragging[data-v-bdf13cba] {
|
|
1664
1664
|
transition: none;
|
|
1665
1665
|
}
|
|
1666
|
-
.floating-window-wrapper .floating-window__header[data-v-
|
|
1666
|
+
.floating-window-wrapper .floating-window__header[data-v-bdf13cba] {
|
|
1667
1667
|
display: flex;
|
|
1668
1668
|
justify-content: space-between;
|
|
1669
1669
|
align-items: center;
|
|
@@ -1672,19 +1672,24 @@ input[type=radio][data-v-c0c9efa3]:checked::before {
|
|
|
1672
1672
|
cursor: grab;
|
|
1673
1673
|
user-select: none;
|
|
1674
1674
|
}
|
|
1675
|
-
.floating-window-wrapper .floating-window__header[data-v-
|
|
1675
|
+
.floating-window-wrapper .floating-window__header[data-v-bdf13cba]:active {
|
|
1676
1676
|
cursor: grabbing;
|
|
1677
1677
|
}
|
|
1678
|
-
.floating-window-wrapper .floating-window__header__title[data-v-
|
|
1678
|
+
.floating-window-wrapper .floating-window__header__title[data-v-bdf13cba] {
|
|
1679
1679
|
margin: 0;
|
|
1680
1680
|
}
|
|
1681
|
-
.floating-window-wrapper .floating-
|
|
1681
|
+
.floating-window-wrapper .floating-window__header__buttons[data-v-bdf13cba] {
|
|
1682
|
+
display: flex;
|
|
1683
|
+
align-items: center;
|
|
1684
|
+
gap: 0.5em;
|
|
1685
|
+
}
|
|
1686
|
+
.floating-window-wrapper .floating-window__content[data-v-bdf13cba] {
|
|
1682
1687
|
overflow-y: auto;
|
|
1683
1688
|
height: auto;
|
|
1684
1689
|
scrollbar-width: thin;
|
|
1685
1690
|
}
|
|
1686
1691
|
@container floating-window (min-width:900px) {
|
|
1687
|
-
.floating-window[data-v-
|
|
1692
|
+
.floating-window[data-v-bdf13cba] {
|
|
1688
1693
|
max-width: 80%;
|
|
1689
1694
|
}
|
|
1690
1695
|
}.form-section[data-v-b5bab57e] {
|