@teselagen/ui 0.10.11 → 0.10.14
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/index.cjs.js +9 -3
- package/index.es.js +9 -3
- package/package.json +1 -1
- package/src/DataTable/index.js +1 -3
- package/src/ResizableDraggableDialog/index.js +5 -1
package/index.cjs.js
CHANGED
|
@@ -57001,8 +57001,7 @@ const DataTable = /* @__PURE__ */ __name((_M) => {
|
|
|
57001
57001
|
entities: normalizedEntities
|
|
57002
57002
|
});
|
|
57003
57003
|
}
|
|
57004
|
-
const
|
|
57005
|
-
const convertedSchema = React.useMemo(() => convertSchema(__schema), [__schema]);
|
|
57004
|
+
const convertedSchema = React.useMemo(() => convertSchema(_schema), [_schema]);
|
|
57006
57005
|
if (isLocalCall) {
|
|
57007
57006
|
if (!noForm && (!formName || formName === "tgDataTable")) {
|
|
57008
57007
|
throw new Error(
|
|
@@ -71078,7 +71077,14 @@ const _ResizableDraggableDialog = class _ResizableDraggableDialog extends React.
|
|
|
71078
71077
|
usePortal: false,
|
|
71079
71078
|
canEscapeKeyClose: true
|
|
71080
71079
|
}, rest), {
|
|
71081
|
-
title: /* @__PURE__ */ React.createElement("div", { style: { display: "flex", alignItems: "center", gap: 8 } }, /* @__PURE__ */ React.createElement(
|
|
71080
|
+
title: /* @__PURE__ */ React.createElement("div", { style: { display: "flex", alignItems: "center", gap: 8 } }, /* @__PURE__ */ React.createElement(
|
|
71081
|
+
core.Icon,
|
|
71082
|
+
{
|
|
71083
|
+
size: "14",
|
|
71084
|
+
"data-tip": "I'm a resizable draggable dialog!",
|
|
71085
|
+
icon: "move"
|
|
71086
|
+
}
|
|
71087
|
+
), rest.title)
|
|
71082
71088
|
})
|
|
71083
71089
|
)
|
|
71084
71090
|
)
|
package/index.es.js
CHANGED
|
@@ -56983,8 +56983,7 @@ const DataTable = /* @__PURE__ */ __name((_M) => {
|
|
|
56983
56983
|
entities: normalizedEntities
|
|
56984
56984
|
});
|
|
56985
56985
|
}
|
|
56986
|
-
const
|
|
56987
|
-
const convertedSchema = useMemo(() => convertSchema(__schema), [__schema]);
|
|
56986
|
+
const convertedSchema = useMemo(() => convertSchema(_schema), [_schema]);
|
|
56988
56987
|
if (isLocalCall) {
|
|
56989
56988
|
if (!noForm && (!formName || formName === "tgDataTable")) {
|
|
56990
56989
|
throw new Error(
|
|
@@ -71060,7 +71059,14 @@ const _ResizableDraggableDialog = class _ResizableDraggableDialog extends React_
|
|
|
71060
71059
|
usePortal: false,
|
|
71061
71060
|
canEscapeKeyClose: true
|
|
71062
71061
|
}, rest), {
|
|
71063
|
-
title: /* @__PURE__ */ React__default.createElement("div", { style: { display: "flex", alignItems: "center", gap: 8 } }, /* @__PURE__ */ React__default.createElement(
|
|
71062
|
+
title: /* @__PURE__ */ React__default.createElement("div", { style: { display: "flex", alignItems: "center", gap: 8 } }, /* @__PURE__ */ React__default.createElement(
|
|
71063
|
+
Icon,
|
|
71064
|
+
{
|
|
71065
|
+
size: "14",
|
|
71066
|
+
"data-tip": "I'm a resizable draggable dialog!",
|
|
71067
|
+
icon: "move"
|
|
71068
|
+
}
|
|
71069
|
+
), rest.title)
|
|
71064
71070
|
})
|
|
71065
71071
|
)
|
|
71066
71072
|
)
|
package/package.json
CHANGED
package/src/DataTable/index.js
CHANGED
|
@@ -205,9 +205,7 @@ const DataTable = ({
|
|
|
205
205
|
entities: normalizedEntities
|
|
206
206
|
};
|
|
207
207
|
}
|
|
208
|
-
const
|
|
209
|
-
|
|
210
|
-
const convertedSchema = useMemo(() => convertSchema(__schema), [__schema]);
|
|
208
|
+
const convertedSchema = useMemo(() => convertSchema(_schema), [_schema]);
|
|
211
209
|
|
|
212
210
|
if (isLocalCall) {
|
|
213
211
|
if (!noForm && (!formName || formName === "tgDataTable")) {
|
|
@@ -136,7 +136,11 @@ export default class ResizableDraggableDialog extends React.Component {
|
|
|
136
136
|
{...rest}
|
|
137
137
|
title={
|
|
138
138
|
<div style={{ display: "flex", alignItems: "center", gap: 8 }}>
|
|
139
|
-
<Icon
|
|
139
|
+
<Icon
|
|
140
|
+
size="14"
|
|
141
|
+
data-tip="I'm a resizable draggable dialog!"
|
|
142
|
+
icon="move"
|
|
143
|
+
></Icon>
|
|
140
144
|
{rest.title}
|
|
141
145
|
</div>
|
|
142
146
|
}
|