@wordpress/block-editor 11.5.0 → 11.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/CHANGELOG.md +6 -0
- package/README.md +4 -0
- package/build/components/block-list/block-html.js +1 -3
- package/build/components/block-list/block-html.js.map +1 -1
- package/build/components/block-list/block-invalid-warning.js +63 -80
- package/build/components/block-list/block-invalid-warning.js.map +1 -1
- package/build/components/block-preview/auto.js +6 -23
- package/build/components/block-preview/auto.js.map +1 -1
- package/build/components/block-settings-menu-controls/index.js +1 -1
- package/build/components/block-settings-menu-controls/index.js.map +1 -1
- package/build/components/block-switcher/block-transformations-menu.native.js +1 -0
- package/build/components/block-switcher/block-transformations-menu.native.js.map +1 -1
- package/build/components/convert-to-group-buttons/use-convert-to-group-button-props.js +6 -3
- package/build/components/convert-to-group-buttons/use-convert-to-group-button-props.js.map +1 -1
- package/build/components/editor-styles/index.js +20 -2
- package/build/components/editor-styles/index.js.map +1 -1
- package/build/components/global-styles/border-panel.js +306 -0
- package/build/components/global-styles/border-panel.js.map +1 -0
- package/build/components/global-styles/color-panel.js +583 -0
- package/build/components/global-styles/color-panel.js.map +1 -0
- package/build/components/global-styles/dimensions-panel.js +8 -30
- package/build/components/global-styles/dimensions-panel.js.map +1 -1
- package/build/components/global-styles/get-block-css-selector.js +129 -0
- package/build/components/global-styles/get-block-css-selector.js.map +1 -0
- package/build/components/global-styles/hooks.js +109 -3
- package/build/components/global-styles/hooks.js.map +1 -1
- package/build/components/global-styles/index.js +36 -0
- package/build/components/global-styles/index.js.map +1 -1
- package/build/components/global-styles/typography-panel.js +66 -45
- package/build/components/global-styles/typography-panel.js.map +1 -1
- package/build/components/global-styles/use-global-styles-output.js +180 -99
- package/build/components/global-styles/use-global-styles-output.js.map +1 -1
- package/build/components/global-styles/utils.js +2 -1
- package/build/components/global-styles/utils.js.map +1 -1
- package/build/components/image-size-control/index.js +8 -5
- package/build/components/image-size-control/index.js.map +1 -1
- package/build/components/inserter/index.js +29 -17
- package/build/components/inserter/index.js.map +1 -1
- package/build/components/inserter/menu.js +1 -1
- package/build/components/inserter/menu.js.map +1 -1
- package/build/components/inserter/quick-inserter.js +4 -2
- package/build/components/inserter/quick-inserter.js.map +1 -1
- package/build/components/inserter/search-results.js +10 -3
- package/build/components/inserter/search-results.js.map +1 -1
- package/build/components/inserter/tabs.js +1 -1
- package/build/components/inserter/tabs.js.map +1 -1
- package/build/components/inspector-controls-tabs/position-controls-panel.js +43 -7
- package/build/components/inspector-controls-tabs/position-controls-panel.js.map +1 -1
- package/build/components/line-height-control/index.js +15 -1
- package/build/components/line-height-control/index.js.map +1 -1
- package/build/components/link-control/index.js +1 -1
- package/build/components/link-control/index.js.map +1 -1
- package/build/components/link-control/search-item.js +5 -2
- package/build/components/link-control/search-item.js.map +1 -1
- package/build/components/list-view/appender.js +105 -0
- package/build/components/list-view/appender.js.map +1 -0
- package/build/components/list-view/block.js +5 -5
- package/build/components/list-view/block.js.map +1 -1
- package/build/components/list-view/branch.js +25 -5
- package/build/components/list-view/branch.js.map +1 -1
- package/build/components/list-view/index.js +37 -13
- package/build/components/list-view/index.js.map +1 -1
- package/build/components/list-view/use-block-selection.js +1 -2
- package/build/components/list-view/use-block-selection.js.map +1 -1
- package/build/components/media-replace-flow/index.js +13 -4
- package/build/components/media-replace-flow/index.js.map +1 -1
- package/build/components/off-canvas-editor/appender.js +28 -3
- package/build/components/off-canvas-editor/appender.js.map +1 -1
- package/build/components/off-canvas-editor/branch.js +5 -3
- package/build/components/off-canvas-editor/branch.js.map +1 -1
- package/build/components/off-canvas-editor/index.js +9 -7
- package/build/components/off-canvas-editor/index.js.map +1 -1
- package/build/components/off-canvas-editor/link-ui.js +0 -1
- package/build/components/off-canvas-editor/link-ui.js.map +1 -1
- package/build/components/provider/use-block-sync.js +17 -3
- package/build/components/provider/use-block-sync.js.map +1 -1
- package/build/components/rich-text/format-edit.js +2 -30
- package/build/components/rich-text/format-edit.js.map +1 -1
- package/build/components/rich-text/format-toolbar-container.js +0 -3
- package/build/components/rich-text/format-toolbar-container.js.map +1 -1
- package/build/components/writing-flow/use-input.js +4 -8
- package/build/components/writing-flow/use-input.js.map +1 -1
- package/build/hooks/border.js +90 -240
- package/build/hooks/border.js.map +1 -1
- package/build/hooks/color.js +92 -229
- package/build/hooks/color.js.map +1 -1
- package/build/hooks/content-lock-ui.js +4 -2
- package/build/hooks/content-lock-ui.js.map +1 -1
- package/build/hooks/{color-panel.js → contrast-checker.js} +11 -49
- package/build/hooks/contrast-checker.js.map +1 -0
- package/build/hooks/custom-class-name.js +4 -4
- package/build/hooks/custom-class-name.js.map +1 -1
- package/build/hooks/custom-class-name.native.js +3 -4
- package/build/hooks/custom-class-name.native.js.map +1 -1
- package/build/hooks/dimensions.js +0 -1
- package/build/hooks/dimensions.js.map +1 -1
- package/build/hooks/duotone.js +3 -1
- package/build/hooks/duotone.js.map +1 -1
- package/build/hooks/layout.js +19 -22
- package/build/hooks/layout.js.map +1 -1
- package/build/hooks/position.js +2 -2
- package/build/hooks/position.js.map +1 -1
- package/build/hooks/style.js +23 -26
- package/build/hooks/style.js.map +1 -1
- package/build/hooks/supports.js +7 -1
- package/build/hooks/supports.js.map +1 -1
- package/build/hooks/typography.js +2 -2
- package/build/hooks/typography.js.map +1 -1
- package/build/hooks/utils.js +50 -75
- package/build/hooks/utils.js.map +1 -1
- package/build/layouts/constrained.js +6 -2
- package/build/layouts/constrained.js.map +1 -1
- package/build/layouts/grid.js +165 -0
- package/build/layouts/grid.js.map +1 -0
- package/build/layouts/index.js +3 -1
- package/build/layouts/index.js.map +1 -1
- package/build/private-apis.js +7 -1
- package/build/private-apis.js.map +1 -1
- package/build/store/actions.js +10 -8
- package/build/store/actions.js.map +1 -1
- package/build/store/selectors.js +19 -3
- package/build/store/selectors.js.map +1 -1
- package/build/utils/object.js +76 -0
- package/build/utils/object.js.map +1 -0
- package/build/utils/parse-css-unit-to-px.js +15 -9
- package/build/utils/parse-css-unit-to-px.js.map +1 -1
- package/build-module/components/block-list/block-html.js +1 -3
- package/build-module/components/block-list/block-html.js.map +1 -1
- package/build-module/components/block-list/block-invalid-warning.js +66 -78
- package/build-module/components/block-list/block-invalid-warning.js.map +1 -1
- package/build-module/components/block-preview/auto.js +6 -22
- package/build-module/components/block-preview/auto.js.map +1 -1
- package/build-module/components/block-settings-menu-controls/index.js +1 -1
- package/build-module/components/block-settings-menu-controls/index.js.map +1 -1
- package/build-module/components/block-switcher/block-transformations-menu.native.js +1 -0
- package/build-module/components/block-switcher/block-transformations-menu.native.js.map +1 -1
- package/build-module/components/convert-to-group-buttons/use-convert-to-group-button-props.js +6 -3
- package/build-module/components/convert-to-group-buttons/use-convert-to-group-button-props.js.map +1 -1
- package/build-module/components/editor-styles/index.js +19 -2
- package/build-module/components/editor-styles/index.js.map +1 -1
- package/build-module/components/global-styles/border-panel.js +291 -0
- package/build-module/components/global-styles/border-panel.js.map +1 -0
- package/build-module/components/global-styles/color-panel.js +554 -0
- package/build-module/components/global-styles/color-panel.js.map +1 -0
- package/build-module/components/global-styles/dimensions-panel.js +7 -30
- package/build-module/components/global-styles/dimensions-panel.js.map +1 -1
- package/build-module/components/global-styles/get-block-css-selector.js +120 -0
- package/build-module/components/global-styles/get-block-css-selector.js.map +1 -0
- package/build-module/components/global-styles/hooks.js +104 -3
- package/build-module/components/global-styles/hooks.js.map +1 -1
- package/build-module/components/global-styles/index.js +3 -0
- package/build-module/components/global-styles/index.js.map +1 -1
- package/build-module/components/global-styles/typography-panel.js +65 -46
- package/build-module/components/global-styles/typography-panel.js.map +1 -1
- package/build-module/components/global-styles/use-global-styles-output.js +181 -100
- package/build-module/components/global-styles/use-global-styles-output.js.map +1 -1
- package/build-module/components/global-styles/utils.js +2 -1
- package/build-module/components/global-styles/utils.js.map +1 -1
- package/build-module/components/image-size-control/index.js +8 -5
- package/build-module/components/image-size-control/index.js.map +1 -1
- package/build-module/components/inserter/index.js +28 -16
- package/build-module/components/inserter/index.js.map +1 -1
- package/build-module/components/inserter/menu.js +1 -1
- package/build-module/components/inserter/menu.js.map +1 -1
- package/build-module/components/inserter/quick-inserter.js +4 -2
- package/build-module/components/inserter/quick-inserter.js.map +1 -1
- package/build-module/components/inserter/search-results.js +10 -3
- package/build-module/components/inserter/search-results.js.map +1 -1
- package/build-module/components/inserter/tabs.js +1 -1
- package/build-module/components/inserter/tabs.js.map +1 -1
- package/build-module/components/inspector-controls-tabs/position-controls-panel.js +42 -7
- package/build-module/components/inspector-controls-tabs/position-controls-panel.js.map +1 -1
- package/build-module/components/line-height-control/index.js +15 -1
- package/build-module/components/line-height-control/index.js.map +1 -1
- package/build-module/components/link-control/index.js +1 -1
- package/build-module/components/link-control/index.js.map +1 -1
- package/build-module/components/link-control/search-item.js +4 -2
- package/build-module/components/link-control/search-item.js.map +1 -1
- package/build-module/components/list-view/appender.js +88 -0
- package/build-module/components/list-view/appender.js.map +1 -0
- package/build-module/components/list-view/block.js +5 -4
- package/build-module/components/list-view/block.js.map +1 -1
- package/build-module/components/list-view/branch.js +22 -5
- package/build-module/components/list-view/branch.js.map +1 -1
- package/build-module/components/list-view/index.js +32 -12
- package/build-module/components/list-view/index.js.map +1 -1
- package/build-module/components/list-view/use-block-selection.js +1 -2
- package/build-module/components/list-view/use-block-selection.js.map +1 -1
- package/build-module/components/media-replace-flow/index.js +12 -4
- package/build-module/components/media-replace-flow/index.js.map +1 -1
- package/build-module/components/off-canvas-editor/appender.js +28 -4
- package/build-module/components/off-canvas-editor/appender.js.map +1 -1
- package/build-module/components/off-canvas-editor/branch.js +5 -3
- package/build-module/components/off-canvas-editor/branch.js.map +1 -1
- package/build-module/components/off-canvas-editor/index.js +9 -7
- package/build-module/components/off-canvas-editor/index.js.map +1 -1
- package/build-module/components/off-canvas-editor/link-ui.js +0 -1
- package/build-module/components/off-canvas-editor/link-ui.js.map +1 -1
- package/build-module/components/provider/use-block-sync.js +17 -3
- package/build-module/components/provider/use-block-sync.js.map +1 -1
- package/build-module/components/rich-text/format-edit.js +3 -31
- package/build-module/components/rich-text/format-edit.js.map +1 -1
- package/build-module/components/rich-text/format-toolbar-container.js +0 -3
- package/build-module/components/rich-text/format-toolbar-container.js.map +1 -1
- package/build-module/components/writing-flow/use-input.js +4 -8
- package/build-module/components/writing-flow/use-input.js.map +1 -1
- package/build-module/hooks/border.js +92 -240
- package/build-module/hooks/border.js.map +1 -1
- package/build-module/hooks/color.js +90 -232
- package/build-module/hooks/color.js.map +1 -1
- package/build-module/hooks/content-lock-ui.js +4 -2
- package/build-module/hooks/content-lock-ui.js.map +1 -1
- package/build-module/hooks/{color-panel.js → contrast-checker.js} +10 -44
- package/build-module/hooks/contrast-checker.js.map +1 -0
- package/build-module/hooks/custom-class-name.js +4 -4
- package/build-module/hooks/custom-class-name.js.map +1 -1
- package/build-module/hooks/custom-class-name.native.js +3 -4
- package/build-module/hooks/custom-class-name.native.js.map +1 -1
- package/build-module/hooks/dimensions.js +0 -1
- package/build-module/hooks/dimensions.js.map +1 -1
- package/build-module/hooks/duotone.js +4 -2
- package/build-module/hooks/duotone.js.map +1 -1
- package/build-module/hooks/layout.js +19 -22
- package/build-module/hooks/layout.js.map +1 -1
- package/build-module/hooks/position.js +3 -3
- package/build-module/hooks/position.js.map +1 -1
- package/build-module/hooks/style.js +23 -26
- package/build-module/hooks/style.js.map +1 -1
- package/build-module/hooks/supports.js +7 -1
- package/build-module/hooks/supports.js.map +1 -1
- package/build-module/hooks/typography.js +2 -2
- package/build-module/hooks/typography.js.map +1 -1
- package/build-module/hooks/utils.js +48 -72
- package/build-module/hooks/utils.js.map +1 -1
- package/build-module/layouts/constrained.js +6 -2
- package/build-module/layouts/constrained.js.map +1 -1
- package/build-module/layouts/grid.js +151 -0
- package/build-module/layouts/grid.js.map +1 -0
- package/build-module/layouts/index.js +2 -1
- package/build-module/layouts/index.js.map +1 -1
- package/build-module/private-apis.js +5 -1
- package/build-module/private-apis.js.map +1 -1
- package/build-module/store/actions.js +10 -8
- package/build-module/store/actions.js.map +1 -1
- package/build-module/store/selectors.js +17 -3
- package/build-module/store/selectors.js.map +1 -1
- package/build-module/utils/object.js +69 -0
- package/build-module/utils/object.js.map +1 -0
- package/build-module/utils/parse-css-unit-to-px.js +15 -9
- package/build-module/utils/parse-css-unit-to-px.js.map +1 -1
- package/build-style/style-rtl.css +32 -12
- package/build-style/style.css +32 -12
- package/package.json +31 -31
- package/src/components/block-draggable/content.scss +1 -1
- package/src/components/block-inspector/style.scss +3 -0
- package/src/components/block-list/block-html.js +1 -1
- package/src/components/block-list/block-invalid-warning.js +72 -64
- package/src/components/block-mover/test/__snapshots__/index.native.js.snap +20 -2
- package/src/components/block-preview/auto.js +2 -17
- package/src/components/block-preview/test/index.js +0 -2
- package/src/components/block-settings-menu-controls/index.js +2 -1
- package/src/components/block-styles/style.scss +2 -2
- package/src/components/block-switcher/block-transformations-menu.native.js +1 -0
- package/src/components/color-palette/test/__snapshots__/control.js.snap +16 -14
- package/src/components/colors-gradients/style.scss +8 -8
- package/src/components/convert-to-group-buttons/use-convert-to-group-button-props.js +48 -38
- package/src/components/editor-styles/index.js +29 -1
- package/src/components/global-styles/border-panel.js +285 -0
- package/src/components/global-styles/color-panel.js +706 -0
- package/src/components/global-styles/dimensions-panel.js +13 -42
- package/src/components/global-styles/get-block-css-selector.js +129 -0
- package/src/components/global-styles/hooks.js +154 -1
- package/src/components/global-styles/index.js +3 -0
- package/src/components/global-styles/test/use-global-styles-output.js +31 -2
- package/src/components/global-styles/typography-panel.js +67 -45
- package/src/components/global-styles/use-global-styles-output.js +176 -93
- package/src/components/global-styles/utils.js +3 -0
- package/src/components/image-size-control/index.js +4 -3
- package/src/components/image-size-control/test/index.js +2 -2
- package/src/components/inner-blocks/README.md +1 -1
- package/src/components/inserter/index.js +30 -11
- package/src/components/inserter/menu.js +0 -1
- package/src/components/inserter/quick-inserter.js +2 -0
- package/src/components/inserter/search-results.js +7 -1
- package/src/components/inserter/style.scss +3 -0
- package/src/components/inserter/tabs.js +1 -9
- package/src/components/inspector-controls-tabs/position-controls-panel.js +40 -9
- package/src/components/line-height-control/index.js +10 -1
- package/src/components/link-control/index.js +1 -1
- package/src/components/link-control/search-item.js +3 -1
- package/src/components/link-control/style.scss +0 -4
- package/src/components/link-control/test/index.js +0 -2
- package/src/components/list-view/appender.js +101 -0
- package/src/components/list-view/block.js +5 -4
- package/src/components/list-view/branch.js +30 -1
- package/src/components/list-view/index.js +43 -10
- package/src/components/list-view/style.scss +19 -0
- package/src/components/list-view/use-block-selection.js +0 -2
- package/src/components/media-replace-flow/index.js +36 -24
- package/src/components/media-replace-flow/style.scss +5 -2
- package/src/components/off-canvas-editor/appender.js +31 -5
- package/src/components/off-canvas-editor/branch.js +3 -1
- package/src/components/off-canvas-editor/index.js +7 -7
- package/src/components/off-canvas-editor/link-ui.js +0 -1
- package/src/components/provider/use-block-sync.js +21 -4
- package/src/components/rich-text/format-edit.js +2 -32
- package/src/components/rich-text/format-toolbar-container.js +1 -7
- package/src/components/url-popover/test/index.js +0 -2
- package/src/components/writing-flow/use-input.js +4 -5
- package/src/hooks/border.js +93 -225
- package/src/hooks/color.js +120 -296
- package/src/hooks/content-lock-ui.js +6 -2
- package/src/hooks/{color-panel.js → contrast-checker.js} +10 -46
- package/src/hooks/custom-class-name.js +4 -4
- package/src/hooks/custom-class-name.native.js +3 -4
- package/src/hooks/dimensions.js +0 -1
- package/src/hooks/duotone.js +8 -5
- package/src/hooks/layout.js +19 -16
- package/src/hooks/position.js +3 -3
- package/src/hooks/style.js +29 -28
- package/src/hooks/supports.js +6 -0
- package/src/hooks/test/style.js +2 -1
- package/src/hooks/test/use-typography-props.js +2 -0
- package/src/hooks/test/utils.js +0 -104
- package/src/hooks/typography.js +2 -1
- package/src/hooks/utils.js +63 -70
- package/src/layouts/constrained.js +23 -17
- package/src/layouts/grid.js +172 -0
- package/src/layouts/index.js +2 -1
- package/src/layouts/test/grid.js +21 -0
- package/src/private-apis.js +4 -0
- package/src/store/actions.js +10 -8
- package/src/store/selectors.js +20 -3
- package/src/utils/object.js +69 -0
- package/src/utils/parse-css-unit-to-px.js +14 -9
- package/src/utils/test/object.js +107 -0
- package/src/utils/test/parse-css-unit-to-px.js +1 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/build/hooks/border-radius.js +0 -100
- package/build/hooks/border-radius.js.map +0 -1
- package/build/hooks/color-panel.js.map +0 -1
- package/build-module/hooks/border-radius.js +0 -84
- package/build-module/hooks/border-radius.js.map +0 -1
- package/build-module/hooks/color-panel.js.map +0 -1
- package/src/hooks/border-radius.js +0 -70
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WordPress dependencies
|
|
3
|
+
*/
|
|
4
|
+
import { __ } from '@wordpress/i18n';
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
BaseControl,
|
|
8
|
+
Flex,
|
|
9
|
+
FlexItem,
|
|
10
|
+
RangeControl,
|
|
11
|
+
__experimentalUnitControl as UnitControl,
|
|
12
|
+
__experimentalParseQuantityAndUnitFromRawValue as parseQuantityAndUnitFromRawValue,
|
|
13
|
+
} from '@wordpress/components';
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Internal dependencies
|
|
17
|
+
*/
|
|
18
|
+
import { appendSelectors, getBlockGapCSS } from './utils';
|
|
19
|
+
import { getGapCSSValue } from '../hooks/gap';
|
|
20
|
+
import { shouldSkipSerialization } from '../hooks/utils';
|
|
21
|
+
|
|
22
|
+
const RANGE_CONTROL_MAX_VALUES = {
|
|
23
|
+
px: 600,
|
|
24
|
+
'%': 100,
|
|
25
|
+
vw: 100,
|
|
26
|
+
vh: 100,
|
|
27
|
+
em: 38,
|
|
28
|
+
rem: 38,
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export default {
|
|
32
|
+
name: 'grid',
|
|
33
|
+
label: __( 'Grid' ),
|
|
34
|
+
inspectorControls: function GridLayoutInspectorControls( {
|
|
35
|
+
layout = {},
|
|
36
|
+
onChange,
|
|
37
|
+
} ) {
|
|
38
|
+
return (
|
|
39
|
+
<GridLayoutMinimumWidthControl
|
|
40
|
+
layout={ layout }
|
|
41
|
+
onChange={ onChange }
|
|
42
|
+
/>
|
|
43
|
+
);
|
|
44
|
+
},
|
|
45
|
+
toolBarControls: function DefaultLayoutToolbarControls() {
|
|
46
|
+
return null;
|
|
47
|
+
},
|
|
48
|
+
getLayoutStyle: function getLayoutStyle( {
|
|
49
|
+
selector,
|
|
50
|
+
layout,
|
|
51
|
+
style,
|
|
52
|
+
blockName,
|
|
53
|
+
hasBlockGapSupport,
|
|
54
|
+
layoutDefinitions,
|
|
55
|
+
} ) {
|
|
56
|
+
const { minimumColumnWidth = '12rem' } = layout;
|
|
57
|
+
|
|
58
|
+
// If a block's block.json skips serialization for spacing or spacing.blockGap,
|
|
59
|
+
// don't apply the user-defined value to the styles.
|
|
60
|
+
const blockGapValue =
|
|
61
|
+
style?.spacing?.blockGap &&
|
|
62
|
+
! shouldSkipSerialization( blockName, 'spacing', 'blockGap' )
|
|
63
|
+
? getGapCSSValue( style?.spacing?.blockGap, '0.5em' )
|
|
64
|
+
: undefined;
|
|
65
|
+
|
|
66
|
+
let output = '';
|
|
67
|
+
const rules = [];
|
|
68
|
+
|
|
69
|
+
if ( minimumColumnWidth ) {
|
|
70
|
+
rules.push(
|
|
71
|
+
`grid-template-columns: repeat(auto-fill, minmax(min(${ minimumColumnWidth }, 100%), 1fr))`
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if ( rules.length ) {
|
|
76
|
+
// Reason to disable: the extra line breaks added by prettier mess with the unit tests.
|
|
77
|
+
// eslint-disable-next-line prettier/prettier
|
|
78
|
+
output = `${ appendSelectors( selector ) } { ${ rules.join(
|
|
79
|
+
'; '
|
|
80
|
+
) }; }`;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Output blockGap styles based on rules contained in layout definitions in theme.json.
|
|
84
|
+
if ( hasBlockGapSupport && blockGapValue ) {
|
|
85
|
+
output += getBlockGapCSS(
|
|
86
|
+
selector,
|
|
87
|
+
layoutDefinitions,
|
|
88
|
+
'grid',
|
|
89
|
+
blockGapValue
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
return output;
|
|
93
|
+
},
|
|
94
|
+
getOrientation() {
|
|
95
|
+
return 'horizontal';
|
|
96
|
+
},
|
|
97
|
+
getAlignments() {
|
|
98
|
+
return [];
|
|
99
|
+
},
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
// Enables setting minimum width of grid items.
|
|
103
|
+
function GridLayoutMinimumWidthControl( { layout, onChange } ) {
|
|
104
|
+
const { minimumColumnWidth: value = '12rem' } = layout;
|
|
105
|
+
const [ quantity, unit ] = parseQuantityAndUnitFromRawValue( value );
|
|
106
|
+
|
|
107
|
+
const handleSliderChange = ( next ) => {
|
|
108
|
+
onChange( {
|
|
109
|
+
...layout,
|
|
110
|
+
minimumColumnWidth: [ next, unit ].join( '' ),
|
|
111
|
+
} );
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
// Mostly copied from HeightControl.
|
|
115
|
+
const handleUnitChange = ( newUnit ) => {
|
|
116
|
+
// Attempt to smooth over differences between currentUnit and newUnit.
|
|
117
|
+
// This should slightly improve the experience of switching between unit types.
|
|
118
|
+
let newValue;
|
|
119
|
+
|
|
120
|
+
if ( [ 'em', 'rem' ].includes( newUnit ) && unit === 'px' ) {
|
|
121
|
+
// Convert pixel value to an approximate of the new unit, assuming a root size of 16px.
|
|
122
|
+
newValue = ( quantity / 16 ).toFixed( 2 ) + newUnit;
|
|
123
|
+
} else if ( [ 'em', 'rem' ].includes( unit ) && newUnit === 'px' ) {
|
|
124
|
+
// Convert to pixel value assuming a root size of 16px.
|
|
125
|
+
newValue = Math.round( quantity * 16 ) + newUnit;
|
|
126
|
+
} else if (
|
|
127
|
+
[ 'vh', 'vw', '%' ].includes( newUnit ) &&
|
|
128
|
+
quantity > 100
|
|
129
|
+
) {
|
|
130
|
+
// When converting to `vh`, `vw`, or `%` units, cap the new value at 100.
|
|
131
|
+
newValue = 100 + newUnit;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
onChange( {
|
|
135
|
+
...layout,
|
|
136
|
+
minimumColumnWidth: newValue,
|
|
137
|
+
} );
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
return (
|
|
141
|
+
<fieldset>
|
|
142
|
+
<BaseControl.VisualLabel as="legend">
|
|
143
|
+
{ __( 'Minimum column width' ) }
|
|
144
|
+
</BaseControl.VisualLabel>
|
|
145
|
+
<Flex gap={ 4 }>
|
|
146
|
+
<FlexItem isBlock>
|
|
147
|
+
<UnitControl
|
|
148
|
+
size={ '__unstable-large' }
|
|
149
|
+
onChange={ ( newValue ) => {
|
|
150
|
+
onChange( {
|
|
151
|
+
...layout,
|
|
152
|
+
minimumColumnWidth: newValue,
|
|
153
|
+
} );
|
|
154
|
+
} }
|
|
155
|
+
onUnitChange={ handleUnitChange }
|
|
156
|
+
value={ value }
|
|
157
|
+
min={ 0 }
|
|
158
|
+
/>
|
|
159
|
+
</FlexItem>
|
|
160
|
+
<FlexItem isBlock>
|
|
161
|
+
<RangeControl
|
|
162
|
+
onChange={ handleSliderChange }
|
|
163
|
+
value={ quantity }
|
|
164
|
+
min={ 0 }
|
|
165
|
+
max={ RANGE_CONTROL_MAX_VALUES[ unit ] || 600 }
|
|
166
|
+
withInputField={ false }
|
|
167
|
+
/>
|
|
168
|
+
</FlexItem>
|
|
169
|
+
</Flex>
|
|
170
|
+
</fieldset>
|
|
171
|
+
);
|
|
172
|
+
}
|
package/src/layouts/index.js
CHANGED
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
import flex from './flex';
|
|
5
5
|
import flow from './flow';
|
|
6
6
|
import constrained from './constrained';
|
|
7
|
+
import grid from './grid';
|
|
7
8
|
|
|
8
|
-
const layoutTypes = [ flow, flex, constrained ];
|
|
9
|
+
const layoutTypes = [ flow, flex, constrained, grid ];
|
|
9
10
|
|
|
10
11
|
/**
|
|
11
12
|
* Retrieves a layout type by name.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Internal dependencies
|
|
3
|
+
*/
|
|
4
|
+
import grid from '../grid';
|
|
5
|
+
|
|
6
|
+
describe( 'getLayoutStyle', () => {
|
|
7
|
+
it( 'should return a single `grid-template-columns` property if no non-default params are provided', () => {
|
|
8
|
+
const expected = `.editor-styles-wrapper .my-container { grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr)); }`;
|
|
9
|
+
|
|
10
|
+
const result = grid.getLayoutStyle( {
|
|
11
|
+
selector: '.my-container',
|
|
12
|
+
layout: {},
|
|
13
|
+
style: {},
|
|
14
|
+
blockName: 'test-block',
|
|
15
|
+
hasBlockGapSupport: false,
|
|
16
|
+
layoutDefinitions: undefined,
|
|
17
|
+
} );
|
|
18
|
+
|
|
19
|
+
expect( result ).toBe( expected );
|
|
20
|
+
} );
|
|
21
|
+
} );
|
package/src/private-apis.js
CHANGED
|
@@ -6,6 +6,8 @@ import { ExperimentalBlockEditorProvider } from './components/provider';
|
|
|
6
6
|
import { lock } from './lock-unlock';
|
|
7
7
|
import OffCanvasEditor from './components/off-canvas-editor';
|
|
8
8
|
import LeafMoreMenu from './components/off-canvas-editor/leaf-more-menu';
|
|
9
|
+
import { ComposedPrivateInserter as PrivateInserter } from './components/inserter';
|
|
10
|
+
import { PrivateListView } from './components/list-view';
|
|
9
11
|
|
|
10
12
|
/**
|
|
11
13
|
* Private @wordpress/block-editor APIs.
|
|
@@ -16,4 +18,6 @@ lock( privateApis, {
|
|
|
16
18
|
ExperimentalBlockEditorProvider,
|
|
17
19
|
LeafMoreMenu,
|
|
18
20
|
OffCanvasEditor,
|
|
21
|
+
PrivateInserter,
|
|
22
|
+
PrivateListView,
|
|
19
23
|
} );
|
package/src/store/actions.js
CHANGED
|
@@ -235,17 +235,17 @@ export function selectBlock( clientId, initialPosition = 0 ) {
|
|
|
235
235
|
* clientId (or optionally, its first parent from bottom to top)
|
|
236
236
|
* should be selected.
|
|
237
237
|
*
|
|
238
|
-
* @param {string} clientId
|
|
239
|
-
* @param {boolean}
|
|
238
|
+
* @param {string} clientId Block client ID.
|
|
239
|
+
* @param {boolean} fallbackToParent If true, select the first parent if there is no previous block.
|
|
240
240
|
*/
|
|
241
241
|
export const selectPreviousBlock =
|
|
242
|
-
( clientId,
|
|
242
|
+
( clientId, fallbackToParent = false ) =>
|
|
243
243
|
( { select, dispatch } ) => {
|
|
244
244
|
const previousBlockClientId =
|
|
245
245
|
select.getPreviousBlockClientId( clientId );
|
|
246
246
|
if ( previousBlockClientId ) {
|
|
247
247
|
dispatch.selectBlock( previousBlockClientId, -1 );
|
|
248
|
-
} else if (
|
|
248
|
+
} else if ( fallbackToParent ) {
|
|
249
249
|
const firstParentClientId = select.getBlockRootClientId( clientId );
|
|
250
250
|
if ( firstParentClientId ) {
|
|
251
251
|
dispatch.selectBlock( firstParentClientId, -1 );
|
|
@@ -1182,8 +1182,11 @@ export const mergeBlocks =
|
|
|
1182
1182
|
* the set of specified client IDs are to be removed.
|
|
1183
1183
|
*
|
|
1184
1184
|
* @param {string|string[]} clientIds Client IDs of blocks to remove.
|
|
1185
|
-
* @param {boolean} selectPrevious True if the previous block
|
|
1186
|
-
*
|
|
1185
|
+
* @param {boolean} selectPrevious True if the previous block
|
|
1186
|
+
* or the immediate parent
|
|
1187
|
+
* (if no previous block exists)
|
|
1188
|
+
* should be selected
|
|
1189
|
+
* when a block is removed.
|
|
1187
1190
|
*/
|
|
1188
1191
|
export const removeBlocks =
|
|
1189
1192
|
( clientIds, selectPrevious = true ) =>
|
|
@@ -1204,8 +1207,7 @@ export const removeBlocks =
|
|
|
1204
1207
|
}
|
|
1205
1208
|
|
|
1206
1209
|
if ( selectPrevious ) {
|
|
1207
|
-
|
|
1208
|
-
dispatch.selectPreviousBlock( clientIds[ 0 ], shouldSelectParent );
|
|
1210
|
+
dispatch.selectPreviousBlock( clientIds[ 0 ], selectPrevious );
|
|
1209
1211
|
}
|
|
1210
1212
|
|
|
1211
1213
|
dispatch( { type: 'REMOVE_BLOCKS', clientIds } );
|
package/src/store/selectors.js
CHANGED
|
@@ -1199,7 +1199,7 @@ export function isBlockSelected( state, clientId ) {
|
|
|
1199
1199
|
* @param {string} clientId Block client ID.
|
|
1200
1200
|
* @param {boolean} deep Perform a deep check.
|
|
1201
1201
|
*
|
|
1202
|
-
* @return {boolean} Whether the block
|
|
1202
|
+
* @return {boolean} Whether the block has an inner block selected
|
|
1203
1203
|
*/
|
|
1204
1204
|
export function hasSelectedInnerBlock( state, clientId, deep = false ) {
|
|
1205
1205
|
return getBlockOrder( state, clientId ).some(
|
|
@@ -1210,6 +1210,23 @@ export function hasSelectedInnerBlock( state, clientId, deep = false ) {
|
|
|
1210
1210
|
);
|
|
1211
1211
|
}
|
|
1212
1212
|
|
|
1213
|
+
/**
|
|
1214
|
+
* Returns true if one of the block's inner blocks is dragged.
|
|
1215
|
+
*
|
|
1216
|
+
* @param {Object} state Editor state.
|
|
1217
|
+
* @param {string} clientId Block client ID.
|
|
1218
|
+
* @param {boolean} deep Perform a deep check.
|
|
1219
|
+
*
|
|
1220
|
+
* @return {boolean} Whether the block has an inner block dragged
|
|
1221
|
+
*/
|
|
1222
|
+
export function hasDraggedInnerBlock( state, clientId, deep = false ) {
|
|
1223
|
+
return getBlockOrder( state, clientId ).some(
|
|
1224
|
+
( innerClientId ) =>
|
|
1225
|
+
isBlockBeingDragged( state, innerClientId ) ||
|
|
1226
|
+
( deep && hasDraggedInnerBlock( state, innerClientId, deep ) )
|
|
1227
|
+
);
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1213
1230
|
/**
|
|
1214
1231
|
* Returns true if the block corresponding to the specified client ID is
|
|
1215
1232
|
* currently selected but isn't the last of the selected blocks. Here "last"
|
|
@@ -2825,12 +2842,12 @@ export function __unstableHasActiveBlockOverlayActive( state, clientId ) {
|
|
|
2825
2842
|
}
|
|
2826
2843
|
|
|
2827
2844
|
export function __unstableIsWithinBlockOverlay( state, clientId ) {
|
|
2828
|
-
let parent = state.blocks.parents
|
|
2845
|
+
let parent = state.blocks.parents.get( clientId );
|
|
2829
2846
|
while ( !! parent ) {
|
|
2830
2847
|
if ( __unstableHasActiveBlockOverlayActive( state, parent ) ) {
|
|
2831
2848
|
return true;
|
|
2832
2849
|
}
|
|
2833
|
-
parent = state.blocks.parents
|
|
2850
|
+
parent = state.blocks.parents.get( parent );
|
|
2834
2851
|
}
|
|
2835
2852
|
return false;
|
|
2836
2853
|
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Converts a path to an array of its fragments.
|
|
3
|
+
* Supports strings, numbers and arrays:
|
|
4
|
+
*
|
|
5
|
+
* 'foo' => [ 'foo' ]
|
|
6
|
+
* 2 => [ '2' ]
|
|
7
|
+
* [ 'foo', 'bar' ] => [ 'foo', 'bar' ]
|
|
8
|
+
*
|
|
9
|
+
* @param {string|number|Array} path Path
|
|
10
|
+
* @return {Array} Normalized path.
|
|
11
|
+
*/
|
|
12
|
+
function normalizePath( path ) {
|
|
13
|
+
if ( Array.isArray( path ) ) {
|
|
14
|
+
return path;
|
|
15
|
+
} else if ( typeof path === 'number' ) {
|
|
16
|
+
return [ path.toString() ];
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return [ path ];
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Clones an object.
|
|
24
|
+
* Non-object values are returned unchanged.
|
|
25
|
+
*
|
|
26
|
+
* @param {*} object Object to clone.
|
|
27
|
+
* @return {*} Cloned object, or original literal non-object value.
|
|
28
|
+
*/
|
|
29
|
+
function cloneObject( object ) {
|
|
30
|
+
if ( typeof object === 'object' ) {
|
|
31
|
+
return {
|
|
32
|
+
...Object.fromEntries(
|
|
33
|
+
Object.entries( object ).map( ( [ key, value ] ) => [
|
|
34
|
+
key,
|
|
35
|
+
cloneObject( value ),
|
|
36
|
+
] )
|
|
37
|
+
),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return object;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Perform an immutable set.
|
|
46
|
+
* Handles nullish initial values.
|
|
47
|
+
* Clones all nested objects in the specified object.
|
|
48
|
+
*
|
|
49
|
+
* @param {Object} object Object to set a value in.
|
|
50
|
+
* @param {number|string|Array} path Path in the object to modify.
|
|
51
|
+
* @param {*} value New value to set.
|
|
52
|
+
* @return {Object} Cloned object with the new value set.
|
|
53
|
+
*/
|
|
54
|
+
export function immutableSet( object, path, value ) {
|
|
55
|
+
const normalizedPath = normalizePath( path );
|
|
56
|
+
const newObject = object ? cloneObject( object ) : {};
|
|
57
|
+
|
|
58
|
+
normalizedPath.reduce( ( acc, key, i ) => {
|
|
59
|
+
if ( acc[ key ] === undefined ) {
|
|
60
|
+
acc[ key ] = {};
|
|
61
|
+
}
|
|
62
|
+
if ( i === normalizedPath.length - 1 ) {
|
|
63
|
+
acc[ key ] = value;
|
|
64
|
+
}
|
|
65
|
+
return acc[ key ];
|
|
66
|
+
}, newObject );
|
|
67
|
+
|
|
68
|
+
return newObject;
|
|
69
|
+
}
|
|
@@ -124,19 +124,24 @@ function evalMathExpression( cssUnit ) {
|
|
|
124
124
|
// The following regex matches numbers that have a following unit
|
|
125
125
|
// E.g. 5.25rem, 1vw
|
|
126
126
|
const cssUnitsBits = cssUnit.match( /\d+\.?\d*[a-zA-Z]+|\.\d+[a-zA-Z]+/g );
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
127
|
+
if ( cssUnitsBits ) {
|
|
128
|
+
for ( const unit of cssUnitsBits ) {
|
|
129
|
+
// Standardize the unit to px and extract the value.
|
|
130
|
+
const parsedUnit = parseUnit( getPxFromCssUnit( unit ) );
|
|
131
|
+
if ( ! parseFloat( parsedUnit.value ) ) {
|
|
132
|
+
errorFound = true;
|
|
133
|
+
// End early since we are dealing with a null value.
|
|
134
|
+
break;
|
|
135
|
+
}
|
|
136
|
+
cssUnit = cssUnit.replace( unit, parsedUnit.value );
|
|
134
137
|
}
|
|
135
|
-
|
|
138
|
+
} else {
|
|
139
|
+
errorFound = true;
|
|
136
140
|
}
|
|
137
141
|
|
|
138
142
|
// For mixed math expressions wrapped within CSS expressions
|
|
139
|
-
|
|
143
|
+
const expressionsMatches = cssUnit.match( /(max|min|clamp)/g );
|
|
144
|
+
if ( ! errorFound && expressionsMatches ) {
|
|
140
145
|
const values = cssUnit.split( ',' );
|
|
141
146
|
for ( const currentValue of values ) {
|
|
142
147
|
// Check for nested calc() and remove them to calculate the value.
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Internal dependencies
|
|
3
|
+
*/
|
|
4
|
+
import { immutableSet } from '../object';
|
|
5
|
+
|
|
6
|
+
describe( 'immutableSet', () => {
|
|
7
|
+
describe( 'handling falsy values properly', () => {
|
|
8
|
+
it( 'should create a new object if `undefined` is passed', () => {
|
|
9
|
+
const result = immutableSet( undefined, 'test', 1 );
|
|
10
|
+
|
|
11
|
+
expect( result ).toEqual( { test: 1 } );
|
|
12
|
+
} );
|
|
13
|
+
|
|
14
|
+
it( 'should create a new object if `null` is passed', () => {
|
|
15
|
+
const result = immutableSet( null, 'test', 1 );
|
|
16
|
+
|
|
17
|
+
expect( result ).toEqual( { test: 1 } );
|
|
18
|
+
} );
|
|
19
|
+
|
|
20
|
+
it( 'should create a new object if `false` is passed', () => {
|
|
21
|
+
const result = immutableSet( false, 'test', 1 );
|
|
22
|
+
|
|
23
|
+
expect( result ).toEqual( { test: 1 } );
|
|
24
|
+
} );
|
|
25
|
+
|
|
26
|
+
it( 'should create a new object if `0` is passed', () => {
|
|
27
|
+
const result = immutableSet( 0, 'test', 1 );
|
|
28
|
+
|
|
29
|
+
expect( result ).toEqual( { test: 1 } );
|
|
30
|
+
} );
|
|
31
|
+
|
|
32
|
+
it( 'should create a new object if an empty string is passed', () => {
|
|
33
|
+
const result = immutableSet( '', 'test', 1 );
|
|
34
|
+
|
|
35
|
+
expect( result ).toEqual( { test: 1 } );
|
|
36
|
+
} );
|
|
37
|
+
|
|
38
|
+
it( 'should create a new object if a NaN is passed', () => {
|
|
39
|
+
const result = immutableSet( NaN, 'test', 1 );
|
|
40
|
+
|
|
41
|
+
expect( result ).toEqual( { test: 1 } );
|
|
42
|
+
} );
|
|
43
|
+
} );
|
|
44
|
+
|
|
45
|
+
describe( 'manages data assignment properly', () => {
|
|
46
|
+
it( 'assigns value properly when it does not exist', () => {
|
|
47
|
+
const result = immutableSet( {}, 'test', 1 );
|
|
48
|
+
|
|
49
|
+
expect( result ).toEqual( { test: 1 } );
|
|
50
|
+
} );
|
|
51
|
+
|
|
52
|
+
it( 'overrides existing values', () => {
|
|
53
|
+
const result = immutableSet( { test: 1 }, 'test', 2 );
|
|
54
|
+
|
|
55
|
+
expect( result ).toEqual( { test: 2 } );
|
|
56
|
+
} );
|
|
57
|
+
|
|
58
|
+
describe( 'with array notation access', () => {
|
|
59
|
+
it( 'assigns values at deeper levels', () => {
|
|
60
|
+
const result = immutableSet( {}, [ 'foo', 'bar', 'baz' ], 5 );
|
|
61
|
+
|
|
62
|
+
expect( result ).toEqual( { foo: { bar: { baz: 5 } } } );
|
|
63
|
+
} );
|
|
64
|
+
|
|
65
|
+
it( 'overrides existing values at deeper levels', () => {
|
|
66
|
+
const result = immutableSet(
|
|
67
|
+
{ foo: { bar: { baz: 1 } } },
|
|
68
|
+
[ 'foo', 'bar', 'baz' ],
|
|
69
|
+
5
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
expect( result ).toEqual( { foo: { bar: { baz: 5 } } } );
|
|
73
|
+
} );
|
|
74
|
+
|
|
75
|
+
it( 'keeps other properties intact', () => {
|
|
76
|
+
const result = immutableSet(
|
|
77
|
+
{ foo: { bar: { baz: 1 } } },
|
|
78
|
+
[ 'foo', 'bar', 'test' ],
|
|
79
|
+
5
|
|
80
|
+
);
|
|
81
|
+
|
|
82
|
+
expect( result ).toEqual( {
|
|
83
|
+
foo: { bar: { baz: 1, test: 5 } },
|
|
84
|
+
} );
|
|
85
|
+
} );
|
|
86
|
+
} );
|
|
87
|
+
} );
|
|
88
|
+
|
|
89
|
+
describe( 'does not mutate the original object', () => {
|
|
90
|
+
it( 'clones the object at the first level', () => {
|
|
91
|
+
const input = {};
|
|
92
|
+
const result = immutableSet( input, 'test', 1 );
|
|
93
|
+
|
|
94
|
+
expect( result ).not.toBe( input );
|
|
95
|
+
} );
|
|
96
|
+
|
|
97
|
+
it( 'clones the object at deeper levels', () => {
|
|
98
|
+
const input = { foo: { bar: { baz: 1 } } };
|
|
99
|
+
const result = immutableSet( input, [ 'foo', 'bar', 'baz' ], 2 );
|
|
100
|
+
|
|
101
|
+
expect( result ).not.toBe( input );
|
|
102
|
+
expect( result.foo ).not.toBe( input.foo );
|
|
103
|
+
expect( result.foo.bar ).not.toBe( input.foo.bar );
|
|
104
|
+
expect( result.foo.bar.baz ).not.toBe( input.foo.bar.baz );
|
|
105
|
+
} );
|
|
106
|
+
} );
|
|
107
|
+
} );
|
|
@@ -6,8 +6,6 @@ import {
|
|
|
6
6
|
getPxFromCssUnit,
|
|
7
7
|
} from '../parse-css-unit-to-px';
|
|
8
8
|
|
|
9
|
-
jest.useRealTimers();
|
|
10
|
-
|
|
11
9
|
describe( 'getPxFromCssUnit', () => {
|
|
12
10
|
// Absolute units.
|
|
13
11
|
describe( 'absolute unites should return px values', () => {
|
|
@@ -128,6 +126,7 @@ describe( 'getPxFromCssUnit', () => {
|
|
|
128
126
|
'clamp(2.625rem, calc(2.625rem + ((1vw - 0.48rem) * 8.4135)), 3.25rem)',
|
|
129
127
|
'42px',
|
|
130
128
|
],
|
|
129
|
+
[ 'var:preset|font-size|medium', null ],
|
|
131
130
|
];
|
|
132
131
|
|
|
133
132
|
test.each( testData )( 'getPxFromCssUnit( %s )', ( unit, expected ) => {
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../element/node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../element/node_modules/@types/react/index.d.ts","../element/build-types/react.d.ts","../element/build-types/create-interpolate-element.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","../element/build-types/react-platform.d.ts","../element/build-types/utils.d.ts","../element/build-types/platform.d.ts","../element/build-types/serialize.d.ts","../element/build-types/raw-html.d.ts","../element/build-types/index.d.ts","./src/components/block-context/index.js","./src/utils/dom.js","../../node_modules/@types/react/global.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5917af4ff931b050dba49a1dedd9c00f15f7b3dc4345ad8491bfacd2ec68ed32","affectsGlobalScope":true},"6fb72c65c5af8c4ed7d41afecd1ebb463d1e074291ae5e8a187d0922fd40f59b","e47b8ec56eb49bc1c53c9012daa9874de14ad0c5da442485aec333571c74b526",{"version":"5917af4ff931b050dba49a1dedd9c00f15f7b3dc4345ad8491bfacd2ec68ed32","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","83e27bbd7304ea67f9afa1535f1d4fdb15866089f0d893c784cbb5b1c6fb3386","c4b39848e2fb237507a7acae0b83a34271c9d72714faae6a6b9075527205111b","d2d9e98a2b167079474768593e1e7125fc3db055add8fbdb5977e3d05a8a3696","6462da67490105ba7d98cf312c2faf8794c425781128b161ea8394d66502eec8","62359da52b6c8d00c50c2e50738fac82e902f916fdf458d8159e7edb1c60c3a8","1e0ac21bc775686383ea8c8e48bd98b385e6195b25c85525a7affd08a2cd38b9","0449615e1ed03c7d54fc435a63b7ef0cb4e5cea5ac40c9a63280a46f7eeae0ff","0a41b61ddcb640fa2a07cb7a04ecddf540b8199f70d3cf5f2d8903be722529eb","4e8c59b6c243b9148b72d7428c71592176a520225ee91b718f4a655a5baf6624"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"importsNotUsedAsValues":2,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"rootDir":"./src","strict":true,"target":99},"fileIdsList":[[49],[46,47,48,63],[49,60],[50],[50,51,55,56,57,58,59],[53,54],[49,50],[45,46,47,48]],"referencedMap":[[54,1],[53,1],[52,2],[61,3],[51,4],[60,5],[59,1],[55,6],[50,1],[58,7],[49,8]],"exportedModulesMap":[[54,1],[53,1],[52,2],[61,3],[51,4],[60,5],[59,1],[55,6],[50,1],[58,7],[49,8]],"semanticDiagnosticsPerFile":[47,54,53,52,48,46,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,61,62,51,60,57,59,55,50,58,56,45,49]},"version":"4.4.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../element/node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../element/node_modules/@types/react/index.d.ts","../element/build-types/react.d.ts","../element/build-types/create-interpolate-element.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","../element/build-types/react-platform.d.ts","../element/build-types/utils.d.ts","../element/build-types/platform.d.ts","../element/build-types/serialize.d.ts","../element/build-types/raw-html.d.ts","../element/build-types/index.d.ts","./src/components/block-context/index.js","./src/utils/dom.js","../../node_modules/@types/react/global.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5917af4ff931b050dba49a1dedd9c00f15f7b3dc4345ad8491bfacd2ec68ed32","affectsGlobalScope":true},"6fb72c65c5af8c4ed7d41afecd1ebb463d1e074291ae5e8a187d0922fd40f59b","ab6f9c23c44e0b20c2be80af46ffc9d0e6681efa05ee1704bb4c9fcef8e61497",{"version":"5917af4ff931b050dba49a1dedd9c00f15f7b3dc4345ad8491bfacd2ec68ed32","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","83e27bbd7304ea67f9afa1535f1d4fdb15866089f0d893c784cbb5b1c6fb3386","c4b39848e2fb237507a7acae0b83a34271c9d72714faae6a6b9075527205111b","d2d9e98a2b167079474768593e1e7125fc3db055add8fbdb5977e3d05a8a3696","6462da67490105ba7d98cf312c2faf8794c425781128b161ea8394d66502eec8","62359da52b6c8d00c50c2e50738fac82e902f916fdf458d8159e7edb1c60c3a8","1e0ac21bc775686383ea8c8e48bd98b385e6195b25c85525a7affd08a2cd38b9","0449615e1ed03c7d54fc435a63b7ef0cb4e5cea5ac40c9a63280a46f7eeae0ff",{"version":"0a41b61ddcb640fa2a07cb7a04ecddf540b8199f70d3cf5f2d8903be722529eb","signature":"4b7a879cde76a92dc90518ea30784dc4737a9088b19ce8b3e6e52ca88d79fdd9"},{"version":"4e8c59b6c243b9148b72d7428c71592176a520225ee91b718f4a655a5baf6624","signature":"5120315643470468a3955abbc6f5669c5314f62f237825a2930ede632739ff58"}],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"importsNotUsedAsValues":2,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"rootDir":"./src","strict":true,"target":99},"fileIdsList":[[60],[57,58,59,74],[60,71],[61],[61,62,66,67,68,69,70],[64,65],[60,61],[56,57,58,59]],"referencedMap":[[65,1],[64,1],[63,2],[72,3],[62,4],[71,5],[70,1],[66,6],[61,1],[69,7],[60,8]],"exportedModulesMap":[[65,1],[64,1],[63,2],[72,1],[62,4],[71,5],[70,1],[66,6],[61,1],[69,7],[60,8]],"semanticDiagnosticsPerFile":[58,65,64,63,59,57,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,72,73,62,71,68,70,66,61,69,67,56,60],"latestChangedDtsFile":"./build-types/utils/dom.d.ts"},"version":"4.9.5"}
|