@simplybusiness/theme-core 7.14.8 → 7.14.9
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/CHANGELOG.md +8 -0
- package/dist/index.css +148 -156
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -81,6 +81,10 @@ h6.mobius-accordion__link-text,
|
|
|
81
81
|
transform:rotateZ(-180deg);
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
.mobius-alert__icon{
|
|
85
|
+
margin-right:var(--size-sm);
|
|
86
|
+
}
|
|
87
|
+
|
|
84
88
|
.mobius-alert{
|
|
85
89
|
display:flex;
|
|
86
90
|
flex-grow:1;
|
|
@@ -122,10 +126,6 @@ h6.mobius-accordion__link-text,
|
|
|
122
126
|
background-color:var(--color-error-background);
|
|
123
127
|
}
|
|
124
128
|
|
|
125
|
-
.mobius-alert__icon{
|
|
126
|
-
margin-right:var(--size-sm);
|
|
127
|
-
}
|
|
128
|
-
|
|
129
129
|
.mobius-alert__icon .mobius-icon{
|
|
130
130
|
height:1.32em;
|
|
131
131
|
}
|
|
@@ -143,10 +143,6 @@ h6.mobius-accordion__link-text,
|
|
|
143
143
|
.mobius-breadcrumb{
|
|
144
144
|
box-sizing:border-box;
|
|
145
145
|
background-color:var(--color-background-light);
|
|
146
|
-
padding-top:var(--size-md);
|
|
147
|
-
padding-bottom:var(--size-md);
|
|
148
|
-
padding-left:var(--size-sm);
|
|
149
|
-
padding-right:var(--size-sm);
|
|
150
146
|
display:flex;
|
|
151
147
|
flex-direction:row;
|
|
152
148
|
list-style:none;
|
|
@@ -927,9 +923,6 @@ h6.mobius-accordion__link-text,
|
|
|
927
923
|
background-color:var(--color-background-highlight);
|
|
928
924
|
color:var(--color-primary);
|
|
929
925
|
border-color:var(--color-primary);
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
.mobius-dropdown-menu__item:focus-visible{
|
|
933
926
|
outline:none;
|
|
934
927
|
}
|
|
935
928
|
|
|
@@ -1318,16 +1311,16 @@ h6.mobius-accordion__link-text,
|
|
|
1318
1311
|
content:" (optional)";
|
|
1319
1312
|
}
|
|
1320
1313
|
|
|
1314
|
+
.mobius-number-field.--hide-spin-buttons{
|
|
1315
|
+
appearance:textfield;
|
|
1316
|
+
-moz-appearance:textfield;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1321
1319
|
.mobius-number-field.--hide-spin-buttons::-webkit-outer-spin-button,.mobius-number-field.--hide-spin-buttons::-webkit-inner-spin-button{
|
|
1322
1320
|
-webkit-appearance:none;
|
|
1323
1321
|
margin:0;
|
|
1324
1322
|
}
|
|
1325
1323
|
|
|
1326
|
-
.mobius-number-field.--hide-spin-buttons{
|
|
1327
|
-
appearance:textfield;
|
|
1328
|
-
-moz-appearance:textfield;
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
1324
|
.mobius-number-field__input-wrapper{
|
|
1332
1325
|
width:100%;
|
|
1333
1326
|
}
|
|
@@ -1565,7 +1558,7 @@ h6.mobius-accordion__link-text,
|
|
|
1565
1558
|
position:relative;
|
|
1566
1559
|
cursor:pointer;
|
|
1567
1560
|
background-color:var(--radio-label-background);
|
|
1568
|
-
|
|
1561
|
+
overflow-wrap:break-word;
|
|
1569
1562
|
}
|
|
1570
1563
|
|
|
1571
1564
|
.mobius-radio__label.--is-disabled{
|
|
@@ -1888,15 +1881,15 @@ h6.mobius-accordion__link-text,
|
|
|
1888
1881
|
cursor:not-allowed;
|
|
1889
1882
|
}
|
|
1890
1883
|
|
|
1891
|
-
.mobius-select:
|
|
1884
|
+
.mobius-select:focus-visible{
|
|
1892
1885
|
border-color:var(--color-primary);
|
|
1893
1886
|
background-color:var(--color-background-input-active);
|
|
1887
|
+
box-shadow:var(--box-shadow-default);
|
|
1894
1888
|
}
|
|
1895
1889
|
|
|
1896
|
-
.mobius-select:
|
|
1890
|
+
.mobius-select:not(.--is-invalid):not(.--is-disabled):hover{
|
|
1897
1891
|
border-color:var(--color-primary);
|
|
1898
1892
|
background-color:var(--color-background-input-active);
|
|
1899
|
-
box-shadow:var(--box-shadow-default);
|
|
1900
1893
|
}
|
|
1901
1894
|
|
|
1902
1895
|
.mobius-select.--is-invalid{
|
|
@@ -1928,61 +1921,6 @@ h6.mobius-accordion__link-text,
|
|
|
1928
1921
|
color:var(--color-error);
|
|
1929
1922
|
}
|
|
1930
1923
|
|
|
1931
|
-
.mobius-slider{
|
|
1932
|
-
position:relative;
|
|
1933
|
-
display:grid;
|
|
1934
|
-
gap:var(--size-xxs);
|
|
1935
|
-
}
|
|
1936
|
-
|
|
1937
|
-
.mobius-slider.--is-primary .mobius-slider__track{
|
|
1938
|
-
background-color:var(--slider-primary-track-background);
|
|
1939
|
-
}
|
|
1940
|
-
|
|
1941
|
-
.mobius-slider.--is-primary .mobius-slider__track::-webkit-slider-thumb{
|
|
1942
|
-
background-color:var(--slider-primary-thumb-background);
|
|
1943
|
-
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-primary-thumb-background);
|
|
1944
|
-
}
|
|
1945
|
-
|
|
1946
|
-
.mobius-slider.--is-primary .mobius-slider__track::-moz-range-thumb{
|
|
1947
|
-
background-color:var(--slider-primary-thumb-background);
|
|
1948
|
-
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-primary-thumb-background);
|
|
1949
|
-
}
|
|
1950
|
-
|
|
1951
|
-
.mobius-slider.--is-secondary .mobius-slider__track{
|
|
1952
|
-
background-color:var(--slider-secondary-track-background);
|
|
1953
|
-
}
|
|
1954
|
-
|
|
1955
|
-
.mobius-slider.--is-secondary .mobius-slider__track::-webkit-slider-thumb{
|
|
1956
|
-
background-color:var(--slider-secondary-thumb-background);
|
|
1957
|
-
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-secondary-thumb-background);
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
|
-
.mobius-slider.--is-secondary .mobius-slider__track::-moz-range-thumb{
|
|
1961
|
-
background-color:var(--slider-secondary-thumb-background);
|
|
1962
|
-
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-secondary-thumb-background);
|
|
1963
|
-
}
|
|
1964
|
-
|
|
1965
|
-
.mobius-slider.--is-disabled{
|
|
1966
|
-
color:var(--color-text-light);
|
|
1967
|
-
cursor:not-allowed;
|
|
1968
|
-
}
|
|
1969
|
-
|
|
1970
|
-
.mobius-slider.--is-disabled .mobius-slider__track{
|
|
1971
|
-
background-color:var(--color-background-light);
|
|
1972
|
-
}
|
|
1973
|
-
|
|
1974
|
-
.mobius-slider.--is-disabled .mobius-slider__track::-webkit-slider-thumb{
|
|
1975
|
-
background-color:var(--color-background-light);
|
|
1976
|
-
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--color-border-medium);
|
|
1977
|
-
cursor:not-allowed;
|
|
1978
|
-
}
|
|
1979
|
-
|
|
1980
|
-
.mobius-slider.--is-disabled .mobius-slider__track::-moz-range-thumb{
|
|
1981
|
-
background-color:var(--color-background-light);
|
|
1982
|
-
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--color-border-medium);
|
|
1983
|
-
cursor:not-allowed;
|
|
1984
|
-
}
|
|
1985
|
-
|
|
1986
1924
|
.mobius-slider__track-wrapper{
|
|
1987
1925
|
position:relative;
|
|
1988
1926
|
width:100%;
|
|
@@ -2040,6 +1978,61 @@ h6.mobius-accordion__link-text,
|
|
|
2040
1978
|
justify-content:space-between;
|
|
2041
1979
|
}
|
|
2042
1980
|
|
|
1981
|
+
.mobius-slider{
|
|
1982
|
+
position:relative;
|
|
1983
|
+
display:grid;
|
|
1984
|
+
gap:var(--size-xxs);
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
.mobius-slider.--is-primary .mobius-slider__track{
|
|
1988
|
+
background-color:var(--slider-primary-track-background);
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
.mobius-slider.--is-primary .mobius-slider__track::-webkit-slider-thumb{
|
|
1992
|
+
background-color:var(--slider-primary-thumb-background);
|
|
1993
|
+
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-primary-thumb-background);
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
.mobius-slider.--is-primary .mobius-slider__track::-moz-range-thumb{
|
|
1997
|
+
background-color:var(--slider-primary-thumb-background);
|
|
1998
|
+
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-primary-thumb-background);
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.mobius-slider.--is-secondary .mobius-slider__track{
|
|
2002
|
+
background-color:var(--slider-secondary-track-background);
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
.mobius-slider.--is-secondary .mobius-slider__track::-webkit-slider-thumb{
|
|
2006
|
+
background-color:var(--slider-secondary-thumb-background);
|
|
2007
|
+
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-secondary-thumb-background);
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.mobius-slider.--is-secondary .mobius-slider__track::-moz-range-thumb{
|
|
2011
|
+
background-color:var(--slider-secondary-thumb-background);
|
|
2012
|
+
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--slider-secondary-thumb-background);
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
.mobius-slider.--is-disabled{
|
|
2016
|
+
color:var(--color-text-light);
|
|
2017
|
+
cursor:not-allowed;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.mobius-slider.--is-disabled .mobius-slider__track{
|
|
2021
|
+
background-color:var(--color-background-light);
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.mobius-slider.--is-disabled .mobius-slider__track::-webkit-slider-thumb{
|
|
2025
|
+
background-color:var(--color-background-light);
|
|
2026
|
+
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--color-border-medium);
|
|
2027
|
+
cursor:not-allowed;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.mobius-slider.--is-disabled .mobius-slider__track::-moz-range-thumb{
|
|
2031
|
+
background-color:var(--color-background-light);
|
|
2032
|
+
box-shadow:0 0 0 var(--size-xxs) var(--color-background), 0 0 0 5px var(--color-border-medium);
|
|
2033
|
+
cursor:not-allowed;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2043
2036
|
.mobius-stack{
|
|
2044
2037
|
display:grid;
|
|
2045
2038
|
flex:1 1 auto;
|
|
@@ -2071,24 +2064,6 @@ h6.mobius-accordion__link-text,
|
|
|
2071
2064
|
gap:var(--size-xl);
|
|
2072
2065
|
}
|
|
2073
2066
|
|
|
2074
|
-
.mobius-switch{
|
|
2075
|
-
position:relative;
|
|
2076
|
-
display:inline-block;
|
|
2077
|
-
border-radius:30px;
|
|
2078
|
-
width:55px;
|
|
2079
|
-
height:30px;
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
.mobius-switch input{
|
|
2083
|
-
opacity:0;
|
|
2084
|
-
width:0;
|
|
2085
|
-
height:0;
|
|
2086
|
-
}
|
|
2087
|
-
|
|
2088
|
-
:is(.mobius-switch input):focus-visible + .mobius-switch__slider{
|
|
2089
|
-
box-shadow:var(--box-shadow-default);
|
|
2090
|
-
}
|
|
2091
|
-
|
|
2092
2067
|
.mobius-switch__slider{
|
|
2093
2068
|
position:absolute;
|
|
2094
2069
|
cursor:pointer;
|
|
@@ -2113,6 +2088,24 @@ h6.mobius-accordion__link-text,
|
|
|
2113
2088
|
transition:var(--switch-transition-duration);
|
|
2114
2089
|
}
|
|
2115
2090
|
|
|
2091
|
+
.mobius-switch{
|
|
2092
|
+
position:relative;
|
|
2093
|
+
display:inline-block;
|
|
2094
|
+
border-radius:30px;
|
|
2095
|
+
width:55px;
|
|
2096
|
+
height:30px;
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
.mobius-switch input{
|
|
2100
|
+
opacity:0;
|
|
2101
|
+
width:0;
|
|
2102
|
+
height:0;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
:is(.mobius-switch input):focus-visible + .mobius-switch__slider{
|
|
2106
|
+
box-shadow:var(--box-shadow-default);
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2116
2109
|
.mobius-switch--checked .mobius-switch__slider{
|
|
2117
2110
|
background-color:var(--color-primary);
|
|
2118
2111
|
}
|
|
@@ -2139,7 +2132,6 @@ h6.mobius-accordion__link-text,
|
|
|
2139
2132
|
|
|
2140
2133
|
.mobius-table{
|
|
2141
2134
|
display:table;
|
|
2142
|
-
box-sizing:border-box;
|
|
2143
2135
|
width:100%;
|
|
2144
2136
|
text-align:left;
|
|
2145
2137
|
border-collapse:collapse;
|
|
@@ -2308,15 +2300,15 @@ h6.mobius-accordion__link-text,
|
|
|
2308
2300
|
background-color:var(--color-background-input);
|
|
2309
2301
|
}
|
|
2310
2302
|
|
|
2311
|
-
.mobius-text-area__input:
|
|
2303
|
+
.mobius-text-area__input:focus-visible{
|
|
2312
2304
|
border-color:var(--color-primary);
|
|
2313
2305
|
background-color:var(--color-background-input-active);
|
|
2306
|
+
box-shadow:var(--box-shadow-default);
|
|
2314
2307
|
}
|
|
2315
2308
|
|
|
2316
|
-
.mobius-text-area__input:
|
|
2309
|
+
.mobius-text-area__input:hover:not(.--is-disabled):not(.mobius-text-area__input.--is-invalid){
|
|
2317
2310
|
border-color:var(--color-primary);
|
|
2318
2311
|
background-color:var(--color-background-input-active);
|
|
2319
|
-
box-shadow:var(--box-shadow-default);
|
|
2320
2312
|
}
|
|
2321
2313
|
|
|
2322
2314
|
.mobius-text-area__input.--is-disabled{
|
|
@@ -2356,65 +2348,6 @@ h6.mobius-accordion__link-text,
|
|
|
2356
2348
|
align-items:stretch;
|
|
2357
2349
|
}
|
|
2358
2350
|
|
|
2359
|
-
.mobius-text:is(.mobius-text-field__prefix-outside,.mobius-text-field__suffix-outside){
|
|
2360
|
-
margin-top:0;
|
|
2361
|
-
margin-bottom:0;
|
|
2362
|
-
align-self:center;
|
|
2363
|
-
}
|
|
2364
|
-
|
|
2365
|
-
.mobius-text-field__prefix-outside.mobius-button{
|
|
2366
|
-
border-radius:var(--input-border-radius);
|
|
2367
|
-
border-top-right-radius:0;
|
|
2368
|
-
border-bottom-right-radius:0;
|
|
2369
|
-
}
|
|
2370
|
-
|
|
2371
|
-
.mobius-text-field__prefix-outside.mobius-button + .mobius-text-field__input-wrapper{
|
|
2372
|
-
border-top-left-radius:0;
|
|
2373
|
-
border-bottom-left-radius:0;
|
|
2374
|
-
}
|
|
2375
|
-
|
|
2376
|
-
.mobius-text-field__prefix-outside.mobius-text{
|
|
2377
|
-
padding-right:var(--size-sm);
|
|
2378
|
-
}
|
|
2379
|
-
|
|
2380
|
-
.mobius-text-field__suffix-outside.mobius-button{
|
|
2381
|
-
border-radius:var(--input-border-radius);
|
|
2382
|
-
border-top-left-radius:0;
|
|
2383
|
-
border-bottom-left-radius:0;
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
.mobius-text-field__suffix-outside.mobius-text{
|
|
2387
|
-
padding-left:var(--size-sm);
|
|
2388
|
-
}
|
|
2389
|
-
|
|
2390
|
-
.mobius-text-field__prefix-inside,
|
|
2391
|
-
.mobius-text-field__suffix-inside{
|
|
2392
|
-
display:flex;
|
|
2393
|
-
}
|
|
2394
|
-
|
|
2395
|
-
:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside):not(.--is-invalid):not(.--is-disabled){
|
|
2396
|
-
color:var(--color-primary);
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
.mobius-button:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside){
|
|
2400
|
-
min-height:100%;
|
|
2401
|
-
border-radius:0;
|
|
2402
|
-
align-self:stretch;
|
|
2403
|
-
}
|
|
2404
|
-
|
|
2405
|
-
.mobius-text:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside){
|
|
2406
|
-
margin-top:0;
|
|
2407
|
-
margin-bottom:0;
|
|
2408
|
-
}
|
|
2409
|
-
|
|
2410
|
-
.mobius-text-field__prefix-inside{
|
|
2411
|
-
padding-left:var(--size-sm);
|
|
2412
|
-
}
|
|
2413
|
-
|
|
2414
|
-
.mobius-text-field__suffix-inside{
|
|
2415
|
-
padding-right:var(--size-sm);
|
|
2416
|
-
}
|
|
2417
|
-
|
|
2418
2351
|
.mobius-text-field__input-wrapper{
|
|
2419
2352
|
display:flex;
|
|
2420
2353
|
flex:1 1 0;
|
|
@@ -2467,6 +2400,65 @@ h6.mobius-accordion__link-text,
|
|
|
2467
2400
|
color:var(--color-error);
|
|
2468
2401
|
}
|
|
2469
2402
|
|
|
2403
|
+
.mobius-text:is(.mobius-text-field__prefix-outside,.mobius-text-field__suffix-outside){
|
|
2404
|
+
margin-top:0;
|
|
2405
|
+
margin-bottom:0;
|
|
2406
|
+
align-self:center;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
.mobius-text-field__prefix-outside.mobius-button{
|
|
2410
|
+
border-radius:var(--input-border-radius);
|
|
2411
|
+
border-top-right-radius:0;
|
|
2412
|
+
border-bottom-right-radius:0;
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
.mobius-text-field__prefix-outside.mobius-button + .mobius-text-field__input-wrapper{
|
|
2416
|
+
border-top-left-radius:0;
|
|
2417
|
+
border-bottom-left-radius:0;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
.mobius-text-field__prefix-outside.mobius-text{
|
|
2421
|
+
padding-right:var(--size-sm);
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.mobius-text-field__suffix-outside.mobius-button{
|
|
2425
|
+
border-radius:var(--input-border-radius);
|
|
2426
|
+
border-top-left-radius:0;
|
|
2427
|
+
border-bottom-left-radius:0;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
.mobius-text-field__suffix-outside.mobius-text{
|
|
2431
|
+
padding-left:var(--size-sm);
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
.mobius-text-field__prefix-inside{
|
|
2435
|
+
padding-left:var(--size-sm);
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
.mobius-text-field__suffix-inside{
|
|
2439
|
+
padding-right:var(--size-sm);
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
.mobius-text-field__prefix-inside,
|
|
2443
|
+
.mobius-text-field__suffix-inside{
|
|
2444
|
+
display:flex;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside):not(.--is-invalid):not(.--is-disabled){
|
|
2448
|
+
color:var(--color-primary);
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
.mobius-button:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside){
|
|
2452
|
+
min-height:100%;
|
|
2453
|
+
border-radius:0;
|
|
2454
|
+
align-self:stretch;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
.mobius-text:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside){
|
|
2458
|
+
margin-top:0;
|
|
2459
|
+
margin-bottom:0;
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2470
2462
|
.mobius-text-field__input{
|
|
2471
2463
|
flex:1 1 0;
|
|
2472
2464
|
padding:var(--input-field-padding);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.14.
|
|
3
|
+
"version": "7.14.9",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"./fonts": "./dist/fonts.css"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@simplybusiness/mobius": "^6.9.
|
|
31
|
+
"@simplybusiness/mobius": "^6.9.6"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"build-scripts": "^1.1.0"
|