@fluid-topics/ft-wc-utils 0.1.0 → 0.1.2

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/build/index.d.ts CHANGED
@@ -3,7 +3,8 @@ export declare const isSafari: boolean;
3
3
  export * from "./Debouncer";
4
4
  export * from "./decorators";
5
5
  export * from "./FtLitElement";
6
- export * from "./storybook";
7
- export * from "./redux";
6
+ export * from "./mixins";
8
7
  export * from "./ParametrizedLabelResolver";
8
+ export * from "./redux";
9
+ export * from "./storybook";
9
10
  //# sourceMappingURL=index.d.ts.map
package/build/index.js CHANGED
@@ -5,7 +5,8 @@ export const isSafari = (navigator.vendor && !!navigator.vendor.match(/apple/i))
5
5
  export * from "./Debouncer";
6
6
  export * from "./decorators";
7
7
  export * from "./FtLitElement";
8
- export * from "./storybook";
9
- export * from "./redux";
8
+ export * from "./mixins";
10
9
  export * from "./ParametrizedLabelResolver";
10
+ export * from "./redux";
11
+ export * from "./storybook";
11
12
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,2 @@
1
+ export declare const noTextSelect: import("lit").CSSResult;
2
+ //# sourceMappingURL=mixins.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { css } from "lit";
2
+ export const noTextSelect = css `
3
+ .ft-no-text-select {
4
+ -webkit-touch-callout: none;
5
+ -webkit-user-select: none;
6
+ -khtml-user-select: none;
7
+ -moz-user-select: none;
8
+ -ms-user-select: none;
9
+ user-select: none;
10
+ }
11
+ `;
12
+ //# sourceMappingURL=mixins.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-wc-utils",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Internal web components tools",
5
5
  "author": "Fluid Topics <devtopics@antidot.net>",
6
6
  "license": "ISC",
@@ -18,5 +18,5 @@
18
18
  "peerDependencies": {
19
19
  "lit": "^2.0.2"
20
20
  },
21
- "gitHead": "8a87041408cbaccded5dc7c2a8f6a8aa6c92b9ee"
21
+ "gitHead": "45bcba88593eeafbe100e92f2ad27ca4d439f351"
22
22
  }