@symply.io/basic-components 1.0.0-alpha.9 → 1.0.0-beta.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.
Files changed (123) hide show
  1. package/AlertDialog/index.d.ts +0 -1
  2. package/AlertDialog/index.js +2 -2
  3. package/Autocomplete/index.d.ts +4 -0
  4. package/Autocomplete/index.js +38 -0
  5. package/Autocomplete/types.d.ts +15 -0
  6. package/Autocomplete/types.js +1 -0
  7. package/Autocomplete/useInteractions.d.ts +5 -0
  8. package/Autocomplete/useInteractions.js +9 -0
  9. package/AutocompleteWithFilter/index.d.ts +4 -0
  10. package/AutocompleteWithFilter/index.js +54 -0
  11. package/AutocompleteWithFilter/types.d.ts +16 -0
  12. package/AutocompleteWithFilter/types.js +1 -0
  13. package/BasicModal/Content.d.ts +0 -1
  14. package/BasicModal/Content.js +1 -1
  15. package/BasicModal/index.d.ts +0 -1
  16. package/BasicModal/index.js +3 -6
  17. package/BreadCrumbs/index.d.ts +4 -0
  18. package/BreadCrumbs/index.js +37 -0
  19. package/BreadCrumbs/types.d.ts +9 -0
  20. package/BreadCrumbs/types.js +1 -0
  21. package/CheckBox/CheckBox.d.ts +3 -0
  22. package/CheckBox/CheckBox.js +36 -0
  23. package/CheckBox/CheckBoxGroup.d.ts +3 -0
  24. package/CheckBox/CheckBoxGroup.js +30 -0
  25. package/CheckBox/index.d.ts +3 -0
  26. package/CheckBox/index.js +3 -0
  27. package/CheckBox/types.d.ts +12 -0
  28. package/CheckBox/types.js +1 -0
  29. package/Copyright/index.d.ts +4 -0
  30. package/Copyright/index.js +25 -0
  31. package/Copyright/types.d.ts +5 -0
  32. package/Copyright/types.js +1 -0
  33. package/DateInput/FullDateInput/index.d.ts +5 -0
  34. package/DateInput/FullDateInput/index.js +66 -0
  35. package/DateInput/FullDateInput/types.d.ts +14 -0
  36. package/DateInput/FullDateInput/types.js +1 -0
  37. package/DateInput/FullDateInput/useInteractions.d.ts +8 -0
  38. package/DateInput/FullDateInput/useInteractions.js +20 -0
  39. package/DateInput/MonthDayInput/index.d.ts +5 -0
  40. package/DateInput/MonthDayInput/index.js +54 -0
  41. package/DateInput/MonthDayInput/types.d.ts +14 -0
  42. package/DateInput/MonthDayInput/types.js +1 -0
  43. package/DateInput/MonthDayInput/useInteractions.d.ts +8 -0
  44. package/DateInput/MonthDayInput/useInteractions.js +19 -0
  45. package/DateInput/MonthYearInput/index.d.ts +5 -0
  46. package/DateInput/MonthYearInput/index.js +55 -0
  47. package/DateInput/MonthYearInput/types.d.ts +14 -0
  48. package/DateInput/MonthYearInput/types.js +1 -0
  49. package/DateInput/MonthYearInput/useInteractions.d.ts +8 -0
  50. package/DateInput/MonthYearInput/useInteractions.js +19 -0
  51. package/DateInput/index.d.ts +6 -0
  52. package/DateInput/index.js +6 -0
  53. package/DigitInput/index.d.ts +1 -4
  54. package/DigitInput/index.js +3 -3
  55. package/DigitInput/types.d.ts +2 -1
  56. package/DynamicHeaderBar/HeaderBar.js +1 -1
  57. package/DynamicHeaderBar/HeaderButtons.d.ts +0 -1
  58. package/DynamicHeaderBar/HeaderButtons.js +5 -5
  59. package/DynamicHeaderBar/HeaderLine.js +1 -1
  60. package/DynamicHeaderBar/index.js +2 -2
  61. package/FeinInput/index.d.ts +6 -0
  62. package/FeinInput/index.js +73 -0
  63. package/FeinInput/types.d.ts +9 -0
  64. package/FeinInput/types.js +1 -0
  65. package/FeinInput/useInteractions.d.ts +8 -0
  66. package/FeinInput/useInteractions.js +16 -0
  67. package/FormRadioGroup/index.d.ts +0 -1
  68. package/FormRadioGroup/index.js +3 -3
  69. package/FormSelector/MultipleSelector.d.ts +1 -3
  70. package/FormSelector/MultipleSelector.js +2 -2
  71. package/FormSelector/SimpleSelector.d.ts +1 -3
  72. package/FormSelector/SimpleSelector.js +2 -2
  73. package/FormSelector/types.d.ts +2 -1
  74. package/HelpCaption/index.js +2 -2
  75. package/LoadingModal/index.d.ts +0 -1
  76. package/LoadingModal/index.js +1 -1
  77. package/MenuButtonGroup/MenuItem.d.ts +0 -1
  78. package/MenuButtonGroup/MenuItem.js +1 -1
  79. package/MenuButtonGroup/index.js +2 -2
  80. package/NumberInput/index.d.ts +2 -3
  81. package/NumberInput/index.js +1 -1
  82. package/PasswordInput/ConfirmPassword.d.ts +2 -3
  83. package/PasswordInput/ConfirmPassword.js +1 -1
  84. package/PasswordInput/Password.d.ts +3 -4
  85. package/PasswordInput/Password.js +2 -2
  86. package/PhoneNumberInput/index.d.ts +2 -3
  87. package/PhoneNumberInput/index.js +2 -2
  88. package/README.md +370 -2
  89. package/Sidebar/SidebarItem.d.ts +3 -0
  90. package/Sidebar/SidebarItem.js +62 -0
  91. package/Sidebar/SidebarItemsGroup.d.ts +5 -0
  92. package/Sidebar/SidebarItemsGroup.js +38 -0
  93. package/Sidebar/SidebarLink.d.ts +3 -0
  94. package/Sidebar/SidebarLink.js +37 -0
  95. package/Sidebar/index.d.ts +7 -0
  96. package/Sidebar/index.js +30 -0
  97. package/Sidebar/types.d.ts +31 -0
  98. package/Sidebar/types.js +1 -0
  99. package/SocialInput/index.d.ts +6 -0
  100. package/SocialInput/index.js +76 -0
  101. package/SocialInput/types.d.ts +9 -0
  102. package/SocialInput/types.js +1 -0
  103. package/SocialInput/useInteractions.d.ts +10 -0
  104. package/SocialInput/useInteractions.js +26 -0
  105. package/TabGroup/index.js +10 -5
  106. package/TablePagination/Actions.d.ts +3 -0
  107. package/TablePagination/Actions.js +27 -0
  108. package/TablePagination/index.d.ts +4 -0
  109. package/TablePagination/index.js +30 -0
  110. package/TablePagination/types.d.ts +14 -0
  111. package/TablePagination/types.js +1 -0
  112. package/TablePagination/useInteractions.d.ts +14 -0
  113. package/TablePagination/useInteractions.js +23 -0
  114. package/TextInput/index.d.ts +2 -3
  115. package/TextInput/index.js +13 -3
  116. package/ToastPrompt/Presentation.js +3 -3
  117. package/ToastPrompt/index.js +1 -1
  118. package/VideoPlayerModal/index.d.ts +1 -3
  119. package/VideoPlayerModal/index.js +2 -2
  120. package/VideoPlayerModal/types.d.ts +2 -1
  121. package/index.d.ts +18 -0
  122. package/index.js +18 -0
  123. package/package.json +8 -2
