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

[EuiDataGrid] Provide row elements to wrap cells #5285

Commits on Sep 23, 2021

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

Commits on Sep 27, 2021

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

    chandlerprall committed Sep 27, 2021
    Configuration menu
    Copy the full SHA
    04d3ab5 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2021

  1. Configuration menu
    Copy the full SHA
    9a6dc07 View commit details
    Browse the repository at this point in the history
  2. undoing things

    chandlerprall committed Oct 5, 2021
    Configuration menu
    Copy the full SHA
    f786f5f View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2021

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

Commits on Oct 7, 2021

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

Commits on Oct 19, 2021

  1. Configuration menu
    Copy the full SHA
    c05b457 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    179da4a View commit details
    Browse the repository at this point in the history
  3. changelog

    chandlerprall committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    24f5c53 View commit details
    Browse the repository at this point in the history
  4. undoing things

    chandlerprall committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    a2ccb72 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eb4344c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    535a2a9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9151350 View commit details
    Browse the repository at this point in the history
  8. Small style cleanup

    chandlerprall committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    814feb1 View commit details
    Browse the repository at this point in the history
  9. updated changelog

    chandlerprall committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    95b7008 View commit details
    Browse the repository at this point in the history
  10. updated changelog

    chandlerprall committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    0ba3a02 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    1569aa0 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9a6df52 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2021

  1. Update src/components/datagrid/body/data_grid_row_manager.ts

    Co-authored-by: Constance <[email protected]>
    chandlerprall and Constance authored Oct 26, 2021
    Configuration menu
    Copy the full SHA
    ae336f9 View commit details
    Browse the repository at this point in the history
  2. Update src/components/datagrid/data_grid_types.ts

    Co-authored-by: Constance <[email protected]>
    chandlerprall and Constance authored Oct 26, 2021
    Configuration menu
    Copy the full SHA
    8dc8ad4 View commit details
    Browse the repository at this point in the history
  3. Ensure unique ID in combobox with prepended or appended labels (elast…

    …ic#5229)
    
    * Making an explicit check for ID prop in EUI Combobox
    
    * Checking for a user-passed ID prop
    * If no user-passed ID, we'll use the `rootId()` class method to set one
    * Prepend and append props need an ID to relate label to the input
    
    * Adding example for Combobox with prepended label
    * Confirmed the label `for` attribute is referencing input `id`
    * Added styles to round the edges of the child `<div>` when we prepend a
      label
    * Bumped package.json
    
    * Adding CHANGELOG entry and bumping version
    
    * Update combo_box.tsx
    
    * Updating styles to match other forms with prepend and apppend.
    
    * Finishing Combobox CSS and test updates
    * Simplified the Amsterdam overrides for prepended / appended labels
    * Added conditional classes to `combo_box.tsx`
    * Added unit tests for user passed ID, prepended and appended classes
    
    * Reordering props in child component.
    
    * Final adjustment to ID check in ComboBox
    
    * Final updates to styling and documentation
    * Added CSS rules for compressed, prepend and append border radius
    * Updated the Display Toggles to include append
    * Removed a duplicated instruction paragraph
    * Simplified the logic for a unique ID in combobox.ts
    
    * Adding Combobox unique ID to master changelog
    
    * Updated Form Control Layout SCSS
    * The borders were still rounded with prepend and append enabled
    * Added two more rules to make borders square for full height and compressed
    
    * Move to _combo_box.scss
    
    Co-authored-by: cchaos <[email protected]>
    2 people authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    7633c1b View commit details
    Browse the repository at this point in the history
  4. update i18ntokens

    chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    c3e8b49 View commit details
    Browse the repository at this point in the history
  5. 40.0.0

    chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    5ac481f View commit details
    Browse the repository at this point in the history
  6. Updated documentation.

    chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    e0dd86e View commit details
    Browse the repository at this point in the history
  7. Add combined Jest+Cypress code coverage reports (elastic#5262)

    * Install Cypress code coverage dependencies
    
    * Set up required babel+istanbul config
    
    * Set up Cypress code coverage config
    
    @see https://github.com/cypress-io/code-coverage#instrument-unit-tests
    
    * Add script for combining cypress & jest code coverage
    -into a single json & html report
    
    * Misc cleanup/ignores
    
    - Ignore new `.nyc_output` dir generated by cypress/istanbul
    
    - Improve Jest config collectCoverageFrom !ignores:
      - DRY out component+services folder patterns with a {,} glob
      - Ignore new Cypress .spec files and .testenv files for jest coverage
    
    - eslintignore the cypress folder, since they're all .js anyway and it has a decent amount of idiosyncracies
    + cleanup unused eslint-disable
    + cleanup cypress comment boilerplate
    + remove unused paths from webpack config
    
    * Add wiki documentation
    
    * [PR feedback] Move nyc config to own file
    
    * [PR feedback] Switch combine coverage script to .sh
    Constance authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    ca721f2 View commit details
    Browse the repository at this point in the history
  8. [EuiMarkdownEditor] Add remark-breaks and line break plugin (elasti…

    …c#5272)
    
    * Add remark-breaks and line break plugin to MarkdownEditor
    
    * Update changelog
    i-a-n authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    86af5ba View commit details
    Browse the repository at this point in the history
  9. [Docs] Separated out Borders to its own page & [EuiTableRowCell] fixes (

    elastic#5283)
    
    * Moved Border tokens to its own page
    * Figured out a way to get subsections in the sidenav working
    * Added the new `_values` under `customizing/`
    
    * [EuiTableRowCell] Actually support `valign` property manually
    * [EuiTable*] Fixing some props and mobile options
    * Slightly better responsive table styles
    cchaos authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    2553d89 View commit details
    Browse the repository at this point in the history
  10. Fix CL from elastic#5272

    cchaos authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    fdc387e View commit details
    Browse the repository at this point in the history
  11. [Docs] Update EuiDatePicker types (elastic#5318)

    * omit unsupported types
    
    * resolve console errors
    
    * CL
    thompsongl authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    d468c85 View commit details
    Browse the repository at this point in the history
  12. [Cypress] Add flakey test retries + harden intermittent context menu …

    …failures (elastic#5317)
    
    * Add Cypress failed test retries to CI run mode
    
    * Increase cy.wait on flaky context menu tests (just in case)
    
    * More hardening
    Constance authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    dea1eb9 View commit details
    Browse the repository at this point in the history
  13. [Docs] Fix Colors guidelines (elastic#5316)

    * use useJsonVars
    
    * use variable
    thompsongl authored and chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    c995387 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a60d734 View commit details
    Browse the repository at this point in the history
  15. PR feedback

    chandlerprall committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    ae515b6 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2021

  1. Configuration menu
    Copy the full SHA
    f5b02ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    82614cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8336957 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    baa7b25 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    937403e View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2021

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

Commits on Nov 3, 2021

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

Commits on Nov 4, 2021

  1. Configuration menu
    Copy the full SHA
    420b37d View commit details
    Browse the repository at this point in the history
  2. PR feedback

    chandlerprall committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    ad5c72b View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2021

  1. changelog

    chandlerprall committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    6d10f54 View commit details
    Browse the repository at this point in the history