Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Update dependency grommet to v2 #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

xcomponentadmin
Copy link
Contributor

@xcomponentadmin xcomponentadmin commented Jan 18, 2020

This PR contains the following updates:

Package Type Update Change References
grommet dependencies major ^1.1.0 -> ^2.0.0 homepage, source

Release Notes

grommet/grommet

v2.15.2

Compare Source

  • Only relevant for users that use radioButton.extend on the theme. Fixed RadioButton theme, so that radioButton.extend is not applied to two DOM elements. Previously radioButton.extend applied to the radio button itself and to the container around the radio button that includes the label. From now on, radioButton.extend only applies to the styling of the radio button itself, and radioButton.container.extend applies to the whole container (including the label).
    To maintain any previous styling done with radioButton.extend, add your styling to radioButton.container.extend as well.

v2.15.1

Compare Source

General:

  • Reduced bundle size of grommet.min.js.
  • Fixed bug on InfiniteScroll when replace and show are larger than step.
  • Added icon and styling for FormField error or info messages.
  • Fixed dropProps functionality for DateInput.
  • Allow active to pass as a prop to Tab.
  • Added align options to Drop's stretch prop.
  • Fixed issue on Box with row-responsive between border.
  • Fixed onClick event for List and handle focus.
  • Fix ability to customize text size for Avatar on the theme.
  • Added font.family to the theme for Paragraph and Text components.
  • Updated theme.global.active typing.

Calendar:

  • Fixes incorrect month display on Calendar when switching months.
  • Added support for customizing calendar dates and sizing.
  • Fixes incorrect date display when selecting a date more than a year apart.

TextInput:

  • TextInput onSuggestionSelect is used for the suggestion feature instead of onSelect.
  • Allowed TextInput the use of onSelect for listening to select events.
  • Added plain='full' option for omitting padding on plain.

DataTable:

  • Added fill prop which allows the table to dynamically respond to the available real estate.
  • Added pin prop which allows the first column, header, and/or footer to be pinned.
  • Fixed calculation of minimum value in DataTable when there are negative values.
  • Changed DataTable to add sort.external.
  • Added icons.sortable to DataTable theme.
  • Changed DataTable to have select and onSelect props.
  • Added support to nested object in sort and aggregate.
  • Updated theme to add more options for header cells of DataTable.
  • Fix background prop and background.pinned theme incompatibilities.
  • Allows DataTable footer to be pinned on Safari.

v2.15.0

Compare Source

General:

  • NEW Card component

  • NEW DateInput component

  • Updated Box to allow opacity to impact background image

  • Fixed bug with Select where onOpen was being called twice

  • Added a default mask to MaskedInput

  • Changed ResponsiveContext to address breakpoint issue

  • Added option to Menu to allow different icons for open and close

  • Updated Text, Grid, and Heading to accept React ref prop

  • Added new prop trapFocus to Drop and DropButton

  • Added theming for RadioButtonGroup container under radioButtonGroup.container

Accessibility:

  • Added a11yTitle support to TextArea
  • Added messages prop to Video to support accessibility standards
  • Improved List focus behavior with keyboard to align with WCAG accessibility guidelines
  • Improved SkiplLinks component

SkipLinks:

  • Allows SkipLinks layer to open with a keyboard tab
  • Allows users to skip SkipLinks layer and tab to header
  • Allows users to edit SkipLinks messages
  • Allows cyclic navigation of page with keyboard
  • Enables access to rest of interactive elements when the SkipLinks layer is shown
  • Changed DOM behavior to prepend Layer to DOM so tabIndex order will behave correctly

Form:

  • Added onValidate, allows users to access infos and errors when a form validates
  • contentProps prop added to FromField which allows props to be set directly on content Box. When present, overrides props from theme or pad prop. overflow="hidden" will no longer be passed in but can be added in contentProps

InfiniteScroll:

  • Fixed show prop behavior
  • Fixed InfiniteScroll duplicate key

RadioButton:

  • Added background.color option in RadioButton theme
  • Added ability to set the font-weight of the label from the theme

Chart:

  • Updated Chart to add per-value color and thickness for bar and point types
  • Changed Chart to add point types
  • Added animate prop to Chart

DataChart:

  • Added a series prop that encapsulates things previously in chart, xAxis and yAxis
  • Added axis prop to replace xAxis and yAxis
  • Added guide prop to replace the guide from xAxis and yAxis
  • Added detail prop to provide hover interaction details for horizontal bands
  • Added granularity concept for axis and guide
  • New legend prop provides a legend

