mithril-materialized 2.0.0-beta.9 → 2.0.0-rc.2
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.
- package/README.md +353 -10
- package/dist/advanced.css +6 -6
- package/dist/button.d.ts +56 -11
- package/dist/components.css +1674 -6
- package/dist/core.css +13 -13
- package/dist/datatable.d.ts +291 -0
- package/dist/datepicker.d.ts +12 -2
- package/dist/file-upload.d.ts +23 -0
- package/dist/floating-action-button.d.ts +1 -1
- package/dist/forms.css +344 -13
- package/dist/icon.d.ts +2 -2
- package/dist/image-list.d.ts +70 -0
- package/dist/index.css +1940 -20
- package/dist/index.d.ts +8 -0
- package/dist/index.esm.js +2736 -659
- package/dist/index.js +2746 -658
- package/dist/index.min.css +2 -2
- package/dist/index.umd.js +2746 -658
- package/dist/input-options.d.ts +18 -4
- package/dist/input.d.ts +0 -1
- package/dist/masonry.d.ts +17 -0
- package/dist/material-icon.d.ts +3 -0
- package/dist/pickers.css +45 -0
- package/dist/range-slider.d.ts +42 -0
- package/dist/theme-switcher.d.ts +23 -0
- package/dist/timeline.d.ts +43 -0
- package/dist/treeview.d.ts +39 -0
- package/dist/types.d.ts +226 -0
- package/dist/utilities.css +16 -9
- package/package.json +12 -9
- package/sass/components/_cards.scss +10 -3
- package/sass/components/_datatable.scss +417 -0
- package/sass/components/_datepicker.scss +57 -0
- package/sass/components/_global.scss +6 -6
- package/sass/components/_image-list.scss +421 -0
- package/sass/components/_masonry.scss +241 -0
- package/sass/components/_timeline.scss +452 -0
- package/sass/components/_treeview.scss +353 -0
- package/sass/components/forms/_forms.scss +1 -1
- package/sass/components/forms/_range-enhanced.scss +406 -0
- package/sass/components/forms/_range.scss +5 -5
- package/sass/components/forms/_select.scss +1 -1
- package/sass/materialize.scss +6 -0
package/dist/index.d.ts
CHANGED
|
@@ -7,13 +7,16 @@ export * from './code-block';
|
|
|
7
7
|
export * from './collapsible';
|
|
8
8
|
export * from './collection';
|
|
9
9
|
export * from './datepicker';
|
|
10
|
+
export * from './datatable';
|
|
10
11
|
export * from './dropdown';
|
|
11
12
|
export * from './floating-action-button';
|
|
12
13
|
export * from './icon';
|
|
13
14
|
export * from './input-options';
|
|
14
15
|
export * from './input';
|
|
16
|
+
export * from './range-slider';
|
|
15
17
|
export * from './label';
|
|
16
18
|
export * from './material-box';
|
|
19
|
+
export * from './material-icon';
|
|
17
20
|
export * from './modal';
|
|
18
21
|
export * from './option';
|
|
19
22
|
export * from './pagination';
|
|
@@ -35,3 +38,8 @@ export * from './file-upload';
|
|
|
35
38
|
export * from './sidenav';
|
|
36
39
|
export * from './breadcrumb';
|
|
37
40
|
export * from './wizard';
|
|
41
|
+
export * from './treeview';
|
|
42
|
+
export * from './timeline';
|
|
43
|
+
export * from './masonry';
|
|
44
|
+
export * from './image-list';
|
|
45
|
+
export * from './types';
|