srf-feathers 1.3.1 → 1.3.2

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.
Files changed (33) hide show
  1. package/build/assets/Release_notes_SRGSSRTypeVF_V2.000.txt +37 -0
  2. package/build/assets/SRGSSRTypeSerifText_W_Rg.woff2 +0 -0
  3. package/build/assets/SRGSSRTypeVF_Display_W_Wght.woff2 +0 -0
  4. package/build/assets/SRGSSRTypeVF_Text_W_Wght.woff2 +0 -0
  5. package/build/elements/Icon/Icon.d.ts +1 -0
  6. package/build/index.esm.js +10 -11
  7. package/build/index.esm.js.map +1 -1
  8. package/build/index.js +10 -11
  9. package/build/index.js.map +1 -1
  10. package/build/scss/Button.scss +397 -0
  11. package/build/scss/Icon.scss +66 -0
  12. package/build/scss/Tooltip.scss +155 -0
  13. package/build/scss/breakpoints.scss +55 -0
  14. package/build/scss/colors.scss +181 -0
  15. package/build/scss/elements/Button/Button.scss +397 -0
  16. package/build/scss/elements/Button.scss +405 -0
  17. package/build/scss/elements/Icon/Icon.scss +66 -0
  18. package/build/scss/elements/Icon.scss +66 -0
  19. package/build/scss/elements/Tooltip/Tooltip.scss +155 -0
  20. package/build/scss/elements/Tooltip.scss +155 -0
  21. package/build/scss/fonts.scss +38 -0
  22. package/build/scss/foundation/breakpoints.scss +55 -0
  23. package/build/scss/foundation/colors.scss +182 -0
  24. package/build/scss/foundation/fonts.scss +38 -0
  25. package/build/scss/foundation/globals.scss +107 -0
  26. package/build/scss/foundation/mixins.scss +64 -0
  27. package/build/scss/foundation/typography.scss +21 -0
  28. package/build/scss/foundation/variables.scss +40 -0
  29. package/build/scss/globals.scss +107 -0
  30. package/build/scss/mixins.scss +64 -0
  31. package/build/scss/typography.scss +21 -0
  32. package/build/scss/variables.scss +40 -0
  33. package/package.json +1 -1
@@ -0,0 +1,37 @@
1
+ ==Release notes SRG SSR Type VF==
2
+
3
+ Compiler of release notes: Dalton Maag
4
+ Designer: Dalton Maag
5
+ Designer URL: daltonmaag.com
6
+
7
+ Release date: 2020-11-18
8
+
9
+ Change log:
10
+ - v2.000: This is the first release of the VF.
11
+
12
+ Basic information
13
+ 1 Font name: SRG SSR Type VF
14
+ 2 TrueType Version record: 2.000
15
+ 3 Character Set: Western European Latin
16
+ 4 Supported scripts: Latin
17
+ 5 Number of glyphs: 325
18
+ 6 Usage: Text and Display
19
+ 7 Number of axes: 1
20
+ 8 Axes:
21
+ - Weight
22
+ tag: wght
23
+ range: 300 (Light) - 800 (Heavy)
24
+ 5 Named instances per style:
25
+ - Text: Text Light, Text Regular, Text Medium, Text Bold, Text Heavy.
26
+ - Display: Display Light, Display Regular, Display Medium, Display Bold, Display Heavy
27
+
28
+ Technology
29
+ 1 File formats: The files have been delivered as variable fonts in the TrueType-based OpenType format, for use in all major Operating Systems, TTF for use in apps, and in web font format: WOFF2.
30
+ 2 Embedding settings: Editing of the document is allowed (editable mode); subsetting is allowed.
31
+ 3 Screen optimization information: No screen optimization.
32
+ 4 Default numerals: Proportional. Tabular figures accessible via OpenType features.
33
+
34
+ Other Information
35
+ The fonts contain the following OpenType Stylistic Sets:
36
+ - ss01: alternates K, P, R, Thorn
37
+
@@ -120,4 +120,5 @@ export declare const ReviewIcon: React.FC<IconProps>;
120
120
  export declare const ReviewRemovedIcon: React.FC<IconProps>;
121
121
  export declare const SortArrowsIcon: React.FC<IconProps>;
122
122
  export declare const ThreadIcon: React.FC<IconProps>;
123
+ export declare const ParkingIcon: React.FC<IconProps>;
123
124
  export default Icon;
@@ -43,9 +43,9 @@ function createCommonjsModule(fn) {
43
43
  }
44
44
 
45
45
  /*!
46
- Copyright (c) 2018 Jed Watson.
47
- Licensed under the MIT License (MIT), see
48
- http://jedwatson.github.io/classnames
46
+ Copyright (c) 2018 Jed Watson.
47
+ Licensed under the MIT License (MIT), see
48
+ http://jedwatson.github.io/classnames
49
49
  */
50
50
 
51
51
  var classnames = createCommonjsModule(function (module) {
@@ -74,15 +74,14 @@ var classnames = createCommonjsModule(function (module) {
74
74
  }
75
75
  }
76
76
  } else if (argType === 'object') {
77
- if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {
78
- classes.push(arg.toString());
79
- continue;
80
- }
81
-
82
- for (var key in arg) {
83
- if (hasOwn.call(arg, key) && arg[key]) {
84
- classes.push(key);
77
+ if (arg.toString === Object.prototype.toString) {
78
+ for (var key in arg) {
79
+ if (hasOwn.call(arg, key) && arg[key]) {
80
+ classes.push(key);
81
+ }
85
82
  }
83
+ } else {
84
+ classes.push(arg.toString());
86
85
  }
87
86
  }
88
87
  }