@bigbinary/neeto-themes-frontend 2.0.10 → 2.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  import { shallow } from 'zustand/shallow';
2
2
  import { useEffect, createElement, useState, useRef, memo, useCallback } from 'react';
3
3
  import { t as t$1 } from 'i18next';
4
- import { isNotPresent, snakeToCamelCase, filterBy, findBy, isPresent, isNot, findIndexBy, toLabelAndValue, humanize, isNotEmpty, noop } from '@bigbinary/neeto-cist';
4
+ import { isNotPresent, snakeToCamelCase, filterBy, findBy, isPresent, isNot, hyphenate, findIndexBy, toLabelAndValue, humanize, isNotEmpty, noop } from '@bigbinary/neeto-cist';
5
5
  import { withImmutableActions, useMutationWithInvalidation, withT, withTitle } from '@bigbinary/neeto-commons-frontend/react-utils';
6
6
  import Spinner from '@bigbinary/neetoui/Spinner';
7
7
  import { useQuery } from '@tanstack/react-query';
@@ -187,7 +187,7 @@ var setTheme = function setTheme(theme, variableNamesMap, themeConfig) {
187
187
  if (isNotPresent(theme === null || theme === void 0 ? void 0 : theme.properties)) return;
188
188
  theme.properties.forEach(function (property) {
189
189
  var attribute = snakeToCamelCase(property.key);
190
- if (!isPropertyIndependent(property.key, theme, themeConfig)) {
190
+ if (property.kind !== "overlay_opacity" && !isPropertyIndependent(property.key, theme, themeConfig)) {
191
191
  setVariable(attribute, "", variableNamesMap);
192
192
  return;
193
193
  }
@@ -549,6 +549,7 @@ var Card$2 = function Card(_ref) {
549
549
  children = _ref.children;
550
550
  return /*#__PURE__*/jsxs("div", {
551
551
  className: "neeto-ui-border-gray-300 neeto-ui-rounded-lg neeto-ui-bg-white space-y-3 border p-4",
552
+ "data-cy": "theme-".concat(hyphenate(title), "-properties"),
552
553
  children: [title && /*#__PURE__*/jsx("div", {
553
554
  className: "flex items-center justify-between",
554
555
  children: /*#__PURE__*/jsx(Typography, {
@@ -1605,6 +1606,7 @@ var Themes = function Themes(_ref) {
1605
1606
  children: t("neetoThemes.build.leftSideBar.themes.systemThemes")
1606
1607
  }), /*#__PURE__*/jsx("div", {
1607
1608
  className: "flex flex-col gap-4 px-4 pb-10 lg:px-5 xl:px-6",
1609
+ "data-cy": "system-themes",
1608
1610
  children: filteredDefaultThemes.map(function (theme) {
1609
1611
  return /*#__PURE__*/createElement(Card$1, {
1610
1612
  onApplyTheme: onApplyTheme,
@@ -1630,6 +1632,7 @@ var Themes = function Themes(_ref) {
1630
1632
  children: t("neetoThemes.build.leftSideBar.themes.customThemes")
1631
1633
  }), /*#__PURE__*/jsx("div", {
1632
1634
  className: "flex flex-col gap-4 px-6",
1635
+ "data-cy": "custom-themes",
1633
1636
  children: filteredThemes.map(function (theme) {
1634
1637
  var isActive = (currentTheme === null || currentTheme === void 0 ? void 0 : currentTheme.id) === theme.id;
1635
1638
  var isPreviewing = (previewingTheme === null || previewingTheme === void 0 ? void 0 : previewingTheme.id) === theme.id;