Skip to content
This repository was archived by the owner on May 17, 2023. It is now read-only.

Commit 93d020d

Browse files
Release 0.23.10 (#1587)
* Release 0.23.10 * Catchup release 0.23.10 * Fix changelog & pinned dependency * Remove console.log() * Revert fixing broken snapshots from react-select
1 parent 3d514f7 commit 93d020d

File tree

11 files changed

+46
-36
lines changed

11 files changed

+46
-36
lines changed

changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). Currently, this project is using an `0.x` versioning system to indicate its preview status. As such, it does _not_ currently adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). Once we reach production readiness, we will
66
follow semver beginning with our `1.0` release. In the meantime, please read this changelog for information on breaking changes!
77

8+
## 0.23.10 [April 24, 2019]
9+
10+
### Added
11+
12+
- Select: add `autoFocus` support. [#1586]
13+
- Icon: added`expand-arrows`, `compress-arrows`, `history`, `lock-cancel`, `lock-check`, `reload-cancel`, `reload-check`, `key` icons. [#1583]
14+
15+
### Fixed
16+
17+
- Select: pass down `name` property to **react-select**. [#1586]
18+
819
## 0.23.9 [April 24, 2019]
920

1021
### Fixed

core/babel-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@auth0/babel-preset-cosmos",
33
"description": "babel preset to use cosmos",
4-
"version": "0.23.9",
4+
"version": "0.23.10",
55
"repository": "auth0/cosmos",
66
"main": "index.js",
77
"author": "siddharthkp",

core/components/molecules/sidebar/sidebar-link-group.tsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
import * as React from 'react'
2-
import styled from '../../styled'
3-
import SidebarLink from './sidebar-link'
4-
import { __ICONNAMES__ } from '../../atoms/icon'
5-
import Automation from '../../_helpers/automation-attribute'
1+
import * as React from "react";
2+
3+
import Automation from "../../_helpers/automation-attribute";
4+
import { __ICONNAMES__ } from "../../atoms/icon";
5+
import styled from "../../styled";
6+
import SidebarLink from "./sidebar-link";
67

78
export interface ISidebarLinkGroupProps {
89
/** HTML ID of the component */
910
id?: string
1011
icon: string
1112
label: string
12-
children: React.ReactNode,
13+
children: React.ReactNode
1314
/** @internal */
1415
defaultOpen?: boolean
1516
}
@@ -36,7 +37,6 @@ class SidebarLinkGroup extends React.Component<ISidebarLinkGroupProps, ISidebarL
3637
super(props)
3738

3839
const subItemSelected = this.evaluateSubItemSelection(props)
39-
console.log({ subItemSelected })
4040
this.state = { open: props.defaultOpen || false, subItemSelected }
4141
}
4242

@@ -83,5 +83,4 @@ class SidebarLinkGroup extends React.Component<ISidebarLinkGroupProps, ISidebarL
8383
}
8484
}
8585

86-
8786
export default SidebarLinkGroup

core/components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@auth0/cosmos",
33
"description": "Component library for Auth0 Design System",
4-
"version": "0.23.9",
4+
"version": "0.23.10",
55
"repository": "auth0/cosmos",
66
"scripts": {},
77
"keywords": [],
@@ -15,7 +15,7 @@
1515
"prop-types": "15.6.1",
1616
"react-focus-lock": "^1.14.1",
1717
"react-popper": "1.3.2",
18-
"react-select": "^2.3.0",
18+
"react-select": "2.3.0",
1919
"react-sortable-hoc": "^0.8.3",
2020
"styled-components": "3.4.10"
2121
},

examples/perf-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"start": "cosmos-scripts start"
1111
},
1212
"dependencies": {
13-
"@auth0/cosmos": "0.23.9",
13+
"@auth0/cosmos": "0.23.10",
1414
"react": "16.8.4",
1515
"react-dom": "16.8.4"
1616
},
1717
"devDependencies": {
18-
"@auth0/cosmos-scripts": "0.23.9"
18+
"@auth0/cosmos-scripts": "0.23.10"
1919
}
2020
}

examples/webpack-hello-world/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"start": "cosmos-scripts start"
1111
},
1212
"dependencies": {
13-
"@auth0/cosmos": "0.23.9",
13+
"@auth0/cosmos": "0.23.10",
1414
"@auth0/cosmos-fonts": "0.0.5",
1515
"react": "16.8.4",
1616
"react-dom": "16.8.4"
1717
},
1818
"devDependencies": {
19-
"@auth0/cosmos-scripts": "0.23.9"
19+
"@auth0/cosmos-scripts": "0.23.10"
2020
}
2121
}