Theming:

  • Allowed users to specify FormField margin via theme
  • Allowed for disabled tab state to be styled via theme
  • Fixed plain Buttons active styling for themes that define button.default

TypeScript:

  • Updated RangeInput onChange to use intrinsic HTML input onChange type
  • Fixed Clock onChange to accept a string as an argument
  • Improved Form onSubmit handling of value key of form event
  • Added type definitions for day in Calendar
  • Defined missing action prop type
  • Fixed Calendar onSelect type

v2.14.0

Compare Source

General:

  • New CheckBoxGroup component.
  • New DataChart component.
  • Changed Button to have kind behavior for default and secondary kind.
  • Fixed Preact Compatibility.
  • Allowed theme to specify the size, height, and weight of an input.
  • Fixed Clock countdown timer.
  • Fixed missing forwardRef for DataTable, Diagram, Image, Menu, TableBody, TableCell, and Tabs.
  • Enhanced focus theme styling to have outline and shadow props.
  • Added disabled theme styling to MaskedInput.
  • Fixed scrolling issues with TextInput.
  • Changed Select and TextInput to accept a11yTitle prop as aria-label.
  • Fixed an issue with caller controlling state in DropButton.
  • Added rotateLeft and rotateRight to Box animation.
  • Changed RangeInput to support bounds.
  • Fixed onKeyDown event for TextArea.

RadioButtonGroup:

  • Changed RadioButtonGroup to support numeric and boolean values.
  • Fix the responsive behavior of RadioButtonGroup.

Form:

  • Changed Form and FormField to fix some issues with state and events.
  • Updated FormField to allow for disabled state styling via the theme.
  • Added background and border options in FormField theme.

Accordion:

  • Changed hover, focus, and border in Accordion theme.
  • Added hover color theming for Accordion.

Menu:

  • Added color theme styling for Menu icons.
  • Fixed dropProps in Menu to work with RTL.

Select:

  • Fixed onClick propagation in Select component.
  • Fixed display of Select value when equal to zero.
  • Fixed an issue with Select multiple.
  • Fixed console error thrown by Select component.
  • Fixed an issue with onSearch being called multiple times.

Tab/Tabs:

  • Added icon and reverse props to Tab.
  • Fixed focus toggling on Tab.
  • Added responsive prop to Tabs.
  • Added alignControls prop to Tabs.
  • Added tabs header border theming to Tabs.

TypeScript:

  • Fixed AnnounceContext to accept timeout as a parameter.
  • Fixed TypeScript declaration of onChange in Form.
  • Improved DataTable types.
  • Added extend type to Text.

Hooks:

  • Removing HOC from List.
  • Changed SelectContainer to use hooks.
  • Changed Collapsible to use hooks.
  • Removed higher-order components.
  • Changed Video to use hooks.
  • Changed Select to fix an issue with callback hooks.

Dev:

  • Replaced css package with PostCSS.
  • Remove recompose dependency.
  • Fixed security warning from the markdown-to-jsx package by updating to 6.11.4.
  • Add jest-axe library for advanced accessibility testing.
  • Fixed and cleaned code coverage references.

v2.13.0

Compare Source

  • NEW Sidebar component.

  • Improved Form documentation.

  • Changed Accordion to fix an issue with wrapped children panels.

  • Changes Select to fix an issue with onChange value.

  • Added containerTarget to Grommet, for enhanced Drop/Layer containers positioning.

  • Changed InfiniteScroll to address issues with React.StrictMode.

  • Fixed console warning of List.

  • Fixed an issue with gap=“none” on RadioButtonGroup.

  • Fixed a11yTitle support of Image.

  • Added ref support to Paragraph.

  • Added ‘size’ option to ‘columns’ prop of DataTable.

  • Fixed the sort icon switch in DataTable.

  • Changed TextInput, MaskedInput, and TextArea to work as uncontrolled components.

  • Enhanced the theme global.input.padding to accept an object.

  • Changed CheckBox checked to default to false as documented.

  • Changed Form to fire onChange once per change.

  • Changed Form to fix caret issue on input fields.

  • Fixed warning with FormField on react-dom 16.13.1.

  • Added icon support for Select to enable icon switches when the drop opens or closes.

  • Added extensive theme styling for disabled Button.

  • Changed Menu to propagate dropProps to DropButton.

  • Changed DropButtton to fix an issue with function refs.

  • Added theme properties for primary and active Button.

