@syscore/ui-library 1.8.0 → 1.9.1
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/UtilityTriangleInfo.tsx +30 -0
- package/client/components/ui/accordion.tsx +501 -45
- package/client/components/ui/label.tsx +2 -2
- package/client/components/ui/tag.tsx +34 -7
- package/client/global.css +28 -0
- package/client/ui/Accordion.stories.tsx +430 -0
- package/client/ui/PageHeader.stories.tsx +6 -4
- package/client/ui/Panel.stories.tsx +12 -9
- package/client/ui/Tag.stories.tsx +153 -46
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +30 -30
- package/dist/index.es.js +420 -445
- package/package.json +1 -1
- package/client/components/ui/code-badge.tsx +0 -22
- package/client/components/ui/standard-table.tsx +0 -554
- package/client/ui/Accordion/Accordion.stories.tsx +0 -74
- package/client/ui/CodeBadge.stories.tsx +0 -76
- package/client/ui/StandardTable.stories.tsx +0 -311
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { Accordion } from '../client/components/ui/accordion';
|
|
2
|
+
import { AccordionContainer } from '../client/components/ui/accordion';
|
|
2
3
|
import { AccordionContent } from '../client/components/ui/accordion';
|
|
4
|
+
import { AccordionHeader } from '../client/components/ui/accordion';
|
|
5
|
+
import { AccordionHeaderRow } from '../client/components/ui/accordion';
|
|
3
6
|
import { AccordionItem } from '../client/components/ui/accordion';
|
|
7
|
+
import { AccordionListRow } from '../client/components/ui/accordion';
|
|
8
|
+
import { AccordionSectionHeader } from '../client/components/ui/accordion';
|
|
4
9
|
import { AccordionTrigger } from '../client/components/ui/accordion';
|
|
5
10
|
import { Alert } from '../client/components/ui/alert';
|
|
6
11
|
import { AlertDescription } from '../client/components/ui/alert';
|
|
@@ -55,7 +60,6 @@ import { ChartTooltip } from '../client/components/ui/chart';
|
|
|
55
60
|
import { ChartTooltipContent } from '../client/components/ui/chart';
|
|
56
61
|
import { Checkbox } from '../client/components/ui/checkbox';
|
|
57
62
|
import { cn } from '../client/lib/utils';
|
|
58
|
-
import { CodeBadge } from '../client/components/ui/code-badge';
|
|
59
63
|
import { Collapsible } from '../client/components/ui/collapsible';
|
|
60
64
|
import { CollapsibleContent } from '../client/components/ui/collapsible';
|
|
61
65
|
import { CollapsibleTrigger } from '../client/components/ui/collapsible';
|
|
@@ -254,15 +258,6 @@ import { Slider } from '../client/components/ui/slider';
|
|
|
254
258
|
import { Toaster as Sonner } from '../client/components/ui/sonner';
|
|
255
259
|
import { StandardLogo } from '../client/components/icons/StandardLogo';
|
|
256
260
|
import { StandardNavigation } from '../client/components/ui/standard-navigation';
|
|
257
|
-
import { StandardTable } from '../client/components/ui/standard-table';
|
|
258
|
-
import { StandardTableContainer } from '../client/components/ui/standard-table';
|
|
259
|
-
import { StandardTableContent } from '../client/components/ui/standard-table';
|
|
260
|
-
import { StandardTableHeader } from '../client/components/ui/standard-table';
|
|
261
|
-
import { StandardTableHeaderRow } from '../client/components/ui/standard-table';
|
|
262
|
-
import { StandardTableListRow } from '../client/components/ui/standard-table';
|
|
263
|
-
import { StandardTableRow } from '../client/components/ui/standard-table';
|
|
264
|
-
import { StandardTableRowHeader } from '../client/components/ui/standard-table';
|
|
265
|
-
import { StandardTableTrigger } from '../client/components/ui/standard-table';
|
|
266
261
|
import { Switch } from '../client/components/ui/switch';
|
|
267
262
|
import { Tab } from '../client/hooks/use-tabs';
|
|
268
263
|
import { Table } from '../client/components/ui/table';
|
|
@@ -280,6 +275,7 @@ import { TabsTrigger } from '../client/components/ui/tabs';
|
|
|
280
275
|
import { Tag } from '../client/components/ui/tag';
|
|
281
276
|
import { TagProps } from '../client/components/ui/tag';
|
|
282
277
|
import { TagStatus } from '../client/components/ui/tag';
|
|
278
|
+
import { TagVariant } from '../client/components/ui/tag';
|
|
283
279
|
import { Text as Text_2 } from '../client/components/ui/typography';
|
|
284
280
|
import { Textarea } from '../client/components/ui/textarea';
|
|
285
281
|
import { Toast } from '../client/components/ui/toast';
|
|
@@ -297,6 +293,9 @@ import { Tooltip } from '../client/components/ui/tooltip';
|
|
|
297
293
|
import { TooltipContent } from '../client/components/ui/tooltip';
|
|
298
294
|
import { TooltipProvider } from '../client/components/ui/tooltip';
|
|
299
295
|
import { TooltipTrigger } from '../client/components/ui/tooltip';
|
|
296
|
+
import { useAccordion } from '../client/components/ui/accordion';
|
|
297
|
+
import { useAccordionItem } from '../client/components/ui/accordion';
|
|
298
|
+
import { useAccordionState } from '../client/components/ui/accordion';
|
|
300
299
|
import { useIsMobile } from '../client/hooks/use-mobile';
|
|
301
300
|
import { useSegmentedControl } from '../client/hooks/use-segmented-control';
|
|
302
301
|
import { UseSegmentedControlOptions } from '../client/hooks/use-segmented-control';
|
|
@@ -324,6 +323,7 @@ import { UtilitySort } from '../client/components/icons/UtilitySort';
|
|
|
324
323
|
import { UtilityTarget } from '../client/components/icons/UtilityTarget';
|
|
325
324
|
import { UtilityTargetActive } from '../client/components/icons/UtilityTargetActive';
|
|
326
325
|
import { UtilityText } from '../client/components/icons/UtilityText';
|
|
326
|
+
import { UtilityTriangleInfo } from '../client/components/icons/UtilityTriangleInfo';
|
|
327
327
|
import { WatermarkMemberOrg } from '../client/components/icons/WatermarkMemberOrg';
|
|
328
328
|
import { WaterMarkWellProjects } from '../client/components/icons/WaterMarkWellProjects';
|
|
329
329
|
import { WaterMarkWWWProducts } from '../client/components/icons/WaterMarkWWWProducts';
|
|
@@ -332,10 +332,20 @@ import { X } from '../client/components/icons/X';
|
|
|
332
332
|
|
|
333
333
|
export { Accordion }
|
|
334
334
|
|
|
335
|
+
export { AccordionContainer }
|
|
336
|
+
|
|
335
337
|
export { AccordionContent }
|
|
336
338
|
|
|
339
|
+
export { AccordionHeader }
|
|
340
|
+
|
|
341
|
+
export { AccordionHeaderRow }
|
|
342
|
+
|
|
337
343
|
export { AccordionItem }
|
|
338
344
|
|
|
345
|
+
export { AccordionListRow }
|
|
346
|
+
|
|
347
|
+
export { AccordionSectionHeader }
|
|
348
|
+
|
|
339
349
|
export { AccordionTrigger }
|
|
340
350
|
|
|
341
351
|
export { Alert }
|
|
@@ -444,8 +454,6 @@ export { Checkbox }
|
|
|
444
454
|
|
|
445
455
|
export { cn }
|
|
446
456
|
|
|
447
|
-
export { CodeBadge }
|
|
448
|
-
|
|
449
457
|
export { Collapsible }
|
|
450
458
|
|
|
451
459
|
export { CollapsibleContent }
|
|
@@ -842,24 +850,6 @@ export { StandardLogo }
|
|
|
842
850
|
|
|
843
851
|
export { StandardNavigation }
|
|
844
852
|
|
|
845
|
-
export { StandardTable }
|
|
846
|
-
|
|
847
|
-
export { StandardTableContainer }
|
|
848
|
-
|
|
849
|
-
export { StandardTableContent }
|
|
850
|
-
|
|
851
|
-
export { StandardTableHeader }
|
|
852
|
-
|
|
853
|
-
export { StandardTableHeaderRow }
|
|
854
|
-
|
|
855
|
-
export { StandardTableListRow }
|
|
856
|
-
|
|
857
|
-
export { StandardTableRow }
|
|
858
|
-
|
|
859
|
-
export { StandardTableRowHeader }
|
|
860
|
-
|
|
861
|
-
export { StandardTableTrigger }
|
|
862
|
-
|
|
863
853
|
export { Switch }
|
|
864
854
|
|
|
865
855
|
export { Tab }
|
|
@@ -894,6 +884,8 @@ export { TagProps }
|
|
|
894
884
|
|
|
895
885
|
export { TagStatus }
|
|
896
886
|
|
|
887
|
+
export { TagVariant }
|
|
888
|
+
|
|
897
889
|
export { Text_2 as Text }
|
|
898
890
|
|
|
899
891
|
export { Textarea }
|
|
@@ -928,6 +920,12 @@ export { TooltipProvider }
|
|
|
928
920
|
|
|
929
921
|
export { TooltipTrigger }
|
|
930
922
|
|
|
923
|
+
export { useAccordion }
|
|
924
|
+
|
|
925
|
+
export { useAccordionItem }
|
|
926
|
+
|
|
927
|
+
export { useAccordionState }
|
|
928
|
+
|
|
931
929
|
export { useIsMobile }
|
|
932
930
|
|
|
933
931
|
export { useSegmentedControl }
|
|
@@ -982,6 +980,8 @@ export { UtilityTargetActive }
|
|
|
982
980
|
|
|
983
981
|
export { UtilityText }
|
|
984
982
|
|
|
983
|
+
export { UtilityTriangleInfo }
|
|
984
|
+
|
|
985
985
|
export { WatermarkMemberOrg }
|
|
986
986
|
|
|
987
987
|
export { WaterMarkWellProjects }
|