@ethisyscore/plugin-ui 1.16.0 → 1.17.0
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/layout/index.cjs +130 -0
- package/dist/components/layout/index.cjs.map +1 -0
- package/dist/components/layout/index.d.cts +48 -0
- package/dist/components/layout/index.d.ts +48 -0
- package/dist/components/layout/index.js +127 -0
- package/dist/components/layout/index.js.map +1 -0
- package/dist/components/shared/index.cjs +186 -0
- package/dist/components/shared/index.cjs.map +1 -0
- package/dist/components/shared/index.d.cts +60 -0
- package/dist/components/shared/index.d.ts +60 -0
- package/dist/components/shared/index.js +183 -0
- package/dist/components/shared/index.js.map +1 -0
- package/dist/components/ui/index.cjs +229 -0
- package/dist/components/ui/index.cjs.map +1 -0
- package/dist/components/ui/index.d.cts +13 -0
- package/dist/components/ui/index.d.ts +13 -0
- package/dist/components/ui/index.js +12 -0
- package/dist/components/ui/index.js.map +1 -0
- package/dist/icons/index.cjs +43589 -0
- package/dist/icons/index.cjs.map +1 -0
- package/dist/icons/index.d.cts +1427 -0
- package/dist/icons/index.d.ts +1427 -0
- package/dist/icons/index.js +43115 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/platform-react/index.cjs +246 -0
- package/dist/platform-react/index.cjs.map +1 -0
- package/dist/platform-react/index.d.cts +740 -0
- package/dist/platform-react/index.d.ts +740 -0
- package/dist/platform-react/index.js +229 -0
- package/dist/platform-react/index.js.map +1 -0
- package/package.json +40 -1
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var material = require('@mui/material');
|
|
4
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
5
|
+
|
|
6
|
+
// src/components/ui/index.ts
|
|
7
|
+
function Dialog(props) {
|
|
8
|
+
return /* @__PURE__ */ jsxRuntime.jsx(material.Dialog, { disableScrollLock: true, disableRestoreFocus: true, ...props });
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
Object.defineProperty(exports, "Alert", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return material.Alert; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "AlertTitle", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return material.AlertTitle; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "Box", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return material.Box; }
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, "Button", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return material.Button; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "Card", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return material.Card; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "CardActions", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return material.CardActions; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "CardContent", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return material.CardContent; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "CardHeader", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return material.CardHeader; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "Chip", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return material.Chip; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "CircularProgress", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return material.CircularProgress; }
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, "Container", {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () { return material.Container; }
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(exports, "DialogActions", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return material.DialogActions; }
|
|
58
|
+
});
|
|
59
|
+
Object.defineProperty(exports, "DialogContent", {
|
|
60
|
+
enumerable: true,
|
|
61
|
+
get: function () { return material.DialogContent; }
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, "DialogContentText", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () { return material.DialogContentText; }
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, "DialogTitle", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return material.DialogTitle; }
|
|
70
|
+
});
|
|
71
|
+
Object.defineProperty(exports, "Divider", {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function () { return material.Divider; }
|
|
74
|
+
});
|
|
75
|
+
Object.defineProperty(exports, "FilledInput", {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
get: function () { return material.FilledInput; }
|
|
78
|
+
});
|
|
79
|
+
Object.defineProperty(exports, "FormControl", {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
get: function () { return material.FormControl; }
|
|
82
|
+
});
|
|
83
|
+
Object.defineProperty(exports, "FormControlLabel", {
|
|
84
|
+
enumerable: true,
|
|
85
|
+
get: function () { return material.FormControlLabel; }
|
|
86
|
+
});
|
|
87
|
+
Object.defineProperty(exports, "FormGroup", {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () { return material.FormGroup; }
|
|
90
|
+
});
|
|
91
|
+
Object.defineProperty(exports, "FormHelperText", {
|
|
92
|
+
enumerable: true,
|
|
93
|
+
get: function () { return material.FormHelperText; }
|
|
94
|
+
});
|
|
95
|
+
Object.defineProperty(exports, "FormLabel", {
|
|
96
|
+
enumerable: true,
|
|
97
|
+
get: function () { return material.FormLabel; }
|
|
98
|
+
});
|
|
99
|
+
Object.defineProperty(exports, "Grid", {
|
|
100
|
+
enumerable: true,
|
|
101
|
+
get: function () { return material.Grid; }
|
|
102
|
+
});
|
|
103
|
+
Object.defineProperty(exports, "IconButton", {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
get: function () { return material.IconButton; }
|
|
106
|
+
});
|
|
107
|
+
Object.defineProperty(exports, "Input", {
|
|
108
|
+
enumerable: true,
|
|
109
|
+
get: function () { return material.Input; }
|
|
110
|
+
});
|
|
111
|
+
Object.defineProperty(exports, "InputAdornment", {
|
|
112
|
+
enumerable: true,
|
|
113
|
+
get: function () { return material.InputAdornment; }
|
|
114
|
+
});
|
|
115
|
+
Object.defineProperty(exports, "InputLabel", {
|
|
116
|
+
enumerable: true,
|
|
117
|
+
get: function () { return material.InputLabel; }
|
|
118
|
+
});
|
|
119
|
+
Object.defineProperty(exports, "LinearProgress", {
|
|
120
|
+
enumerable: true,
|
|
121
|
+
get: function () { return material.LinearProgress; }
|
|
122
|
+
});
|
|
123
|
+
Object.defineProperty(exports, "Link", {
|
|
124
|
+
enumerable: true,
|
|
125
|
+
get: function () { return material.Link; }
|
|
126
|
+
});
|
|
127
|
+
Object.defineProperty(exports, "ListItemIcon", {
|
|
128
|
+
enumerable: true,
|
|
129
|
+
get: function () { return material.ListItemIcon; }
|
|
130
|
+
});
|
|
131
|
+
Object.defineProperty(exports, "ListItemText", {
|
|
132
|
+
enumerable: true,
|
|
133
|
+
get: function () { return material.ListItemText; }
|
|
134
|
+
});
|
|
135
|
+
Object.defineProperty(exports, "Menu", {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function () { return material.Menu; }
|
|
138
|
+
});
|
|
139
|
+
Object.defineProperty(exports, "MenuItem", {
|
|
140
|
+
enumerable: true,
|
|
141
|
+
get: function () { return material.MenuItem; }
|
|
142
|
+
});
|
|
143
|
+
Object.defineProperty(exports, "OutlinedInput", {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function () { return material.OutlinedInput; }
|
|
146
|
+
});
|
|
147
|
+
Object.defineProperty(exports, "Paper", {
|
|
148
|
+
enumerable: true,
|
|
149
|
+
get: function () { return material.Paper; }
|
|
150
|
+
});
|
|
151
|
+
Object.defineProperty(exports, "Popover", {
|
|
152
|
+
enumerable: true,
|
|
153
|
+
get: function () { return material.Popover; }
|
|
154
|
+
});
|
|
155
|
+
Object.defineProperty(exports, "Select", {
|
|
156
|
+
enumerable: true,
|
|
157
|
+
get: function () { return material.Select; }
|
|
158
|
+
});
|
|
159
|
+
Object.defineProperty(exports, "Skeleton", {
|
|
160
|
+
enumerable: true,
|
|
161
|
+
get: function () { return material.Skeleton; }
|
|
162
|
+
});
|
|
163
|
+
Object.defineProperty(exports, "Stack", {
|
|
164
|
+
enumerable: true,
|
|
165
|
+
get: function () { return material.Stack; }
|
|
166
|
+
});
|
|
167
|
+
Object.defineProperty(exports, "Switch", {
|
|
168
|
+
enumerable: true,
|
|
169
|
+
get: function () { return material.Switch; }
|
|
170
|
+
});
|
|
171
|
+
Object.defineProperty(exports, "Tab", {
|
|
172
|
+
enumerable: true,
|
|
173
|
+
get: function () { return material.Tab; }
|
|
174
|
+
});
|
|
175
|
+
Object.defineProperty(exports, "Table", {
|
|
176
|
+
enumerable: true,
|
|
177
|
+
get: function () { return material.Table; }
|
|
178
|
+
});
|
|
179
|
+
Object.defineProperty(exports, "TableBody", {
|
|
180
|
+
enumerable: true,
|
|
181
|
+
get: function () { return material.TableBody; }
|
|
182
|
+
});
|
|
183
|
+
Object.defineProperty(exports, "TableCell", {
|
|
184
|
+
enumerable: true,
|
|
185
|
+
get: function () { return material.TableCell; }
|
|
186
|
+
});
|
|
187
|
+
Object.defineProperty(exports, "TableContainer", {
|
|
188
|
+
enumerable: true,
|
|
189
|
+
get: function () { return material.TableContainer; }
|
|
190
|
+
});
|
|
191
|
+
Object.defineProperty(exports, "TableFooter", {
|
|
192
|
+
enumerable: true,
|
|
193
|
+
get: function () { return material.TableFooter; }
|
|
194
|
+
});
|
|
195
|
+
Object.defineProperty(exports, "TableHead", {
|
|
196
|
+
enumerable: true,
|
|
197
|
+
get: function () { return material.TableHead; }
|
|
198
|
+
});
|
|
199
|
+
Object.defineProperty(exports, "TableHeader", {
|
|
200
|
+
enumerable: true,
|
|
201
|
+
get: function () { return material.TableHead; }
|
|
202
|
+
});
|
|
203
|
+
Object.defineProperty(exports, "TableRow", {
|
|
204
|
+
enumerable: true,
|
|
205
|
+
get: function () { return material.TableRow; }
|
|
206
|
+
});
|
|
207
|
+
Object.defineProperty(exports, "Tabs", {
|
|
208
|
+
enumerable: true,
|
|
209
|
+
get: function () { return material.Tabs; }
|
|
210
|
+
});
|
|
211
|
+
Object.defineProperty(exports, "TextField", {
|
|
212
|
+
enumerable: true,
|
|
213
|
+
get: function () { return material.TextField; }
|
|
214
|
+
});
|
|
215
|
+
Object.defineProperty(exports, "TextareaAutosize", {
|
|
216
|
+
enumerable: true,
|
|
217
|
+
get: function () { return material.TextareaAutosize; }
|
|
218
|
+
});
|
|
219
|
+
Object.defineProperty(exports, "Tooltip", {
|
|
220
|
+
enumerable: true,
|
|
221
|
+
get: function () { return material.Tooltip; }
|
|
222
|
+
});
|
|
223
|
+
Object.defineProperty(exports, "Typography", {
|
|
224
|
+
enumerable: true,
|
|
225
|
+
get: function () { return material.Typography; }
|
|
226
|
+
});
|
|
227
|
+
exports.Dialog = Dialog;
|
|
228
|
+
//# sourceMappingURL=index.cjs.map
|
|
229
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/components/ui/Dialog.tsx"],"names":["MuiDialog"],"mappings":";;;;;;AAQO,SAAS,OAAO,KAAA,EAAoB;AACzC,EAAA,sCAAQA,eAAA,EAAA,EAAU,iBAAA,EAAiB,MAAC,mBAAA,EAAmB,IAAA,EAAE,GAAG,KAAA,EAAO,CAAA;AACrE","file":"index.cjs","sourcesContent":["import { Dialog as MuiDialog, type DialogProps } from \"@mui/material\";\n\n/**\n * MUI `Dialog` with the scroll-lock + focus-restore overrides plugin surfaces\n * need (AB#4808): MUI's defaults reset the page to top when a dialog opened from\n * below the fold closes. Everything else is the stock `Dialog` — this is the one\n * `components/ui` wrapper that isn't a pure re-export.\n */\nexport function Dialog(props: DialogProps) {\n return <MuiDialog disableScrollLock disableRestoreFocus {...props} />;\n}\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DialogProps } from '@mui/material';
|
|
2
|
+
export { Alert, AlertTitle, Box, Button, Card, CardActions, CardContent, CardHeader, Chip, CircularProgress, Container, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, FilledInput, FormControl, FormControlLabel, FormGroup, FormHelperText, FormLabel, Grid, IconButton, Input, InputAdornment, InputLabel, LinearProgress, Link, ListItemIcon, ListItemText, Menu, MenuItem, OutlinedInput, Paper, Popover, Select, SelectChangeEvent, Skeleton, Stack, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TableHead as TableHeader, TableRow, Tabs, TextField, TextareaAutosize, Tooltip, Typography } from '@mui/material';
|
|
3
|
+
import * as react from 'react';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* MUI `Dialog` with the scroll-lock + focus-restore overrides plugin surfaces
|
|
7
|
+
* need (AB#4808): MUI's defaults reset the page to top when a dialog opened from
|
|
8
|
+
* below the fold closes. Everything else is the stock `Dialog` — this is the one
|
|
9
|
+
* `components/ui` wrapper that isn't a pure re-export.
|
|
10
|
+
*/
|
|
11
|
+
declare function Dialog(props: DialogProps): react.JSX.Element;
|
|
12
|
+
|
|
13
|
+
export { Dialog };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DialogProps } from '@mui/material';
|
|
2
|
+
export { Alert, AlertTitle, Box, Button, Card, CardActions, CardContent, CardHeader, Chip, CircularProgress, Container, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, FilledInput, FormControl, FormControlLabel, FormGroup, FormHelperText, FormLabel, Grid, IconButton, Input, InputAdornment, InputLabel, LinearProgress, Link, ListItemIcon, ListItemText, Menu, MenuItem, OutlinedInput, Paper, Popover, Select, SelectChangeEvent, Skeleton, Stack, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TableHead as TableHeader, TableRow, Tabs, TextField, TextareaAutosize, Tooltip, Typography } from '@mui/material';
|
|
3
|
+
import * as react from 'react';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* MUI `Dialog` with the scroll-lock + focus-restore overrides plugin surfaces
|
|
7
|
+
* need (AB#4808): MUI's defaults reset the page to top when a dialog opened from
|
|
8
|
+
* below the fold closes. Everything else is the stock `Dialog` — this is the one
|
|
9
|
+
* `components/ui` wrapper that isn't a pure re-export.
|
|
10
|
+
*/
|
|
11
|
+
declare function Dialog(props: DialogProps): react.JSX.Element;
|
|
12
|
+
|
|
13
|
+
export { Dialog };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Dialog as Dialog$1 } from '@mui/material';
|
|
2
|
+
export { Alert, AlertTitle, Box, Button, Card, CardActions, CardContent, CardHeader, Chip, CircularProgress, Container, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, FilledInput, FormControl, FormControlLabel, FormGroup, FormHelperText, FormLabel, Grid, IconButton, Input, InputAdornment, InputLabel, LinearProgress, Link, ListItemIcon, ListItemText, Menu, MenuItem, OutlinedInput, Paper, Popover, Select, Skeleton, Stack, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TableHead as TableHeader, TableRow, Tabs, TextField, TextareaAutosize, Tooltip, Typography } from '@mui/material';
|
|
3
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
|
+
|
|
5
|
+
// src/components/ui/index.ts
|
|
6
|
+
function Dialog(props) {
|
|
7
|
+
return /* @__PURE__ */ jsx(Dialog$1, { disableScrollLock: true, disableRestoreFocus: true, ...props });
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { Dialog };
|
|
11
|
+
//# sourceMappingURL=index.js.map
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/components/ui/Dialog.tsx"],"names":["MuiDialog"],"mappings":";;;;;AAQO,SAAS,OAAO,KAAA,EAAoB;AACzC,EAAA,2BAAQA,QAAA,EAAA,EAAU,iBAAA,EAAiB,MAAC,mBAAA,EAAmB,IAAA,EAAE,GAAG,KAAA,EAAO,CAAA;AACrE","file":"index.js","sourcesContent":["import { Dialog as MuiDialog, type DialogProps } from \"@mui/material\";\n\n/**\n * MUI `Dialog` with the scroll-lock + focus-restore overrides plugin surfaces\n * need (AB#4808): MUI's defaults reset the page to top when a dialog opened from\n * below the fold closes. Everything else is the stock `Dialog` — this is the one\n * `components/ui` wrapper that isn't a pure re-export.\n */\nexport function Dialog(props: DialogProps) {\n return <MuiDialog disableScrollLock disableRestoreFocus {...props} />;\n}\n"]}
|