@rafal.lemieszewski/tide-ui 0.2.2 → 0.3.0

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.
Files changed (34) hide show
  1. package/dist/components/index.d.ts +17 -0
  2. package/dist/components/ui/alert.d.ts +1 -1
  3. package/dist/components/ui/avatar.d.ts +3 -3
  4. package/dist/components/ui/badge.d.ts +1 -1
  5. package/dist/components/ui/button.d.ts +1 -1
  6. package/dist/components/ui/chart.d.ts +7 -5
  7. package/dist/components/ui/checkbox.d.ts +1 -1
  8. package/dist/components/ui/combobox.d.ts +18 -4
  9. package/dist/components/ui/command.d.ts +1 -1
  10. package/dist/components/ui/drawer.d.ts +22 -0
  11. package/dist/components/ui/dropdown-menu.d.ts +59 -15
  12. package/dist/components/ui/editable.d.ts +4 -2
  13. package/dist/components/ui/empty-state.d.ts +1 -1
  14. package/dist/components/ui/input.d.ts +1 -1
  15. package/dist/components/ui/linked-chart.d.ts +2 -1
  16. package/dist/components/ui/progress.d.ts +1 -1
  17. package/dist/components/ui/radio-group.d.ts +1 -1
  18. package/dist/components/ui/select.d.ts +1 -1
  19. package/dist/components/ui/sheet.d.ts +1 -1
  20. package/dist/components/ui/sidebar.d.ts +2 -3
  21. package/dist/components/ui/skeleton.d.ts +2 -2
  22. package/dist/components/ui/sortable.d.ts +1 -1
  23. package/dist/components/ui/spinner.d.ts +1 -1
  24. package/dist/components/ui/textarea.d.ts +1 -1
  25. package/dist/index.cjs.js +1755 -1657
  26. package/dist/index.cjs.js.map +1 -1
  27. package/dist/index.es.js +39435 -17155
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/lib/hooks.d.ts +11 -0
  30. package/dist/lib/index.d.ts +1 -0
  31. package/dist/style.css +1 -1
  32. package/package.json +4 -3
  33. package/dist/components/ui/drop-drawer.d.ts +0 -28
  34. package/dist/components/ui/typography.d.ts +0 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rafal.lemieszewski/tide-ui",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "description": "A comprehensive React component library built with Tailwind CSS and Radix UI primitives",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs.js",
@@ -55,8 +55,8 @@
55
55
  },
56
56
  "optionalDependencies": {
57
57
  "@rollup/rollup-linux-x64-gnu": "^4.46.2",
58
- "lightningcss-linux-x64-gnu": "^1.30.1",
59
- "@tailwindcss/oxide-linux-x64-gnu": "^4.1.11"
58
+ "@tailwindcss/oxide-linux-x64-gnu": "^4.1.11",
59
+ "lightningcss-linux-x64-gnu": "^1.30.1"
60
60
  },
61
61
  "dependencies": {
62
62
  "@dnd-kit/core": "^6.3.1",
@@ -102,6 +102,7 @@
102
102
  "sonner": "^2.0.7",
103
103
  "tailwind-merge": "^3.3.1",
104
104
  "tailwindcss": "^4.1.11",
105
+ "vaul": "^1.1.2",
105
106
  "zod": "^4.0.16"
106
107
  },
107
108
  "devDependencies": {
@@ -1,28 +0,0 @@
1
- import * as React from "react";
2
- import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
3
- declare const DropDrawer: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
4
- declare const DropDrawerTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
5
- declare const DropDrawerGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
6
- declare const DropDrawerPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
7
- declare const DropDrawerSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
8
- declare const DropDrawerRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
9
- declare const DropDrawerSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
10
- inset?: boolean;
11
- } & React.RefAttributes<HTMLDivElement>>;
12
- declare const DropDrawerSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
13
- declare const DropDrawerContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
14
- declare const DropDrawerItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
15
- inset?: boolean;
16
- destructive?: boolean;
17
- } & React.RefAttributes<HTMLDivElement>>;
18
- declare const DropDrawerCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
19
- declare const DropDrawerRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
20
- declare const DropDrawerLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
21
- inset?: boolean;
22
- } & React.RefAttributes<HTMLDivElement>>;
23
- declare const DropDrawerSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
24
- declare const DropDrawerShortcut: {
25
- ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
26
- displayName: string;
27
- };
28
- export { DropDrawer, DropDrawerTrigger, DropDrawerContent, DropDrawerItem, DropDrawerCheckboxItem, DropDrawerRadioItem, DropDrawerLabel, DropDrawerSeparator, DropDrawerShortcut, DropDrawerGroup, DropDrawerPortal, DropDrawerSub, DropDrawerSubContent, DropDrawerSubTrigger, DropDrawerRadioGroup, };
@@ -1,10 +0,0 @@
1
- import { VariantProps } from 'class-variance-authority';
2
- import * as React from "react";
3
- declare const typographyVariants: (props?: ({
4
- variant?: "h2" | "h3" | "p" | "blockquote" | "code" | "h1" | "h4" | "h5" | "h6" | "small" | "large" | "lead" | "muted" | null | undefined;
5
- } & import('class-variance-authority/types').ClassProp) | undefined) => string;
6
- export interface TypographyProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof typographyVariants> {
7
- as?: React.ElementType;
8
- }
9
- declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
10
- export { Typography };