Skip to content

Commit 43050f7

Browse files
authored
Merge pull request #4 from DaPulse/stories/orr/cleanup-and-alignment
Stories/orr/cleanup and alignment
2 parents 985629e + 14beccb commit 43050f7

Some content is hidden

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

54 files changed

+617
-1772
lines changed

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://style.monday.beer
1+
https://style.monday.com

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# Monday UI React Core
2-
>[monday.com](monday.com) React components library - [Storybook](style.monday.beer)
2+
>[monday.com](https://www.monday.com) React components library - [Storybook](https://style.monday.com)
33
44
## Installation
55
Install the component library
66
```
7-
$ npm install @mondaydotcomorg/monday-ui-react-core
7+
$ npm install monday-ui-react-core
88
```
99

1010
## Usage
11-
You can either ` import { Button } from "@mondaydotcomorg/monday-ui-react-core";`
12-
13-
or you might want to import directly the component ` import Button from "@mondaydotcomorg/monday-ui-react-core/dist/Button";`
11+
You can either ` import { Button } from "monday-ui-react-core";`
12+
or you might want to import directly the component ` import Button from "monday-ui-react-core/dist/Button";`
1413

1514
## Storybook
1615
We are using storybook in order to develop the components independently from any consumer.
@@ -44,7 +43,7 @@ npm start
4443
We welcome every contributor, please read the [contribution guidelines](CONTRIBUTING.md) before submitting a PR
4544

4645
## Themes
47-
We support theming from the library to the component level using css variables - for more info on theming please read the THEME_README.md file
46+
We support theming from the library to the component level using css variables - for more info on theming please read the [theme guidelines](THEME_README.md) file
4847

4948
## Release
5049
Perform the following steps to **release** a **new version**:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monday-ui-react-core",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Official monday.com UI resources for application development in React.js",
55
"main": "dist/main.js",
66
"scripts": {

plop/component/component-scss.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "../../styles/colors.scss";
1+
@import "../../styles/themes.scss";
22

33
{{dashCase componentName}}--wrapper {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.monday-style-story-wrapper {
2-
width: 1080px;
2+
width: 920px;
33
margin: 0 auto;
44
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/components/Button-WIP/__stories__/ButtonWIP.stories.js renamed to src/components/Button/__stories__/button.stories.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -257,17 +257,6 @@ export const ButtonsWithIcons = () => (
257257
Left Icon
258258
</Button>
259259
</StoryStateColumn>
260-
<StoryStateColumn title="Both Icons">
261-
<Button
262-
size={Button.sizes.LARGE}
263-
kind={Button.kinds.PRIMARY}
264-
color={Button.colors.PRIMARY}
265-
leftIcon="fa fa-check"
266-
rightIcon="fa fa-check"
267-
>
268-
Both Icon
269-
</Button>
270-
</StoryStateColumn>
271260
<StoryStateColumn title="Right Icon">
272261
<Button
273262
size={Button.sizes.LARGE}
@@ -435,6 +424,6 @@ export const Loading = () => (
435424
);
436425

437426
export default {
438-
title: "Components (WIP)/Button",
427+
title: "Components/Button",
439428
component: Button
440429
};

0 commit comments

Comments
 (0)