vevet 3.0.0-beta.10 → 3.0.0-beta.11

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.
@@ -78,7 +78,7 @@ var CustomCursor = /** @class */ (function (_super) {
78
78
  /** DOM parent for the cursor element */
79
79
  get: function () {
80
80
  if (this.container instanceof Window) {
81
- return this.app.html;
81
+ return this.app.body;
82
82
  }
83
83
  return this.container;
84
84
  },
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- var version = '3.0.0-beta.10';
3
+ var version = '3.0.0-beta.11';
4
4
  exports.default = version;
5
5
  //# sourceMappingURL=version.js.map
@@ -19,7 +19,7 @@ export class CustomCursor extends ComponentClass {
19
19
  /** DOM parent for the cursor element */
20
20
  get domContainer() {
21
21
  if (this.container instanceof Window) {
22
- return this.app.html;
22
+ return this.app.body;
23
23
  }
24
24
  return this.container;
25
25
  }
@@ -1,3 +1,3 @@
1
- const version = '3.0.0-beta.10';
1
+ const version = '3.0.0-beta.11';
2
2
  export default version;
3
3
  //# sourceMappingURL=version.js.map
@@ -19,7 +19,7 @@ $custom-cursor-color: #000 !default;
19
19
  --cursor-w: 50px;
20
20
  --cursor-h: 50px;
21
21
 
22
- &.in-window {
22
+ &.#{$prefix}custom-cursor-in-window {
23
23
  position: fixed;
24
24
  }
25
25
 
@@ -1,3 +1,3 @@
1
- declare const version = "3.0.0-beta.10";
1
+ declare const version = "3.0.0-beta.11";
2
2
  export default version;
3
3
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vevet",
3
- "version": "3.0.0-beta.10",
3
+ "version": "3.0.0-beta.11",
4
4
  "description": "Vevet - a JavaScript library of ready-made solutions and helpers",
5
5
  "scripts": {
6
6
  "storybook": "storybook dev -p 6006",
@@ -46,7 +46,7 @@ export class CustomCursor<
46
46
  /** DOM parent for the cursor element */
47
47
  get domContainer(): HTMLElement {
48
48
  if (this.container instanceof Window) {
49
- return this.app.html;
49
+ return this.app.body;
50
50
  }
51
51
 
52
52
  return this.container as HTMLElement;
@@ -19,7 +19,7 @@ $custom-cursor-color: #000 !default;
19
19
  --cursor-w: 50px;
20
20
  --cursor-h: 50px;
21
21
 
22
- &.in-window {
22
+ &.#{$prefix}custom-cursor-in-window {
23
23
  position: fixed;
24
24
  }
25
25
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- const version = '3.0.0-beta.10';
1
+ const version = '3.0.0-beta.11';
2
2
  export default version;