bianic-ui 1.7.1 → 1.7.2-alpha

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.
@@ -6,3 +6,4 @@ export { default as SelectInput } from './SelectInput';
6
6
  export { default as LiveSearch } from './LiveSearch';
7
7
  export { default as Toggle } from './Toggle';
8
8
  export { SegmentButtonItem, SegmentButtonGroup } from './SegmentButton';
9
+ export { FormGroup, FormGroupButton, FormGroupLabel } from './Group';
@@ -10,7 +10,8 @@ export { default as Color } from './Color';
10
10
  export { default as Divider } from './Divider/Divider';
11
11
  export { default as FileTree } from './FileTree';
12
12
  export { MenuContainer, MenuItem } from './Menu';
13
- export { TextInput, Radio, TextArea, Checkbox, SelectInput, LiveSearch, Toggle, SegmentButtonItem, SegmentButtonGroup, } from './Forms';
13
+ export { TextInput, Radio, TextArea, Checkbox, SelectInput, LiveSearch, Toggle, SegmentButtonItem, SegmentButtonGroup, FormGroup, FormGroupButton, FormGroupLabel, } from './Forms';
14
+ export * from './Icons';
14
15
  export { default as Modal } from './Modal/Modal';
15
16
  export { default as PaginationBar } from './PaginationBar/PaginationBar';
16
17
  export { default as Pills } from './Pills/Pills';
package/dist/index.d.ts CHANGED
@@ -396,6 +396,72 @@ declare function SegmentButtonGroup({ children }: {
396
396
  children: React$1.ReactNode;
397
397
  }): React$1.JSX.Element;
398
398
 
399
+ interface FormGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
400
+ children?: React$1.ReactNode;
401
+ size?: 'md' | 'sm';
402
+ }
403
+ declare const FormGroup: ({ children, size }: FormGroupProps) => React$1.JSX.Element;
404
+
405
+ declare const FormGroupButton: ({ ...props }: ButtonProps) => React$1.JSX.Element;
406
+
407
+ interface FormGroupLabelProps extends ComponentPropsWithoutRef<'label'> {
408
+ text?: string;
409
+ iconLeft?: React$1.ReactNode;
410
+ iconRight?: React$1.ReactNode;
411
+ size?: 'md' | 'sm';
412
+ }
413
+ declare const FormGroupLabel: ({ iconLeft, iconRight, size, text, ...props }: FormGroupLabelProps) => React$1.JSX.Element;
414
+
415
+ interface IconProps {
416
+ className?: string;
417
+ size?: number | string;
418
+ fill?: string;
419
+ stroke?: string;
420
+ strokeWidth?: number | string;
421
+ }
422
+
423
+ declare const Node: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
424
+
425
+ declare const Port: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
426
+
427
+ declare const ExposedPort: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
428
+
429
+ declare const VirtualPort: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
430
+
431
+ declare const AlertRoundedSquare: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
432
+
433
+ declare const Stack: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
434
+
435
+ declare const Discrepancy: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
436
+
437
+ declare const ModalBalance: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
438
+
439
+ declare const CubeHeader: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
440
+
441
+ declare const Legend: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
442
+
443
+ declare const SelectAllRemove: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
444
+
445
+ declare const SelectAllAdd: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
446
+
447
+ declare const FQWelldone: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
448
+
449
+ declare const FQOperation: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
450
+
451
+ declare const FQModeler: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
452
+
453
+ declare const FQGetaway: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
454
+
455
+ declare const FQAnalytical: ({ className, fill, size, }: IconProps) => React$1.JSX.Element;
456
+
457
+ declare const Flowqount: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
458
+
459
+ declare const Spinner$1: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
460
+
461
+ declare const Outlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
462
+
463
+ declare const Inlet: ({ className, fill, size }: IconProps) => React$1.JSX.Element;
464
+
399
465
  interface ModalProps extends ComponentPropsWithoutRef<'div'> {
400
466
  size?: 'sm' | 'md' | 'lg' | 'xl';
401
467
  zIndex?: number;
@@ -629,4 +695,4 @@ declare namespace Link {
629
695
  };
630
696
  }
631
697
 
632
- export { Accordions, Alert, Avatar, Badge, Banner, Brand, Breadcrumb, Button, ButtonApp, Checkbox, Color, ContextualButton, Display, Divider, FileTree, Heading, Link, LiveSearch, MenuContainer, MenuItem, Modal, P, PaginationBar, Pills, Popover, ProgressBar, ProgressCircle, Radio, ResizeableDiv, SegmentButtonGroup, SegmentButtonItem, SelectInput, Slider, Spinner, Tab, TabMenu, TableCell, TagLabel, Text, TextArea, TextInput, Toggle, Tooltip };
698
+ export { Accordions, Alert, Avatar, AlertRoundedSquare as BCAlertRoundedSquare, CubeHeader as BCCubeHeader, Discrepancy as BCDiscrepancy, ExposedPort as BCExposedPort, FQAnalytical as BCFQAnalytical, FQGetaway as BCFQGetaway, FQModeler as BCFQModeler, FQOperation as BCFQOperation, FQWelldone as BCFQWelldone, Flowqount as BCFlowqount, Inlet as BCInlet, Legend as BCLegend, ModalBalance as BCModalBalance, Node as BCNode, Outlet as BCOutlet, Port as BCPort, SelectAllAdd as BCSelectAllAdd, SelectAllRemove as BCSelectAllRemove, Spinner$1 as BCSpinner, Stack as BCStack, VirtualPort as BCVirtualPort, Badge, Banner, Brand, Breadcrumb, Button, ButtonApp, Checkbox, Color, ContextualButton, Display, Divider, FileTree, FormGroup, FormGroupButton, FormGroupLabel, Heading, Link, LiveSearch, MenuContainer, MenuItem, Modal, P, PaginationBar, Pills, Popover, ProgressBar, ProgressCircle, Radio, ResizeableDiv, SegmentButtonGroup, SegmentButtonItem, SelectInput, Slider, Spinner, Tab, TabMenu, TableCell, TagLabel, Text, TextArea, TextInput, Toggle, Tooltip };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "@biaenergi:registry": "https://gitlab.com/api/v4/projects/50905269/packages/npm/"
5
5
  },
6
- "version": "1.7.1",
6
+ "version": "1.7.2-alpha",
7
7
  "description": "Design Language System develop by BIAENERGI",
8
8
  "scripts": {
9
9
  "rollup": "rollup -c",