@shortfuse/materialdesignweb 0.4.0 → 0.7.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.
- package/README.md +155 -79
- package/bin/generate-css.js +12 -0
- package/components/Badge.css +30 -0
- package/components/Badge.js +15 -0
- package/components/Body.css +14 -0
- package/components/Body.js +7 -0
- package/components/BottomAppBar.css +23 -0
- package/components/BottomAppBar.js +25 -0
- package/components/Box.css +31 -0
- package/components/Box.js +24 -0
- package/components/Button.css +146 -0
- package/components/Button.js +95 -0
- package/components/Button.md +61 -0
- package/components/Card.css +109 -0
- package/components/Card.js +82 -0
- package/components/Checkbox.css +77 -0
- package/components/Checkbox.js +59 -0
- package/components/CheckboxIcon.css +89 -0
- package/components/CheckboxIcon.js +41 -0
- package/components/Chip.css +35 -0
- package/components/Chip.js +22 -0
- package/components/Dialog.css +235 -0
- package/components/Dialog.js +327 -0
- package/components/DialogActions.js +13 -0
- package/components/Divider.css +41 -0
- package/components/Divider.js +13 -0
- package/components/ExtendedFab.css +24 -0
- package/components/ExtendedFab.js +11 -0
- package/components/Fab.css +23 -0
- package/components/Fab.js +26 -0
- package/components/FilterChip.css +80 -0
- package/components/FilterChip.js +51 -0
- package/components/Headline.css +14 -0
- package/components/Headline.js +33 -0
- package/components/Icon.css +76 -0
- package/components/Icon.js +174 -0
- package/components/IconButton.css +151 -0
- package/components/IconButton.js +65 -0
- package/components/Input.js +16 -0
- package/components/Label.css +14 -0
- package/components/Label.js +7 -0
- package/components/Layout.css +19 -0
- package/components/Layout.js +12 -0
- package/components/List.css +12 -0
- package/components/List.js +17 -0
- package/components/ListItem.css +224 -0
- package/components/ListItem.js +112 -0
- package/components/ListOption.css +34 -0
- package/components/ListOption.js +122 -0
- package/components/ListSelect.css +9 -0
- package/components/ListSelect.js +206 -0
- package/components/Menu.css +171 -0
- package/components/Menu.js +470 -0
- package/components/MenuItem.css +53 -0
- package/components/MenuItem.js +215 -0
- package/components/Nav.css +17 -0
- package/components/Nav.js +23 -0
- package/components/NavBar.css +34 -0
- package/components/NavBar.js +88 -0
- package/components/NavBarItem.css +41 -0
- package/components/NavBarItem.js +7 -0
- package/components/NavDrawer.css +31 -0
- package/components/NavDrawer.js +13 -0
- package/components/NavDrawerItem.css +42 -0
- package/components/NavDrawerItem.js +12 -0
- package/components/NavItem.css +181 -0
- package/components/NavItem.js +83 -0
- package/components/NavRail.css +47 -0
- package/components/NavRail.js +17 -0
- package/components/NavRailItem.css +25 -0
- package/components/NavRailItem.js +7 -0
- package/components/Option.js +91 -0
- package/components/Outline.css +138 -0
- package/components/Pane.css +261 -0
- package/components/Pane.js +21 -0
- package/components/Progress.css +74 -0
- package/components/Progress.js +67 -0
- package/components/ProgressCircle.css +226 -0
- package/components/ProgressLine.css +155 -0
- package/components/Radio.css +83 -0
- package/components/Radio.js +42 -0
- package/components/RadioIcon.css +73 -0
- package/components/RadioIcon.js +37 -0
- package/components/Ripple.css +74 -0
- package/components/Ripple.js +114 -0
- package/components/SegmentedButton.css +94 -0
- package/components/SegmentedButton.js +49 -0
- package/components/SegmentedButtonGroup.css +12 -0
- package/components/SegmentedButtonGroup.js +44 -0
- package/components/Select.css +52 -0
- package/components/Select.js +71 -0
- package/components/Shape.css +132 -0
- package/components/Shape.js +25 -0
- package/components/Slider.css +306 -0
- package/components/Slider.js +206 -0
- package/components/Snackbar.css +80 -0
- package/components/Snackbar.js +75 -0
- package/components/Surface.css +10 -0
- package/components/Surface.js +23 -0
- package/components/Switch.css +63 -0
- package/components/Switch.js +127 -0
- package/components/SwitchIcon.css +177 -0
- package/components/SwitchIcon.js +89 -0
- package/components/SwitchIconAnimations.css +89 -0
- package/components/Tab.css +85 -0
- package/components/Tab.js +103 -0
- package/components/TabContent.js +151 -0
- package/components/TabList.css +129 -0
- package/components/TabList.js +309 -0
- package/components/TabPanel.js +37 -0
- package/components/TextArea.css +93 -0
- package/components/TextArea.js +229 -0
- package/components/Title.css +14 -0
- package/components/Title.js +15 -0
- package/components/Tooltip.css +40 -0
- package/components/Tooltip.js +22 -0
- package/components/TopAppBar.css +209 -0
- package/components/TopAppBar.js +201 -0
- package/core/Composition.js +988 -0
- package/core/CustomElement.js +844 -0
- package/core/ICustomElement.d.ts +288 -0
- package/core/ICustomElement.js +1 -0
- package/core/css.js +51 -0
- package/core/customTypes.js +125 -0
- package/core/dom.js +56 -245
- package/core/identify.js +40 -0
- package/core/observe.js +410 -0
- package/core/template.js +121 -0
- package/core/typings.d.ts +135 -0
- package/core/typings.js +1 -0
- package/mixins/AriaReflectorMixin.js +42 -0
- package/mixins/AriaToolbarMixin.js +13 -0
- package/mixins/ControlMixin.css +57 -0
- package/mixins/ControlMixin.js +212 -0
- package/mixins/DensityMixin.css +40 -0
- package/mixins/DensityMixin.js +11 -0
- package/mixins/FlexableMixin.css +79 -0
- package/mixins/FlexableMixin.js +32 -0
- package/mixins/FormAssociatedMixin.js +170 -0
- package/mixins/InputMixin.js +335 -0
- package/mixins/KeyboardNavMixin.js +244 -0
- package/mixins/RTLObserverMixin.js +35 -0
- package/mixins/ResizeObserverMixin.js +38 -0
- package/mixins/RippleMixin.css +12 -0
- package/mixins/RippleMixin.js +115 -0
- package/mixins/ScrollListenerMixin.js +100 -0
- package/mixins/ShapeMixin.css +135 -0
- package/mixins/ShapeMixin.js +31 -0
- package/mixins/StateMixin.css +82 -0
- package/mixins/StateMixin.js +114 -0
- package/mixins/SurfaceMixin.css +150 -0
- package/mixins/SurfaceMixin.js +32 -0
- package/mixins/TextFieldMixin.css +657 -0
- package/mixins/TextFieldMixin.js +121 -0
- package/mixins/ThemableMixin.css +204 -0
- package/mixins/ThemableMixin.js +16 -0
- package/mixins/TooltipTriggerMixin.css +27 -0
- package/mixins/TooltipTriggerMixin.js +366 -0
- package/mixins/TouchTargetMixin.css +26 -0
- package/mixins/TouchTargetMixin.js +9 -0
- package/package.json +57 -41
- package/theming/index.js +594 -0
- package/theming/loader.js +24 -0
- package/utils/cli.js +11 -0
- package/utils/color_keywords.js +151 -0
- package/utils/hct/Cam16.js +298 -0
- package/utils/hct/CorePalette.js +84 -0
- package/utils/hct/Hct.js +172 -0
- package/utils/hct/Scheme.js +587 -0
- package/utils/hct/TonalPalette.js +68 -0
- package/utils/hct/ViewingConditions.js +136 -0
- package/utils/hct/blend.js +93 -0
- package/utils/hct/colorUtils.js +302 -0
- package/utils/hct/hctSolver.js +559 -0
- package/utils/hct/helper.js +182 -0
- package/utils/hct/mathUtils.js +153 -0
- package/utils/jsonMergePatch.js +100 -0
- package/utils/jsx-runtime.js +101 -0
- package/utils/popup.js +117 -0
- package/utils/svg.js +129 -0
- package/.browserslistrc +0 -3
- package/.eslintrc.json +0 -153
- package/.stylelintrc.json +0 -600
- package/.vscode/launch.json +0 -31
- package/.vscode/settings.json +0 -3
- package/.vscode/tasks.json +0 -32
- package/CHANGELOG.md +0 -24
- package/CODE_OF_CONDUCT.md +0 -46
- package/adapters/datatable/column.js +0 -203
- package/adapters/datatable/index.js +0 -972
- package/adapters/dom/index.js +0 -601
- package/adapters/list/index.js +0 -69
- package/adapters/search/index.js +0 -521
- package/components/appbar/_spec.scss +0 -225
- package/components/appbar/_theme.scss +0 -0
- package/components/appbar/index.scss +0 -2
- package/components/banner/_spec.scss +0 -118
- package/components/banner/_theme.scss +0 -0
- package/components/banner/index.scss +0 -2
- package/components/bottomnav/README.md +0 -85
- package/components/bottomnav/_spec.scss +0 -157
- package/components/bottomnav/_theme.scss +0 -0
- package/components/bottomnav/index.js +0 -122
- package/components/bottomnav/index.scss +0 -2
- package/components/bottomnav/item.js +0 -89
- package/components/button/README.md +0 -61
- package/components/button/_spec.scss +0 -161
- package/components/button/_theme.scss +0 -65
- package/components/button/index.eta +0 -32
- package/components/button/index.js +0 -43
- package/components/button/index.pug +0 -18
- package/components/button/index.scss +0 -2
- package/components/card/_spec.scss +0 -249
- package/components/card/_theme.scss +0 -0
- package/components/card/index.scss +0 -2
- package/components/chip/_spec.scss +0 -134
- package/components/chip/_theme.scss +0 -177
- package/components/chip/index.js +0 -21
- package/components/chip/index.scss +0 -2
- package/components/chip/item.js +0 -20
- package/components/datatable/_spec.scss +0 -288
- package/components/datatable/_theme.scss +0 -154
- package/components/datatable/cell.js +0 -45
- package/components/datatable/columnheader.js +0 -47
- package/components/datatable/index.js +0 -388
- package/components/datatable/index.scss +0 -2
- package/components/datatable/row.js +0 -49
- package/components/datatable/rowheader.js +0 -18
- package/components/dialog/_spec.scss +0 -213
- package/components/dialog/_theme.scss +0 -0
- package/components/dialog/index.js +0 -627
- package/components/dialog/index.scss +0 -2
- package/components/divider/_spec.scss +0 -13
- package/components/divider/_theme.scss +0 -0
- package/components/divider/index.scss +0 -2
- package/components/elevation/_spec.scss +0 -9
- package/components/elevation/_theme.scss +0 -0
- package/components/elevation/index.scss +0 -2
- package/components/fab/_spec.scss +0 -222
- package/components/fab/_theme.scss +0 -0
- package/components/fab/index.js +0 -103
- package/components/fab/index.scss +0 -2
- package/components/grid/_spec.scss +0 -312
- package/components/grid/_theme.scss +0 -0
- package/components/grid/index.scss +0 -2
- package/components/layout/_mixins.scss +0 -33
- package/components/layout/_spec.scss +0 -1012
- package/components/layout/_theme.scss +0 -44
- package/components/layout/index.js +0 -464
- package/components/layout/index.scss +0 -2
- package/components/list/_spec.scss +0 -397
- package/components/list/_theme.scss +0 -111
- package/components/list/content.js +0 -110
- package/components/list/index.js +0 -260
- package/components/list/index.scss +0 -2
- package/components/list/item.js +0 -170
- package/components/list/secondary.js +0 -46
- package/components/menu/_spec.scss +0 -362
- package/components/menu/_theme.scss +0 -0
- package/components/menu/index.js +0 -721
- package/components/menu/index.scss +0 -2
- package/components/menu/item.js +0 -239
- package/components/progress/_spec.scss +0 -147
- package/components/progress/_theme.scss +0 -0
- package/components/progress/index.js +0 -36
- package/components/progress/index.scss +0 -2
- package/components/selection/_spec.scss +0 -386
- package/components/selection/_theme.scss +0 -166
- package/components/selection/index.eta +0 -60
- package/components/selection/index.js +0 -76
- package/components/selection/index.pug +0 -30
- package/components/selection/index.scss +0 -2
- package/components/selection/input.js +0 -56
- package/components/selection/radiogroup.js +0 -47
- package/components/slider/_spec.scss +0 -64
- package/components/slider/_theme.scss +0 -0
- package/components/slider/index.scss +0 -2
- package/components/snackbar/_spec.scss +0 -195
- package/components/snackbar/_theme.scss +0 -0
- package/components/snackbar/index.js +0 -344
- package/components/snackbar/index.scss +0 -2
- package/components/tab/_spec.scss +0 -235
- package/components/tab/_theme.scss +0 -0
- package/components/tab/content.js +0 -205
- package/components/tab/index.js +0 -260
- package/components/tab/index.scss +0 -2
- package/components/tab/item.js +0 -89
- package/components/tab/list.js +0 -210
- package/components/tab/panel.js +0 -54
- package/components/template/_theme.scss +0 -27
- package/components/textfield/README.md +0 -179
- package/components/textfield/_mixins.scss +0 -52
- package/components/textfield/_spec.scss +0 -809
- package/components/textfield/_theme.scss +0 -299
- package/components/textfield/index.eta +0 -74
- package/components/textfield/index.js +0 -168
- package/components/textfield/index.pug +0 -30
- package/components/textfield/index.scss +0 -2
- package/components/tooltip/_spec.scss +0 -188
- package/components/tooltip/_theme.scss +0 -0
- package/components/tooltip/index.scss +0 -2
- package/components/type/_spec.scss +0 -224
- package/components/type/_theme.scss +0 -0
- package/components/type/index.scss +0 -2
- package/core/_breakpoint.scss +0 -189
- package/core/_elevation.scss +0 -38
- package/core/_length.scss +0 -9
- package/core/_motion.scss +0 -31
- package/core/_platform.scss +0 -34
- package/core/_type.scss +0 -127
- package/core/aria/attributes.js +0 -141
- package/core/aria/button.js +0 -50
- package/core/aria/keyboard.js +0 -93
- package/core/aria/rovingtabindex.js +0 -178
- package/core/aria/tab.js +0 -60
- package/core/color/_spec.scss +0 -0
- package/core/color/_theme.scss +0 -390
- package/core/color/index.scss +0 -2
- package/core/document/index.js +0 -39
- package/core/overlay/_spec.scss +0 -31
- package/core/overlay/_theme.scss +0 -171
- package/core/overlay/index.js +0 -108
- package/core/overlay/index.scss +0 -2
- package/core/ripple/_spec.scss +0 -197
- package/core/ripple/_theme.scss +0 -40
- package/core/ripple/index.js +0 -294
- package/core/ripple/index.scss +0 -2
- package/core/theme/_config.scss +0 -2
- package/core/theme/_mixins.scss +0 -172
- package/core/theme/_palettes.scss +0 -406
- package/core/theme/_variables.scss +0 -24
- package/core/theme/index.js +0 -50
- package/core/throttler.js +0 -42
- package/core/transition/index.js +0 -468
- package/docs/_flex.scss +0 -22
- package/docs/_menuoptions.js +0 -183
- package/docs/_mixins.pug +0 -155
- package/docs/_partials/_androidnavbar.eta +0 -5
- package/docs/_partials/_androidstatusbar.eta +0 -13
- package/docs/_partials/_appbar.eta +0 -29
- package/docs/_partials/_buttontest.eta +0 -31
- package/docs/_partials/_header.eta +0 -149
- package/docs/_partials/_navlistitem.eta +0 -16
- package/docs/_partials/_target.eta +0 -1
- package/docs/_sample-utils.js +0 -93
- package/docs/_storage.js +0 -33
- package/docs/docs.scss +0 -295
- package/docs/index.eta +0 -16
- package/docs/index.js +0 -0
- package/docs/pages/appbar.eta +0 -114
- package/docs/pages/appbar.js +0 -0
- package/docs/pages/appbar.pug +0 -78
- package/docs/pages/bottomnav.eta +0 -188
- package/docs/pages/bottomnav.js +0 -115
- package/docs/pages/bottomnav.pug +0 -137
- package/docs/pages/button.eta +0 -124
- package/docs/pages/button.js +0 -224
- package/docs/pages/button.pug +0 -121
- package/docs/pages/card.eta +0 -90
- package/docs/pages/card.js +0 -177
- package/docs/pages/card.pug +0 -74
- package/docs/pages/chip.eta +0 -122
- package/docs/pages/chip.js +0 -82
- package/docs/pages/chip.pug +0 -91
- package/docs/pages/color.eta +0 -143
- package/docs/pages/color.js +0 -262
- package/docs/pages/color.pug +0 -121
- package/docs/pages/datatable.eta +0 -323
- package/docs/pages/datatable.js +0 -164
- package/docs/pages/datatable.pug +0 -283
- package/docs/pages/dialog.eta +0 -186
- package/docs/pages/dialog.js +0 -177
- package/docs/pages/dialog.pug +0 -132
- package/docs/pages/dom.eta +0 -26
- package/docs/pages/dom.js +0 -143
- package/docs/pages/dom.pug +0 -22
- package/docs/pages/elevation.eta +0 -35
- package/docs/pages/elevation.js +0 -0
- package/docs/pages/elevation.pug +0 -25
- package/docs/pages/fab.eta +0 -99
- package/docs/pages/fab.js +0 -44
- package/docs/pages/fab.pug +0 -66
- package/docs/pages/grid.eta +0 -135
- package/docs/pages/grid.js +0 -128
- package/docs/pages/grid.pug +0 -95
- package/docs/pages/layout.eta +0 -8
- package/docs/pages/layout.js +0 -0
- package/docs/pages/layout.pug +0 -7
- package/docs/pages/list.eta +0 -465
- package/docs/pages/list.js +0 -9
- package/docs/pages/list.pug +0 -326
- package/docs/pages/menu.eta +0 -276
- package/docs/pages/menu.js +0 -217
- package/docs/pages/menu.pug +0 -205
- package/docs/pages/overlay.eta +0 -69
- package/docs/pages/overlay.js +0 -4
- package/docs/pages/overlay.pug +0 -55
- package/docs/pages/progress.eta +0 -23
- package/docs/pages/progress.js +0 -12
- package/docs/pages/progress.pug +0 -16
- package/docs/pages/ripple.eta +0 -27
- package/docs/pages/ripple.js +0 -4
- package/docs/pages/ripple.pug +0 -21
- package/docs/pages/search.eta +0 -246
- package/docs/pages/search.js +0 -243
- package/docs/pages/search.pug +0 -165
- package/docs/pages/selection.eta +0 -111
- package/docs/pages/selection.js +0 -13
- package/docs/pages/selection.pug +0 -74
- package/docs/pages/slider.eta +0 -23
- package/docs/pages/slider.js +0 -0
- package/docs/pages/slider.pug +0 -17
- package/docs/pages/snackbar.eta +0 -83
- package/docs/pages/snackbar.js +0 -158
- package/docs/pages/snackbar.pug +0 -60
- package/docs/pages/tab.eta +0 -421
- package/docs/pages/tab.js +0 -151
- package/docs/pages/tab.pug +0 -304
- package/docs/pages/textfield.eta +0 -486
- package/docs/pages/textfield.js +0 -254
- package/docs/pages/textfield.pug +0 -360
- package/docs/pages/tooltip.eta +0 -94
- package/docs/pages/tooltip.js +0 -0
- package/docs/pages/tooltip.pug +0 -78
- package/docs/pages/transition.eta +0 -117
- package/docs/pages/transition.js +0 -54
- package/docs/pages/transition.pug +0 -76
- package/docs/pages/type.eta +0 -31
- package/docs/pages/type.js +0 -0
- package/docs/pages/type.pug +0 -29
- package/docs/postrender.js +0 -39
- package/docs/prerender.js +0 -16
- package/docs/pwa/_dialogs.eta +0 -143
- package/docs/pwa/_dialogs.pug +0 -96
- package/docs/pwa/_menus.eta +0 -16
- package/docs/pwa/_menus.pug +0 -11
- package/docs/pwa/pwa-prerender.js +0 -3
- package/docs/pwa/pwa.eta +0 -480
- package/docs/pwa/pwa.js +0 -306
- package/docs/pwa/pwa.pug +0 -325
- package/docs/pwa/pwa.scss +0 -26
- package/docs/spec.scss +0 -26
- package/docs/themes/_component-themes.scss +0 -26
- package/docs/themes/theme-colored-fallbacks.scss +0 -17
- package/docs/themes/theme-colored.scss +0 -17
- package/docs/themes/theme-default-fallbacks.scss +0 -17
- package/docs/themes/theme-default.scss +0 -17
- package/jsconfig.json +0 -12
- package/scripts/deploy-docs.sh +0 -9
- package/templates/index.eta +0 -2
- package/templates/index.pug +0 -3
- package/webpack.config.cjs +0 -257
package/docs/pages/tooltip.eta
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
<% var T = '../../templates/index.eta' %>
|
|
2
|
-
<% layout('../_partials/_header.eta', {page: 'tooltip'}) %>
|
|
3
|
-
<div class="comparison">
|
|
4
|
-
<div class="render">
|
|
5
|
-
<%~ includeFile('../_partials/_androidstatusbar.eta', { surface:'cyan 700', dark:true }) %>
|
|
6
|
-
<div class="mdw-appbar mdw-theme" mdw-surface="cyan 500" mdw-dark>
|
|
7
|
-
<div class="mdw-appbar__action">
|
|
8
|
-
<div class="mdw-appbar__start">
|
|
9
|
-
<div class="mdw-tooltip__wrapper">
|
|
10
|
-
<%~ includeFile(T, { button: { icon:true , class:'material-icons mdw-tooltip__target', text:'menu' }}) %>
|
|
11
|
-
<div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-dark mdw-align="start">Menu</div>
|
|
12
|
-
</div>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="mdw-appbar__title" style="color:white;">Inbox</div>
|
|
15
|
-
<div class="mdw-appbar__end">
|
|
16
|
-
<div class="mdw-tooltip__wrapper">
|
|
17
|
-
<%~ includeFile(T, { button: { icon:true , class:'material-icons mdw-tooltip__target', text:'search' }}) %>
|
|
18
|
-
<div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-dark mdw-align="end">Search</div>
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="content">
|
|
24
|
-
<ul class="mdw-list" mdw-divider>
|
|
25
|
-
<li class="mdw-list__subheader mdw-theme" mdw-ink="medium">Today</li>
|
|
26
|
-
<li class="mdw-list__item">
|
|
27
|
-
<div class="mdw-list__content">
|
|
28
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
29
|
-
<div class="mdw-list__text">
|
|
30
|
-
<div class="mdw-list__text-line">Brunch this weekend?</div>
|
|
31
|
-
<div class="mdw-list__text-line">Ali Connors<span class="mdw-theme" mdw-ink="medium"> — I'll be in your neighborhood doing errands this weekend. Do you want to meet?</span></div>
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
34
|
-
</li>
|
|
35
|
-
<li class="mdw-list__item">
|
|
36
|
-
<div class="mdw-list__content">
|
|
37
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
38
|
-
<div class="mdw-list__text">
|
|
39
|
-
<div class="mdw-list__text-line">Summer BBQ<span class="mdw-theme" mdw-ink="medium"> 4</span></div>
|
|
40
|
-
<div class="mdw-list__text-line">to Alex, Scott, Jennifer<span class="mdw-theme" mdw-ink="medium"> — Wish I could come. but I'm out of town this weekend.</span></div>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</li>
|
|
44
|
-
<li class="mdw-list__item">
|
|
45
|
-
<div class="mdw-list__content">
|
|
46
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
47
|
-
<div class="mdw-list__text">
|
|
48
|
-
<div class="mdw-list__text-line">Oui oui</div>
|
|
49
|
-
<div class="mdw-list__text-line">Sandra Adams<span class="mdw-theme" mdw-ink="medium"> — Do you have Paris recommendations? Have you ever been?</span></div>
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
|
-
</li>
|
|
53
|
-
<li class="mdw-list__item">
|
|
54
|
-
<div class="mdw-list__content">
|
|
55
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
56
|
-
<div class="mdw-list__text">
|
|
57
|
-
<div class="mdw-list__text-line">Birthday gift</div>
|
|
58
|
-
<div class="mdw-list__text-line">Trevor Hansen<span class="mdw-theme" mdw-ink="medium"> — Have any ideas about what we should get Heidi for her birthday?</span></div>
|
|
59
|
-
</div>
|
|
60
|
-
</div>
|
|
61
|
-
</li>
|
|
62
|
-
<li class="mdw-list__item">
|
|
63
|
-
<div class="mdw-list__content">
|
|
64
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
65
|
-
<div class="mdw-list__text">
|
|
66
|
-
<div class="mdw-list__text-line">Recipe to try</div>
|
|
67
|
-
<div class="mdw-list__text-line">Britta Holt<span class="mdw-theme" mdw-ink="medium"> — We should eat this: Grated Squash, Corn, and tomatillo Tacos J</span></div>
|
|
68
|
-
</div>
|
|
69
|
-
</div>
|
|
70
|
-
</li>
|
|
71
|
-
<li class="mdw-list__item">
|
|
72
|
-
<div class="mdw-list__content">
|
|
73
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
74
|
-
<div class="mdw-list__text">
|
|
75
|
-
<div class="mdw-list__text-line">Giants game</div>
|
|
76
|
-
<div class="mdw-list__text-line">David Park<span class="mdw-theme" mdw-ink="medium"> — Any interest in seeing</span></div>
|
|
77
|
-
</div>
|
|
78
|
-
</div>
|
|
79
|
-
</li>
|
|
80
|
-
<li class="mdw-list__item">
|
|
81
|
-
<div class="mdw-list__content">
|
|
82
|
-
<div class="mdw-list__avatar"><i class="material-icons" style="font-size:40px;"></i></div>
|
|
83
|
-
<div class="mdw-list__text">
|
|
84
|
-
<div class="mdw-list__text-line">Montauk weekend</div>
|
|
85
|
-
<div class="mdw-list__text-line">-----</div>
|
|
86
|
-
</div>
|
|
87
|
-
</div>
|
|
88
|
-
</li>
|
|
89
|
-
</ul>
|
|
90
|
-
</div>
|
|
91
|
-
<%~ includeFile('../_partials/_androidnavbar.eta') %>
|
|
92
|
-
</div>
|
|
93
|
-
</div>
|
|
94
|
-
<script src="tooltip.min.js"></script>
|
package/docs/pages/tooltip.js
DELETED
|
File without changes
|
package/docs/pages/tooltip.pug
DELETED
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
include ../_mixins.pug
|
|
2
|
-
|
|
3
|
-
+header("tooltip")
|
|
4
|
-
.comparison
|
|
5
|
-
.render
|
|
6
|
-
+androidstatusbar('cyan 700', 'dark')
|
|
7
|
-
.mdw-appbar.mdw-theme(mdw-surface="cyan 500" mdw-dark)
|
|
8
|
-
.mdw-appbar__action
|
|
9
|
-
.mdw-appbar__start
|
|
10
|
-
.mdw-tooltip__wrapper
|
|
11
|
-
+mdwButton({ icon:true }).mdw-tooltip__target.material-icons menu
|
|
12
|
-
.mdw-tooltip.mdw-theme(mdw-surface="background 700" mdw-dark mdw-align="start") Menu
|
|
13
|
-
.mdw-appbar__title(style="color:white") Inbox
|
|
14
|
-
.mdw-appbar__end
|
|
15
|
-
.mdw-tooltip__wrapper
|
|
16
|
-
+mdwButton({ icon:true }).mdw-tooltip__target.material-icons search
|
|
17
|
-
.mdw-tooltip.mdw-theme(mdw-surface="background 700" mdw-dark mdw-align="end") Search
|
|
18
|
-
.content
|
|
19
|
-
ul.mdw-list(mdw-divider)
|
|
20
|
-
li.mdw-list__subheader.mdw-theme(mdw-ink="medium") Today
|
|
21
|
-
li.mdw-list__item
|
|
22
|
-
.mdw-list__content
|
|
23
|
-
.mdw-list__avatar
|
|
24
|
-
i.material-icons(style="font-size:40px") 
|
|
25
|
-
.mdw-list__text
|
|
26
|
-
.mdw-list__text-line Brunch this weekend?
|
|
27
|
-
.mdw-list__text-line Ali Connors
|
|
28
|
-
span.mdw-theme(mdw-ink="medium") — I'll be in your neighborhood doing errands this weekend. Do you want to meet?
|
|
29
|
-
li.mdw-list__item
|
|
30
|
-
.mdw-list__content
|
|
31
|
-
.mdw-list__avatar
|
|
32
|
-
i.material-icons(style="font-size:40px") 
|
|
33
|
-
.mdw-list__text
|
|
34
|
-
.mdw-list__text-line Summer BBQ
|
|
35
|
-
span.mdw-theme(mdw-ink="medium") 4
|
|
36
|
-
.mdw-list__text-line to Alex, Scott, Jennifer
|
|
37
|
-
span.mdw-theme(mdw-ink="medium") — Wish I could come. but I'm out of town this weekend.
|
|
38
|
-
li.mdw-list__item
|
|
39
|
-
.mdw-list__content
|
|
40
|
-
.mdw-list__avatar
|
|
41
|
-
i.material-icons(style="font-size:40px") 
|
|
42
|
-
.mdw-list__text
|
|
43
|
-
.mdw-list__text-line Oui oui
|
|
44
|
-
.mdw-list__text-line Sandra Adams
|
|
45
|
-
span.mdw-theme(mdw-ink="medium") — Do you have Paris recommendations? Have you ever been?
|
|
46
|
-
li.mdw-list__item
|
|
47
|
-
.mdw-list__content
|
|
48
|
-
.mdw-list__avatar
|
|
49
|
-
i.material-icons(style="font-size:40px") 
|
|
50
|
-
.mdw-list__text
|
|
51
|
-
.mdw-list__text-line Birthday gift
|
|
52
|
-
.mdw-list__text-line Trevor Hansen
|
|
53
|
-
span.mdw-theme(mdw-ink="medium") — Have any ideas about what we should get Heidi for her birthday?
|
|
54
|
-
li.mdw-list__item
|
|
55
|
-
.mdw-list__content
|
|
56
|
-
.mdw-list__avatar
|
|
57
|
-
i.material-icons(style="font-size:40px") 
|
|
58
|
-
.mdw-list__text
|
|
59
|
-
.mdw-list__text-line Recipe to try
|
|
60
|
-
.mdw-list__text-line Britta Holt
|
|
61
|
-
span.mdw-theme(mdw-ink="medium") — We should eat this: Grated Squash, Corn, and tomatillo Tacos J
|
|
62
|
-
li.mdw-list__item
|
|
63
|
-
.mdw-list__content
|
|
64
|
-
.mdw-list__avatar
|
|
65
|
-
i.material-icons(style="font-size:40px") 
|
|
66
|
-
.mdw-list__text
|
|
67
|
-
.mdw-list__text-line Giants game
|
|
68
|
-
.mdw-list__text-line David Park
|
|
69
|
-
span.mdw-theme(mdw-ink="medium") — Any interest in seeing
|
|
70
|
-
li.mdw-list__item
|
|
71
|
-
.mdw-list__content
|
|
72
|
-
.mdw-list__avatar
|
|
73
|
-
i.material-icons(style="font-size:40px") 
|
|
74
|
-
.mdw-list__text
|
|
75
|
-
.mdw-list__text-line Montauk weekend
|
|
76
|
-
.mdw-list__text-line -----
|
|
77
|
-
+androidnavbar
|
|
78
|
-
script(src='tooltip.min.js')
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
<% var T = '../../templates/index.eta' %>
|
|
2
|
-
<% layout('../_partials/_header.eta', {page: 'transition'}) %>
|
|
3
|
-
<div class="mdw-grid" mdw-margin-top mdw-margin-bottom mdw-stretch>
|
|
4
|
-
<div class="mdw-grid__item" mdw-colspan="100%">
|
|
5
|
-
<div class="mdw-grid__content">
|
|
6
|
-
<div class="display-flex" flex-align-items="center">
|
|
7
|
-
<h5 class="mdw-type">Select two items.</h5>
|
|
8
|
-
</div>
|
|
9
|
-
</div>
|
|
10
|
-
</div>
|
|
11
|
-
<div class="mdw-grid__item" mdw-colspan="25%">
|
|
12
|
-
<div class="mdw-grid__content">
|
|
13
|
-
<div class="display-flex flex-column">
|
|
14
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="white" mdw-light>
|
|
15
|
-
<div class="demo-core-content">Small</div>
|
|
16
|
-
</div>
|
|
17
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="black" mdw-dark>
|
|
18
|
-
<div class="demo-core-content">Small</div>
|
|
19
|
-
</div>
|
|
20
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 500" mdw-dark>
|
|
21
|
-
<div class="demo-core-content">Small</div>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="secondary 500" mdw-dark>
|
|
24
|
-
<div class="demo-core-content">Small</div>
|
|
25
|
-
</div>
|
|
26
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 500" mdw-dark>
|
|
27
|
-
<div class="demo-core-content">Small</div>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
</div>
|
|
32
|
-
<div class="mdw-grid__item" mdw-colspan="50%">
|
|
33
|
-
<div class="mdw-grid__content">
|
|
34
|
-
<div class="display-flex flex-column">
|
|
35
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="white" mdw-light>
|
|
36
|
-
<div class="demo-core-content">Medium</div>
|
|
37
|
-
</div>
|
|
38
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="black" mdw-dark>
|
|
39
|
-
<div class="demo-core-content">Medium</div>
|
|
40
|
-
</div>
|
|
41
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 500" mdw-dark>
|
|
42
|
-
<div class="demo-core-content">Medium</div>
|
|
43
|
-
</div>
|
|
44
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="secondary 500" mdw-dark>
|
|
45
|
-
<div class="demo-core-content">Medium</div>
|
|
46
|
-
</div>
|
|
47
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 500" mdw-dark>
|
|
48
|
-
<div class="demo-core-content">Medium</div>
|
|
49
|
-
</div>
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
|
-
<div class="mdw-grid__item" mdw-colspan="25%">
|
|
54
|
-
<div class="mdw-grid__content">
|
|
55
|
-
<div class="display-flex flex-column" flex-align-items="center">
|
|
56
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="white" mdw-light demo-round>
|
|
57
|
-
<div class="demo-core-content">Round</div>
|
|
58
|
-
</div>
|
|
59
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="black" mdw-dark demo-round>
|
|
60
|
-
<div class="demo-core-content">Round</div>
|
|
61
|
-
</div>
|
|
62
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 500" mdw-dark demo-round>
|
|
63
|
-
<div class="demo-core-content">Round</div>
|
|
64
|
-
</div>
|
|
65
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="secondary 500" mdw-dark demo-round>
|
|
66
|
-
<div class="demo-core-content">Round</div>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 500" mdw-dark demo-round>
|
|
69
|
-
<div class="demo-core-content">Round</div>
|
|
70
|
-
</div>
|
|
71
|
-
</div>
|
|
72
|
-
</div>
|
|
73
|
-
</div>
|
|
74
|
-
<div class="mdw-grid__item" mdw-colspan="25%">
|
|
75
|
-
<div class="mdw-grid__content">
|
|
76
|
-
<div class="display-flex flex-column" flex-align-items="center">
|
|
77
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="white" mdw-light demo-square>
|
|
78
|
-
<div class="demo-core-content">Square</div>
|
|
79
|
-
</div>
|
|
80
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="black" mdw-dark demo-square>
|
|
81
|
-
<div class="demo-core-content">Square</div>
|
|
82
|
-
</div>
|
|
83
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 500" mdw-dark demo-square>
|
|
84
|
-
<div class="demo-core-content">Square</div>
|
|
85
|
-
</div>
|
|
86
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="secondary 500" mdw-dark demo-square>
|
|
87
|
-
<div class="demo-core-content">Square</div>
|
|
88
|
-
</div>
|
|
89
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 500" mdw-dark demo-square>
|
|
90
|
-
<div class="demo-core-content">Square</div>
|
|
91
|
-
</div>
|
|
92
|
-
</div>
|
|
93
|
-
</div>
|
|
94
|
-
</div>
|
|
95
|
-
<div class="mdw-grid__item" mdw-colspan="75%">
|
|
96
|
-
<div class="mdw-grid__content">
|
|
97
|
-
<div class="display-flex flex-column">
|
|
98
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="white" mdw-light>
|
|
99
|
-
<div class="demo-core-content">Wide</div>
|
|
100
|
-
</div>
|
|
101
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="black" mdw-dark>
|
|
102
|
-
<div class="demo-core-content">Wide</div>
|
|
103
|
-
</div>
|
|
104
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 500" mdw-dark>
|
|
105
|
-
<div class="demo-core-content">Wide</div>
|
|
106
|
-
</div>
|
|
107
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="secondary 500" mdw-dark>
|
|
108
|
-
<div class="demo-core-content">Wide</div>
|
|
109
|
-
</div>
|
|
110
|
-
<div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 500" mdw-dark>
|
|
111
|
-
<div class="demo-core-content">Wide</div>
|
|
112
|
-
</div>
|
|
113
|
-
</div>
|
|
114
|
-
</div>
|
|
115
|
-
</div>
|
|
116
|
-
</div>
|
|
117
|
-
<script src="transition.min.js"></script>
|
package/docs/pages/transition.js
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { iterateArrayLike } from '../../core/dom.js';
|
|
2
|
-
import * as Overlay from '../../core/overlay/index.js';
|
|
3
|
-
import * as Ripple from '../../core/ripple/index.js';
|
|
4
|
-
import * as Transition from '../../core/transition/index.js';
|
|
5
|
-
|
|
6
|
-
iterateArrayLike(document.getElementsByClassName('mdw-overlay'), Overlay.attach);
|
|
7
|
-
iterateArrayLike(document.getElementsByClassName('mdw-ripple'), Ripple.attach);
|
|
8
|
-
|
|
9
|
-
/** @type {HTMLElement} */
|
|
10
|
-
let target1;
|
|
11
|
-
/** @type {HTMLElement} */
|
|
12
|
-
let target2;
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* @param {MouseEvent} event
|
|
16
|
-
* @return {void}
|
|
17
|
-
*/
|
|
18
|
-
function onItemClick(event) {
|
|
19
|
-
/** @type {HTMLElement} */
|
|
20
|
-
const target = (event.currentTarget);
|
|
21
|
-
if (target.hasAttribute('mdw-transition-busy')) {
|
|
22
|
-
return;
|
|
23
|
-
}
|
|
24
|
-
if (!target1) {
|
|
25
|
-
target1 = target;
|
|
26
|
-
target1.setAttribute('aria-pressed', 'true');
|
|
27
|
-
return;
|
|
28
|
-
}
|
|
29
|
-
if (target1 === (event.currentTarget)) {
|
|
30
|
-
target1.setAttribute('aria-pressed', 'false');
|
|
31
|
-
target1 = null;
|
|
32
|
-
return;
|
|
33
|
-
}
|
|
34
|
-
if (!target2) {
|
|
35
|
-
target2 = target;
|
|
36
|
-
}
|
|
37
|
-
target2.blur();
|
|
38
|
-
target1.setAttribute('aria-pressed', 'false');
|
|
39
|
-
Transition.transitionElement({
|
|
40
|
-
fromShapeElement: target1,
|
|
41
|
-
toShapeElement: target2,
|
|
42
|
-
fromContentElement: target1.getElementsByClassName('demo-core-content')[0],
|
|
43
|
-
toContentElement: target2.getElementsByClassName('demo-core-content')[0],
|
|
44
|
-
duration: 3000,
|
|
45
|
-
revertFrom: true,
|
|
46
|
-
});
|
|
47
|
-
target1 = null;
|
|
48
|
-
target2 = null;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
iterateArrayLike(
|
|
52
|
-
document.getElementsByClassName('demo-core-item'),
|
|
53
|
-
(item) => item.addEventListener('click', onItemClick),
|
|
54
|
-
);
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
include ../_mixins.pug
|
|
2
|
-
|
|
3
|
-
+header("transition")
|
|
4
|
-
.mdw-grid(mdw-margin-top mdw-margin-bottom mdw-stretch)
|
|
5
|
-
.mdw-grid__item(mdw-colspan="100%")
|
|
6
|
-
.mdw-grid__content
|
|
7
|
-
.display-flex(flex-align-items="center")
|
|
8
|
-
h5.mdw-type Select two items.
|
|
9
|
-
.mdw-grid__item(mdw-colspan="25%")
|
|
10
|
-
.mdw-grid__content
|
|
11
|
-
.display-flex.flex-column
|
|
12
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="white" mdw-light)
|
|
13
|
-
span Small
|
|
14
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="black" mdw-dark)
|
|
15
|
-
span Small
|
|
16
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="primary 500" mdw-dark)
|
|
17
|
-
span Small
|
|
18
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="secondary 500" mdw-dark)
|
|
19
|
-
span Small
|
|
20
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="warn 500" mdw-dark)
|
|
21
|
-
span Small
|
|
22
|
-
.mdw-grid__item(mdw-colspan="50%")
|
|
23
|
-
.mdw-grid__content
|
|
24
|
-
.display-flex.flex-column
|
|
25
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="white" mdw-light)
|
|
26
|
-
span Medium
|
|
27
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="black" mdw-dark)
|
|
28
|
-
span Medium
|
|
29
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="primary 500" mdw-dark)
|
|
30
|
-
span Medium
|
|
31
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="secondary 500" mdw-dark)
|
|
32
|
-
span Medium
|
|
33
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="warn 500" mdw-dark)
|
|
34
|
-
span Medium
|
|
35
|
-
.mdw-grid__item(mdw-colspan="25%")
|
|
36
|
-
.mdw-grid__content
|
|
37
|
-
.display-flex.flex-column(flex-align-items="center")
|
|
38
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="white" mdw-light demo-round)
|
|
39
|
-
span Round
|
|
40
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="black" mdw-dark demo-round)
|
|
41
|
-
span Round
|
|
42
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="primary 500" mdw-dark demo-round)
|
|
43
|
-
span Round
|
|
44
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="secondary 500" mdw-dark demo-round)
|
|
45
|
-
span Round
|
|
46
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="warn 500" mdw-dark demo-round)
|
|
47
|
-
span Round
|
|
48
|
-
.mdw-grid__item(mdw-colspan="25%")
|
|
49
|
-
.mdw-grid__content
|
|
50
|
-
.display-flex.flex-column(flex-align-items="center")
|
|
51
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="white" mdw-light demo-square)
|
|
52
|
-
span Square
|
|
53
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="black" mdw-dark demo-square)
|
|
54
|
-
span Square
|
|
55
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="primary 500" mdw-dark demo-square)
|
|
56
|
-
span Square
|
|
57
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="secondary 500" mdw-dark demo-square)
|
|
58
|
-
span Square
|
|
59
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="warn 500" mdw-dark demo-square)
|
|
60
|
-
span Square
|
|
61
|
-
.mdw-grid__item(mdw-colspan="75%")
|
|
62
|
-
.mdw-grid__content
|
|
63
|
-
.display-flex.flex-column
|
|
64
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="white" mdw-light)
|
|
65
|
-
span Wide
|
|
66
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="black" mdw-dark)
|
|
67
|
-
span Wide
|
|
68
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="primary 500" mdw-dark)
|
|
69
|
-
span Wide
|
|
70
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="secondary 500" mdw-dark)
|
|
71
|
-
span Wide
|
|
72
|
-
.demo-core-item.mdw-elevation.mdw-overlay.mdw-ripple.mdw-theme(mdw-elevation="1" mdw-surface="warn 500" mdw-dark)
|
|
73
|
-
span Wide
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
script(src='transition.min.js')
|
package/docs/pages/type.eta
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
<% layout('../_partials/_header.eta', {page: 'type'}) %>
|
|
2
|
-
<div>
|
|
3
|
-
<div class="content">
|
|
4
|
-
<h1 class="mdw-type">H1 Headline</h1>
|
|
5
|
-
<h2 class="mdw-type">H2 Headline</h2>
|
|
6
|
-
<h3 class="mdw-type">H3 Headline</h3>
|
|
7
|
-
<h4 class="mdw-type">H4 Headline</h4>
|
|
8
|
-
<h5 class="mdw-type">H5 Headline</h5>
|
|
9
|
-
<h6 class="mdw-type">H6 Headline</h6>
|
|
10
|
-
<div class="mdw-type" mdw-style="subtitle">Subtitle 1</div>
|
|
11
|
-
<div class="mdw-type" mdw-style="subtitle-2">Subtitle 2</div>
|
|
12
|
-
<p class="mdw-type">Body 1</p>
|
|
13
|
-
<p class="mdw-type" mdw-style="body-2">Body 2</p>
|
|
14
|
-
<div class="mdw-type" mdw-style="button">Button</div>
|
|
15
|
-
<div class="mdw-type" mdw-style="caption">Caption</div>
|
|
16
|
-
<div class="mdw-type" mdw-style="overline">Overline</div>
|
|
17
|
-
</div>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="comparison type-comparison-3">
|
|
20
|
-
<div class="render">
|
|
21
|
-
<h5 class="mdw-type" mdw-baseline-top="64" mdw-baseline-next="20">Johannes Guttenberg</h5>
|
|
22
|
-
<div class="mdw-type" mdw-style="caption" mdw-baseline-next="36">German Printer</div>
|
|
23
|
-
<p class="mdw-type" mdw-style="body-2" mdw-baseline-next="32">Johannes Gensfleisch zur Laden zum Gutenberg was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe with the printing press.</p>
|
|
24
|
-
<p class="mdw-type" mdw-style="body-2" mdw-baseline-next="20">Born</p>
|
|
25
|
-
<p class="mdw-type" mdw-style="body-2" mdw-baseline-bottom="68">c. 1400, Mainz Germany</p>
|
|
26
|
-
</div>
|
|
27
|
-
<div>
|
|
28
|
-
<div style="margin-top:10px;"></div>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
<script src="type.min.js"></script>
|
package/docs/pages/type.js
DELETED
|
File without changes
|
package/docs/pages/type.pug
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
include ../_mixins.pug
|
|
2
|
-
|
|
3
|
-
+header("type")
|
|
4
|
-
div
|
|
5
|
-
.content
|
|
6
|
-
h1.mdw-type H1 Headline
|
|
7
|
-
h2.mdw-type H2 Headline
|
|
8
|
-
h3.mdw-type H3 Headline
|
|
9
|
-
h4.mdw-type H4 Headline
|
|
10
|
-
h5.mdw-type H5 Headline
|
|
11
|
-
h6.mdw-type H6 Headline
|
|
12
|
-
.mdw-type(mdw-style="subtitle") Subtitle 1
|
|
13
|
-
.mdw-type(mdw-style="subtitle-2") Subtitle 2
|
|
14
|
-
p.mdw-type Body 1
|
|
15
|
-
p.mdw-type(mdw-style="body-2") Body 2
|
|
16
|
-
.mdw-type(mdw-style="button") Button
|
|
17
|
-
.mdw-type(mdw-style="caption") Caption
|
|
18
|
-
.mdw-type(mdw-style="overline") Overline
|
|
19
|
-
|
|
20
|
-
.comparison.type-comparison-3
|
|
21
|
-
.render
|
|
22
|
-
h5.mdw-type(mdw-baseline-top="64" mdw-baseline-next="20") Johannes Guttenberg
|
|
23
|
-
.mdw-type(mdw-style="caption" mdw-baseline-next="36") German Printer
|
|
24
|
-
p.mdw-type(mdw-style="body-2" mdw-baseline-next="32") Johannes Gensfleisch zur Laden zum Gutenberg was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe with the printing press.
|
|
25
|
-
p.mdw-type(mdw-style="body-2" mdw-baseline-next="20") Born
|
|
26
|
-
p.mdw-type(mdw-style="body-2" mdw-baseline-bottom="68") c. 1400, Mainz Germany
|
|
27
|
-
div
|
|
28
|
-
div(style="margin-top:10px")
|
|
29
|
-
script(src='type.min.js')
|
package/docs/postrender.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import * as Button from '../components/button/index.js';
|
|
2
|
-
import * as Layout from '../components/layout/index.js';
|
|
3
|
-
import * as ListContent from '../components/list/content.js';
|
|
4
|
-
import * as List from '../components/list/index.js';
|
|
5
|
-
import { iterateArrayLike } from '../core/dom.js';
|
|
6
|
-
|
|
7
|
-
const navDrawer = document.getElementsByClassName('mdw-layout__navdrawer')[0];
|
|
8
|
-
List.attachAll(navDrawer);
|
|
9
|
-
Layout.attach();
|
|
10
|
-
iterateArrayLike(document.querySelectorAll('.mdw-layout__appbar .mdw-button'), Button.attach);
|
|
11
|
-
|
|
12
|
-
navDrawer.querySelector('[aria-current]').scrollIntoView({
|
|
13
|
-
behavior: 'auto',
|
|
14
|
-
block: 'center',
|
|
15
|
-
inline: 'start',
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
/** @return {void} */
|
|
19
|
-
function clearCurrentPage() {
|
|
20
|
-
iterateArrayLike(navDrawer.querySelectorAll('[aria-current]'), (item) => item.removeAttribute('aria-current'));
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
navDrawer.addEventListener(ListContent.ACTIVATE_EVENT, (event) => {
|
|
24
|
-
/** @type {HTMLElement} */
|
|
25
|
-
const item = (event.target);
|
|
26
|
-
ListContent.setSelected(item, true);
|
|
27
|
-
if (item instanceof HTMLAnchorElement) {
|
|
28
|
-
if (item.hasAttribute('aria-current')) {
|
|
29
|
-
return;
|
|
30
|
-
}
|
|
31
|
-
clearCurrentPage();
|
|
32
|
-
item.setAttribute('aria-current', 'page');
|
|
33
|
-
// Auto close if modal
|
|
34
|
-
if (Layout.isNavDrawerModalShowing()) {
|
|
35
|
-
Layout.hideNavDrawer();
|
|
36
|
-
}
|
|
37
|
-
window.location.href = item.href;
|
|
38
|
-
}
|
|
39
|
-
});
|
package/docs/prerender.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as Document from '../core/document/index.js';
|
|
2
|
-
|
|
3
|
-
import { setupMenuOptions } from './_menuoptions.js';
|
|
4
|
-
|
|
5
|
-
/** @return {void} */
|
|
6
|
-
function onDOMContentLoaded() {
|
|
7
|
-
document.removeEventListener('DOMContentLoaded', onDOMContentLoaded);
|
|
8
|
-
// Apply button states
|
|
9
|
-
setupMenuOptions();
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
// Apply context first
|
|
13
|
-
setupMenuOptions();
|
|
14
|
-
Document.onPrerender();
|
|
15
|
-
|
|
16
|
-
document.addEventListener('DOMContentLoaded', onDOMContentLoaded);
|