Skip to content

Commit a346314

Browse files
unixsonghn233nikhilgupta58nikhilgupta58
authored
chore: release v2.3.0 (#715)
* feat(button-dropdown): add icon config (#630) * feature Update tabs-item.tsx (#658) * feat(tabs): display hover effect by styles Add highlight on Tabs component #653 * feat: redesign the render mode for tabs-item * test(tabs): update snapshots for styles changes * docs(tabs): append leftSpace attribute Co-authored-by: nikhilgupta58 <nikhil@tartanhq.com> Co-authored-by: unix <unix.bio@gmail.com> * feat: add scale to password component (#685) * feat: add scale to password component * chore: update lib name for geist icons * fix(tabs): fix type of left-space to match component input (#686) * fix(tabs): fix type of left-space to match component input * docs: improve header styles to follow tabs component * feat(page): add props to control the style of dot (#687) * docs: remove customization tab (#688) * feat(image): allow component to render svg string (#692) * feat(image): allow component to render svg string * docs(image): update the image content of examples * feat: export use-scale hooks (#693) * chore: rename scaleable to scale * docs: separate hooks as a tab to display more information * docs: update document content to match the hooks section * docs: refactor the component structure of the documentation site * docs: skip title format when on hooks page * fix(tabs): fix sub-components ignore theme changes (#694) * docs: fix the layout of the document site (#695) * feat(tabs): display highlight on tabs when mouse-in (#696) * feat(use-classes): add tool to handle class name strings * feat(highlight): add component follows the position of the current component * feat(tabs): display highlight on tabs when mouse-in * docs(tabs): append props * test: fix paths for testcase * fix(styles): optimize font-size for code block (#697) * feat(code): add props for title text and optimize the styles (#698) * feat(code): add props for title text and optimize the styles * docs: extract the code block used for documentation into the components * docs: redesign documentation styles (#699) * docs: redesign documentation styles * docs: remove underline from home tab * fix(tabs): fix class names be accidentally add to all children * docs: customize separate styles for instalation page (#700) * chore: release v2.3.0-rc.0 (#701) * fix: export use-scale hook and types in the entry * fix(links): keep links consistent across typography (#703) * fix(links): keep links consistent across typography * docs: update hybrid-link to follow the geist component * feat(button): slightly reduce the default width (#704) * refactor: remove unnecessary filter for scale props (#705) * docs: optimize the determination and rendering of relative url (#706) * docs: fix tabs layout of install page (#707) * feat(toast): redesign hooks to compatible with placement and styles (#708) * feat(toast): redesign hooks to compatible with placement and styles * docs: update APIs of Toast component * feat(toast): slightly resize the action buttons to fit the overall layout * fix(toast): restore the timer after remove the element from the stack top * feat: remove the extra spaces in class-name (#709) * feat: remove the extra spaces in class-name * feat(button-dropdown): adjust the minimum width to follow the button component * docs: add min font-size for documents that use the scale * feat(tabs): allow to hide the border when tab is activated (#710) * feat(tabs): allow to hide the border when tab is activated * docs: remove style overrides from document sites for tabs * docs: connect hooks with the component example page * docs: add documentation for use-classes * chore: release v2.3.0-rc.1 (#711) * docs: add global search and text indexing (#712) * feat(highlight): allow highlighting blocks to move laterally * chore: add additional types for layout utils * fix(keyboard): fix the ignore to trigger multiple keys at the same time * docs: add global search and text indexing * test: update snapshots * docs: search with local data instead of algolia * build(package): normalize the names of all commands * chore: remove now-build * chore: release v2.3.0 (#714) * chore: release v2.3.0 * chore: resolve unexpected ring dependencies Co-authored-by: Songhn <songhn233@gmail.com> Co-authored-by: Nikhil kumar gupta <36965562+nikhilgupta58@users.noreply.github.com> Co-authored-by: nikhilgupta58 <nikhil@tartanhq.com>
1 parent 29f3f6b commit a346314

File tree

348 files changed

+8188
-5208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

348 files changed

+8188
-5208
lines changed

.github/CONTRIBUTING.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For basic operation of Git, you can refer to [GitHub's help documentation](https
1515
At any time, you think it's ok, you can start the following steps to submit your amazing works:
1616

1717
1. Run `yarn lint` check the code style.
18-
2. Run `yarn test-update` to update & run your testcase.
18+
2. Run `yarn test:update` to update & run your testcase.
1919
3. Run `git commit -ma '{YOUR_MESSAGE}'` to commit changes. Commit info should be formatted by the [rules](https://github.com/conventional-changelog/commitlint/blob/master/%40commitlint/config-conventional/README.md).
2020
4. Push code to your own repo and [create PullRequest](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests) at GitHub.
2121

@@ -31,8 +31,7 @@ At any time, you think it's ok, you can start the following steps to submit your
3131

3232
1. Document page must have `meta` field. refer to [here](https://github.com/geist-org/geist-ui/blame/master/pages/en-us/components/avatar.mdx#L4).
3333
2. If you are creating a new component, please provide at least one document.
34-
3. Do Document using [mdx-js](https://github.com/mdx-js/mdx), here is [vs-code plug-in](https://github.com/silvenon/vscode-mdx),
35-
[web-storm support](https://youtrack.jetbrains.com/issue/WEB-32599)
34+
3. Do Document using [mdx-js](https://github.com/mdx-js/mdx), here is [vs-code plug-in](https://github.com/silvenon/vscode-mdx).
3635

3736
#### **Create testcase**
3837

@@ -53,7 +52,7 @@ At any time, you think it's ok, you can start the following steps to submit your
5352

5453
> I added a new document page, but it was not displayed locally ?
5554
56-
- Run `yarn dev` agian.
55+
- Run `yarn dev` again.
5756

5857
> How can I update remote origin ?
5958

.jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
},
1515

1616
testRegex: '.*\\.test\\.(j|t)sx?$',
17-
// testRegex: 'modal\\/.*\\.test\\.(j|t)sx?$',
17+
// testRegex: 'use-classes\\/.*\\.test\\.(j|t)sx?$',
1818

1919
collectCoverageFrom: [
2020
'components/**/*.{ts,tsx}',
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`AutoComplete should render correctly 1`] = `<ScaleableGeistAutoComplete />`;
3+
exports[`AutoComplete should render correctly 1`] = `<ScaleGeistAutoComplete />`;

0 commit comments

Comments
 (0)