@dscout/particle 1.0.0-alpha.2 → 1.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/lib/components/advanced_options.js +15 -3
  2. package/lib/components/attribute_input.js +15 -3
  3. package/lib/components/attribute_selector.js +14 -3
  4. package/lib/components/button.js +18 -6
  5. package/lib/components/button_control.js +15 -3
  6. package/lib/components/button_icon.js +142 -40
  7. package/lib/components/button_mode.js +18 -6
  8. package/lib/components/button_plain.js +16 -4
  9. package/lib/components/card.js +12 -2
  10. package/lib/components/checkbox_input.js +15 -3
  11. package/lib/components/collapsing_menu.js +15 -3
  12. package/lib/components/common_button.js +65 -5
  13. package/lib/components/common_input.js +15 -3
  14. package/lib/components/container.js +74 -14
  15. package/lib/components/container_header.js +2 -2
  16. package/lib/components/drag_and_drop.js +14 -3
  17. package/lib/components/dropdown_input_toggle.js +15 -4
  18. package/lib/components/editing_container.js +2 -3
  19. package/lib/components/email_input.js +15 -3
  20. package/lib/components/file_input.js +15 -3
  21. package/lib/components/link_text.js +283 -0
  22. package/lib/components/number_input.js +15 -3
  23. package/lib/components/password_input.js +15 -3
  24. package/lib/components/radio_input.js +15 -3
  25. package/lib/components/range_input.js +15 -3
  26. package/lib/components/search_input.js +15 -3
  27. package/lib/components/select_input.js +15 -3
  28. package/lib/components/tags_input.js +16 -3
  29. package/lib/components/text_input.js +15 -3
  30. package/lib/components/textarea.js +15 -3
  31. package/lib/components/togglable_fieldset.js +15 -3
  32. package/lib/components/toggle.js +15 -3
  33. package/lib/index.js +8 -16
  34. package/lib/stylesheets/particle.css +4495 -3192
  35. package/lib/stylesheets/particle.css.map +1 -0
  36. package/lib/stylesheets/particle.min.css +1 -1
  37. package/lib/stylesheets/particle.min.css.gz +0 -0
  38. package/lib/utils/data_attributes.js +18 -0
  39. package/lib/utils/markscout.js +2 -2
  40. package/package.json +29 -27
  41. package/styles/_base.scss +5 -8
  42. package/styles/_reset.scss +5 -0
  43. package/styles/components/_icons.scss +7 -14
  44. package/styles/components/attribute_selector/_base.scss +3 -3
  45. package/styles/components/button_icon/_base.scss +22 -0
  46. package/styles/components/button_icon/themes/_bandit.scss +5 -0
  47. package/styles/components/button_icon/themes/_researcher.scss +5 -0
  48. package/styles/components/button_icon/themes/_theme_builder.scss +12 -0
  49. package/styles/components/buttons/_base.scss +245 -382
  50. package/styles/components/buttons/themes/_bandit.scss +16 -16
  51. package/styles/components/buttons/themes/_theme_builder.scss +49 -73
  52. package/styles/components/card/_base.scss +0 -8
  53. package/styles/components/container/_base.scss +10 -20
  54. package/styles/components/container/themes/_theme_builder.scss +15 -14
  55. package/styles/components/footnote/_base.scss +1 -1
  56. package/styles/components/input_group/_base.scss +4 -4
  57. package/styles/components/link_text/_base.scss +52 -0
  58. package/styles/components/link_text/themes/_bandit.scss +5 -0
  59. package/styles/components/link_text/themes/_researcher.scss +5 -0
  60. package/styles/components/link_text/themes/_theme_builder.scss +11 -0
  61. package/styles/components/menu/_base.scss +2 -3
  62. package/styles/components/pill/_base.scss +13 -0
  63. package/styles/components/segmented_controls/_base.scss +1 -1
  64. package/styles/components/swappable/_base.scss +10 -2
  65. package/styles/particle.scss +2 -2
  66. package/styles/themes/_bandit.scss +40 -5
  67. package/styles/themes/_bandit_colors.scss +9 -0
  68. package/styles/themes/_researcher.scss +8 -5
  69. package/styles/themes/_researcher_colors.scss +91 -0
  70. package/styles/themes/_theme_builder.scss +215 -0
  71. package/styles/utilities/_alignment.scss +14 -137
  72. package/styles/utilities/_borders.scss +0 -44
  73. package/styles/utilities/_colors.scss +76 -605
  74. package/styles/utilities/_dimensions.scss +51 -265
  75. package/styles/utilities/_display.scss +1 -64
  76. package/styles/utilities/_overflow.scss +0 -55
  77. package/styles/utilities/_radii.scss +102 -30
  78. package/styles/utilities/_shadows.scss +0 -59
  79. package/styles/utilities/_spacing.scss +69 -534
  80. package/styles/utilities/_typography.scss +11 -333
  81. package/CHANGELOG.md +0 -1548
  82. package/lib/components/container_inner.js +0 -93
  83. package/lib/components/controls.js +0 -106
  84. package/styles/_mixins.scss +0 -134
  85. package/styles/_tables.scss +0 -138
  86. package/styles/_theme_builder.scss +0 -356
  87. package/styles/_variables.scss +0 -248
  88. package/styles/components/_links.scss +0 -141
  89. package/styles/css_variables/_bandit.scss +0 -45
  90. package/styles/css_variables/_researcher.scss +0 -5
