@simplybusiness/theme-simplybusiness 1.16.2 → 1.16.4
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 +27 -0
- package/dist/index.css +27 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.16.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [00eb583]
|
|
8
|
+
- Updated dependencies [00eb583]
|
|
9
|
+
- Updated dependencies [a24c824]
|
|
10
|
+
- @simplybusiness/theme-core@7.6.0
|
|
11
|
+
- @simplybusiness/mobius@5.25.0
|
|
12
|
+
- @simplybusiness/mobius-journey@8.1.1
|
|
13
|
+
- @simplybusiness/mobius-datepicker@6.5.5
|
|
14
|
+
|
|
15
|
+
## 1.16.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [9acf157]
|
|
20
|
+
- Updated dependencies [6bb475c]
|
|
21
|
+
- Updated dependencies [a5c2fbd]
|
|
22
|
+
- Updated dependencies [2dedc23]
|
|
23
|
+
- Updated dependencies [c6736ab]
|
|
24
|
+
- Updated dependencies [a5c2fbd]
|
|
25
|
+
- @simplybusiness/mobius-datepicker@6.5.4
|
|
26
|
+
- @simplybusiness/mobius@5.24.3
|
|
27
|
+
- @simplybusiness/mobius-journey@8.1.0
|
|
28
|
+
- @simplybusiness/theme-core@7.5.4
|
|
29
|
+
|
|
3
30
|
## 1.16.2
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -312,7 +312,7 @@ h6.mobius-accordion__link-text,
|
|
|
312
312
|
background-color:transparent;
|
|
313
313
|
font-weight:normal;
|
|
314
314
|
}
|
|
315
|
-
.mobius-button:where(.--variant-link):not(.--is-loading){
|
|
315
|
+
.mobius-button:where(.--variant-link):where(:not(.--is-loading)){
|
|
316
316
|
-webkit-text-decoration:underline;
|
|
317
317
|
-webkit-text-decoration:underline;
|
|
318
318
|
text-decoration:underline;
|
|
@@ -464,6 +464,12 @@ a.mobius-button:focus-visible,
|
|
|
464
464
|
position:relative;
|
|
465
465
|
width:100%;
|
|
466
466
|
}
|
|
467
|
+
.mobius-text-field__input-wrapper.mobius-combobox__input{
|
|
468
|
+
padding-left:var(--size-sm);
|
|
469
|
+
}
|
|
470
|
+
.mobius-text-field__input-wrapper.mobius-combobox__input .mobius-text-field__prefix-inside{
|
|
471
|
+
padding-left:0;
|
|
472
|
+
}
|
|
467
473
|
.mobius-combobox__list{
|
|
468
474
|
position:absolute;
|
|
469
475
|
margin:0;
|
|
@@ -2518,6 +2524,21 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2518
2524
|
--color-background-popover:var(--color-azure-700);
|
|
2519
2525
|
--color-text-popover:#fff;
|
|
2520
2526
|
}
|
|
2527
|
+
:root{
|
|
2528
|
+
--color-pulse:var(--color-focus);
|
|
2529
|
+
--size-pulse:var(--size-sm);
|
|
2530
|
+
}
|
|
2531
|
+
.animate-pulse{
|
|
2532
|
+
animation:pulse-animation 2s infinite;
|
|
2533
|
+
}
|
|
2534
|
+
@keyframes pulse-animation{
|
|
2535
|
+
0%{
|
|
2536
|
+
box-shadow:0 0 0 0px var(--color-pulse);
|
|
2537
|
+
}
|
|
2538
|
+
100%{
|
|
2539
|
+
box-shadow:0 0 0 var(--size-pulse) rgba(0, 0, 0, 0);
|
|
2540
|
+
}
|
|
2541
|
+
}
|
|
2521
2542
|
.mobius{
|
|
2522
2543
|
font-family:var(--font-family);
|
|
2523
2544
|
}
|
|
@@ -3788,6 +3809,11 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3788
3809
|
gap:var(--size-xs);
|
|
3789
3810
|
align-items:center;
|
|
3790
3811
|
}
|
|
3812
|
+
.mobius-collapsible__content-edit-button{
|
|
3813
|
+
-webkit-text-decoration:none;
|
|
3814
|
+
text-decoration:none;
|
|
3815
|
+
padding:0;
|
|
3816
|
+
}
|
|
3791
3817
|
.mobius-actions__back{
|
|
3792
3818
|
display:inline-flex;
|
|
3793
3819
|
gap:var(--size-xs);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.4",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,23 +26,23 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.
|
|
30
|
-
"@simplybusiness/mobius-datepicker": "^6.5.
|
|
31
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
32
|
-
"@simplybusiness/theme-core": "^7.
|
|
29
|
+
"@simplybusiness/mobius": "^5.25.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.5.5",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^8.1.1",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.6.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|
|
36
36
|
"mini-css-extract-plugin": "^2.9.2",
|
|
37
|
-
"postcss": "^8.
|
|
37
|
+
"postcss": "^8.5.3",
|
|
38
38
|
"postcss-discard-comments": "^7.0.3",
|
|
39
39
|
"postcss-import": "^16.1.0",
|
|
40
40
|
"postcss-loader": "^8.1.1",
|
|
41
41
|
"postcss-nested": "^6.2.0",
|
|
42
|
-
"postcss-preset-env": "^10.1.
|
|
42
|
+
"postcss-preset-env": "^10.1.5",
|
|
43
43
|
"postcss-url": "^10.1.3",
|
|
44
44
|
"resolve-url-loader": "^5.0.0",
|
|
45
|
-
"webpack": "^5.
|
|
45
|
+
"webpack": "^5.98.0",
|
|
46
46
|
"webpack-cli": "^5.1.4"
|
|
47
47
|
}
|
|
48
48
|
}
|