@m3e/core 1.0.0-rc.2 → 1.0.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css-custom-data.json +20 -0
- package/dist/custom-elements.json +681 -471
- package/dist/html-custom-data.json +22 -0
- package/dist/index.js +220 -5
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +43 -32
- package/dist/index.min.js.map +1 -1
- package/dist/src/a11y/AriaDescriber.d.ts +31 -0
- package/dist/src/a11y/AriaDescriber.d.ts.map +1 -0
- package/dist/src/a11y/FocusTrapElement.d.ts +25 -0
- package/dist/src/a11y/FocusTrapElement.d.ts.map +1 -0
- package/dist/src/a11y/InteractivityChecker.d.ts +22 -0
- package/dist/src/a11y/InteractivityChecker.d.ts.map +1 -0
- package/dist/src/a11y/LiveAnnouncer.d.ts +56 -0
- package/dist/src/a11y/LiveAnnouncer.d.ts.map +1 -0
- package/dist/src/a11y/aria-reference.d.ts +30 -0
- package/dist/src/a11y/aria-reference.d.ts.map +1 -0
- package/dist/src/a11y/index.d.ts +8 -0
- package/dist/src/a11y/index.d.ts.map +1 -0
- package/dist/src/a11y/keycodes/KeyCode.d.ts +118 -0
- package/dist/src/a11y/keycodes/KeyCode.d.ts.map +1 -0
- package/dist/src/a11y/keycodes/ModifierKeys.d.ts +5 -0
- package/dist/src/a11y/keycodes/ModifierKeys.d.ts.map +1 -0
- package/dist/src/a11y/keycodes/getKeyCode.d.ts +7 -0
- package/dist/src/a11y/keycodes/getKeyCode.d.ts.map +1 -0
- package/dist/src/a11y/keycodes/hasModifierKey.d.ts +9 -0
- package/dist/src/a11y/keycodes/hasModifierKey.d.ts.map +1 -0
- package/dist/src/a11y/keycodes/index.d.ts +6 -0
- package/dist/src/a11y/keycodes/index.d.ts.map +1 -0
- package/dist/src/a11y/keycodes/isModifierAllowed.d.ts +9 -0
- package/dist/src/a11y/keycodes/isModifierAllowed.d.ts.map +1 -0
- package/dist/src/a11y/list-key/FocusKeyManager.d.ts +17 -0
- package/dist/src/a11y/list-key/FocusKeyManager.d.ts.map +1 -0
- package/dist/src/a11y/list-key/ListKeyManager.d.ts +114 -0
- package/dist/src/a11y/list-key/ListKeyManager.d.ts.map +1 -0
- package/dist/src/a11y/list-key/ListManager.d.ts +37 -0
- package/dist/src/a11y/list-key/ListManager.d.ts.map +1 -0
- package/dist/src/a11y/list-key/RadioKeyManager.d.ts +20 -0
- package/dist/src/a11y/list-key/RadioKeyManager.d.ts.map +1 -0
- package/dist/src/a11y/list-key/RovingTabIndexManager.d.ts +22 -0
- package/dist/src/a11y/list-key/RovingTabIndexManager.d.ts.map +1 -0
- package/dist/src/a11y/list-key/SelectionManager.d.ts +46 -0
- package/dist/src/a11y/list-key/SelectionManager.d.ts.map +1 -0
- package/dist/src/a11y/list-key/Typeahead.d.ts +64 -0
- package/dist/src/a11y/list-key/Typeahead.d.ts.map +1 -0
- package/dist/src/a11y/list-key/index.d.ts +8 -0
- package/dist/src/a11y/list-key/index.d.ts.map +1 -0
- package/dist/src/a11y/visuallyHide.d.ts +6 -0
- package/dist/src/a11y/visuallyHide.d.ts.map +1 -0
- package/dist/src/anchoring/AnchorOptions.d.ts +15 -0
- package/dist/src/anchoring/AnchorOptions.d.ts.map +1 -0
- package/dist/src/anchoring/AnchorPosition.d.ts +3 -0
- package/dist/src/anchoring/AnchorPosition.d.ts.map +1 -0
- package/dist/src/anchoring/index.d.ts +4 -0
- package/dist/src/anchoring/index.d.ts.map +1 -0
- package/dist/src/anchoring/positionAnchor.d.ts +12 -0
- package/dist/src/anchoring/positionAnchor.d.ts.map +1 -0
- package/dist/src/bidi/Directionality.d.ts +27 -0
- package/dist/src/bidi/Directionality.d.ts.map +1 -0
- package/dist/src/bidi/index.d.ts +2 -0
- package/dist/src/bidi/index.d.ts.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/layout/Breakpoint.d.ts +26 -0
- package/dist/src/layout/Breakpoint.d.ts.map +1 -0
- package/dist/src/layout/BreakpointObserver.d.ts +18 -0
- package/dist/src/layout/BreakpointObserver.d.ts.map +1 -0
- package/dist/src/layout/index.d.ts +3 -0
- package/dist/src/layout/index.d.ts.map +1 -0
- package/dist/src/platform/Platform.d.ts +34 -0
- package/dist/src/platform/Platform.d.ts.map +1 -0
- package/dist/src/platform/index.d.ts +2 -0
- package/dist/src/platform/index.d.ts.map +1 -0
- package/dist/src/shared/controllers/FocusController.d.ts +30 -0
- package/dist/src/shared/controllers/FocusController.d.ts.map +1 -0
- package/dist/src/shared/controllers/HoverController.d.ts +40 -0
- package/dist/src/shared/controllers/HoverController.d.ts.map +1 -0
- package/dist/src/shared/controllers/IntersectionController.d.ts +40 -0
- package/dist/src/shared/controllers/IntersectionController.d.ts.map +1 -0
- package/dist/src/shared/controllers/LongPressController.d.ts +32 -0
- package/dist/src/shared/controllers/LongPressController.d.ts.map +1 -0
- package/dist/src/shared/controllers/MonitorControllerBase.d.ts +62 -0
- package/dist/src/shared/controllers/MonitorControllerBase.d.ts.map +1 -0
- package/dist/src/shared/controllers/MutationController.d.ts +37 -0
- package/dist/src/shared/controllers/MutationController.d.ts.map +1 -0
- package/dist/src/shared/controllers/PressedController.d.ts +47 -0
- package/dist/src/shared/controllers/PressedController.d.ts.map +1 -0
- package/dist/src/shared/controllers/ResizeController.d.ts +40 -0
- package/dist/src/shared/controllers/ResizeController.d.ts.map +1 -0
- package/dist/src/shared/controllers/ScrollController.d.ts +34 -0
- package/dist/src/shared/controllers/ScrollController.d.ts.map +1 -0
- package/dist/src/shared/controllers/index.d.ts +9 -0
- package/dist/src/shared/controllers/index.d.ts.map +1 -0
- package/dist/src/shared/decorators/debounce.d.ts +7 -0
- package/dist/src/shared/decorators/debounce.d.ts.map +1 -0
- package/dist/src/shared/decorators/index.d.ts +2 -0
- package/dist/src/shared/decorators/index.d.ts.map +1 -0
- package/dist/src/shared/directives/index.d.ts +2 -0
- package/dist/src/shared/directives/index.d.ts.map +1 -0
- package/dist/src/shared/directives/safeStyleMap.d.ts +44 -0
- package/dist/src/shared/directives/safeStyleMap.d.ts.map +1 -0
- package/dist/src/shared/index.d.ts +8 -0
- package/dist/src/shared/index.d.ts.map +1 -0
- package/dist/src/shared/mixins/AttachInternals.d.ts +24 -0
- package/dist/src/shared/mixins/AttachInternals.d.ts.map +1 -0
- package/dist/src/shared/mixins/Checked.d.ts +24 -0
- package/dist/src/shared/mixins/Checked.d.ts.map +1 -0
- package/dist/src/shared/mixins/CheckedIndeterminate.d.ts +25 -0
- package/dist/src/shared/mixins/CheckedIndeterminate.d.ts.map +1 -0
- package/dist/src/shared/mixins/CheckedOrSelected.d.ts +23 -0
- package/dist/src/shared/mixins/CheckedOrSelected.d.ts.map +1 -0
- package/dist/src/shared/mixins/ConstraintValidation.d.ts +48 -0
- package/dist/src/shared/mixins/ConstraintValidation.d.ts.map +1 -0
- package/dist/src/shared/mixins/Constructor.d.ts +3 -0
- package/dist/src/shared/mixins/Constructor.d.ts.map +1 -0
- package/dist/src/shared/mixins/Dirty.d.ts +27 -0
- package/dist/src/shared/mixins/Dirty.d.ts.map +1 -0
- package/dist/src/shared/mixins/Disabled.d.ts +25 -0
- package/dist/src/shared/mixins/Disabled.d.ts.map +1 -0
- package/dist/src/shared/mixins/DisabledInteractive.d.ts +25 -0
- package/dist/src/shared/mixins/DisabledInteractive.d.ts.map +1 -0
- package/dist/src/shared/mixins/EventAttribute.d.ts +11 -0
- package/dist/src/shared/mixins/EventAttribute.d.ts.map +1 -0
- package/dist/src/shared/mixins/Focusable.d.ts +11 -0
- package/dist/src/shared/mixins/Focusable.d.ts.map +1 -0
- package/dist/src/shared/mixins/FormAssociated.d.ts +34 -0
- package/dist/src/shared/mixins/FormAssociated.d.ts.map +1 -0
- package/dist/src/shared/mixins/FormSubmitter.d.ts +34 -0
- package/dist/src/shared/mixins/FormSubmitter.d.ts.map +1 -0
- package/dist/src/shared/mixins/HtmlFor.d.ts +30 -0
- package/dist/src/shared/mixins/HtmlFor.d.ts.map +1 -0
- package/dist/src/shared/mixins/KeyboardClick.d.ts +11 -0
- package/dist/src/shared/mixins/KeyboardClick.d.ts.map +1 -0
- package/dist/src/shared/mixins/Labelled.d.ts +22 -0
- package/dist/src/shared/mixins/Labelled.d.ts.map +1 -0
- package/dist/src/shared/mixins/LinkButton.d.ts +46 -0
- package/dist/src/shared/mixins/LinkButton.d.ts.map +1 -0
- package/dist/src/shared/mixins/ReadOnly.d.ts +25 -0
- package/dist/src/shared/mixins/ReadOnly.d.ts.map +1 -0
- package/dist/src/shared/mixins/Required.d.ts +26 -0
- package/dist/src/shared/mixins/Required.d.ts.map +1 -0
- package/dist/src/shared/mixins/RequiredConstraintValidation.d.ts +21 -0
- package/dist/src/shared/mixins/RequiredConstraintValidation.d.ts.map +1 -0
- package/dist/src/shared/mixins/Role.d.ts +13 -0
- package/dist/src/shared/mixins/Role.d.ts.map +1 -0
- package/dist/src/shared/mixins/Selected.d.ts +24 -0
- package/dist/src/shared/mixins/Selected.d.ts.map +1 -0
- package/dist/src/shared/mixins/Touched.d.ts +27 -0
- package/dist/src/shared/mixins/Touched.d.ts.map +1 -0
- package/dist/src/shared/mixins/Vertical.d.ts +24 -0
- package/dist/src/shared/mixins/Vertical.d.ts.map +1 -0
- package/dist/src/shared/mixins/hasKeys.d.ts +9 -0
- package/dist/src/shared/mixins/hasKeys.d.ts.map +1 -0
- package/dist/src/shared/mixins/index.d.ts +25 -0
- package/dist/src/shared/mixins/index.d.ts.map +1 -0
- package/dist/src/shared/primitives/CollapsibleElement.d.ts +58 -0
- package/dist/src/shared/primitives/CollapsibleElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/ElevationElement.d.ts +87 -0
- package/dist/src/shared/primitives/ElevationElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/ElevationLevel.d.ts +3 -0
- package/dist/src/shared/primitives/ElevationLevel.d.ts.map +1 -0
- package/dist/src/shared/primitives/ElevationToken.d.ts +15 -0
- package/dist/src/shared/primitives/ElevationToken.d.ts.map +1 -0
- package/dist/src/shared/primitives/FocusRingElement.d.ts +77 -0
- package/dist/src/shared/primitives/FocusRingElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/FocusRingToken.d.ts +17 -0
- package/dist/src/shared/primitives/FocusRingToken.d.ts.map +1 -0
- package/dist/src/shared/primitives/PseudoCheckboxElement.d.ts +49 -0
- package/dist/src/shared/primitives/PseudoCheckboxElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/PseudoRadioElement.d.ts +40 -0
- package/dist/src/shared/primitives/PseudoRadioElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/RippleElement.d.ts +109 -0
- package/dist/src/shared/primitives/RippleElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/RippleToken.d.ts +12 -0
- package/dist/src/shared/primitives/RippleToken.d.ts.map +1 -0
- package/dist/src/shared/primitives/ScrollContainerElement.d.ts +61 -0
- package/dist/src/shared/primitives/ScrollContainerElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/ScrollDividers.d.ts +3 -0
- package/dist/src/shared/primitives/ScrollDividers.d.ts.map +1 -0
- package/dist/src/shared/primitives/SlideElement.d.ts +46 -0
- package/dist/src/shared/primitives/SlideElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/StateLayerElement.d.ts +76 -0
- package/dist/src/shared/primitives/StateLayerElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/StateLayerToken.d.ts +13 -0
- package/dist/src/shared/primitives/StateLayerToken.d.ts.map +1 -0
- package/dist/src/shared/primitives/TextHighlightElement.d.ts +81 -0
- package/dist/src/shared/primitives/TextHighlightElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/TextOverflowElement.d.ts +38 -0
- package/dist/src/shared/primitives/TextOverflowElement.d.ts.map +1 -0
- package/dist/src/shared/primitives/index.d.ts +14 -0
- package/dist/src/shared/primitives/index.d.ts.map +1 -0
- package/dist/src/shared/tokens/ColorToken.d.ts +96 -0
- package/dist/src/shared/tokens/ColorToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/DensityToken.d.ts +15 -0
- package/dist/src/shared/tokens/DensityToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/DesignToken.d.ts +366 -0
- package/dist/src/shared/tokens/DesignToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/ElevationToken.d.ts +16 -0
- package/dist/src/shared/tokens/ElevationToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/MotionToken.d.ts +69 -0
- package/dist/src/shared/tokens/MotionToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/ScrollbarToken.d.ts +10 -0
- package/dist/src/shared/tokens/ScrollbarToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/ShapeToken.d.ts +79 -0
- package/dist/src/shared/tokens/ShapeToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/StateToken.d.ts +10 -0
- package/dist/src/shared/tokens/StateToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/TypescaleToken.d.ts +220 -0
- package/dist/src/shared/tokens/TypescaleToken.d.ts.map +1 -0
- package/dist/src/shared/tokens/index.d.ts +2 -0
- package/dist/src/shared/tokens/index.d.ts.map +1 -0
- package/dist/src/shared/utils/getTextContent.d.ts +8 -0
- package/dist/src/shared/utils/getTextContent.d.ts.map +1 -0
- package/dist/src/shared/utils/guid.d.ts +6 -0
- package/dist/src/shared/utils/guid.d.ts.map +1 -0
- package/dist/src/shared/utils/hasAssignedNodes.d.ts +7 -0
- package/dist/src/shared/utils/hasAssignedNodes.d.ts.map +1 -0
- package/dist/src/shared/utils/index.d.ts +6 -0
- package/dist/src/shared/utils/index.d.ts.map +1 -0
- package/dist/src/shared/utils/prefersReducedMotion.d.ts +6 -0
- package/dist/src/shared/utils/prefersReducedMotion.d.ts.map +1 -0
- package/dist/src/shared/utils/scrollIntoViewIfNeeded.d.ts +8 -0
- package/dist/src/shared/utils/scrollIntoViewIfNeeded.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElevationToken.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/ElevationToken.ts"],"names":[],"mappings":"AA+FA,4CAA4C;AAC5C,eAAO,MAAM,cAAc;IACzB,yBAAyB;;IAGzB,yBAAyB;;IAGzB,yBAAyB;;IAGzB,yBAAyB;;IAGzB,yBAAyB;;IAGzB,yBAAyB;;CAEjB,CAAC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/** Design tokens that control motion. */
|
|
2
|
+
export declare const MotionToken: {
|
|
3
|
+
/** Design tokens that control transition effects. */
|
|
4
|
+
readonly easing: {
|
|
5
|
+
/** Emphasized transition. */
|
|
6
|
+
readonly emphasized: import("lit").CSSResult;
|
|
7
|
+
/** Decelerated emphasized transition. */
|
|
8
|
+
readonly emphasizedDecelerate: import("lit").CSSResult;
|
|
9
|
+
/** Accelerated emphasized transition. */
|
|
10
|
+
readonly emphasizedAccelerate: import("lit").CSSResult;
|
|
11
|
+
/** Simple, small, or utility-focused transition. */
|
|
12
|
+
readonly standard: import("lit").CSSResult;
|
|
13
|
+
/** Decelerated standard transition. */
|
|
14
|
+
readonly standardDecelerate: import("lit").CSSResult;
|
|
15
|
+
/** Accelerated standard transition. */
|
|
16
|
+
readonly standardAccelerate: import("lit").CSSResult;
|
|
17
|
+
};
|
|
18
|
+
/** Design tokens that control transition duration. */
|
|
19
|
+
readonly duration: {
|
|
20
|
+
/** Small utility-focused transition duration. */
|
|
21
|
+
readonly short1: import("lit").CSSResult;
|
|
22
|
+
/** Small utility-focused transition duration. */
|
|
23
|
+
readonly short2: import("lit").CSSResult;
|
|
24
|
+
/** Small utility-focused transition duration. */
|
|
25
|
+
readonly short3: import("lit").CSSResult;
|
|
26
|
+
/** Small utility-focused transition duration. */
|
|
27
|
+
readonly short4: import("lit").CSSResult;
|
|
28
|
+
/** Duration for transitions that traverse a medium area of the screen. */
|
|
29
|
+
readonly medium1: import("lit").CSSResult;
|
|
30
|
+
/** Duration for transitions that traverse a medium area of the screen. */
|
|
31
|
+
readonly medium2: import("lit").CSSResult;
|
|
32
|
+
/** Duration for transitions that traverse a medium area of the screen. */
|
|
33
|
+
readonly medium3: import("lit").CSSResult;
|
|
34
|
+
/** Duration for transitions that traverse a medium area of the screen. */
|
|
35
|
+
readonly medium4: import("lit").CSSResult;
|
|
36
|
+
/** Duration for large expressive transitions. */
|
|
37
|
+
readonly long1: import("lit").CSSResult;
|
|
38
|
+
/** Duration for large expressive transitions. */
|
|
39
|
+
readonly long2: import("lit").CSSResult;
|
|
40
|
+
/** Duration for large expressive transitions. */
|
|
41
|
+
readonly long3: import("lit").CSSResult;
|
|
42
|
+
/** Duration for large expressive transitions. */
|
|
43
|
+
readonly long4: import("lit").CSSResult;
|
|
44
|
+
/** Extra long duration for ambient transitions. */
|
|
45
|
+
readonly extraLong1: import("lit").CSSResult;
|
|
46
|
+
/** Extra long duration for ambient transitions. */
|
|
47
|
+
readonly extraLong2: import("lit").CSSResult;
|
|
48
|
+
/** Extra long duration for ambient transitions. */
|
|
49
|
+
readonly extraLong3: import("lit").CSSResult;
|
|
50
|
+
/** Extra long duration for ambient transitions. */
|
|
51
|
+
readonly extraLong4: import("lit").CSSResult;
|
|
52
|
+
};
|
|
53
|
+
/** Design tokens that control spring effects. */
|
|
54
|
+
readonly spring: {
|
|
55
|
+
/** Fast spatial spring. */
|
|
56
|
+
readonly fastSpatial: import("lit").CSSResult;
|
|
57
|
+
/** Default spatial spring. */
|
|
58
|
+
readonly defaultSpatial: import("lit").CSSResult;
|
|
59
|
+
/** Slow spatial spring. */
|
|
60
|
+
readonly slowSpatial: import("lit").CSSResult;
|
|
61
|
+
/** Fast effects spring. */
|
|
62
|
+
readonly fastEffects: import("lit").CSSResult;
|
|
63
|
+
/** Default effects spring. */
|
|
64
|
+
readonly defaultEffects: import("lit").CSSResult;
|
|
65
|
+
/** Slow effects spring. */
|
|
66
|
+
readonly slowEffects: import("lit").CSSResult;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
//# sourceMappingURL=MotionToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MotionToken.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/MotionToken.ts"],"names":[],"mappings":"AAgGA,yCAAyC;AACzC,eAAO,MAAM,WAAW;IACtB,qDAAqD;;QA/FrD,6BAA6B;;QAG7B,yCAAyC;;QAKzC,yCAAyC;;QAKzC,oDAAoD;;QAGpD,uCAAuC;;QAGvC,uCAAuC;;;IA+EvC,sDAAsD;;QAtDtD,iDAAiD;;QAGjD,iDAAiD;;QAGjD,iDAAiD;;QAGjD,iDAAiD;;QAGjD,2EAA2E;;QAG3E,2EAA2E;;QAG3E,2EAA2E;;QAG3E,2EAA2E;;QAG3E,kDAAkD;;QAGlD,kDAAkD;;QAGlD,kDAAkD;;QAGlD,kDAAkD;;QAGlD,oDAAoD;;QAGpD,oDAAoD;;QAGpD,oDAAoD;;QAGpD,oDAAoD;;;IAYpD,iDAAiD;;QA7EjD,2BAA2B;;QAG3B,8BAA8B;;QAG9B,2BAA2B;;QAG3B,2BAA2B;;QAG3B,8BAA8B;;QAG9B,2BAA2B;;;CAgEnB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/** Design tokens that control scrollbars. */
|
|
2
|
+
export declare const ScrollbarToken: {
|
|
3
|
+
/** Width of a standard scrollbar. */
|
|
4
|
+
readonly width: import("lit").CSSResult;
|
|
5
|
+
/** Width of a thin scrollbar. */
|
|
6
|
+
readonly thinWidth: import("lit").CSSResult;
|
|
7
|
+
/** Color of a scrollbar. */
|
|
8
|
+
readonly color: import("lit").CSSResult;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=ScrollbarToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScrollbarToken.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/ScrollbarToken.ts"],"names":[],"mappings":"AAEA,6CAA6C;AAC7C,eAAO,MAAM,cAAc;IACzB,qCAAqC;;IAGrC,iCAAiC;;IAGjC,4BAA4B;;CAEpB,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/** Design tokens that control shape. */
|
|
2
|
+
export declare const ShapeToken: {
|
|
3
|
+
readonly corner: {
|
|
4
|
+
/** Fully rounded symmetric shape. */
|
|
5
|
+
readonly full: import("lit").CSSResult;
|
|
6
|
+
/** Extra large rounded asymmetric shape directed towards the top. */
|
|
7
|
+
readonly extraLargeTop: import("lit").CSSResult;
|
|
8
|
+
/** Extra large rounded symmetric shape. */
|
|
9
|
+
readonly extraLarge: import("lit").CSSResult;
|
|
10
|
+
/** Extra large rounded asymmetric shape directed towards the end. */
|
|
11
|
+
readonly extraLargeEnd: import("lit").CSSResult;
|
|
12
|
+
/** Extra large rounded asymmetric shape directed towards the start. */
|
|
13
|
+
readonly extraLargeStart: import("lit").CSSResult;
|
|
14
|
+
/** Large rounded asymmetric shape directed towards the top. */
|
|
15
|
+
readonly largeTop: import("lit").CSSResult;
|
|
16
|
+
/** Large rounded asymmetric shape directed towards the end. */
|
|
17
|
+
readonly largeEnd: import("lit").CSSResult;
|
|
18
|
+
/** Large rounded asymmetric shape directed towards the start. */
|
|
19
|
+
readonly largeStart: import("lit").CSSResult;
|
|
20
|
+
/** Large rounded symmetric shape. */
|
|
21
|
+
readonly large: import("lit").CSSResult;
|
|
22
|
+
/** Medium rounded symmetric shape. */
|
|
23
|
+
readonly medium: import("lit").CSSResult;
|
|
24
|
+
/** Medium rounded asymmetric shape directed towards the top. */
|
|
25
|
+
readonly mediumTop: import("lit").CSSResult;
|
|
26
|
+
/** Medium rounded asymmetric shape directed towards the end. */
|
|
27
|
+
readonly mediumEnd: import("lit").CSSResult;
|
|
28
|
+
/** Medium rounded asymmetric shape directed towards the start. */
|
|
29
|
+
readonly mediumStart: import("lit").CSSResult;
|
|
30
|
+
/** Small rounded symmetric shape. */
|
|
31
|
+
readonly small: import("lit").CSSResult;
|
|
32
|
+
/** Small rounded asymmetric shape directed towards the top. */
|
|
33
|
+
readonly smallTop: import("lit").CSSResult;
|
|
34
|
+
/** Small rounded asymmetric shape directed towards the end. */
|
|
35
|
+
readonly smallEnd: import("lit").CSSResult;
|
|
36
|
+
/** Small rounded asymmetric shape directed towards the start. */
|
|
37
|
+
readonly smallStart: import("lit").CSSResult;
|
|
38
|
+
/** Extra small rounded asymmetric shape directed towards the top. */
|
|
39
|
+
readonly extraSmallTop: import("lit").CSSResult;
|
|
40
|
+
/** Extra small rounded symmetric shape. */
|
|
41
|
+
readonly extraSmall: import("lit").CSSResult;
|
|
42
|
+
/** Extra small rounded asymmetric shape directed towards the end. */
|
|
43
|
+
readonly extraSmallEnd: import("lit").CSSResult;
|
|
44
|
+
/** Extra small rounded asymmetric shape directed towards the start. */
|
|
45
|
+
readonly extraSmallStart: import("lit").CSSResult;
|
|
46
|
+
/** Extra small rounded asymmetric shape directed towards the bottom. */
|
|
47
|
+
readonly extraSmallBottom: import("lit").CSSResult;
|
|
48
|
+
/** No rounding. */
|
|
49
|
+
readonly none: import("lit").CSSResult;
|
|
50
|
+
/** Increased large rounded symmetric shape. */
|
|
51
|
+
readonly largeIncreased: import("lit").CSSResult;
|
|
52
|
+
/** Increased extra large rounded symmetric shape. */
|
|
53
|
+
readonly extraLargeIncreased: import("lit").CSSResult;
|
|
54
|
+
/** Extra extra large rounded symmetric shape. */
|
|
55
|
+
readonly extraExtraLarge: import("lit").CSSResult;
|
|
56
|
+
/** Design tokens that control specific corners. */
|
|
57
|
+
readonly value: {
|
|
58
|
+
/** No rounding. */
|
|
59
|
+
readonly none: import("lit").CSSResult;
|
|
60
|
+
/** Extra small rounded corner. */
|
|
61
|
+
readonly extraSmall: import("lit").CSSResult;
|
|
62
|
+
/** Small rounded corner. */
|
|
63
|
+
readonly small: import("lit").CSSResult;
|
|
64
|
+
/** Medium rounded corner. */
|
|
65
|
+
readonly medium: import("lit").CSSResult;
|
|
66
|
+
/** Large rounded corner. */
|
|
67
|
+
readonly large: import("lit").CSSResult;
|
|
68
|
+
/** Increased large rounded corner. */
|
|
69
|
+
readonly largeIncreased: import("lit").CSSResult;
|
|
70
|
+
/** Extra large rounded corner. */
|
|
71
|
+
readonly extraLarge: import("lit").CSSResult;
|
|
72
|
+
/** Increased extra large rounded corner. */
|
|
73
|
+
readonly extraLargeIncreased: import("lit").CSSResult;
|
|
74
|
+
/** Extra extra large rounded corner. */
|
|
75
|
+
readonly extraExtraLarge: import("lit").CSSResult;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
//# sourceMappingURL=ShapeToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShapeToken.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/ShapeToken.ts"],"names":[],"mappings":"AA+BA,wCAAwC;AACxC,eAAO,MAAM,UAAU;;QAEnB,qCAAqC;;QAGrC,qEAAqE;;QAKrE,2CAA2C;;QAG3C,qEAAqE;;QAKrE,uEAAuE;;QAKvE,+DAA+D;;QAK/D,+DAA+D;;QAK/D,iEAAiE;;QAKjE,qCAAqC;;QAGrC,sCAAsC;;QAGtC,gEAAgE;;QAGhE,gEAAgE;;QAGhE,kEAAkE;;QAGlE,qCAAqC;;QAGrC,+DAA+D;;QAG/D,+DAA+D;;QAG/D,iEAAiE;;QAGjE,qEAAqE;;QAKrE,2CAA2C;;QAG3C,qEAAqE;;QAKrE,uEAAuE;;QAKvE,wEAAwE;;QAKxE,mBAAmB;;QAGnB,+CAA+C;;QAG/C,qDAAqD;;QAKrD,iDAAiD;;QAGjD,mDAAmD;;YAnIrD,mBAAmB;;YAGnB,kCAAkC;;YAGlC,4BAA4B;;YAG5B,6BAA6B;;YAG7B,4BAA4B;;YAG5B,sCAAsC;;YAGtC,kCAAkC;;YAGlC,4CAA4C;;YAG5C,wCAAwC;;;;CA8GhC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/** Design tokens that control state layer. */
|
|
2
|
+
export declare const StateToken: {
|
|
3
|
+
/** Opacity of the state layer on focus. */
|
|
4
|
+
readonly focusStateLayerOpacity: import("lit").CSSResult;
|
|
5
|
+
/** Opacity of the state layer on hover. */
|
|
6
|
+
readonly hoverStateLayerOpacity: import("lit").CSSResult;
|
|
7
|
+
/** Opacity of the state layer on pressed. */
|
|
8
|
+
readonly pressedStateLayerOpacity: import("lit").CSSResult;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=StateToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StateToken.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/StateToken.ts"],"names":[],"mappings":"AAEA,8CAA8C;AAC9C,eAAO,MAAM,UAAU;IACrB,2CAA2C;;IAG3C,2CAA2C;;IAG3C,6CAA6C;;CAErC,CAAC"}
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
/** Design tokens that control typescale. */
|
|
2
|
+
export declare const TypescaleToken: {
|
|
3
|
+
/** Standard typescale variant. */
|
|
4
|
+
readonly standard: {
|
|
5
|
+
/** Short, important text or numerals. */
|
|
6
|
+
readonly display: {
|
|
7
|
+
readonly large: {
|
|
8
|
+
readonly fontSize: import("lit").CSSResult;
|
|
9
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
10
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
11
|
+
readonly tracking: import("lit").CSSResult;
|
|
12
|
+
};
|
|
13
|
+
readonly medium: {
|
|
14
|
+
readonly fontSize: import("lit").CSSResult;
|
|
15
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
16
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
17
|
+
readonly tracking: import("lit").CSSResult;
|
|
18
|
+
};
|
|
19
|
+
readonly small: {
|
|
20
|
+
readonly fontSize: import("lit").CSSResult;
|
|
21
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
22
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
23
|
+
readonly tracking: import("lit").CSSResult;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
/** Short, high-emphasis text on smaller screens. */
|
|
27
|
+
readonly headline: {
|
|
28
|
+
readonly large: {
|
|
29
|
+
readonly fontSize: import("lit").CSSResult;
|
|
30
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
31
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
32
|
+
readonly tracking: import("lit").CSSResult;
|
|
33
|
+
};
|
|
34
|
+
readonly medium: {
|
|
35
|
+
readonly fontSize: import("lit").CSSResult;
|
|
36
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
37
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
38
|
+
readonly tracking: import("lit").CSSResult;
|
|
39
|
+
};
|
|
40
|
+
readonly small: {
|
|
41
|
+
readonly fontSize: import("lit").CSSResult;
|
|
42
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
43
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
44
|
+
readonly tracking: import("lit").CSSResult;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
/** Medium-emphasis text that remains relatively short. */
|
|
48
|
+
readonly title: {
|
|
49
|
+
readonly large: {
|
|
50
|
+
readonly fontSize: import("lit").CSSResult;
|
|
51
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
52
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
53
|
+
readonly tracking: import("lit").CSSResult;
|
|
54
|
+
};
|
|
55
|
+
readonly medium: {
|
|
56
|
+
readonly fontSize: import("lit").CSSResult;
|
|
57
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
58
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
59
|
+
readonly tracking: import("lit").CSSResult;
|
|
60
|
+
};
|
|
61
|
+
readonly small: {
|
|
62
|
+
readonly fontSize: import("lit").CSSResult;
|
|
63
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
64
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
65
|
+
readonly tracking: import("lit").CSSResult;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
/** Longer passages of text. */
|
|
69
|
+
readonly body: {
|
|
70
|
+
readonly large: {
|
|
71
|
+
readonly fontSize: import("lit").CSSResult;
|
|
72
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
73
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
74
|
+
readonly tracking: import("lit").CSSResult;
|
|
75
|
+
};
|
|
76
|
+
readonly medium: {
|
|
77
|
+
readonly fontSize: import("lit").CSSResult;
|
|
78
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
79
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
80
|
+
readonly tracking: import("lit").CSSResult;
|
|
81
|
+
};
|
|
82
|
+
readonly small: {
|
|
83
|
+
readonly fontSize: import("lit").CSSResult;
|
|
84
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
85
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
86
|
+
readonly tracking: import("lit").CSSResult;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
/** Smaller, utilitarian text. */
|
|
90
|
+
readonly label: {
|
|
91
|
+
readonly large: {
|
|
92
|
+
readonly fontSize: import("lit").CSSResult;
|
|
93
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
94
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
95
|
+
readonly tracking: import("lit").CSSResult;
|
|
96
|
+
};
|
|
97
|
+
readonly medium: {
|
|
98
|
+
readonly fontSize: import("lit").CSSResult;
|
|
99
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
100
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
101
|
+
readonly tracking: import("lit").CSSResult;
|
|
102
|
+
};
|
|
103
|
+
readonly small: {
|
|
104
|
+
readonly fontSize: import("lit").CSSResult;
|
|
105
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
106
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
107
|
+
readonly tracking: import("lit").CSSResult;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
/** Emphasized typescale variant. */
|
|
112
|
+
readonly emphasized: {
|
|
113
|
+
/** Short, important text or numerals. */
|
|
114
|
+
readonly display: {
|
|
115
|
+
readonly large: {
|
|
116
|
+
readonly fontSize: import("lit").CSSResult;
|
|
117
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
118
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
119
|
+
readonly tracking: import("lit").CSSResult;
|
|
120
|
+
};
|
|
121
|
+
readonly medium: {
|
|
122
|
+
readonly fontSize: import("lit").CSSResult;
|
|
123
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
124
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
125
|
+
readonly tracking: import("lit").CSSResult;
|
|
126
|
+
};
|
|
127
|
+
readonly small: {
|
|
128
|
+
readonly fontSize: import("lit").CSSResult;
|
|
129
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
130
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
131
|
+
readonly tracking: import("lit").CSSResult;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
/** Short, high-emphasis text on smaller screens. */
|
|
135
|
+
readonly headline: {
|
|
136
|
+
readonly large: {
|
|
137
|
+
readonly fontSize: import("lit").CSSResult;
|
|
138
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
139
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
140
|
+
readonly tracking: import("lit").CSSResult;
|
|
141
|
+
};
|
|
142
|
+
readonly medium: {
|
|
143
|
+
readonly fontSize: import("lit").CSSResult;
|
|
144
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
145
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
146
|
+
readonly tracking: import("lit").CSSResult;
|
|
147
|
+
};
|
|
148
|
+
readonly small: {
|
|
149
|
+
readonly fontSize: import("lit").CSSResult;
|
|
150
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
151
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
152
|
+
readonly tracking: import("lit").CSSResult;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
/** Medium-emphasis text that remains relatively short. */
|
|
156
|
+
readonly title: {
|
|
157
|
+
readonly large: {
|
|
158
|
+
readonly fontSize: import("lit").CSSResult;
|
|
159
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
160
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
161
|
+
readonly tracking: import("lit").CSSResult;
|
|
162
|
+
};
|
|
163
|
+
readonly medium: {
|
|
164
|
+
readonly fontSize: import("lit").CSSResult;
|
|
165
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
166
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
167
|
+
readonly tracking: import("lit").CSSResult;
|
|
168
|
+
};
|
|
169
|
+
readonly small: {
|
|
170
|
+
readonly fontSize: import("lit").CSSResult;
|
|
171
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
172
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
173
|
+
readonly tracking: import("lit").CSSResult;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
/** Longer passages of text. */
|
|
177
|
+
readonly body: {
|
|
178
|
+
readonly large: {
|
|
179
|
+
readonly fontSize: import("lit").CSSResult;
|
|
180
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
181
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
182
|
+
readonly tracking: import("lit").CSSResult;
|
|
183
|
+
};
|
|
184
|
+
readonly medium: {
|
|
185
|
+
readonly fontSize: import("lit").CSSResult;
|
|
186
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
187
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
188
|
+
readonly tracking: import("lit").CSSResult;
|
|
189
|
+
};
|
|
190
|
+
readonly small: {
|
|
191
|
+
readonly fontSize: import("lit").CSSResult;
|
|
192
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
193
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
194
|
+
readonly tracking: import("lit").CSSResult;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
/** Smaller, utilitarian text. */
|
|
198
|
+
readonly label: {
|
|
199
|
+
readonly large: {
|
|
200
|
+
readonly fontSize: import("lit").CSSResult;
|
|
201
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
202
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
203
|
+
readonly tracking: import("lit").CSSResult;
|
|
204
|
+
};
|
|
205
|
+
readonly medium: {
|
|
206
|
+
readonly fontSize: import("lit").CSSResult;
|
|
207
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
208
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
209
|
+
readonly tracking: import("lit").CSSResult;
|
|
210
|
+
};
|
|
211
|
+
readonly small: {
|
|
212
|
+
readonly fontSize: import("lit").CSSResult;
|
|
213
|
+
readonly fontWeight: import("lit").CSSResult;
|
|
214
|
+
readonly lineHeight: import("lit").CSSResult;
|
|
215
|
+
readonly tracking: import("lit").CSSResult;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
//# sourceMappingURL=TypescaleToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TypescaleToken.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/TypescaleToken.ts"],"names":[],"mappings":"AAEA,4CAA4C;AAC5C,eAAO,MAAM,cAAc;IACzB,kCAAkC;;QAEhC,yCAAyC;;;;;;;;;;;;;;;;;;;;;QAsBzC,oDAAoD;;;;;;;;;;;;;;;;;;;;;QAsBpD,0DAA0D;;;;;;;;;;;;;;;;;;;;;QAsB1D,+BAA+B;;;;;;;;;;;;;;;;;;;;;QAsB/B,iCAAiC;;;;;;;;;;;;;;;;;;;;;;IAuBnC,oCAAoC;;QAElC,yCAAyC;;;;;;;;;;;;;;;;;;;;;QAsBzC,oDAAoD;;;;;;;;;;;;;;;;;;;;;QAsBpD,0DAA0D;;;;;;;;;;;;;;;;;;;;;QAsB1D,+BAA+B;;;;;;;;;;;;;;;;;;;;;QAsB/B,iCAAiC;;;;;;;;;;;;;;;;;;;;;;CAsB3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/shared/tokens/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Gets the text content of a given node, including slotted content.
|
|
3
|
+
* @param {Node} node The node for which to get text content.
|
|
4
|
+
* @param {boolean} [trim = false] A value indicating whether to trim content.
|
|
5
|
+
* @returns {string} The text content of `node`.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getTextContent(node: Node, trim?: boolean): string;
|
|
8
|
+
//# sourceMappingURL=getTextContent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTextContent.d.ts","sourceRoot":"","sources":["../../../../src/shared/utils/getTextContent.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,GAAE,OAAe,GAAG,MAAM,CAwBxE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"guid.d.ts","sourceRoot":"","sources":["../../../../src/shared/utils/guid.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,wBAAgB,IAAI,IAAI,MAAM,CAM7B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Determines whether a slot has any assigned nodes.
|
|
3
|
+
* @param {HTMLSlotElement} slot The slot to test.
|
|
4
|
+
* @returns {boolean} Whether `slot` has any assigned nodes.
|
|
5
|
+
*/
|
|
6
|
+
export declare function hasAssignedNodes(slot: HTMLSlotElement): boolean;
|
|
7
|
+
//# sourceMappingURL=hasAssignedNodes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hasAssignedNodes.d.ts","sourceRoot":"","sources":["../../../../src/shared/utils/hasAssignedNodes.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,eAAe,GAAG,OAAO,CAE/D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/shared/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prefersReducedMotion.d.ts","sourceRoot":"","sources":["../../../../src/shared/utils/prefersReducedMotion.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,wBAAgB,oBAAoB,IAAI,OAAO,CAE9C"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* If needed, scrolls an element into view within a given scroll container.
|
|
3
|
+
* @param {HTMLElement} element The element to scroll into view.
|
|
4
|
+
* @param {HTMLElement} scrollContainer The scrollable container.
|
|
5
|
+
* @param {ScrollIntoViewOptions} [options=undefined] Options used to scroll into view.
|
|
6
|
+
*/
|
|
7
|
+
export declare function scrollIntoViewIfNeeded(element: HTMLElement, scrollContainer: HTMLElement, options?: ScrollIntoViewOptions): void;
|
|
8
|
+
//# sourceMappingURL=scrollIntoViewIfNeeded.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scrollIntoViewIfNeeded.d.ts","sourceRoot":"","sources":["../../../../src/shared/utils/scrollIntoViewIfNeeded.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,WAAW,EACpB,eAAe,EAAE,WAAW,EAC5B,OAAO,CAAC,EAAE,qBAAqB,GAC9B,IAAI,CAON"}
|