We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6517aa commit 1d92b2cCopy full SHA for 1d92b2c
src/core/components.js
@@ -78,10 +78,18 @@ export const SOURCE_TYPES = {
78
IMAGE: "image",
79
};
80
81
-// Device Profiles
+// Device Profiles (legacy presets; retained for backward compatibility)
82
export const DEVICE_PROFILES = {
83
DESKTOP_FAST: "desktop-fast",
84
DESKTOP_NORMAL: "desktop-normal",
85
PHONE_NORMAL: "phone-normal",
86
PHONE_SLOW: "phone-slow",
87
88
+
89
+// New capability/quality-based tiers (preferred going forward)
90
+export const QUALITY_TIERS = {
91
+ LOW: "low",
92
+ MEDIUM: "medium",
93
+ HIGH: "high",
94
+ ULTRA: "ultra",
95
+};
0 commit comments