Skip to content

Commit 2dd69bc

Browse files
Merge branch 'emotion-js:main' into chore/jest-types-30
2 parents 39723f5 + 14a61e4 commit 2dd69bc

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> **Emotion 11 has been released 🚀 [See the blog post](https://emotion.sh/docs/emotion-11)**
88
9-
[![Backers on Open Collective](https://opencollective.com/emotion/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/emotion/sponsors/badge.svg)](#sponsors) [![npm version](https://badge.fury.io/js/emotion.svg)](https://badge.fury.io/js/emotion)
9+
[![Backers on Open Collective](https://img.shields.io/opencollective/backers/emotion)](#backers) [![Sponsors on Open Collective](https://img.shields.io/opencollective/sponsors/emotion)](#sponsors) [![npm version](https://badge.fury.io/js/emotion.svg)](https://badge.fury.io/js/emotion)
1010
[![Build Status](https://img.shields.io/circleci/project/github/emotion-js/emotion/main.svg)](https://circleci.com/gh/emotion-js/emotion)
1111
[![codecov](https://codecov.io/gh/emotion-js/emotion/branch/main/graph/badge.svg)](https://codecov.io/gh/emotion-js/emotion)
1212
![@emotion/css size](https://img.shields.io/bundlephobia/min/@emotion/css.svg?label=@emotion/css%20size)

packages/is-prop-valid/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @emotion/is-prop-valid
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- [#3306](https://github.com/emotion-js/emotion/pull/3306) [`dfae1cb`](https://github.com/emotion-js/emotion/commit/dfae1cbd98d3ebe449ce322b38cbf4a7fbfbfe96) Thanks [@EnzoAlbornoz](https://github.com/EnzoAlbornoz)! - Adds `popover`, `popoverTarget` and `popoverTargetAction` to the list of allowed props.
8+
39
## 1.3.1
410

511
### Patch Changes

packages/is-prop-valid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/is-prop-valid",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "A function to check whether a prop is valid for HTML and SVG elements",
55
"main": "dist/emotion-is-prop-valid.cjs.js",
66
"module": "dist/emotion-is-prop-valid.esm.js",

packages/is-prop-valid/src/props.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ const props = {
124124
pattern: true,
125125
placeholder: true,
126126
playsInline: true,
127+
popover: true,
128+
popoverTarget: true,
129+
popoverTargetAction: true,
127130
poster: true,
128131
preload: true,
129132
profile: true,

0 commit comments

Comments
 (0)