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

feat(ui-library): forms with&without slot and simple manual validation(#596) #977

Draft
wants to merge 122 commits into
base: develop
Choose a base branch
from

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    35df4c3 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2023

  1. added lit-analyzer to compile step and updated vs code extensions (#714)

    * added lit-analyzer to compile step and updated vs code extensions
    
    * updated lit and added github worklflow
    
    * updated path
    
    * pathes stuff
    
    * github jobs renaming
    
    * ignore analyze in the pipeline
    
    * test the attribute
    
    * removed comment
    
    * dont update lit
    
    * dont update lit
    ChristianHoffmannS2 authored Dec 27, 2023
    Configuration menu
    Copy the full SHA
    ec508a2 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Configuration menu
    Copy the full SHA
    3c9b27b View commit details
    Browse the repository at this point in the history
  2. NumberInput - Fix the disappearing stepper buttons and hiding placeho…

    …lder text (#719)
    
    * fix the numberinput to always display stepper
    
    before, stepper would disappear if you set the unit
    to undefined or readonly to true. this was because
    of conditonal rendering conditions.
    this fixes the problem by extracting the stepper
    render function outside the rendering condition of
    unit inside the input.
    
    * display the placeholder for default value
    
    the default value in not undefined, so it would hinder
    and unable the placeholder to be visible.
    this adds a condition to render the placeholder if it's not
    the default value
    
    * adds test for disappearing stepper buttons
    
    ---------
    
    Co-authored-by: Muhammad Usman <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    3 people authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    47328a0 View commit details
    Browse the repository at this point in the history
  3. fixing icon compile rimraf, fixing missing source icons and add lazy …

    …loading to icons and run test against build (#718)
    
    * commit before passing
    
    * got icons chunked
    
    * fix eslint issue
    ChristianHoffmannS2 authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    b0fd262 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Delete doc/CONTRIBUTE.md (#727)

    - deleting old contribute file, so a new one that is linked in the About section of the repo can be added
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    8e2e594 View commit details
    Browse the repository at this point in the history
  2. Create CONTRIBUTING.md (#728)

    Adding a new contribute file, which will also be displayed under about on the repo starting page
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    5d85fdc View commit details
    Browse the repository at this point in the history
  3. Create CONTRIBUTING.md (#729)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    5d5e2df View commit details
    Browse the repository at this point in the history
  4. Update README.md (#730)

    fixed links to:
    - contribution.md
    - code of conduct md
    - discussion board
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    6368def View commit details
    Browse the repository at this point in the history
  5. docs: remove duplicate of contribution.md (#731)

    Removing the duplicate contribution.md file, as the correct file now is located outside of the doc folder. This change was done, to comply with the the GitHub Community Standards.
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    114d898 View commit details
    Browse the repository at this point in the history
  6. docs: update year in license (#732)

    - Updated year in license.md to 2023-2024
    - Also fixed an error, where B01LER was not replacing the full placeholder
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    134379e View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. docs: update label section in contribute file (#738)

    Updated the labels under Tipps to find issues, and added the "core team issue" label, which was newly introduced.
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 5, 2024
    Configuration menu
    Copy the full SHA
    0c518f2 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. docs: fix storybook link in README (#744)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    e41c7fc View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    711b0ef View commit details
    Browse the repository at this point in the history
  2. feature/492-storybook-counter (#702)

    * feat(storybook): added Counter Stories
    
    ---------
    
    Co-authored-by: Christian Hoffmann <[email protected]>
    Co-authored-by: David Kennedy <[email protected]>
    3 people authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    faa878a View commit details
    Browse the repository at this point in the history
  3. 545 form label rename tokens (#761)

    * fix(tokens): moves and renames
    label tokens are renamed to component name and moved into component sets
    
    * feat: adds FormLabel to style-dictionary.config
    
    * fix: apply renamed tokens to forms.css
    
    * feat(tokens) moving label colors to CMP
    forms.label.[state] stays in SEM but will not be applied onto component anymore
    
    * fix: replaces Forms.Label with Forms.FormLabel
    Also fixes LabelNextToControl colors in multiple files.
    
    * fix(tokens): move nextToConrol from SEM to CMP
    also renames to InlineLabel
    
    * fix: fix occurances of labelNextToControl
    This typotoken moved to CMP and was renamed to ..LabelInline.Typography.
    
    * moved checkbox css changes to component css file and deleted global
    
    * removed comma
    
    * readded correct tokens to checkbox
    
    * fixed radio css file
    
    ---------
    
    Co-authored-by: larserbach <[email protected]>
    ChristianHoffmannS2 and larserbach authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    c51a1ea View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. 540 textarea rename tokens (#762)

    * fix(tokens): renames textarea minHeight
    
    * fix: apply new tokennames at Textarea css
    
    ---------
    
    Co-authored-by: larserbach <[email protected]>
    ChristianHoffmannS2 and larserbach authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    4aaf3ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    025e309 View commit details
    Browse the repository at this point in the history
  3. feature/496-storybook-form-label (#686)

    * feat(storybook): added form Label Story
    
    * fix(storybook): added line break
    
    * fix(storybook): changed some little text and stories after review
    
    * fix(storybook): fixed some text changes after review
    
    ---------
    
    Co-authored-by: Thorben Hartmann <[email protected]>
    JpunktWpunkt and thrbnhrtmnn authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    c426954 View commit details
    Browse the repository at this point in the history
  4. fix/409-storybook-checkbox (#700)

    * fix(storybook): added some changes after review
    
    * fix(storybook): added changes after review
    
    ---------
    
    Co-authored-by: Thorben Hartmann <[email protected]>
    JpunktWpunkt and thrbnhrtmnn authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    3f62ffb View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Fix example app icons (#724)

    * we need a relative path here
    
    * fix for range slider only
    
    * fixed some imports and deactivated icon tests
    
    * now all tests run against build
    
    * prod fix of example app
    ChristianHoffmannS2 authored Jan 15, 2024
    Configuration menu
    Copy the full SHA
    48414b5 View commit details
    Browse the repository at this point in the history
  2. added dependencies to story for buttons (#786)

    * added dependencies to story for buttons
    
    * fix for all
    ChristianHoffmannS2 authored Jan 15, 2024
    Configuration menu
    Copy the full SHA
    2e1d149 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    66dcb45 View commit details
    Browse the repository at this point in the history
  2. icon uses correct event handling for blrClick - fixes password (#787)

    * icon uses correct event handling for blrClick - fixes password
    
    * compile issues
    ChristianHoffmannS2 authored Jan 16, 2024
    Configuration menu
    Copy the full SHA
    5761adc View commit details
    Browse the repository at this point in the history
  3. feat: updates ItemSpacings to have different values per size (#769)

    * feat: updates ItemSpacings to have different values per size
    
    * remove configuration
    
    ---------
    
    Co-authored-by: larserbach <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    3 people authored Jan 16, 2024
    Configuration menu
    Copy the full SHA
    bcebce5 View commit details
    Browse the repository at this point in the history
  4. docs: change readme picture (#795)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 16, 2024
    Configuration menu
    Copy the full SHA
    556f6cc View commit details
    Browse the repository at this point in the history
  5. move config file out of src (#648) (#684)

    Co-authored-by: Christian Hoffmann <[email protected]>
    RubirajAccenture and ChristianHoffmannS2 authored Jan 16, 2024
    Configuration menu
    Copy the full SHA
    ce5a572 View commit details
    Browse the repository at this point in the history
  6. 413-radio group docs (#690)

    * feat(storybook): initial commit
    
    * feat(storybook): add radio group docs
    
    * fix(ui): add feedback
    
    * fix(storybook): change folder name
    
    * fix(storybook): filenaming
    
    * fix(storybook): import issues
    
    * fix(storybook): import issue
    
    ---------
    
    Co-authored-by: Christian Hoffmann <[email protected]>
    bar-tay and ChristianHoffmannS2 authored Jan 16, 2024
    Configuration menu
    Copy the full SHA
    737d57c View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Feature/419 storybook toggle switch (#783)

    * feat(storybook): added argTableTypes
    
    * feature(storybook): added toggle-switch story
    
    * feature(storybook): added various stories
    
    * fix(storybook): added changes after review and add name property to component
    
    * fix(storybook): change story property order
    
    * fix(storybook): added changes after review
    
    * fix(storybook): another changes after review
    
    * fix(storybook): added changes after review
    JpunktWpunkt authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    d697f9c View commit details
    Browse the repository at this point in the history
  2. #550 tooltip rename tokens 2 (#794)

    * fixes tooltip tokens
    
    * apply new token names on tooltip-bubble/index.css
    
    * Adds tooltip elevation and typo tokens
    
    * fix tooltip tokens
    
    ---------
    
    Co-authored-by: David Kennedy <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    3 people authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    8d8d9da View commit details
    Browse the repository at this point in the history
  3. #544 slider rename tokens (#796)

    * background color tokens
    
    * renames slider tokens
    
    * fix border tokens
    
    * apply tokens on slider.legend.css
    
    * update slider.css slider-legend.css range-slider-utils.ts
    
    ---------
    
    Co-authored-by: christian.b.hoffmann <[email protected]>
    larserbach and ChristianHoffmannS2 authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    aa6c7fa View commit details
    Browse the repository at this point in the history
  4. #544 form caption rename tokens (#801)

    * renames form caption tokens and moves them to CMP
    
    * Defines semantic caption tokens
    
    * adds CMP counter typo tokens
    
    * fix Referencing UI.Caption for typo now
    
    * Moves captionComponent css from form.css to captionComponent index.css
    Renames tokens
    
    * fix: tokens on counter component
    
    * fix: rename tokens in radio.css
    (We should check if caption tokens are really needed here)
    
    * minor adjustment
    
    ---------
    
    Co-authored-by: larserbach <[email protected]>
    ChristianHoffmannS2 and larserbach authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    f0a24d8 View commit details
    Browse the repository at this point in the history
  5. feat(storybook): add divider docs (#694)

    * feat(storybook): add divider docs
    bar-tay authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    7ea92db View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. fix: adds comma in $themes (#804)

    * adds comma in $themes
    
    * fix: regenerate themes.json
    
    ---------
    
    Co-authored-by: larserbach <[email protected]>
    m-nti and larserbach authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    203e1eb View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Fix/712 fix scrolling (#791)

    * Implemented requestAnimationFrame to restore scroll position and focus
    JpunktWpunkt authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    6d6e97a View commit details
    Browse the repository at this point in the history
  2. fix(ui-library): fixed contrast violation in disabled state (#802)

    * fix(ui-library): fixed contrast violation in disabled state for icon-button and text-button and fixed that the text can not be selected in disabled mode for different browsers
    ---------
    
    Co-authored-by: christian.b.hoffmann <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    3 people authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    3a4caca View commit details
    Browse the repository at this point in the history
  3. feat(storybook): add button group docs (#806)

    * feat(storybook): add button group docs
    
    * fix(storybook): add feedback
    
    * fix(storybook): delete labels and fix alignment
    
    ---------
    
    Co-authored-by: Christian Hoffmann <[email protected]>
    bar-tay and ChristianHoffmannS2 authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    b03ba24 View commit details
    Browse the repository at this point in the history
  4. feat(storybook): add icon docs (#756)

    * feat(ui): add icon docs
    
    * feat(storybook): add icon docs file
    
    * feat(storybook): add feedback
    
    * fix(storybook): fix prop order
    
    * fix(storybook): fix prop size
    
    * fix(storybook): fix props
    
    ---------
    
    Co-authored-by: Thorben Hartmann <[email protected]>
    bar-tay and thrbnhrtmnn authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    57a31d8 View commit details
    Browse the repository at this point in the history
  5. Code snipped fix (#814)

    * render functions doesnt use dots and handles boolean
    
    * solved!
    
    * arrays/objects should work again but wont show in code snipped
    
    * in case of boolean false, we have to give an excplicit false as property
    ChristianHoffmannS2 authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    7500611 View commit details
    Browse the repository at this point in the history
  6. Select: html options instead of array (#780)

    * feat(ui-library): replaced options array with slots in blrSelect component
    
    ---------
    
    Co-authored-by: David Kennedy <[email protected]>
    Co-authored-by: David Kennedy <[email protected]>
    3 people authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    4201c1f View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Configuration menu
    Copy the full SHA
    b94f1fa View commit details
    Browse the repository at this point in the history
  2. Feature/513 tabbar use slots instead of arrays in the tabbar (#799)

    * replacing array with slots in tabbar component
    davidken91 authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    f7ad885 View commit details
    Browse the repository at this point in the history
  3. fix number unit padding (#695)

    * fix number unit padding
    
    * refactored css
    
    * code formatting
    
    * cleanups
    
    * full width
    
    * split prepend case is done
    
    * fixed non split versions
    
    * turned on description again
    
    * fixed paddings, readonly and story property namings
    
    * updated branch
    
    ---------
    
    Co-authored-by: christian.b.hoffmann <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    3 people authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    e180b32 View commit details
    Browse the repository at this point in the history
  4. #534 numberinput renames tokens (#785)

    * renames numberinput.inputField.textWrapper.itemSpacing..
    
    * updates ../number-input/index.css.ts
    
    * reset css.ts
    
    * token renamings
    
    ---------
    
    Co-authored-by: christian.b.hoffmann <[email protected]>
    larserbach and ChristianHoffmannS2 authored Jan 22, 2024
    Configuration menu
    Copy the full SHA
    15ae5c4 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Updates token meta (#820)

    * minor
    larserbach authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    7e0af61 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Configuration menu
    Copy the full SHA
    9c42bd1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3673914 View commit details
    Browse the repository at this point in the history
  3. Fix/578 counter state (#826)

    * fix(ui-library): renamed default to neutral
    JpunktWpunkt authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    ea8ae88 View commit details
    Browse the repository at this point in the history
  4. Fix/597 form label (#827)

    * fix(ui-library):fix label padding
    
    ---------
    
    Co-authored-by: Barkley <[email protected]>
    Co-authored-by: Barkley <[email protected]>
    3 people authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    a58db38 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Documentation Form Caption Component (#717)

    Co-authored-by: Christian Hoffmann <[email protected]>
    RubirajAccenture and ChristianHoffmannS2 authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    caae81a View commit details
    Browse the repository at this point in the history
  2. fix(ui-library): fixed checked state (#803)

    Co-authored-by: manuel.seemann <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    3 people authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    b96df97 View commit details
    Browse the repository at this point in the history
  3. #770 stepper rename tokens (#828)

    * renames stepper tokens
    
    * reasign divider container color
    
    * renames stepper combo tokens
    
    * renames commbo divider padding tokens
    
    * updates stepper css2
    
    * updates number input css & deletes foundation/.../action.css
    
    * adds stepperButton backgound and icon color
    
    * adds stepper icon size tokens
    
    * minor
    
    * updates border
    
    * fix border token
    
    * update css
    
    * fix disabled
    larserbach authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    62b0e7b View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Configuration menu
    Copy the full SHA
    c6c2aab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b70efa View commit details
    Browse the repository at this point in the history
  3. Fix/number input (#841)

    * fix(ui-library): number input bug fixes
    davidken91 authored Jan 26, 2024
    Configuration menu
    Copy the full SHA
    34fbbad View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Fix/772 dialog rename tokens (#842)

    * renames dialog tokens
    
    * add typo and textcolor to dialog
    
    * minor
    larserbach authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    153501f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12e3a8e View commit details
    Browse the repository at this point in the history
  3. Renames tokens: Action -> Actions (#843)

    * Tokens: replaces all Action/... with Actions/...
    
    * fix css by replacing Action with Actions
    
    * fix getComponentConfigToken params
    larserbach authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    3e04802 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Fix/rename focused tokens (#847)

    * renames focused -> focus
    
    * minor
    
    * fix css focused -> focus
    larserbach authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    7739484 View commit details
    Browse the repository at this point in the history
  2. feat:Create SECURITY.md (#848)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    181ea77 View commit details
    Browse the repository at this point in the history
  3. feature/428-feedback-form (#846)

    * feat:create bug_report.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update bug_report.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feat:Delete .github/ISSUE_TEMPLATE/custom-bug-template.md
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feat:Create feature_request.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Rename bug_report.yaml to 1_bug_report.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Rename feature_request.yaml to 2_feature_request.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feat:Update and rename custom.md to 3_custom_issue.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feat:Create config.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update config.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update 1_bug_report.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update 2_feature_request.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update 3_custom_issue.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feat:Create SUPPORT.md
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    97f2e33 View commit details
    Browse the repository at this point in the history
  4. Feature/428 fix feedback form (#850)

    * fix:Rename config.yaml to config.yml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update 1_bug_report.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    5a5ba42 View commit details
    Browse the repository at this point in the history
  5. Fix/790 improve padding naming (#851)

    * renames paddingTopBottom and paddingLeftRight tokens
    
    * fix tooltip padding token
    
    * fix css and other minor
    
    * rmv token: Actions.BorderRadius
    
    * fix menu...borderRadius
    
    * minor
    larserbach authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    4771326 View commit details
    Browse the repository at this point in the history
  6. Feat/845 improve token structure (#853)

    * new config
    
    * update config
    
    * fix styledictionary.config
    larserbach authored Jan 30, 2024
    Configuration menu
    Copy the full SHA
    fcda4c1 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Fix/597 form label padding (#855)

    * feat(ui-library): adding label wrapper to each consuming component and applying padding
    davidken91 authored Feb 1, 2024
    Configuration menu
    Copy the full SHA
    390b8c7 View commit details
    Browse the repository at this point in the history
  2. Feature/366 getstarted documentation (#857)

    * fix:Update 3_custom_issue.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update 3_custom_issue.yaml
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feature:Update GETSTARTED.md
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * feature:Update GETSTARTED.md
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    Co-authored-by: David Kennedy <[email protected]>
    thrbnhrtmnn and davidken91 authored Feb 1, 2024
    Configuration menu
    Copy the full SHA
    dc27a32 View commit details
    Browse the repository at this point in the history
  3. fix:Update README.md (#861)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 1, 2024
    Configuration menu
    Copy the full SHA
    e46c362 View commit details
    Browse the repository at this point in the history
  4. fix/Update README.md (#862)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 1, 2024
    Configuration menu
    Copy the full SHA
    e32d0b5 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. feat(storybook): delete react folder (#836)

    * feat(storybook): delete react folder
    bar-tay authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    afe7989 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Configuration menu
    Copy the full SHA
    3a83321 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. docs:Update GETSTARTED.md (#882)

    Added bullet about sales deck in project management checklist
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 6, 2024
    Configuration menu
    Copy the full SHA
    1f3a446 View commit details
    Browse the repository at this point in the history
  2. docs:Update README.md (#888)

    - fixed downloadlink to figma file
    - removed issues & bugs section, as the new sections under help & feedback, which we added as part of #428 are way more detailed and have a better user-flow
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 6, 2024
    Configuration menu
    Copy the full SHA
    1d9d2ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    99b0a46 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    194ae4b View commit details
    Browse the repository at this point in the history
  5. fix(storybook): adjust component size (#881)

    * fix(storybook): adjust component size
    
    * fix(ui): change sm border width
    
    ---------
    
    Co-authored-by: Thorben Hartmann <[email protected]>
    bar-tay and thrbnhrtmnn authored Feb 6, 2024
    Configuration menu
    Copy the full SHA
    bfedd01 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    31ca23f View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. docs:Update PROJECTBACKGROUND.md (#892)

    * docs:Update PROJECTBACKGROUND.md
    
    - filled out projectbackground template
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * fix:Update PROJECTBACKGROUND.md
    
    fixed a typo
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    d7f266b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd60858 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Fix/form caption accessibility (#893)

    * fix(ui-library): removing aria-label from form caption group
    
    ---------
    
    Co-authored-by: christian.b.hoffmann <[email protected]>
    davidken91 and ChristianHoffmannS2 authored Feb 9, 2024
    Configuration menu
    Copy the full SHA
    0bf08c0 View commit details
    Browse the repository at this point in the history
  2. docs:Update GETSTARTED.md (#900)

    Added pre-refinement to meetings
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 9, 2024
    Configuration menu
    Copy the full SHA
    035383b View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. fix(ui): add eventListeners to textinput (#482) (#890)

    * fix(ui-library): removing aria-label from form caption group
    
    ---------
    
    
    
    docs:Update GETSTARTED.md (#900)
    
    Added pre-refinement to meetings
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    angsherpa456 authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    62e696e View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. Configuration menu
    Copy the full SHA
    993a94c View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. docs:Update README.md (#914)

    added a missing word
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 14, 2024
    Configuration menu
    Copy the full SHA
    ccc0f4b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9424534 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1efa2c4 View commit details
    Browse the repository at this point in the history
  4. fix(ui-library): textarea label space alignment and counter alignment (

    …#907)
    
    * fix(882): textarea label space alignment and counter alignment
    
    * yarn lock reverted
    RubirajAccenture authored Feb 14, 2024
    Configuration menu
    Copy the full SHA
    209ad72 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. feature(storybook): change folder structure (#894)

    * feature(storybook): change folder structure
    
    * fix(storybook): change imports for types
    
    * fix(storybook): wip
    
    * only create custom element if not defined
    
    * feat(storybook): align overall folder structure
    
    * fix(storybook): tests
    
    * fix(storybook): delete unnecessary folder
    
    * fix(storybook): wip
    
    * fix(storybook): delete double customElements
    
    ---------
    
    Co-authored-by: christian.b.hoffmann <[email protected]>
    bar-tay and ChristianHoffmannS2 authored Feb 15, 2024
    Configuration menu
    Copy the full SHA
    8830300 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b1b271 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. fix(ui-library): number input accessibility (#917)

    * fix(ui-library): add aria labels to number input steppers
    
    * fix(ui-library): render form labels and inputs in same shadow dom to preserve "for" relation
    
    * fix(ui-library): set theme text color for number input and fix theme toggle
    remmycat authored Feb 16, 2024
    Configuration menu
    Copy the full SHA
    2e206b4 View commit details
    Browse the repository at this point in the history
  2. fix:Update CONTRIBUTING.md (#863)

    Added "fix" as a valid feature branch, as discussed today with the team.
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 16, 2024
    Configuration menu
    Copy the full SHA
    b2ed7cd View commit details
    Browse the repository at this point in the history
  3. docs: Update GETSTARTED.md (#898)

    Co-authored-by: David Kennedy <[email protected]>
    veilvokay and davidken91 authored Feb 16, 2024
    Configuration menu
    Copy the full SHA
    4ac5486 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. Feat/606 storybook badges (#930)

    * feature(ui-library): added storybook badges addon and customized it
    JpunktWpunkt authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    120eb36 View commit details
    Browse the repository at this point in the history
  2. docs(general):Update CONTRIBUTING.md (#934)

    - changed title to "Contributing" and combined intro sections above "Content"
    - added icons to main section titles and Content
    - removed B01LER Monthly, as it is already mentioned in README
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    fc23c91 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    417e7dd View commit details
    Browse the repository at this point in the history
  4. feat(ui-library): rename change events and move event code to global …

    …file
    
    * feat(ui-library): rename change events to prepare for exact types
    
    * refactor(ui-library): move event code and types to global file
    
    # Conflicts:
    #	packages/ui-library/src/components/checkbox/index.ts
    #	packages/ui-library/src/components/select/index.ts
    #	packages/ui-library/src/components/text-input/index.ts
    #	packages/ui-library/src/components/textarea/index.ts
    remmycat authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    fc426e6 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. Configuration menu
    Copy the full SHA
    f74db06 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e73c650 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Fix/645 add unit tests for slots (#903)

    * fix(ui-library): adding unit tests for components using slots
    davidken91 authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    41f609a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    32b184e View commit details
    Browse the repository at this point in the history
  3. fix/866-ensure-consistency-property-names (#891)

    * fix(ui-library): harmonized property naming in iconButton
    JpunktWpunkt authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    73585d2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b6f5802 View commit details
    Browse the repository at this point in the history
  5. Fix/867 ensure property naming text button (#935)

    * fix(ui-library): harmonized property naming in textButton and all relevant files
    JpunktWpunkt authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    18da474 View commit details
    Browse the repository at this point in the history
  6. fix/867a-ensure-property-naming-text-button (#944)

    * fix(ui-library): added some changes after review
    
    * fix(ui-library): adapted action property naming in the story
    
    * fix(ui-library): harmonized naming in argTypes
    JpunktWpunkt authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    a7311e5 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Configuration menu
    Copy the full SHA
    e459f9f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58222d2 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. docs(fix): rename doc to docs (#951)

    * - renamed doc folder to docs
    - updated links between documentation files
    - updated "Get Started" section in CONTRIBUTING file
    
    * docs: fix typos
    
    * docs: remove empty lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove empty lines and premature sentence wrapping
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: removing new line and sentence wrapping
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove new lines and sentence wrapping
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove new lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove new lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove new lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove new lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove empty lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: remove empty lines
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    6573a4c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    360be5d View commit details
    Browse the repository at this point in the history
  3. 735-update-renamed-repo-links (#955)

    * docs(README): update image link
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: update repo links
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: update repo links
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: update repo links
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: update repo links
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: update repo links
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    8cfae01 View commit details
    Browse the repository at this point in the history
  4. Feat/improve token structure v3 (#946)

    * Feat(tokens): applied tokenchanges from v2
    
    * updated tokens
    
    * try fix tokens:generate on CI
    
    * try fix tokens:generate on CI
    
    * made gitignore not needing to know theme names
    
    * try fix tokens:generate on CI
    
    * try fix tokens:generate on CI
    
    * all folders lower case
    
    * fix number names
    
    ---------
    
    Co-authored-by: larserbach <[email protected]>
    ChristianHoffmannS2 and larserbach authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    9d2be8a View commit details
    Browse the repository at this point in the history
  5. Feature/564 new figma release (#956)

    * docs: update figma links for new release
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    * docs: update figma link
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    
    ---------
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    98951c6 View commit details
    Browse the repository at this point in the history
  6. docs: fix figma link (#957)

    Signed-off-by: Thorben Hartmann <[email protected]>
    thrbnhrtmnn authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    065328a View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. feat(ui-library): add ts-lit plugin with rules (#918)

    * feat(ui-library): add ts-lit plugin with rules
    
    * feat(ui-library): use same settings for vs code
    ChristianHoffmannS2 authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    13c270b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6baa760 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ab234d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1495060 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Fix/709 readme optimizations (#952)

    * fix(ui-library): adding Figma and Tokens Studio documentation to readme
    
    * fix(ui-library): removing usage section from readme
    
    * fix(ui-library): adding yarn start note
    
    * fix(ui-library): providing link to Getting Started section in Figma
    
    * fix(ui-library): adding Tokens Studio installation guide to readme
    
    * fix(ui-library): adding build instructions to readme
    
    * fix(ui-library): linking readme to deployment.md file
    
    * fix(ui-library): updating Deployment.md file
    
    * fix(ui-library): adding notes Deployment.md file to explain each section
    
    * fix(ui-library): adding Support section to Deployment.md file
    
    * fix(ui-library): adding anchors to Figma and Tokens Studio in Readme file
    
    * fix(ui-library): removing 'next' step from readme
    
    * fix(ui-library): removing getting started paragraph
    
    * fix(ui-library): removing example js app run instructions
    
    * fix(ui-library): fix readme formatting
    
    * fix(ui-library): updating table of contents
    
    * fix(ui-library): updating bug report and feature requests urls
    
    * fix(ui-library): updating package.json metadata with new repo name
    
    * fix(ui-library): updating pipeline files with new repo name
    
    * fix(ui-library): updating Figma file links
    
    * fix(ui-library): updating figma link in getstarted.md
    davidken91 authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    a19e677 View commit details
    Browse the repository at this point in the history
  2. Feat/921 change icons doc (#954)

    * docs(general): add documentation how to change icon set
    
    * docs(general): fix a typo
    
    * docs(general): resolved PR comments
    
    * docs(general): added Change Icons section
    
    * docs(general): fixed hyperlinks layout
    
    * docs(general): fixed typos
    
    * docs(general): 921 removed leftovers after rebase
    veilvokay authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    63a2caf View commit details
    Browse the repository at this point in the history
  3. docs: add open door meeting (#967)

    - added open door meeting
    - updated Figma access description in access checklist
    - added "Onboarding" to project management onboarding checklist headline
    - added Design, Developers and Product & Project Management Anchors to ToC
    - removed Sales Deck Contributor page from project management onboarding checklist
    
    Signed-off-by: Thorben Hartmann <[email protected]>
    Co-authored-by: Christian Hoffmann <[email protected]>
    thrbnhrtmnn and ChristianHoffmannS2 authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    c0de271 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. fix(ui-library, storybook): genericBlrComponentRenderer (#976)

    - render util does not produce malformed HTML anymore when `props` or `htmlAttributes` are empty
    faselbaum authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    15d2651 View commit details
    Browse the repository at this point in the history
  2. fix(ui-library): icon size behaviour (798) (#969)

    * fixed icon size behaviour
    
    * fixed unit tests
    
    * fix(ui-library): fixed default icon sizes settings for select, text/number input and tabbar
    ChristianHoffmannS2 authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    5f4c151 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    facbe76 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d081f73 View commit details
    Browse the repository at this point in the history