internal/cosmos-scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auth0/cosmos-scripts",
3-
"version": "0.23.9",
3+
"version": "0.23.10",
44
"description": "",
55
"bin": {
66
"cosmos-scripts": "cli.js"

internal/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "cosmos-scripts start"
1010
},
1111
"dependencies": {
12-
"@auth0/cosmos": "0.23.9",
12+
"@auth0/cosmos": "0.23.10",
1313
"@auth0/cosmos-fonts": "0.0.5",
1414
"fuzzysearch": "1.0.3",
1515
"js-beautify": "1.7.5",
@@ -26,6 +26,6 @@
2626
"yamljs": "0.3.0"
2727
},
2828
"devDependencies": {
29-
"@auth0/cosmos-scripts": "0.23.9"
29+
"@auth0/cosmos-scripts": "0.23.10"
3030
}
3131
}

internal/test/unit/__snapshots__/select.test.tsx.snap

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ exports[`Select async variant renders ReactSelect 1`] = `
66
data-cosmos-key="select.wrapper"
77
>
88
<div
9-
class="css-1pcexqc-container"
9+
class="css-10nd86i"
1010
>
1111
<div
12-
class="css-xorvj4-control"
12+
class="css-1dhouxp"
1313
>
1414
<div
1515
class="css-1hwfws3"
1616
>
1717
<div
18-
class="css-151xaom-placeholder"
18+
class="css-1492t68"
1919
>
2020
Something
2121
</div>
@@ -33,7 +33,7 @@ exports[`Select async variant renders ReactSelect 1`] = `
3333
autocorrect="off"
3434
id="react-select-5-input"
3535
spellcheck="false"
36-
style="box-sizing:content-box;width:1px;label:input;background:0;border:0;font-size:inherit;opacity:1;outline:0;padding:0;color:inherit"
36+
style="box-sizing:content-box;width:1px;background:0;border:0;font-size:inherit;opacity:1;outline:0;padding:0;color:inherit"
3737
tabindex="0"
3838
type="text"
3939
value=""
@@ -79,21 +79,21 @@ exports[`Select customOptionRenderer variant renders ReactSelect 1`] = `
7979
data-cosmos-key="select.wrapper"
8080
>
8181
<div
82-
class="css-1pcexqc-container"
82+
class="css-10nd86i"
8383
>
8484
<div
85-
class="css-xorvj4-control"
85+
class="css-1dhouxp"
8686
>
8787
<div
8888
class="css-1hwfws3"
8989
>
9090
<div
91-
class="css-151xaom-placeholder"
91+
class="css-1492t68"
9292
>
9393
Something
9494
</div>
9595
<input
96-
class="css-gj7qu5-dummyInput"
96+
class="css-14uuagi"
9797
id="react-select-4-input"
9898
readonly=""
9999
tabindex="0"
@@ -135,21 +135,21 @@ exports[`Select multiple variant renders ReactSelect 1`] = `
135135
data-cosmos-key="select.wrapper"
136136
>
137137
<div
138-
class="css-1pcexqc-container"
138+
class="css-10nd86i"
139139
>
140140
<div
141-
class="css-xorvj4-control"
141+
class="css-1dhouxp"
142142
>
143143
<div
144144
class="css-1hwfws3"
145145
>
146146
<div
147-
class="css-151xaom-placeholder"
147+
class="css-1492t68"
148148
>
149149
Something
150150
</div>
151151
<input
152-
class="css-gj7qu5-dummyInput"
152+
class="css-14uuagi"
153153
id="react-select-2-input"
154154
readonly=""
155155
tabindex="0"
@@ -191,16 +191,16 @@ exports[`Select searchable variant renders ReactSelect 1`] = `
191191
data-cosmos-key="select.wrapper"
192192
>
193193
<div
194-
class="css-1pcexqc-container"
194+
class="css-10nd86i"
195195
>
196196
<div
197-
class="css-xorvj4-control"
197+
class="css-1dhouxp"
198198
>
199199
<div
200200
class="css-1hwfws3"
201201
>
202202
<div
203-
class="css-151xaom-placeholder"
203+
class="css-1492t68"
204204
>
205205
Something
206206
</div>
@@ -218,7 +218,7 @@ exports[`Select searchable variant renders ReactSelect 1`] = `
218218
autocorrect="off"
219219
id="react-select-3-input"
220220
spellcheck="false"
221-
style="box-sizing:content-box;width:1px;label:input;background:0;border:0;font-size:inherit;opacity:1;outline:0;padding:0;color:inherit"
221+
style="box-sizing:content-box;width:1px;background:0;border:0;font-size:inherit;opacity:1;outline:0;padding:0;color:inherit"
222222
tabindex="0"
223223
type="text"
224224
value=""

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cosmos",
3-
"version": "0.23.9",
3+
"version": "0.23.10",
44
"engine": "^7.0.0",
55
"private": true,
66
"workspaces": [

0 commit comments

Comments
 (0)