simple-table-core 0.2.3 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +14 -15
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -68,7 +68,7 @@ All styles for the Simple Table are customizable and can be found in the `table.
68
68
  You can override the following CSS variables to customize the appearance of the table:
69
69
 
70
70
  - `--st-border-radius`
71
- - `--st-table-border-color`
71
+ - `--st-border-color`
72
72
  - `--st-border-width`
73
73
  - `--st-resize-handle-color`
74
74
  - `--st-separator-border-color`
@@ -87,22 +87,21 @@ You can override the following CSS variables to customize the appearance of the
87
87
 
88
88
  The following CSS class names are used in the table and can be customized:
89
89
 
90
- - `.st-table-wrapper`
90
+ - `.st-wrapper`
91
91
  - `.st-table`
92
- - `.st-table-header-cell`
93
- - `.st-table-cell`
94
- - `.st-table-header-label`
95
- - `.st-table-header-resize-handle`
96
- - `.st-table-row-separator`
97
- - `.st-table-cell-odd-row`
92
+ - `.st-header-cell`
93
+ - `.st-cell`
94
+ - `.st-header-label`
95
+ - `.st-header-resize-handle`
96
+ - `.st-row-separator`
97
+ - `.st-cell-odd-row`
98
98
  - `.st-dragging`
99
- - `.st-table-cell-selected`
100
- - `.st-table-cell-selected-first`
101
- - `.border-top-blue`
102
- - `.border-bottom-blue`
103
- - `.border-left-blue`
104
- - `.border-right-blue`
105
- - `.border-top-white`
99
+ - `.st-cell-selected`
100
+ - `.st-cell-selected-first`
101
+ - `.st-selected-top-border`
102
+ - `.st-selected-bottom-border`
103
+ - `.st-selected-left-border`
104
+ - `.st-selected-right-border`
106
105
  - `.st-footer`
107
106
  - `.st-next-prev-btn`
108
107
  - `.st-page-btn`
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "simple-table-core",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
7
+ "license": "MIT",
7
8
  "files": [
8
9
  "dist"
9
10
  ],
@@ -38,7 +39,7 @@
38
39
  "webpack": "^5.95.0"
39
40
  },
40
41
  "scripts": {
41
- "publish": "npm run build && npm publish && git push",
42
+ "publish": "npm run build && git add . && git commit -m \"$npm_config_message\" && npm publish && git push",
42
43
  "build": "rollup -c",
43
44
  "start": "storybook dev -p 6006",
44
45
  "build-storybook": "storybook build"