Skip to content
Merged
Changes from 2 commits
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
4 changes: 4 additions & 0 deletions src/declarations/stencil-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1583,6 +1583,10 @@ export namespace JSXBase {
tabIndex?: number;
tabindex?: number | string;
title?: string;
// The `'yes' | 'no'` literals provide autocomplete for the common values,
// while `(string & {})` keeps that autocomplete without rejecting values
// that are widened to `string` (e.g. spread from an object literal).
Comment thread
erik-gullberg marked this conversation as resolved.
Outdated
translate?: 'yes' | 'no' | (string & {});
// These types don't allow you to use popover as a boolean attribute
// so you can't write HTML like `<div popover>` and get the default value.
// Developer must explicitly specify one of the valid popover values or it will fallback
Expand Down
Loading