@youngonesworks/ui 0.1.33 → 0.1.35

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": "@youngonesworks/ui",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
4
4
  "description": "A Youngones UI component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -1,6 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/react-vite';
2
- import { LinkText } from './index';
3
- declare const meta: Meta<typeof LinkText>;
4
- export default meta;
5
- type Story = StoryObj<typeof LinkText>;
6
- export declare const Default: Story;
@@ -1,11 +0,0 @@
1
- import { type ReactElement } from 'react';
2
- interface ILinkText {
3
- children: ReactElement | string | ReactElement[];
4
- classNames?: string;
5
- }
6
- /** @deprecated dont use this anymore, instead use the next link */
7
- export declare const LinkText: {
8
- ({ children, classNames }: ILinkText): import("react/jsx-runtime").JSX.Element;
9
- displayName: string;
10
- };
11
- export {};
File without changes