rte-utils 1.2.89 → 1.2.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rte-utils",
3
- "version": "1.2.89",
3
+ "version": "1.2.90",
4
4
  "description": "React components library in TypeScript for agigox projects",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,8 +0,0 @@
1
- import './ProductionUnitContainer.css';
2
- interface ProductionUnitContainerProps {
3
- bgColor?: string;
4
- children: React.ReactNode;
5
- height?: string;
6
- }
7
- export declare const ProductionUnitContainer: ({ bgColor, children, height, }: ProductionUnitContainerProps) => import("react/jsx-runtime").JSX.Element;
8
- export {};
@@ -1,12 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
- import { ProductionUnitContainer } from './ProductionUnitContainer';
3
- declare const meta: Meta<typeof ProductionUnitContainer>;
4
- export default meta;
5
- type Story = StoryObj<typeof meta>;
6
- export declare const Default: Story;
7
- export declare const WithCustomBackground: Story;
8
- export declare const DarkTheme: Story;
9
- export declare const AutoHeight: Story;
10
- export declare const WithMultipleItems: Story;
11
- export declare const LargeContainer: Story;
12
- export declare const MinimalContainer: Story;