conversion-ui-library 1.1.25 → 1.1.26
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/components/Table/table.stories.d.ts +1 -0
- package/dist/components/Table/table.stories.d.ts.map +1 -1
- package/dist/components/Table/tableComponent.d.ts +1 -0
- package/dist/components/Table/tableComponent.d.ts.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +10 -4
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -34260,10 +34260,16 @@ const wke = ({
|
|
|
34260
34260
|
{
|
|
34261
34261
|
style: { width: o.width },
|
|
34262
34262
|
className: `text-xs font-semibold text-gray-500 ${o.className ?? ""}`,
|
|
34263
|
-
children: /* @__PURE__ */ T(
|
|
34264
|
-
|
|
34265
|
-
|
|
34266
|
-
|
|
34263
|
+
children: /* @__PURE__ */ T(
|
|
34264
|
+
"div",
|
|
34265
|
+
{
|
|
34266
|
+
className: R("flex items-center gap-2", o.headerClassName),
|
|
34267
|
+
children: [
|
|
34268
|
+
o.headerIcon,
|
|
34269
|
+
o.header
|
|
34270
|
+
]
|
|
34271
|
+
}
|
|
34272
|
+
)
|
|
34267
34273
|
},
|
|
34268
34274
|
a
|
|
34269
34275
|
)) }) }),
|