@1d1s/design-system 0.2.1 → 0.2.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/components/BannerCarousel/BannerCarousel.d.ts +41 -0
- package/dist/components/BannerCarousel/BannerCarousel.stories.d.ts +9 -0
- package/dist/components/BannerCarousel/index.d.ts +1 -0
- package/dist/components/GoalAddList/GoalAddList.d.ts +15 -0
- package/dist/components/GoalAddList/GoalAddList.stories.d.ts +7 -0
- package/dist/components/GoalAddList/index.d.ts +1 -0
- package/dist/components/Icons/Bell.d.ts +2 -0
- package/dist/components/Icons/BookOpen.d.ts +2 -0
- package/dist/components/Icons/Code2.d.ts +2 -0
- package/dist/components/Icons/Icon.d.ts +9 -0
- package/dist/components/Icons/LogIn.d.ts +2 -0
- package/dist/components/Icons/Palette.d.ts +2 -0
- package/dist/components/Icons/PencilLine.d.ts +2 -0
- package/dist/components/Icons/Plane.d.ts +2 -0
- package/dist/components/Icons/ProgressRing.d.ts +10 -0
- package/dist/components/Icons/Salad.d.ts +2 -0
- package/dist/components/Icons/Settings.d.ts +2 -0
- package/dist/components/Icons/index.d.ts +10 -0
- package/dist/components/RightSidebar/RightSidebar.d.ts +7 -3
- package/dist/components/RightSidebar/RightSidebar.stories.d.ts +1 -0
- package/dist/components/Tag/Tag.d.ts +3 -2
- package/dist/components/index.d.ts +2 -1
- package/dist/index.es.js +3838 -3597
- package/dist/index.umd.js +12 -12
- package/package.json +1 -1
- package/dist/components/ProfileCard/ProfileCard.d.ts +0 -6
- package/dist/components/ProfileCard/ProfileCard.stories.d.ts +0 -7
- package/dist/components/ProfileCard/index.d.ts +0 -1
- package/dist/components/Ui/Button.d.ts +0 -11
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { ProfileCard } from './ProfileCard';
|
|
3
|
-
declare const meta: Meta<typeof ProfileCard>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof ProfileCard>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Expanded: Story;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './ProfileCard';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { VariantProps } from 'class-variance-authority';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
declare const buttonVariants: (props?: ({
|
|
4
|
-
variant?: "link" | "default" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
|
|
5
|
-
size?: "default" | "icon" | "sm" | "lg" | null | undefined;
|
|
6
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
7
|
-
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
8
|
-
asChild?: boolean;
|
|
9
|
-
}
|
|
10
|
-
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
11
|
-
export { Button, buttonVariants };
|