react-magma-dom 4.10.0-next.18 → 4.10.0-next.19
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.
- package/dist/components/DatePicker/CalendarContext.d.ts +1 -0
- package/dist/esm/index.js +397 -224
- package/dist/esm/index.js.map +1 -1
- package/dist/i18n/interface.d.ts +3 -0
- package/dist/properties.json +135 -15
- package/dist/react-magma-dom.cjs.development.js +383 -219
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
package/dist/i18n/interface.d.ts
CHANGED
|
@@ -107,6 +107,9 @@ export interface I18nInterface {
|
|
|
107
107
|
disabledDayAriaLabel: string;
|
|
108
108
|
selectedDayAriaLabel: string;
|
|
109
109
|
todayAriaLabel: string;
|
|
110
|
+
today: string;
|
|
111
|
+
navigateToCurrentDateAriaLabel: string;
|
|
112
|
+
backToCalendarAriaLabel: string;
|
|
110
113
|
helpModal: {
|
|
111
114
|
header: string;
|
|
112
115
|
helpButtonAriaLabel: string;
|
package/dist/properties.json
CHANGED
|
@@ -5251,6 +5251,14 @@
|
|
|
5251
5251
|
},
|
|
5252
5252
|
"deprecated": false
|
|
5253
5253
|
},
|
|
5254
|
+
"setFocusedTodayDate": {
|
|
5255
|
+
"name": "setFocusedTodayDate",
|
|
5256
|
+
"required": true,
|
|
5257
|
+
"type": {
|
|
5258
|
+
"name": "function"
|
|
5259
|
+
},
|
|
5260
|
+
"deprecated": false
|
|
5261
|
+
},
|
|
5254
5262
|
"showHelperInformation": {
|
|
5255
5263
|
"name": "showHelperInformation",
|
|
5256
5264
|
"required": true,
|
|
@@ -5305,6 +5313,118 @@
|
|
|
5305
5313
|
}
|
|
5306
5314
|
}
|
|
5307
5315
|
},
|
|
5316
|
+
{
|
|
5317
|
+
"name": "CalendarDayState",
|
|
5318
|
+
"kind": 4194304,
|
|
5319
|
+
"kindString": "Type alias",
|
|
5320
|
+
"flags": {},
|
|
5321
|
+
"type": {
|
|
5322
|
+
"type": "reflection",
|
|
5323
|
+
"declaration": {
|
|
5324
|
+
"id": 21526,
|
|
5325
|
+
"name": "__type",
|
|
5326
|
+
"kind": 65536,
|
|
5327
|
+
"kindString": "Type literal",
|
|
5328
|
+
"flags": {},
|
|
5329
|
+
"children": [
|
|
5330
|
+
{
|
|
5331
|
+
"id": 21528,
|
|
5332
|
+
"name": "disabled",
|
|
5333
|
+
"kind": 32,
|
|
5334
|
+
"kindString": "Variable",
|
|
5335
|
+
"flags": {},
|
|
5336
|
+
"sources": [
|
|
5337
|
+
{
|
|
5338
|
+
"fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
|
|
5339
|
+
"line": 23,
|
|
5340
|
+
"character": 10
|
|
5341
|
+
}
|
|
5342
|
+
],
|
|
5343
|
+
"type": {
|
|
5344
|
+
"type": "intrinsic",
|
|
5345
|
+
"name": "boolean"
|
|
5346
|
+
}
|
|
5347
|
+
},
|
|
5348
|
+
{
|
|
5349
|
+
"id": 21527,
|
|
5350
|
+
"name": "isChosen",
|
|
5351
|
+
"kind": 32,
|
|
5352
|
+
"kindString": "Variable",
|
|
5353
|
+
"flags": {},
|
|
5354
|
+
"sources": [
|
|
5355
|
+
{
|
|
5356
|
+
"fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
|
|
5357
|
+
"line": 22,
|
|
5358
|
+
"character": 10
|
|
5359
|
+
}
|
|
5360
|
+
],
|
|
5361
|
+
"type": {
|
|
5362
|
+
"type": "intrinsic",
|
|
5363
|
+
"name": "boolean"
|
|
5364
|
+
}
|
|
5365
|
+
},
|
|
5366
|
+
{
|
|
5367
|
+
"id": 21529,
|
|
5368
|
+
"name": "isDayInCurrentMonth",
|
|
5369
|
+
"kind": 32,
|
|
5370
|
+
"kindString": "Variable",
|
|
5371
|
+
"flags": {},
|
|
5372
|
+
"sources": [
|
|
5373
|
+
{
|
|
5374
|
+
"fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
|
|
5375
|
+
"line": 24,
|
|
5376
|
+
"character": 21
|
|
5377
|
+
}
|
|
5378
|
+
],
|
|
5379
|
+
"type": {
|
|
5380
|
+
"type": "intrinsic",
|
|
5381
|
+
"name": "boolean"
|
|
5382
|
+
}
|
|
5383
|
+
},
|
|
5384
|
+
{
|
|
5385
|
+
"id": 21530,
|
|
5386
|
+
"name": "isToday",
|
|
5387
|
+
"kind": 32,
|
|
5388
|
+
"kindString": "Variable",
|
|
5389
|
+
"flags": {},
|
|
5390
|
+
"sources": [
|
|
5391
|
+
{
|
|
5392
|
+
"fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
|
|
5393
|
+
"line": 25,
|
|
5394
|
+
"character": 9
|
|
5395
|
+
}
|
|
5396
|
+
],
|
|
5397
|
+
"type": {
|
|
5398
|
+
"type": "intrinsic",
|
|
5399
|
+
"name": "boolean"
|
|
5400
|
+
}
|
|
5401
|
+
}
|
|
5402
|
+
],
|
|
5403
|
+
"groups": [
|
|
5404
|
+
{
|
|
5405
|
+
"title": "Variables",
|
|
5406
|
+
"kind": 32,
|
|
5407
|
+
"children": [
|
|
5408
|
+
21528,
|
|
5409
|
+
21527,
|
|
5410
|
+
21529,
|
|
5411
|
+
21530
|
|
5412
|
+
]
|
|
5413
|
+
}
|
|
5414
|
+
],
|
|
5415
|
+
"sources": [
|
|
5416
|
+
{
|
|
5417
|
+
"fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
|
|
5418
|
+
"line": 21,
|
|
5419
|
+
"character": 23
|
|
5420
|
+
}
|
|
5421
|
+
]
|
|
5422
|
+
}
|
|
5423
|
+
},
|
|
5424
|
+
"id": "CalendarDayState",
|
|
5425
|
+
"tags": {},
|
|
5426
|
+
"properties": {}
|
|
5427
|
+
},
|
|
5308
5428
|
{
|
|
5309
5429
|
"name": "CalendarHeaderProps",
|
|
5310
5430
|
"kind": 256,
|
|
@@ -10421,12 +10541,12 @@
|
|
|
10421
10541
|
"typeArguments": [
|
|
10422
10542
|
{
|
|
10423
10543
|
"type": "reference",
|
|
10424
|
-
"id":
|
|
10544
|
+
"id": 25454,
|
|
10425
10545
|
"name": "NavTabChildrenProps"
|
|
10426
10546
|
},
|
|
10427
10547
|
{
|
|
10428
10548
|
"type": "reference",
|
|
10429
|
-
"id":
|
|
10549
|
+
"id": 25728,
|
|
10430
10550
|
"name": "NavTabComponentProps"
|
|
10431
10551
|
}
|
|
10432
10552
|
],
|
|
@@ -10528,7 +10648,7 @@
|
|
|
10528
10648
|
"typeArguments": [
|
|
10529
10649
|
{
|
|
10530
10650
|
"type": "reference",
|
|
10531
|
-
"id":
|
|
10651
|
+
"id": 23656,
|
|
10532
10652
|
"name": "TabsProps"
|
|
10533
10653
|
},
|
|
10534
10654
|
{
|
|
@@ -10883,12 +11003,12 @@
|
|
|
10883
11003
|
"types": [
|
|
10884
11004
|
{
|
|
10885
11005
|
"type": "reference",
|
|
10886
|
-
"id":
|
|
11006
|
+
"id": 26649,
|
|
10887
11007
|
"name": "ControlledPaginationProps"
|
|
10888
11008
|
},
|
|
10889
11009
|
{
|
|
10890
11010
|
"type": "reference",
|
|
10891
|
-
"id":
|
|
11011
|
+
"id": 26932,
|
|
10892
11012
|
"name": "UncontrolledPaginationProps"
|
|
10893
11013
|
}
|
|
10894
11014
|
]
|
|
@@ -11913,12 +12033,12 @@
|
|
|
11913
12033
|
"typeArguments": [
|
|
11914
12034
|
{
|
|
11915
12035
|
"type": "reference",
|
|
11916
|
-
"id":
|
|
12036
|
+
"id": 31589,
|
|
11917
12037
|
"name": "IconOnlyPopoverTriggerProps"
|
|
11918
12038
|
},
|
|
11919
12039
|
{
|
|
11920
12040
|
"type": "reference",
|
|
11921
|
-
"id":
|
|
12041
|
+
"id": 31594,
|
|
11922
12042
|
"name": "IconTextPopoverTriggerProps"
|
|
11923
12043
|
}
|
|
11924
12044
|
],
|
|
@@ -16492,12 +16612,12 @@
|
|
|
16492
16612
|
"types": [
|
|
16493
16613
|
{
|
|
16494
16614
|
"type": "reference",
|
|
16495
|
-
"id":
|
|
16615
|
+
"id": 23653,
|
|
16496
16616
|
"name": "HorizontalTabsProps"
|
|
16497
16617
|
},
|
|
16498
16618
|
{
|
|
16499
16619
|
"type": "reference",
|
|
16500
|
-
"id":
|
|
16620
|
+
"id": 23650,
|
|
16501
16621
|
"name": "VerticalTabsProps"
|
|
16502
16622
|
}
|
|
16503
16623
|
]
|
|
@@ -16975,12 +17095,12 @@
|
|
|
16975
17095
|
"typeArguments": [
|
|
16976
17096
|
{
|
|
16977
17097
|
"type": "reference",
|
|
16978
|
-
"id":
|
|
17098
|
+
"id": 29843,
|
|
16979
17099
|
"name": "DeletableTagProps"
|
|
16980
17100
|
},
|
|
16981
17101
|
{
|
|
16982
17102
|
"type": "reference",
|
|
16983
|
-
"id":
|
|
17103
|
+
"id": 29856,
|
|
16984
17104
|
"name": "ClickableTagProps"
|
|
16985
17105
|
}
|
|
16986
17106
|
],
|
|
@@ -17225,7 +17345,7 @@
|
|
|
17225
17345
|
"type": "query",
|
|
17226
17346
|
"queryType": {
|
|
17227
17347
|
"type": "reference",
|
|
17228
|
-
"id":
|
|
17348
|
+
"id": 31184,
|
|
17229
17349
|
"name": "useTimePicker"
|
|
17230
17350
|
}
|
|
17231
17351
|
}
|
|
@@ -17920,12 +18040,12 @@
|
|
|
17920
18040
|
"typeArguments": [
|
|
17921
18041
|
{
|
|
17922
18042
|
"type": "reference",
|
|
17923
|
-
"id":
|
|
18043
|
+
"id": 35993,
|
|
17924
18044
|
"name": "ToggleButtonTextProps"
|
|
17925
18045
|
},
|
|
17926
18046
|
{
|
|
17927
18047
|
"type": "reference",
|
|
17928
|
-
"id":
|
|
18048
|
+
"id": 36277,
|
|
17929
18049
|
"name": "ToggleButtonIconProps"
|
|
17930
18050
|
}
|
|
17931
18051
|
],
|
|
@@ -19465,7 +19585,7 @@
|
|
|
19465
19585
|
"type": "query",
|
|
19466
19586
|
"queryType": {
|
|
19467
19587
|
"type": "reference",
|
|
19468
|
-
"id":
|
|
19588
|
+
"id": 34728,
|
|
19469
19589
|
"name": "useTreeView"
|
|
19470
19590
|
}
|
|
19471
19591
|
}
|