@mdn/browser-compat-data 5.3.26 → 5.3.28

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 (3) hide show
  1. package/data.json +1 -1
  2. package/package.json +1 -1
  3. package/types.d.ts +12 -12
package/package.json CHANGED
@@ -1 +1 @@
1
- {"main":"data.json","exports":{".":"./data.json","./forLegacyNode":"./legacynode.mjs"},"types":"index.ts","name":"@mdn/browser-compat-data","version":"5.3.26","description":"Browser compatibility data provided by MDN Web Docs","repository":{"type":"git","url":"git+https://github.com/mdn/browser-compat-data.git"},"keywords":["bcd","browser-compat-data","browser","compatibility","data","mdn","mozilla"],"author":"MDN Web Docs","license":"CC0-1.0","bugs":{"url":"https://github.com/mdn/browser-compat-data/issues"},"homepage":"https://github.com/mdn/browser-compat-data#readme"}
1
+ {"main":"data.json","exports":{".":"./data.json","./forLegacyNode":"./legacynode.mjs"},"types":"index.ts","name":"@mdn/browser-compat-data","version":"5.3.28","description":"Browser compatibility data provided by MDN Web Docs","repository":{"type":"git","url":"git+https://github.com/mdn/browser-compat-data.git"},"keywords":["bcd","browser-compat-data","browser","compatibility","data","mdn","mozilla"],"author":"MDN Web Docs","license":"CC0-1.0","bugs":{"url":"https://github.com/mdn/browser-compat-data/issues"},"homepage":"https://github.com/mdn/browser-compat-data#readme"}
package/types.d.ts CHANGED
@@ -54,21 +54,21 @@ export interface BrowserStatement {
54
54
  */
55
55
  upstream?: BrowserName;
56
56
  /**
57
- * Whether the browser supports user-toggleable flags that enable or disable features.
58
- */
59
- accepts_flags: boolean;
60
- /**
61
- * Whether the browser supports extensions.
57
+ * The name of the browser's preview channel (e.g. 'Nightly' for Firefox or 'TP' for Safari).
62
58
  */
63
- accepts_webextensions: boolean;
59
+ preview_name?: string;
64
60
  /**
65
61
  * URL of the page where feature flags can be changed (e.g. 'about:config' for Firefox or 'chrome://flags' for Chrome).
66
62
  */
67
63
  pref_url?: string;
68
64
  /**
69
- * The name of the browser's preview channel (e.g. 'Nightly' for Firefox or 'TP' for Safari).
65
+ * Whether the browser supports user-toggleable flags that enable or disable features.
70
66
  */
71
- preview_name?: string;
67
+ accepts_flags: boolean;
68
+ /**
69
+ * Whether the browser supports extensions.
70
+ */
71
+ accepts_webextensions: boolean;
72
72
  /**
73
73
  * The known versions of this browser.
74
74
  */
@@ -87,6 +87,10 @@ export interface ReleaseStatement {
87
87
  * A link to the release notes or changelog for a given release.
88
88
  */
89
89
  release_notes?: string;
90
+ /**
91
+ * A property indicating where in the lifetime cycle this release is in (e.g. current, retired, beta, nightly).
92
+ */
93
+ status: BrowserStatus;
90
94
  /**
91
95
  * Name of the browser's underlying engine.
92
96
  */
@@ -95,10 +99,6 @@ export interface ReleaseStatement {
95
99
  * Version of the engine corresponding to the browser version.
96
100
  */
97
101
  engine_version?: string;
98
- /**
99
- * A property indicating where in the lifetime cycle this release is in (e.g. current, retired, beta, nightly).
100
- */
101
- status: BrowserStatus;
102
102
  }
103
103
 
104
104