@redneckz/wildless-cms-uni-blocks 0.14.1002 → 0.14.1003
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/bundle/bundle.umd.js +3 -3
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js +1 -1
- package/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -1
- package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
- package/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
- package/lib/common.css +1 -1
- package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js +1 -1
- package/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -1
- package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
- package/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -3
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js +1 -1
- package/mobile/dist/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -1
- package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
- package/mobile/dist/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
- package/mobile/lib/common.css +1 -1
- package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js +1 -1
- package/mobile/lib/components/RkoTariffCardsTable/RkoTariffCardsTable.js.map +1 -1
- package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js +1 -1
- package/mobile/lib/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.js.map +1 -1
- package/mobile/src/components/RkoTariffCardsTable/RkoTariffCardsTable.tsx +1 -1
- package/mobile/src/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.tsx +2 -2
- package/package.json +1 -1
- package/src/components/RkoTariffCardsTable/RkoTariffCardsTable.tsx +1 -1
- package/src/components/RkoTariffCardsTable/renderRkoTariffsTableHeader.tsx +2 -2
package/bundle/bundle.umd.js
CHANGED
|
@@ -9233,7 +9233,7 @@
|
|
|
9233
9233
|
};
|
|
9234
9234
|
|
|
9235
9235
|
const renderRkoTariffsTableHeader = ({ params, className }) => {
|
|
9236
|
-
return params ? (jsxs("div", { className: style(className), children: [jsx("div", { children: jsx(Text, { size: "text-xs", font: "font-medium",
|
|
9236
|
+
return params ? (jsxs("div", { className: style(className), children: [jsx("div", { className: "col-span-2", children: jsx(Text, { size: "text-xs", font: "font-medium", children: RKO_COMMISSIONS_TITLE_MAP['tariffName'] }) }), params.map((param, index) => (jsx("div", { children: jsx(Text, { size: "text-xs", font: "font-medium", children: RKO_COMMISSIONS_TITLE_MAP[param] }) }, index)))] })) : null;
|
|
9237
9237
|
};
|
|
9238
9238
|
|
|
9239
9239
|
const renderCommissionSum = (value, currency, className) => (jsxs(Text, { className: className, children: [value?.toLocaleString(), "\u00A0", (currency ?? RKO_DEFAULT_CURRENCY).text] }));
|
|
@@ -9288,7 +9288,7 @@
|
|
|
9288
9288
|
const isMobileMode = useMobileMode();
|
|
9289
9289
|
const commissionTypes = getSortedCommissionTypes(items) ?? [];
|
|
9290
9290
|
const columnsCount = commissionTypes.length + 4; // 2 на "Название тарифа" и 2 на кнопку
|
|
9291
|
-
const tableLayoutStyle = `lg:grid lg:grid-cols-${String(columnsCount)} gap-m`;
|
|
9291
|
+
const tableLayoutStyle = `lg:grid lg:grid-cols-${String(columnsCount)} gap-m lg:px-xl px-3xl`;
|
|
9292
9292
|
return (jsxs("div", { className: "lg:space-y-m space-y-xl w-full", children: [isMobileMode
|
|
9293
9293
|
? null
|
|
9294
9294
|
: renderRkoTariffsTableHeader({
|
|
@@ -14143,7 +14143,7 @@
|
|
|
14143
14143
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
14144
14144
|
});
|
|
14145
14145
|
|
|
14146
|
-
const packageVersion = "0.14.
|
|
14146
|
+
const packageVersion = "0.14.1002";
|
|
14147
14147
|
|
|
14148
14148
|
exports.Blocks = Blocks;
|
|
14149
14149
|
exports.ContentPage = ContentPage;
|