TypeScript:

  • Fixed types of Border style.
  • Fixed types of Avatar to include IntrinsicElements.
  • Fixed theme property type for Select control.open.

Hooks Refactoring:

  • WorldMap to use hooks.

v2.12.0

  • New Avatar component.
  • Changed Form to fix some issues with various control patterns.
  • Changed Form to fix an issue with required Checkbox.
  • Changed Select to fix an issue with clearing multiple
  • Fixed Calendar issues with selecting multiple dates and selecting a date with range.

v2.11.3

Compare Source

  • Added name prop for FormField.
  • Changed Image to allow fill to be horizontal or vertical.
  • Added dash prop to Chart.
  • Changed DataTable to add verticalAlign under columns.
  • Added DataTable support for primarykey false.
  • Changed Layer to enable the target to work for non-modal layers.
  • Changed Form to fix an issue with controlled components.
  • Changed Select to fix an issue with value propagation.
  • Changed Grid to fix an issue with flex columns and numeric count.
  • Fixed an issue with dark mode color of Box.
  • Fixed Form FormContext to fix an issue with caret positioning.
  • Changed TextInput to fix an issue with drop opening (fix requires TextInput suggestions to not change on every render, and should be placed on the state or useMemo instead)

TypeScript:

  • Fix type error in theme breakpoints.
  • Development - Fix TypeScript errors on Storybook.

Hooks:

  • Refactor Class Children story to functional components.
  • Changed Accordion and AccordionPanel to use hooks.
  • Refactor DataTable Resizer to use hooks.

v2.11.2

Compare Source

  • Added margin prop to List.

  • Added target prop to Layer.

  • Added icon and reverse props to TextInput and MaskedInput.

  • Added responsive prop for Grid.

  • Added sort and onSort to DataTable.

  • Added transition styling to the Button theme.

  • Changed DataTable to handle an empty column definition.

  • Fixed an issue with border=“between”.

  • Fixed Drop issue with onSuggestionOpen/Close.

  • Fixed Layer background issue on IE11.

  • Fixed mask enforcement on MaskedInput.

  • Fixed issue with Select InfiniteScroll when reaching to the end of the container.

  • Changed FormField to propagate disabled and required to a created input element.

  • Changed FormField to remove validation when unmounted.

  • Changed Form to fix an issue with setting value from a component.

  • Changed FormField to allow react nodes for help, error, and info.

  • Refactoring Drop, Layer, Carousel class components to use React hooks.

TypeScript support:

  • Improved types for theme breakpoints.

v2.11.1

Compare Source

  • Fixed issue with Select setValue.

v2.11.0

Compare Source

General

  • Added new colors to theme: background-contrast, background-front, background-back, text-weak, text-strong, text-xweak, active-background, selected-background, selected-text, graph-0, graph-1, graph-2, graph-3.
  • Added RTL support by adding pad, margin, and border ‘start’ and ‘end’.
  • Added size prop to Button to support ‘small’, ‘medium’ and ‘large’ sizes.
  • Removed unmounted Layer component from the DOM.
  • Added pad prop to Grid.
  • Changed Chart to allow onClick to work on ‘bar’ and ‘point’ types.
  • Added background prop to Grommet component.
  • Fixed Box direction of ‘column-reverse’ to calculate gap height.
  • Changed Select and RangeInput to fix an issue with setting value.
  • Added border=‘between’ to Box.
  • Fixed restoration of tabIndex values for outer focus components.
  • Fixed onChange update on Clock.

FormField

  • Added round to FormField border theme.
  • Added status to FormField validate.
  • Changed FormField validate to accept an array and set aria-invalid when validation fails.
  • Changed FormField to support background styling tied to error and disabled states.
  • Changed FormField to associate rest props with container when not used to automatically render input element.

Form

  • Added validate prop to Form. 
  • Added touched attribute for Form onSubmit event.
  • Changed Form to re-run all failed validations on any field update.

TextInput

  • Fixed ref focus issue for TextInput.
  • Improved TextInput suggestions keyboard accessibility.
  • Fixed TextInput cursor positioning.

RadioButtonGroup

  • Changed RadioButtonGroup to forward props.
  • Added disable prop to RadioButtonGroup.

TypeScript

  • Fixed type of Diagram connections.
  • Fixed Menu icon type.
  • Fixed onChange type of RangeInput.
  • Extend RadioButtonGroup value type to include object.

