react-magma-dom 4.10.0-next.26 → 4.10.0-next.28

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.
@@ -144,6 +144,7 @@ export interface I18nInterface {
144
144
  };
145
145
  };
146
146
  };
147
+ dateTimePickerLabel: string;
147
148
  dropdown: {
148
149
  menuItemSelectedAriaLabel: string;
149
150
  toggleMenuAriaLabel: string;
package/dist/index.d.ts CHANGED
@@ -16,6 +16,7 @@ export { Checkbox, CheckboxTextPosition, CheckboxProps, } from './components/Che
16
16
  export { Container, ContainerProps } from './components/Container';
17
17
  export { Datagrid, DatagridProps } from './components/Datagrid';
18
18
  export { DatePicker, DatePickerProps } from './components/DatePicker';
19
+ export { DateTimePicker, DateTimePickerProps, } from './components/DateTimePicker';
19
20
  export { inDateRange, getDateFromString } from './components/DatePicker/utils';
20
21
  export { Dropdown, DropdownAlignment, DropdownDropDirection, DropdownProps, } from './components/Dropdown';
21
22
  export { DropdownContent, DropdownContentProps, } from './components/Dropdown/DropdownContent';
@@ -43,7 +44,7 @@ export { Input, InputProps } from './components/Input';
43
44
  export { InputBase, InputBaseProps, InputIconPosition, InputSize, InputType, } from './components/InputBase';
44
45
  export { InputMessage } from './components/Input/InputMessage';
45
46
  export { Label, LabelPosition } from './components/Label';
46
- export { LoadingIndicator, LoadingIndicatorProps, } from './components/LoadingIndicator';
47
+ export { LoadingIndicator, LoadingIndicatorProps, LoadingIndicatorType, } from './components/LoadingIndicator';
47
48
  export { NativeSelect, NativeSelectProps } from './components/NativeSelect';
48
49
  export { NavTabs } from './components/NavTabs';
49
50
  export { NavTab } from './components/NavTabs/NavTab';
@@ -5511,6 +5511,14 @@
5511
5511
  },
5512
5512
  "deprecated": false
5513
5513
  },
5514
+ "dateTimePickerContent": {
5515
+ "name": "dateTimePickerContent",
5516
+ "required": false,
5517
+ "type": {
5518
+ "name": "React.ReactNode"
5519
+ },
5520
+ "deprecated": false
5521
+ },
5514
5522
  "focusOnOpen": {
5515
5523
  "name": "focusOnOpen",
5516
5524
  "required": false,
@@ -5649,6 +5657,17 @@
5649
5657
  }
5650
5658
  }
5651
5659
  },
5660
+ {
5661
+ "name": "DatePickerApi",
5662
+ "kind": 256,
5663
+ "kindString": "Interface",
5664
+ "flags": {
5665
+ "isExported": true
5666
+ },
5667
+ "id": "DatePickerApi",
5668
+ "tags": {},
5669
+ "properties": {}
5670
+ },
5652
5671
  {
5653
5672
  "name": "DatePickerProps",
5654
5673
  "kind": 256,
@@ -5844,6 +5863,219 @@
5844
5863
  }
5845
5864
  }
5846
5865
  },
