@augment-vir/web 32.3.0-beta.0 → 32.3.0

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.
@@ -7,5 +7,5 @@
7
7
  */
8
8
  export function isElementVisible(element) {
9
9
  // https://stackoverflow.com/a/21696585
10
- return element.offsetParent !== null;
10
+ return element.offsetParent != null;
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/web",
3
- "version": "32.3.0-beta.0",
3
+ "version": "32.3.0",
4
4
  "description": "A collection of augments, helpers types, functions, and classes only for web (frontend) JavaScript environments.",
5
5
  "keywords": [
6
6
  "augment",
@@ -36,18 +36,18 @@
36
36
  "test:update": "npm test"
37
37
  },
38
38
  "dependencies": {
39
- "@augment-vir/assert": "^32.3.0-beta.0",
40
- "@augment-vir/common": "^32.3.0-beta.0",
39
+ "@augment-vir/assert": "^32.3.0",
40
+ "@augment-vir/common": "^32.3.0",
41
41
  "@date-vir/duration": "^9.1.1",
42
42
  "html-spec-tags": "^2.2.4"
43
43
  },
44
44
  "devDependencies": {
45
- "@augment-vir/test": "^32.3.0-beta.0",
45
+ "@augment-vir/test": "^32.3.0",
46
46
  "bowser": "^2.14.1",
47
47
  "typescript": "^6.0.3"
48
48
  },
49
49
  "peerDependencies": {
50
- "element-vir": "^27.0.0-beta.3"
50
+ "element-vir": "^27.0.0"
51
51
  },
52
52
  "engines": {
53
53
  "node": ">=22"