dependencies

  • Upgraded ‘styled-components’ to 5.0.1 and more packages with minor changes (make sure you have a clean installation and updated npm version).
  • Changed webpack loaders to work on both windows and *nix on dev mode.

Note: Due to the new color additions of  graph-0, graph-1, graph-2, graph-3, the logic of color calculations on visual components has changed. You wouldn’t tell the difference unless you are using a Meter with an array of more than two default grommet colors.

v2.10.0

Compare Source

  • Added Nav Component.
  • Fixed clickable area for CheckBox and RadioButton.
  • Fixed Box background issue on dark mode.
  • Changed RadioButtonGroup to set option ids based on group id.
  • Fixed non-modal Layer accessibly issue.
  • Fixed issue with placeholder of TextInput.
  • Removed styled-components from being included in the grommet package and is now a peer dependency.
    As indicated in the getting started documentation, styled-components should be included in your
    package.json, just like react and react-dom.

TypeScript:

  • Fixed Calendar type of onSelect.
  • Fixed type of Menu component to include all Button props.
  • Extended type of color and size styles on the theme.

Hooks:

  • Refactor Searcher and DataTable components.

v2.9.0

Compare Source

  • New Header component.
  • New Main component.
  • New Footer component.
  • Added type=‘point’ to Chart.
  • Fixed an issue with Chart re-rendering when no values are provided.
  • Changed Chart to take a color array to describe a gradient.
  • Fixed reverse prop on Menu items.
  • Improved TypeScript for DataTable, Distribution, FormField, and List.
  • Added max prop for Meter.
  • Fixed an issue with dark background detection when using alpha.
  • Added focusIndicator prop to Box.

v2.8.1

Compare Source

  • Fixed overflow of search on DataTable.
  • Fixed gap of Menu items.
  • Fixed onClickItem on List.
  • Added a11yTitle prop to Menu.
  • Added onClick to Box.
  • Changed DataTable to pass index to onClickRow.
  • Changed RadioButton to add children rendering.
  • Changed RadioButtonGroup to support children rendering.
  • Improved TypeScript support
  • Added fill prop to Image

v2.8.0

Compare Source

  • NEW List component.
  • Improved TypeScript support.
  • Fixed caption behavior for Table.
  • Add hoverIndicator for Menu.
  • Fixed color calculations.
  • Changed Chart to add auto width and gap.
  • Added themeMode prop to Grommet.
  • Changed DataTable to fix header layout.
  • Added a11ytitle support for Grid.

Notes:

  • Deployed typescript in Grommet for storybook tsx files
  • More refactoring of Class components to use react hooks

v2.7.11

Compare Source

  • Fixed theme typing.

v2.7.10

Compare Source

  • Added the prop fill to WorldMap.
  • Fixed RangeSelector step issue.
  • Improved TypeScript support for theme, props, and events.
  • Fixed Menu onClick for Firefox.

Note: This release includes massive refactoring to use hooks.

v2.7.9

Compare Source

  • Improved TypeScript support.
  • Added custom individual borders for Box.
  • Added Keyboard accessibility for Menu.
  • Added DataTable virtualization with a replace prop.
  • Removed padding for a plain Menu.
  • Added custom Heading styling for Calendar.
  • Added ref support for Image.
  • Fixed RangeSelector mouse events on Edge.

v2.7.8

Compare Source

  • Added min & max support for Box height and width.
  • Changed Layer to fix an issue with animating close.
  • Improved Typescript support.
  • Added margin prop to FormField.
  • Added expansion of group keys on DataTable.
  • Changed DataTable to add background, border, pad, and rowProps.

v2.7.7

Compare Source

  • Improved TypeScript support.
  • Fixed false responsive for Box.
  • Added ability to hide Carousel controls.
  • Improved keyboard accessibility on MaskedInput.
  • Fixed Calendar rendering when the first day of the month is Sunday and firstDayOfWeek is Monday.
  • Improved Grid areas prop to receive an array of rows.
  • Added fill support for Paragraph.
  • Added animation to Layer on close.
  • Added onClickRow to DataTable.
  • Changed DataTable to allow columns properties to traverse data object properties.
  • Applied Button transitions to act only on Button color styling (color, background-color, border-color, box-shadow). Note that in case you have an extensive custom theme that relies on Button transitions of non-color properties, you might be required to add these extensions to your custom theme manually. For more info see issue #​3145 and feel free to reach out.

v2.7.6

Compare Source

  • Fixed TypeScript issue

v2.7.5

