Skip to content
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

chore: release v2.2.0 #602

Merged
merged 40 commits into from
Aug 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a0784a6
feat(slider): add option to hide slider value (#494)
Deep-Codes Mar 31, 2021
5c64799
feat(loading): apply width & height props (#500)
Deep-Codes Apr 2, 2021
384a4a0
chore(deps): update styled-jsx to ^3.3.1 (#520)
Gounlaf Apr 22, 2021
f8a1151
chore: release v2.2.0-rc.0
unix Apr 22, 2021
1a3aef9
fix(modal): disable backdrop even if actions missing (#532)
unix May 3, 2021
d6fcafa
fix: upgrade to be compatible with React-17's event system (#533)
unix May 3, 2021
a3fb056
feat: useKeyboard hooks (#541)
unix May 23, 2021
888ad5d
chore: release v2.2.0-rc.1
unix May 23, 2021
77c92da
feat(auto-complete): add forwardRef for input element (#542)
unix May 24, 2021
745876c
chore: release v2.2.0-rc.2
unix May 24, 2021
c149094
fix(auto-complete): fix size of loading icon (#546)
unix May 27, 2021
ad8f373
chore: release v2.2.0-rc.3
unix May 27, 2021
bdfc0fe
fix(auto-complete): hide shadow when no content (#547)
unix May 28, 2021
f6e39cf
chore: release v2.2.0-rc.4
unix May 28, 2021
5bbce55
feat: add status prop in checkbox, radio, select, slider and toggle (…
gepd Jun 5, 2021
36037c8
feat(auto-complete): add props for popup container (#558)
unix Jun 11, 2021
0f58e6f
chore: release v2.2.0-rc.5
unix Jun 11, 2021
2985b5f
fix: fix path error under esm
unix Jun 11, 2021
c3708c1
chore: release v2.2.0-rc.6
unix Jun 11, 2021
7facec3
feat(scaleable): add scaleable props to each component (#531)
unix Jun 23, 2021
de0c8fe
feat: export all types related to components (#562)
unix Jun 23, 2021
dece718
fix(bundle): fix modules missing in yarn berry (#563)
unix Jun 23, 2021
fb3256c
chore(examples): upgrade next examples for scaleable (#564)
unix Jun 23, 2021
4121307
chore: release v2.2.0-rc.7
unix Jun 24, 2021
144eaf3
feat(rating): a new component rating indicator (#543)
jorekai Jun 25, 2021
4062d7b
refactor(table): redesign interfaces to improve the experience in Typ…
unix Jun 26, 2021
6557a9f
docs: fix sidebar text-transform (#570)
ofekashery Jun 26, 2021
0917519
docs: improve the copywriting content of the document (#571)
unix Jun 26, 2021
fea0c48
chore: release v2.2.0-rc.8
unix Jun 26, 2021
96b1e83
feat(modal): responds to keyboard events when modal is displayed (#574)
unix Jun 27, 2021
a112ce3
docs: redesign mobile navigation (#576)
ofekashery Jun 28, 2021
52b43b5
fix(avatar): fix margin on first child (#578)
ofekashery Jun 28, 2021
69fb358
feat(select): imporve the focus events to export simulated ref (#579)
unix Jun 29, 2021
6cad25d
fix: rename hymlType to htmlType (#599)
sannajammeh Aug 9, 2021
37d1646
feat(drawer): create component (#575)
unix Aug 13, 2021
6485aec
docs: add home page (#573)
ofekashery Aug 13, 2021
695ad87
test: update snapshots for scaleable
unix Aug 13, 2021
a7ad1c1
chore: update lock file
unix Aug 13, 2021
85c27f0
chore: upgrade styled-jsx
unix Aug 13, 2021
8367dce
test: update snapshots for styled-jsx
unix Aug 13, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
test:
docker:
- image: circleci/node:12.0
- image: circleci/node:14.15.0

working_directory: ~/repo

Expand All @@ -27,7 +27,7 @@ jobs:

build:
docker:
- image: circleci/node:12.0
- image: circleci/node:14.15.0

working_directory: ~/repo

Expand Down
8 changes: 5 additions & 3 deletions .jest.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
module.exports = {
verbose: true,

setupFiles: ['./tests/setup.js'],
testEnvironment: 'jsdom',

setupFilesAfterEnv: ['./tests/setup.ts'],

moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],

testPathIgnorePatterns: ['/pages/', '/dist/', '/lib/'],
testPathIgnorePatterns: ['/pages/', '/dist/', '/lib/', '/esm/'],

transform: {
'^.+\\.tsx?$': ['babel-jest', { configFile: './tests/.babelrc.js' }],
},

testRegex: '.*\\.test\\.(j|t)sx?$',
// testRegex: 'grid\\/.*\\.test\\.(j|t)sx?$',
// testRegex: 'modal\\/.*\\.test\\.(j|t)sx?$',

collectCoverageFrom: [
'components/**/*.{ts,tsx}',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`AutoComplete should render correctly 1`] = `
<AutoComplete
className=""
clearable={false}
disableFreeSolo={false}
disableMatchWidth={false}
disabled={false}
initialValue=""
options={Array []}
size="medium"
/>
`;
exports[`AutoComplete should render correctly 1`] = `<ScaleableGeistAutoComplete />`;
Loading