@tecsinapse/cortex-core 2.0.2-beta.3 → 2.0.2

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/cjs/index.js CHANGED
@@ -74,4 +74,3 @@ exports.spacing = definitions.spacing;
74
74
  exports.textColor = definitions.textColor;
75
75
  exports.zIndex = definitions.zIndex;
76
76
  exports.updateThemeColors = index.updateThemeColors;
77
- exports.updateThemeText = index.updateThemeText;
@@ -28,4 +28,3 @@ const updateThemeColors = ({
28
28
  };
29
29
 
30
30
  exports.updateThemeColors = updateThemeColors;
31
- exports.updateThemeText = updateThemeText;
package/dist/esm/index.js CHANGED
@@ -18,4 +18,4 @@ export { styleInputElement, styleLabelElement, toggle } from './components/toggl
18
18
  export { tooltip, tooltipContainer } from './components/tooltip/tooltip.js';
19
19
  export { manager } from './components/manager/manager.js';
20
20
  export { borderColor, borderRadius, borderWidth, boxShadow, colors, fontFamily, fontSize, spacing, textColor, zIndex } from './tokens/definitions.js';
21
- export { updateThemeColors, updateThemeText } from './utils/index.js';
21
+ export { updateThemeColors } from './utils/index.js';
@@ -25,4 +25,4 @@ const updateThemeColors = ({
25
25
  });
26
26
  };
27
27
 
28
- export { updateThemeColors, updateThemeText };
28
+ export { updateThemeColors };
@@ -1,5 +1,4 @@
1
1
  import { colors } from '../tokens/definitions';
2
- export declare const updateThemeText: (colorName: string, shade: string, hexValue: string) => void;
3
2
  export declare const updateThemeColors: ({ theme, updateText, }: {
4
3
  theme: Partial<typeof colors>;
5
4
  updateText?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tecsinapse/cortex-core",
3
- "version": "2.0.2-beta.3",
3
+ "version": "2.0.2",
4
4
  "license": "MIT",
5
5
  "description": "Core library for tailwindcss based design",
6
6
  "main": "dist/esm/index.js",
@@ -35,5 +35,5 @@
35
35
  "peerDependencies": {
36
36
  "tailwindcss": "^4.1.16"
37
37
  },
38
- "gitHead": "5de99380c3dbe5a345730503a21bf91fc17eba3d"
38
+ "gitHead": "2938207268a97dd154a5c8e49189756a0d48135f"
39
39
  }