package/index.d.ts CHANGED
@@ -1,7 +1,14 @@
1
1
  export * from "./AlertDialog";
2
+ export * from "./Autocomplete";
3
+ export * from "./AutocompleteWithFilter";
2
4
  export * from "./BasicModal";
5
+ export * from "./BreadCrumbs";
6
+ export * from "./CheckBox";
7
+ export * from "./Copyright";
8
+ export * from "./DateInput";
3
9
  export * from "./DigitInput";
4
10
  export * from "./DynamicHeaderBar";
11
+ export * from "./FeinInput";
5
12
  export * from "./FormRadioGroup";
6
13
  export * from "./FormSelector";
7
14
  export * from "./HelpCaption";
@@ -10,20 +17,31 @@ export * from "./MenuButtonGroup";
10
17
  export * from "./NumberInput";
11
18
  export * from "./PasswordInput";
12
19
  export * from "./PhoneNumberInput";
20
+ export * from "./Sidebar";
21
+ export * from "./SocialInput";
13
22
  export * from "./TabGroup";
23
+ export * from "./TablePagination";
14
24
  export * from "./TextInput";
15
25
  export * from "./ToastPrompt";
16
26
  export * from "./VideoPlayerModal";
17
27
  export { default as AlertDialog } from "./AlertDialog";
28
+ export { default as Autocomplete } from "./Autocomplete";
29
+ export { default as AutocompleteWithFilter } from "./AutocompleteWithFilter";
18
30
  export { default as BasicModal } from "./BasicModal";
31
+ export { default as BreadCrumbs } from "./BreadCrumbs";
32
+ export { default as Copyright } from "./Copyright";
19
33
  export { default as DigitInput } from "./DigitInput";
20
34
  export { default as DynamicHeaderBar } from "./DynamicHeaderBar";
35
+ export { default as FeinInput } from "./FeinInput";
21
36
  export { default as FormRadioGroup } from "./FormRadioGroup";
22
37
  export { default as HelpCaption } from "./HelpCaption";
