bolt-table 0.1.42 → 0.1.44

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
@@ -147,6 +147,35 @@ Total rows: ${Y.length}`;e=await io(de,t,"Analyze this data and provide key insi
147
147
  opacity: 0.4;
148
148
  cursor: not-allowed;
149
149
  }
150
+ [data-bt-check][type="radio"] {
151
+ appearance: radio;
152
+ -webkit-appearance: radio;
153
+ border: none;
154
+ border-radius: unset;
155
+ background: unset;
156
+ position: static;
157
+ accent-color: ${p};
158
+ }
159
+ [data-bt-check][type="radio"]:checked {
160
+ background: unset;
161
+ border-color: unset;
162
+ }
163
+ [data-bt-check][type="radio"]:checked::after {
164
+ content: none;
165
+ display: none;
166
+ }
167
+ [data-bt-check][type="radio"]:indeterminate {
168
+ background: unset;
169
+ border-color: unset;
170
+ }
171
+ [data-bt-check][type="radio"]:indeterminate::after {
172
+ content: none;
173
+ display: none;
174
+ }
175
+ [data-bt-check][type="radio"]:disabled {
176
+ opacity: 0.4;
177
+ cursor: not-allowed;
178
+ }
150
179
  `}),jsxRuntime.jsx("style",{children:`
151
180
  [data-bt-scroll]::-webkit-scrollbar {
152
181
  width: 6px;
package/dist/index.mjs CHANGED
@@ -147,6 +147,35 @@ Total rows: ${Y.length}`;e=await io(de,t,"Analyze this data and provide key insi
147
147
  opacity: 0.4;
148
148
  cursor: not-allowed;
149
149
  }
150
+ [data-bt-check][type="radio"] {
151
+ appearance: radio;
152
+ -webkit-appearance: radio;
153
+ border: none;
154
+ border-radius: unset;
155
+ background: unset;
156
+ position: static;
157
+ accent-color: ${p};
158
+ }
159
+ [data-bt-check][type="radio"]:checked {
160
+ background: unset;
161
+ border-color: unset;
162
+ }
163
+ [data-bt-check][type="radio"]:checked::after {
164
+ content: none;
165
+ display: none;
166
+ }
167
+ [data-bt-check][type="radio"]:indeterminate {
168
+ background: unset;
169
+ border-color: unset;
170
+ }
171
+ [data-bt-check][type="radio"]:indeterminate::after {
172
+ content: none;
173
+ display: none;
174
+ }
175
+ [data-bt-check][type="radio"]:disabled {
176
+ opacity: 0.4;
177
+ cursor: not-allowed;
178
+ }
150
179
  `}),jsx("style",{children:`
151
180
  [data-bt-scroll]::-webkit-scrollbar {
152
181
  width: 6px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bolt-table",
3
- "version": "0.1.42",
3
+ "version": "0.1.44",
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",