shekel-fe-shared-lib 1.0.38 → 1.0.39

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.
@@ -1 +1,3 @@
1
1
  export * from './components';
2
+ export { ShekelProvider, shekelTheme } from './theme';
3
+ export type { ShekelProviderProps } from './theme';
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { ThemeConfig } from 'antd';
3
+ export declare const shekelTheme: ThemeConfig;
4
+ export type ShekelProviderProps = {
5
+ children: React.ReactNode;
6
+ theme?: ThemeConfig;
7
+ };
8
+ export declare const ShekelProvider: ({ children, theme }: ShekelProviderProps) => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shekel-fe-shared-lib",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "Shared component library built with React and Tailwind CSS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",