23
38
  export { default as LoadingModal } from "./LoadingModal";
24
39
  export { default as MenuButtonGroup } from "./MenuButtonGroup";
25
40
  export { default as NumberInput } from "./NumberInput";
26
41
  export { default as PhoneNumberInput } from "./PhoneNumberInput";
42
+ export { default as Sidebar } from "./Sidebar";
43
+ export { default as SocialInput } from "./SocialInput";
27
44
  export { default as TabGroup } from "./TabGroup";
45
+ export { default as TablePagination } from "./TablePagination";
28
46
  export { default as TextInput } from "./TextInput";
29
47
  export { default as VideoPlayerModal } from "./VideoPlayerModal";
package/index.js CHANGED
@@ -1,7 +1,14 @@
1
1
  export * from "./AlertDialog";
2
+ export * from "./Autocomplete";
3
+ export * from "./AutocompleteWithFilter";
2
4
  export * from "./BasicModal";
5
+ export * from "./BreadCrumbs";
6
+ export * from "./CheckBox";
7
+ export * from "./Copyright";
8
+ export * from "./DateInput";
3
9
  export * from "./DigitInput";
4
10
  export * from "./DynamicHeaderBar";
11
+ export * from "./FeinInput";
5
12
  export * from "./FormRadioGroup";
6
13
  export * from "./FormSelector";
7
14
  export * from "./HelpCaption";
@@ -10,20 +17,31 @@ export * from "./MenuButtonGroup";
10
17
  export * from "./NumberInput";
11
18
  export * from "./PasswordInput";
12
19
  export * from "./PhoneNumberInput";
20
+ export * from "./Sidebar";
21
+ export * from "./SocialInput";
13
22
  export * from "./TabGroup";
23
+ export * from "./TablePagination";
14
24
  export * from "./TextInput";
15
25
  export * from "./ToastPrompt";
16
26
  export * from "./VideoPlayerModal";
17
27
  export { default as AlertDialog } from "./AlertDialog";
28
+ export { default as Autocomplete } from "./Autocomplete";
29
+ export { default as AutocompleteWithFilter } from "./AutocompleteWithFilter";
18
30
  export { default as BasicModal } from "./BasicModal";
31
+ export { default as BreadCrumbs } from "./BreadCrumbs";
32
+ export { default as Copyright } from "./Copyright";
19
33
  export { default as DigitInput } from "./DigitInput";
20
34
  export { default as DynamicHeaderBar } from "./DynamicHeaderBar";
35
+ export { default as FeinInput } from "./FeinInput";
21
36
  export { default as FormRadioGroup } from "./FormRadioGroup";
22
37
  export { default as HelpCaption } from "./HelpCaption";
23
38
  export { default as LoadingModal } from "./LoadingModal";
24
39
  export { default as MenuButtonGroup } from "./MenuButtonGroup";
25
40
  export { default as NumberInput } from "./NumberInput";
26
41
  export { default as PhoneNumberInput } from "./PhoneNumberInput";
42
+ export { default as Sidebar } from "./Sidebar";
43
+ export { default as SocialInput } from "./SocialInput";
27
44
  export { default as TabGroup } from "./TabGroup";
45
+ export { default as TablePagination } from "./TablePagination";
28
46
  export { default as TextInput } from "./TextInput";
29
47
  export { default as VideoPlayerModal } from "./VideoPlayerModal";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symply.io/basic-components",
3
- "version": "1.0.0-alpha.9",
3
+ "version": "1.0.0-beta.1",
4
4
  "description": "Basic and reusable components for all frontend of Symply apps",
5
5
  "keywords": [
6
6
  "react",
@@ -44,10 +44,11 @@
44
44
  ],
45
45
  "devDependencies": {
46
46
  "@types/body-parser": "^1.19.2",
47
+ "@types/reach__router": "^1.3.10",
47
48
  "@types/react": "^17.0.27",
48
49
  "@types/react-dom": "^17.0.9",
49
50
  "babel-loader": "^8.2.2",
50
- "typescript": "^4.5.5"
51
+ "typescript": "~4.6.3"
51
52
  },
52
53
  "dependencies": {
53
54
  "@emotion/react": "^11.7.1",
@@ -55,10 +56,15 @@
55
56
  "@mui/icons-material": "^5.4.2",
56
57
  "@mui/material": "^5.4.2",
57
58
  "@mui/system": "^5.4.2",
59
+ "@reach/router": "^1.3.4",
58
60
  "color-alpha": "^1.1.3",
59
61
  "react-player": "^2.9.0",
60
62
  "rifm": "^0.12.1"
61
63
  },
64
+ "resolutions": {
65
+ "@types/react": "17.0.27",
66
+ "@types/react-dom": "17.0.9"
67
+ },
62
68
  "scripts": {
63
69
  "build": "./node_modules/.bin/tsc"
64
70
  },