fui-material 1.23.9 → 1.23.11

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.
@@ -951,7 +951,7 @@ const G0 = ({
951
951
  // Если xxl не задано, используем xl, lg, md, sm или xs
952
952
  }, w = () => {
953
953
  const x = [];
954
- return f.xs !== void 0 && x.push(`col-${f.xs}`), f.sm !== void 0 && x.push(`col-sm-${f.sm}`), f.md !== void 0 && x.push(`col-md-${f.md}`), f.lg !== void 0 && x.push(`col-lg-${f.lg}`), f.xl !== void 0 && x.push(`col-xl-${f.xl}`), f.xxl !== void 0 && x.push(`col-xxl-${f.xxl}`), d && x.push(d), x.join(" ");
954
+ return d ? "col" : (f.xs !== void 0 && x.push(`col-${f.xs}`), f.sm !== void 0 && x.push(`col-sm-${f.sm}`), f.md !== void 0 && x.push(`col-md-${f.md}`), f.lg !== void 0 && x.push(`col-lg-${f.lg}`), f.xl !== void 0 && x.push(`col-xl-${f.xl}`), f.xxl !== void 0 && x.push(`col-xxl-${f.xxl}`), x.join(" "));
955
955
  };
956
956
  return /* @__PURE__ */ _.jsxs(_.Fragment, { children: [
957
957
  s === "container" && /* @__PURE__ */ _.jsx("div", { className: `container ${i}`, style: p, id: n, children: e }),
@@ -12,7 +12,7 @@ export interface IFGrid {
12
12
  lg?: number;
13
13
  xl?: number;
14
14
  xxl?: number;
15
- colAuto?: "col-sm-auto" | "col-md-auto" | "col-lg-auto" | "col-xl-auto" | "col-xxl-auto";
15
+ colAuto?: boolean;
16
16
  }
17
17
  declare const FGrid: FC<IFGrid>;
18
18
  export default FGrid;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fui-material",
3
- "version": "1.23.9",
3
+ "version": "1.23.11",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "allorion-exporting-html-to-docx": "1.3.0",
21
- "allorion-exporting-html-to-xlsx": "1.5.0",
21
+ "allorion-exporting-html-to-xlsx": "1.6.0",
22
22
  "axios": "^1.7.4",
23
23
  "jszip": "^3.10.1",
24
24
  "react": "18.3.1",