@yuneta/gobj-ui 7.13.2 → 7.13.3
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 +1 -1
- package/src/c_yui_form.js +7 -2
package/package.json
CHANGED
package/src/c_yui_form.js
CHANGED
|
@@ -62,10 +62,15 @@ import {plan_toolbar} from "./form_toolbar_plan.js";
|
|
|
62
62
|
* dialog rebuilds the form on every open, and re-rendering a form under
|
|
63
63
|
* the user mid-edit would throw away what they typed. */
|
|
64
64
|
import {yui_is_dark} from "./yui_theme.js";
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
/* ORDER MATTERS, and it is this way round: `tabulator.css` is OUR sheet of
|
|
66
|
+
* fixes ON TOP of Tabulator's theme, and at equal specificity the cascade is
|
|
67
|
+
* decided by which one the bundle emits last. Imported before the theme (as
|
|
68
|
+
* it was), every fix that does not out-specify the theme silently loses --
|
|
69
|
+
* the header-filter border did, in every app that mounts a form. */
|
|
67
70
|
import "tabulator-tables/dist/css/tabulator.min.css"; // Import Tabulator CSS
|
|
68
71
|
import "tabulator-tables/dist/css/tabulator_bulma.css";
|
|
72
|
+
|
|
73
|
+
import "./tabulator.css";
|
|
69
74
|
import { TabulatorFull as Tabulator } from "tabulator-tables"; // Import Full Tabulator JS
|
|
70
75
|
// import { Tabulator } from "tabulator-tables"; // Import light Tabulator JS
|
|
71
76
|
|