@kolkrabbi/kol-component 0.33.0 → 0.33.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": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.1",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -164,7 +164,10 @@ export default function RecordManager({
|
|
|
164
164
|
{/* the ICON CONTAINER is IconFrame (2026-08-01 ruling), box-model
|
|
165
165
|
* proper (user 2026-08-09, "padding should control the size"):
|
|
166
166
|
* the box stays pinned, the glyph FILLS the content box, and
|
|
167
|
-
* padding is the only inset knob — p-
|
|
167
|
+
* padding is the only inset knob — p-[3px] on user instruction
|
|
168
|
+
* (2026-08-09, "use 3px … use [3px]"); arbitrary utilities have
|
|
169
|
+
* missed consumer generation before — if this renders unpadded
|
|
170
|
+
* in a consumer, this class is why. */}
|
|
168
171
|
<IconFrame
|
|
169
172
|
name="toggle-overlay"
|
|
170
173
|
variant="outline"
|
|
@@ -172,8 +175,7 @@ export default function RecordManager({
|
|
|
172
175
|
iconSize="100%"
|
|
173
176
|
aria-label="Toggle overlay"
|
|
174
177
|
onClick={() => openRecord(row)}
|
|
175
|
-
|
|
176
|
-
className="opacity-0 group-hover:opacity-100 focus-visible:opacity-100"
|
|
178
|
+
className="p-[3px] opacity-0 group-hover:opacity-100 focus-visible:opacity-100"
|
|
177
179
|
/>
|
|
178
180
|
</span>
|
|
179
181
|
),
|