-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/372-implement-new-figma-variable-structure
- Loading branch information
Showing
58 changed files
with
746 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"sit-onyx": minor | ||
--- | ||
|
||
feat(OnyxTextarea): Implement success state styles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"sit-onyx": minor | ||
--- | ||
|
||
feat(OnyxFormElement): messageTooltip property is removed, instead the type of the message prop is replaced with CustomMessageType which includes shortMessage and longMessage. The longMessage will replace the messageTooltip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
name: Create a development story 📗 | ||
description: Story template for development tasks. Exclusively used by the onyx core team for project management. | ||
title: "Implement|Define|Fix: ..." | ||
projects: | ||
- SchwarzIT/5 | ||
labels: | ||
- dev | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Why? | ||
description: Add a short description and motivation for the story. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: content | ||
attributes: | ||
label: Content | ||
description: Add, adapt and remove the following sections as necessary | ||
value: >- | ||
### Open Questions/To-dos | ||
<!-- Remove before ready --> | ||
<!-- [ ] Add question if any, use `@` to tag people --> | ||
### Depends on | ||
<!-- Add links to tickets --> | ||
### Design | ||
<!-- Add Figma link and comments here --> | ||
### Acceptance criteria | ||
<!-- Add ticket specific AC, e.g., the expected behavior of a component --> | ||
### Implementation details | ||
<!-- | ||
add details if necessary, e.g., | ||
- API proposal | ||
- relevant web APIs | ||
- learnings from other implementations | ||
- code snippets | ||
--> | ||
#### Reference implementations | ||
<!-- add links to other frameworks and WaWi, examples: | ||
- https://nuxt.com/docs/getting-started/installation | ||
- https://element-plus.org/en-US/component/overview.html | ||
- https://www.shadcn-vue.com/docs/components/accordion.html | ||
- https://design-system.w3.org/components for structural inspiration | ||
--> | ||
#### Applicable ARIA Pattern | ||
<!-- add link if applicable, see https://www.w3.org/WAI/ARIA/apg/patterns --> | ||
### Definition of Done | ||
- The following component requirements are implemented: | ||
- [ ] skeleton | ||
- [ ] density | ||
- [ ] example usage added to `apps/demo-app/src/views/HomeView.vue` | ||
- covered by tests | ||
- [ ] functional tests (Playwright or unit test) | ||
- [ ] visual tests (Playwright screenshots) | ||
- [ ] follow-up tickets were created if necessary | ||
- [ ] updated version + documentation is deployed | ||
- [ ] Storybook can show the feature | ||
- [ ] Storybook code snippet of new/changed examples are checked that they are generated correctly | ||
- [ ] Namings are aligned with Figma | ||
**Approval** | ||
- Storybook <!-- add link to deployed storybook --> | ||
- Deployed Docs <!-- add link to deployed docs --> | ||
- [ ] approved by designer <!-- add your @username --> | ||
- [ ] approved by dev <!-- add your @username --> | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Create a UX story 🎨 | ||
description: Story template for design tasks. Exclusively used by the onyx core team for project management, | ||
title: "Concept|Adjust|Research: ..." | ||
projects: | ||
- SchwarzIT/5 | ||
labels: | ||
- ux | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Add a short description and motivation for the story. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: content | ||
attributes: | ||
label: Content | ||
description: Add, adapt and remove the following sections as necessary | ||
value: >- | ||
### Create "Component Name" | ||
- [ ] _if needed_ variation | ||
- [ ] density | ||
- [ ] states | ||
- [ ] dark mode | ||
- [ ] keyboard support | ||
### Functions | ||
- [ ] function 1 | ||
- [ ] function 2 | ||
- [ ] function 3 | ||
### Figma | ||
- [ ] dev handover | ||
- [ ] ux component | ||
### documentation | ||
- [ ] keyboard support | ||
- [ ] property description | ||
- [ ] textual documentation | ||
- [ ] component grouping | ||
### _if needed_ links for comparison | ||
- link 1 | ||
- link 2 | ||
### Finalizing | ||
- [ ] approved | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
# demo-app | ||
|
||
## 1.0.0-beta.72 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [156ebb0] | ||
- [email protected] | ||
|
||
## 1.0.0-beta.71 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [52efb24] | ||
- [email protected] | ||
|
||
## 1.0.0-beta.70 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
# playground | ||
|
||
## 1.0.0-beta.72 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [156ebb0] | ||
- [email protected] | ||
|
||
## 1.0.0-beta.71 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [52efb24] | ||
- [email protected] | ||
|
||
## 1.0.0-beta.70 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
# @sit-onyx/chartjs-plugin | ||
|
||
## 1.0.0-beta.72 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [156ebb0] | ||
- [email protected] | ||
|
||
## 1.0.0-beta.71 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [52efb24] | ||
- [email protected] | ||
|
||
## 1.0.0-beta.70 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.