@materializecss/materialize 1.1.0-alpha → 1.2.0

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 (84) hide show
  1. package/Gruntfile.js +712 -725
  2. package/LICENSE +21 -21
  3. package/README.md +91 -97
  4. package/dist/css/materialize.css +659 -1140
  5. package/dist/css/materialize.min.css +7 -7
  6. package/dist/js/materialize.js +4679 -4654
  7. package/dist/js/materialize.min.js +6 -6
  8. package/extras/noUiSlider/nouislider.css +404 -406
  9. package/extras/noUiSlider/nouislider.js +2147 -2147
  10. package/js/anime.min.js +34 -34
  11. package/js/autocomplete.js +479 -479
  12. package/js/buttons.js +354 -354
  13. package/js/cards.js +40 -40
  14. package/js/carousel.js +732 -717
  15. package/js/cash.js +960 -960
  16. package/js/characterCounter.js +136 -136
  17. package/js/chips.js +486 -486
  18. package/js/collapsible.js +275 -275
  19. package/js/component.js +44 -44
  20. package/js/datepicker.js +983 -976
  21. package/js/dropdown.js +669 -668
  22. package/js/forms.js +285 -275
  23. package/js/global.js +428 -424
  24. package/js/materialbox.js +453 -453
  25. package/js/modal.js +382 -382
  26. package/js/parallax.js +138 -138
  27. package/js/pushpin.js +148 -148
  28. package/js/range.js +263 -263
  29. package/js/scrollspy.js +295 -295
  30. package/js/select.js +391 -451
  31. package/js/sidenav.js +583 -583
  32. package/js/slider.js +359 -359
  33. package/js/tabs.js +402 -402
  34. package/js/tapTarget.js +315 -315
  35. package/js/timepicker.js +712 -647
  36. package/js/toasts.js +325 -322
  37. package/js/tooltip.js +320 -320
  38. package/js/waves.js +614 -614
  39. package/package.json +84 -74
  40. package/sass/_style.scss +929 -0
  41. package/sass/components/_badges.scss +55 -55
  42. package/sass/components/_buttons.scss +322 -322
  43. package/sass/components/_cards.scss +195 -195
  44. package/sass/components/_carousel.scss +90 -90
  45. package/sass/components/_chips.scss +96 -96
  46. package/sass/components/_collapsible.scss +91 -91
  47. package/sass/components/_collection.scss +107 -0
  48. package/sass/components/_color-classes.scss +32 -32
  49. package/sass/components/_color-variables.scss +370 -370
  50. package/sass/components/_datepicker.scss +191 -191
  51. package/sass/components/_dropdown.scss +84 -84
  52. package/sass/components/_global.scss +646 -771
  53. package/sass/components/_grid.scss +158 -156
  54. package/sass/components/_icons-material-design.scss +5 -5
  55. package/sass/components/_materialbox.scss +42 -42
  56. package/sass/components/_modal.scss +97 -97
  57. package/sass/components/_navbar.scss +208 -208
  58. package/sass/components/_normalize.scss +447 -447
  59. package/sass/components/_preloader.scss +334 -334
  60. package/sass/components/_pulse.scss +34 -34
  61. package/sass/components/_sidenav.scss +214 -214
  62. package/sass/components/_slider.scss +91 -91
  63. package/sass/components/_table_of_contents.scss +33 -33
  64. package/sass/components/_tabs.scss +99 -99
  65. package/sass/components/_tapTarget.scss +103 -103
  66. package/sass/components/_timepicker.scss +199 -183
  67. package/sass/components/_toast.scss +58 -58
  68. package/sass/components/_tooltip.scss +32 -32
  69. package/sass/components/_transitions.scss +12 -12
  70. package/sass/components/_typography.scss +62 -60
  71. package/sass/components/_variables.scss +352 -349
  72. package/sass/components/_waves.scss +187 -187
  73. package/sass/components/forms/_checkboxes.scss +200 -200
  74. package/sass/components/forms/_file-input.scss +44 -44
  75. package/sass/components/forms/_forms.scss +22 -22
  76. package/sass/components/forms/_input-fields.scss +388 -379
  77. package/sass/components/forms/_radio-buttons.scss +115 -115
  78. package/sass/components/forms/_range.scss +161 -161
  79. package/sass/components/forms/_select.scss +199 -199
  80. package/sass/components/forms/_switches.scss +91 -91
  81. package/sass/ghpages-materialize.scss +7 -0
  82. package/sass/materialize.scss +42 -41
  83. package/CHANGELOG.md +0 -76
  84. package/HISTORY.md +0 -527
