baseline-browser-mapping 2.6.7 → 2.7.0

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/dist/index.d.ts CHANGED
@@ -38,6 +38,13 @@ type Options = {
38
38
  * > NOTE: cannot be used with `widelyAvailableOnDate`.
39
39
  */
40
40
  targetYear?: number;
41
+ /**
42
+ * Pass a boolean that determines whether KaiOS is included in browser mappings. KaiOS implements
43
+ * the Gecko engine used in Firefox. However, KaiOS also has a different interaction paradigm to
44
+ * other browsers and requires extra consideration beyond simple feature compatibility to provide
45
+ * an optimal user experience. Defaults to `false`.
46
+ */
47
+ includeKaiOS?: boolean;
41
48
  };
42
49
  /**
43
50
  * Returns browser versions compatible with specified Baseline targets.
@@ -65,6 +72,12 @@ type AllVersionsOptions = {
65
72
  * Defaults to `false`
66
73
  */
67
74
  useSupports?: boolean;
75
+ /**
76
+ * Whether to include KaiOS in the output. KaiOS implements the Gecko engine used in Firefox.
77
+ * However, KaiOS also has a different interaction paradigm to other browsers and requires extra
78
+ * consideration beyond simple feature compatibility to provide an optimal user experience.
79
+ */
80
+ includeKaiOS?: boolean;
68
81
  };
69
82
  /**
70
83
  * Returns all browser versions known to this module with their level of Baseline support as a JavaScript `Array` (`"array"`), `Object` (`"object"`) or a CSV string (`"csv"`).