Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
12b07c5
chore: monorepo init
MikeBild Apr 27, 2023
9e7398e
chore(all): add ui-components
MikeBild Apr 27, 2023
1779a8e
feature(storybook): add ui components to storybook
MikeBild Apr 27, 2023
2877805
feat(storybook): add stories
MikeBild Apr 27, 2023
f36302f
feat(app): add tests
MikeBild Apr 27, 2023
716d560
feature(ui-components): add component structure
MikeBild Apr 27, 2023
373422e
fix(ui-components): cleanup + prettier
MikeBild Apr 27, 2023
6263bbf
fix(all): deps and cleanup
MikeBild Apr 27, 2023
9632994
feat(ui-components): more styles
MikeBild Apr 27, 2023
f73f989
feat(ui-components/storybook): add InputField
smlabt Apr 27, 2023
2b464a2
feat(ui-components): add layout page context
MikeBild Apr 27, 2023
ff8645b
Merge branch 'bosch' of github.com:MikeBild/introduction-react into b…
MikeBild Apr 27, 2023
30f0d59
feat moodslider implemented
CelineWichmann Apr 27, 2023
937ba3b
test: add tests for InputField
smlabt Apr 27, 2023
88ea550
delete first
Apr 27, 2023
650fb79
test and build not working
Apr 27, 2023
c351f47
added storybook
Apr 27, 2023
7c05ad7
Merge remote-tracking branch 'origin2/bosch' into bosch
CelineWichmann Apr 27, 2023
e23a3ce
more output
Apr 27, 2023
eef9e71
feat(ui-components): implement MoodReportBarChart component
ChristinaHerbert Apr 28, 2023
d4427e6
fix in Moodslider
CelineWichmann Apr 28, 2023
663ac0a
Merge remote-tracking branch 'origin/bosch' into bosch
ChristinaHerbert Apr 28, 2023
aa10c13
fix: use public registry
smlabt Apr 28, 2023
ee97ef5
fix(ui-components): remove fireEvent
MikeBild Apr 28, 2023
33c71c7
fix(ui-components): fix MoodReportTable tests
MikeBild Apr 28, 2023
a9b1556
feat(E2E): add E2E tests
MikeBild Apr 28, 2023
8be2e63
fix missing components
CelineWichmann Apr 28, 2023
308de12
more
MikeBild Apr 28, 2023
c6086d3
Merge branch 'bosch' of github.com:MikeBild/introduction-react into b…
MikeBild Apr 28, 2023
113e09b
feat(all): app integration first stage done
MikeBild Apr 28, 2023
f96c625
more
MikeBild Apr 28, 2023
59c585d
fix all ;-)
MikeBild Apr 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/moodbox/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
dist/
1 change: 1 addition & 0 deletions examples/moodbox/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org
32 changes: 32 additions & 0 deletions examples/moodbox/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Moodbox MonoRepo

## Bootstrap Project

```
npm install
npm run bootstrap
```

## Development

```
npm run dev
```

## Build

```
npm run build
```

## E2E

```
npm run e2e
```

## Tests

```
npm test
```
5 changes: 5 additions & 0 deletions examples/moodbox/lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "0.0.0"
}
Loading