mirror of
https://github.com/supabase/supabase.git
synced 2026-05-09 10:19:50 -04:00
156f904018
- move navigation components to `apps/studio/components/layouts/Navigation` - add [FloatingMobileToolbar](https://github.com/supabase/supabase/pull/43444/changes#diff-3dffe47fd51ca851d612d8728e03b2dc344ec213d4f3a46a824d3fa32a7cc851) as quick access to tools such as search, assistant, inline editor, etc - behind feature flag and feature preview (true by default as it's a bit annoying to have to enable it all the time as previews are stored in local-storage) - fix sidebar panels closing on viewport resizing (regression from previous pr) https://github.com/user-attachments/assets/d6881e3b-5128-4306-bb82-3ca39c755dba <img width="986" height="697" alt="Screenshot 2026-03-12 at 12 40 11" src="https://github.com/user-attachments/assets/da8511e2-7d01-4237-b814-596031c747c5" />
29 lines
872 B
TypeScript
29 lines
872 B
TypeScript
type CLIVersionSemver = { major: number; minor: number; patch: number }
|
|
|
|
// [Joshen] Specifically in the syntax of `v0.0.0`
|
|
export const getSemver = (version?: string) => {
|
|
if (!version) return undefined
|
|
const [major, minor, patch] = version.slice(1).split('.')
|
|
return { major: Number(major), minor: Number(minor), patch: Number(patch) }
|
|
}
|
|
|
|
export const semverLte = (a: CLIVersionSemver, b: CLIVersionSemver) => {
|
|
if (
|
|
a.major > b.major ||
|
|
(a.major === b.major && a.minor > b.minor) ||
|
|
(a.major === b.major && a.minor === b.minor && a.patch > b.patch)
|
|
)
|
|
return false
|
|
return true
|
|
}
|
|
|
|
export const semverGte = (a: CLIVersionSemver, b: CLIVersionSemver) => {
|
|
if (
|
|
a.major < b.major ||
|
|
(a.major === b.major && a.minor < b.minor) ||
|
|
(a.major === b.major && a.minor === b.minor && a.patch < b.patch)
|
|
)
|
|
return false
|
|
return true
|
|
}
|