@fluid-topics/ft-floating-menu 1.1.41 → 1.1.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Floating menu component
1
+ A floating menu component.
2
2
 
3
3
  ## Install
4
4
 
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
7
7
  import { html, nothing } from "lit";
8
8
  import { property } from "lit/decorators.js";
9
9
  import { FtLitElement } from "@fluid-topics/ft-wc-utils";
10
- import { itemStyles } from "./ft-floating-menu-item.css";
10
+ import { itemStyles } from "./ft-floating-menu-item.styles";
11
11
  import { FtIcon } from "@fluid-topics/ft-icon";
12
12
  import { FtRipple } from "@fluid-topics/ft-ripple";
13
13
  import { FtTypography } from "@fluid-topics/ft-typography";
@@ -1,7 +1,7 @@
1
1
  import { html } from "lit";
2
2
  import { FtLitElement } from "@fluid-topics/ft-wc-utils";
3
3
  import { FtTypography } from "@fluid-topics/ft-typography";
4
- import { labelStyles } from "./ft-floating-menu-label.css";
4
+ import { labelStyles } from "./ft-floating-menu-label.styles";
5
5
  class FtFloatingMenuLabel extends FtLitElement {
6
6
  render() {
7
7
  return html `
@@ -1,4 +1,4 @@
1
- import { styles } from "./ft-floating-menu.css";
1
+ import { styles } from "./ft-floating-menu.styles";
2
2
  import { FtButton } from "@fluid-topics/ft-button";
3
3
  import { FtBaseFloatingMenu } from "./ft-base-floating-menu";
4
4
  class FtFloatingMenu extends FtBaseFloatingMenu {