@oliasoft-open-source/react-ui-library 3.2.2 → 3.2.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 +598 -615
  2. package/dist/index.js +243 -219
  3. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12739,31 +12739,33 @@ const dialogShape = propTypes$1.exports.shape({
12739
12739
  Dialog.propTypes = {
12740
12740
  dialog: dialogShape.isRequired
12741
12741
  };
12742
- const inputInTable$9 = "_inputInTable_zltzx_332";
12743
- const inputFocus$9 = "_inputFocus_zltzx_348";
12744
- const inputError$9 = "_inputError_zltzx_353";
12745
- const inputWarning$9 = "_inputWarning_zltzx_354";
12746
- const inputDisabled$9 = "_inputDisabled_zltzx_385";
12747
- const hideScrollbars$9 = "_hideScrollbars_zltzx_390";
12748
- const inline$1 = "_inline_zltzx_412";
12749
- const left$2 = "_left_zltzx_415";
12750
- const right$6 = "_right_zltzx_418";
12751
- const fixed$1 = "_fixed_zltzx_421";
12752
- const border = "_border_zltzx_433";
12753
- const shadow = "_shadow_zltzx_439";
12754
- const drawerContent = "_drawerContent_zltzx_442";
12755
- const isResizing = "_isResizing_zltzx_454";
12756
- const toggleButton = "_toggleButton_zltzx_465";
12757
- const top = "_top_zltzx_478";
12758
- const bottom = "_bottom_zltzx_481";
12759
- const toggleButtonOpen = "_toggleButtonOpen_zltzx_484";
12760
- const tabs$1 = "_tabs_zltzx_487";
12761
- const tab$1 = "_tab_zltzx_487";
12762
- const active$4 = "_active_zltzx_518";
12763
- const tabsContent = "_tabsContent_zltzx_540";
12764
- const resizeHandle = "_resizeHandle_zltzx_546";
12742
+ const inputInTable$9 = "_inputInTable_1ayhn_332";
12743
+ const inputHover$9 = "_inputHover_1ayhn_338";
12744
+ const inputFocus$9 = "_inputFocus_1ayhn_343";
12745
+ const inputError$9 = "_inputError_1ayhn_350";
12746
+ const inputWarning$9 = "_inputWarning_1ayhn_351";
12747
+ const inputDisabled$9 = "_inputDisabled_1ayhn_386";
12748
+ const hideScrollbars$9 = "_hideScrollbars_1ayhn_391";
12749
+ const inline$1 = "_inline_1ayhn_413";
12750
+ const left$2 = "_left_1ayhn_416";
12751
+ const right$6 = "_right_1ayhn_419";
12752
+ const fixed$1 = "_fixed_1ayhn_422";
12753
+ const border = "_border_1ayhn_434";
12754
+ const shadow = "_shadow_1ayhn_440";
12755
+ const drawerContent = "_drawerContent_1ayhn_443";
12756
+ const isResizing = "_isResizing_1ayhn_455";
12757
+ const toggleButton = "_toggleButton_1ayhn_466";
12758
+ const top = "_top_1ayhn_479";
12759
+ const bottom = "_bottom_1ayhn_482";
12760
+ const toggleButtonOpen = "_toggleButtonOpen_1ayhn_485";
12761
+ const tabs$1 = "_tabs_1ayhn_488";
12762
+ const tab$1 = "_tab_1ayhn_488";
12763
+ const active$4 = "_active_1ayhn_519";
12764
+ const tabsContent = "_tabsContent_1ayhn_541";
12765
+ const resizeHandle = "_resizeHandle_1ayhn_547";
12765
12766
  const styles$z = {
12766
12767
  inputInTable: inputInTable$9,
12768
+ inputHover: inputHover$9,
12767
12769
  inputFocus: inputFocus$9,
12768
12770
  inputError: inputError$9,
12769
12771
  inputWarning: inputWarning$9,
@@ -14940,6 +14942,8 @@ const Drawer = ({
14940
14942
  border: border2,
14941
14943
  tabs: tabs2,
14942
14944
  defaultTabIndex,
14945
+ activeTab: activeTabProp,
14946
+ setActiveTab: setActiveTabProp,
14943
14947
  testId,
14944
14948
  onResize,
14945
14949
  getActiveTab
@@ -14947,7 +14951,7 @@ const Drawer = ({
14947
14951
  const isStandardButton = button2 === true;
14948
14952
  const isCustomButton = !isStandardButton && isValidElement(button2);
14949
14953
  const [open, setOpen] = setOpenProp ? [openProp, setOpenProp] : isStandardButton || tabs2 ? useState(openProp) : [openProp, null];
14950
- const [activeTab, setActiveTab] = useState(open ? defaultTabIndex : null);
14954
+ const [activeTab, setActiveTab] = setActiveTabProp ? [activeTabProp, setActiveTabProp] : useState(open ? defaultTabIndex : null);
14951
14955
  const openWidth = Array.isArray(width) ? width[activeTab] : width;
14952
14956
  const TABS_WIDTH = 37;
14953
14957
  const currentWidth = open ? openWidth : tabs2 ? TABS_WIDTH : closedWidth;
@@ -15021,6 +15025,8 @@ Drawer.defaultProps = {
15021
15025
  children: null,
15022
15026
  tabs: null,
15023
15027
  defaultTabIndex: 0,
15028
+ activeTab: void 0,
15029
+ setActiveTab: void 0,
15024
15030
  testId: void 0,
15025
15031
  onResize: null,
15026
15032
  getActiveTab: null
@@ -15046,6 +15052,8 @@ Drawer.propTypes = {
15046
15052
  })),
15047
15053
  testId: propTypes$1.exports.string,
15048
15054
  defaultTabIndex: propTypes$1.exports.number,
15055
+ activeTab: propTypes$1.exports.number,
15056
+ setActiveTab: propTypes$1.exports.func,
15049
15057
  onResize: propTypes$1.exports.func,
15050
15058
  getActiveTab: propTypes$1.exports.func
15051
15059
  };
@@ -15164,29 +15172,31 @@ InputGroup.propTypes = {
15164
15172
  small: propTypes$1.exports.bool,
15165
15173
  width: propTypes$1.exports.oneOfType([propTypes$1.exports.string, propTypes$1.exports.number])
15166
15174
  };
15167
- const inputInTable$8 = "_inputInTable_3ejaz_332";
15168
- const inputFocus$8 = "_inputFocus_3ejaz_348";
15169
- const inputError$8 = "_inputError_3ejaz_353";
15170
- const inputWarning$8 = "_inputWarning_3ejaz_354";
15171
- const inputDisabled$8 = "_inputDisabled_3ejaz_385";
15172
- const hideScrollbars$8 = "_hideScrollbars_3ejaz_390";
15173
- const input$2 = "_input_3ejaz_332";
15174
- const isInTable$3 = "_isInTable_3ejaz_421";
15175
- const small$8 = "_small_3ejaz_449";
15176
- const error$6 = "_error_3ejaz_455";
15177
- const warning$9 = "_warning_3ejaz_470";
15178
- const right$5 = "_right_3ejaz_490";
15179
- const groupOrderFirst$3 = "_groupOrderFirst_3ejaz_493";
15180
- const groupOrderMiddle$3 = "_groupOrderMiddle_3ejaz_494";
15181
- const groupOrderLast$3 = "_groupOrderLast_3ejaz_495";
15175
+ const inputInTable$8 = "_inputInTable_19y6z_332";
15176
+ const inputHover$8 = "_inputHover_19y6z_338";
15177
+ const inputFocus$8 = "_inputFocus_19y6z_343";
15178
+ const inputError$8 = "_inputError_19y6z_350";
15179
+ const inputWarning$8 = "_inputWarning_19y6z_351";
15180
+ const inputDisabled$8 = "_inputDisabled_19y6z_386";
15181
+ const hideScrollbars$8 = "_hideScrollbars_19y6z_391";
15182
+ const input$1 = "_input_19y6z_332";
15183
+ const isInTable$3 = "_isInTable_19y6z_422";
15184
+ const small$8 = "_small_19y6z_440";
15185
+ const error$6 = "_error_19y6z_446";
15186
+ const warning$9 = "_warning_19y6z_463";
15187
+ const right$5 = "_right_19y6z_485";
15188
+ const groupOrderFirst$3 = "_groupOrderFirst_19y6z_488";
15189
+ const groupOrderMiddle$3 = "_groupOrderMiddle_19y6z_489";
15190
+ const groupOrderLast$3 = "_groupOrderLast_19y6z_490";
15182
15191
  const styles$w = {
15183
15192
  inputInTable: inputInTable$8,
15193
+ inputHover: inputHover$8,
15184
15194
  inputFocus: inputFocus$8,
15185
15195
  inputError: inputError$8,
15186
15196
  inputWarning: inputWarning$8,
15187
15197
  inputDisabled: inputDisabled$8,
15188
15198
  hideScrollbars: hideScrollbars$8,
15189
- input: input$2,
15199
+ input: input$1,
15190
15200
  isInTable: isInTable$3,
15191
15201
  small: small$8,
15192
15202
  error: error$6,
@@ -24634,43 +24644,45 @@ var InfiniteScroll = function(_super) {
24634
24644
  };
24635
24645
  return InfiniteScroll2;
24636
24646
  }(Component$1);
24637
- const inputInTable$7 = "_inputInTable_olz29_332";
24638
- const inputFocus$7 = "_inputFocus_olz29_348";
24639
- const inputError$7 = "_inputError_olz29_353";
24640
- const inputWarning$7 = "_inputWarning_olz29_354";
24641
- const inputDisabled$7 = "_inputDisabled_olz29_385";
24642
- const hideScrollbars$7 = "_hideScrollbars_olz29_390";
24643
- const header$1 = "_header_olz29_400";
24644
- const headerTitle = "_headerTitle_olz29_400";
24645
- const heading$3 = "_heading_olz29_401";
24646
- const itemHeader = "_itemHeader_olz29_401";
24647
- const narrow = "_narrow_olz29_404";
24648
- const stickyHeader = "_stickyHeader_olz29_408";
24649
- const title$4 = "_title_olz29_419";
24650
- const name = "_name_olz29_425";
24651
- const iconTooltipMargin = "_iconTooltipMargin_olz29_428";
24652
- const bold = "_bold_olz29_431";
24653
- const toggleNarrow = "_toggleNarrow_olz29_440";
24654
- const drag = "_drag_olz29_458";
24655
- const list$1 = "_list_olz29_478";
24656
- const bordered$1 = "_bordered_olz29_482";
24657
- const item$4 = "_item_olz29_401";
24658
- const action = "_action_olz29_515";
24659
- const active$3 = "_active_olz29_518";
24660
- const disabled$6 = "_disabled_olz29_533";
24661
- const label$6 = "_label_olz29_544";
24662
- const details$2 = "_details_olz29_551";
24663
- const metadata = "_metadata_olz29_552";
24664
- const itemContent = "_itemContent_olz29_561";
24665
- const indentIcon = "_indentIcon_olz29_565";
24666
- const expandIcon = "_expandIcon_olz29_569";
24667
- const expanded = "_expanded_olz29_575";
24668
- const right$4 = "_right_olz29_578";
24669
- const actions = "_actions_olz29_585";
24670
- const scrollableList = "_scrollableList_olz29_590";
24671
- const hideScrollbar = "_hideScrollbar_olz29_390";
24647
+ const inputInTable$7 = "_inputInTable_135v4_332";
24648
+ const inputHover$7 = "_inputHover_135v4_338";
24649
+ const inputFocus$7 = "_inputFocus_135v4_343";
24650
+ const inputError$7 = "_inputError_135v4_350";
24651
+ const inputWarning$7 = "_inputWarning_135v4_351";
24652
+ const inputDisabled$7 = "_inputDisabled_135v4_386";
24653
+ const hideScrollbars$7 = "_hideScrollbars_135v4_391";
24654
+ const header$1 = "_header_135v4_401";
24655
+ const headerTitle = "_headerTitle_135v4_401";
24656
+ const heading$3 = "_heading_135v4_402";
24657
+ const itemHeader = "_itemHeader_135v4_402";
24658
+ const narrow = "_narrow_135v4_405";
24659
+ const stickyHeader = "_stickyHeader_135v4_409";
24660
+ const title$4 = "_title_135v4_420";
24661
+ const name = "_name_135v4_426";
24662
+ const iconTooltipMargin = "_iconTooltipMargin_135v4_429";
24663
+ const bold = "_bold_135v4_432";
24664
+ const toggleNarrow = "_toggleNarrow_135v4_441";
24665
+ const drag = "_drag_135v4_459";
24666
+ const list$1 = "_list_135v4_479";
24667
+ const bordered$1 = "_bordered_135v4_483";
24668
+ const item$4 = "_item_135v4_402";
24669
+ const action = "_action_135v4_516";
24670
+ const active$3 = "_active_135v4_519";
24671
+ const disabled$6 = "_disabled_135v4_534";
24672
+ const label$6 = "_label_135v4_545";
24673
+ const details$2 = "_details_135v4_552";
24674
+ const metadata = "_metadata_135v4_553";
24675
+ const itemContent = "_itemContent_135v4_562";
24676
+ const indentIcon = "_indentIcon_135v4_566";
24677
+ const expandIcon = "_expandIcon_135v4_570";
24678
+ const expanded = "_expanded_135v4_576";
24679
+ const right$4 = "_right_135v4_579";
24680
+ const actions = "_actions_135v4_586";
24681
+ const scrollableList = "_scrollableList_135v4_591";
24682
+ const hideScrollbar = "_hideScrollbar_135v4_391";
24672
24683
  const listStyles = {
24673
24684
  inputInTable: inputInTable$7,
24685
+ inputHover: inputHover$7,
24674
24686
  inputFocus: inputFocus$7,
24675
24687
  inputError: inputError$7,
24676
24688
  inputWarning: inputWarning$7,
@@ -25344,27 +25356,29 @@ Loader.propTypes = {
25344
25356
  testId: propTypes$1.exports.string,
25345
25357
  theme: propTypes$1.exports.string
25346
25358
  };
25347
- const inputInTable$6 = "_inputInTable_1j4f2_332";
25348
- const inputFocus$6 = "_inputFocus_1j4f2_348";
25349
- const inputError$6 = "_inputError_1j4f2_353";
25350
- const inputWarning$6 = "_inputWarning_1j4f2_354";
25351
- const inputDisabled$6 = "_inputDisabled_1j4f2_385";
25352
- const hideScrollbars$6 = "_hideScrollbars_1j4f2_390";
25353
- const container$1 = "_container_1j4f2_406";
25354
- const block = "_block_1j4f2_424";
25355
- const info = "_info_1j4f2_427";
25356
- const success = "_success_1j4f2_431";
25357
- const warning$5 = "_warning_1j4f2_435";
25358
- const error$4 = "_error_1j4f2_439";
25359
- const content$1 = "_content_1j4f2_443";
25360
- const heading$2 = "_heading_1j4f2_447";
25361
- const icon$3 = "_icon_1j4f2_455";
25362
- const dismiss$1 = "_dismiss_1j4f2_456";
25363
- const absolute = "_absolute_1j4f2_469";
25364
- const legendToggle = "_legendToggle_1j4f2_474";
25365
- const detailsText = "_detailsText_1j4f2_490";
25359
+ const inputInTable$6 = "_inputInTable_1irb4_332";
25360
+ const inputHover$6 = "_inputHover_1irb4_338";
25361
+ const inputFocus$6 = "_inputFocus_1irb4_343";
25362
+ const inputError$6 = "_inputError_1irb4_350";
25363
+ const inputWarning$6 = "_inputWarning_1irb4_351";
25364
+ const inputDisabled$6 = "_inputDisabled_1irb4_386";
25365
+ const hideScrollbars$6 = "_hideScrollbars_1irb4_391";
25366
+ const container$1 = "_container_1irb4_407";
25367
+ const block = "_block_1irb4_425";
25368
+ const info = "_info_1irb4_428";
25369
+ const success = "_success_1irb4_432";
25370
+ const warning$5 = "_warning_1irb4_436";
25371
+ const error$4 = "_error_1irb4_440";
25372
+ const content$1 = "_content_1irb4_444";
25373
+ const heading$2 = "_heading_1irb4_448";
25374
+ const icon$3 = "_icon_1irb4_456";
25375
+ const dismiss$1 = "_dismiss_1irb4_457";
25376
+ const absolute = "_absolute_1irb4_470";
25377
+ const legendToggle = "_legendToggle_1irb4_475";
25378
+ const detailsText = "_detailsText_1irb4_491";
25366
25379
  const styles$p = {
25367
25380
  inputInTable: inputInTable$6,
25381
+ inputHover: inputHover$6,
25368
25382
  inputFocus: inputFocus$6,
25369
25383
  inputError: inputError$6,
25370
25384
  inputWarning: inputWarning$6,
@@ -25776,25 +25790,26 @@ Page.propTypes = {
25776
25790
  scroll: propTypes$1.exports.bool,
25777
25791
  top: propTypes$1.exports.oneOfType([propTypes$1.exports.number, propTypes$1.exports.string])
25778
25792
  };
25779
- const inputInTable$5 = "_inputInTable_1phe1_332";
25780
- const inputFocus$5 = "_inputFocus_1phe1_348";
25781
- const inputError$5 = "_inputError_1phe1_353";
25782
- const inputWarning$5 = "_inputWarning_1phe1_354";
25783
- const inputDisabled$5 = "_inputDisabled_1phe1_385";
25784
- const hideScrollbars$5 = "_hideScrollbars_1phe1_390";
25785
- const select = "_select_1phe1_400";
25786
- const isInTable$2 = "_isInTable_1phe1_436";
25787
- const unSelected = "_unSelected_1phe1_452";
25788
- const error$3 = "_error_1phe1_459";
25789
- const warning$4 = "_warning_1phe1_474";
25790
- const small$6 = "_small_1phe1_489";
25791
- const right$3 = "_right_1phe1_496";
25792
- const groupOrderFirst$1 = "_groupOrderFirst_1phe1_507";
25793
- const input$1 = "_input_1phe1_332";
25794
- const groupOrderMiddle$1 = "_groupOrderMiddle_1phe1_508";
25795
- const groupOrderLast$1 = "_groupOrderLast_1phe1_509";
25793
+ const inputInTable$5 = "_inputInTable_quufr_332";
25794
+ const inputHover$5 = "_inputHover_quufr_338";
25795
+ const inputFocus$5 = "_inputFocus_quufr_343";
25796
+ const inputError$5 = "_inputError_quufr_350";
25797
+ const inputWarning$5 = "_inputWarning_quufr_351";
25798
+ const inputDisabled$5 = "_inputDisabled_quufr_386";
25799
+ const hideScrollbars$5 = "_hideScrollbars_quufr_391";
25800
+ const select = "_select_quufr_401";
25801
+ const isInTable$2 = "_isInTable_quufr_442";
25802
+ const unSelected = "_unSelected_quufr_448";
25803
+ const error$3 = "_error_quufr_455";
25804
+ const warning$4 = "_warning_quufr_472";
25805
+ const small$6 = "_small_quufr_489";
25806
+ const right$3 = "_right_quufr_496";
25807
+ const groupOrderFirst$1 = "_groupOrderFirst_quufr_507";
25808
+ const groupOrderMiddle$1 = "_groupOrderMiddle_quufr_508";
25809
+ const groupOrderLast$1 = "_groupOrderLast_quufr_513";
25796
25810
  const styles$l = {
25797
25811
  inputInTable: inputInTable$5,
25812
+ inputHover: inputHover$5,
25798
25813
  inputFocus: inputFocus$5,
25799
25814
  inputError: inputError$5,
25800
25815
  inputWarning: inputWarning$5,
@@ -25808,7 +25823,6 @@ const styles$l = {
25808
25823
  small: small$6,
25809
25824
  right: right$3,
25810
25825
  groupOrderFirst: groupOrderFirst$1,
25811
- input: input$1,
25812
25826
  groupOrderMiddle: groupOrderMiddle$1,
25813
25827
  groupOrderLast: groupOrderLast$1
25814
25828
  };
@@ -26861,38 +26875,40 @@ const Layer = ({
26861
26875
  })
26862
26876
  });
26863
26877
  };
26864
- const inputInTable$4 = "_inputInTable_1pdad_332";
26865
- const inputFocus$4 = "_inputFocus_1pdad_348";
26866
- const inputError$4 = "_inputError_1pdad_353";
26867
- const inputWarning$4 = "_inputWarning_1pdad_354";
26868
- const inputDisabled$4 = "_inputDisabled_1pdad_385";
26869
- const hideScrollbars$4 = "_hideScrollbars_1pdad_390";
26870
- const trigger = "_trigger_1pdad_404";
26871
- const isInTable$1 = "_isInTable_1pdad_419";
26872
- const input = "_input_1pdad_332";
26873
- const isOpen = "_isOpen_1pdad_438";
26874
- const error$2 = "_error_1pdad_454";
26875
- const warning$3 = "_warning_1pdad_469";
26876
- const disabled$4 = "_disabled_1pdad_484";
26877
- const iconOpen = "_iconOpen_1pdad_489";
26878
- const icons = "_icons_1pdad_492";
26879
- const clearAll = "_clearAll_1pdad_500";
26880
- const small$4 = "_small_1pdad_509";
26881
- const focus = "_focus_1pdad_518";
26882
- const triggerInputContainer = "_triggerInputContainer_1pdad_532";
26883
- const right$2 = "_right_1pdad_541";
26884
- const multiOptions = "_multiOptions_1pdad_554";
26885
- const multiOption = "_multiOption_1pdad_554";
26886
- const label$4 = "_label_1pdad_586";
26887
- const closeMultiOption = "_closeMultiOption_1pdad_589";
26888
- const selectedSingleValue = "_selectedSingleValue_1pdad_604";
26889
- const placeHolder = "_placeHolder_1pdad_605";
26890
- const groupOrderFirst = "_groupOrderFirst_1pdad_644";
26891
- const groupOrderMiddle = "_groupOrderMiddle_1pdad_645";
26892
- const groupOrderLast = "_groupOrderLast_1pdad_646";
26893
- const detailedLabel = "_detailedLabel_1pdad_663";
26878
+ const inputInTable$4 = "_inputInTable_3i4tj_332";
26879
+ const inputHover$4 = "_inputHover_3i4tj_338";
26880
+ const inputFocus$4 = "_inputFocus_3i4tj_343";
26881
+ const inputError$4 = "_inputError_3i4tj_350";
26882
+ const inputWarning$4 = "_inputWarning_3i4tj_351";
26883
+ const inputDisabled$4 = "_inputDisabled_3i4tj_386";
26884
+ const hideScrollbars$4 = "_hideScrollbars_3i4tj_391";
26885
+ const trigger = "_trigger_3i4tj_405";
26886
+ const isInTable$1 = "_isInTable_3i4tj_420";
26887
+ const input = "_input_3i4tj_332";
26888
+ const isOpen = "_isOpen_3i4tj_435";
26889
+ const error$2 = "_error_3i4tj_443";
26890
+ const warning$3 = "_warning_3i4tj_460";
26891
+ const disabled$4 = "_disabled_3i4tj_477";
26892
+ const iconOpen = "_iconOpen_3i4tj_482";
26893
+ const icons = "_icons_3i4tj_485";
26894
+ const clearAll = "_clearAll_3i4tj_493";
26895
+ const small$4 = "_small_3i4tj_502";
26896
+ const focus = "_focus_3i4tj_511";
26897
+ const triggerInputContainer = "_triggerInputContainer_3i4tj_525";
26898
+ const right$2 = "_right_3i4tj_534";
26899
+ const multiOptions = "_multiOptions_3i4tj_547";
26900
+ const multiOption = "_multiOption_3i4tj_547";
26901
+ const label$4 = "_label_3i4tj_579";
26902
+ const closeMultiOption = "_closeMultiOption_3i4tj_582";
26903
+ const selectedSingleValue = "_selectedSingleValue_3i4tj_597";
26904
+ const placeHolder = "_placeHolder_3i4tj_598";
26905
+ const groupOrderFirst = "_groupOrderFirst_3i4tj_637";
26906
+ const groupOrderMiddle = "_groupOrderMiddle_3i4tj_638";
26907
+ const groupOrderLast = "_groupOrderLast_3i4tj_643";
26908
+ const detailedLabel = "_detailedLabel_3i4tj_648";
26894
26909
  const styles$j = {
26895
26910
  inputInTable: inputInTable$4,
26911
+ inputHover: inputHover$4,
26896
26912
  inputFocus: inputFocus$4,
26897
26913
  inputError: inputError$4,
26898
26914
  inputWarning: inputWarning$4,
@@ -28563,25 +28579,27 @@ var reactFastCompare = function isEqual3(a, b2) {
28563
28579
  throw error2;
28564
28580
  }
28565
28581
  };
28566
- const inputInTable$3 = "_inputInTable_1boi8_332";
28567
- const inputFocus$3 = "_inputFocus_1boi8_348";
28568
- const inputError$3 = "_inputError_1boi8_353";
28569
- const inputWarning$3 = "_inputWarning_1boi8_354";
28570
- const inputDisabled$3 = "_inputDisabled_1boi8_385";
28571
- const hideScrollbars$3 = "_hideScrollbars_1boi8_390";
28572
- const sidebar = "_sidebar_1boi8_403";
28573
- const inner = "_inner_1boi8_413";
28574
- const title$3 = "_title_1boi8_424";
28575
- const subtitle = "_subtitle_1boi8_425";
28576
- const label$2 = "_label_1boi8_426";
28577
- const collapsed = "_collapsed_1boi8_430";
28578
- const list = "_list_1boi8_453";
28579
- const item$2 = "_item_1boi8_459";
28580
- const active$2 = "_active_1boi8_480";
28581
- const experimental = "_experimental_1boi8_484";
28582
- const icon$1 = "_icon_1boi8_487";
28582
+ const inputInTable$3 = "_inputInTable_e9nqj_332";
28583
+ const inputHover$3 = "_inputHover_e9nqj_338";
28584
+ const inputFocus$3 = "_inputFocus_e9nqj_343";
28585
+ const inputError$3 = "_inputError_e9nqj_350";
28586
+ const inputWarning$3 = "_inputWarning_e9nqj_351";
28587
+ const inputDisabled$3 = "_inputDisabled_e9nqj_386";
28588
+ const hideScrollbars$3 = "_hideScrollbars_e9nqj_391";
28589
+ const sidebar = "_sidebar_e9nqj_404";
28590
+ const inner = "_inner_e9nqj_414";
28591
+ const title$3 = "_title_e9nqj_425";
28592
+ const subtitle = "_subtitle_e9nqj_426";
28593
+ const label$2 = "_label_e9nqj_427";
28594
+ const collapsed = "_collapsed_e9nqj_431";
28595
+ const list = "_list_e9nqj_454";
28596
+ const item$2 = "_item_e9nqj_460";
28597
+ const active$2 = "_active_e9nqj_481";
28598
+ const experimental = "_experimental_e9nqj_485";
28599
+ const icon$1 = "_icon_e9nqj_488";
28583
28600
  const styles$c = {
28584
28601
  inputInTable: inputInTable$3,
28602
+ inputHover: inputHover$3,
28585
28603
  inputFocus: inputFocus$3,
28586
28604
  inputError: inputError$3,
28587
28605
  inputWarning: inputWarning$3,
@@ -34871,24 +34889,26 @@ Spacer.propTypes = {
34871
34889
  width: propTypes$1.exports.oneOfType([propTypes$1.exports.string, propTypes$1.exports.number]),
34872
34890
  flex: propTypes$1.exports.bool
34873
34891
  };
34874
- const inputInTable$2 = "_inputInTable_1bqo1_332";
34875
- const inputFocus$2 = "_inputFocus_1bqo1_348";
34876
- const inputError$2 = "_inputError_1bqo1_353";
34877
- const inputWarning$2 = "_inputWarning_1bqo1_354";
34878
- const inputDisabled$2 = "_inputDisabled_1bqo1_385";
34879
- const hideScrollbars$2 = "_hideScrollbars_1bqo1_390";
34880
- const cellWrapperPadding$3 = "_cellWrapperPadding_1bqo1_400";
34881
- const flexBlock$3 = "_flexBlock_1bqo1_403";
34882
- const scrollWrapper = "_scrollWrapper_1bqo1_416";
34883
- const bordered = "_bordered_1bqo1_416";
34884
- const maxHeight = "_maxHeight_1bqo1_420";
34885
- const table = "_table_1bqo1_429";
34886
- const cellWrapper$3 = "_cellWrapper_1bqo1_400";
34887
- const title$2 = "_title_1bqo1_511";
34888
- const footer$1 = "_footer_1bqo1_512";
34889
- const striped = "_striped_1bqo1_517";
34892
+ const inputInTable$2 = "_inputInTable_skkdh_332";
34893
+ const inputHover$2 = "_inputHover_skkdh_338";
34894
+ const inputFocus$2 = "_inputFocus_skkdh_343";
34895
+ const inputError$2 = "_inputError_skkdh_350";
34896
+ const inputWarning$2 = "_inputWarning_skkdh_351";
34897
+ const inputDisabled$2 = "_inputDisabled_skkdh_386";
34898
+ const hideScrollbars$2 = "_hideScrollbars_skkdh_391";
34899
+ const cellWrapperPadding$3 = "_cellWrapperPadding_skkdh_401";
34900
+ const flexBlock$3 = "_flexBlock_skkdh_404";
34901
+ const scrollWrapper = "_scrollWrapper_skkdh_417";
34902
+ const bordered = "_bordered_skkdh_417";
34903
+ const maxHeight = "_maxHeight_skkdh_421";
34904
+ const table = "_table_skkdh_430";
34905
+ const cellWrapper$3 = "_cellWrapper_skkdh_401";
34906
+ const title$2 = "_title_skkdh_512";
34907
+ const footer$1 = "_footer_skkdh_513";
34908
+ const striped = "_striped_skkdh_518";
34890
34909
  const styles$a = {
34891
34910
  inputInTable: inputInTable$2,
34911
+ inputHover: inputHover$2,
34892
34912
  inputFocus: inputFocus$2,
34893
34913
  inputError: inputError$2,
34894
34914
  inputWarning: inputWarning$2,
@@ -35045,41 +35065,43 @@ function CgSortAz(props) {
35045
35065
  function CgSortZa(props) {
35046
35066
  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);
35047
35067
  }
35048
- const inputInTable$1 = "_inputInTable_1eedc_332";
35049
- const inputFocus$1 = "_inputFocus_1eedc_348";
35050
- const inputError$1 = "_inputError_1eedc_353";
35051
- const inputWarning$1 = "_inputWarning_1eedc_354";
35052
- const inputDisabled$1 = "_inputDisabled_1eedc_385";
35053
- const hideScrollbars$1 = "_hideScrollbars_1eedc_390";
35054
- const cellWrapperPadding = "_cellWrapperPadding_1eedc_400";
35055
- const flexBlock = "_flexBlock_1eedc_403";
35056
- const cellWrapper = "_cellWrapper_1eedc_400";
35057
- const disabledLink = "_disabledLink_1eedc_421";
35058
- const inputWrapper = "_inputWrapper_1eedc_425";
35059
- const breakWord = "_breakWord_1eedc_441";
35060
- const inputCell = "_inputCell_1eedc_444";
35061
- const sliderCell = "_sliderCell_1eedc_447";
35062
- const staticCell = "_staticCell_1eedc_451";
35063
- const staticCellContent = "_staticCellContent_1eedc_454";
35064
- const error$1 = "_error_1eedc_461";
35065
- const warning$1 = "_warning_1eedc_462";
35066
- const unit = "_unit_1eedc_495";
35067
- const disabled$2 = "_disabled_1eedc_421";
35068
- const sortingCell = "_sortingCell_1eedc_503";
35069
- const sortingCellIcon = "_sortingCellIcon_1eedc_511";
35070
- const icon = "_icon_1eedc_518";
35071
- const clickable = "_clickable_1eedc_529";
35072
- const checkBoxCell = "_checkBoxCell_1eedc_533";
35073
- const iconCell = "_iconCell_1eedc_537";
35074
- const iconWrapper = "_iconWrapper_1eedc_542";
35075
- const actionsCell = "_actionsCell_1eedc_546";
35076
- const rightAligned = "_rightAligned_1eedc_550";
35077
- const centerAligned = "_centerAligned_1eedc_553";
35078
- const leftAligned = "_leftAligned_1eedc_556";
35079
- const popover = "_popover_1eedc_559";
35080
- const disabledPointerEvents = "_disabledPointerEvents_1eedc_562";
35068
+ const inputInTable$1 = "_inputInTable_k2npr_332";
35069
+ const inputHover$1 = "_inputHover_k2npr_338";
35070
+ const inputFocus$1 = "_inputFocus_k2npr_343";
35071
+ const inputError$1 = "_inputError_k2npr_350";
35072
+ const inputWarning$1 = "_inputWarning_k2npr_351";
35073
+ const inputDisabled$1 = "_inputDisabled_k2npr_386";
35074
+ const hideScrollbars$1 = "_hideScrollbars_k2npr_391";
35075
+ const cellWrapperPadding = "_cellWrapperPadding_k2npr_401";
35076
+ const flexBlock = "_flexBlock_k2npr_404";
35077
+ const cellWrapper = "_cellWrapper_k2npr_401";
35078
+ const disabledLink = "_disabledLink_k2npr_422";
35079
+ const inputWrapper = "_inputWrapper_k2npr_426";
35080
+ const breakWord = "_breakWord_k2npr_442";
35081
+ const inputCell = "_inputCell_k2npr_445";
35082
+ const sliderCell = "_sliderCell_k2npr_448";
35083
+ const staticCell = "_staticCell_k2npr_452";
35084
+ const staticCellContent = "_staticCellContent_k2npr_455";
35085
+ const error$1 = "_error_k2npr_462";
35086
+ const warning$1 = "_warning_k2npr_463";
35087
+ const unit = "_unit_k2npr_500";
35088
+ const disabled$2 = "_disabled_k2npr_422";
35089
+ const sortingCell = "_sortingCell_k2npr_508";
35090
+ const sortingCellIcon = "_sortingCellIcon_k2npr_516";
35091
+ const icon = "_icon_k2npr_523";
35092
+ const clickable = "_clickable_k2npr_534";
35093
+ const checkBoxCell = "_checkBoxCell_k2npr_538";
35094
+ const iconCell = "_iconCell_k2npr_542";
35095
+ const iconWrapper = "_iconWrapper_k2npr_547";
35096
+ const actionsCell = "_actionsCell_k2npr_551";
35097
+ const rightAligned = "_rightAligned_k2npr_555";
35098
+ const centerAligned = "_centerAligned_k2npr_558";
35099
+ const leftAligned = "_leftAligned_k2npr_561";
35100
+ const popover = "_popover_k2npr_564";
35101
+ const disabledPointerEvents = "_disabledPointerEvents_k2npr_567";
35081
35102
  const styles$7 = {
35082
35103
  inputInTable: inputInTable$1,
35104
+ inputHover: inputHover$1,
35083
35105
  inputFocus: inputFocus$1,
35084
35106
  inputError: inputError$1,
35085
35107
  inputWarning: inputWarning$1,
@@ -36366,19 +36388,21 @@ TextLink.propTypes = {
36366
36388
  target: propTypes$1.exports.string,
36367
36389
  testId: propTypes$1.exports.string
36368
36390
  };
36369
- const inputInTable = "_inputInTable_1rqe7_332";
36370
- const inputFocus = "_inputFocus_1rqe7_348";
36371
- const inputError = "_inputError_1rqe7_353";
36372
- const inputWarning = "_inputWarning_1rqe7_354";
36373
- const inputDisabled = "_inputDisabled_1rqe7_385";
36374
- const hideScrollbars = "_hideScrollbars_1rqe7_390";
36375
- const textarea = "_textarea_1rqe7_400";
36376
- const small$1 = "_small_1rqe7_433";
36377
- const error = "_error_1rqe7_439";
36378
- const warning = "_warning_1rqe7_454";
36379
- const monospace = "_monospace_1rqe7_469";
36391
+ const inputInTable = "_inputInTable_1t5rh_332";
36392
+ const inputHover = "_inputHover_1t5rh_338";
36393
+ const inputFocus = "_inputFocus_1t5rh_343";
36394
+ const inputError = "_inputError_1t5rh_350";
36395
+ const inputWarning = "_inputWarning_1t5rh_351";
36396
+ const inputDisabled = "_inputDisabled_1t5rh_386";
36397
+ const hideScrollbars = "_hideScrollbars_1t5rh_391";
36398
+ const textarea = "_textarea_1t5rh_401";
36399
+ const small$1 = "_small_1t5rh_438";
36400
+ const error = "_error_1t5rh_444";
36401
+ const warning = "_warning_1t5rh_461";
36402
+ const monospace = "_monospace_1t5rh_478";
36380
36403
  const styles$4 = {
36381
36404
  inputInTable,
36405
+ inputHover,
36382
36406
  inputFocus,
36383
36407
  inputError,
36384
36408
  inputWarning,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "3.2.2",
3
+ "version": "3.2.4",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "module": "./dist/index.js",
6
6
  "main": "./dist/index.js",