@gobolt/genesis 0.4.41 → 0.4.43

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.
@@ -0,0 +1,3 @@
1
+ export declare const StyledFormInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('..').InputProps & import('react').RefAttributes<import('rc-input').InputRef>, "ref"> & {
2
+ ref?: ((instance: import('rc-input').InputRef | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<import('rc-input').InputRef> | null | undefined;
3
+ }, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('..').InputProps & import('react').RefAttributes<import('rc-input').InputRef>>, keyof import('react').Component<any, {}, any>>;
@@ -1,6 +1,12 @@
1
1
  import { PrimaryTableControlsRowProps } from './PrimaryTableControlsRow';
2
2
  import { SecondaryTableControlsRowProps } from './SecondaryTableControlsRow';
3
3
  import { ActionEvent, TableEventPayload } from '../../../types/events';
4
+ export declare const TABLE_CONTROLS_EVENTS: {
5
+ GROUP_ITEM_CLICK: string;
6
+ ORDER_CLICK: string;
7
+ PRIMARY_SORT_CHANGE: string;
8
+ INPUT_CHANGE: string;
9
+ };
4
10
  export type TableControlsData = {
5
11
  primaryTableRowData: PrimaryTableControlsRowProps;
6
12
  secondaryTableRowData?: SecondaryTableControlsRowProps;
@@ -1,2 +1,2 @@
1
- export { default } from './TableControls';
1
+ export { default, TABLE_CONTROLS_EVENTS } from './TableControls';
2
2
  export type { TableControlsProps } from './TableControls';
@@ -68,6 +68,7 @@ export type { TableWithControlsProps } from './TableWithControls';
68
68
  export { useTable } from './Table';
69
69
  export { useTableWithControls } from './TableWithControls';
70
70
  export type { UseTableConfig } from './Table';
71
+ export { TABLE_CONTROLS_EVENTS } from './Table/TableControls';
71
72
  export { default as Tabs } from './Tabs';
72
73
  export type { TabsProps } from './Tabs';
73
74
  export { default as Tile } from './Tile';
package/dist/index.cjs CHANGED
@@ -60721,6 +60721,9 @@ function HiSearch(props) {
60721
60721
  function HiXCircle(props) {
60722
60722
  return GenIcon({ "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z", "clipRule": "evenodd" }, "child": [] }] })(props);
60723
60723
  }
60724
+ function HiOutlineAdjustments(props) {
60725
+ return GenIcon({ "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4" }, "child": [] }] })(props);
60726
+ }
60724
60727
  function HiOutlineCheckCircle(props) {
60725
60728
  return GenIcon({ "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" }, "child": [] }] })(props);
60726
60729
  }
