@pathscale/ui 0.0.50 → 0.0.52
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 +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6830,7 +6830,7 @@ function useFormValidation() {
|
|
|
6830
6830
|
if (!context) throw new Error("useFormValidation must be used within a ValidatedForm");
|
|
6831
6831
|
return context;
|
|
6832
6832
|
}
|
|
6833
|
-
function
|
|
6833
|
+
function ValidatedForm_ValidatedForm(props) {
|
|
6834
6834
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
6835
6835
|
"children",
|
|
6836
6836
|
"schema",
|
|
@@ -6868,7 +6868,7 @@ function ValidatedForm(props) {
|
|
|
6868
6868
|
}
|
|
6869
6869
|
});
|
|
6870
6870
|
}
|
|
6871
|
-
const
|
|
6871
|
+
const ValidatedForm = ValidatedForm_ValidatedForm;
|
|
6872
6872
|
var Form_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<form role=form>");
|
|
6873
6873
|
const Form = (props)=>{
|
|
6874
6874
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
@@ -6895,7 +6895,7 @@ const Form = (props)=>{
|
|
|
6895
6895
|
};
|
|
6896
6896
|
const form_Form = Object.assign(Form, {
|
|
6897
6897
|
Label: form_Label,
|
|
6898
|
-
Validated:
|
|
6898
|
+
Validated: ValidatedForm
|
|
6899
6899
|
});
|
|
6900
6900
|
const colsMap = {
|
|
6901
6901
|
1: "grid-cols-1",
|
|
@@ -9509,11 +9509,13 @@ const Table = (props)=>{
|
|
|
9509
9509
|
"zebra",
|
|
9510
9510
|
"pinRows",
|
|
9511
9511
|
"pinCols",
|
|
9512
|
+
"hover",
|
|
9512
9513
|
"dataTheme",
|
|
9513
9514
|
"class"
|
|
9514
9515
|
]);
|
|
9515
9516
|
const classes = ()=>twMerge("table", local.class, dist_clsx({
|
|
9516
9517
|
"table-zebra": local.zebra,
|
|
9518
|
+
"table-hover": local.hover,
|
|
9517
9519
|
"table-xl": "xl" === local.size,
|
|
9518
9520
|
"table-lg": "lg" === local.size,
|
|
9519
9521
|
"table-md": "md" === local.size,
|