srf-feathers 1.7.4 → 1.7.6

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.
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { BadgeModifiersType } from './Badge';
3
2
  export interface BadgeProps {
4
3
  modifier?: BadgeModifiersType | Array<BadgeModifiersType>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { HintModifiersType } from './Hint';
3
2
  export interface HintProps {
4
3
  modifier?: HintModifiersType | Array<HintModifiersType>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { IconModifiersType } from './Icon';
3
2
  export interface IconProps {
4
3
  modifier?: IconModifiersType | Array<IconModifiersType>;
@@ -17,20 +17,6 @@ $font-path: '../assets/fonts/' !default;
17
17
  font-display: swap;
18
18
  }
19
19
 
20
- /* this FAUX ITALIC font definition is needed as a workaround for a chrome bug.
21
- chrome does not render `font-style: italic` in faux italic for variable fonts if there's a font-weight range defined.
22
- see: https://bugs.chromium.org/p/chromium/issues/detail?id=971610 */
23
- @font-face {
24
- font-family: 'SRG_SSR_Text_FauxItalic_VF';
25
- src:
26
- url('#{$font_path}SRGSSRTypeVF_Text_W_Wght.woff2')
27
- format('woff2-variations'),
28
- /* new standard */ url('#{$font_path}SRGSSRTypeVF_Text_W_Wght.woff2')
29
- format('woff2');
30
- /* older style */
31
- font-display: swap;
32
- }
33
-
34
20
  @font-face {
35
21
  font-family: 'SRG_SSR_Display_VF';
36
22
  src:
@@ -22,12 +22,8 @@
22
22
  font-family: 'SRG_SSR_Serif_Regular', serif;
23
23
  }
24
24
 
25
- @mixin fontFamilySerifDisplayMedium {
26
- font-family: 'SRG_SSR_Serif_Display_Medium', serif;
27
- }
28
-
29
25
  @mixin fontFamilyFauxItalic {
30
- font-family: 'SRG_SSR_Text_FauxItalic_VF', sans-serif;
26
+ font-family: 'SRG_SSR_Text_VF', sans-serif;
31
27
  font-style: italic;
32
28
  font-synthesis: style;
33
29
  }
@@ -3579,7 +3579,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3579
3579
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3580
3580
  PERFORMANCE OF THIS SOFTWARE.
3581
3581
  ***************************************************************************** */
3582
- /* global Reflect, Promise, SuppressedError, Symbol */
3582
+ /* global Reflect, Promise, SuppressedError, Symbol, Iterator */
3583
3583
 
3584
3584
 
3585
3585
  function __spreadArray(to, from, pack) {