0026506543
- prettier's formatting has changed, so files needed to be reformatted - dart is spitting out deprecation warnings like: 254 │ 2: $spacer / 2, │ ^^^^^^^^^^^ ╵ bazel-out/darwin-fastbuild/bin/ts/sass/bootstrap/_variables.scss 254:6 @import ts/sass/button_mixins.scss 2:9 @use ts/components/ColorPicker.svelte 2:5 root stylesheet DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($grid-gutter-width, 2)
44 lines
1.2 KiB
Svelte
44 lines
1.2 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="typescript">
|
|
import Detachable from "components/Detachable.svelte";
|
|
|
|
import type { ButtonGroupRegistration } from "./buttons";
|
|
import type { Register } from "./registration";
|
|
|
|
import { getContext, hasContext } from "svelte";
|
|
import { buttonToolbarKey } from "./contextKeys";
|
|
|
|
export let id: string | undefined = undefined;
|
|
export let registration: ButtonGroupRegistration | undefined = undefined;
|
|
|
|
let detached: boolean;
|
|
|
|
if (registration) {
|
|
const { detach } = registration;
|
|
detach.subscribe((value: boolean) => (detached = value));
|
|
} else if (hasContext(buttonToolbarKey)) {
|
|
const registerComponent =
|
|
getContext<Register<ButtonGroupRegistration>>(buttonToolbarKey);
|
|
const { detach } = registerComponent();
|
|
detach.subscribe((value: boolean) => (detached = value));
|
|
} else {
|
|
detached = false;
|
|
}
|
|
</script>
|
|
|
|
<!-- div is necessary to preserve item position -->
|
|
<div {id}>
|
|
<Detachable {detached}>
|
|
<slot />
|
|
</Detachable>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
div {
|
|
display: contents;
|
|
}
|
|
</style>
|