Skip to content

Add Baseline status to hovercards #428

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
update custom-data
  • Loading branch information
rviscomi committed Mar 18, 2025
commit 92f624d6ca28e14f0f1324a50303ccb5dc669dc6
9 changes: 8 additions & 1 deletion src/cssLanguageTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ export interface IPropertyData {
name: string;
description?: string | MarkupContent;
browsers?: string[];
baselineStatus?: BaselineStatus;
restrictions?: string[];
status?: EntryStatus;
syntax?: string;
Expand Down Expand Up @@ -242,6 +243,12 @@ export interface ICSSDataProvider {
providePseudoElements(): IPseudoElementData[];
}

export interface BaselineStatus {
baseline: string;
baseline_low_date?: string;
baseline_high_date?: string;
}

export enum FileType {
/**
* The file type is unknown.
Expand Down Expand Up @@ -314,4 +321,4 @@ export interface CSSFormatConfiguration {
/** @deprecated Use newlineBetweenSelectors instead*/
selectorSeparatorNewline?: boolean;

}
}
Loading