Compare Source

  • Improved and Refactored TypeScript support.
  • Added initialChild prop to Carousel.
  • Fixed fill on Carousel.
  • Fixed event handler issue of RangeSelector.
  • Improved consistent hover functionality across the components.
  • Fixed custom style support of gap for Grid.
  • Improved IE support.

v2.7.4

Compare Source

  • Improved TypeScript support.
  • Improved focus on DataTable search.
  • Added theme customization for Select on open.
  • Improved Esc handling for TextInput.
  • Improved blur and focus handling for MaskedInput.
  • Added animation property to Layer.
  • Changed Select to allow more types of options.

v2.7.3

Compare Source

  • Fixed focus behavior on Layer

v2.7.2

Compare Source

  • Improved TypeScript support.
  • Fixed MaskedInput theme support.
  • Fixed MaskedInput event.target props to be available.
  • Added size prop to TextArea.
  • Added onMore and replace props to Select.
  • Enhanced Carousel behavior to support icon colors and animation.
  • Changed DropButton to allow the caller to pass onClick.
  • Changed Menu to pass more items properties through to Button.
  • Changed color parsing to be more resilient.
  • Improved DataTable groupby and search functionality.
  • Improved Layer support on Gatsby.js.

v2.7.1

Compare Source

  • Increased TypeScript support
  • Added step prop support to DataTable
  • Improved extend support for input components
  • Fixed arbitrary size support for Meter, Heading
  • Fixed onChange issue on Form
  • Fixed controlled open state on Select
  • Fixed Form race condition issue

v2.7.0

Compare Source

  • Increased TypeScript support
  • Improved accessibility of TextInput
  • Allowed Select icon prop to accept a node
  • Improved Drop and Table height calculations
  • Added gap customization for Button
  • Fixed styling of font-family on inputs
  • Added support for hsl() background color
  • Added customization for Button color on plain
  • Added open support in Menu
  • Added edge-control customization for RangeSelector
  • Fixed InfiniteScroll behavior on IE
  • Added wordBreak support for Text
  • Improved fill support for Button
  • Changed FormField to handle required with an initial value

v2.6.6

Compare Source

  • Increased TypeScript support
  • Added deprecation warnings on the usage of Routed components
  • Fixed theme issue on grommet button
  • Fixed DataTable overflow issue
  • Improved Search functionality for multi options Select
  • Improved active support on the theme
  • Added wrap-reverse flex support for Box
  • Fixed FormContext update on FormField onChange

v2.6.5

Compare Source

  • Fixed publish script with AUTH in CircleCI

v2.6.3

Compare Source

  • Fix TS of dropProps

v2.6.2

Compare Source

  • Bundle size improvements.
  • Enabled ParcelJS.
  • Improved Calendar daylight saving calculations.
  • Added daysOfWeek prop to Calendar.
  • Added fallback prop to Image.
  • Added opacity prop to Image.
  • Added cssVars prop to Grommet component.
  • Added onReset prop to Form.
  • Added disable styling for TextArea & TextInput.
  • Added theme Heading customization to Accordion.
  • Added support for custom drop overflow.
  • Added open prop for Select.
  • Added icon prop for Select.
  • Removed padding of Button icon on plain.
  • Improved CheckBox styling.
  • Improved TypeScript support.
  • Changed Chart to add pad to calcs.
  • Fixed overflow issue on Accordion.
  • Fixed dark theme issues.

v2.5.5

Compare Source

  • Fixed an issue with FormField validation
  • Fixed an issue with RangeInput custom theming

v2.5.0

Compare Source

  • Increased TypeScript support
  • Improved scrolling of Accordion
  • Improved elevation of Box
  • Added extend support for RangeInput
  • Added extend support for FormField
  • Added theme support for Select
  • Added size and repeat support for Box background
  • Added child render function to Menu
  • Added disabled option to Menu items prop
  • Added size support for Chart
  • Added InfinteScroll handling for multi-column Grid
  • Fixed onMore with InfinteScroll of Grid
  • Fixed initial load of InfinteScroll
  • Changed Button to pass interactive state to children render function
  • Fixed CheckBox toggling and shrinking.
  • Fixed Select hover Button
  • Fixed alignment of an icon within Button
  • Fixed propagation of events with Drop

v2.4.0

