@jaisocx/css-table-ordered 2.3.5 → 2.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaisocx/css-table-ordered",
3
- "version": "2.3.5",
3
+ "version": "2.4.1",
4
4
  "description": "Css sites tool styling a server side rendered database table data to a grid view, with solutions for sticky scroll and order by on columns via browser's js engine",
5
5
  "author": "Jaisocx",
6
6
  "keywords": [
@@ -14,20 +14,23 @@
14
14
  "README.md",
15
15
  "webpack.aliases.json",
16
16
 
17
+ "css_table_ordered_few_rows_preview.html",
18
+ "css_table_ordered_preview.html",
17
19
  "index.preview.html",
18
- "css_table_ordered_3_records.preview.html",
19
- "css_table_ordered.preview.html",
20
- "css_table_ordered.jaisocx_folder_listing.preview.html",
21
20
 
22
21
  "MediaAndStyles/*.css",
23
- "MediaAndStyles/themes/theme_base",
24
- "MediaAndStyles/themes/theme_fixed_columns_labels",
25
- "MediaAndStyles/themes/theme_jaisocx_folder_listing",
22
+ "MediaAndStyles/themes/theme_base/",
23
+ "MediaAndStyles/themes/theme_fixed_columns_labels/",
24
+ "MediaAndStyles/themes/theme_jaisocx_folder_listing/",
26
25
 
27
- "transpiled/CommonJS",
28
- "transpiled/ESNext",
29
- "transpiled/Simple"
26
+ "transpiled/CommonJS/",
27
+ "transpiled/ESNext/",
28
+ "transpiled/Simple/"
30
29
  ],
30
+ "optionalDependencies": {
31
+ "@jaisocx/css_clean_start_lite": "~1.0.3",
32
+ "@jaisocx/css-table": "~3.5.91"
33
+ },
31
34
  "private": false,
32
35
  "publishConfig": {
33
36
  "access": "public"
@@ -45,11 +48,5 @@
45
48
  "import": "./transpiled/ESNext/webpack.aliases.mjs",
46
49
  "require": "./transpiled/CommonJS/webpack.aliases.cjs"
47
50
  }
48
- },
49
- "optionalDependencies": {
50
- "@jaisocx/css-table": "~3.5.91",
51
- "@jaisocx/css_clean_start_lite": "~1.0.3"
52
51
  }
53
52
  }
54
-
55
-
@@ -38,8 +38,8 @@ class CssTableScroll {
38
38
 
39
39
  while (rowId < rowsNumber) {
40
40
  tb = tableRowsHolder[rowId];
41
- tb.addEventListener (
42
- "wheel",
41
+ tb.addEventListener(
42
+ "scroll",
43
43
  (evt) => {
44
44
  this.onTableScroll(evt);
45
45
  }
@@ -2,3 +2,4 @@
2
2
  "@CssTableOrdered_MediaAndStyles": "${packageRoot}/MediaAndStyles/"
3
3
  }
4
4
 
5
+