@oliasoft-open-source/react-ui-library 3.0.2 → 3.0.4

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 (3) hide show
  1. package/dist/global.css +834 -436
  2. package/dist/index.js +291 -229
  3. package/package.json +2 -6
package/dist/index.js CHANGED
@@ -12734,24 +12734,36 @@ const dialogShape = propTypes$1.exports.shape({
12734
12734
  Dialog.propTypes = {
12735
12735
  dialog: dialogShape.isRequired
12736
12736
  };
12737
- const inline$1 = "_inline_1akdi_338";
12738
- const left$2 = "_left_1akdi_341";
12739
- const right$6 = "_right_1akdi_345";
12740
- const fixed$1 = "_fixed_1akdi_349";
12741
- const border = "_border_1akdi_361";
12742
- const shadow = "_shadow_1akdi_367";
12743
- const drawerContent = "_drawerContent_1akdi_370";
12744
- const isResizing = "_isResizing_1akdi_382";
12745
- const toggleButton = "_toggleButton_1akdi_393";
12746
- const top = "_top_1akdi_406";
12747
- const bottom = "_bottom_1akdi_409";
12748
- const toggleButtonOpen = "_toggleButtonOpen_1akdi_412";
12749
- const tabs$1 = "_tabs_1akdi_415";
12750
- const tab$1 = "_tab_1akdi_415";
12751
- const active$4 = "_active_1akdi_446";
12752
- const tabsContent = "_tabsContent_1akdi_468";
12753
- const resizeHandle = "_resizeHandle_1akdi_474";
12737
+ const inputInTable$9 = "_inputInTable_1mluz_326";
12738
+ const inputFocus$9 = "_inputFocus_1mluz_342";
12739
+ const inputError$9 = "_inputError_1mluz_347";
12740
+ const inputWarning$9 = "_inputWarning_1mluz_348";
12741
+ const inputDisabled$9 = "_inputDisabled_1mluz_379";
12742
+ const hideScrollbars$9 = "_hideScrollbars_1mluz_384";
12743
+ const inline$1 = "_inline_1mluz_406";
12744
+ const left$2 = "_left_1mluz_409";
12745
+ const right$6 = "_right_1mluz_413";
12746
+ const fixed$1 = "_fixed_1mluz_417";
12747
+ const border = "_border_1mluz_429";
12748
+ const shadow = "_shadow_1mluz_435";
12749
+ const drawerContent = "_drawerContent_1mluz_438";
12750
+ const isResizing = "_isResizing_1mluz_450";
12751
+ const toggleButton = "_toggleButton_1mluz_461";
12752
+ const top = "_top_1mluz_474";
12753
+ const bottom = "_bottom_1mluz_477";
12754
+ const toggleButtonOpen = "_toggleButtonOpen_1mluz_480";
12755
+ const tabs$1 = "_tabs_1mluz_483";
12756
+ const tab$1 = "_tab_1mluz_483";
12757
+ const active$4 = "_active_1mluz_514";
12758
+ const tabsContent = "_tabsContent_1mluz_536";
12759
+ const resizeHandle = "_resizeHandle_1mluz_542";
12754
12760
  const styles$z = {
12761
+ inputInTable: inputInTable$9,
12762
+ inputFocus: inputFocus$9,
12763
+ inputError: inputError$9,
12764
+ inputWarning: inputWarning$9,
12765
+ inputDisabled: inputDisabled$9,
12766
+ hideScrollbars: hideScrollbars$9,
12755
12767
  inline: inline$1,
12756
12768
  left: left$2,
12757
12769
  right: right$6,
@@ -14925,7 +14937,8 @@ const Drawer = ({
14925
14937
  tabs: tabs2,
14926
14938
  defaultTabIndex,
14927
14939
  testId,
14928
- onResize
14940
+ onResize,
14941
+ getActiveTab
14929
14942
  }) => {
14930
14943
  const isStandardButton = button2 === true;
14931
14944
  const isCustomButton = !isStandardButton && isValidElement(button2);
@@ -14942,6 +14955,9 @@ const Drawer = ({
14942
14955
  setActiveTab(index2);
14943
14956
  setOpen(true);
14944
14957
  }
14958
+ if (getActiveTab) {
14959
+ getActiveTab(tabs2[index2]);
14960
+ }
14945
14961
  };
14946
14962
  return /* @__PURE__ */ jsx(DrawerResizeWrapper, {
14947
14963
  width: currentWidth,
@@ -15003,7 +15019,8 @@ Drawer.defaultProps = {
15003
15019
  tabs: null,
15004
15020
  defaultTabIndex: 0,
15005
15021
  testId: void 0,
15006
- onResize: null
15022
+ onResize: null,
15023
+ getActiveTab: null
15007
15024
  };
15008
15025
  Drawer.propTypes = {
15009
15026
  background: propTypes$1.exports.string,
@@ -15025,7 +15042,8 @@ Drawer.propTypes = {
15025
15042
  })),
15026
15043
  testId: propTypes$1.exports.string,
15027
15044
  defaultTabIndex: propTypes$1.exports.number,
15028
- onResize: propTypes$1.exports.func
15045
+ onResize: propTypes$1.exports.func,
15046
+ getActiveTab: propTypes$1.exports.func
15029
15047
  };
15030
15048
  const empty$1 = "_empty_l64jx_326";
15031
15049
  const text$1 = "_text_l64jx_336";
@@ -15142,26 +15160,28 @@ InputGroup.propTypes = {
15142
15160
  small: propTypes$1.exports.bool,
15143
15161
  width: propTypes$1.exports.oneOfType([propTypes$1.exports.string, propTypes$1.exports.number])
15144
15162
  };
15145
- const inputInTable$4 = "_inputInTable_1y9ar_326";
15146
- const inputFocus$4 = "_inputFocus_1y9ar_342";
15147
- const inputError$4 = "_inputError_1y9ar_347";
15148
- const inputWarning$4 = "_inputWarning_1y9ar_348";
15149
- const inputDisabled$4 = "_inputDisabled_1y9ar_379";
15150
- const input$2 = "_input_1y9ar_326";
15151
- const isInTable$3 = "_isInTable_1y9ar_405";
15152
- const small$6 = "_small_1y9ar_433";
15153
- const error$6 = "_error_1y9ar_439";
15154
- const warning$9 = "_warning_1y9ar_454";
15155
- const right$5 = "_right_1y9ar_474";
15156
- const groupOrderFirst$3 = "_groupOrderFirst_1y9ar_477";
15157
- const groupOrderMiddle$3 = "_groupOrderMiddle_1y9ar_478";
15158
- const groupOrderLast$3 = "_groupOrderLast_1y9ar_479";
15163
+ const inputInTable$8 = "_inputInTable_t5sz3_326";
15164
+ const inputFocus$8 = "_inputFocus_t5sz3_342";
15165
+ const inputError$8 = "_inputError_t5sz3_347";
15166
+ const inputWarning$8 = "_inputWarning_t5sz3_348";
15167
+ const inputDisabled$8 = "_inputDisabled_t5sz3_379";
15168
+ const hideScrollbars$8 = "_hideScrollbars_t5sz3_384";
15169
+ const input$2 = "_input_t5sz3_326";
15170
+ const isInTable$3 = "_isInTable_t5sz3_415";
15171
+ const small$6 = "_small_t5sz3_443";
15172
+ const error$6 = "_error_t5sz3_449";
15173
+ const warning$9 = "_warning_t5sz3_464";
15174
+ const right$5 = "_right_t5sz3_484";
15175
+ const groupOrderFirst$3 = "_groupOrderFirst_t5sz3_487";
15176
+ const groupOrderMiddle$3 = "_groupOrderMiddle_t5sz3_488";
15177
+ const groupOrderLast$3 = "_groupOrderLast_t5sz3_489";
15159
15178
  const styles$w = {
15160
- inputInTable: inputInTable$4,
15161
- inputFocus: inputFocus$4,
15162
- inputError: inputError$4,
15163
- inputWarning: inputWarning$4,
15164
- inputDisabled: inputDisabled$4,
15179
+ inputInTable: inputInTable$8,
15180
+ inputFocus: inputFocus$8,
15181
+ inputError: inputError$8,
15182
+ inputWarning: inputWarning$8,
15183
+ inputDisabled: inputDisabled$8,
15184
+ hideScrollbars: hideScrollbars$8,
15165
15185
  input: input$2,
15166
15186
  isInTable: isInTable$3,
15167
15187
  small: small$6,
@@ -24610,36 +24630,48 @@ var InfiniteScroll = function(_super) {
24610
24630
  };
24611
24631
  return InfiniteScroll2;
24612
24632
  }(Component$1);
24613
- const header$1 = "_header_ngk88_326";
24614
- const headerTitle = "_headerTitle_ngk88_326";
24615
- const heading$3 = "_heading_ngk88_327";
24616
- const itemHeader = "_itemHeader_ngk88_327";
24617
- const narrow = "_narrow_ngk88_330";
24618
- const stickyHeader = "_stickyHeader_ngk88_334";
24619
- const title$4 = "_title_ngk88_345";
24620
- const name = "_name_ngk88_351";
24621
- const iconTooltipMargin = "_iconTooltipMargin_ngk88_354";
24622
- const bold = "_bold_ngk88_357";
24623
- const toggleNarrow = "_toggleNarrow_ngk88_366";
24624
- const drag = "_drag_ngk88_384";
24625
- const list$1 = "_list_ngk88_404";
24626
- const bordered$1 = "_bordered_ngk88_408";
24627
- const item$4 = "_item_ngk88_327";
24628
- const action = "_action_ngk88_441";
24629
- const active$3 = "_active_ngk88_444";
24630
- const disabled$5 = "_disabled_ngk88_459";
24631
- const label$6 = "_label_ngk88_470";
24632
- const details$2 = "_details_ngk88_477";
24633
- const metadata = "_metadata_ngk88_478";
24634
- const itemContent = "_itemContent_ngk88_487";
24635
- const indentIcon = "_indentIcon_ngk88_491";
24636
- const expandIcon = "_expandIcon_ngk88_495";
24637
- const expanded = "_expanded_ngk88_501";
24638
- const right$4 = "_right_ngk88_504";
24639
- const actions$1 = "_actions_ngk88_511";
24640
- const scrollableList = "_scrollableList_ngk88_516";
24641
- const hideScrollbar = "_hideScrollbar_ngk88_521";
24633
+ const inputInTable$7 = "_inputInTable_3z59j_326";
24634
+ const inputFocus$7 = "_inputFocus_3z59j_342";
24635
+ const inputError$7 = "_inputError_3z59j_347";
24636
+ const inputWarning$7 = "_inputWarning_3z59j_348";
24637
+ const inputDisabled$7 = "_inputDisabled_3z59j_379";
24638
+ const hideScrollbars$7 = "_hideScrollbars_3z59j_384";
24639
+ const header$1 = "_header_3z59j_394";
24640
+ const headerTitle = "_headerTitle_3z59j_394";
24641
+ const heading$3 = "_heading_3z59j_395";
24642
+ const itemHeader = "_itemHeader_3z59j_395";
24643
+ const narrow = "_narrow_3z59j_398";
24644
+ const stickyHeader = "_stickyHeader_3z59j_402";
24645
+ const title$4 = "_title_3z59j_413";
24646
+ const name = "_name_3z59j_419";
24647
+ const iconTooltipMargin = "_iconTooltipMargin_3z59j_422";
24648
+ const bold = "_bold_3z59j_425";
24649
+ const toggleNarrow = "_toggleNarrow_3z59j_434";
24650
+ const drag = "_drag_3z59j_452";
24651
+ const list$1 = "_list_3z59j_472";
24652
+ const bordered$1 = "_bordered_3z59j_476";
24653
+ const item$4 = "_item_3z59j_395";
24654
+ const action = "_action_3z59j_509";
24655
+ const active$3 = "_active_3z59j_512";
24656
+ const disabled$5 = "_disabled_3z59j_527";
24657
+ const label$6 = "_label_3z59j_538";
24658
+ const details$2 = "_details_3z59j_545";
24659
+ const metadata = "_metadata_3z59j_546";
24660
+ const itemContent = "_itemContent_3z59j_555";
24661
+ const indentIcon = "_indentIcon_3z59j_559";
24662
+ const expandIcon = "_expandIcon_3z59j_563";
24663
+ const expanded = "_expanded_3z59j_569";
24664
+ const right$4 = "_right_3z59j_572";
24665
+ const actions$1 = "_actions_3z59j_579";
24666
+ const scrollableList = "_scrollableList_3z59j_584";
24667
+ const hideScrollbar = "_hideScrollbar_3z59j_384";
24642
24668
  const listStyles = {
24669
+ inputInTable: inputInTable$7,
24670
+ inputFocus: inputFocus$7,
24671
+ inputError: inputError$7,
24672
+ inputWarning: inputWarning$7,
24673
+ inputDisabled: inputDisabled$7,
24674
+ hideScrollbars: hideScrollbars$7,
24643
24675
  header: header$1,
24644
24676
  headerTitle,
24645
24677
  heading: heading$3,
@@ -25291,20 +25323,32 @@ Loader.propTypes = {
25291
25323
  children: propTypes$1.exports.node,
25292
25324
  theme: propTypes$1.exports.string
25293
25325
  };
25294
- const container$1 = "_container_11l7n_332";
25295
- const block = "_block_11l7n_348";
25296
- const info = "_info_11l7n_351";
25297
- const success = "_success_11l7n_355";
25298
- const warning$5 = "_warning_11l7n_359";
25299
- const error$4 = "_error_11l7n_363";
25300
- const content$1 = "_content_11l7n_367";
25301
- const heading$2 = "_heading_11l7n_371";
25302
- const icon$3 = "_icon_11l7n_379";
25303
- const dismiss$1 = "_dismiss_11l7n_380";
25304
- const absolute = "_absolute_11l7n_393";
25305
- const legendToggle = "_legendToggle_11l7n_398";
25306
- const detailsText = "_detailsText_11l7n_414";
25326
+ const inputInTable$6 = "_inputInTable_1eo2f_326";
25327
+ const inputFocus$6 = "_inputFocus_1eo2f_342";
25328
+ const inputError$6 = "_inputError_1eo2f_347";
25329
+ const inputWarning$6 = "_inputWarning_1eo2f_348";
25330
+ const inputDisabled$6 = "_inputDisabled_1eo2f_379";
25331
+ const hideScrollbars$6 = "_hideScrollbars_1eo2f_384";
25332
+ const container$1 = "_container_1eo2f_400";
25333
+ const block = "_block_1eo2f_418";
25334
+ const info = "_info_1eo2f_421";
25335
+ const success = "_success_1eo2f_425";
25336
+ const warning$5 = "_warning_1eo2f_429";
25337
+ const error$4 = "_error_1eo2f_433";
25338
+ const content$1 = "_content_1eo2f_437";
25339
+ const heading$2 = "_heading_1eo2f_441";
25340
+ const icon$3 = "_icon_1eo2f_449";
25341
+ const dismiss$1 = "_dismiss_1eo2f_450";
25342
+ const absolute = "_absolute_1eo2f_463";
25343
+ const legendToggle = "_legendToggle_1eo2f_468";
25344
+ const detailsText = "_detailsText_1eo2f_484";
25307
25345
  const styles$p = {
25346
+ inputInTable: inputInTable$6,
25347
+ inputFocus: inputFocus$6,
25348
+ inputError: inputError$6,
25349
+ inputWarning: inputWarning$6,
25350
+ inputDisabled: inputDisabled$6,
25351
+ hideScrollbars: hideScrollbars$6,
25308
25352
  container: container$1,
25309
25353
  block,
25310
25354
  info,
@@ -25711,28 +25755,30 @@ Page.propTypes = {
25711
25755
  scroll: propTypes$1.exports.bool,
25712
25756
  top: propTypes$1.exports.oneOfType([propTypes$1.exports.number, propTypes$1.exports.string])
25713
25757
  };
25714
- const inputInTable$3 = "_inputInTable_1lqkb_326";
25715
- const inputFocus$3 = "_inputFocus_1lqkb_342";
25716
- const inputError$3 = "_inputError_1lqkb_347";
25717
- const inputWarning$3 = "_inputWarning_1lqkb_348";
25718
- const inputDisabled$3 = "_inputDisabled_1lqkb_379";
25719
- const select = "_select_1lqkb_384";
25720
- const isInTable$2 = "_isInTable_1lqkb_421";
25721
- const unSelected = "_unSelected_1lqkb_437";
25722
- const error$3 = "_error_1lqkb_444";
25723
- const warning$4 = "_warning_1lqkb_459";
25724
- const small$4 = "_small_1lqkb_474";
25725
- const right$3 = "_right_1lqkb_481";
25726
- const groupOrderFirst$1 = "_groupOrderFirst_1lqkb_491";
25727
- const input$1 = "_input_1lqkb_326";
25728
- const groupOrderMiddle$1 = "_groupOrderMiddle_1lqkb_492";
25729
- const groupOrderLast$1 = "_groupOrderLast_1lqkb_493";
25758
+ const inputInTable$5 = "_inputInTable_2ryd6_326";
25759
+ const inputFocus$5 = "_inputFocus_2ryd6_342";
25760
+ const inputError$5 = "_inputError_2ryd6_347";
25761
+ const inputWarning$5 = "_inputWarning_2ryd6_348";
25762
+ const inputDisabled$5 = "_inputDisabled_2ryd6_379";
25763
+ const hideScrollbars$5 = "_hideScrollbars_2ryd6_384";
25764
+ const select = "_select_2ryd6_394";
25765
+ const isInTable$2 = "_isInTable_2ryd6_431";
25766
+ const unSelected = "_unSelected_2ryd6_447";
25767
+ const error$3 = "_error_2ryd6_454";
25768
+ const warning$4 = "_warning_2ryd6_469";
25769
+ const small$4 = "_small_2ryd6_484";
25770
+ const right$3 = "_right_2ryd6_491";
25771
+ const groupOrderFirst$1 = "_groupOrderFirst_2ryd6_501";
25772
+ const input$1 = "_input_2ryd6_326";
25773
+ const groupOrderMiddle$1 = "_groupOrderMiddle_2ryd6_502";
25774
+ const groupOrderLast$1 = "_groupOrderLast_2ryd6_503";
25730
25775
  const styles$l = {
25731
- inputInTable: inputInTable$3,
25732
- inputFocus: inputFocus$3,
25733
- inputError: inputError$3,
25734
- inputWarning: inputWarning$3,
25735
- inputDisabled: inputDisabled$3,
25776
+ inputInTable: inputInTable$5,
25777
+ inputFocus: inputFocus$5,
25778
+ inputError: inputError$5,
25779
+ inputWarning: inputWarning$5,
25780
+ inputDisabled: inputDisabled$5,
25781
+ hideScrollbars: hideScrollbars$5,
25736
25782
  select,
25737
25783
  isInTable: isInTable$2,
25738
25784
  unSelected,
@@ -26779,43 +26825,45 @@ const Layer = ({
26779
26825
  })
26780
26826
  });
26781
26827
  };
26782
- const inputInTable$2 = "_inputInTable_pjtnp_326";
26783
- const inputFocus$2 = "_inputFocus_pjtnp_342";
26784
- const inputError$2 = "_inputError_pjtnp_347";
26785
- const inputWarning$2 = "_inputWarning_pjtnp_348";
26786
- const inputDisabled$2 = "_inputDisabled_pjtnp_379";
26787
- const trigger = "_trigger_pjtnp_384";
26788
- const isInTable$1 = "_isInTable_pjtnp_401";
26789
- const input = "_input_pjtnp_326";
26790
- const isOpen = "_isOpen_pjtnp_420";
26791
- const error$2 = "_error_pjtnp_436";
26792
- const warning$3 = "_warning_pjtnp_451";
26793
- const disabled$3 = "_disabled_pjtnp_466";
26794
- const iconOpen = "_iconOpen_pjtnp_471";
26795
- const icons = "_icons_pjtnp_474";
26796
- const clearAll = "_clearAll_pjtnp_483";
26797
- const focus = "_focus_pjtnp_489";
26798
- const triggerInputContainer = "_triggerInputContainer_pjtnp_505";
26799
- const right$2 = "_right_pjtnp_514";
26800
- const multiOptions = "_multiOptions_pjtnp_528";
26801
- const multiOptionWrapper = "_multiOptionWrapper_pjtnp_537";
26802
- const small$3 = "_small_pjtnp_541";
26803
- const multiOption = "_multiOption_pjtnp_528";
26804
- const label$4 = "_label_pjtnp_558";
26805
- const closeMultiOption = "_closeMultiOption_pjtnp_564";
26806
- const selectedSingleValue = "_selectedSingleValue_pjtnp_578";
26807
- const placeHolder = "_placeHolder_pjtnp_579";
26808
- const searchable = "_searchable_pjtnp_589";
26809
- const groupOrderFirst = "_groupOrderFirst_pjtnp_633";
26810
- const groupOrderMiddle = "_groupOrderMiddle_pjtnp_634";
26811
- const groupOrderLast = "_groupOrderLast_pjtnp_635";
26812
- const detailedLabel = "_detailedLabel_pjtnp_652";
26828
+ const inputInTable$4 = "_inputInTable_w85hr_326";
26829
+ const inputFocus$4 = "_inputFocus_w85hr_342";
26830
+ const inputError$4 = "_inputError_w85hr_347";
26831
+ const inputWarning$4 = "_inputWarning_w85hr_348";
26832
+ const inputDisabled$4 = "_inputDisabled_w85hr_379";
26833
+ const hideScrollbars$4 = "_hideScrollbars_w85hr_384";
26834
+ const trigger = "_trigger_w85hr_394";
26835
+ const isInTable$1 = "_isInTable_w85hr_411";
26836
+ const input = "_input_w85hr_326";
26837
+ const isOpen = "_isOpen_w85hr_430";
26838
+ const error$2 = "_error_w85hr_446";
26839
+ const warning$3 = "_warning_w85hr_461";
26840
+ const disabled$3 = "_disabled_w85hr_476";
26841
+ const iconOpen = "_iconOpen_w85hr_481";
26842
+ const icons = "_icons_w85hr_484";
26843
+ const clearAll = "_clearAll_w85hr_493";
26844
+ const focus = "_focus_w85hr_499";
26845
+ const triggerInputContainer = "_triggerInputContainer_w85hr_515";
26846
+ const right$2 = "_right_w85hr_524";
26847
+ const multiOptions = "_multiOptions_w85hr_538";
26848
+ const multiOptionWrapper = "_multiOptionWrapper_w85hr_547";
26849
+ const small$3 = "_small_w85hr_551";
26850
+ const multiOption = "_multiOption_w85hr_538";
26851
+ const label$4 = "_label_w85hr_568";
26852
+ const closeMultiOption = "_closeMultiOption_w85hr_574";
26853
+ const selectedSingleValue = "_selectedSingleValue_w85hr_588";
26854
+ const placeHolder = "_placeHolder_w85hr_589";
26855
+ const searchable = "_searchable_w85hr_599";
26856
+ const groupOrderFirst = "_groupOrderFirst_w85hr_643";
26857
+ const groupOrderMiddle = "_groupOrderMiddle_w85hr_644";
26858
+ const groupOrderLast = "_groupOrderLast_w85hr_645";
26859
+ const detailedLabel = "_detailedLabel_w85hr_662";
26813
26860
  const styles$j = {
26814
- inputInTable: inputInTable$2,
26815
- inputFocus: inputFocus$2,
26816
- inputError: inputError$2,
26817
- inputWarning: inputWarning$2,
26818
- inputDisabled: inputDisabled$2,
26861
+ inputInTable: inputInTable$4,
26862
+ inputFocus: inputFocus$4,
26863
+ inputError: inputError$4,
26864
+ inputWarning: inputWarning$4,
26865
+ inputDisabled: inputDisabled$4,
26866
+ hideScrollbars: hideScrollbars$4,
26819
26867
  trigger,
26820
26868
  isInTable: isInTable$1,
26821
26869
  input,
@@ -28401,18 +28449,30 @@ var reactFastCompare = function isEqual3(a, b2) {
28401
28449
  throw error2;
28402
28450
  }
28403
28451
  };
28404
- const sidebar = "_sidebar_1nqor_329";
28405
- const inner = "_inner_1nqor_339";
28406
- const title$3 = "_title_1nqor_352";
28407
- const subtitle = "_subtitle_1nqor_353";
28408
- const label$2 = "_label_1nqor_354";
28409
- const collapsed = "_collapsed_1nqor_358";
28410
- const list = "_list_1nqor_381";
28411
- const item$2 = "_item_1nqor_387";
28412
- const active$2 = "_active_1nqor_408";
28413
- const experimental = "_experimental_1nqor_412";
28414
- const icon$1 = "_icon_1nqor_415";
28452
+ const inputInTable$3 = "_inputInTable_awg4j_326";
28453
+ const inputFocus$3 = "_inputFocus_awg4j_342";
28454
+ const inputError$3 = "_inputError_awg4j_347";
28455
+ const inputWarning$3 = "_inputWarning_awg4j_348";
28456
+ const inputDisabled$3 = "_inputDisabled_awg4j_379";
28457
+ const hideScrollbars$3 = "_hideScrollbars_awg4j_384";
28458
+ const sidebar = "_sidebar_awg4j_397";
28459
+ const inner = "_inner_awg4j_407";
28460
+ const title$3 = "_title_awg4j_418";
28461
+ const subtitle = "_subtitle_awg4j_419";
28462
+ const label$2 = "_label_awg4j_420";
28463
+ const collapsed = "_collapsed_awg4j_424";
28464
+ const list = "_list_awg4j_447";
28465
+ const item$2 = "_item_awg4j_453";
28466
+ const active$2 = "_active_awg4j_474";
28467
+ const experimental = "_experimental_awg4j_478";
28468
+ const icon$1 = "_icon_awg4j_481";
28415
28469
  const styles$c = {
28470
+ inputInTable: inputInTable$3,
28471
+ inputFocus: inputFocus$3,
28472
+ inputError: inputError$3,
28473
+ inputWarning: inputWarning$3,
28474
+ inputDisabled: inputDisabled$3,
28475
+ hideScrollbars: hideScrollbars$3,
28416
28476
  sidebar,
28417
28477
  inner,
28418
28478
  title: title$3,
@@ -30983,44 +31043,30 @@ function ownKeys$4(object, enumerableOnly) {
30983
31043
  var keys2 = Object.keys(object);
30984
31044
  if (Object.getOwnPropertySymbols) {
30985
31045
  var symbols = Object.getOwnPropertySymbols(object);
30986
- if (enumerableOnly) {
30987
- symbols = symbols.filter(function(sym) {
30988
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
30989
- });
30990
- }
30991
- keys2.push.apply(keys2, symbols);
31046
+ enumerableOnly && (symbols = symbols.filter(function(sym) {
31047
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
31048
+ })), keys2.push.apply(keys2, symbols);
30992
31049
  }
30993
31050
  return keys2;
30994
31051
  }
30995
31052
  function _objectSpread2(target) {
30996
31053
  for (var i = 1; i < arguments.length; i++) {
30997
- var source = arguments[i] != null ? arguments[i] : {};
30998
- if (i % 2) {
30999
- ownKeys$4(Object(source), true).forEach(function(key) {
31000
- _defineProperty$7(target, key, source[key]);
31001
- });
31002
- } else if (Object.getOwnPropertyDescriptors) {
31003
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
31004
- } else {
31005
- ownKeys$4(Object(source)).forEach(function(key) {
31006
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
31007
- });
31008
- }
31054
+ var source = null != arguments[i] ? arguments[i] : {};
31055
+ i % 2 ? ownKeys$4(Object(source), true).forEach(function(key) {
31056
+ _defineProperty$7(target, key, source[key]);
31057
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$4(Object(source)).forEach(function(key) {
31058
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
31059
+ });
31009
31060
  }
31010
31061
  return target;
31011
31062
  }
31012
31063
  function _typeof$4(obj) {
31013
31064
  "@babel/helpers - typeof";
31014
- if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
31015
- _typeof$4 = function(obj2) {
31016
- return typeof obj2;
31017
- };
31018
- } else {
31019
- _typeof$4 = function(obj2) {
31020
- return obj2 && typeof Symbol === "function" && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
31021
- };
31022
- }
31023
- return _typeof$4(obj);
31065
+ return _typeof$4 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) {
31066
+ return typeof obj2;
31067
+ } : function(obj2) {
31068
+ return obj2 && "function" == typeof Symbol && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
31069
+ }, _typeof$4(obj);
31024
31070
  }
31025
31071
  function _defineProperty$7(obj, key, value) {
31026
31072
  if (key in obj) {
@@ -31456,7 +31502,7 @@ function getWH(elem, name2, ex) {
31456
31502
  if (cssBoxValue === null || cssBoxValue === void 0 || Number(cssBoxValue) < 0) {
31457
31503
  cssBoxValue = elem.style[name2] || 0;
31458
31504
  }
31459
- cssBoxValue = parseFloat(cssBoxValue) || 0;
31505
+ cssBoxValue = Math.floor(parseFloat(cssBoxValue)) || 0;
31460
31506
  }
31461
31507
  if (extra === void 0) {
31462
31508
  extra = isBorderBox ? BORDER_INDEX : CONTENT_INDEX;
@@ -34706,17 +34752,29 @@ Spacer.propTypes = {
34706
34752
  width: propTypes$1.exports.oneOfType([propTypes$1.exports.string, propTypes$1.exports.number]),
34707
34753
  flex: propTypes$1.exports.bool
34708
34754
  };
34709
- const cellWrapperPadding$3 = "_cellWrapperPadding_nnm66_326";
34710
- const flexBlock$3 = "_flexBlock_nnm66_329";
34711
- const scrollWrapper = "_scrollWrapper_nnm66_342";
34712
- const bordered = "_bordered_nnm66_342";
34713
- const maxHeight = "_maxHeight_nnm66_346";
34714
- const table = "_table_nnm66_355";
34715
- const cellWrapper$3 = "_cellWrapper_nnm66_326";
34716
- const title$2 = "_title_nnm66_436";
34717
- const footer$1 = "_footer_nnm66_437";
34718
- const striped = "_striped_nnm66_442";
34755
+ const inputInTable$2 = "_inputInTable_hezt3_326";
34756
+ const inputFocus$2 = "_inputFocus_hezt3_342";
34757
+ const inputError$2 = "_inputError_hezt3_347";
34758
+ const inputWarning$2 = "_inputWarning_hezt3_348";
34759
+ const inputDisabled$2 = "_inputDisabled_hezt3_379";
34760
+ const hideScrollbars$2 = "_hideScrollbars_hezt3_384";
34761
+ const cellWrapperPadding$3 = "_cellWrapperPadding_hezt3_394";
34762
+ const flexBlock$3 = "_flexBlock_hezt3_397";
34763
+ const scrollWrapper = "_scrollWrapper_hezt3_410";
34764
+ const bordered = "_bordered_hezt3_410";
34765
+ const maxHeight = "_maxHeight_hezt3_414";
34766
+ const table = "_table_hezt3_431";
34767
+ const cellWrapper$3 = "_cellWrapper_hezt3_394";
34768
+ const title$2 = "_title_hezt3_512";
34769
+ const footer$1 = "_footer_hezt3_513";
34770
+ const striped = "_striped_hezt3_518";
34719
34771
  const styles$a = {
34772
+ inputInTable: inputInTable$2,
34773
+ inputFocus: inputFocus$2,
34774
+ inputError: inputError$2,
34775
+ inputWarning: inputWarning$2,
34776
+ inputDisabled: inputDisabled$2,
34777
+ hideScrollbars: hideScrollbars$2,
34720
34778
  cellWrapperPadding: cellWrapperPadding$3,
34721
34779
  flexBlock: flexBlock$3,
34722
34780
  scrollWrapper,
@@ -34848,43 +34906,45 @@ function CgSortAz(props) {
34848
34906
  function CgSortZa(props) {
34849
34907
  return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 24 24", "fill": "none" }, "child": [{ "tag": "path", "attr": { "d": "M6 16C6 16.5523 6.44772 17 7 17H17C17.5523 17 18 16.5523 18 16C18 15.4477 17.5523 15 17 15H7C6.44772 15 6 15.4477 6 16Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M8 12C8 12.5523 8.44772 13 9 13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H9C8.44772 11 8 11.4477 8 12Z", "fill": "currentColor" } }, { "tag": "path", "attr": { "d": "M11 9C10.4477 9 10 8.55229 10 8C10 7.44771 10.4477 7 11 7H13C13.5523 7 14 7.44771 14 8C14 8.55229 13.5523 9 13 9H11Z", "fill": "currentColor" } }] })(props);
34850
34908
  }
34851
- const inputInTable$1 = "_inputInTable_2o6ad_326";
34852
- const inputFocus$1 = "_inputFocus_2o6ad_342";
34853
- const inputError$1 = "_inputError_2o6ad_347";
34854
- const inputWarning$1 = "_inputWarning_2o6ad_348";
34855
- const inputDisabled$1 = "_inputDisabled_2o6ad_379";
34856
- const cellWrapperPadding = "_cellWrapperPadding_2o6ad_384";
34857
- const flexBlock = "_flexBlock_2o6ad_387";
34858
- const cellWrapper = "_cellWrapper_2o6ad_384";
34859
- const disabledLink = "_disabledLink_2o6ad_404";
34860
- const inputWrapper = "_inputWrapper_2o6ad_408";
34861
- const breakWord = "_breakWord_2o6ad_424";
34862
- const inputCell = "_inputCell_2o6ad_427";
34863
- const sliderCell = "_sliderCell_2o6ad_430";
34864
- const staticCell = "_staticCell_2o6ad_434";
34865
- const staticCellContent = "_staticCellContent_2o6ad_437";
34866
- const error$1 = "_error_2o6ad_444";
34867
- const warning$1 = "_warning_2o6ad_445";
34868
- const unit = "_unit_2o6ad_478";
34869
- const sortingCell = "_sortingCell_2o6ad_481";
34870
- const sortingCellIcon = "_sortingCellIcon_2o6ad_489";
34871
- const icon = "_icon_2o6ad_496";
34872
- const clickable = "_clickable_2o6ad_507";
34873
- const checkBoxCell = "_checkBoxCell_2o6ad_511";
34874
- const iconCell = "_iconCell_2o6ad_515";
34875
- const iconWrapper = "_iconWrapper_2o6ad_520";
34876
- const actionsCell = "_actionsCell_2o6ad_524";
34877
- const rightAligned = "_rightAligned_2o6ad_528";
34878
- const centerAligned = "_centerAligned_2o6ad_531";
34879
- const leftAligned = "_leftAligned_2o6ad_534";
34880
- const popover = "_popover_2o6ad_537";
34881
- const disabledPointerEvents = "_disabledPointerEvents_2o6ad_540";
34909
+ const inputInTable$1 = "_inputInTable_h7a1c_326";
34910
+ const inputFocus$1 = "_inputFocus_h7a1c_342";
34911
+ const inputError$1 = "_inputError_h7a1c_347";
34912
+ const inputWarning$1 = "_inputWarning_h7a1c_348";
34913
+ const inputDisabled$1 = "_inputDisabled_h7a1c_379";
34914
+ const hideScrollbars$1 = "_hideScrollbars_h7a1c_384";
34915
+ const cellWrapperPadding = "_cellWrapperPadding_h7a1c_394";
34916
+ const flexBlock = "_flexBlock_h7a1c_397";
34917
+ const cellWrapper = "_cellWrapper_h7a1c_394";
34918
+ const disabledLink = "_disabledLink_h7a1c_414";
34919
+ const inputWrapper = "_inputWrapper_h7a1c_418";
34920
+ const breakWord = "_breakWord_h7a1c_434";
34921
+ const inputCell = "_inputCell_h7a1c_437";
34922
+ const sliderCell = "_sliderCell_h7a1c_440";
34923
+ const staticCell = "_staticCell_h7a1c_444";
34924
+ const staticCellContent = "_staticCellContent_h7a1c_447";
34925
+ const error$1 = "_error_h7a1c_454";
34926
+ const warning$1 = "_warning_h7a1c_455";
34927
+ const unit = "_unit_h7a1c_488";
34928
+ const sortingCell = "_sortingCell_h7a1c_491";
34929
+ const sortingCellIcon = "_sortingCellIcon_h7a1c_499";
34930
+ const icon = "_icon_h7a1c_506";
34931
+ const clickable = "_clickable_h7a1c_517";
34932
+ const checkBoxCell = "_checkBoxCell_h7a1c_521";
34933
+ const iconCell = "_iconCell_h7a1c_525";
34934
+ const iconWrapper = "_iconWrapper_h7a1c_530";
34935
+ const actionsCell = "_actionsCell_h7a1c_534";
34936
+ const rightAligned = "_rightAligned_h7a1c_538";
34937
+ const centerAligned = "_centerAligned_h7a1c_541";
34938
+ const leftAligned = "_leftAligned_h7a1c_544";
34939
+ const popover = "_popover_h7a1c_547";
34940
+ const disabledPointerEvents = "_disabledPointerEvents_h7a1c_550";
34882
34941
  const styles$7 = {
34883
34942
  inputInTable: inputInTable$1,
34884
34943
  inputFocus: inputFocus$1,
34885
34944
  inputError: inputError$1,
34886
34945
  inputWarning: inputWarning$1,
34887
34946
  inputDisabled: inputDisabled$1,
34947
+ hideScrollbars: hideScrollbars$1,
34888
34948
  cellWrapperPadding,
34889
34949
  flexBlock,
34890
34950
  cellWrapper,
@@ -36155,22 +36215,24 @@ TextLink.propTypes = {
36155
36215
  target: propTypes$1.exports.string,
36156
36216
  testId: propTypes$1.exports.string
36157
36217
  };
36158
- const inputInTable = "_inputInTable_1r51y_326";
36159
- const inputFocus = "_inputFocus_1r51y_342";
36160
- const inputError = "_inputError_1r51y_347";
36161
- const inputWarning = "_inputWarning_1r51y_348";
36162
- const inputDisabled = "_inputDisabled_1r51y_379";
36163
- const textarea = "_textarea_1r51y_384";
36164
- const small$1 = "_small_1r51y_417";
36165
- const error = "_error_1r51y_423";
36166
- const warning = "_warning_1r51y_438";
36167
- const monospace = "_monospace_1r51y_453";
36218
+ const inputInTable = "_inputInTable_1bb6w_326";
36219
+ const inputFocus = "_inputFocus_1bb6w_342";
36220
+ const inputError = "_inputError_1bb6w_347";
36221
+ const inputWarning = "_inputWarning_1bb6w_348";
36222
+ const inputDisabled = "_inputDisabled_1bb6w_379";
36223
+ const hideScrollbars = "_hideScrollbars_1bb6w_384";
36224
+ const textarea = "_textarea_1bb6w_394";
36225
+ const small$1 = "_small_1bb6w_427";
36226
+ const error = "_error_1bb6w_433";
36227
+ const warning = "_warning_1bb6w_448";
36228
+ const monospace = "_monospace_1bb6w_463";
36168
36229
  const styles$4 = {
36169
36230
  inputInTable,
36170
36231
  inputFocus,
36171
36232
  inputError,
36172
36233
  inputWarning,
36173
36234
  inputDisabled,
36235
+ hideScrollbars,
36174
36236
  textarea,
36175
36237
  small: small$1,
36176
36238
  error,