Compare Source

  • Increased TypeScript support
  • Added RadioButtonGroup component
  • Added extend support for TextInput
  • Added around and evenly support for the Box justify prop
  • Added style support for the Box gap prop
  • Added colspan support for TableCell
  • Added justifyContent prop to
  • Added onBlur prop to MaskedInput
  • Added interactiveChild prop to Stack
  • Added id prop to Select
  • Added real-time support for Diagram updates
  • Improved accessibility for TextInput, FormField, MaskedInput, TextArea
  • Improved responsive for Grid columns
  • Added non-shaking-tree support
  • Fixed Form validation for values
  • Fixed Extend on ThemeContext
  • Fixed scrubber for Video

v2.3.1

Compare Source

  • Fixed typescript definitions for Form

v2.3.0

Compare Source

  • Fixed accessibility for Select
  • Increased TypeScript support
  • Added dropHeight prop to TextInput
  • Updated Grommet component to remove browser default margin when full is true
  • Added pixel size support for the Box round prop
  • Added style support to for the Box border prop
  • Added grow and shrink support to Box flex prop
  • Allowing thickness size in Meter
  • Added custom font weight for each level support to Heading
  • Added levels 5 and 6 to Heading
  • Added animate prop and corner options to position prop on Layer
  • Added Form component
  • Added extend support for Calendar day
  • Added primaryKey, resize, sortable props to DataTable
  • Added HTML tags support to Markdown

v2.2.1

Compare Source

  • Fixed Select onChange not triggering for multiple with custom options
  • Fixed Select dropHeight to use max-height instead of height
  • Added withTheme proxy inside grommet to avoid libraries breaking after remove withTheme in Grommet

v2.2.0

Compare Source

  • Fix Anchor style inside markdown
  • Added dropHeight, emptySearchMessage props to Select
  • Fix target object inside Select onChange
  • Fixed accessibility and keyboard operability for Select
  • Fixed accessibility for CheckBox
  • Updated base theme colors
  • Integration with grommet-icons v4
  • Moved grommet-icons and grommet-styles from peerDependency to dependency
  • Added MaskedInput
  • Fixed SkipLinks not showing when pressing tabs

v2.1.1

Compare Source

  • Fix regression with Layer margin with centered position
  • Fix Typescript support to allow for intrinsic elements

v2.1.0

Compare Source

  • DataTable now allows falsey values
  • Select now allows ‘extend’ for container
  • Removed Firefox outline from focused elements.
  • Added ability to scroll tabs independently
  • Theme font object now allows weight
  • Improved accessibility for Layer, Select, TextArea and TextInput  
  • Add replace prop to InfiniteScroll
  • Add labelKey, disabledKey, valueLabel, valueKey props to Select
  • Add tag prop to Button
  • Theme now allows custom debounce time
  • Fixed drop container height
  • Deprecate tag prop in favor of styled component as
  • Heading theme allows font object in every level
  • Flexible zIndex for Drop and Layer.
  • Add indeterminate state for checkbox 
  • Add elevation and plain props to Drop
  • Select uses InfiniteScroll replace
  • Fix margin on Layer
  • Better Server-Side Rendering support for Grommet
  • Grommet leverages styled-components ThemeContext
  • Improved typescript support
  • Better boundary conditions for RangeSelector

v2.0.1

Compare Source

  • Fixed an issue with Select where the options were not being updated
  • Fixed an alignment issue with Drop when the component updated

v2.0.0

Compare Source

  • Allowing pixel value padding on margins
  • Added xlarge size to Paragraph and Heading
  • Updated to use system-ui font in the Grommet theme
  • Added size prop to Anchor
  • Added fill to TextArea
  • Changed base theme elevation values
  • Fixed daylight savings in Calendar
  • Fixed RangeSelect to fix an issue with step
  • Add plain prop to Grommet
  • Fixed Layer on mobile
  • Changed base theming for Tabs
  • Fixed TextInput and TextArea to not close the Layer on pressing esc
  • Fixed performance on Select and preventing scrolling to the top when selecting an option

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


This PR has been generated by Renovate Bot.

@xcomponentadmin
Copy link
Contributor Author

xcomponentadmin commented Jan 18, 2020

⚠️ Lock file problem

Renovate failed to update a lock file. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including lockfile, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The lock file failure details are included below:

yarn.lock
error An unexpected error occurred: "https://registry.yarnpkg.com/grommet-icons/-/grommet-icons-4.4.0.tgz: ESOCKETTIMEDOUT".
Process stalled
Active handles:
  - Socket
  - Socket
  - Socket
  - TLSSocket
  - TLSSocket
  - TLSSocket

@xcomponentadmin
Copy link
Contributor Author

Autoclosing Skipped

This PR has been flagged for autoclosing, however it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant