@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.
Files changed (69) hide show
  1. package/dist/src/App.d.ts +2 -0
  2. package/dist/src/api/fake.d.ts +5 -0
  3. package/dist/src/auth.d.ts +26 -0
  4. package/dist/src/components/contextmenu/Contextmenu.d.ts +3 -0
  5. package/dist/src/components/core/Core.d.ts +3 -0
  6. package/dist/src/components/core/context/Context.d.ts +28 -0
  7. package/dist/src/components/core/context/Provider.d.ts +5 -0
  8. package/dist/src/components/core/dashboard/Dashboard.d.ts +3 -0
  9. package/dist/src/components/core/dashboard/account/Account.d.ts +11 -0
  10. package/dist/src/components/core/dashboard/content/Content.d.ts +3 -0
  11. package/dist/src/components/core/dashboard/search/Search.d.ts +2 -0
  12. package/dist/src/components/core/dashboard/sidebar/CompactItem.d.ts +3 -0
  13. package/dist/src/components/core/dashboard/sidebar/Content.d.ts +3 -0
  14. package/dist/src/components/core/dashboard/sidebar/ExtendGroupItem.d.ts +3 -0
  15. package/dist/src/components/core/dashboard/sidebar/Footer.d.ts +3 -0
  16. package/dist/src/components/core/dashboard/sidebar/Header.d.ts +3 -0
  17. package/dist/src/components/core/dashboard/sidebar/Sidebar.d.ts +3 -0
  18. package/dist/src/components/core/dashboard/sidebar/SubItem.d.ts +3 -0
  19. package/dist/src/components/core/signin/SignIn.d.ts +12 -0
  20. package/dist/src/components/core/system/Alert.d.ts +4 -0
  21. package/dist/src/components/form/Form.d.ts +3 -0
  22. package/dist/src/components/form/autocomplete/Autocomplete.d.ts +11 -0
  23. package/dist/src/components/form/datefield/range/DateRangeCalendar.d.ts +11 -0
  24. package/dist/src/components/form/datefield/range/DateRangePicker.d.ts +13 -0
  25. package/dist/src/components/form/datefield/range/Datefield.d.ts +9 -0
  26. package/dist/src/components/form/datefield/simple/DatePicker.d.ts +12 -0
  27. package/dist/src/components/form/datefield/simple/Datefield.d.ts +12 -0
  28. package/dist/src/components/form/datefield/simple/Timefield.d.ts +12 -0
  29. package/dist/src/components/form/file/FileField.d.ts +4 -0
  30. package/dist/src/components/form/select/MultiSelect.d.ts +3 -0
  31. package/dist/src/components/form/select/Select.d.ts +3 -0
  32. package/dist/src/components/form/sheet/Sheet.d.ts +13 -0
  33. package/dist/src/components/form/treewiew/Treeview.d.ts +6 -0
  34. package/dist/src/components/main.d.ts +14 -0
  35. package/dist/src/components/table/Table.d.ts +3 -0
  36. package/dist/src/components/table/toolbar/Toolbar.d.ts +3 -0
  37. package/dist/src/components/table/toolbar/datefield/range/DateRangePicker.d.ts +15 -0
  38. package/dist/src/components/table/toolbar/datefield/range/Datefield.d.ts +10 -0
  39. package/dist/src/components/table/toolbar/datefield/simple/DatePicker.d.ts +12 -0
  40. package/dist/src/components/table/toolbar/datefield/simple/Datefield.d.ts +11 -0
  41. package/dist/src/components/table/toolbar/select/MultiSelect.d.ts +3 -0
  42. package/dist/src/components/table/toolbar/select/Select.d.ts +3 -0
  43. package/dist/src/hooks/useForm.d.ts +2 -0
  44. package/dist/src/hooks/useSidebar.d.ts +6 -0
  45. package/dist/src/hooks/useSystemAlert.d.ts +6 -0
  46. package/dist/src/hooks/useTable.d.ts +18 -0
  47. package/dist/src/main.d.ts +0 -0
  48. package/dist/src/mock/SidebarData.d.ts +35 -0
  49. package/dist/src/mock/TableData.d.ts +3 -0
  50. package/dist/src/pages/Home.d.ts +3 -0
  51. package/dist/src/pages/Timekeeper.d.ts +3 -0
  52. package/dist/src/router/Router.d.ts +12 -0
  53. package/dist/src/shims/chevrotain.d.ts +1 -0
  54. package/dist/src/themes/GoodRabbitButtons.d.ts +32 -0
  55. package/dist/src/themes/GoodRabbitColors.d.ts +193 -0
  56. package/dist/src/themes/GoodRabbitDarkTheme.d.ts +375 -0
  57. package/dist/src/themes/GoodRabbitInputLabel.d.ts +11 -0
  58. package/dist/src/themes/GoodRabbitLightTheme.d.ts +2 -0
  59. package/dist/src/themes/GoodRabbitOutlinedInput.d.ts +43 -0
  60. package/dist/src/themes/GoodRabbitTextField.d.ts +59 -0
  61. package/dist/src/themes/GoodRabbitTypography.d.ts +46 -0
  62. package/dist/web-ui.js +2769 -73982
  63. package/dist/web-ui.umd.cjs +1 -752
  64. package/package.json +14 -11
  65. package/dist/context-CRqFLvGk.js +0 -7
  66. package/dist/extends-9CbO0Z4Q.js +0 -12
  67. package/dist/fp.esm-BNINKTlV.js +0 -1526
  68. package/dist/get-context-qXpuAzJ1.js +0 -106
  69. 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 };