package/CHANGELOG.md DELETED
@@ -1,1548 +0,0 @@
1
- # CHANGELOG
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
- and this project adheres to [Semantic Versioning](http://semver.org/).
7
-
8
- ## [Unreleased alpha]
9
-
10
- ## [1.0.0-alpha.2]
11
-
12
- ### Fixed
13
- - Bandit theme `--shadow--s` is now a valid `box-shadow` value
14
- - Spacing and dimension enums in `<Flex />` component proptypes
15
- - Calc statement causing parsing errors in some `postcss-values-parser` versions
16
-
17
- ## [1.0.0-alpha.1]
18
-
19
- ### Added
20
- - Added `<AttributeInput />`
21
- - `<InputGroup />`, `<InputGroupItem />`, and `<InputAddon />`
22
-
23
- ### Changed
24
- - `<AttributeSelector />` is now themeable.
25
- - `<AttributeSelector />` is now renders radio inputs with the `<AttributeInput />` component instead of buttons.
26
- - `<Avatar />` is now themeable.
27
- - `<Blitz />` is now themeable.
28
- - `<Blitz />` now accepts `coaching` as a `type` prop.
29
- - `<Cards />`, `<Card />`, `<Thumbnail />`, `<CardBody />`, and `<CardFooter />` are now themeable.
30
- - `<CollapsingMenu />` is now themeable.
31
- - `<DragAndDrop />` is now themeable.
32
- - `<Dropdown />` and `<DropdownInputToggle />` are now themeable.
33
- - `<FileInput />` is now themeable.
34
- - `<Footnote> />` is now themeable.
35
- - Additionally, the `aside` element is no longer styled to look like a `<Footnote />` by default.
36
- - `<List />` and `<ListInline />` are now themeable.
37
- - `<Pill />` is now themeable.
38
- - `<Row />` and `<Column />` are now themeable.
39
- - `<Separator >` is now themeable.
40
- - `<SpeechBubble />` is now themable.
41
- - `<SpeechBubble/>` now supports a tail prop of `none`.
42
- - `<SpeechBubble/>` also now supports most color classes for background and text color options.
43
- - `<SwappableContent />` is now themeable.
44
- - `<SegmentedControls />` and `<ButtonControl />` are now themeable.
45
- - `<TagsInput />` are now themeable.
46
- - `<TooltipContainer />` and `<Tooltip />` are now themable.
47
- - Breaking: Width, height, margin, padding, and position utility classes have been renamed to follow a consistent naming convention, with enums representing em values in a revised spacing scale.
48
- - Width and height utility classes are available for the following enums: `0.25`, `0.5`, `0.75`, `1`, `1.5`, `2`, `3`, `4`, `5`, `6`, `8`, `10`, `12`, `14`, `16`, `18`, `20`, `22`, `24`, `26`, `28`, `30`, `32`, `36`, `40`, `48`, `60`.
49
- - Margin, padding, and position utility classes are available from `0.25` through `4`.
50
- - The old t-shirt sized enums map to the em-based enums in the following way: `xs`->`0.25`, `s`->`0.75`, `m`->`1`, `base`->`2`, `l`->`3`, `xl`->`4`. For example, `margin--s` is now `margin--0.75`.
51
- - The old numeric enums map to double the original number (they previously represented multiples of 2em but now represent multiples of 1em). For example, `width--10` is now `width--20`.
52
- - Breaking: `<Bug />` component
53
- - renamed to `<Chip />`
54
- - accepts any color enum
55
- - sets colors based on inherited text color when no color is specified
56
- - accepts a new `textColor` prop to set the text color independently of the background or outline color.
57
- - Breaking: Input components no longer accept `onPrefixClick` and `onSuffixClick` props. An `<InputGroup />` should be used to compose an input and a button component instead.
58
-
59
- ### Fixed
60
- - Fixed a bug where `<SegmentedControls />` did not apply the corner radii to the first and last `<ButtonControl />` under certain conditions.
61
- - `<SelectInput />` and `<DropdownToggleInput />` now correctly handle text truncation, apply the correct icon spacing in the `mini` state, and apply the correct disabled stying to the icon.
62
- - `<AttributeInput />` now has a focus outline for keyboard accessibility.
63
- - `<AttributeSelector />` now sets the same name on each `<AttributeInput />` for keyboard accessibility.
64
- - `<Toggle />` renders with correct opacity when disabled.
65
-
66
- ### Removed
67
- - `<Scene />` component. "Scene" styles were an early attempt at theming for different color schemes, which we plan to reimplement via CSS variables at a later date.
68
- - Removed `gutter--none`, `gutter--xs`, `gutter--s` and `gutter--custom` classes.
69
- - Gutter spacing for grids is now defined with the `columnGap` prop on `<Row />`.
70
-
71
- ## [1.0.0-alpha.0]
72
-
73
- ### Added
74
-
75
- - Spacing utility classes to define margins between direct descendants (e.g. `spacing-h--m`).
76
-
77
- ### Changed
78
-
79
- - Flex align, direction, justify, and wrap utility classes are no longer scoped to the `.flex` class, so they now have less specificity.
80
- - `<Flex />` now accepts a `spacing` prop
81
- - `<Button />` component is now themeable.
82
- - `<Textarea />`, `<TextInput />`, `<NumberInput />`, `<PasswordInput />`, `<EmailInput />`, `<SearchInput />`, and `<SelectInput />` are now themeable.
83
- - `<Toggle />` is now themeable
84
- - `<CheckboxInput />` and `<RadioInput />` are now themeable
85
- - `<RangeInput />` is now themeable
86
- - `<Menu />`, `<MenuItem />`, `<MenuList />`, `<MenuItemLI />` and `MenuLink` are now themeable.
87
- - `<Modal />` is now themeable.
88
- - `<TextInput />`, `<NumberInput />`, `<PasswordInput />`, `<EmailInput />`, `<Textarea />`, `<SelectInput />`, and `<TagsInput />` now accept `invalid` prop to render invalid styles.
89
- - Breaking: Grayscale colors have been renamed to `gray-1` (formerly `main-light`), `gray-2` (formerly `dem`), `gray-3` (formerly `disabled`), `gray-4` (formerly `line`), `gray-5` (formerly `faint`), and `gray-6` (formerly `min`).
90
- - Grayscale colors no longer apply transparency
91
- - Breaking: Border utility class `.border--n` has been renamed to `.border--none` for naming consistency.
92
- - Breaking: `<Flex />` `height`, `spacing`, and `width` props updated to use sizing class names.
93
- - Breaking: `.no-underline` utility renamed to `.text-decoration--none`.
94
- - Breaking: `.font-weight--b` renamed to `.font-weight--bold`.
95
- - Breaking: `<Separator />` no longer accepts `solid` prop. Instead, it accepts `color` prop to provide more flexibility (replace `solid` with `color="line-s"`).
96
- - Breaking: `<main />` element no longer has default styles that set max width, horizontal margins, and padding.
97
- - Breaking: `<ContainerHeader />` no longer inherits edit/view styles from the `.container` class. Use the `isEditing` prop in sync with the `<EditingContainer />` instead.
98
- - Breaking: Container component classes have been renamed to follow a new naming convention.
99
- - Breaking: Button component classes have been renamed to follow a new naming convention.
100
- - Breaking: Input component classes have been renamed to follow a new naming convention.
101
- - Breaking: Toggle component classes have been renamed to follow a new naming convention.
102
- - Breaking: Radio and checkbox component classes have been renamed to follow a new naming convention.
103
- - Breaking: Range input component classes have been renamed to follow a new naming convention.
104
- - Breaking: `<Modal />` component's `padding` prop is no longer a boolean. It now accepts an enum value to give it a custom padding amount in the 0-4ems range.
105
- - Breaking: `<Button />` component no longer accepts `tiny` size because it was never used.
106
- - Breaking: `<ButtonLink />` renamed to `<ButtonPlain />`
107
- - Breaking: Sequential button components no longer have spacing automatically applied between them. Wrap with `<Flex spacing="s"> />` or an element with `.spacing-h--s` instead.
108
- - Breaking: `menu--divider`, `menu--sortable`, `menu--dragging` and `menu--ghost` classes renamed to `Menu__Divider`, `Menu__Item--sortable`, `Menu__Item--dragging`, and `Menu__Item--ghost`.
109
- - Breaking: The `white` enum for button colors has been renamed to the color-scheme-agnostic `invert`.
110
-
111
- ### Removed
112
-
113
- - Float and clearfix utilities. We don’t use floats anymore now that flex layouts exist.
114
- - `.text-space--n` utility class, which is now `.white-space--nowrap`.
115
- - `.col--` utility classes (for CSS Grid columns). We would need more Grid-specific utility classes to make these useful, so I’m planning on removing these for now until we can think about grid layouts more holistically.
116
- - `.em`, `.i`, `.b`, `.strong`, `.strike`, `.u`, `.underline`, `.small`, `.mark` classes. Semantically, the corresponding HTML elements should typically be used. If not, a more descriptive utility class (e.g. `font-weight--bold` or `.font-size--s`) should be used.
117
- - `.big`, `.dem` classes. We should use color and font-size utility classes instead.
118
- - Aliases supporting incorrectly named spacing utility classes. E.g.: `margin--b-s`, `padding--h-base`.
119
- - `$color--code-highlight` SCSS variable because it's never been used.
120
- - `left`, `right`, `top` and `bottom` enums for flex utility classes. These have been deprecated since v0.33.0.
121
- - `<ButtonPrimary />` (use `<Button />` and configure the `color` and `variant` props to match original designs)
122
- - `<ButtonSecondary />` (use `<Button size="small" />` and configure the `color` and `variant` props to match original designs)
123
- - `<ButtonGroup />` (use `<Flex spacing="s" />` and configure the `justify` prop to match original alignment)
124
- - "scene"- and "hue"- specific classes for button styles.
125
- - `.btn--accent-` and `.btn--roll-` classes because they have never been used. These can be replaced by `hover:` utility classes.
126
- - `<Fieldset />` component. The only concern this component handled that couldn't be handled with a plain `<fieldset />` was setting invalid styles on nested form elements. Invalid styling concerns have been moved to the input components themselves, leaving the `<Fieldset />` useless.
127
- - `<ValidationMessage />` component. It didn't provide anything useful other than red text, and we don't have clearly-enough defined form validation patterns to justify encapsulating them in a Particle component.
128
- - `edit-state` color and utility classes
129
- - Solid-variant utility classes for grayscale colors. For example, `color--main-light-s`. Grayscale colors no longer apply transparency.
130
-
131
- ## [Unreleased]
132
-
133
- ## [0.46.0]
134
-
135
- ### Added
136
-
137
- - Added `IconClip`
138
-
139
- ### Changed
140
-
141
- - Updated the `IconHighlighter` and `IconTag` to a newer design
142
-
143
- ## [0.45.3]
144
-
145
- ### Added
146
-
147
- - Added `IconResponses`
148
-
149
- ## [0.45.2]
150
-
151
- ### Changed
152
-
153
- - `<IconPayment />` now accepts the `filled` prop.
154
- - Updated the `<IconThumbsUp />` and `<IconThumbsDown />` to a newer design.
155
- - Updated the `<IconFilter />`.
156
-
157
- ### Fixed
158
-
159
- - The href for MarkScout links must now start with a protocol, which prevents XSS attacks from Javascript URIs like `javascript:alert('attack')`.
160
- - MarkScout links and autolinks add `rel="noopener"` to prevent a phishing attack vector.
161
-
162
- ## [0.45.1]
163
-
164
- ### Changed
165
-
166
- - Min and max elements darkened to `main-light` to meet a11y color contrast guidelines.
167
- - All form input components now accept `aria-invalid` prop.
168
-
169
- ## [0.45.0]
170
-
171
- ### Added
172
-
173
- - Added `IconEmail` and `IconExternalLink`.
174
- - Added `color--line`, `color--line-s`, `bg-color--line`, and `bg-color--line-s` classes.
175
-
176
- ### Changed
177
-
178
- - `IconQuotationMark` style has been updated to no longer be filled.
179
- - `IconPayment` style has been updated to be filled.
180
- - The `<CommonSVG />` has been updated so the `<title />` tag is a direct descendant of the `<svg />` for a11y.
181
- - Updated the `background-color` applied to the `dscout` hue button on hover when in the scene `night` for a11y.
182
-
183
- ## [0.44.0]
184
-
185
- ### Added
186
-
187
- - Added `IconQuotationMark`, `IconSendPayment`, `IconApprovePayment`, and `IconPayment`.
188
- - Added variables for `light`, `outline`, `dark`, and `darkest` color variants for `dscout`, `coachmark`, and `alert`.
189
-
190
- ### Changed
191
-
192
- - The `<CommonSVG />` now returns an `<svg />` with prop `role="img"` for a11y.
193
- - `$color--main-light`, `$color--dscout`, `$color--coachmark`, and `$color--alert` have been darkened slightly to meet the WCAG 2.0 AA color contrast guideline.
194
- - The default variant for `dscout`, `coachmark`, and `alert` buttons now use the `dark` and `darkest` color variables for their hover and active states.
195
- - The `glass` variants for `dscout`, `coachmark`, and `alert` buttons now meet WCAG 2.0 AA color contrast guidelines in the default and hover states (when used against white backgrounds).
196
-
197
- ## [0.43.0]
198
-
199
- ### Added
200
-
201
- - Added `IconColumn`, `IconRow`, and `IconTagGroup`.
202
-
203
- ### Changed
204
-
205
- - Updated design of `IconSpreadsheet` and `IconImageFile`. They now support size props.
206
-
207
- ## [0.42.1]
208
-
209
- ### Changed
210
-
211
- - All button components now accept `aria-pressed`.
212
-
213
- ## [0.42.0]
214
-
215
- ### Added
216
-
217
- - Generic `<FocusTrap />` component to more easily implement complex focus handling
218
-
219
- ### Changed
220
-
221
- - All components now accept an `id`.
222
- - All components now accept `aria-describedby`, `aria-label`, and `aria-labelledby`.
223
- - The `<Scene />`, `<TagsInput />`, and `<TooltipContainer />` are now compatible with `<Modifier />`.
224
- - Function-based components now use JS default arguments instead of React `defaultProps` for default values.
225
- - The `role="dialog"` attribute is applied to the modal container, not the overlay wrapper.
226
- - The modal container now also sets the `aria-modal` attribute.
227
- - The `<Modal />` and `<Blitz />` components now implement a focus trap pattern, preventing the user from tabbing to content outside of the dialog when it is open.
228
- - The `<Modal />` exposes a prop to specify which child element should receive the initial focus on open.
229
- - The `<Blitz />` now allows its owner to specify which child element should receive the initial focus (but still defaults to the close button if none is specified).
230
- - The `<Blitz />` close button will now always have an accessible name, but it can be customized as needed.
231
- - The `<Blitz />` uses the ARIA role `alertdialog` instead of `dialog` to ensure that its content is announced to screen readers when it is triggered.
232
-
233
- ### Fixed
234
-
235
- - `aria-expanded` now lists the correct prop type on `<DropdownInputToggle />`
236
-
237
- ## [0.41.0] - 2020-11-05
238
-
239
- ### Added
240
-
241
- - The`<SVGIcon> />` component has been added to help with making Particlesque icons with your own SVGs.
242
- - Added `<IconTranslate />`
243
-
244
- ### Changed
245
-
246
- - Input elements now support the `tabIndex` prop.
247
- - `<RangeInput />` and `<DragAndDrop />` now support the `disabled` prop.
248
- - The `<CommonSVG />` and all icon components now accept the following ARIA attributes: `aria-describedby`, `aria-hidden`, `aria-label`, and `aria-labelledby` props.
249
- - The placeholder font color has been updated to meet accessibility color contrast guidelines.
250
- - The `<AdvancedOptions />`, `<CollapsingMenu />`, and `<Dropdown />` automatically apply the `aria-controls` and `aria-expanded` ARIA attributes. Note that `aria-controls` is applied only when an `id` is provided.
251
- - All button components and the `<DropdownInputToggle />` now accept the following ARIA attributes: `aria-describedby`, `aria-label`, `aria-labelledby`, `aria-controls`, and `aria-expanded`.
252
- - The `<CollapsingMenu />`, `<CollapsibleContent />`, and all icons now accept an `id`.
253
-
254
- ### Fixed
255
-
256
- - `<RangeInput />` will now render correctly in Firefox
257
- - `<RangeInput />` no longer hard-codes a `defaultValue` of 0, which threw errors when a `value` was provided
258
-
259
- ## [0.40.5] - 2020-07-15
260
-
261
- ### Changed
262
-
263
- - The `<IconClock />` component now has a `timer` variant.
264
- - The `<Button />` component now accepts the `test` color.
265
- - The `<TooltipContainer />` and `<Tooltip />` components now accept an `invert`
266
- prop that sets the background color to `$color--invert` and the foreground
267
- color to `$color--main`.
268
-
269
- ## [0.40.4] - 2020-06-10
270
-
271
- ### Changed
272
-
273
- - `<Dropdown />` now accepts `onToggle` callback to notify parent component when
274
- dropdown is opened or closed.
275
-
276
- ## [0.40.3] - 2020-06-04
277
-
278
- ### Changed
279
-
280
- - `<Modal />` supports additional backdrop colors: `coachmark`, `dscout`, and `main`.
281
- - `<MenuItem />`, `<MenuItemLI />`, and `<MenuLink />` now support 3rd party
282
- sorting libraries such as SortableJS via the `sortable` prop and classes that
283
- provide styles for the various states of a sorting interaction
284
- - The `<Bug />` now supports the `main-light` color
285
- - The `<Scene />` component now accepts the `coachmark` hue
286
-
287
- ### Fixed
288
-
289
- - `<TooltipContainer />` does not reset the its calculated fixed position
290
- when the `show` prop transitions to `false` to avoid the component
291
- "stuttering" when it hides.
292
-
293
- ## [0.40.2] - 2020-05-29
294
-
295
- ### Changed
296
-
297
- - `<DragAndDrop />` will now allow a user to select the same file several
298
- times in a row.
299
- - `<EditingContainer />` now accepts `<Modifier />` props
300
- - The precedence of padding and margin classes has been adjusted. Vertical
301
- and horizontal declarations now take lower precedence over left, right, top and
302
- bottom ones. Additionally, the `none` variant for all orientations now takes
303
- precedence over the `xs`, `s`, `m`, `l` and `xl` properties.
304
- - Updated `<TooltipContainer />` to recalculate the fixed position of the
305
- tooltip when the `show` prop changes.
306
-
307
- ## [0.40.1] - 2020-05-14
308
-
309
- ### Changed
310
-
311
- - The `<Thumbnail />`, `<CollapsibleContent />`, and `<SwappableContent />`
312
- components no longer use deprecated lifecycle methods
313
- - All interactive elements now accept a `name` prop to provide a friendlier and
314
- more reliable selector for external tools like Capybara or Pendo
315
- - An `id` prop has been added to the `<AdvancedOptions />`,
316
- `<DropdownInputToggle />`, `<EditingContainer />`, `<MenuItemLI />`, and
317
- `<RangeInput />` components.
318
- - Buttons in the `<AttributeSelector />`, `<ButtonControl />`,
319
- `<CollapsingMenu />`, and `<DropdownInputToggle />` components now apply
320
- `type="button"`. Browsers treat buttons as a submit button by default, which
321
- can lead to unexpected form submissions and page reloads.
322
- - `<EditingContainer />` now accepts a `label` prop to provide a text
323
- description for screen readers.
324
- - The `<TooltipContainer />` is now keyboard operable, showing and hiding the
325
- tooltip on focus and blur events in addition to hover events
326
- - The `<Tooltip />` now sets the text color to `$color--invert` for its content,
327
- which it should have all along since the background color is `$color--main`
328
- - Tooltip stories have been improved to demonstrate the `<TooltipContainer />`
329
- as the preferred tooltip implementation
330
- - The `<FileInput />` is now a controlled input by default
331
-
332
- ### Fixed
333
-
334
- - The `<Thumbnail />` now responds to changes in the `imageUrl` prop
335
- - Hover events no longer override the `show` prop in the `<TooltipContainer />`
336
- - `<FileInput />` can accept the same file multiple times in a row
337
-
338
- ## [0.40.0] - 2020-04-14
339
-
340
- ### Added
341
-
342
- - `color--diary`, `b-color--diary`, and `bg-color--diary` classes
343
- - `color--coachmark`, `b-color--coachmark`, and `bg-color--coachmark` classes
344
- - Added `<IconFileTypeText />`, `<IconRocket />`, and `<IconWand />`
345
-
346
- ### Changed
347
-
348
- - Changed the color for `color--close`. It's now a dark blue.
349
- - `<Bug />` now supports `outline` for part colors
350
- - All components, with the exception of icons, now support the `getRef` prop
351
- to get a ref on the component's DOM node
352
- - The `getRef` prop now accepts ref containers from the `useRef` hook
353
-
354
- ### Fixed
355
-
356
- - `<Card />`, `<MenuLink />`, and button components no longer throw console
357
- errors when the `linkComponent` is a function component and no `refProp` prop
358
- is specified. The `refProp` prop is only needed in combination with the
359
- `getRef` prop.
360
-
361
- ## [0.39.0] - 2020-02-05
362
-
363
- ### Added
364
-
365
- - `<IconWifi />`
366
- - `<TooltipContainer />` - this component allows you to lay out a `<Tooltip />`
367
- with fixed positioning.
368
-
369
- ### Changed
370
-
371
- - Added `small` variant to:
372
- - `<IconMission />`
373
- - `<IconLiveMission />`
374
- - `<IconExpressMision />`
375
- - `<IconScreener />`
376
-
377
- ### Fixed
378
-
379
- - Corrected the `tightViewBox` props for:
380
- - `<IconMission />`
381
- - `<IconMissionCard />`
382
- - `<IconLiveMission />`
383
- - `<IconLiveMissionCard />`
384
- - `<IconExpressMission />`
385
- - `<IconExpressMissionCard />`
386
- - `<IconScreener />`
387
- - `<IconScreenerCard />`
388
-
389
- ## [0.38.0] - 2020-01-13
390
-
391
- ### Added
392
-
393
- - `<IconExpressMission />`
394
- - `<IconExpressMissionCard />`
395
- - `<IconScreenShare />`
396
- - `<IconSpinnerProgress />`
397
- - `<IconTypeVideo />`
398
- - `<DragAndDrop />` component for uploading files
399
-
400
- ### Changed
401
-
402
- - React peer dependency has been upped to ^16.8.0
403
- - The `<Avatar />` component no longer uses lifecycle methods deprecated as of
404
- React v16.9.0
405
- - The `<MediaQuery />` component no longer uses deprecated lifecycle methods
406
- - `<IconMission />` was moved to `<IconMissionCard />` and `<IconMission />` now renders the icon without the card border.
407
- - `<IconScreener />` was moved to `<IconScreenerCard />` and `<IconScreener />` now renders the icon without the card border.
408
-
409
- ## [0.37.4] - 2019-12-18
410
-
411
- ### Changed
412
-
413
- - The `MarkScout` parser is now exported from `@dscout/particle/lib/markscout`
414
-
415
- ### Fixed
416
-
417
- - `<RadioInput />` now accepts `readOnly` as a prop
418
-
419
- ## [0.37.3] - 2019-08-27
420
-
421
- ### Fixed
422
-
423
- - `<Tooltip />` now accepts an `isDiv` prop
424
- - `<EmailInput />`, `<NumberInput />`, `<PasswordInput />`, `<RangeInput />`,
425
- `<SearchInput />`, `<SelectInput />`, `<TextInput />`, and `<Textarea />`
426
- now expect the `autoComplete` attribute to be a string
427
- - `<TagsInput />` now accepts `autoComplete` string prop
428
- - `<CheckboxInput />` now unsets the `indeterminate` attribute on the DOM node
429
- when the prop changes from `true` to `false`
430
-
431
- ## [0.37.2] - 2019-06-17
432
-
433
- ### Fixed
434
-
435
- - `<Modal />` now closes itself (if currently open) on unmount
436
-
437
- ## [0.37.1] - 2019-04-18
438
-
439
- ### Changed
440
-
441
- - `<AdvancedOptions />` accepts `disabled` prop
442
- - `<AdvancedOptions />` `title` prop now expects any React node
443
-
444
- ## [0.37.0] - 2019-04-15
445
-
446
- ### Added
447
-
448
- - `<IconGrip />`
449
-
450
- ## [0.36.0] - 2019-04-05
451
-
452
- ### Fixed
453
-
454
- - Fixed `diary` color in `glass` and `outline` variants of `<Button>`
455
- - Fixed proportions on `<IconThumbsUp />` and `<IconThumbsDown />`
456
- - `<Avatar />` no longer squishes images with a non-square aspect ratio
457
- - Icons no longer apply `color--undefined` class when no color is provided
458
-
459
- ### Added
460
-
461
- - Utility classes for setting small z-indexes.
462
- - `<IconLink />`
463
-
464
- ### Changed
465
-
466
- - Added `borderColor` and `borderPosition` props to `<Card />` component.
467
- - `<EmailInput />`, `<NumberInput />`, `<PasswordInput />`, `<RangeInput />`,
468
- `<SearchInput />`, `<SelectInput />`, `<TextInput />`, and `<Textarea />`
469
- support the `autoComplete` attribute.
470
- - Icons now accept a `tight` prop that removes the horizontal spacing around
471
- the icon
472
- - `<Flex />` `direction` prop now accepts `"row"`, and `"rtl"` enum has been
473
- renamed to `"row-reverse"` for consistency
474
- - `<TogglableFieldset />` now accepts `invalid` prop and applies disabled prop
475
- to fieldset to disable child form elements
476
- - Improve spacing between toggle and fieldset in `<TogglableFieldset />`
477
-
478
- ### Removed
479
-
480
- - Deleted `CardColorBar` component.
481
- - Unnecessary !important flag from inline list styles
482
-
483
- ## [0.35.2] - 2019-03-05
484
-
485
- ### Changed
486
-
487
- - Simplified `<IconThumbsUp />` and `<IconThumbsDown />`
488
-
489
- ## [0.35.1] - 2019-02-12
490
-
491
- ### Changed
492
-
493
- - `<SegmentedControls />` now has darker and bolder text
494
-
495
- ### Fixed
496
-
497
- - Overly-greedy link parsing in MarkScout
498
-
499
- ## [0.35.0] - 2019-02-05
500
-
501
- ### Added
502
-
503
- - `<IconMediaUpload />`
504
- - `<IconFilter />`
505
- - `<IconFit />`
506
- - `<TextFormatter />` to replace `<Markdown />`. This component has been
507
- replaced with a more flexible `<TextFormatter />` component that uses the
508
- custom MarkScout spec by default.
509
-
510
- ### Changed
511
-
512
- - `<ButtonControl />` now accepts `disabled` prop
513
-
514
- ### Removed
515
-
516
- - marked.js as a dependency. We no longer want to be coupled directly to
517
- Markdown for text formatting
518
- - `<Markdown />`
519
-
520
- ## [0.34.0] - 2018-12-06
521
-
522
- ### Added
523
-
524
- - `<Heading />`
525
- - `<Markdown />`
526
- - Margin classes for `auto`
527
- - `<MenuItem />`
528
- - `<MenuLink />`
529
- - `<MenuItemLI />`
530
- - `<IconPin />`
531
-
532
- ### Changed
533
-
534
- - `<Modifier />` can now apply `auto` for margins
535
- - DEPRECATED: Margin and padding class names should now follow correct pattern
536
- of `[property]-[direction]--[size]` (e.g. `margin-r--s` instead of the
537
- previously incorrect `margin--r-s`). The incorrectly-named selectors still
538
- exist for the sake of backward compatibility in this release, but should
539
- no longer be used.
540
- - `<Button />` accepts color `screener`, `diary`, and `live`.
541
- - `<IconThumbsUp />` and `<IconThumbsDown />` are now on the same icon grid.
542
- - `<AdvancedOptions />` and `<CollapsingMenu />` can now have default collapsed
543
- state set via `initialCollapsed` prop.
544
-
545
- ### Fixed
546
-
547
- - Disabled `.menu--toggle` now applies visual disabled styles
548
- - `<Dropdown />` now renders children when a render function with no arguments
549
- is supplied as its child
550
- - `<ButtonControl />` styles no longer make assumptions on layout concerns of
551
- icon children.
552
- - Removed default browser padding around `<legend>`
553
- - `<RadioInput />` with a label can now have the bottom margin modified with
554
- modifier classes.
555
-
556
- ## [0.33.0] - 2018-10-05
557
-
558
- ### Added
559
-
560
- - Added `$color--screener` variable
561
- - `<IconTeam />`
562
-
563
- ### Changed
564
-
565
- - `<Button />` now takes `archive` color
566
- - `<CommonInput />`, `<TextInput />`, `<EmailInput />`, `<PasswordInput />`,
567
- `<NumberInput />`, `<SearchInput />`, `<Textarea />`, and `<SelectInput />`
568
- now accept 'onFocus' prop.
569
- - `<Button />`, `<ButtonPrimary />`, `<ButtonSecondary />`, `<ButtonIcon />`,
570
- `<ButtonControl />`, and `<ButtonLink />` now accept `id` prop.
571
- - `<Bug />` now takes `screener`, `diary`, and `live` colors
572
- - `.bug--live` is now `.bug--open`
573
- - Softened the alpha of `.shadow--s` and `.shadow--m`
574
- - All icons now support the `size` prop.
575
- - `<Bug />` no longer applies its own margin
576
- - `<CheckboxInput />`, `<EmailInput />`, `<FileInput />`, `<NumberInput />`,
577
- `<PasswordInput />`, `<RadioInput />`, `<RangeInput />`, `<SearchInput />`,
578
- `<SelectInput />`, `<TextInput />`, and `<Textarea />` accept `getRef` prop
579
- to allow parent components to get a ref on the actual DOM element.
580
- - `<IconCircleX />` has cleaner code and accepts `solid` prop.
581
- - Deprecated `top`, `bottom`, `left`, and `right` enums in `<Flex />` props.
582
- Instead, `start` and `end` should be used for `alignContent`, `alignItems`,
583
- and `justify` props.
584
-
585
- ### Fixed
586
-
587
- - First-child edit-state containers no longer have top margin
588
- - Icon buttons inherit font-size instead of setting it to `initial`
589
-
590
- ## [0.32.0] - 2018-09-19
591
-
592
- ### Added
593
-
594
- - `$color--live` and `$color--diary` variables
595
- - `<TextInput />`, `<NumberInput />`, `<EmailInput />`, `<PasswordInput />`, and
596
- `<SelectInput />` now accept `onPrefixClick` and `onSuffixClick` props.
597
- - `<TagsInput />` for handling tagging interfaces.
598
- - Max-height classes to match the existing max-width classes.
599
-
600
- ## [0.31.0] - 2018-09-06
601
-
602
- ### Added
603
-
604
- - `<FocusIntent />` component to toggle focus styles on/off when a user
605
- interacts with their keyboard or mouse.
606
- - `<CollapsibleContent />` component to handle expand/collapse behavior in an
607
- accessible way.
608
- - `<IconThumbsUp />` and `<IconThumbsDown />`
609
- - `<SwappableContent />` component to handle transitioning between two sets
610
- of content (such as in the `<EditingContainer />`). The non-displayed content
611
- is unmounted after the transition completes.
612
- - `<IconCircleClone />`
613
-
614
- ### Changed
615
-
616
- - All interactive elements (i.e. links, buttons, form elements, and
617
- elements with `tabindex`) have focus styles to support keyboard users.
618
- - `<CollapsingMenu />` no longer accepts `maxHeight` prop. It now measures the
619
- height of its collapsible content and accommodates content that changes
620
- height, so that prop was no longer necessary.
621
- - `<AdvancedOptions />`, `<CollapsingMenu />`, and `<TogglableFieldset />` now
622
- use the `<CollapsingMenu />` internally.
623
- - Button components accept `getRef` prop to allow parent components to get a ref
624
- on the actual button element.
625
- - `<Blitz />` component accepts `closeButtonTitle` prop.
626
- - `<Blitz />` component sets focus on close button on open and restores focus
627
- to previous element on close.
628
- - `<Modal />` component sets focus on modal wrapper on open and restores focus
629
- to previous element on close.
630
- - `<EditingContainer />` now uses the `<SwappableContent />` internally,
631
- which means that a) it unmounts its edit or view content after the transition
632
- completes and b) it uses a CSS transition instead of JS to animate the height.
633
- - `<Button />` and `<ButtonPrimary />` now accept a `width` prop, allowing width
634
- and size classes to be applied at the same time.
635
- - `<Button />` and `<ButtonPrimary />` now ignore unsupported props for color,
636
- size, width, and variant.
637
- - Disabled buttons are now rendered in grayscale.
638
-
639
- ### Removed
640
-
641
- - `.togglable` and `.collapsible` classes. The `<CollapsibleContent />`
642
- component should be used instead of these classes, as it encapsulates this
643
- behavior with better accessibility and more flexibility.
644
-
645
- ### Fixed
646
-
647
- - `<MediaQuery />` handles undefined children
648
- - Clicks and enter/space keypresses on interactive children of
649
- `<EditingContainer />` no longer trigger `onClick` callback.
650
- - Buttons that are configured as hyperlinks can no longer be focused with
651
- keyboard navigation when disabled. They also no longer have an `href` prop
652
- when disabled to prevent users from detecting the URL if they are not
653
- supposed to be able to follow the link.
654
- - `<ButtonLink />` and `<ButtonMode />` no longer have black background when
655
- activated with spacebar.
656
-
657
- ## [0.30.0] - 2018-08-03
658
-
659
- ### Added
660
-
661
- - Shadow classes: `.shadow--s`, `.shadow--m`, `.shadow--l`, `.shadow--xl`
662
- - Overflow classes: `overflow`, `overflow-x`, and `overflow-y` classes for
663
- `auto`, `hidden`, `scroll`, and `visible`
664
- - `<MediaQuery />` component to conditionally render content based on a
665
- matched media query string
666
-
667
- ### Fixed
668
-
669
- - Striped `<MenuList />` now only applies bottom border to menu items, not
670
- any child `li`
671
- - `<SelectInput />` applies "filled" styles when value is provided
672
-
673
- ### Changed
674
-
675
- - `<Container />` no longer applies vertical padding
676
- - `<ContainerInner />` now applies vertical as well as horizontal padding
677
- - `<ContainerHeader />` now handles its own padding based on the edit or
678
- view state of its parent `<Container />`
679
- - `<ContainerInner />` and `<ContainerHeader />` now work with `<Modifier />`
680
- - `<EditingContainer />` no longer maintains internal editing state, instead
681
- relies on prop.
682
- - `<EditingContainer />` no longer injects `isEditing` and `toggleEdit` props
683
- into its children.
684
- - `<EditingContainer />` accepts `onClick` and `onTransitionEnd` props. The
685
- `onTransitionEnd` handler is called with the `isEditing` prop value after
686
- the edit/view content transition completes.
687
- - `<EditingContainer />` can now be interacted with by keyboard users
688
-
689
- ## [0.29.1] - 2018-07-25
690
-
691
- ### Fixed
692
-
693
- - Modifier classes from `<Modifier />` are now applied to the affix
694
- wrapper instead of the input for `<SelectInput />` and `<CommonInput />`
695
-
696
- ## [0.29.0] - 2018-07-23
697
-
698
- ### Changed
699
-
700
- - `<Dropdown />` now supports render prop functions for `toggle` and `children`
701
- - `<SelectInput />` no longer applies width class with `mini` prop
702
- - `<SelectInput />` accepts `disabled`, `prefix`, and `suffix` props
703
- - `<SelectInput />` no longer treats the input as readonly when a value but no
704
- onChange handler is provided. That state can only be configured via the
705
- `readOnly` prop.
706
- - `<IconTriangleInverted />` y-position tweaked so it looks better when rotated
707
- - `mini` prop on `<SelectInput />` and `<DropdownInputToggle />` no longer
708
- applies smaller font size
709
- - `<SearchInput />` no longer displays at `mini` size by default
710
- - `<EmailInput />`, `<NumberInput />`, `<PasswordInput />`,
711
- `<SearchInput />`, and `<TextInput />` now accept `mini` prop
712
-
713
- ### Fixed
714
-
715
- - Unnecessary padding around `<Toggle />` removed
716
-
717
- ## [0.28.0] - 2018-07-10
718
-
719
- ### Added
720
-
721
- - `<Blitz />` component
722
- - `<Menu />`, `<MenuTitle />`, `<MenuSection />`, and `<MenuList />` components
723
-
724
- ### Changed
725
-
726
- - Lists no longer try to automatically wrap their children in `<li>`.
727
- - Yarn will no longer unnecessarily run the build script after `yarn install`.
728
- - Lists no longer apply right margin to icons.
729
- - `<Modifier />` can now apply `flex`, `flex-grow`, and `flex-shrink` modifiers
730
- - Styles for lists are visually the same but completely rewritten.
731
- - `<List />` now accepts optional `type` prop of "ordered" or "unordered" and
732
- optional `variant` prop of "plain" or "fancy".
733
- - `<List />` now renders unordered list by default instead of "plain" variant
734
- - `<ListInline />` now accepts `align` prop.
735
- - Menu items (formerly list items inside of `<ListLoose />`, `<ListNav />`,
736
- `<ListIconFirst />`, and `<ListStriped />` components) are no longer
737
- flex containers by default.
738
-
739
- ### Removed
740
-
741
- - `<ListFancy />` component. Now rendered via a prop on `<List />`
742
- - `<ListWarning />` component. Was not being used and can be easily composed
743
- with existing classes and components.
744
- - `<ListLoose />`, `<ListNav />`, `<ListIconFirst />`, and `<ListStriped />`
745
- components. Those components' styles and behavior are now handled by the new
746
- `<Menu />` and `<MenuList />` components.
747
-
748
- ## [0.27.3] - 2018-06-25
749
-
750
- ### Added
751
-
752
- - `white-space--nowrap` CSS class
753
-
754
- ### Fixed
755
-
756
- - `<Tooltip />` no longer displays on hover when `show` prop is set to false
757
- - `<SelectInput />` and `<DropdownInputToggle />` are now styled correctly
758
- within `<Fieldset invalid>`
759
-
760
- ## [0.27.2] - 2018-06-14
761
-
762
- ### Fixed
763
-
764
- - Right margin on icons in `.list--loose` has been fixed
765
- - Double bottom margin on columns has been fixed
766
-
767
- ## [0.27.1] - 2018-06-11
768
-
769
- ### Changed
770
-
771
- - `<TogglableFieldset />` prop `label` now expects a node.
772
- - `<SelectInput />` now accepts `readOnly` prop
773
-
774
- ### Fixed
775
-
776
- - Full-width hyperlink button components use the correct box-sizing model and
777
- center-align their text to match button elements
778
- - Input prefixes and suffixes now match the disabled styling of the input
779
- - Fieldsets no longer set `width: 100%`, which made them difficult to compose
780
- within flex layouts.
781
-
782
- ## [0.27.0] - 2018-05-25
783
-
784
- ### Added
785
-
786
- - New `$color--scout` variable
787
- - `<EmailInput />` and `<PasswordInput />`
788
- - `<Separator />` component for horizontal and vertical separators
789
- - `.line-wrap` class to help elements handle long text
790
-
791
- ### Changed
792
-
793
- - `<Button />`, `<ButtonIcon />`, `<ButtonMode />`, `<ButtonPrimary />`, and
794
- `<ButtonSecondary />` can be configured as hyperlinks now, following same
795
- pattern as `<Card />`
796
- - `<ButtonMode />` renders a `<button />` by default instead of an `<a />`
797
- - `<EmailInput />`, `<NumberInput />`, `<PasswordInput />`, `<TextInput />`,
798
- `<SearchInput />`, and `<Textarea />` accept `readOnly` prop
799
- - `<NavList />` no longer applies width class
800
- - Indentation in story code samples is handled more intelligently, so you
801
- no longer need to remove all the whitespaces from the top-level indented code
802
-
803
- ### Fixed
804
-
805
- - `<SpeechBubble />` now handles long words or links without extending beyond
806
- its container
807
- - `<Pill />` now uses `display: inline-block` to fix issues with containing
808
- elements not allocating enough vertical space and causing overflow issues
809
- - Removed unwanted top margin from first-child edit state containers
810
-
811
- ## [0.26.1] - 2018-04-24
812
-
813
- ### Changed
814
-
815
- - Icons apply solid variant of colors that have opacity
816
- - Icons now accept full range of Particle colors
817
- - `<Scene />` accepts `alert` hue
818
-
819
- ## [0.26.0] - 2018-04-17
820
-
821
- ### Added
822
-
823
- - `<IconRandomize />`
824
- - `<IconEdit />`
825
- - `<IconUpload />`
826
-
827
- ### Changed
828
-
829
- - `$color--main` is now slightly darker
830
- - List titles have a new style: bold, darker, and capitalized sentence-case
831
- - `<CardBody />` grows to fill space and push footer and color bar to bottom
832
- - `<IconPen />` has been reverted to its previous design, without a box around
833
- the pen. The new `<IconEdit />` should be used for that variant.
834
- - `<Tooltip />` now accepts optional `zIndex` prop
835
-
836
- ### Fixed
837
-
838
- - Avatar stories had a broken image link
839
- - `babel-polyfill` is no longer imported, which broke test environments with
840
- multiple entries that imported Particle components
841
-
842
- ## [0.25.0] - 2018-04-06
843
-
844
- ### Added
845
-
846
- - `<IconGoodEmoticon />`, `<IconAmazingEmoticon />`, `<IconPoorEmoticon />`
847
- - `<ButtonMode />`
848
- - `<Cards />` component to handle card layouts
849
- - `<Card />`, `<CardBody />`, `<CardFooter />`, `<CardColorBar />` components
850
- for better reusability and composability in cards UIs
851
-
852
- ### Changed
853
-
854
- - Update `<Container />`'s `:first-child` elements to default to no top margin
855
- - Tweaked and improved `$shadow` variables
856
- - `<Thumbnail />` has updated circle style and allows ratio to be set via props
857
- - `<IconPen />` now has a border around the pen
858
-
859
- ### Fixed
860
-
861
- - Icons now respect <Modifier /> and warn about improper use of width and
862
- height modifiers
863
-
864
- ### Removed
865
-
866
- - `<ViewerCard />` and `<ViewerCardDetails />` removed in favor of more generic
867
- and composable `<Card />`, `<CardBody />`, `<CardFooter />`, and
868
- `<CardColorBar />` components
869
-
870
- ## [0.24.0] - 2018-01-23
871
-
872
- ### Added
873
-
874
- - `<Modifier />` component that applies modifier classes to the wrapped Particle
875
- component. Supports width, height, max-width, margin, padding, and truncation
876
- modifier classes
877
-
878
- ### Changed
879
-
880
- - Modifier classes now come after component classes in the stylesheet so that
881
- they take precedence over component classes
882
- - Specificity for selector that sets bottom margin from `:last-child`
883
- elements has been decreased so that component classes and modifier classes
884
- can override the default
885
- - `:first-child` elements now default to no top margin. The default margin
886
- can be overridden with a component class or modifier class.
887
- - `<Footnote />` renders an `<aside />` and accepts any valid nodes as children
888
-
889
- ## [0.23.3] - 2018-01-22
890
-
891
- ### Changed
892
-
893
- - Updated peer dependencies to support React 16
894
- - Spinner animation now uses linear easing
895
-
896
- ## [0.23.2] - 2018-01-08
897
-
898
- ### Fixed
899
-
900
- - `<ViewerCard />` handles colors for part positions greater than 9
901
- - Columns with specified sizes (e.g. `.column-1of2`) no longer grow
902
-
903
- ### Changed
904
-
905
- - `<Button />` accepts `tight` size
906
- - `<Thumbnail>` accepts `circular` prop
907
- - Default browser padding, margin, and border for `button` has been reset
908
- - Particle components are now compatible with React >15.5
909
-
910
- ## [0.23.1] - 2017-12-21
911
-
912
- ### Fixed
913
-
914
- - Disabled `<ButtonIcon />` now uses disabled color
915
-
916
- ### Changed
917
-
918
- - `<IconTriangleInverted />` accepts `direction` of down (default), left, right, up
919
-
920
- ### Removed
921
-
922
- - Buttons no longer have nested `span > .icon` default styling
923
- - `<SegmentedControls />` no longer has large margin bottom
924
-
925
- ## [0.23.0] - 2017-12-07
926
-
927
- ### Changed
928
-
929
- - `<DropdownInputToggle mini>` no longer sets its own width
930
- - `<IconSortAsc />` and `<IconSortDesc />` updated to fit with icon set style
931
- - `<ViewerCard>` has square thumbnail and flex properties to align content below thumbnail properly
932
- - `<ButtonIcon />` now has hover state styles and accepts `affirmative` prop that make the icon green on hover
933
- - `<Button />`, `<ButtonPrimary />`, `<ButtonSecondary />`, `<ButtonLink />`,
934
- and `<ButtonIcon />` accept `type` prop of either "button" or "submit", defaulting to "button"
935
- - `<IconAnalysis />`, `<IconGrid />`, and `<IconSummary />` got a refresh
936
- - `.list--inline li` no longer has a margin bottom
937
- - `<Avatar />` defaults to initials, allows url changes, and preloads avatar image.
938
-
939
- ### Removed
940
-
941
- - `<IconComment />` was no longer used, use `<IconSpeechBubble />` instead
942
-
943
- ## [0.22.0] - 2017-11-10
944
-
945
- ### Changed
946
-
947
- - `<SpeechBubble />` now respects new line characters with `white-space: pre-wrap`
948
- - `<SpeechBubble />` is also no longer full-width (changed it from
949
- `display: block` to `display: inline-block`)
950
- - `<SpeechBubble />` `tail` prop now defaults to `"left"`
951
- - `<DropdownInputToggle />` now accepts the `disabled` prop
952
- - `$color--dscout` is now the new blue
953
-
954
- ## [0.21.0] - 2017-11-03
955
-
956
- ### Added
957
-
958
- - `<Tooltip />`
959
- - `<IconVideoCamera />` (formerly named `<IconCamera />`)
960
-
961
- ### Fixed
962
-
963
- - `<Avatar />` no longer shrinks in flex layouts
964
- - Visibility CSS prop now in sync with opacity for `<Dropdown />`
965
-
966
- ### Changed
967
-
968
- - `<IconCamera />` is now an actual digital camera
969
- - Icons accept `marker` color
970
- - Buttons now accept `note` color
971
- - Added `faint` and `main-light` as valid color props for `<SpeechBubble />`
972
- - `<TextInput />` now accepts a React node for the `prefix` and `suffix`
973
- - `<IconChevron />` accepts `direction` of down, left, right (default), up
974
-
975
- ## [0.20.1] - 2017-10-23
976
-
977
- ### Fixed
978
-
979
- - Calculation for font size based on the `size` prop type in `<Avatar />`.
980
-
981
- ## [0.20.0] - 2017-10-19
982
-
983
- ### Added
984
-
985
- - `white-space--pre-wrap` CSS class
986
-
987
- ### Changed
988
-
989
- - `<Avatar />` accepts `name` prop. It will also no longer render the fallback
990
- image but instead, will fallback to the initials of the `name` prop.
991
- - `<Bug />` accepts `title` prop
992
- - `<ButtonLink />` accepts `title` prop
993
- - `<ButtonControl />` accepts `title` prop
994
- - `<CollapsingMenu />` accepts `collapsedTitle` and `expandedTitle` props
995
- - `<CollapsingMenu />` no longer accept the `title` prop, it has now been been
996
- replaced with the `heading` prop
997
-
998
- ### Fixed
999
-
1000
- - Unnecessarily strict `size` prop type in `<Avatar />`. Strings are accepted.
1001
-
1002
- ## [0.19.0] - 2017-09-28
1003
-
1004
- ### Changed
1005
-
1006
- - `<Button />` accepts `onMouseUp` and `onMouseDown` props
1007
- - Font size and padding tweaked on `<SearchInput />`
1008
-
1009
- ### Added
1010
-
1011
- - `<IconLiveMission />`
1012
- - `<IconLiveMissionCard />`
1013
-
1014
- ## [0.18.1] - 2017-08-28
1015
-
1016
- ### Fixed
1017
-
1018
- - npm build was missing compiled stylesheets
1019
-
1020
- ## [0.18.0](deprecated) - 2017-08-28
1021
-
1022
- ### Changed
1023
-
1024
- - `<SelectInput />` accepts `id` prop
1025
- - `<Dropdown />` no longer renders children when closed. It accepts a `persist`
1026
- prop to optionally render children when closed if needed.
1027
- - `<NumberInput />`, `<SearchInput />`, and `<Textarea />` accept `autoFocus` prop
1028
- - `<DropdownInputToggle />` accepts any valid node as children and automatically
1029
- truncates text. The max-width on non-mini toggles has also been removed.
1030
- The containing element should define the toggle's width.
1031
- - `<CollapsibleMenu />` accepts `maxHeight` prop
1032
- - Box shadow styles for editable, non-editable, and editing containers.
1033
- - `<CheckboxInput />` now has indeterminate and read-only states.
1034
- - Label element in `<CheckboxInput />` and `<RadioInput />` is no longer rendered
1035
- if the prop is not provided. Label can now also be any valid node prop type.
1036
-
1037
- ### Fixed
1038
-
1039
- - `<CheckboxInput />` and `<RadioInput />` render correctly in Firefox.
1040
-
1041
- ## [0.17.0] - 2017-08-08
1042
-
1043
- ### Added
1044
-
1045
- - `<IconCheckboxCheck />` to be used by checkboxes instead of `<IconCheckmark />`
1046
- - `<IconCamera />`
1047
- - `<IconLiveNotes />`
1048
- - `<IconMic />`
1049
- - `<IconObserver />`
1050
- - `<IconScreen />`
1051
- - `<IconSettings />`
1052
- - `<IconSettingsAlt />`
1053
- - `<IconStim />`
1054
- - `<IconVideoFastForward />`
1055
- - `<IconVideoNext />`
1056
- - `<IconVideoPause />`
1057
- - `<IconVideoPlay />`
1058
- - `<IconVideoSkip />`
1059
-
1060
- ### Changed
1061
-
1062
- - Removed fixed max-width class name in `<ListWarning />`
1063
- - Updated `<IconCheckmark />` to match viewbox and stroke thickness of other icons
1064
- - Add filled version of `<IconCircleCheckmark />`
1065
- - Updated `<IconShare />`
1066
- - `<IconBookmark />`, `<IconMobile />`, `<IconNote />`, `<IconSpeechBubble />`,
1067
- and `<IconTag />` accept small prop
1068
-
1069
- ## [0.16.0] – 2017-07-07
1070
-
1071
- ### Added
1072
-
1073
- - `<IconSpinner />`
1074
-
1075
- ### Changed
1076
-
1077
- - `<Avatar />` accepts `title` prop
1078
- - `<Modal />` accepts `zIndex` prop
1079
- - Removed margin between adjacent button icons
1080
-
1081
- ### Fixed
1082
-
1083
- - Styling of inline list with custom separator
1084
-
1085
- ## [0.15.1] – 2017-06-20
1086
-
1087
- ### Fixed
1088
-
1089
- - Styling of `<ContainerHeader />` allows larger click area when inside
1090
- `<EditingContainer />`
1091
-
1092
- ## [0.15.0] – 2017-06-19
1093
-
1094
- ### Added
1095
-
1096
- - `<AdvancedOptions />`
1097
-
1098
- ### Fixed
1099
-
1100
- - `<Avatar />` displays placeholder if `avatarUrl` is null
1101
- - Patch made in v0.13.3 is missing from 0.14.0 and 0.14.1
1102
-
1103
- ## [0.14.1] – 2017-06-12
1104
-
1105
- ### Fixed
1106
-
1107
- - `<EditingContainer />` resets height to `auto` after each animation
1108
-
1109
- ## [0.14.0] – 2017-06-09
1110
-
1111
- ### Added
1112
-
1113
- - `<ContainerHeader />`
1114
- - `<EditingContainer />`
1115
- - `<SpeechBubble />`
1116
-
1117
- ### Changed
1118
-
1119
- - `<ButtonControl />` accepts a `name` prop
1120
- - `<Container />` no longer has editing behavior; it does not pass any props
1121
- down to it children
1122
- - Limited scope of `.flex` margin override to only direct descendants (i.e.
1123
- flex items)
1124
- - Styling of adjacent `.btn` elements
1125
- - Styling of `<ButtonControl />`, `<SegmentedControls />`, and `<ViewerCard />`
1126
- components
1127
- - Styling of `<aside>` text color
1128
- - Styling of `<tr>` hover and selected colors
1129
-
1130
- ### Fixed
1131
-
1132
- - Removed `top` position hack from `.bug`
1133
-
1134
- ## [0.13.3] – 2017-06-15
1135
-
1136
- ### Fixed
1137
-
1138
- - `<Dropdown />` passes `isOpen` to its content child
1139
-
1140
- ## [0.13.2] – 2017-05-26
1141
-
1142
- ### Fixed
1143
-
1144
- - `<Flex />` no longer wraps by default
1145
-
1146
- ## [0.13.1] — 2017-05-25
1147
-
1148
- ### Changed
1149
-
1150
- - `<SelectInput />` accepts a `name` prop and no longer sets a maximum width
1151
-
1152
- ### Fixed
1153
-
1154
- - Inconsistency between outline and filled versions of `<IconSpeechBubble />`
1155
- - Styling of `<IconWithCount />`
1156
-
1157
- ## [0.13.0] – 2017-05-23
1158
-
1159
- ### Added
1160
-
1161
- - `<IconCircleI />`
1162
- - `<IconMission />`
1163
- - `<IconScreener />`
1164
- - `<IconSpeechBubble />`
1165
- - `<IconStackedMissions />`
1166
-
1167
- ### Changed
1168
-
1169
- - `alert` color
1170
- - `<Flex />` component is fully-featured and implements all CSS properties
1171
- - `<Modal />` accepts `backdropColor` prop
1172
-
1173
- ## [0.12.2] – 2017-05-18
1174
-
1175
- ### Changed
1176
-
1177
- - `<ButtonControl />` accepts a `name` prop
1178
- - `<Bug />` color accepts `dscout` as a value
1179
-
1180
- ### Fixed
1181
-
1182
- - `<Button />` active styling
1183
-
1184
- ## [0.12.1] – 2017-05-15
1185
-
1186
- ### Fixed
1187
-
1188
- - Issue with release script that excluded stylesheets from v0.12.0
1189
-
1190
- ## [0.12.0] – 2017-05-15
1191
-
1192
- ### Added
1193
-
1194
- - `<CollapsingMenu />`
1195
-
1196
- ### Changed
1197
-
1198
- - `<Pill />` part colors moved to right border
1199
-
1200
- ## [0.11.1] – 2017-05-09
1201
-
1202
- ### Fixed
1203
-
1204
- - Include `scss` source files in the build output
1205
-
1206
- ## [0.11.0] – 2017-05-04
1207
-
1208
- ### Added
1209
-
1210
- - `<ButtonLink />`
1211
- - `<FileInput />`
1212
- - Standalone part color class names
1213
-
1214
- ### Changed
1215
-
1216
- - `<DropdownInputToggle />` accepts `mini` prop
1217
- - `<NumberInput />` accepts `min` prop
1218
- - `<TextInput />` and `<Textarea />` accept `maxLength` prop
1219
-
1220
- ### Fixed
1221
-
1222
- - `<DropdownInputToggle />` no longer warns about `undefined` prop types
1223
-
1224
- ## [0.10.0] — 2017-04-20
1225
-
1226
- ### Added
1227
-
1228
- - `<IconAutotag />`
1229
- - `<IconBookmark />`
1230
- - `<IconTag />`
1231
- - `<IconImageFile />`
1232
- - `<IconSpreadsheetFile />`
1233
- - `<DropdownInputToggle />`
1234
- - `<SelectInput />`
1235
-
1236
- ### Changed
1237
-
1238
- - `<ButtonIcon />` accepts a `title` prop
1239
- - `<Modal />` accepts `padding` boolean prop; the default is `true`
1240
- - Icons accept a `size` prop
1241
- - one of: `S`, `M`, `L`, `XL`
1242
- - default is `S`
1243
- - Icons accept a `title` prop, it's no longer hard-coded into the icons
1244
-
1245
- ### Fixed
1246
-
1247
- - Icons accept "dscout" as a color value instead of "brand"
1248
- - Applies `.filled` border color to prefixes and suffixes
1249
-
1250
- ## [0.9.1] — 2017-04-11
1251
-
1252
- ### Changed
1253
-
1254
- - `<Dropdown />` accepts `contentWidth`, `maxHeight`, and `opens` props
1255
-
1256
- ### Fixed
1257
-
1258
- - Modal transition CSS
1259
- - Line color CSS
1260
-
1261
- ## [0.9.0] — 2017-04-05
1262
-
1263
- ### Changed
1264
-
1265
- - `<IconWithCount />` accepts a `color` prop
1266
- - `<NumberInput />` accepts `prefix` and `suffix` props
1267
- - Update `<IconDscout />` to new square version
1268
- - SVG icons contain a title tag
1269
-
1270
- ### Fixed
1271
-
1272
- - Implement missing `<ButtonIcon />` styles
1273
- - Test build does not include source maps, which speeds up the test runner
1274
-
1275
- ## [0.8.1] – 2017-04-03
1276
-
1277
- ### Fixed
1278
-
1279
- - Preserve white space in preview components
1280
-
1281
- ## [0.8.0] – 2017-03-14
1282
-
1283
- ### Added
1284
-
1285
- - `<Avatar />`
1286
-
1287
- ### Changed
1288
-
1289
- - `<Thumbnail />` accepts a `fallbackUrl` prop
1290
-
1291
- ### Fixed
1292
-
1293
- - `<ViewerCard />` last-child element preserves its bottom margin
1294
-
1295
- ## [0.7.0] – 2017-03-07
1296
-
1297
- ### Added
1298
-
1299
- - `<ButtonControl />`, `<SegmentedControls />`, `<Thumbnail />`, `<ViewerCard />`, and `<ViewerCardDetails />`
1300
- - Icons for the viewer, as well as icons that were not implemented yet (there are a lot of icons)
1301
-
1302
- ### Changed
1303
-
1304
- - `<Modal />` accepts a `maxWidth` prop
1305
- - `<NumberInput />`, `<SearchInput />`, `<TextInput />`, and `<Textarea />` accept an `onBlur` prop
1306
-
1307
- ### Fixed
1308
-
1309
- - `<CheckboxInput />` and `<RadioInput />` no longer duplicate `onChange` prop via `onClick` handler
1310
-
1311
- ## [0.6.2] – 2017-02-16
1312
-
1313
- ### Changed
1314
-
1315
- - Anchor tags can be styled as buttons using the `.btn` class name and its variants
1316
- - `<ButtonPrimary />` accepts `size` prop
1317
- - Form elements accept `onKeyDown` and `onPaste` props
1318
- - `<Scene />` accepts `test` as a value for the `hue` prop
1319
- - `<Textarea />` accepts `height` prop
1320
-
1321
- ### Fixed
1322
-
1323
- - `<Bug />` padding and vertical alignment
1324
- - `<NumberInput />` gets a `filled` class name when it has a value
1325
-
1326
- ## [0.6.1] - 2017-02-13
1327
-
1328
- ### Fixed
1329
-
1330
- - Font rendering in Gecko browsers
1331
- - Icon spacing in buttons
1332
- - Remove incorrect scroll behavior from `<Dropdown />`
1333
-
1334
- ## [0.6.0] - 2017-02-13
1335
-
1336
- ### Added
1337
-
1338
- - `<Controls />`
1339
- - `<IconRemote />`
1340
-
1341
- ### Changed
1342
-
1343
- - Handling of `0` value for form inputs
1344
- - `<ListWarning />` accepts `container` prop
1345
- - Form input state styles
1346
- - Font size and dscout blue returned to legacy values
1347
-
1348
- ### Fixed
1349
-
1350
- - `<Dropdown />` content scrolls according to viewport height
1351
-
1352
- ## [0.5.0] - 2017-01-26
1353
-
1354
- ### Added
1355
-
1356
- - `<IconExport />`
1357
- - `<ListWarning />`
1358
- - `<Modal />`
1359
- - `<RangeInput />`
1360
- - Styles for preview container element
1361
-
1362
- ### Changed
1363
-
1364
- - `<Container />` accepts `fullheight` prop
1365
- - First-child elements do not have global rule for zero top margin
1366
- - Package name is now scoped to dscout (`@dscout/particle`)
1367
-
1368
- ## [0.4.1] - 2017-01-23
1369
-
1370
- ### Changed
1371
-
1372
- - Form input styles for rendering on white background
1373
- - `<Scene />` accepts `hue` of "success"
1374
-
1375
- ### Fixed
1376
-
1377
- - `<Scene />` story with "closed" hue
1378
-
1379
- ## [0.4.0] – 2017-01-18
1380
-
1381
- ### Added
1382
-
1383
- - Plain ordered and unordered list styles
1384
- - `<ButtonPrimary />`
1385
- - `<ButtonSecondary />`
1386
- - `<Bug />`
1387
- - `<IconAlert />`
1388
- - `<IconDownload />`
1389
- - `<IconMore />`
1390
- - `<IconKnockout />`
1391
- - `<ListFancy />`
1392
- - `<Scene />`
1393
-
1394
- ### Changed
1395
-
1396
- - Add callback function to `Container#toggleEdit`
1397
- - `<Button />` styles
1398
- - `<Button />` accepts `size` and `variant` props
1399
-
1400
- ## [0.3.0] – 2017-01-04
1401
-
1402
- ### Added
1403
-
1404
- - `<ButtonIcon />`, `<Fieldset />`, `<IconWithCount />`, `<ListLoose />`,
1405
- and `<ValidationMessage />` components
1406
- - Transition/animation between view and edit state to `<Container />`
1407
-
1408
- ### Changed
1409
-
1410
- - `<Dropdown />` backdrop element scrolls vertically
1411
- - Simplify `<NumberInput />`, `<Textarea />`, and `<TextInput />` components
1412
-
1413
- ### Fixed
1414
-
1415
- - Ensure form inputs receive correct `value` prop
1416
-
1417
- ## [0.2.2] – 2016-12-12
1418
-
1419
- ### Changed
1420
-
1421
- - `<Textarea />` accepts `name` prop
1422
- - Pass callback function to `<Dropdown />` content to close the dropdown
1423
-
1424
- ## [0.2.1] – 2016-12-09
1425
-
1426
- ### Changed
1427
-
1428
- - `<Button />` accepts `icon` prop
1429
- - `<Dropdown />` accepts `align` prop
1430
- - Form components ensure unique ids are used for input + label markup
1431
-
1432
- ### Fixed
1433
-
1434
- - Escape key press handling in `<Dropdown />`
1435
-
1436
- ## [0.2.0] – 2016-12-08
1437
-
1438
- ### Added
1439
-
1440
- - `<Dropdown />`, `<TogglableFieldset />`, and `<Toggle />` components
1441
- - ArrowUp, Clone, Mobile, Plus, Profile, RoundArrowDownLeft, RoundArrowRight, SkipEnd, Trash, TriangleInverted, and X icons
1442
-
1443
- ### Fixed
1444
-
1445
- - Repair some broken styles and missing props
1446
-
1447
- ## [0.1.1] – 2016-11-28
1448
-
1449
- ### Fixed
1450
-
1451
- - `<Container />` edit state styles
1452
-
1453
- ## [0.1.0] – 2016-11-22
1454
-
1455
- - First usable version of particle
1456
-
1457
- [Unreleased alpha]: https://github.com/dscout/particle/compare/v1.0.0-alpha.2...v1
1458
- [1.0.0-alpha.2]: https://github.com/dscout/particle/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
1459
- [1.0.0-alpha.1]: https://github.com/dscout/particle/compare/v1.0.0-alpha.0...v1.0.0-alpha.1
1460
- [1.0.0-alpha.0]: https://github.com/dscout/particle/compare/main...v1.0.0-alpha.0
1461
- [Unreleased]: https://github.com/dscout/particle/compare/v0.46.0...HEAD
1462
- [0.46.0]: https://github.com/dscout/particle/compare/v0.45.3...v0.46.0
1463
- [0.45.3]: https://github.com/dscout/particle/compare/v0.45.2...v0.45.3
1464
- [0.45.2]: https://github.com/dscout/particle/compare/v0.45.1...v0.45.2
1465
- [0.45.1]: https://github.com/dscout/particle/compare/v0.45.0...v0.45.1
1466
- [0.45.0]: https://github.com/dscout/particle/compare/v0.44.0...v0.45.0
1467
- [0.44.0]: https://github.com/dscout/particle/compare/v0.43.0...v0.44.0
1468
- [0.43.0]: https://github.com/dscout/particle/compare/v0.42.1...v0.43.0
1469
- [0.42.1]: https://github.com/dscout/particle/compare/v0.42.0...v0.42.1
1470
- [0.42.0]: https://github.com/dscout/particle/compare/v0.41.0...v0.42.0
1471
- [0.41.0]: https://github.com/dscout/particle/compare/v0.40.5...v0.41.0
1472
- [0.40.5]: https://github.com/dscout/particle/compare/v0.40.4...v0.40.5
1473
- [0.40.4]: https://github.com/dscout/particle/compare/v0.40.3...v0.40.4
1474
- [0.40.3]: https://github.com/dscout/particle/compare/v0.40.2...v0.40.3
1475
- [0.40.2]: https://github.com/dscout/particle/compare/v0.40.1...v0.40.2
1476
- [0.40.1]: https://github.com/dscout/particle/compare/v0.40.0...v0.40.1
1477
- [0.40.0]: https://github.com/dscout/particle/compare/v0.39.0...v0.40.0
1478
- [0.39.0]: https://github.com/dscout/particle/compare/v0.38.0...v0.39.0
1479
- [0.38.0]: https://github.com/dscout/particle/compare/v0.37.4...v0.38.0
1480
- [0.37.4]: https://github.com/dscout/particle/compare/v0.37.3...v0.37.4
1481
- [0.37.3]: https://github.com/dscout/particle/compare/v0.37.2...v0.37.3
1482
- [0.37.2]: https://github.com/dscout/particle/compare/v0.37.1...v0.37.2
1483
- [0.37.1]: https://github.com/dscout/particle/compare/v0.37.0...v0.37.1
1484
- [0.37.0]: https://github.com/dscout/particle/compare/v0.36.0...v0.37.0
1485
- [0.36.0]: https://github.com/dscout/particle/compare/v0.35.2...v0.36.0
1486
- [0.35.2]: https://github.com/dscout/particle/compare/v0.35.1...v0.35.2
1487
- [0.35.1]: https://github.com/dscout/particle/compare/v0.35.0...v0.35.1
1488
- [0.35.0]: https://github.com/dscout/particle/compare/v0.34.0...v0.35.0
1489
- [0.34.0]: https://github.com/dscout/particle/compare/v0.33.0...v0.34.0
1490
- [0.33.0]: https://github.com/dscout/particle/compare/v0.32.0...v0.33.0
1491
- [0.32.0]: https://github.com/dscout/particle/compare/v0.31.0...v0.32.0
1492
- [0.31.0]: https://github.com/dscout/particle/compare/v0.30.0...v0.31.0
1493
- [0.30.0]: https://github.com/dscout/particle/compare/v0.29.1...v0.30.0
1494
- [0.29.1]: https://github.com/dscout/particle/compare/v0.29.0...v0.29.1
1495
- [0.29.0]: https://github.com/dscout/particle/compare/v0.28.0...v0.29.0
1496
- [0.28.0]: https://github.com/dscout/particle/compare/v0.27.3...v0.28.0
1497
- [0.27.3]: https://github.com/dscout/particle/compare/v0.27.2...v0.27.3
1498
- [0.27.2]: https://github.com/dscout/particle/compare/v0.27.1...v0.27.2
1499
- [0.27.1]: https://github.com/dscout/particle/compare/v0.27.0...v0.27.1
1500
- [0.27.0]: https://github.com/dscout/particle/compare/v0.26.1...v0.27.0
1501
- [0.26.1]: https://github.com/dscout/particle/compare/v0.26.0...v0.26.1
1502
- [0.26.0]: https://github.com/dscout/particle/compare/v0.25.0...v0.26.0
1503
- [0.25.0]: https://github.com/dscout/particle/compare/v0.24.0...v0.25.0
1504
- [0.24.0]: https://github.com/dscout/particle/compare/v0.23.3...v0.24.0
1505
- [0.23.3]: https://github.com/dscout/particle/compare/v0.23.2...v0.23.3
1506
- [0.23.2]: https://github.com/dscout/particle/compare/v0.23.1...v0.23.2
1507
- [0.23.1]: https://github.com/dscout/particle/compare/v0.23.0...v0.23.1
1508
- [0.23.0]: https://github.com/dscout/particle/compare/v0.22.0...v0.23.0
1509
- [0.22.0]: https://github.com/dscout/particle/compare/v0.21.0...v0.22.0
1510
- [0.21.0]: https://github.com/dscout/particle/compare/v0.20.1...v0.21.0
1511
- [0.20.1]: https://github.com/dscout/particle/compare/v0.20.0...v0.20.1
1512
- [0.20.0]: https://github.com/dscout/particle/compare/v0.19.0...v0.20.0
1513
- [0.19.0]: https://github.com/dscout/particle/compare/v0.18.1...v0.19.0
1514
- [0.18.1]: https://github.com/dscout/particle/compare/v0.18.0...v0.18.1
1515
- [0.18.0]: https://github.com/dscout/particle/compare/v0.17.0...v0.18.0
1516
- [0.17.0]: https://github.com/dscout/particle/compare/v0.16.0...v0.17.0
1517
- [0.16.0]: https://github.com/dscout/particle/compare/v0.15.1...v0.16.0
1518
- [0.15.1]: https://github.com/dscout/particle/compare/v0.15.0...v0.15.1
1519
- [0.15.0]: https://github.com/dscout/particle/compare/v0.14.1...v0.15.0
1520
- [0.14.1]: https://github.com/dscout/particle/compare/v0.14.0...v0.14.1
1521
- [0.14.0]: https://github.com/dscout/particle/compare/v0.13.2...v0.14.0
1522
- [0.13.3]: https://github.com/dscout/particle/compare/v0.13.2...v0.13.3
1523
- [0.13.2]: https://github.com/dscout/particle/compare/v0.13.1...v0.13.2
1524
- [0.13.1]: https://github.com/dscout/particle/compare/v0.13.0...v0.13.1
1525
- [0.13.0]: https://github.com/dscout/particle/compare/v0.12.2...v0.13.1
1526
- [0.12.2]: https://github.com/dscout/particle/compare/v0.12.1...v0.12.2
1527
- [0.12.1]: https://github.com/dscout/particle/compare/v0.12.0...v0.12.1
1528
- [0.12.0]: https://github.com/dscout/particle/compare/v0.11.1...v0.12.0
1529
- [0.11.1]: https://github.com/dscout/particle/compare/v0.11.0...v0.11.1
1530
- [0.11.0]: https://github.com/dscout/particle/compare/v0.10.0...v0.11.0
1531
- [0.10.0]: https://github.com/dscout/particle/compare/v0.9.1...v0.10.0
1532
- [0.9.1]: https://github.com/dscout/particle/compare/v0.9.0...v0.9.1
1533
- [0.9.0]: https://github.com/dscout/particle/compare/v0.8.1...v0.9.0
1534
- [0.8.1]: https://github.com/dscout/particle/compare/v0.8.0...v0.8.1
1535
- [0.8.0]: https://github.com/dscout/particle/compare/v0.7.0...v0.8.0
1536
- [0.7.0]: https://github.com/dscout/particle/compare/v0.6.2...v0.7.0
1537
- [0.6.2]: https://github.com/dscout/particle/compare/v0.6.1...v0.6.2
1538
- [0.6.1]: https://github.com/dscout/particle/compare/v0.6.0...v0.6.1
1539
- [0.6.0]: https://github.com/dscout/particle/compare/v0.5.0...v0.6.0
1540
- [0.5.0]: https://github.com/dscout/particle/compare/v0.4.0...v0.5.0
1541
- [0.4.1]: https://github.com/dscout/particle/compare/v0.4.0...v0.4.1
1542
- [0.4.0]: https://github.com/dscout/particle/compare/v0.3.0...v0.4.0
1543
- [0.3.0]: https://github.com/dscout/particle/compare/v0.2.2...v0.3.0
1544
- [0.2.2]: https://github.com/dscout/particle/compare/v0.2.1...v0.2.2
1545
- [0.2.1]: https://github.com/dscout/particle/compare/v0.2.0...v0.2.1
1546
- [0.2.0]: https://github.com/dscout/particle/compare/v0.1.1...v0.2.0
1547
- [0.1.1]: https://github.com/dscout/particle/compare/v0.1.0...v0.1.1
1548
- [0.1.0]: https://github.com/dscout/particle/compare/0a39abd...v0.1.0