@syscore/ui-library 1.3.6 → 1.4.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.
- package/client/components/icons/ConceptIcons.tsx +2 -74
- package/client/components/ui/hero-section.tsx +45 -0
- package/client/components/ui/navigation.tsx +237 -76
- package/client/components/ui/standard-navigation.tsx +578 -0
- package/client/global.css +15 -3
- package/client/lib/concept-colors.ts +115 -0
- package/client/lib/concept-icons.ts +45 -0
- package/client/ui/Card.stories.tsx +2 -98
- package/client/ui/Hero.stories.tsx +72 -0
- package/client/ui/Navigation.stories.tsx +30 -21
- package/client/ui/Panel.stories.tsx +480 -0
- package/client/ui/StandardNavigation.stories.tsx +399 -0
- package/dist/img/half-sphere.png +0 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.es.js +764 -189
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ import { ChartTooltip } from '../client/components/ui/chart';
|
|
|
53
53
|
import { ChartTooltipContent } from '../client/components/ui/chart';
|
|
54
54
|
import { Checkbox } from '../client/components/ui/checkbox';
|
|
55
55
|
import { cn } from '../client/lib/utils';
|
|
56
|
+
import { CodeBadge } from '../client/components/ui/code-badge';
|
|
56
57
|
import { Collapsible } from '../client/components/ui/collapsible';
|
|
57
58
|
import { CollapsibleContent } from '../client/components/ui/collapsible';
|
|
58
59
|
import { CollapsibleTrigger } from '../client/components/ui/collapsible';
|
|
@@ -66,7 +67,7 @@ import { CommandList } from '../client/components/ui/command';
|
|
|
66
67
|
import { CommandSeparator } from '../client/components/ui/command';
|
|
67
68
|
import { CommandShortcut } from '../client/components/ui/command';
|
|
68
69
|
import { ConceptColor } from '../client/components/icons/ConceptIcons';
|
|
69
|
-
import { conceptColors } from '../client/
|
|
70
|
+
import { conceptColors } from '../client/lib/concept-colors';
|
|
70
71
|
import { ContextMenu } from '../client/components/ui/context-menu';
|
|
71
72
|
import { ContextMenuCheckboxItem } from '../client/components/ui/context-menu';
|
|
72
73
|
import { ContextMenuContent } from '../client/components/ui/context-menu';
|
|
@@ -236,6 +237,7 @@ import { Skeleton } from '../client/components/ui/skeleton';
|
|
|
236
237
|
import { Slider } from '../client/components/ui/slider';
|
|
237
238
|
import { Toaster as Sonner } from '../client/components/ui/sonner';
|
|
238
239
|
import { StandardLogo } from '../client/components/icons/StandardLogo';
|
|
240
|
+
import { StandardNavigation } from '../client/components/ui/standard-navigation';
|
|
239
241
|
import { Switch } from '../client/components/ui/switch';
|
|
240
242
|
import { Tab } from '../client/hooks/use-tabs';
|
|
241
243
|
import { Table } from '../client/components/ui/table';
|
|
@@ -412,6 +414,8 @@ export { Checkbox }
|
|
|
412
414
|
|
|
413
415
|
export { cn }
|
|
414
416
|
|
|
417
|
+
export { CodeBadge }
|
|
418
|
+
|
|
415
419
|
export { Collapsible }
|
|
416
420
|
|
|
417
421
|
export { CollapsibleContent }
|
|
@@ -778,6 +782,8 @@ export { Sonner }
|
|
|
778
782
|
|
|
779
783
|
export { StandardLogo }
|
|
780
784
|
|
|
785
|
+
export { StandardNavigation }
|
|
786
|
+
|
|
781
787
|
export { Switch }
|
|
782
788
|
|
|
783
789
|
export { Tab }
|