bolt-table 0.1.42 → 0.1.43

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/dist/index.js CHANGED
@@ -114,10 +114,30 @@ Total rows: ${Y.length}`;e=await io(de,t,"Analyze this data and provide key insi
114
114
  margin: 0;
115
115
  vertical-align: middle;
116
116
  }
117
+ [data-bt-check][type="radio"] {
118
+ border-radius: 50%;
119
+ }
117
120
  [data-bt-check]:checked {
118
121
  background: ${p};
119
122
  border-color: ${p};
120
123
  }
124
+ [data-bt-check][type="radio"]:checked {
125
+ background: transparent;
126
+ border-color: ${p};
127
+ border-width: 1.5px;
128
+ }
129
+ [data-bt-check][type="radio"]:checked::after {
130
+ content: '';
131
+ position: absolute;
132
+ top: 50%;
133
+ left: 50%;
134
+ width: 7px;
135
+ height: 7px;
136
+ border-radius: 50%;
137
+ background: ${p};
138
+ transform: translate(-50%, -50%);
139
+ border: none;
140
+ }
121
141
  [data-bt-check]:checked::after {
122
142
  content: '';
123
143
  position: absolute;
package/dist/index.mjs CHANGED
@@ -114,10 +114,30 @@ Total rows: ${Y.length}`;e=await io(de,t,"Analyze this data and provide key insi
114
114
  margin: 0;
115
115
  vertical-align: middle;
116
116
  }
117
+ [data-bt-check][type="radio"] {
118
+ border-radius: 50%;
119
+ }
117
120
  [data-bt-check]:checked {
118
121
  background: ${p};
119
122
  border-color: ${p};
120
123
  }
124
+ [data-bt-check][type="radio"]:checked {
125
+ background: transparent;
126
+ border-color: ${p};
127
+ border-width: 1.5px;
128
+ }
129
+ [data-bt-check][type="radio"]:checked::after {
130
+ content: '';
131
+ position: absolute;
132
+ top: 50%;
133
+ left: 50%;
134
+ width: 7px;
135
+ height: 7px;
136
+ border-radius: 50%;
137
+ background: ${p};
138
+ transform: translate(-50%, -50%);
139
+ border: none;
140
+ }
121
141
  [data-bt-check]:checked::after {
122
142
  content: '';
123
143
  position: absolute;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bolt-table",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "Virtualized React table with column drag & drop, pinning, resizing, sorting, filtering, and pagination.",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",