@scmlatam/web-ui 0.1.96 → 0.1.98
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/src/App.d.ts +2 -0
- package/dist/src/api/fake.d.ts +5 -0
- package/dist/src/auth.d.ts +26 -0
- package/dist/src/components/contextmenu/Contextmenu.d.ts +3 -0
- package/dist/src/components/core/Core.d.ts +3 -0
- package/dist/src/components/core/context/Context.d.ts +28 -0
- package/dist/src/components/core/context/Provider.d.ts +5 -0
- package/dist/src/components/core/dashboard/Dashboard.d.ts +3 -0
- package/dist/src/components/core/dashboard/account/Account.d.ts +11 -0
- package/dist/src/components/core/dashboard/content/Content.d.ts +3 -0
- package/dist/src/components/core/dashboard/search/Search.d.ts +2 -0
- package/dist/src/components/core/dashboard/sidebar/CompactItem.d.ts +3 -0
- package/dist/src/components/core/dashboard/sidebar/Content.d.ts +3 -0
- package/dist/src/components/core/dashboard/sidebar/ExtendGroupItem.d.ts +3 -0
- package/dist/src/components/core/dashboard/sidebar/Footer.d.ts +3 -0
- package/dist/src/components/core/dashboard/sidebar/Header.d.ts +3 -0
- package/dist/src/components/core/dashboard/sidebar/Sidebar.d.ts +3 -0
- package/dist/src/components/core/dashboard/sidebar/SubItem.d.ts +3 -0
- package/dist/src/components/core/signin/SignIn.d.ts +12 -0
- package/dist/src/components/core/system/Alert.d.ts +4 -0
- package/dist/src/components/form/Form.d.ts +3 -0
- package/dist/src/components/form/autocomplete/Autocomplete.d.ts +11 -0
- package/dist/src/components/form/datefield/range/DateRangeCalendar.d.ts +11 -0
- package/dist/src/components/form/datefield/range/DateRangePicker.d.ts +13 -0
- package/dist/src/components/form/datefield/range/Datefield.d.ts +9 -0
- package/dist/src/components/form/datefield/simple/DatePicker.d.ts +12 -0
- package/dist/src/components/form/datefield/simple/Datefield.d.ts +12 -0
- package/dist/src/components/form/datefield/simple/Timefield.d.ts +12 -0
- package/dist/src/components/form/file/FileField.d.ts +4 -0
- package/dist/src/components/form/select/MultiSelect.d.ts +3 -0
- package/dist/src/components/form/select/Select.d.ts +3 -0
- package/dist/src/components/form/sheet/Sheet.d.ts +13 -0
- package/dist/src/components/form/treewiew/Treeview.d.ts +6 -0
- package/dist/src/components/main.d.ts +14 -0
- package/dist/src/components/table/Table.d.ts +3 -0
- package/dist/src/components/table/toolbar/Toolbar.d.ts +3 -0
- package/dist/src/components/table/toolbar/datefield/range/DateRangePicker.d.ts +15 -0
- package/dist/src/components/table/toolbar/datefield/range/Datefield.d.ts +10 -0
- package/dist/src/components/table/toolbar/datefield/simple/DatePicker.d.ts +12 -0
- package/dist/src/components/table/toolbar/datefield/simple/Datefield.d.ts +11 -0
- package/dist/src/components/table/toolbar/select/MultiSelect.d.ts +3 -0
- package/dist/src/components/table/toolbar/select/Select.d.ts +3 -0
- package/dist/src/hooks/useForm.d.ts +2 -0
- package/dist/src/hooks/useSidebar.d.ts +6 -0
- package/dist/src/hooks/useSystemAlert.d.ts +6 -0
- package/dist/src/hooks/useTable.d.ts +18 -0
- package/dist/src/main.d.ts +0 -0
- package/dist/src/mock/SidebarData.d.ts +35 -0
- package/dist/src/mock/TableData.d.ts +3 -0
- package/dist/src/pages/Home.d.ts +3 -0
- package/dist/src/pages/Timekeeper.d.ts +3 -0
- package/dist/src/router/Router.d.ts +12 -0
- package/dist/src/shims/chevrotain.d.ts +1 -0
- package/dist/src/themes/GoodRabbitButtons.d.ts +32 -0
- package/dist/src/themes/GoodRabbitColors.d.ts +193 -0
- package/dist/src/themes/GoodRabbitDarkTheme.d.ts +375 -0
- package/dist/src/themes/GoodRabbitInputLabel.d.ts +11 -0
- package/dist/src/themes/GoodRabbitLightTheme.d.ts +2 -0
- package/dist/src/themes/GoodRabbitOutlinedInput.d.ts +43 -0
- package/dist/src/themes/GoodRabbitTextField.d.ts +59 -0
- package/dist/src/themes/GoodRabbitTypography.d.ts +46 -0
- package/dist/web-ui.js +2769 -73982
- package/dist/web-ui.umd.cjs +1 -752
- package/package.json +14 -11
- package/dist/context-CRqFLvGk.js +0 -7
- package/dist/extends-9CbO0Z4Q.js +0 -12
- package/dist/fp.esm-BNINKTlV.js +0 -1526
- package/dist/get-context-qXpuAzJ1.js +0 -106
- package/dist/web-ui.d.ts +0 -178
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scmlatam/web-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.98",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -34,20 +34,23 @@
|
|
|
34
34
|
"@emotion/styled": "^11.14.1",
|
|
35
35
|
"@mui/icons-material": "^9.0.0",
|
|
36
36
|
"@mui/material": "^9.0.0",
|
|
37
|
-
"@mui/x-data-grid-pro": "^9.0.
|
|
38
|
-
"@mui/x-date-pickers": "^9.0.
|
|
39
|
-
"@mui/x-date-pickers-pro": "^9.0.
|
|
40
|
-
"@mui/x-tree-view": "^9.0.
|
|
37
|
+
"@mui/x-data-grid-pro": "^9.0.4",
|
|
38
|
+
"@mui/x-date-pickers": "^9.0.4",
|
|
39
|
+
"@mui/x-date-pickers-pro": "^9.0.4",
|
|
40
|
+
"@mui/x-tree-view": "^9.0.4",
|
|
41
41
|
"dayjs": "^1.11.20",
|
|
42
42
|
"notistack": "^3.0.2",
|
|
43
43
|
"react": "^19.2.5",
|
|
44
44
|
"react-dom": "^19.2.5",
|
|
45
45
|
"react-draggable": "^4.5.0",
|
|
46
46
|
"react-icons": "^5.6.0",
|
|
47
|
-
"react-router": "^7.
|
|
47
|
+
"react-router": "^7.15.0",
|
|
48
48
|
"react-spreadsheet": "^0.10.1"
|
|
49
49
|
},
|
|
50
|
-
"dependencies": {
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@azure/msal-browser": "^5.9.0",
|
|
52
|
+
"@azure/msal-react": "^5.3.2"
|
|
53
|
+
},
|
|
51
54
|
"devDependencies": {
|
|
52
55
|
"@eslint/js": "^10.0.1",
|
|
53
56
|
"@types/node": "^25.6.0",
|
|
@@ -55,14 +58,14 @@
|
|
|
55
58
|
"@types/react-dom": "^19.2.3",
|
|
56
59
|
"@vitejs/plugin-react": "^6.0.1",
|
|
57
60
|
"ajv": "^8.20.0",
|
|
58
|
-
"eslint": "^10.
|
|
61
|
+
"eslint": "^10.3.0",
|
|
59
62
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
60
63
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
61
|
-
"globals": "^17.
|
|
64
|
+
"globals": "^17.6.0",
|
|
62
65
|
"typescript": "~6.0.3",
|
|
63
|
-
"typescript-eslint": "^8.59.
|
|
66
|
+
"typescript-eslint": "^8.59.2",
|
|
64
67
|
"vite": "^8.0.10",
|
|
65
|
-
"vite-plugin-dts": "^
|
|
68
|
+
"vite-plugin-dts": "^5.0.0",
|
|
66
69
|
"vite-plugin-svgr": "^5.2.0"
|
|
67
70
|
}
|
|
68
71
|
}
|
package/dist/context-CRqFLvGk.js
DELETED
package/dist/extends-9CbO0Z4Q.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
//#region node_modules/@babel/runtime/helpers/esm/extends.js
|
|
2
|
-
function e() {
|
|
3
|
-
return e = Object.assign ? Object.assign.bind() : function(e) {
|
|
4
|
-
for (var t = 1; t < arguments.length; t++) {
|
|
5
|
-
var n = arguments[t];
|
|
6
|
-
for (var r in n) ({}).hasOwnProperty.call(n, r) && (e[r] = n[r]);
|
|
7
|
-
}
|
|
8
|
-
return e;
|
|
9
|
-
}, e.apply(null, arguments);
|
|
10
|
-
}
|
|
11
|
-
//#endregion
|
|
12
|
-
export { e as t };
|