5866
+ {
5867
+ "name": "DateTimePickerProps",
5868
+ "kind": 256,
5869
+ "kindString": "Interface",
5870
+ "flags": {
5871
+ "isExported": true
5872
+ },
5873
+ "id": "DateTimePickerProps",
5874
+ "tags": {},
5875
+ "properties": {
5876
+ "buttonLabelText": {
5877
+ "name": "buttonLabelText",
5878
+ "required": false,
5879
+ "type": {
5880
+ "name": "React.ReactNode"
5881
+ },
5882
+ "description": "Text for button label",
5883
+ "deprecated": false
5884
+ },
5885
+ "defaultValue": {
5886
+ "name": "defaultValue",
5887
+ "required": false,
5888
+ "type": {
5889
+ "name": "Date"
5890
+ },
5891
+ "description": "Default selected date and time values",
5892
+ "deprecated": false
5893
+ },
5894
+ "errorMessage": {
5895
+ "name": "errorMessage",
5896
+ "required": false,
5897
+ "type": {
5898
+ "name": "React.ReactNode"
5899
+ },
5900
+ "description": "Content of the error message. If a value is provided, the component will be styled to show an error state",
5901
+ "deprecated": false
5902
+ },
5903
+ "helperMessage": {
5904
+ "name": "helperMessage",
5905
+ "required": false,
5906
+ "type": {
5907
+ "name": "React.ReactNode"
5908
+ },
5909
+ "description": "Content of the helper message",
5910
+ "deprecated": false
5911
+ },
5912
+ "inputStyle": {
5913
+ "name": "inputStyle",
5914
+ "required": false,
5915
+ "type": {
5916
+ "name": "CSSProperties"
5917
+ },
5918
+ "description": "Style properties for the input element",
5919
+ "deprecated": false
5920
+ },
5921
+ "isClearable": {
5922
+ "name": "isClearable",
5923
+ "required": false,
5924
+ "type": {
5925
+ "name": "boolean"
5926
+ },
5927
+ "description": "Clear contents of input by clicking a clear button",
5928
+ "defaultValue": "false",
5929
+ "deprecated": false
5930
+ },
5931
+ "isInverse": {
5932
+ "name": "isInverse",
5933
+ "required": false,
5934
+ "type": {
5935
+ "name": "boolean"
5936
+ },
5937
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
5938
+ "defaultValue": "false",
5939
+ "deprecated": false
5940
+ },
5941
+ "labelStyle": {
5942
+ "name": "labelStyle",
5943
+ "required": false,
5944
+ "type": {
5945
+ "name": "CSSProperties"
5946
+ },
5947
+ "description": "Style properties for the label element",
5948
+ "deprecated": false
5949
+ },
5950
+ "labelText": {
5951
+ "name": "labelText",
5952
+ "required": true,
5953
+ "type": {
5954
+ "name": "React.ReactNode"
5955
+ },
5956
+ "description": "Text for label",
5957
+ "deprecated": false
5958
+ },
5959
+ "maxDate": {
5960
+ "name": "maxDate",
5961
+ "required": false,
5962
+ "type": {
5963
+ "name": "Date"
5964
+ },
5965
+ "description": "Maximum date allowed to be chosen in the calendar",
5966
+ "deprecated": false
5967
+ },
5968
+ "messageStyle": {
5969
+ "name": "messageStyle",
5970
+ "required": false,
5971
+ "type": {
5972
+ "name": "CSSProperties"
5973
+ },
5974
+ "description": "Style properties for the helper or error message",
5975
+ "deprecated": false
5976
+ },
5977
+ "minDate": {
5978
+ "name": "minDate",
5979
+ "required": false,
5980
+ "type": {
5981
+ "name": "Date"
5982
+ },
5983
+ "description": "Minimum date allowed to be chosen in the calendar",
5984
+ "deprecated": false
5985
+ },
5986
+ "onDateChange": {
5987
+ "name": "onDateChange",
5988
+ "required": false,
5989
+ "type": {
5990
+ "name": "function"
5991
+ },
5992
+ "description": "Event that will fire when day is changed",
5993
+ "deprecated": false
5994
+ },
5995
+ "onDone": {
5996
+ "name": "onDone",
5997
+ "required": false,
5998
+ "type": {
5999
+ "name": "function"
6000
+ },
6001
+ "description": "Event that will fire when the done button is clicked",
6002
+ "deprecated": false
6003
+ },
6004
+ "onInputBlur": {
6005
+ "name": "onInputBlur",
6006
+ "required": false,
6007
+ "type": {
6008
+ "name": "function"
6009
+ },
6010
+ "description": "Event that will fire when the text input loses focus",
6011
+ "deprecated": false
6012
+ },
6013
+ "onInputChange": {
6014
+ "name": "onInputChange",
6015
+ "required": false,
6016
+ "type": {
6017
+ "name": "function"
6018
+ },
6019
+ "description": "Event that will fire when the text input is changed",
6020
+ "deprecated": false
6021
+ },
6022
+ "onInputFocus": {
6023
+ "name": "onInputFocus",
6024
+ "required": false,
6025
+ "type": {
6026
+ "name": "function"
6027
+ },
6028
+ "description": "Event that will fire when the text input gains focus",
6029
+ "deprecated": false
6030
+ },
6031
+ "onTimeChange": {
6032
+ "name": "onTimeChange",
6033
+ "required": false,
6034
+ "type": {
6035
+ "name": "function"
6036
+ },
6037
+ "description": "Event that will fire when time is changed",
6038
+ "deprecated": false
6039
+ },
6040
+ "placeholder": {
6041
+ "name": "placeholder",
6042
+ "required": false,
6043
+ "type": {
6044
+ "name": "string"
6045
+ },
6046
+ "description": "Text for input placeholder",
6047
+ "deprecated": false
6048
+ },
6049
+ "required": {
6050
+ "name": "required",
6051
+ "required": false,
6052
+ "type": {
6053
+ "name": "boolean"
6054
+ },
6055
+ "description": "If true, this component must have a value",
6056
+ "defaultValue": "false",
6057
+ "deprecated": false
6058
+ },
6059
+ "timePickerLabelText": {
6060
+ "name": "timePickerLabelText",
6061
+ "required": false,
6062
+ "type": {
6063
+ "name": "React.ReactNode"
6064
+ },
6065
+ "description": "Text for time picker label",
6066
+ "deprecated": false
6067
+ },
6068
+ "value": {
6069
+ "name": "value",
6070
+ "required": false,
6071
+ "type": {
6072
+ "name": "Date"
6073
+ },
6074
+ "description": "Value of the date input, used when setting the date value externally",
6075
+ "deprecated": false
6076
+ }
6077
+ }
6078
+ },
5847
6079
  {
5848
6080
  "name": "DefinitionListProps",
5849
6081
  "kind": 256,
@@ -10651,12 +10883,12 @@
10651
10883
  "typeArguments": [
10652
10884
  {
10653
10885
  "type": "reference",
10654
- "id": 25510,
10886
+ "id": 25942,
10655
10887
  "name": "NavTabChildrenProps"
10656
10888
  },
10657
10889
  {
10658
10890
  "type": "reference",
10659
- "id": 25784,
10891
+ "id": 26216,
10660
10892
  "name": "NavTabComponentProps"
10661
10893
  }
10662
10894
  ],
@@ -10758,7 +10990,7 @@
10758
10990
  "typeArguments": [
10759
10991
  {
10760
10992
  "type": "reference",
10761
- "id": 23712,
10993
+ "id": 24144,
10762
10994
  "name": "TabsProps"
10763
10995
  },
10764
10996
  {
@@ -11113,12 +11345,12 @@
11113
11345
  "types": [
11114
11346
  {
11115
11347
  "type": "reference",
11116
- "id": 26705,
11348
+ "id": 27137,
11117
11349
  "name": "ControlledPaginationProps"
11118
11350
  },
11119
11351
  {
11120
11352
  "type": "reference",
11121
- "id": 26988,
11353
+ "id": 27420,
11122
11354
  "name": "UncontrolledPaginationProps"
11123
11355
  }
11124
11356
  ]
@@ -12143,12 +12375,12 @@
12143
12375
  "typeArguments": [
12144
12376
  {
12145
12377
  "type": "reference",
12146
- "id": 31645,
12378
+ "id": 31722,
12147
12379
  "name": "IconOnlyPopoverTriggerProps"
12148
12380
  },
12149
12381
  {
12150
12382
  "type": "reference",
12151
- "id": 31650,
12383
+ "id": 31727,
12152
12384
  "name": "IconTextPopoverTriggerProps"
12153
12385
  }
12154
12386
  ],
@@ -16740,12 +16972,12 @@
16740
16972
  "types": [
16741
16973
  {
16742
16974
  "type": "reference",
16743
- "id": 23709,
16975
+ "id": 24141,
16744
16976
  "name": "HorizontalTabsProps"
16745
16977
  },
16746
16978
  {
16747
16979
  "type": "reference",
16748
- "id": 23706,
16980
+ "id": 24138,
16749
16981
  "name": "VerticalTabsProps"
16750
16982
  }
16751
16983
  ]
@@ -17223,12 +17455,12 @@
17223
17455
  "typeArguments": [
17224
17456
  {
17225
17457
  "type": "reference",
17226
- "id": 29899,
17458
+ "id": 30331,
17227
17459
  "name": "DeletableTagProps"
17228
17460
  },
17229
17461
  {
17230
17462
  "type": "reference",
17231
- "id": 29912,
17463
+ "id": 30344,
17232
17464
  "name": "ClickableTagProps"
17233
17465
  }
17234
17466
  ],
@@ -17473,7 +17705,7 @@
17473
17705
  "type": "query",
17474
17706
  "queryType": {
17475
17707
  "type": "reference",
17476
- "id": 31240,
17708
+ "id": 22216,
17477
17709
  "name": "useTimePicker"
17478
17710
  }
17479
17711
  }
@@ -18168,12 +18400,12 @@
18168
18400
  "typeArguments": [
18169
18401
  {
18170
18402
  "type": "reference",
18171
- "id": 36050,
18403
+ "id": 36128,
18172
18404
  "name": "ToggleButtonTextProps"
18173
18405
  },
18174
18406
  {
18175
18407
  "type": "reference",
18176
- "id": 36334,
18408
+ "id": 36412,
18177
18409
  "name": "ToggleButtonIconProps"
18178
18410
  }
18179
18411
  ],
@@ -19713,7 +19945,7 @@
19713
19945
  "type": "query",
19714
19946
  "queryType": {
19715
19947
  "type": "reference",
19716
- "id": 34785,
19948
+ "id": 34863,
19717
19949
  "name": "useTreeView"
19718
19950
  }
19719
19951
  }