package/CHANGELOG.md DELETED
@@ -1,76 +0,0 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file. For changes made before this fork, please refer to [HISTORY.md](https://github.com/materializecss/materialize/blob/v1-dev/HISTORY.md).
3
-
4
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
-
7
- ## [1.1.0-alpha] - 2021-03-31
8
-
9
- ### Added
10
-
11
- - Nightly builds of the latest code available through github actions ([Easy link for the latest build](https://nightly.link/materializecss/materialize/workflows/nightly/v1-dev/build)) ([58d18003](https://github.com/materializecss/materialize/commit/58d180036374f2b38a244e5e96c33838ce185220))
12
- - Added support for text input suffix icons ([3e516e5b](https://github.com/materializecss/materialize/commit/3e516e5b322e4f8c7299cc37504389d0ddbb1ed6))
13
- - Added dragTargetWidth option ([6f4b2a15](https://github.com/materializecss/materialize/commit/6f4b2a15fc9f21a91ce95a1baffe60cfb15619df))
14
- - Added ability to change tooltip animate opacity ([8fce193f](https://github.com/materializecss/materialize/commit/8fce193fa94fe6d5a04630e732623c84fc803c3d))
15
- - Added option to prevent user chips ([cc696bf3](https://github.com/materializecss/materialize/commit/cc696bf386e3ebbe72f14a7605bed886569da8f7))
16
-
17
- ### Changed
18
-
19
- - Docs are now hosted at [materializecss.github.io/materialize](https://materializecss.github.io/materialize/). This also means removing all adverts, tracking and patreon stuff. ([ef0ce5b0](https://github.com/materializecss/materialize/commit/ef0ce5b0a13a418d47c6d88272fd3173b6954c2e), [fbfd2d6a](https://github.com/materializecss/materialize/commit/fbfd2d6afb09483700cff78c4e651875269430a6), [376be29f](https://github.com/materializecss/materialize/commit/376be29f10e53f77cbec203cee5f20a6e72cc62c), [1a4463a9](https://github.com/materializecss/materialize/commit/1a4463a9d476872e30e03fe9590ab5b256d17e07), [015d0c32](https://github.com/materializecss/materialize/commit/015d0c32123795d94e8b9c265936dcf170d52682))
20
- - Made the search results on the docs prettier ([e8871c20](https://github.com/materializecss/materialize/commit/e8871c2065ac5d2f20b01afebd18a9687a14e9ec), [2543a1ae](https://github.com/materializecss/materialize/commit/2543a1ae203066654300fb2a6ecf4b83e90d708c), [b9dfeceb](https://github.com/materializecss/materialize/commit/b9dfeceb4d7f74da7ad2ca5b1b700ea886b26915), [60297e1f](https://github.com/materializecss/materialize/commit/60297e1f281f3c8a645eb044881f942df076911a))
21
- - Use jsDelivr ([99ddf250](https://github.com/materializecss/materialize/commit/99ddf2506141e326b93bad5b6cd17635e4aa8d9f), [57e53568](https://github.com/materializecss/materialize/commit/57e535688518ca52252dbb49494262ae502bd636))
22
- - Updated waves.js ([fce7b8be](https://github.com/materializecss/materialize/commit/fce7b8be7b94cb8d0792f560694aa72cc12abcdb))
23
-
24
- ### Deprecated
25
-
26
- - As part of the XSS fixes, html data for both tooltips and toasts is highly discouraged. The `html` option is now deprecated and usage of of `text` is recommended. If you really need to use HTML, use `unsafeHTML` and make sure to **sanitize any user input**.
27
- - Similarly, HTML is disabled by default for autocomplete components. To re-enable this `allowUnsafeHTML` must be set. Once again be sure to **sanitize any user input**.
28
-
29
- ### Fixed
30
- - Fix breakpoint issue and incorrect min-width size ([75af8680](https://github.com/materializecss/materialize/commit/75af8680f982715b921aec94f4edc68ffca332bb))
31
- - Fixed toast tests ([1e6e9dca](https://github.com/materializecss/materialize/commit/1e6e9dca7e5cf4a650c95ff38f34003f6a35bf86))
32
- - Fixed overflowed scroll sidenav on desktop ([27b87935](https://github.com/materializecss/materialize/commit/27b87935423f52462d7b4ef4bad9fa9c6f8e2e59))
33
- - Fixed a bug in Dropdown when not using jQuery ([faa73a11](https://github.com/materializecss/materialize/commit/faa73a118813109b91062b4147d60f23d34a8f18))
34
- - Fix for closing the modal ([68c12a3a](https://github.com/materializecss/materialize/commit/68c12a3af999cea7cd8096a699a02ee6a5854e5b))
35
- - Fix chrome passive event warnings ([0b6b70c3](https://github.com/materializecss/materialize/commit/0b6b70c3544581fc467c509f173b937f5d036ec8), [3cbfb259](https://github.com/materializecss/materialize/commit/3cbfb259cd6911e1796f6460abcd921ccaef6ccd), [95580a52](https://github.com/materializecss/materialize/commit/95580a524199ca8774ccff87f37d13911b9626d4), [3afddefe](https://github.com/materializecss/materialize/commit/3afddefe2cadef09cb0221d9cdbbc61095f27b06))
36
- - Fix disabled checked switch style ([28df51e4](https://github.com/materializecss/materialize/commit/28df51e475c7f8f2ca48b76a5456bb7711c3d991))
37
- - Fix when using indented text for select inputs ([63d5502](https://github.com/materializecss/materialize/commit/63d5502eebbe821db21bb1fbba0dba98d3f58272))
38
- - Fix for feature discovery target being misplaced ([ee5f767](https://github.com/materializecss/materialize/commit/ee5f7673dd3cfb890c9b643a49fc7ce9e71609e7))
39
- - Other misc fixes for bugs and typos
40
-
41
- ### Security
42
-
43
- - Fixed XSS vulnerabilities ([3aae4cc9](https://github.com/materializecss/materialize/commit/3aae4cc9bb2b58c337bf25d2f04f129a2a0fa78f))
44
-
45
- #### Many other small changes have been made:
46
- https://github.com/Dogfalo/materialize/compare/v1-dev...materializecss:v1-dev
47
-
48
- #### Contributors
49
- Many thanks to all the contributors that made this release possible.
50
-
51
- @DanielRuf
52
- @nekonenene
53
- @Smankusors
54
- @ChildishGiant
55
- @dev10110
56
- @WaeCo
57
- @tomwjerry
58
- @warrenrodrigues
59
- @samschurter
60
- @julienc91
61
- @RaquelAM
62
- @k2s
63
- @stweil
64
- @roiLeo
65
- @nicknickel
66
- @zn022285
67
- @pwcreative
68
- @june07
69
- @doughballs
70
- @dwu300
71
- @tomelsj
72
- @NoahvdAa
73
- @bugy
74
- @richarddewit
75
- @dargmuesli
76
- @christinavoudouris
package/HISTORY.md DELETED
@@ -1,527 +0,0 @@
1
- # History
2
-
3
- This file contains all changelogs from before this fork was made. For an up-to-date changelog please look here: [CHANGELOG.md](https://github.com/materializecss/materialize/blob/v1-dev/CHANGELOG.md)
4
-
5
- ---
6
-
7
- Changelog
8
- =======
9
- Bolded styling surrounded by emojis indicates a breaking change.
10
-
11
- ## 1.0.0 (September 9th, 2018)
12
- - [Full Changelog here](https://github.com/materializecss/materialize/blob/v1-dev/v1-changelog.md)
13
-
14
- ## 1.0.0-rc.2 (June 23rd, 2018)
15
- - Autocomplete
16
- - Fixed bug where Autocomplete did not open properly in certain cases with keyboard focus
17
-
18
- - Carousel
19
- - Fix noWrap option bug
20
-
21
- - Collapsible
22
- - Now correctly removes all event listeners on destroy
23
-
24
- - Materialbox
25
- - Destroy now removed wrapper element added during initialization
26
-
27
- - Pushpin
28
- - Fixed bug on IE11 where class was not removed properly
29
-
30
- - Select
31
- - No longer triggers onchange event when selecting the same option
32
-
33
- - Sidenav
34
- - Destroy now reenables body scrolling if Sidenav was destroyed while it was open
35
-
36
- - Tabs
37
- - Tab indicator no longer displays improperly when a scrollbar is present in the element
38
-
39
-
40
- ## 1.0.0-rc.1 (May 1st, 2018)
41
- - Autocomplete
42
- - Added open and close methods
43
- - Fixed bug where Autocomplete would close on click
44
-
45
- - Datepicker
46
- - Added autoClose option
47
-
48
- - Modal
49
- - Fixed issue with focus with nested modals
50
-
51
- - Select
52
- - Removed `active` class on option elements
53
- - Fixed bug where `selected` class was not properly removed on option elements
54
-
55
- - Sidenav
56
- - Destroy method now correctly removes style property
57
-
58
- - Text Input
59
- - Fixed bug where autofill on chrome overlapped text input
60
-
61
- - Toast
62
- - Fixed bug where Toast did not respect inDuration option
63
-
64
- - Tooltip
65
- - Fixed tooltip positioning bug in certain scenarios when html height was less than screen height
66
- - Fixed bug where tooltip stayed open on click
67
-
68
-
69
- ## 1.0.0-beta (March 21st, 2018)
70
- - Autocomplete
71
- - Now uses dropdown
72
-
73
- - Carousel
74
- - Added numVisible option
75
-
76
- - Collapsible
77
- - Added keyboard support
78
-
79
- - Dropdown
80
- - Fixed scrolling dropdown bug on touch devices
81
-
82
- - Javascript Initialization
83
- - Added AutoInit function
84
-
85
- - Modals
86
- - Focus now stays within open modal
87
-
88
- - Pickers
89
- - Standardized action buttons to match those on android
90
- - Added support for date and time input types
91
- - **fromnow renamed to fromNow**
92
-
93
- - Select
94
- - Dropdown scrolls to selected option
95
-
96
- - Sidenav
97
- - Now detects vertical scrolling
98
-
99
- - Tabs
100
- - Fixed tab preselection on swipeable tabs
101
-
102
- - TapTarget
103
- - **Reverted name change from FeatureDiscovery**
104
-
105
- - Tooltips
106
- - Added keyboard support
107
-
108
-
109
- ## 1.0.0-alpha.4 (February 18th, 2018)
110
- - Badge
111
- - Fixed display issue when used in a table
112
-
113
- - Chips
114
- - Fixed autocomplete initialization
115
-
116
- - CSS
117
- - Added hide and show classes for extra large breakpoint
118
- - Added small buttons
119
- - Fixed input helper text alignment when using prefix
120
-
121
- - Date Picker
122
- - Fixed month and year select overflow issues
123
- - Added additional date formatting options
124
-
125
- - Dropdown
126
- - Added container option
127
- - Dropdown on mobile now correctly selects the right item
128
- - Dropdown now closes correctly on iOS devices
129
-
130
- - Materialbox
131
- - Fixed error with photo caption
132
- - Fixed issues caused by width and height attributes
133
- - Fixed issues caused by max-width and max-height
134
-
135
- - Modal
136
- - Improved support for nested modals
137
-
138
- - Parallax
139
- - Fixed infinite loop bug
140
-
141
- - Select
142
- - *Renamed plugin class to `FormSelect`*
143
- - *Renamed jQuery plugin to `formSelect`*
144
-
145
- - Sidenav
146
- - Fixed issues with draggable option when used with fixed sidenav
147
-
148
- - Time Picker
149
- - Changed i18n options to be more consistent with date picker
150
- - Fixed error with auto close option
151
-
152
-
153
- ## 1.0.0-alpha.3 (December 29th, 2017)
154
- - *Initialization code for all components changed. E.g. Change`new M.Tooltip(el, options)` to `M.Tooltip.init(el, options)`*
155
- - This was done so that the same initialization code can be used to initialize single Elements as well as NodeLists and jQuery element objects
156
-
157
- - Added in onOpen and OnClose callbacks for appropriate plugins
158
-
159
- - Datepicker
160
- - Destroy function added
161
-
162
- - Feature Discovery
163
- - Added open and close callbacks
164
-
165
- - Materialbox
166
- - Added open and close callbacks
167
-
168
- - Modal
169
- - Added open and close callbacks for consistency
170
- - Removed ready and complete callbacks
171
-
172
- - Parallax
173
- - Has responsiveThreshold option
174
- - Destroy function added
175
-
176
- - Pushpin
177
- - added onPositionChange callback
178
-
179
- ## 1.0.0-alpha.2 (November 30th)
180
- - Chips
181
- - Fixed and standardized chips callback parameters
182
-
183
- - Datepicker
184
- - Fixed date format option
185
- - Scrollbar no longer unnecessarily appears when using datepicker
186
- - Fixed bug where using month and year selectors didn't change date
187
-
188
- - Dropdown
189
- - Removed automatic focus highlight on open
190
-
191
- - Textarea
192
- - Fixed error where text was cut off on Firefox
193
-
194
- - Tabs
195
- - Fixed error with pure JavaScript initialization
196
- - Fixed error where a tab with no content would break tabs
197
-
198
- - Timepicker
199
- - Fixed error with twelveHour options
200
-
201
- - Replaced velocity.js with anime.js
202
-
203
- ## 1.0.0-alpha.1 (November 10th)
204
- - Dropdown
205
- - rewritten with classes
206
- - Plugin is initialized on `.dropdown-content` instead of `.dropdown-button`
207
- - Renamed classes `.dropdown-button` to `.dropdown-trigger`
208
- - Renamed option `belowOrigin` to `coverTrigger`
209
- - Added callbacks onOpenStart, onOpenEnd, onCloseStart, onCloseEnd
210
- - Removed HTML attribute options
211
- - Removed stopPropagation option
212
- - Reworked animation
213
-
214
- - Select
215
- - rewritten with classes
216
- - Plugin renamed from 'material_select' to 'select'
217
- - The select will no longer copy the class attribute on each <option> el to the <img> for the icon in the generated select.
218
-
219
- - Tabs
220
- - rewritten with classes
221
- - added duration option
222
- - now requires plugin initialization
223
- - tabs 'select_tab' method renamed to 'select'
224
-
225
- - Chips
226
- - rewritten with classes
227
- - changed events to callbacks
228
- - Added limit chips option
229
-
230
- - Autocomplete
231
- - rewritten with classes
232
- - Added updateData method
233
- - Added sortFunction option
234
-
235
- - Feature Discovery
236
- - rewritten with classes
237
- - Plugin renamed from 'tapTarget' to 'featureDiscovery'
238
-
239
- - Forms
240
- - Added new helper text element
241
- - Moved validation messages 'data-error' and 'data-success' to Helper Text
242
-
243
- - Pickatime
244
- - Renamed to Timepicker
245
- - Now opens on enter or click instead of focus
246
- - Added open animation
247
- - Reworked and simplified Timepicker HTML structure
248
- - Renamed internal classes to reflect Timpicker namechange and structure rework
249
-
250
- - Floating Action Button
251
- - Converted to plugin
252
- - Added direction option
253
- - Added toolbar transition option
254
-
255
-
256
- ## v0.100.1 (July 21st)
257
- - Fixed bug where modal triggers could not contain child elements
258
- - Fixed bug with right alignment option for dropdown
259
- - Allow select native browser validation error messages
260
- - Added fix for validation messages being mispositioned when input is empty
261
-
262
- ## v0.100.0 (July 19th)
263
- - :sparkles: **Rewrote Modal Plugin** :sparkles:
264
- - Modal open no longer initializes plugin
265
- - Fixed bug where modal open did not use initialized options
266
- - Modal-trigger class required for modal trigger elements
267
- - :sparkles: **Rewrote Toast Plugin** :sparkles:
268
- - Added class method to dismiss all toasts
269
- - Added instance method to remove specific toasts
270
- - Validation styling support added for many form components
271
- - Added ability to remove autocompelete data
272
- - Fixed waves persisting bug
273
- - Waves no longer throws error on svg elements
274
- - Fixed side nav callback bugs
275
- - Tab accessibility for date picker
276
- - Added container option for time picker
277
- - Fixed carousel image loading bug
278
- - Full width carousel now resizes height on resize
279
- - Added carousel destroy
280
- - Fixed multiple bugs with jQuery outerWidth on Linux
281
- - Fixed cursor blinking on select on iOS
282
- - Fixed search form styling in navbar
283
- - Fixed label animation on date picker
284
- - Added close on select option for date picker
285
- - Browser errors now show up on radio buttons and checkboxes
286
-
287
- ## v0.99.0 (June 22th)
288
- - Added support for jQuery 3
289
- - Fixed dynamic textarea resize bug
290
- - Added support for custom active elements in scrollspy
291
- - Added Time Picker
292
- - Updated styling for Date Picker
293
- - Added callbacks to side nav
294
- - Updated styling for switches
295
-
296
- ## v0.98.2 (April 14th)
297
- - :no_good: **Autocomplete: renamed and moved options to `autocompleteOptions`** :no_good:
298
- - Fixed collapsible preselect bug
299
- - Fixed dropdown event bubbling bug
300
- - Fixed range position inaccuracies
301
- - Fixed feature discovery mobile styles
302
- - Fixed carousel reinitialize bugs
303
- - Fixed grid offset bug
304
-
305
-
306
- ## v0.98.1 (March 21st)
307
- - Fixed various select bugs on mobile devices
308
- - Fixed small sidenav overlay bugs
309
- - Fixed carousel resizing bug
310
- - Fixed materialbox callback bug
311
- - Range slider supports keyboard navigation
312
- - Added XL breakpoint
313
- - Added Pulse CSS effect
314
- - Added Feature Discovery component
315
-
316
-
317
- ## v0.98.0 (January 25th)
318
- - :no_good: **Standardized plugin option naming to camelcase (please check your plugin calls to make sure all the options are camelcase)** :no_good:
319
- - Added FABs in image cards
320
- - Added swipeable tabs
321
- - Fixed carousel misalignment when switching quickly
322
- - Fixed carousel resize bug where slide widths wouldn't change when changing window size
323
- - Improved tabs compatibility with cards
324
- - Fixed bug where using backspace to delete chips would navigate back in certain browsers
325
- - Added autocomplete integration with chips
326
- - Upgraded noUiSlider to version 9 with support for vertical sliders
327
-
328
-
329
- ## v0.97.8 (October 30th, 2016)
330
- - **Refactored Modal plugin**
331
- - Tabs now supported in navbar
332
- - Chips data can now be reinitiailized
333
- - Minor side nav fixes
334
- - FAB to toolbar component added
335
- - Fixed dropdown options bug
336
-
337
-
338
- ## v0.97.7 (July 23rd, 2016)
339
- - Basic horizontal cards
340
- - Carousel bug fixes and new features
341
- - Updated sidenav styles and new component
342
- - Meteor package now supports Sass
343
- - Autocomplete form component
344
- - Chips jQuery plugin
345
-
346
-
347
- ## v0.97.6 (April 1st, 2016)
348
- - **Removed deprecated material icons from project**
349
- - **Changed /font directory to /fonts**
350
- - Datepicker and ScrollSpy now compatible with jQuery 2.2.x
351
- - Responsive tables now work with empty cells
352
- - Added focus states to checkboxes, switches, and radio buttons
353
- - Sidenav and Modals no longer cause flicker with scrollbar
354
- - Materialbox overflow and z-index issues fixed
355
- - Added new option for Card actions within a Card reveal
356
-
357
-
358
- ## v0.97.5 (December 21st, 2015)
359
- - Fixed Meteor package crash
360
-
361
-
362
- ## v0.97.4 (Dec 20, 2015)
363
- - Added Jasmine testing with Travis CI
364
- - Select bugfixes
365
- - Grid Offset bugfix
366
- - Dropdown overflow bugfix
367
- - Range slider error bugfix
368
-
369
-
370
- ## v0.97.3 (Nov 15, 2015)
371
- - Meteor font issues fixed
372
- - Select rendering issue fixed
373
- - Added Push and Pull to grid
374
- - Dynamic accordion appends fixed
375
-
376
-
377
- ## v0.97.2 (Nov 8, 2015)
378
- - Image support inside select
379
- - Optgroup supported in select
380
- - Multiple select added
381
- - Card styling fixes
382
- - Breadcrumbs added
383
- - Scrollable tabs
384
- - Tooltips and dropdowns position themselves more intelligently inside the window
385
- - FAB menu is click-toggleable
386
- - Horizontal FAB support added
387
-
388
-
389
- ## v0.97.1 (Sep 13, 2015)
390
- - Added new range slider with uses noUiSlider to provide powerful options
391
- - Added CSS for Chips
392
- - Toasts support adding of html elements
393
- - Fixed select destroy/creation bug
394
- - Bugfixes for dropdown, badges, collections, scrollfire
395
- - Added default preloader color variable
396
- - File input now supports multiple files and dynamically loaded elements
397
-
398
-
399
- ## v0.97.0 (June 21, 2015)
400
- - **Documentation changed to use Official Google Icon web font**
401
- - **Input errors added**
402
- - Flicker on Firefox on dropdowns fixed
403
- - Pagination made more responsive
404
- - Modal now prevents scrolling
405
- - Modal animation added
406
- - Support for multiple modals added
407
- - Programmatic control of FAB to open/close added
408
- - Programmatic control of slider to play/pause added
409
- - Plus many more bug fixes
410
-
411
-
412
- ## v0.96.0 (April 1, 2015)
413
- - Toasts, transitions, scrollfire added under Materialize namespace
414
- - Dropdown is now created as a child of its parent
415
- - Collapsibles supports nesting
416
- - Modal Bottom Sheet added
417
- - Indeterminate Checkboxes added
418
- - New Checkbox Style added
419
- - Text Inputs supports placeholder/readonly
420
- - Google Inbox-like Collapsible added
421
- - Text Character Counter added
422
- - Waves no longer breaks on SVGs
423
-
424
-
425
- ## v0.95.3 (Feb 25, 2015)
426
- - Parallax image loading / responsiveness fixes
427
- - Date picker supports month/year as dropdown
428
- - Dismissable collection items
429
- - Avatar collection items
430
- - Pagination Added
431
- - ScrollFire fixes
432
-
433
-
434
- ## v0.95.2 (Feb 10, 2015)
435
- - Switches added
436
- - Transition animation functions added
437
- - ScrollFire Plugin added (fires functions dependent on scroll position)
438
- - Responsive Video tag added
439
- - Custom File Input Button added
440
- - Modals has a fixed footer option
441
- - Sidenav implementation changed (needs 2 UL menus)
442
- - Slider Responsive Fixes
443
-
444
-
445
- ## v0.95.1 (Jan 26, 2015)
446
- - Sidenav Fixes
447
- - Dropdown alignment/gutter options added
448
- - Parallax fixes
449
- - JavaScript Initialization no longer needed for many components
450
- - HTML options through data-attributes
451
- - Site colors can be defined through Primary and Secondary color in Sass
452
- - Tables no longer resonsive by default
453
-
454
-
455
- ## v0.95.0 (Jan 17, 2015)
456
- - Drag Out Menu fixed with Touch Interactions
457
- - Toasts minor bugfix
458
- - OL element has default styling
459
- - Fullscreen Slider added
460
- - Footer requires page-footer class
461
- - Progress Bars added
462
- - Form autofill support added
463
- - Responsive Tables support added
464
- - Scrollspy Plugin released
465
- - Waves events are now delegated / behavior enhanced
466
-
467
-
468
- ## v0.94.0 (Dec 30, 2014)
469
- - Sidenav supports right edge positioning
470
- - Responsive Embeds
471
- - Image Vertical align classes
472
- - border-box added
473
- - Variable file created
474
- - Pushpin added
475
- - Tooltips support all directions
476
- - Layout helper classes added
477
- - Materialbox Fixes
478
- - Form Element Enhancements
479
- - Navbar supports search bar
480
- - Waves fixes
481
- - Materialbox Captions
482
- - Image Slider Fixes
483
-
484
-
485
- ## v0.93.1 (Dec 20, 2014)
486
- - Flexbox Sticky Footer removed due to IE incompatibility
487
-
488
-
489
- ## v0.93.0 (Dec 19, 2014)
490
- - Card Reveal
491
- - Image Slider
492
- - Dynamically loaded forms work correctly
493
- - Badges added
494
- - Circular Image
495
- - Waves Fixes
496
- - Footer Added
497
- - Toast support Custom HTML
498
- - Modals support programmatic opening/closing
499
- - Responsive Image support
500
-
501
-
502
- ## v0.92.1 (Dec 14, 2014)
503
- - Bower semver fix
504
- - Added new radio button style
505
-
506
-
507
- ## v0.92.0 (Dec 13, 2014)
508
- - Clicking icon in dropdown in navbar no longer closes dropdown immediately
509
- - Multiple select inputs now work properly
510
- - Mobile navbar no longer extends past screen width
511
- - Parallax improved
512
- - Modal restructured / can be opened programmatically
513
- - Callbacks added to modals
514
- - Added dist folder to repo
515
- - Cards restructured
516
-
517
-
518
- ## v0.91 (Dec 3, 2014)
519
- - bug fixes to forms
520
- - added waves color classes
521
- - toast thickened to look better on mobile
522
- - many other bug fixes
523
-
524
-
525
- ## v0.9 (Nov 30, 2014)
526
- - Touch interactions added
527
- - tons more...