@simplybusiness/theme-simplybusiness 1.16.3 → 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 +12 -0
- package/dist/index.css +21 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
3
15
|
## 1.16.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -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
|
}
|
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,10 +26,10 @@
|
|
|
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.1.
|
|
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",
|