@@ -74765,6 +74768,53 @@ const Solid = (properties) => /* @__PURE__ */ jsxRuntime.jsx(
74765
74768
  const UnitNumber = ({ variant }) => {
74766
74769
  return variant === "outline" ? /* @__PURE__ */ jsxRuntime.jsx(Outline, {}) : /* @__PURE__ */ jsxRuntime.jsx(Solid, {});
74767
74770
  };
74771
+ const StyledFormInput = styled(Input2)`
74772
+ /* Ensure the border color matches regular Input using Genesis theme token */
74773
+ &.ant-input,
74774
+ .ant-input-group .ant-input {
74775
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74776
+ }
74777
+
74778
+ /* Input group wrapper styling - most specific selector for addon scenarios */
74779
+ &.ant-input-group-wrapper .ant-input-group {
74780
+ .ant-input {
74781
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74782
+ }
74783
+
74784
+ .ant-input-group-addon {
74785
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74786
+ background-color: #f5f5f5;
74787
+ }
74788
+ }
74789
+
74790
+ /* When input is in a group wrapper */
74791
+ .ant-input-group-wrapper & {
74792
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74793
+ }
74794
+
74795
+ /* Direct targeting of input group elements */
74796
+ .ant-input-group .ant-input {
74797
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74798
+ }
74799
+
74800
+ .ant-input-group-addon {
74801
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74802
+ }
74803
+
74804
+ /* Hover and focus states should maintain the correct colors */
74805
+ &.ant-input:hover,
74806
+ &.ant-input:focus,
74807
+ .ant-input-group .ant-input:hover,
74808
+ .ant-input-group .ant-input:focus,
74809
+ .ant-input-group-wrapper .ant-input-group:hover .ant-input,
74810
+ .ant-input-group-wrapper .ant-input-group:focus-within .ant-input,
74811
+ .ant-input-group-wrapper .ant-input-group:hover .ant-input-group-addon,
74812
+ .ant-input-group-wrapper
74813
+ .ant-input-group:focus-within
74814
+ .ant-input-group-addon {
74815
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74816
+ }
74817
+ `;
74768
74818
  const defaultValidator = (_rule, value2) => {
74769
74819
  console.log(`Validating value: ${value2}, Type: ${typeof value2}`);
74770
74820
  if (!value2 || /^\d+$/.test(value2)) {
@@ -74785,7 +74835,7 @@ const FormInput = React.forwardRef((props, ref) => {
74785
74835
  const { addonBefore, addonAfter, placeholder } = inputProps;
74786
74836
  if (addonBefore && !addonAfter) {
74787
74837
  return /* @__PURE__ */ jsxRuntime.jsx(
74788
- Input2,
74838
+ StyledFormInput,
74789
74839
  {
74790
74840
  ...inputProps,
74791
74841
  ref,
@@ -74799,7 +74849,7 @@ const FormInput = React.forwardRef((props, ref) => {
74799
74849
  }
74800
74850
  if (addonAfter && !addonBefore) {
74801
74851
  return /* @__PURE__ */ jsxRuntime.jsx(
74802
- Input2,
74852
+ StyledFormInput,
74803
74853
  {
74804
74854
  ...inputProps,
74805
74855
  ref,
@@ -74812,7 +74862,7 @@ const FormInput = React.forwardRef((props, ref) => {
74812
74862
  );
74813
74863
  }
74814
74864
  return /* @__PURE__ */ jsxRuntime.jsx(
74815
- Input2,
74865
+ StyledFormInput,
74816
74866
  {
74817
74867
  ...inputProps,
74818
74868
  ref,
@@ -85580,9 +85630,6 @@ const useTable = (useTableConfig) => {
85580
85630
  retry
85581
85631
  };
85582
85632
  };
85583
- function HiMiniAdjustmentsVertical(props) {
85584
- return GenIcon({ "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "d": "M17 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM17 15.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM3.75 15a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75ZM4.5 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM10 11a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 10 11ZM10.75 2.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM10 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.75 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM16.25 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" }, "child": [] }] })(props);
85585
- }
85586
85633
  function FiSettings(props) {
85587
85634
  return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "3" }, "child": [] }, { "tag": "path", "attr": { "d": "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" }, "child": [] }] })(props);
85588
85635
  }
@@ -85663,7 +85710,7 @@ const PrimaryTableControlsRow = ({
85663
85710
  UtilityButton,
85664
85711
  {
85665
85712
  isIconButton: true,
85666
- icon: /* @__PURE__ */ jsxRuntime.jsx(HiMiniAdjustmentsVertical, { color: "#222222" }),
85713
+ icon: /* @__PURE__ */ jsxRuntime.jsx(HiOutlineAdjustments, { color: "#222222", size: 24 }),
85667
85714
  onClick: onFilterClick
85668
85715
  }
85669
85716
  ) }),
@@ -85889,6 +85936,12 @@ const SecondaryTableControlsRow = ({
85889
85936
  }
85890
85937
  );
85891
85938
  };
85939
+ const TABLE_CONTROLS_EVENTS = {
85940
+ GROUP_ITEM_CLICK: "groupItemClick",
85941
+ ORDER_CLICK: "orderClick",
85942
+ PRIMARY_SORT_CHANGE: "primarySortChange",
85943
+ INPUT_CHANGE: "inputChange"
85944
+ };
85892
85945
  const TableControls = ({
85893
85946
  primaryTableRowData,
85894
85947
  secondaryTableRowData,
@@ -87388,6 +87441,7 @@ exports.SegmentedControls = SegmentedControls;
87388
87441
  exports.Select = Select;
87389
87442
  exports.Shapes = Shapes;
87390
87443
  exports.Switch = Switch;
87444
+ exports.TABLE_CONTROLS_EVENTS = TABLE_CONTROLS_EVENTS;
87391
87445
  exports.Table = TablePagination;
87392
87446
  exports.TableWithControls = TableWithControls;
87393
87447
  exports.Tabs = Tabs;
package/dist/index.js CHANGED
@@ -60703,6 +60703,9 @@ function HiSearch(props) {
60703
60703
  function HiXCircle(props) {
60704
60704
  return GenIcon({ "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "fillRule": "evenodd", "d": "M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z", "clipRule": "evenodd" }, "child": [] }] })(props);
60705
60705
  }
60706
+ function HiOutlineAdjustments(props) {
60707
+ return GenIcon({ "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4" }, "child": [] }] })(props);
60708
+ }
60706
60709
  function HiOutlineCheckCircle(props) {
60707
60710
  return GenIcon({ "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" }, "child": [] }] })(props);
60708
60711
  }
@@ -74747,6 +74750,53 @@ const Solid = (properties) => /* @__PURE__ */ jsx(
74747
74750
  const UnitNumber = ({ variant }) => {
74748
74751
  return variant === "outline" ? /* @__PURE__ */ jsx(Outline, {}) : /* @__PURE__ */ jsx(Solid, {});
74749
74752
  };
74753
+ const StyledFormInput = styled(Input2)`
74754
+ /* Ensure the border color matches regular Input using Genesis theme token */
74755
+ &.ant-input,
74756
+ .ant-input-group .ant-input {
74757
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74758
+ }
74759
+
74760
+ /* Input group wrapper styling - most specific selector for addon scenarios */
74761
+ &.ant-input-group-wrapper .ant-input-group {
74762
+ .ant-input {
74763
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74764
+ }
74765
+
74766
+ .ant-input-group-addon {
74767
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74768
+ background-color: #f5f5f5;
74769
+ }
74770
+ }
74771
+
74772
+ /* When input is in a group wrapper */
74773
+ .ant-input-group-wrapper & {
74774
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74775
+ }
74776
+
74777
+ /* Direct targeting of input group elements */
74778
+ .ant-input-group .ant-input {
74779
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74780
+ }
74781
+
74782
+ .ant-input-group-addon {
74783
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74784
+ }
74785
+
74786
+ /* Hover and focus states should maintain the correct colors */
74787
+ &.ant-input:hover,
74788
+ &.ant-input:focus,
74789
+ .ant-input-group .ant-input:hover,
74790
+ .ant-input-group .ant-input:focus,
74791
+ .ant-input-group-wrapper .ant-input-group:hover .ant-input,
74792
+ .ant-input-group-wrapper .ant-input-group:focus-within .ant-input,
74793
+ .ant-input-group-wrapper .ant-input-group:hover .ant-input-group-addon,
74794
+ .ant-input-group-wrapper
74795
+ .ant-input-group:focus-within
74796
+ .ant-input-group-addon {
74797
+ border-color: ${({ theme }) => theme.colors.inputs.surface.border} !important;
74798
+ }
74799
+ `;
74750
74800
  const defaultValidator = (_rule, value2) => {
74751
74801
  console.log(`Validating value: ${value2}, Type: ${typeof value2}`);
74752
74802
  if (!value2 || /^\d+$/.test(value2)) {
@@ -74767,7 +74817,7 @@ const FormInput = React__default.forwardRef((props, ref) => {
74767
74817
  const { addonBefore, addonAfter, placeholder } = inputProps;
74768
74818
  if (addonBefore && !addonAfter) {
74769
74819
  return /* @__PURE__ */ jsx(
74770
- Input2,
74820
+ StyledFormInput,
74771
74821
  {
74772
74822
  ...inputProps,
74773
74823
  ref,
@@ -74781,7 +74831,7 @@ const FormInput = React__default.forwardRef((props, ref) => {
74781
74831
  }
74782
74832
  if (addonAfter && !addonBefore) {
74783
74833
  return /* @__PURE__ */ jsx(
74784
- Input2,
74834
+ StyledFormInput,
74785
74835
  {
74786
74836
  ...inputProps,
74787
74837
  ref,
@@ -74794,7 +74844,7 @@ const FormInput = React__default.forwardRef((props, ref) => {
74794
74844
  );
74795
74845
  }
74796
74846
  return /* @__PURE__ */ jsx(
74797
- Input2,
74847
+ StyledFormInput,
74798
74848
  {
74799
74849
  ...inputProps,
74800
74850
  ref,
@@ -85562,9 +85612,6 @@ const useTable = (useTableConfig) => {
85562
85612
  retry
85563
85613
  };
85564
85614
  };
85565
- function HiMiniAdjustmentsVertical(props) {
85566
- return GenIcon({ "attr": { "viewBox": "0 0 20 20", "fill": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "d": "M17 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM17 15.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM3.75 15a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75ZM4.5 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM10 11a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 10 11ZM10.75 2.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM10 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.75 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM16.25 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" }, "child": [] }] })(props);
85567
- }
85568
85615
  function FiSettings(props) {
85569
85616
  return GenIcon({ "attr": { "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "strokeWidth": "2", "strokeLinecap": "round", "strokeLinejoin": "round" }, "child": [{ "tag": "circle", "attr": { "cx": "12", "cy": "12", "r": "3" }, "child": [] }, { "tag": "path", "attr": { "d": "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" }, "child": [] }] })(props);
85570
85617
  }
@@ -85645,7 +85692,7 @@ const PrimaryTableControlsRow = ({
85645
85692
  UtilityButton,
85646
85693
  {
85647
85694
  isIconButton: true,
85648
- icon: /* @__PURE__ */ jsx(HiMiniAdjustmentsVertical, { color: "#222222" }),
85695
+ icon: /* @__PURE__ */ jsx(HiOutlineAdjustments, { color: "#222222", size: 24 }),
85649
85696
  onClick: onFilterClick
85650
85697
  }
85651
85698
  ) }),
@@ -85871,6 +85918,12 @@ const SecondaryTableControlsRow = ({
85871
85918
  }
85872
85919
  );
85873
85920
  };
85921
+ const TABLE_CONTROLS_EVENTS = {
85922
+ GROUP_ITEM_CLICK: "groupItemClick",
85923
+ ORDER_CLICK: "orderClick",
85924
+ PRIMARY_SORT_CHANGE: "primarySortChange",
85925
+ INPUT_CHANGE: "inputChange"
85926
+ };
85874
85927
  const TableControls = ({
85875
85928
  primaryTableRowData,
85876
85929
  secondaryTableRowData,
@@ -87371,6 +87424,7 @@ export {
87371
87424
  Select,
87372
87425
  Shapes,
87373
87426
  Switch,
87427
+ TABLE_CONTROLS_EVENTS,
87374
87428
  TablePagination as Table,
87375
87429
  TableWithControls,
87376
87430
  Tabs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gobolt/genesis",
3
- "version": "0.4.41",
3
+ "version": "0.4.43",
4
4
  "description": "genesis design system",
5
5
  "author": "gobolt",
6
6
  "license": "MIT",