@shortfuse/materialdesignweb 0.5.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 -77
- 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 -154
- 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 +54 -49
- 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 -4
- package/.eslintrc.json +0 -204
- package/.stylelintrc.json +0 -645
- package/.vscode/launch.json +0 -31
- package/.vscode/settings.json +0 -3
- package/.vscode/tasks.json +0 -32
- package/CHANGELOG.md +0 -36
- package/CODE_OF_CONDUCT.md +0 -46
- package/adapters/datatable/column.js +0 -176
- package/adapters/datatable/index.js +0 -960
- package/adapters/dom/index.js +0 -586
- package/adapters/list/index.js +0 -69
- package/adapters/search/index.js +0 -495
- package/components/appbar/_spec.scss +0 -165
- package/components/appbar/_theme.scss +0 -0
- package/components/appbar/index.scss +0 -2
- package/components/banner/_spec.scss +0 -83
- 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 -149
- package/components/bottomnav/_theme.scss +0 -0
- package/components/bottomnav/index.js +0 -117
- package/components/bottomnav/index.scss +0 -2
- package/components/bottomnav/item.js +0 -88
- package/components/button/README.md +0 -61
- package/components/button/_spec.scss +0 -162
- package/components/button/_theme.scss +0 -42
- 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 -241
- package/components/card/_theme.scss +0 -0
- package/components/card/index.scss +0 -2
- package/components/chip/_spec.scss +0 -111
- package/components/chip/_theme.scss +0 -105
- package/components/chip/index.js +0 -23
- package/components/chip/index.scss +0 -2
- package/components/chip/item.js +0 -20
- package/components/datatable/_spec.scss +0 -225
- package/components/datatable/_theme.scss +0 -128
- package/components/datatable/cell.js +0 -44
- package/components/datatable/columnheader.js +0 -46
- package/components/datatable/index.js +0 -374
- package/components/datatable/index.scss +0 -2
- package/components/datatable/row.js +0 -48
- package/components/datatable/rowheader.js +0 -18
- package/components/dialog/_spec.scss +0 -203
- package/components/dialog/_theme.scss +0 -7
- package/components/dialog/index.js +0 -601
- package/components/dialog/index.scss +0 -2
- package/components/divider/_spec.scss +0 -11
- 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 -210
- package/components/fab/_theme.scss +0 -0
- package/components/fab/index.js +0 -99
- package/components/fab/index.scss +0 -2
- package/components/grid/_spec.scss +0 -169
- package/components/grid/_theme.scss +0 -0
- package/components/grid/index.scss +0 -2
- package/components/layout/_mixins.scss +0 -11
- package/components/layout/_spec.scss +0 -916
- package/components/layout/_theme.scss +0 -19
- package/components/layout/index.js +0 -454
- package/components/layout/index.scss +0 -2
- package/components/list/_spec.scss +0 -363
- package/components/list/_theme.scss +0 -102
- package/components/list/content.js +0 -106
- package/components/list/index.js +0 -256
- package/components/list/index.scss +0 -2
- package/components/list/item.js +0 -167
- package/components/list/secondary.js +0 -45
- package/components/menu/_spec.scss +0 -329
- package/components/menu/_theme.scss +0 -0
- package/components/menu/index.js +0 -705
- package/components/menu/index.scss +0 -2
- package/components/menu/item.js +0 -231
- package/components/progress/_spec.scss +0 -156
- 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 -376
- package/components/selection/_theme.scss +0 -134
- package/components/selection/index.eta +0 -60
- package/components/selection/index.js +0 -70
- package/components/selection/index.pug +0 -30
- package/components/selection/index.scss +0 -2
- package/components/selection/input.js +0 -54
- package/components/selection/radiogroup.js +0 -40
- package/components/slider/_spec.scss +0 -59
- package/components/slider/_theme.scss +0 -0
- package/components/slider/index.scss +0 -2
- package/components/snackbar/_spec.scss +0 -150
- package/components/snackbar/_theme.scss +0 -0
- package/components/snackbar/index.js +0 -338
- package/components/snackbar/index.scss +0 -2
- package/components/tab/_spec.scss +0 -220
- package/components/tab/_theme.scss +0 -0
- package/components/tab/content.js +0 -210
- package/components/tab/index.js +0 -257
- package/components/tab/index.scss +0 -2
- package/components/tab/item.js +0 -88
- package/components/tab/list.js +0 -196
- package/components/tab/panel.js +0 -54
- package/components/textfield/README.md +0 -179
- package/components/textfield/_spec.scss +0 -763
- package/components/textfield/_theme.scss +0 -264
- package/components/textfield/index.eta +0 -74
- package/components/textfield/index.js +0 -160
- package/components/textfield/index.pug +0 -30
- package/components/textfield/index.scss +0 -2
- package/components/tooltip/_spec.scss +0 -185
- package/components/tooltip/_theme.scss +0 -0
- package/components/tooltip/index.scss +0 -2
- package/components/type/_spec.scss +0 -227
- 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 -78
- package/core/_length.scss +0 -8
- package/core/_motion.scss +0 -31
- package/core/_platform.scss +0 -12
- package/core/_type.scss +0 -128
- package/core/aria/attributes.js +0 -141
- package/core/aria/button.js +0 -49
- package/core/aria/keyboard.js +0 -92
- package/core/aria/rovingtabindex.js +0 -175
- package/core/aria/tab.js +0 -59
- package/core/document/index.js +0 -39
- package/core/overlay/_spec.scss +0 -28
- package/core/overlay/_theme.scss +0 -147
- package/core/overlay/index.js +0 -95
- package/core/overlay/index.scss +0 -2
- package/core/ripple/_spec.scss +0 -196
- package/core/ripple/_theme.scss +0 -20
- package/core/ripple/index.js +0 -286
- package/core/ripple/index.scss +0 -2
- package/core/theme/_aliases.scss +0 -15
- package/core/theme/_config.scss +0 -8
- package/core/theme/_functions.scss +0 -22
- package/core/theme/_palettes.scss +0 -405
- package/core/theme/_spec.scss +0 -0
- package/core/theme/_theme.scss +0 -268
- package/core/theme/index.js +0 -50
- package/core/theme/index.scss +0 -4
- package/core/throttler.js +0 -42
- package/core/transition/index.js +0 -465
- package/docs/_flex.scss +0 -28
- package/docs/_menuoptions.js +0 -183
- package/docs/_partials/_androidnavbar.eta +0 -5
- package/docs/_partials/_androidstatusbar.eta +0 -13
- package/docs/_partials/_appbar.eta +0 -27
- package/docs/_partials/_buttontest.eta +0 -31
- package/docs/_partials/_header.eta +0 -146
- package/docs/_partials/_navlistitem.eta +0 -16
- package/docs/_partials/_target.eta +0 -1
- package/docs/_sample-utils.js +0 -88
- package/docs/_storage.js +0 -33
- package/docs/docs.scss +0 -331
- package/docs/framework.scss +0 -26
- package/docs/index.eta +0 -12
- package/docs/index.js +0 -7
- package/docs/pages/appbar.eta +0 -108
- package/docs/pages/appbar.js +0 -0
- package/docs/pages/bottomnav.eta +0 -188
- package/docs/pages/bottomnav.js +0 -118
- package/docs/pages/button.eta +0 -124
- package/docs/pages/button.js +0 -224
- package/docs/pages/card.eta +0 -90
- package/docs/pages/card.js +0 -175
- package/docs/pages/chip.eta +0 -122
- package/docs/pages/chip.js +0 -80
- package/docs/pages/color.eta +0 -143
- package/docs/pages/color.js +0 -261
- package/docs/pages/datatable.eta +0 -323
- package/docs/pages/datatable.js +0 -160
- package/docs/pages/dialog.eta +0 -184
- package/docs/pages/dialog.js +0 -174
- package/docs/pages/dom.eta +0 -26
- package/docs/pages/dom.js +0 -140
- package/docs/pages/elevation.eta +0 -35
- package/docs/pages/elevation.js +0 -0
- package/docs/pages/fab.eta +0 -99
- package/docs/pages/fab.js +0 -43
- package/docs/pages/grid.eta +0 -135
- package/docs/pages/grid.js +0 -128
- package/docs/pages/layout.eta +0 -8
- package/docs/pages/layout.js +0 -0
- package/docs/pages/list.eta +0 -465
- package/docs/pages/list.js +0 -8
- package/docs/pages/menu.eta +0 -274
- package/docs/pages/menu.js +0 -213
- package/docs/pages/overlay.eta +0 -69
- package/docs/pages/overlay.js +0 -3
- package/docs/pages/progress.eta +0 -23
- package/docs/pages/progress.js +0 -12
- package/docs/pages/ripple.eta +0 -27
- package/docs/pages/ripple.js +0 -3
- package/docs/pages/search.eta +0 -242
- package/docs/pages/search.js +0 -226
- package/docs/pages/selection.eta +0 -107
- package/docs/pages/selection.js +0 -12
- package/docs/pages/slider.eta +0 -23
- package/docs/pages/slider.js +0 -0
- package/docs/pages/snackbar.eta +0 -83
- package/docs/pages/snackbar.js +0 -157
- package/docs/pages/tab.eta +0 -407
- package/docs/pages/tab.js +0 -152
- package/docs/pages/textfield.eta +0 -487
- package/docs/pages/textfield.js +0 -257
- package/docs/pages/tooltip.eta +0 -92
- package/docs/pages/tooltip.js +0 -0
- package/docs/pages/transition.eta +0 -117
- package/docs/pages/transition.js +0 -52
- package/docs/pages/type.eta +0 -31
- package/docs/pages/type.js +0 -0
- package/docs/postrender.js +0 -41
- package/docs/prerender.js +0 -16
- package/docs/pwa/_dialogs.eta +0 -143
- package/docs/pwa/_menus.eta +0 -16
- package/docs/pwa/pwa-prerender.js +0 -3
- package/docs/pwa/pwa.eta +0 -478
- package/docs/pwa/pwa.js +0 -298
- package/docs/pwa/pwa.scss +0 -31
- package/docs/themes/theme-colored.scss +0 -15
- package/docs/themes/theme-default.scss +0 -3
- package/index.scss +0 -27
- package/jsconfig.json +0 -16
- package/scripts/deploy-docs.sh +0 -9
- package/templates/index.eta +0 -2
- package/templates/index.pug +0 -3
- package/tsconfig.json +0 -16
- package/webpack.config.js +0 -304
package/.stylelintrc.json
DELETED
|
@@ -1,645 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"browser": true
|
|
4
|
-
},
|
|
5
|
-
"ignorePatterns": ["*.min.js"],
|
|
6
|
-
"settings": {
|
|
7
|
-
"html/html-extensions": [
|
|
8
|
-
".html",
|
|
9
|
-
".eta"
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
"extends": [
|
|
13
|
-
"stylelint-config-recommended-scss",
|
|
14
|
-
"stylelint-config-sass-guidelines"
|
|
15
|
-
],
|
|
16
|
-
"ignoreFiles": "test/**",
|
|
17
|
-
"plugins": [
|
|
18
|
-
"stylelint-scss",
|
|
19
|
-
"stylelint-use-logical-spec",
|
|
20
|
-
"stylelint-no-unsupported-browser-features"
|
|
21
|
-
],
|
|
22
|
-
"customSyntax": "postcss-scss",
|
|
23
|
-
"rules": {
|
|
24
|
-
"plugin/no-unsupported-browser-features": [ true, {
|
|
25
|
-
"ignore": ["css-appearance", "overscroll-behavior"]
|
|
26
|
-
}],
|
|
27
|
-
"liberty/use-logical-spec": [
|
|
28
|
-
"always"
|
|
29
|
-
],
|
|
30
|
-
"max-nesting-depth": null,
|
|
31
|
-
"declaration-property-value-disallowed-list": null,
|
|
32
|
-
"selector-no-vendor-prefix": null,
|
|
33
|
-
"property-no-vendor-prefix": null,
|
|
34
|
-
"value-no-vendor-prefix": null,
|
|
35
|
-
"selector-no-qualifying-type": null,
|
|
36
|
-
"number-no-trailing-zeros": null,
|
|
37
|
-
"string-quotes": null,
|
|
38
|
-
"scss/at-import-partial-extension-blacklist": null,
|
|
39
|
-
"scss/selector-no-redundant-nesting-selector": null,
|
|
40
|
-
"font-family-no-missing-generic-family-keyword": null,
|
|
41
|
-
"color-hex-length": null,
|
|
42
|
-
"color-hex-case": null,
|
|
43
|
-
"selector-nested-pattern": "^(\\s+|((:root|&|[a-z0-9A-Z._-])(:not\\([^\\)]*\\))*(\\[[^\\]]*\\])*([^\\s>~+])*)|&::?|[&+~>])*$",
|
|
44
|
-
"no-empty-source": null,
|
|
45
|
-
"block-no-empty": true,
|
|
46
|
-
"no-extra-semicolons": true,
|
|
47
|
-
"rule-empty-line-before": [
|
|
48
|
-
"always",
|
|
49
|
-
{
|
|
50
|
-
"except": [
|
|
51
|
-
"first-nested"
|
|
52
|
-
],
|
|
53
|
-
"ignore": [
|
|
54
|
-
"after-comment"
|
|
55
|
-
]
|
|
56
|
-
}
|
|
57
|
-
],
|
|
58
|
-
"no-eol-whitespace": true,
|
|
59
|
-
"shorthand-property-no-redundant-values": null,
|
|
60
|
-
"selector-max-universal": 0,
|
|
61
|
-
"selector-attribute-brackets-space-inside": "never",
|
|
62
|
-
"selector-attribute-operator-space-after": "never",
|
|
63
|
-
"selector-attribute-operator-space-before": "never",
|
|
64
|
-
"selector-attribute-quotes": "always",
|
|
65
|
-
"selector-combinator-space-after": "always",
|
|
66
|
-
"selector-combinator-space-before": "always",
|
|
67
|
-
"selector-descendant-combinator-no-non-space": true,
|
|
68
|
-
"selector-pseudo-element-case": "lower",
|
|
69
|
-
"selector-pseudo-class-parentheses-space-inside": "never",
|
|
70
|
-
"selector-type-case": "lower",
|
|
71
|
-
"selector-list-comma-space-before": "never",
|
|
72
|
-
"indentation": 2,
|
|
73
|
-
"max-empty-lines": 1,
|
|
74
|
-
"selector-max-compound-selectors": [
|
|
75
|
-
3,
|
|
76
|
-
{
|
|
77
|
-
"severity": "warning"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"no-descending-specificity": [
|
|
81
|
-
true,
|
|
82
|
-
{
|
|
83
|
-
"severity": "warning"
|
|
84
|
-
}
|
|
85
|
-
],
|
|
86
|
-
"scss/at-import-no-partial-leading-underscore": null,
|
|
87
|
-
"scss/at-function-pattern": "^[a-z][a-zA-Z0-9]*$",
|
|
88
|
-
"scss/at-mixin-pattern": "^[a-z][a-zA-Z0-9]*$",
|
|
89
|
-
"scss/dollar-variable-default": [
|
|
90
|
-
true,
|
|
91
|
-
{
|
|
92
|
-
"ignore": "local"
|
|
93
|
-
}
|
|
94
|
-
],
|
|
95
|
-
"scss/dollar-variable-pattern": "^[a-z][a-zA-Z0-9-]*$",
|
|
96
|
-
"order/order": [
|
|
97
|
-
"dollar-variables",
|
|
98
|
-
"custom-properties",
|
|
99
|
-
"declarations",
|
|
100
|
-
"rules"
|
|
101
|
-
],
|
|
102
|
-
"order/properties-alphabetical-order": null,
|
|
103
|
-
"order/properties-order": [
|
|
104
|
-
{
|
|
105
|
-
"groupName": "content",
|
|
106
|
-
"emptyLineBefore": "always",
|
|
107
|
-
"properties": [
|
|
108
|
-
"content"
|
|
109
|
-
]
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"groupName": "layout",
|
|
113
|
-
"emptyLineBefore": "always",
|
|
114
|
-
"properties": [
|
|
115
|
-
"display",
|
|
116
|
-
"position",
|
|
117
|
-
"top",
|
|
118
|
-
"right",
|
|
119
|
-
"bottom",
|
|
120
|
-
"left",
|
|
121
|
-
"inset",
|
|
122
|
-
"inset-block",
|
|
123
|
-
"inset-block-start",
|
|
124
|
-
"inset-block-end",
|
|
125
|
-
"inset-inline",
|
|
126
|
-
"inset-inline-start",
|
|
127
|
-
"inset-inline-end",
|
|
128
|
-
"align-content",
|
|
129
|
-
"align-items",
|
|
130
|
-
"grid-column-align",
|
|
131
|
-
"grid-row-align",
|
|
132
|
-
"align-self",
|
|
133
|
-
"alignment-adjust",
|
|
134
|
-
"alignment-baseline",
|
|
135
|
-
"baseline-shift",
|
|
136
|
-
"box-decoration-break",
|
|
137
|
-
"box-snap",
|
|
138
|
-
"break-after",
|
|
139
|
-
"break-before",
|
|
140
|
-
"break-inside",
|
|
141
|
-
"chains",
|
|
142
|
-
"clear",
|
|
143
|
-
"column-count",
|
|
144
|
-
"column-fill",
|
|
145
|
-
"column-gap",
|
|
146
|
-
"column-rule",
|
|
147
|
-
"column-rule-color",
|
|
148
|
-
"column-rule-style",
|
|
149
|
-
"column-rule-width",
|
|
150
|
-
"column-span",
|
|
151
|
-
"column-width",
|
|
152
|
-
"columns",
|
|
153
|
-
"flex-direction",
|
|
154
|
-
"flex-flow",
|
|
155
|
-
"flex-wrap",
|
|
156
|
-
"float",
|
|
157
|
-
"float-defer",
|
|
158
|
-
"float-offset",
|
|
159
|
-
"float-reference",
|
|
160
|
-
"flow",
|
|
161
|
-
"flow-from",
|
|
162
|
-
"flow-into",
|
|
163
|
-
"gap",
|
|
164
|
-
"grid",
|
|
165
|
-
"grid-area",
|
|
166
|
-
"grid-auto-columns",
|
|
167
|
-
"grid-auto-flow",
|
|
168
|
-
"grid-auto-rows",
|
|
169
|
-
"grid-column",
|
|
170
|
-
"grid-column-start",
|
|
171
|
-
"grid-column-span",
|
|
172
|
-
"grid-column-end",
|
|
173
|
-
"grid-row",
|
|
174
|
-
"grid-row-start",
|
|
175
|
-
"grid-row-span",
|
|
176
|
-
"grid-row-end",
|
|
177
|
-
"grid-template",
|
|
178
|
-
"grid-template-areas",
|
|
179
|
-
"grid-template-columns",
|
|
180
|
-
"grid-template-rows",
|
|
181
|
-
"justify-content",
|
|
182
|
-
"justify-items",
|
|
183
|
-
"justify-self",
|
|
184
|
-
"order",
|
|
185
|
-
"overflow",
|
|
186
|
-
"overflow-block",
|
|
187
|
-
"overflow-inline",
|
|
188
|
-
"overflow-style",
|
|
189
|
-
"overflow-wrap",
|
|
190
|
-
"overflow-x",
|
|
191
|
-
"overflow-y",
|
|
192
|
-
"overscroll-behavior",
|
|
193
|
-
"place-content",
|
|
194
|
-
"place-items",
|
|
195
|
-
"place-self",
|
|
196
|
-
"row-gap",
|
|
197
|
-
"scroll-behavior",
|
|
198
|
-
"scroll-chaining",
|
|
199
|
-
"scroll-margin",
|
|
200
|
-
"scroll-margin-block",
|
|
201
|
-
"scroll-margin-block-start",
|
|
202
|
-
"scroll-margin-block-end",
|
|
203
|
-
"scroll-margin-bottom",
|
|
204
|
-
"scroll-margin-inline",
|
|
205
|
-
"scroll-margin-inline-start",
|
|
206
|
-
"scroll-margin-inline-end",
|
|
207
|
-
"scroll-margin-left",
|
|
208
|
-
"scroll-margin-right",
|
|
209
|
-
"scroll-margin-top",
|
|
210
|
-
"scroll-padding",
|
|
211
|
-
"scroll-padding-block",
|
|
212
|
-
"scroll-padding-block-start",
|
|
213
|
-
"scroll-padding-block-end",
|
|
214
|
-
"scroll-padding-bottom",
|
|
215
|
-
"scroll-padding-inline",
|
|
216
|
-
"scroll-padding-inline-start",
|
|
217
|
-
"scroll-padding-inline-end",
|
|
218
|
-
"scroll-padding-left",
|
|
219
|
-
"scroll-padding-right",
|
|
220
|
-
"scroll-padding-top",
|
|
221
|
-
"scroll-snap-align",
|
|
222
|
-
"scroll-snap-stop",
|
|
223
|
-
"scroll-snap-type",
|
|
224
|
-
"scrollbar-color",
|
|
225
|
-
"scrollbar-gutter",
|
|
226
|
-
"scrollbar-width",
|
|
227
|
-
"vertical-align"
|
|
228
|
-
]
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"groupName": "table",
|
|
232
|
-
"emptyLineBefore": "always",
|
|
233
|
-
"properties": [
|
|
234
|
-
"border-collapse",
|
|
235
|
-
"border-spacing",
|
|
236
|
-
"caption-side",
|
|
237
|
-
"table-layout"
|
|
238
|
-
]
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"groupName": "box",
|
|
242
|
-
"emptyLineBefore": "always",
|
|
243
|
-
"properties": [
|
|
244
|
-
"box-sizing",
|
|
245
|
-
"min-height",
|
|
246
|
-
"max-height",
|
|
247
|
-
"height",
|
|
248
|
-
"min-block-size",
|
|
249
|
-
"max-block-size",
|
|
250
|
-
"block-size",
|
|
251
|
-
"min-width",
|
|
252
|
-
"max-width",
|
|
253
|
-
"width",
|
|
254
|
-
"min-inline-size",
|
|
255
|
-
"max-inline-size",
|
|
256
|
-
"inline-size",
|
|
257
|
-
"flex",
|
|
258
|
-
"flex-grow",
|
|
259
|
-
"flex-shrink",
|
|
260
|
-
"flex-basis",
|
|
261
|
-
"margin-block",
|
|
262
|
-
"margin-block-start",
|
|
263
|
-
"margin-block-end",
|
|
264
|
-
"margin-break",
|
|
265
|
-
"margin-inline",
|
|
266
|
-
"margin-inline-start",
|
|
267
|
-
"margin-inline-end",
|
|
268
|
-
"margin-trim",
|
|
269
|
-
"margin",
|
|
270
|
-
"margin-top",
|
|
271
|
-
"margin-right",
|
|
272
|
-
"margin-bottom",
|
|
273
|
-
"margin-left",
|
|
274
|
-
"border-block",
|
|
275
|
-
"border-block-start",
|
|
276
|
-
"border-block-end",
|
|
277
|
-
"border-block-style",
|
|
278
|
-
"border-block-start-style",
|
|
279
|
-
"border-block-end-style",
|
|
280
|
-
"border-block-width",
|
|
281
|
-
"border-block-start-width",
|
|
282
|
-
"border-block-end-width",
|
|
283
|
-
"border-fit",
|
|
284
|
-
"border-fit-length",
|
|
285
|
-
"border-fit-width",
|
|
286
|
-
"border-corner-fit",
|
|
287
|
-
"border-top-left-fit-length",
|
|
288
|
-
"border-top-right-fit-length",
|
|
289
|
-
"border-bottom-right-fit-length",
|
|
290
|
-
"border-bottom-left-fit-length",
|
|
291
|
-
"border-top-left-fit-width",
|
|
292
|
-
"border-top-right-fit-width",
|
|
293
|
-
"border-bottom-right-fit-width",
|
|
294
|
-
"border-bottom-left-fit-width",
|
|
295
|
-
"border-top-fit-length",
|
|
296
|
-
"border-right-fit-length",
|
|
297
|
-
"border-bottom-fit-length",
|
|
298
|
-
"border-left-fit-length",
|
|
299
|
-
"border-top-fit-width",
|
|
300
|
-
"border-right-fit-width",
|
|
301
|
-
"border-bottom-fit-width",
|
|
302
|
-
"border-left-fit-width",
|
|
303
|
-
"border-image",
|
|
304
|
-
"border-image-source",
|
|
305
|
-
"border-image-slice",
|
|
306
|
-
"border-image-width",
|
|
307
|
-
"border-image-outset",
|
|
308
|
-
"border-image-repeat",
|
|
309
|
-
"border-image-transform",
|
|
310
|
-
"border-top-left-image",
|
|
311
|
-
"border-top-image",
|
|
312
|
-
"border-top-right-image",
|
|
313
|
-
"border-right-image",
|
|
314
|
-
"border-bottom-right-image",
|
|
315
|
-
"border-bottom-image",
|
|
316
|
-
"border-bottom-left-image",
|
|
317
|
-
"border",
|
|
318
|
-
"border-top",
|
|
319
|
-
"border-right",
|
|
320
|
-
"border-bottom",
|
|
321
|
-
"border-left",
|
|
322
|
-
"border-left-image",
|
|
323
|
-
"border-style",
|
|
324
|
-
"border-top-style",
|
|
325
|
-
"border-right-style",
|
|
326
|
-
"border-bottom-style",
|
|
327
|
-
"border-left-style",
|
|
328
|
-
"border-width",
|
|
329
|
-
"border-top-width",
|
|
330
|
-
"border-right-width",
|
|
331
|
-
"border-bottom-width",
|
|
332
|
-
"border-left-width",
|
|
333
|
-
"border-boundary",
|
|
334
|
-
"border-break",
|
|
335
|
-
"border-corner-image",
|
|
336
|
-
"border-corner-image-transform",
|
|
337
|
-
"border-start-start-radius",
|
|
338
|
-
"border-start-end-radius",
|
|
339
|
-
"border-end-start-radius",
|
|
340
|
-
"border-end-end-radius",
|
|
341
|
-
"border-inline",
|
|
342
|
-
"border-inline-style",
|
|
343
|
-
"border-inline-width",
|
|
344
|
-
"border-inline-start",
|
|
345
|
-
"border-inline-start-style",
|
|
346
|
-
"border-inline-start-width",
|
|
347
|
-
"border-inline-end",
|
|
348
|
-
"border-inline-end-style",
|
|
349
|
-
"border-inline-end-width",
|
|
350
|
-
"padding-block",
|
|
351
|
-
"padding-block-start",
|
|
352
|
-
"padding-block-end",
|
|
353
|
-
"padding-inline",
|
|
354
|
-
"padding-inline-start",
|
|
355
|
-
"padding-inline-end",
|
|
356
|
-
"padding",
|
|
357
|
-
"padding-top",
|
|
358
|
-
"padding-right",
|
|
359
|
-
"padding-bottom",
|
|
360
|
-
"padding-left"
|
|
361
|
-
]
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"groupName": "ui",
|
|
365
|
-
"emptyLineBefore": "always",
|
|
366
|
-
"properties": [
|
|
367
|
-
"appearance",
|
|
368
|
-
"caret",
|
|
369
|
-
"caret-color",
|
|
370
|
-
"caret-shape",
|
|
371
|
-
"cursor",
|
|
372
|
-
"nav-down",
|
|
373
|
-
"nav-left",
|
|
374
|
-
"nav-right",
|
|
375
|
-
"nav-up",
|
|
376
|
-
"outline",
|
|
377
|
-
"outline-color",
|
|
378
|
-
"outline-offset",
|
|
379
|
-
"outline-style",
|
|
380
|
-
"outline-width",
|
|
381
|
-
"pointer-events",
|
|
382
|
-
"resize",
|
|
383
|
-
"tap-highlight-color",
|
|
384
|
-
"user-select"
|
|
385
|
-
]
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"groupName": "animation",
|
|
389
|
-
"emptyLineBefore": "always",
|
|
390
|
-
"properties": [
|
|
391
|
-
"animation",
|
|
392
|
-
"animation-name",
|
|
393
|
-
"animation-duration",
|
|
394
|
-
"animation-timing-function",
|
|
395
|
-
"animation-delay",
|
|
396
|
-
"animation-iteration-count",
|
|
397
|
-
"animation-direction",
|
|
398
|
-
"animation-fill-mode",
|
|
399
|
-
"animation-play-state",
|
|
400
|
-
"offset",
|
|
401
|
-
"offset-after",
|
|
402
|
-
"offset-anchor",
|
|
403
|
-
"offset-before",
|
|
404
|
-
"offset-distance",
|
|
405
|
-
"offset-start",
|
|
406
|
-
"offset-end",
|
|
407
|
-
"offset-path",
|
|
408
|
-
"offset-position",
|
|
409
|
-
"offset-rotate",
|
|
410
|
-
"transition",
|
|
411
|
-
"transition-delay",
|
|
412
|
-
"transition-duration",
|
|
413
|
-
"transition-property",
|
|
414
|
-
"transition-timing-function",
|
|
415
|
-
"will-change"
|
|
416
|
-
]
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"groupName": "layer",
|
|
420
|
-
"emptyLineBefore": "always",
|
|
421
|
-
"properties": [
|
|
422
|
-
"backface-visibility",
|
|
423
|
-
"background-blend-mode",
|
|
424
|
-
"clip",
|
|
425
|
-
"clip-path",
|
|
426
|
-
"clip-rule",
|
|
427
|
-
"filter",
|
|
428
|
-
"isolation",
|
|
429
|
-
"mask",
|
|
430
|
-
"mask-border",
|
|
431
|
-
"mask-border-mode",
|
|
432
|
-
"mask-border-outset",
|
|
433
|
-
"mask-border-repeat",
|
|
434
|
-
"mask-border-slice",
|
|
435
|
-
"mask-border-source",
|
|
436
|
-
"mask-border-width",
|
|
437
|
-
"mask-clip",
|
|
438
|
-
"mask-composite",
|
|
439
|
-
"mask-image",
|
|
440
|
-
"mask-mode",
|
|
441
|
-
"mask-origin",
|
|
442
|
-
"mask-position",
|
|
443
|
-
"mask-repeat",
|
|
444
|
-
"mask-size",
|
|
445
|
-
"mask-type",
|
|
446
|
-
"mix-blend-mode",
|
|
447
|
-
"opacity",
|
|
448
|
-
"perspective",
|
|
449
|
-
"perspective-origin",
|
|
450
|
-
"transform",
|
|
451
|
-
"transform-box",
|
|
452
|
-
"transform-origin",
|
|
453
|
-
"transform-style",
|
|
454
|
-
"visibility",
|
|
455
|
-
"z-index"
|
|
456
|
-
]
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
"groupName": "appearance",
|
|
460
|
-
"emptyLineBefore": "always",
|
|
461
|
-
"properties": [
|
|
462
|
-
"background",
|
|
463
|
-
"background-clip",
|
|
464
|
-
"background-color",
|
|
465
|
-
"background-image",
|
|
466
|
-
"background-origin",
|
|
467
|
-
"background-position",
|
|
468
|
-
"background-repeat",
|
|
469
|
-
"background-size",
|
|
470
|
-
"background-attachment",
|
|
471
|
-
"border-block-color",
|
|
472
|
-
"border-block-start-color",
|
|
473
|
-
"border-block-end-color",
|
|
474
|
-
"border-color",
|
|
475
|
-
"border-top-color",
|
|
476
|
-
"border-right-color",
|
|
477
|
-
"border-bottom-color",
|
|
478
|
-
"border-left-color",
|
|
479
|
-
"border-inline-color",
|
|
480
|
-
"border-inline-start-color",
|
|
481
|
-
"border-inline-end-color",
|
|
482
|
-
"border-radius",
|
|
483
|
-
"border-top-left-radius",
|
|
484
|
-
"border-top-right-radius",
|
|
485
|
-
"border-bottom-right-radius",
|
|
486
|
-
"border-bottom-left-radius",
|
|
487
|
-
"box-shadow",
|
|
488
|
-
"color",
|
|
489
|
-
"color-adjust",
|
|
490
|
-
"color-interpolation-filters",
|
|
491
|
-
"text-decoration-color",
|
|
492
|
-
"text-emphasis-color",
|
|
493
|
-
"text-shadow"
|
|
494
|
-
]
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"groupName": "text",
|
|
498
|
-
"emptyLineBefore": "always",
|
|
499
|
-
"properties": [
|
|
500
|
-
"direction",
|
|
501
|
-
"font",
|
|
502
|
-
"font-style",
|
|
503
|
-
"font-weight",
|
|
504
|
-
"font-size",
|
|
505
|
-
"line-height",
|
|
506
|
-
"font-family",
|
|
507
|
-
"font-feature-settings",
|
|
508
|
-
"font-kerning",
|
|
509
|
-
"font-language-override",
|
|
510
|
-
"font-max-size",
|
|
511
|
-
"font-min-size",
|
|
512
|
-
"font-optical-sizing",
|
|
513
|
-
"font-palette",
|
|
514
|
-
"font-size-adjust",
|
|
515
|
-
"font-stretch",
|
|
516
|
-
"font-synthesis",
|
|
517
|
-
"font-synthesis-small-caps",
|
|
518
|
-
"font-synthesis-style",
|
|
519
|
-
"font-synthesis-weight",
|
|
520
|
-
"font-variant",
|
|
521
|
-
"font-variant-alternates",
|
|
522
|
-
"font-variant-caps",
|
|
523
|
-
"font-variant-east-asian",
|
|
524
|
-
"font-variant-emoji",
|
|
525
|
-
"font-variant-ligatures",
|
|
526
|
-
"font-variant-numeric",
|
|
527
|
-
"font-variant-position",
|
|
528
|
-
"font-variation-settings",
|
|
529
|
-
"glyph-orientation-vertical",
|
|
530
|
-
"hanging-punctuation",
|
|
531
|
-
"hyphenate-character",
|
|
532
|
-
"hyphenate-limit-chars",
|
|
533
|
-
"hyphenate-limit-last",
|
|
534
|
-
"hyphenate-limit-lines",
|
|
535
|
-
"hyphenate-limit-zone",
|
|
536
|
-
"hyphens",
|
|
537
|
-
"initial-letters",
|
|
538
|
-
"initial-letters-align",
|
|
539
|
-
"initial-letters-wrap",
|
|
540
|
-
"letter-spacing",
|
|
541
|
-
"line-break",
|
|
542
|
-
"line-height-step",
|
|
543
|
-
"line-padding",
|
|
544
|
-
"max-lines",
|
|
545
|
-
"tab-size",
|
|
546
|
-
"text-align",
|
|
547
|
-
"text-align-all",
|
|
548
|
-
"text-align-last",
|
|
549
|
-
"text-combine-upright",
|
|
550
|
-
"text-decoration",
|
|
551
|
-
"text-decoration-line",
|
|
552
|
-
"text-decoration-skip",
|
|
553
|
-
"text-decoration-skip-ink",
|
|
554
|
-
"text-decoration-style",
|
|
555
|
-
"text-decoration-width",
|
|
556
|
-
"text-emphasis",
|
|
557
|
-
"text-emphasis-position",
|
|
558
|
-
"text-emphasis-skip",
|
|
559
|
-
"text-emphasis-style",
|
|
560
|
-
"text-group-align",
|
|
561
|
-
"text-height",
|
|
562
|
-
"text-indent",
|
|
563
|
-
"text-justify",
|
|
564
|
-
"text-orientation",
|
|
565
|
-
"text-overflow",
|
|
566
|
-
"text-space-collapse",
|
|
567
|
-
"text-space-trim",
|
|
568
|
-
"text-spacing",
|
|
569
|
-
"text-transform",
|
|
570
|
-
"text-underline-offset",
|
|
571
|
-
"text-underline-position",
|
|
572
|
-
"text-wrap",
|
|
573
|
-
"unicode-bidi",
|
|
574
|
-
"white-space",
|
|
575
|
-
"word-break",
|
|
576
|
-
"word-spacing",
|
|
577
|
-
"word-wrap",
|
|
578
|
-
"wrap-after",
|
|
579
|
-
"wrap-before",
|
|
580
|
-
"wrap-flow",
|
|
581
|
-
"wrap-inside",
|
|
582
|
-
"wrap-through",
|
|
583
|
-
"writing-mode"
|
|
584
|
-
]
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
"groupName": "svg",
|
|
588
|
-
"emptyLineBefore": "always",
|
|
589
|
-
"properties": [
|
|
590
|
-
"fill",
|
|
591
|
-
"fill-break",
|
|
592
|
-
"fill-color",
|
|
593
|
-
"fill-image",
|
|
594
|
-
"fill-opacity",
|
|
595
|
-
"fill-origin",
|
|
596
|
-
"fill-position",
|
|
597
|
-
"fill-repeat",
|
|
598
|
-
"fill-rule",
|
|
599
|
-
"fill-size",
|
|
600
|
-
"stroke",
|
|
601
|
-
"stroke-align",
|
|
602
|
-
"stroke-alignment",
|
|
603
|
-
"stroke-break",
|
|
604
|
-
"stroke-color",
|
|
605
|
-
"stroke-dash-corner",
|
|
606
|
-
"stroke-dash-justify",
|
|
607
|
-
"stroke-dashadjust",
|
|
608
|
-
"stroke-dasharray",
|
|
609
|
-
"stroke-dashcorner",
|
|
610
|
-
"stroke-dashoffset",
|
|
611
|
-
"stroke-image",
|
|
612
|
-
"stroke-linecap",
|
|
613
|
-
"stroke-linejoin",
|
|
614
|
-
"stroke-miterlimit",
|
|
615
|
-
"stroke-opacity",
|
|
616
|
-
"stroke-origin",
|
|
617
|
-
"stroke-position",
|
|
618
|
-
"stroke-repeat",
|
|
619
|
-
"stroke-size",
|
|
620
|
-
"stroke-width"
|
|
621
|
-
]
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"groupName": "image",
|
|
625
|
-
"emptyLineBefore": "always",
|
|
626
|
-
"properties": [
|
|
627
|
-
"image-orientation",
|
|
628
|
-
"image-resolution",
|
|
629
|
-
"object-fit",
|
|
630
|
-
"object-position"
|
|
631
|
-
]
|
|
632
|
-
}
|
|
633
|
-
]
|
|
634
|
-
},
|
|
635
|
-
"overrides": [
|
|
636
|
-
{
|
|
637
|
-
"files": [
|
|
638
|
-
"**/*.scss"
|
|
639
|
-
],
|
|
640
|
-
"rules": {
|
|
641
|
-
"selector-class-pattern": "^mdw-[a-z]+(__[a-z-]+)*$"
|
|
642
|
-
}
|
|
643
|
-
}
|
|
644
|
-
]
|
|
645
|
-
}
|
package/.vscode/launch.json
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "0.2.0",
|
|
3
|
-
"configurations": [{
|
|
4
|
-
"name": "Chrome Docs Debug",
|
|
5
|
-
"type": "chrome",
|
|
6
|
-
"request": "launch",
|
|
7
|
-
"preLaunchTask": "npm: start:docs",
|
|
8
|
-
"url": "http://localhost:8080/",
|
|
9
|
-
"webRoot": "${workspaceFolder}/docs",
|
|
10
|
-
"sourceMapPathOverrides": {
|
|
11
|
-
"webpack:///*": "${webRoot}/*",
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"name": "Chrome Docs Debug (WSL)",
|
|
16
|
-
"type": "chrome",
|
|
17
|
-
"request": "launch",
|
|
18
|
-
"preLaunchTask": "npm: start:docs",
|
|
19
|
-
"url": "http://localhost:8080/",
|
|
20
|
-
"runtimeExecutable": "/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe",
|
|
21
|
-
"runtimeArgs": [
|
|
22
|
-
"--remote-debugging-port=9222",
|
|
23
|
-
"--user-data-dir=remote-profile"
|
|
24
|
-
],
|
|
25
|
-
"webRoot": "${workspaceFolder}/docs",
|
|
26
|
-
"sourceMapPathOverrides": {
|
|
27
|
-
"webpack:///*": "${webRoot}/*",
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
]
|
|
31
|
-
}
|
package/.vscode/settings.json
DELETED