@snksergio/design-system 0.38.0 → 0.38.2
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-lib/chunks/{panel-CmmbJAIs.cjs → panel-2mAYDZnz.cjs} +7 -1
- package/dist-lib/chunks/panel-2mAYDZnz.cjs.map +1 -0
- package/dist-lib/chunks/{panel-BYgb6UTx.mjs → panel-UHzwXqfq.mjs} +7 -1
- package/dist-lib/chunks/panel-UHzwXqfq.mjs.map +1 -0
- package/dist-lib/chunks/textarea-BOEpteRb.cjs.map +1 -1
- package/dist-lib/chunks/textarea-C1QmGVPr.mjs.map +1 -1
- package/dist-lib/index.cjs +1 -1
- package/dist-lib/index.mjs +2 -2
- package/dist-lib/preview/clientes.cjs +1 -1
- package/dist-lib/preview/clientes.mjs +1 -1
- package/dist-lib/src/components/shadcn/alert-dialog.d.ts +15 -5
- package/dist-lib/src/components/shadcn/alert-dialog.d.ts.map +1 -1
- package/dist-lib/src/components/ui/DataTable/column-types/column-type-registry.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist-lib/chunks/panel-BYgb6UTx.mjs.map +0 -1
- package/dist-lib/chunks/panel-CmmbJAIs.cjs.map +0 -1
|
@@ -4415,6 +4415,11 @@ function FloatingPanelField({ label, value }) {
|
|
|
4415
4415
|
/* @__PURE__ */ jsx("span", { className: s.fieldValue(), children: value || "—" })
|
|
4416
4416
|
] });
|
|
4417
4417
|
}
|
|
4418
|
+
const STRUCTURAL_TYPES = /* @__PURE__ */ new Set([
|
|
4419
|
+
// `getActions` → `DataTableActionsCell`. Ver `data-table-row.tsx` (fallback chain
|
|
4420
|
+
// de render, passo 2) e `data-table.tsx` (`isActionsCol`, `headerActions`).
|
|
4421
|
+
"actions"
|
|
4422
|
+
]);
|
|
4418
4423
|
class ColumnTypeRegistry {
|
|
4419
4424
|
constructor() {
|
|
4420
4425
|
__publicField(this, "types", /* @__PURE__ */ new Map());
|
|
@@ -4434,6 +4439,7 @@ class ColumnTypeRegistry {
|
|
|
4434
4439
|
if (typeId && this.types.has(typeId)) {
|
|
4435
4440
|
return this.types.get(typeId);
|
|
4436
4441
|
}
|
|
4442
|
+
if (typeId && !STRUCTURAL_TYPES.has(typeId) && false) ;
|
|
4437
4443
|
const fallback = this.types.get("text");
|
|
4438
4444
|
if (!fallback) {
|
|
4439
4445
|
throw new Error(
|
|
@@ -12967,4 +12973,4 @@ export {
|
|
|
12967
12973
|
DEFAULT_FILTER_OPERATORS as y,
|
|
12968
12974
|
DataTableActionsCell as z
|
|
12969
12975
|
};
|
|
12970
|
-
//# sourceMappingURL=panel-
|
|
12976
|
+
//# sourceMappingURL=panel-UHzwXqfq.mjs.map
|