mithril-materialized 2.0.0-beta.2 → 2.0.0-beta.4
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/dist/advanced.css +1888 -0
- package/dist/autocomplete.d.ts +3 -3
- package/dist/breadcrumb.d.ts +53 -0
- package/dist/button.d.ts +10 -10
- package/dist/carousel.d.ts +2 -2
- package/dist/chip.d.ts +2 -2
- package/dist/code-block.d.ts +2 -2
- package/dist/collapsible.d.ts +2 -2
- package/dist/collection.d.ts +2 -2
- package/dist/components.css +2310 -0
- package/dist/core.css +3402 -0
- package/dist/datepicker.d.ts +66 -0
- package/dist/dropdown.d.ts +2 -2
- package/dist/file-upload.d.ts +34 -0
- package/dist/floating-action-button.d.ts +2 -2
- package/dist/forms.css +2284 -0
- package/dist/index.css +1483 -167
- package/dist/index.d.ts +12 -1
- package/dist/index.esm.js +3694 -1717
- package/dist/index.js +3714 -1716
- package/dist/index.min.css +8 -0
- package/dist/index.umd.js +3714 -1716
- package/dist/input-options.d.ts +1 -1
- package/dist/input.d.ts +9 -9
- package/dist/label.d.ts +4 -2
- package/dist/material-box.d.ts +2 -2
- package/dist/modal.d.ts +2 -2
- package/dist/option.d.ts +4 -4
- package/dist/pagination.d.ts +2 -2
- package/dist/parallax.d.ts +2 -2
- package/dist/pickers.css +487 -0
- package/dist/pushpin.d.ts +32 -0
- package/dist/radio.d.ts +4 -4
- package/dist/search-select.d.ts +2 -2
- package/dist/select.d.ts +2 -2
- package/dist/sidenav.d.ts +76 -0
- package/dist/switch.d.ts +2 -2
- package/dist/tabs.d.ts +2 -4
- package/dist/theme-switcher.d.ts +49 -0
- package/dist/timepicker.d.ts +42 -0
- package/dist/toast.d.ts +45 -0
- package/dist/tooltip.d.ts +59 -0
- package/dist/utilities.css +3197 -0
- package/dist/wizard.d.ts +58 -0
- package/package.json +16 -8
- package/sass/components/_breadcrumb.scss +248 -0
- package/sass/components/_buttons.scss +3 -3
- package/sass/components/_chips.scss +8 -8
- package/sass/components/_collapsible.scss +8 -8
- package/sass/components/_datepicker.scss +45 -14
- package/sass/components/_dropdown.scss +5 -5
- package/sass/components/_file-upload.scss +228 -0
- package/sass/components/_global.scss +7 -5
- package/sass/components/_modal.scss +5 -2
- package/sass/components/_navbar.scss +13 -5
- package/sass/components/_sidenav.scss +164 -7
- package/sass/components/_tabs.scss +5 -4
- package/sass/components/_theme-switcher.scss +120 -0
- package/sass/components/_theme-variables.scss +205 -0
- package/sass/components/_timepicker.scss +179 -87
- package/sass/components/_wizard.scss +416 -0
- package/sass/components/forms/_input-fields.scss +34 -12
- package/sass/components/forms/_radio-buttons.scss +10 -10
- package/sass/components/forms/_select.scss +8 -8
- package/sass/components/forms/_switches.scss +6 -6
- package/sass/materialize.scss +7 -0
- package/dist/pickers.d.ts +0 -130
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from './chip';
|
|
|
6
6
|
export * from './code-block';
|
|
7
7
|
export * from './collapsible';
|
|
8
8
|
export * from './collection';
|
|
9
|
+
export * from './datepicker';
|
|
9
10
|
export * from './dropdown';
|
|
10
11
|
export * from './floating-action-button';
|
|
11
12
|
export * from './icon';
|
|
@@ -17,10 +18,20 @@ export * from './modal';
|
|
|
17
18
|
export * from './option';
|
|
18
19
|
export * from './pagination';
|
|
19
20
|
export * from './parallax';
|
|
20
|
-
export * from './
|
|
21
|
+
export * from './datepicker';
|
|
22
|
+
export * from './timepicker';
|
|
23
|
+
export * from './pushpin';
|
|
21
24
|
export * from './radio';
|
|
22
25
|
export * from './select';
|
|
23
26
|
export * from './switch';
|
|
24
27
|
export * from './tabs';
|
|
25
28
|
export * from './search-select';
|
|
29
|
+
export * from './timepicker';
|
|
30
|
+
export * from './toast';
|
|
31
|
+
export * from './tooltip';
|
|
26
32
|
export * from './utils';
|
|
33
|
+
export * from './theme-switcher';
|
|
34
|
+
export * from './file-upload';
|
|
35
|
+
export * from './sidenav';
|
|
36
|
+
export * from './breadcrumb';
|
|
37
|
+
export * from './wizard';
|