@scmlatam/web-ui 0.1.97 → 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 +1 -2
- package/dist/web-ui.umd.cjs +1 -1
- package/package.json +14 -11
- package/dist/web-ui.d.ts +0 -178
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const GoodRabbitTypography: {
|
|
2
|
+
fontFamily: string;
|
|
3
|
+
h1: {
|
|
4
|
+
fontFamily: string;
|
|
5
|
+
fontWeight: string;
|
|
6
|
+
fontSize: string;
|
|
7
|
+
color: string;
|
|
8
|
+
};
|
|
9
|
+
h2: {
|
|
10
|
+
fontFamily: string;
|
|
11
|
+
fontWeight: string;
|
|
12
|
+
fontSize: string;
|
|
13
|
+
color: string;
|
|
14
|
+
};
|
|
15
|
+
h3: {
|
|
16
|
+
fontFamily: string;
|
|
17
|
+
fontWeight: string;
|
|
18
|
+
fontSize: string;
|
|
19
|
+
color: string;
|
|
20
|
+
};
|
|
21
|
+
h4: {
|
|
22
|
+
fontFamily: string;
|
|
23
|
+
fontWeight: string;
|
|
24
|
+
fontSize: string;
|
|
25
|
+
color: string;
|
|
26
|
+
};
|
|
27
|
+
body1: {
|
|
28
|
+
fontFamily: string;
|
|
29
|
+
fontWeight: string;
|
|
30
|
+
fontSize: string;
|
|
31
|
+
color: string;
|
|
32
|
+
};
|
|
33
|
+
body2: {
|
|
34
|
+
fontFamily: string;
|
|
35
|
+
fontWeight: string;
|
|
36
|
+
fontSize: string;
|
|
37
|
+
color: string;
|
|
38
|
+
};
|
|
39
|
+
button: {
|
|
40
|
+
fontFamily: string;
|
|
41
|
+
fontWeight: string;
|
|
42
|
+
fontSize: string;
|
|
43
|
+
color: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export { GoodRabbitTypography };
|
package/dist/web-ui.js
CHANGED
|
@@ -2414,9 +2414,9 @@ var Q = {
|
|
|
2414
2414
|
onClose: () => c(!1),
|
|
2415
2415
|
renderInput: (n) => /* @__PURE__ */ q(I, {
|
|
2416
2416
|
...n,
|
|
2417
|
-
variant: "outlined",
|
|
2418
2417
|
label: e,
|
|
2419
2418
|
placeholder: t,
|
|
2419
|
+
variant: "outlined",
|
|
2420
2420
|
sx: {
|
|
2421
2421
|
backgroundColor: (e) => o ? "white" : e.palette["gr-base-dark"].main,
|
|
2422
2422
|
borderTopLeftRadius: "18px",
|
|
@@ -2438,7 +2438,6 @@ var Q = {
|
|
|
2438
2438
|
},
|
|
2439
2439
|
"& .MuiAutocomplete-inputRoot": { flexWrap: "nowrap" }
|
|
2440
2440
|
},
|
|
2441
|
-
slotProps: { inputLabel: { sx: { color: o ? "black !important" : "white !important" } } },
|
|
2442
2441
|
color: "gr-yellow",
|
|
2443
2442
|
focused: !0
|
|
2444
2443
|
}),
|