@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.1
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/CHANGELOG.md +429 -5
- package/README.md +2 -2
- package/components/GridLoadingOverlay.d.ts +2 -2
- package/components/GridLoadingOverlay.js +4 -4
- package/components/cell/GridCell.js +3 -0
- package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
- package/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/constants/gridClasses.d.ts +24 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +12 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/internals/index.js +1 -0
- package/joy/joySlots.js +7 -2
- package/locales/arSD.js +13 -0
- package/locales/beBY.js +13 -0
- package/locales/bgBG.js +14 -0
- package/locales/csCZ.js +14 -0
- package/locales/daDK.js +14 -0
- package/locales/deDE.js +14 -0
- package/locales/elGR.js +13 -0
- package/locales/esES.js +18 -4
- package/locales/faIR.js +14 -0
- package/locales/fiFI.js +14 -0
- package/locales/frFR.js +14 -0
- package/locales/heIL.js +14 -0
- package/locales/hrHR.js +14 -0
- package/locales/huHU.js +14 -0
- package/locales/isIS.js +13 -0
- package/locales/itIT.js +14 -0
- package/locales/jaJP.js +14 -0
- package/locales/koKR.js +13 -0
- package/locales/nbNO.js +14 -0
- package/locales/nlNL.js +14 -0
- package/locales/nnNO.js +14 -0
- package/locales/plPL.js +14 -0
- package/locales/ptBR.js +14 -0
- package/locales/ptPT.js +14 -0
- package/locales/roRO.js +13 -0
- package/locales/ruRU.js +14 -0
- package/locales/skSK.js +13 -0
- package/locales/svSE.js +18 -5
- package/locales/trTR.js +14 -0
- package/locales/ukUA.js +13 -0
- package/locales/urPK.js +13 -0
- package/locales/viVN.js +14 -0
- package/locales/zhCN.js +18 -4
- package/locales/zhHK.js +13 -0
- package/locales/zhTW.js +13 -0
- package/models/api/gridLocaleTextApi.d.ts +11 -0
- package/models/colDef/gridColDef.d.ts +4 -0
- package/models/gridDataSource.d.ts +12 -12
- package/modern/components/GridLoadingOverlay.js +4 -4
- package/modern/components/cell/GridCell.js +3 -0
- package/modern/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +12 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -0
- package/modern/joy/joySlots.js +7 -2
- package/modern/locales/arSD.js +13 -0
- package/modern/locales/beBY.js +13 -0
- package/modern/locales/bgBG.js +14 -0
- package/modern/locales/csCZ.js +14 -0
- package/modern/locales/daDK.js +14 -0
- package/modern/locales/deDE.js +14 -0
- package/modern/locales/elGR.js +13 -0
- package/modern/locales/esES.js +18 -4
- package/modern/locales/faIR.js +14 -0
- package/modern/locales/fiFI.js +14 -0
- package/modern/locales/frFR.js +14 -0
- package/modern/locales/heIL.js +14 -0
- package/modern/locales/hrHR.js +14 -0
- package/modern/locales/huHU.js +14 -0
- package/modern/locales/isIS.js +13 -0
- package/modern/locales/itIT.js +14 -0
- package/modern/locales/jaJP.js +14 -0
- package/modern/locales/koKR.js +13 -0
- package/modern/locales/nbNO.js +14 -0
- package/modern/locales/nlNL.js +14 -0
- package/modern/locales/nnNO.js +14 -0
- package/modern/locales/plPL.js +14 -0
- package/modern/locales/ptBR.js +14 -0
- package/modern/locales/ptPT.js +14 -0
- package/modern/locales/roRO.js +13 -0
- package/modern/locales/ruRU.js +14 -0
- package/modern/locales/skSK.js +13 -0
- package/modern/locales/svSE.js +18 -5
- package/modern/locales/trTR.js +14 -0
- package/modern/locales/ukUA.js +13 -0
- package/modern/locales/urPK.js +13 -0
- package/modern/locales/viVN.js +14 -0
- package/modern/locales/zhCN.js +18 -4
- package/modern/locales/zhHK.js +13 -0
- package/modern/locales/zhTW.js +13 -0
- package/node/components/GridLoadingOverlay.js +4 -4
- package/node/components/cell/GridCell.js +3 -0
- package/node/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +12 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/node/index.js +1 -1
- package/node/internals/index.js +9 -2
- package/node/joy/joySlots.js +7 -2
- package/node/locales/arSD.js +13 -0
- package/node/locales/beBY.js +13 -0
- package/node/locales/bgBG.js +14 -0
- package/node/locales/csCZ.js +14 -0
- package/node/locales/daDK.js +14 -0
- package/node/locales/deDE.js +14 -0
- package/node/locales/elGR.js +13 -0
- package/node/locales/esES.js +18 -4
- package/node/locales/faIR.js +14 -0
- package/node/locales/fiFI.js +14 -0
- package/node/locales/frFR.js +14 -0
- package/node/locales/heIL.js +14 -0
- package/node/locales/hrHR.js +14 -0
- package/node/locales/huHU.js +14 -0
- package/node/locales/isIS.js +13 -0
- package/node/locales/itIT.js +14 -0
- package/node/locales/jaJP.js +14 -0
- package/node/locales/koKR.js +13 -0
- package/node/locales/nbNO.js +14 -0
- package/node/locales/nlNL.js +14 -0
- package/node/locales/nnNO.js +14 -0
- package/node/locales/plPL.js +14 -0
- package/node/locales/ptBR.js +14 -0
- package/node/locales/ptPT.js +14 -0
- package/node/locales/roRO.js +13 -0
- package/node/locales/ruRU.js +14 -0
- package/node/locales/skSK.js +13 -0
- package/node/locales/svSE.js +18 -5
- package/node/locales/trTR.js +14 -0
- package/node/locales/ukUA.js +13 -0
- package/node/locales/urPK.js +13 -0
- package/node/locales/viVN.js +14 -0
- package/node/locales/zhCN.js +18 -4
- package/node/locales/zhHK.js +13 -0
- package/node/locales/zhTW.js +13 -0
- package/package.json +4 -4
package/node/locales/trTR.js
CHANGED
|
@@ -29,6 +29,18 @@ const trTRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Ara…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Ara',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Temizle',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Dışa aktar',
|
|
34
46
|
toolbarExportLabel: 'Dışa aktar',
|
|
@@ -40,6 +52,8 @@ const trTRGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Kolon yok',
|
|
41
53
|
columnsManagementShowHideAllText: 'Hepsini Göster/Gizle',
|
|
42
54
|
columnsManagementReset: 'Sıfırla',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Filtre Ekle',
|
|
45
59
|
filterPanelRemoveAll: 'Hepsini kaldır',
|
package/node/locales/ukUA.js
CHANGED
|
@@ -44,6 +44,18 @@ const ukUAGrid = {
|
|
|
44
44
|
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
45
45
|
toolbarQuickFilterLabel: 'Пошук',
|
|
46
46
|
toolbarQuickFilterDeleteIconLabel: 'Очистити',
|
|
47
|
+
// Prompt toolbar field
|
|
48
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
49
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
50
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
51
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
52
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
53
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
54
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
55
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
56
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
57
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
58
|
+
|
|
47
59
|
// Export selector toolbar button text
|
|
48
60
|
toolbarExport: 'Експорт',
|
|
49
61
|
toolbarExportLabel: 'Експорт',
|
|
@@ -55,6 +67,7 @@ const ukUAGrid = {
|
|
|
55
67
|
// columnsManagementNoColumns: 'No columns',
|
|
56
68
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
57
69
|
// columnsManagementReset: 'Reset',
|
|
70
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
58
71
|
|
|
59
72
|
// Filter panel text
|
|
60
73
|
filterPanelAddFilter: 'Додати фільтр',
|
package/node/locales/urPK.js
CHANGED
|
@@ -29,6 +29,18 @@ const urPKGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'تلاش کریں۔۔۔',
|
|
30
30
|
toolbarQuickFilterLabel: 'تلاش کریں',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'کلئیر کریں',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'ایکسپورٹ',
|
|
34
46
|
toolbarExportLabel: 'ایکسپورٹ',
|
|
@@ -40,6 +52,7 @@ const urPKGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: 'نیا فلٹر',
|
package/node/locales/viVN.js
CHANGED
|
@@ -29,6 +29,18 @@ const viVNGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Tìm kiếm…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Tìm kiếm',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Xóa tìm kiếm',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Xuất',
|
|
34
46
|
toolbarExportLabel: 'Xuất',
|
|
@@ -40,6 +52,8 @@ const viVNGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Không có cột',
|
|
41
53
|
columnsManagementShowHideAllText: 'Hiện/Ẩn Tất cả',
|
|
42
54
|
columnsManagementReset: 'Đặt lại',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Thêm bộ lọc',
|
|
45
59
|
filterPanelRemoveAll: 'Xóa tất cả',
|
package/node/locales/zhCN.js
CHANGED
|
@@ -29,6 +29,18 @@ const zhCNGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: '搜索…',
|
|
30
30
|
toolbarQuickFilterLabel: '搜索',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: '导出',
|
|
34
46
|
toolbarExportLabel: '导出',
|
|
@@ -40,6 +52,8 @@ const zhCNGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: '没有列',
|
|
41
53
|
columnsManagementShowHideAllText: '显示/隐藏所有',
|
|
42
54
|
columnsManagementReset: '重置',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: '添加筛选器',
|
|
45
59
|
filterPanelRemoveAll: '清除全部',
|
|
@@ -53,9 +67,9 @@ const zhCNGrid = {
|
|
|
53
67
|
filterPanelInputPlaceholder: '筛选值',
|
|
54
68
|
// Filter operators text
|
|
55
69
|
filterOperatorContains: '包含',
|
|
56
|
-
|
|
70
|
+
filterOperatorDoesNotContain: '不包含',
|
|
57
71
|
filterOperatorEquals: '等于',
|
|
58
|
-
|
|
72
|
+
filterOperatorDoesNotEqual: '不等于',
|
|
59
73
|
filterOperatorStartsWith: '开始于',
|
|
60
74
|
filterOperatorEndsWith: '结束于',
|
|
61
75
|
filterOperatorIs: '是',
|
|
@@ -75,9 +89,9 @@ const zhCNGrid = {
|
|
|
75
89
|
'filterOperator<=': '<=',
|
|
76
90
|
// Header filter operators text
|
|
77
91
|
headerFilterOperatorContains: '包含',
|
|
78
|
-
|
|
92
|
+
headerFilterOperatorDoesNotContain: '不包含',
|
|
79
93
|
headerFilterOperatorEquals: '等于',
|
|
80
|
-
|
|
94
|
+
headerFilterOperatorDoesNotEqual: '不等于',
|
|
81
95
|
headerFilterOperatorStartsWith: '开始于',
|
|
82
96
|
headerFilterOperatorEndsWith: '结束于',
|
|
83
97
|
headerFilterOperatorIs: '是',
|
package/node/locales/zhHK.js
CHANGED
|
@@ -29,6 +29,18 @@ const zhHKGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: '搜尋…',
|
|
30
30
|
toolbarQuickFilterLabel: '搜尋',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: '出口',
|
|
34
46
|
toolbarExportLabel: '出口',
|
|
@@ -40,6 +52,7 @@ const zhHKGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: '新增過濾器',
|
package/node/locales/zhTW.js
CHANGED
|
@@ -29,6 +29,18 @@ const zhTWGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: '搜尋…',
|
|
30
30
|
toolbarQuickFilterLabel: '搜尋',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: '匯出',
|
|
34
46
|
toolbarExportLabel: '匯出',
|
|
@@ -40,6 +52,7 @@ const zhTWGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: '增加篩選器',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.1",
|
|
4
4
|
"description": "The Community plan edition of the Data Grid components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"clsx": "^2.1.1",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
44
|
"reselect": "^5.1.1",
|
|
45
|
-
"@mui/x-internals": "8.0.0-alpha.
|
|
45
|
+
"@mui/x-internals": "8.0.0-alpha.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@emotion/react": "^11.9.0",
|
|
49
49
|
"@emotion/styled": "^11.8.1",
|
|
50
50
|
"@mui/material": "^5.15.14 || ^6.0.0",
|
|
51
51
|
"@mui/system": "^5.15.14 || ^6.0.0",
|
|
52
|
-
"react": "^17.0.0 || ^18.0.0",
|
|
53
|
-
"react-dom": "^17.0.0 || ^18.0.0"
|
|
52
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
53
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
54
54
|
},
|
|
55
55
|
"peerDependenciesMeta": {
|
|
56
56
|
"@emotion/react": {
|