@ainias42/react-bootstrap-mobile 0.1.7
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/.eslintrc.json +189 -0
- package/.prettierrc +5 -0
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/babel.config.js +22 -0
- package/bin/build.js +60 -0
- package/bin/release.sh +35 -0
- package/bin/updateCopies.js +86 -0
- package/bootstrapReactMobile.ts +87 -0
- package/dist/bootstrapReactMobile.d.ts +87 -0
- package/dist/bootstrapReactMobile.js +6275 -0
- package/dist/src/Components/ActionSheet/ActionSheet.d.ts +21 -0
- package/dist/src/Components/Card/Card.d.ts +13 -0
- package/dist/src/Components/Clickable/Clickable.d.ts +14 -0
- package/dist/src/Components/Dialog/AlertDialog.d.ts +10 -0
- package/dist/src/Components/Dialog/ButtonDialog.d.ts +13 -0
- package/dist/src/Components/Dialog/ConfirmDialog.d.ts +11 -0
- package/dist/src/Components/Dialog/Dialog.d.ts +14 -0
- package/dist/src/Components/Dialog/DialogBackground.d.ts +7 -0
- package/dist/src/Components/Dialog/DialogContainer.d.ts +6 -0
- package/dist/src/Components/Dialog/DialogContext.d.ts +9 -0
- package/dist/src/Components/Dialog/useAlertDialog.d.ts +1 -0
- package/dist/src/Components/Dialog/useConfirmDialog.d.ts +1 -0
- package/dist/src/Components/DragAndDrop/DragItem.d.ts +7 -0
- package/dist/src/Components/DragAndDrop/DropArea.d.ts +7 -0
- package/dist/src/Components/DragAndDrop/useStrictEnabled.d.ts +1 -0
- package/dist/src/Components/FormElements/Button/Button.d.ts +8 -0
- package/dist/src/Components/FormElements/CheckBox/Checkbox.d.ts +10 -0
- package/dist/src/Components/FormElements/ColorInput/ColorInput.d.ts +17 -0
- package/dist/src/Components/FormElements/ColorInput/sharedSelectedColor.d.ts +4 -0
- package/dist/src/Components/FormElements/ImageInput/ImageInput.d.ts +17 -0
- package/dist/src/Components/FormElements/Input/HiddenInput.d.ts +8 -0
- package/dist/src/Components/FormElements/Input/Input.d.ts +10 -0
- package/dist/src/Components/FormElements/Input/PasswordInput/PasswordInput.d.ts +4 -0
- package/dist/src/Components/FormElements/SearchSelectInput/SearchSelectInput.d.ts +10 -0
- package/dist/src/Components/FormElements/Select/Select.d.ts +16 -0
- package/dist/src/Components/FormElements/Slider/Slider.d.ts +8 -0
- package/dist/src/Components/FormElements/Switch/Switch.d.ts +12 -0
- package/dist/src/Components/FormElements/Textarea/Textarea.d.ts +12 -0
- package/dist/src/Components/FormElements/hooks/useOnChangeDone.d.ts +2 -0
- package/dist/src/Components/FullScreen/FullScreen.d.ts +14 -0
- package/dist/src/Components/Hooks/useBreakpoint.d.ts +11 -0
- package/dist/src/Components/Hooks/useComposedRef.d.ts +2 -0
- package/dist/src/Components/Hooks/useDebounced.d.ts +1 -0
- package/dist/src/Components/Hooks/useDelayed.d.ts +1 -0
- package/dist/src/Components/Hooks/useInViewport.d.ts +2 -0
- package/dist/src/Components/Hooks/useKeyListener.d.ts +3 -0
- package/dist/src/Components/Hooks/useListener.d.ts +18 -0
- package/dist/src/Components/Hooks/useOnMount.d.ts +1 -0
- package/dist/src/Components/Hooks/useOnce.d.ts +1 -0
- package/dist/src/Components/Icon/Icon.d.ts +13 -0
- package/dist/src/Components/Image/Image.d.ts +12 -0
- package/dist/src/Components/InViewport/InViewport.d.ts +11 -0
- package/dist/src/Components/Layout/Block.d.ts +7 -0
- package/dist/src/Components/Layout/Container.d.ts +15 -0
- package/dist/src/Components/Layout/Flex.d.ts +10 -0
- package/dist/src/Components/Layout/Grid/Grid.d.ts +9 -0
- package/dist/src/Components/Layout/Grid/GridItem.d.ts +25 -0
- package/dist/src/Components/Layout/Grow.d.ts +9 -0
- package/dist/src/Components/Layout/Inline.d.ts +7 -0
- package/dist/src/Components/Layout/InlineBlock.d.ts +7 -0
- package/dist/src/Components/Layout/View.d.ts +9 -0
- package/dist/src/Components/Layout/ViewWithoutListeners.d.ts +8 -0
- package/dist/src/Components/List/BulletList/BulletList.d.ts +8 -0
- package/dist/src/Components/List/BulletList/ListItem.d.ts +7 -0
- package/dist/src/Components/List/List.d.ts +10 -0
- package/dist/src/Components/LoadingArea/LoadingArea.d.ts +12 -0
- package/dist/src/Components/LoadingCircle/LoadingCircle.d.ts +8 -0
- package/dist/src/Components/Menu/Menu.d.ts +16 -0
- package/dist/src/Components/Menu/useMenu.d.ts +3 -0
- package/dist/src/Components/RbmComponentProps.d.ts +31 -0
- package/dist/src/Components/SizeCalculator/SizeCalculator.d.ts +9 -0
- package/dist/src/Components/SpoilerList/Spoiler/Spoiler.d.ts +15 -0
- package/dist/src/Components/SpoilerList/SpoilerList.d.ts +15 -0
- package/dist/src/Components/SpoilerList/useSpoilerGroup.d.ts +12 -0
- package/dist/src/Components/TabBar/TabBar.d.ts +30 -0
- package/dist/src/Components/TabBar/TabBarButton.d.ts +9 -0
- package/dist/src/Components/Table/Table.d.ts +36 -0
- package/dist/src/Components/Text/Heading.d.ts +7 -0
- package/dist/src/Components/Text/Text.d.ts +26 -0
- package/dist/src/Components/Toast/Toast.d.ts +13 -0
- package/dist/src/Components/Toast/ToastContainer.d.ts +7 -0
- package/dist/src/Components/TopBar/MoreButton.d.ts +9 -0
- package/dist/src/Components/TopBar/TopBar.d.ts +25 -0
- package/dist/src/Components/TopBar/TopBarButton.d.ts +9 -0
- package/dist/src/StyleProvider.d.ts +2 -0
- package/dist/src/TypeHelpers.d.ts +4 -0
- package/dist/src/WindowContext/WindowContext.d.ts +3 -0
- package/dist/src/WrongChildError.d.ts +4 -0
- package/dist/src/helper/Characters.d.ts +5 -0
- package/dist/src/helper/DistributiveOmit.d.ts +1 -0
- package/dist/src/helper/EmptyProps.d.ts +1 -0
- package/dist/src/helper/memoComparator.d.ts +1 -0
- package/dist/src/helper/nonEmptyString.d.ts +1 -0
- package/dist/src/helper/withForwardRef.d.ts +7 -0
- package/dist/src/helper/withMemo.d.ts +3 -0
- package/dist/src/helper/withRenderBrowserOnly.d.ts +2 -0
- package/dist/src/helper/withRestrictedChildren.d.ts +6 -0
- package/package.json +92 -0
- package/react-bootstrap-mobile.scss +6 -0
- package/scripts/getPackageJson.js +25 -0
- package/src/Components/ActionSheet/ActionSheet.tsx +115 -0
- package/src/Components/ActionSheet/actionSheet.scss +153 -0
- package/src/Components/Card/Card.tsx +46 -0
- package/src/Components/Card/card.scss +76 -0
- package/src/Components/Clickable/Clickable.tsx +174 -0
- package/src/Components/Clickable/clickable.scss +3 -0
- package/src/Components/Dialog/AlertDialog.tsx +44 -0
- package/src/Components/Dialog/ButtonDialog.tsx +57 -0
- package/src/Components/Dialog/ConfirmDialog.tsx +46 -0
- package/src/Components/Dialog/Dialog.tsx +82 -0
- package/src/Components/Dialog/DialogBackground.tsx +38 -0
- package/src/Components/Dialog/DialogContainer.tsx +77 -0
- package/src/Components/Dialog/DialogContext.ts +21 -0
- package/src/Components/Dialog/buttonDialog.scss +114 -0
- package/src/Components/Dialog/dialog.scss +30 -0
- package/src/Components/Dialog/dialogBackground.scss +4 -0
- package/src/Components/Dialog/useAlertDialog.ts +13 -0
- package/src/Components/Dialog/useConfirmDialog.ts +13 -0
- package/src/Components/DragAndDrop/DragItem.tsx +38 -0
- package/src/Components/DragAndDrop/DropArea.tsx +43 -0
- package/src/Components/DragAndDrop/useStrictEnabled.ts +20 -0
- package/src/Components/FormElements/Button/Button.tsx +25 -0
- package/src/Components/FormElements/Button/button.scss +39 -0
- package/src/Components/FormElements/CheckBox/Checkbox.tsx +61 -0
- package/src/Components/FormElements/CheckBox/checkbox.scss +107 -0
- package/src/Components/FormElements/ColorInput/ColorInput.tsx +139 -0
- package/src/Components/FormElements/ColorInput/colorInput.scss +35 -0
- package/src/Components/FormElements/ColorInput/sharedSelectedColor.ts +40 -0
- package/src/Components/FormElements/ImageInput/ImageInput.tsx +97 -0
- package/src/Components/FormElements/ImageInput/imageInput.scss +24 -0
- package/src/Components/FormElements/Input/HiddenInput.tsx +43 -0
- package/src/Components/FormElements/Input/Input.tsx +102 -0
- package/src/Components/FormElements/Input/PasswordInput/PasswordInput.tsx +55 -0
- package/src/Components/FormElements/Input/PasswordInput/passwordInput.scss +7 -0
- package/src/Components/FormElements/Input/input.scss +57 -0
- package/src/Components/FormElements/SearchSelectInput/SearchSelectInput.tsx +162 -0
- package/src/Components/FormElements/SearchSelectInput/seachSelectInput.scss +90 -0
- package/src/Components/FormElements/Select/Select.tsx +77 -0
- package/src/Components/FormElements/Select/select.scss +51 -0
- package/src/Components/FormElements/Slider/Slider.tsx +80 -0
- package/src/Components/FormElements/Slider/slider.scss +92 -0
- package/src/Components/FormElements/Switch/Switch.tsx +82 -0
- package/src/Components/FormElements/Switch/switch.scss +149 -0
- package/src/Components/FormElements/Textarea/Textarea.tsx +77 -0
- package/src/Components/FormElements/Textarea/textarea.scss +22 -0
- package/src/Components/FormElements/hooks/useOnChangeDone.ts +16 -0
- package/src/Components/FullScreen/FullScreen.tsx +89 -0
- package/src/Components/Hooks/useBreakpoint.ts +66 -0
- package/src/Components/Hooks/useComposedRef.ts +17 -0
- package/src/Components/Hooks/useDebounced.ts +22 -0
- package/src/Components/Hooks/useDelayed.ts +46 -0
- package/src/Components/Hooks/useInViewport.ts +23 -0
- package/src/Components/Hooks/useKeyListener.ts +77 -0
- package/src/Components/Hooks/useListener.ts +73 -0
- package/src/Components/Hooks/useOnMount.ts +12 -0
- package/src/Components/Hooks/useOnce.ts +11 -0
- package/src/Components/Icon/Icon.tsx +45 -0
- package/src/Components/Image/Image.tsx +44 -0
- package/src/Components/Image/image.scss +3 -0
- package/src/Components/InViewport/InViewport.tsx +71 -0
- package/src/Components/InViewport/inViewport.scss +3 -0
- package/src/Components/Layout/Block.tsx +48 -0
- package/src/Components/Layout/Container.tsx +57 -0
- package/src/Components/Layout/Flex.tsx +51 -0
- package/src/Components/Layout/Grid/Grid.tsx +53 -0
- package/src/Components/Layout/Grid/GridItem.tsx +138 -0
- package/src/Components/Layout/Grid/grid.scss +43 -0
- package/src/Components/Layout/Grow.tsx +51 -0
- package/src/Components/Layout/Inline.tsx +48 -0
- package/src/Components/Layout/InlineBlock.tsx +48 -0
- package/src/Components/Layout/View.tsx +40 -0
- package/src/Components/Layout/ViewWithoutListeners.tsx +40 -0
- package/src/Components/Layout/container.scss +12 -0
- package/src/Components/Layout/layout.scss +56 -0
- package/src/Components/List/BulletList/BulletList.tsx +33 -0
- package/src/Components/List/BulletList/ListItem.tsx +34 -0
- package/src/Components/List/List.tsx +88 -0
- package/src/Components/List/list.scss +30 -0
- package/src/Components/LoadingArea/LoadingArea.tsx +64 -0
- package/src/Components/LoadingArea/loadingArea.scss +19 -0
- package/src/Components/LoadingCircle/LoadingCircle.tsx +41 -0
- package/src/Components/LoadingCircle/loadingCircle.scss +42 -0
- package/src/Components/Menu/Menu.tsx +113 -0
- package/src/Components/Menu/menu.scss +21 -0
- package/src/Components/Menu/useMenu.ts +20 -0
- package/src/Components/RbmComponentProps.ts +40 -0
- package/src/Components/SizeCalculator/SizeCalculator.tsx +45 -0
- package/src/Components/SpoilerList/Spoiler/Spoiler.tsx +106 -0
- package/src/Components/SpoilerList/Spoiler/spoiler.scss +120 -0
- package/src/Components/SpoilerList/SpoilerList.tsx +63 -0
- package/src/Components/SpoilerList/useSpoilerGroup.ts +39 -0
- package/src/Components/TabBar/TabBar.tsx +117 -0
- package/src/Components/TabBar/TabBarButton.tsx +44 -0
- package/src/Components/TabBar/tabBar.scss +108 -0
- package/src/Components/Table/Table.tsx +182 -0
- package/src/Components/Text/Heading.tsx +44 -0
- package/src/Components/Text/Text.tsx +79 -0
- package/src/Components/Text/heading.scss +3 -0
- package/src/Components/Text/text.scss +60 -0
- package/src/Components/Toast/Toast.tsx +107 -0
- package/src/Components/Toast/ToastContainer.tsx +35 -0
- package/src/Components/Toast/toast.scss +52 -0
- package/src/Components/TopBar/MoreButton.tsx +38 -0
- package/src/Components/TopBar/TopBar.tsx +176 -0
- package/src/Components/TopBar/TopBarButton.tsx +29 -0
- package/src/Components/TopBar/topBar.scss +124 -0
- package/src/StyleProvider.ts +4 -0
- package/src/TypeHelpers.ts +4 -0
- package/src/WindowContext/WindowContext.ts +8 -0
- package/src/WrongChildError.ts +19 -0
- package/src/env.d.ts +1 -0
- package/src/helper/Characters.ts +5 -0
- package/src/helper/DistributiveOmit.ts +1 -0
- package/src/helper/EmptyProps.ts +2 -0
- package/src/helper/memoComparator.ts +18 -0
- package/src/helper/nonEmptyString.ts +8 -0
- package/src/helper/withForwardRef.ts +28 -0
- package/src/helper/withMemo.ts +16 -0
- package/src/helper/withRenderBrowserOnly.tsx +30 -0
- package/src/helper/withRestrictedChildren.tsx +57 -0
- package/src/scss/_animations.scss +46 -0
- package/src/scss/_baseClasses.scss +27 -0
- package/src/scss/_colors.scss +13 -0
- package/src/scss/_default.scss +17 -0
- package/src/scss/_designMixin.scss +13 -0
- package/src/scss/_mobileMixin.scss +35 -0
- package/src/scss/_variables.scss +22 -0
- package/src/types/isomorphic-style-loader.d.ts +3 -0
- package/src/types/react-table-config.d.ts +120 -0
- package/src/types/scss-module.d.ts +7 -0
- package/tsconfig.json +57 -0
- package/webpack.config.js +85 -0
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"browser": true,
|
|
4
|
+
"es6": true
|
|
5
|
+
},
|
|
6
|
+
"extends": [
|
|
7
|
+
"eslint:recommended",
|
|
8
|
+
"plugin:react/recommended",
|
|
9
|
+
"airbnb",
|
|
10
|
+
"plugin:@typescript-eslint/recommended",
|
|
11
|
+
"prettier",
|
|
12
|
+
"prettier/prettier",
|
|
13
|
+
"plugin:import/typescript"
|
|
14
|
+
],
|
|
15
|
+
"parser": "@typescript-eslint/parser",
|
|
16
|
+
"parserOptions": {
|
|
17
|
+
"ecmaFeatures": {
|
|
18
|
+
"experimentalObjectRestSpread": true,
|
|
19
|
+
"jsx": true
|
|
20
|
+
},
|
|
21
|
+
"ecmaVersion": 9,
|
|
22
|
+
"sourceType": "module",
|
|
23
|
+
"project": "./tsconfig.json"
|
|
24
|
+
},
|
|
25
|
+
"plugins": [
|
|
26
|
+
"react",
|
|
27
|
+
"@typescript-eslint",
|
|
28
|
+
"react-hooks"
|
|
29
|
+
],
|
|
30
|
+
"rules": {
|
|
31
|
+
"linebreak-style": [
|
|
32
|
+
"error",
|
|
33
|
+
"unix"
|
|
34
|
+
],
|
|
35
|
+
"semi": [
|
|
36
|
+
"error",
|
|
37
|
+
"always"
|
|
38
|
+
],
|
|
39
|
+
"react/jsx-uses-react": [
|
|
40
|
+
"error"
|
|
41
|
+
],
|
|
42
|
+
"react/jsx-uses-vars": [
|
|
43
|
+
"error"
|
|
44
|
+
],
|
|
45
|
+
"react-hooks/rules-of-hooks": "error",
|
|
46
|
+
// Checks rules of Hooks
|
|
47
|
+
"react-hooks/exhaustive-deps": [
|
|
48
|
+
"warn",
|
|
49
|
+
{
|
|
50
|
+
"additionalHooks": "(useDelayed|useDebounced)"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
// Checks effect dependencies
|
|
54
|
+
"react/jsx-filename-extension": [
|
|
55
|
+
"warn",
|
|
56
|
+
{
|
|
57
|
+
"extensions": [
|
|
58
|
+
".tsx"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"import/extensions": [
|
|
63
|
+
"error",
|
|
64
|
+
"ignorePackages",
|
|
65
|
+
{
|
|
66
|
+
"js": "never",
|
|
67
|
+
"jsx": "never",
|
|
68
|
+
"ts": "never",
|
|
69
|
+
"tsx": "never"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"no-shadow": "off",
|
|
73
|
+
"@typescript-eslint/no-shadow": [
|
|
74
|
+
"error"
|
|
75
|
+
],
|
|
76
|
+
"lines-between-class-members": [
|
|
77
|
+
"warn",
|
|
78
|
+
"always",
|
|
79
|
+
{
|
|
80
|
+
"exceptAfterSingleLine": true
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"react/sort-comp": [
|
|
84
|
+
"warn",
|
|
85
|
+
{
|
|
86
|
+
"order": [
|
|
87
|
+
"static-variables",
|
|
88
|
+
"instance-variables",
|
|
89
|
+
"static-methods",
|
|
90
|
+
"lifecycle",
|
|
91
|
+
"render",
|
|
92
|
+
"/^render.+$/",
|
|
93
|
+
"instance-methods",
|
|
94
|
+
"everything-else"
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"no-return-assign": [
|
|
99
|
+
"error",
|
|
100
|
+
"except-parens"
|
|
101
|
+
],
|
|
102
|
+
"import/no-extraneous-dependencies": [
|
|
103
|
+
"error",
|
|
104
|
+
{
|
|
105
|
+
"devDependencies": [
|
|
106
|
+
"**/*",
|
|
107
|
+
"src/pages/!(api)/**/*.tsx",
|
|
108
|
+
"src/pages/**/*.tsx",
|
|
109
|
+
"src/!(pages|models|app)/**/*.(tsx|ts)"
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"react/destructuring-assignment": [
|
|
114
|
+
"error",
|
|
115
|
+
"always",
|
|
116
|
+
{
|
|
117
|
+
"ignoreClassFields": true
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"react/state-in-constructor": [
|
|
121
|
+
"error",
|
|
122
|
+
"never"
|
|
123
|
+
],
|
|
124
|
+
"@typescript-eslint/no-unused-vars": [
|
|
125
|
+
"error",
|
|
126
|
+
{
|
|
127
|
+
"vars": "all",
|
|
128
|
+
"ignoreRestSiblings": false,
|
|
129
|
+
"argsIgnorePattern": "^_",
|
|
130
|
+
"varsIgnorePattern": "^_"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"import/no-cycle": [
|
|
134
|
+
"error",
|
|
135
|
+
{
|
|
136
|
+
"maxDepth": 1
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"no-promise-executor-return": "off",
|
|
140
|
+
"@typescript-eslint/no-non-null-assertion": "off",
|
|
141
|
+
"no-console": "off",
|
|
142
|
+
"no-use-before-define": "off",
|
|
143
|
+
"@typescript-eslint/no-use-before-define": "off",
|
|
144
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
145
|
+
"import/order": "off",
|
|
146
|
+
"import/prefer-default-export": "off",
|
|
147
|
+
"react/prop-types": "off",
|
|
148
|
+
"@typescript-eslint/explicit-function-return-type": "off",
|
|
149
|
+
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
150
|
+
"react/jsx-props-no-spreading": "off",
|
|
151
|
+
"react/jsx-boolean-value": "off",
|
|
152
|
+
"no-plusplus": "off",
|
|
153
|
+
"no-param-reassign": "off",
|
|
154
|
+
"default-case": "off",
|
|
155
|
+
"jsx-a11y/interactive-supports-focus": "off",
|
|
156
|
+
"jsx-a11y/click-events-have-key-events": "off",
|
|
157
|
+
"jsx-a11y/no-static-element-interactions": "off",
|
|
158
|
+
"react/require-default-props": "off"
|
|
159
|
+
},
|
|
160
|
+
"settings": {
|
|
161
|
+
"react": {
|
|
162
|
+
"version": "detect"
|
|
163
|
+
},
|
|
164
|
+
"import/resolver": {
|
|
165
|
+
"typescript": {
|
|
166
|
+
"extensions": [
|
|
167
|
+
".js",
|
|
168
|
+
".jsx",
|
|
169
|
+
".ts",
|
|
170
|
+
".tsx"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
"node": {
|
|
174
|
+
"extensions": [
|
|
175
|
+
".js",
|
|
176
|
+
".jsx",
|
|
177
|
+
".ts",
|
|
178
|
+
".tsx"
|
|
179
|
+
],
|
|
180
|
+
"moduleDirectory": [
|
|
181
|
+
"node_modules",
|
|
182
|
+
"src/"
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"globals": {
|
|
188
|
+
}
|
|
189
|
+
}
|
package/.prettierrc
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Ainias
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# React-Bootstrap-Mobile
|
package/babel.config.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
// presets: [
|
|
3
|
+
// '@babel/preset-typescript',
|
|
4
|
+
// '@babel/preset-react',
|
|
5
|
+
// [
|
|
6
|
+
// '@babel/env',
|
|
7
|
+
// {
|
|
8
|
+
// corejs: '3',
|
|
9
|
+
// useBuiltIns: 'entry',
|
|
10
|
+
// targets: {
|
|
11
|
+
// browsers: ['edge >= 16', 'safari >= 9', 'firefox >= 57', 'ie >= 11', 'ios >= 9', 'chrome >= 49'],
|
|
12
|
+
// },
|
|
13
|
+
// },
|
|
14
|
+
// ],
|
|
15
|
+
// ],
|
|
16
|
+
// plugins: [
|
|
17
|
+
// ['styled-jsx/babel'],
|
|
18
|
+
// ['@babel/plugin-proposal-class-properties'],
|
|
19
|
+
// ['@babel/plugin-transform-typescript'],
|
|
20
|
+
// ],
|
|
21
|
+
presets: ['@babel/preset-typescript', '@babel/preset-react'],
|
|
22
|
+
};
|
package/bin/build.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const fs = require('fs');
|
|
3
|
+
|
|
4
|
+
const tmpFile = './tmp/script.js';
|
|
5
|
+
|
|
6
|
+
function findNames(dir, excluded) {
|
|
7
|
+
let names = {};
|
|
8
|
+
if (excluded.includes(dir)) {
|
|
9
|
+
return names;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
let files = fs.readdirSync(dir);
|
|
13
|
+
files.forEach((file) => {
|
|
14
|
+
let stats = fs.statSync(dir + file);
|
|
15
|
+
if (stats.isDirectory()) {
|
|
16
|
+
let nameObject = findNames(dir + file + '/', excluded);
|
|
17
|
+
names = Object.assign(names, nameObject);
|
|
18
|
+
} else if (file.endsWith('.d.ts') && !excluded.includes(dir + file)) {
|
|
19
|
+
return;
|
|
20
|
+
} else if (file.endsWith('.ts') && !excluded.includes(dir + file)) {
|
|
21
|
+
names[file.substring(0, file.length - 3)] = dir + file.substring(0, file.length - 3);
|
|
22
|
+
} else if ((file.endsWith('.mjs') || file.endsWith('.tsx')) && !excluded.includes(dir + file)) {
|
|
23
|
+
names[file.substring(0, file.length - 4)] = dir + file.substring(0, file.length - 4);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
return names;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
async function buildEntryPoints(fileOption, target) {
|
|
30
|
+
const cutLengthFront = 0;
|
|
31
|
+
|
|
32
|
+
target = target || tmpFile;
|
|
33
|
+
|
|
34
|
+
const resultDir = path.resolve(process.cwd(), path.dirname(target));
|
|
35
|
+
|
|
36
|
+
let names = {};
|
|
37
|
+
fileOption.input.forEach((dir) => {
|
|
38
|
+
Object.assign(names, findNames(dir + '/', []));
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
let imports = '';
|
|
42
|
+
for (let k in names) {
|
|
43
|
+
imports +=
|
|
44
|
+
"export * from './" +
|
|
45
|
+
path.relative(resultDir, path.resolve(process.cwd(), names[k].substring(cutLengthFront))) +
|
|
46
|
+
"';\n";
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
if (!fs.existsSync(resultDir)) {
|
|
50
|
+
fs.mkdirSync(resultDir);
|
|
51
|
+
}
|
|
52
|
+
fs.writeFileSync(target, imports);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
buildEntryPoints(
|
|
56
|
+
{
|
|
57
|
+
input: [path.resolve(process.cwd(), 'src/')],
|
|
58
|
+
},
|
|
59
|
+
'./bootstrapReactMobile.ts'
|
|
60
|
+
);
|
package/bin/release.sh
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#! /bin/bash
|
|
2
|
+
|
|
3
|
+
# Exit when a command fails
|
|
4
|
+
set -e
|
|
5
|
+
|
|
6
|
+
REPOSITORY=git@github.com:Ainias/react-bootstrap-mobile.git
|
|
7
|
+
|
|
8
|
+
if [[ -z "$1" ]]; then
|
|
9
|
+
echo "versioname not given!"
|
|
10
|
+
exit;
|
|
11
|
+
fi;
|
|
12
|
+
|
|
13
|
+
versionName=$1
|
|
14
|
+
versionExists="$(git ls-remote $REPOSITORY refs/tags/"$versionName"| tr -d '\n')"
|
|
15
|
+
|
|
16
|
+
if [ -n "$versionExists" ]; then
|
|
17
|
+
echo "Version existiert bereits!";
|
|
18
|
+
exit 1;
|
|
19
|
+
fi;
|
|
20
|
+
|
|
21
|
+
TMPDIR=$(mktemp -d)
|
|
22
|
+
|
|
23
|
+
cd "$TMPDIR";
|
|
24
|
+
git clone $REPOSITORY project
|
|
25
|
+
cd project
|
|
26
|
+
|
|
27
|
+
npm install
|
|
28
|
+
npm run build
|
|
29
|
+
git add -u
|
|
30
|
+
git commit -m "pre-version-commit for version $versionName" || echo "no commit needed"
|
|
31
|
+
npm version "$versionName"
|
|
32
|
+
npm publish
|
|
33
|
+
git push
|
|
34
|
+
|
|
35
|
+
echo "$TMPDIR"
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const exec = require('child_process').exec;
|
|
3
|
+
const fs = require('fs');
|
|
4
|
+
|
|
5
|
+
const packageName = require('../package.json').name;
|
|
6
|
+
|
|
7
|
+
let pathsToProjects = [
|
|
8
|
+
'/home/silas/Projekte/web/dnd',
|
|
9
|
+
'/home/silas/Projekte/web/prayercircle',
|
|
10
|
+
'/home/silas/Projekte/chrome/dmscreen',
|
|
11
|
+
'/home/silas/Projekte/web/smd-mail',
|
|
12
|
+
'/home/silas/Projekte/web/react-windows',
|
|
13
|
+
'/home/silas/Projekte/web/cordova-sites',
|
|
14
|
+
// '/home/silas/Projekte/web/cordova-sites-legacy-adapter',
|
|
15
|
+
// '/home/silas/Projekte/web/cordova-sites-easy-sync',
|
|
16
|
+
// '/home/silas/Projekte/web/cordova-sites-user-management',
|
|
17
|
+
];
|
|
18
|
+
|
|
19
|
+
const deleteFolderRecursive = function (path) {
|
|
20
|
+
if (fs.existsSync(path)) {
|
|
21
|
+
fs.readdirSync(path).forEach(function (file) {
|
|
22
|
+
let curPath = path + '/' + file;
|
|
23
|
+
if (fs.lstatSync(curPath).isDirectory()) {
|
|
24
|
+
// recurse
|
|
25
|
+
deleteFolderRecursive(curPath);
|
|
26
|
+
} else {
|
|
27
|
+
// delete file
|
|
28
|
+
fs.unlinkSync(curPath);
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
fs.rmdirSync(path);
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
async function execPromise(command) {
|
|
36
|
+
return new Promise((resolve, reject) => {
|
|
37
|
+
console.log('executing ' + command + '...');
|
|
38
|
+
exec(command, (err, stdout, stderr) => {
|
|
39
|
+
console.log(stdout);
|
|
40
|
+
console.log(stderr);
|
|
41
|
+
if (err) {
|
|
42
|
+
reject([err, stdout, stderr]);
|
|
43
|
+
} else {
|
|
44
|
+
resolve([stdout, stderr]);
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
execPromise('npm pack')
|
|
51
|
+
.then(async (std) => {
|
|
52
|
+
let thisPath = process.cwd();
|
|
53
|
+
let name = std[0].trim();
|
|
54
|
+
let pathToTar = path.resolve(thisPath, name);
|
|
55
|
+
|
|
56
|
+
if (!fs.existsSync('tmp')) {
|
|
57
|
+
fs.mkdirSync('tmp');
|
|
58
|
+
}
|
|
59
|
+
process.chdir('tmp');
|
|
60
|
+
await execPromise('tar -xvzf ' + pathToTar + ' -C ./');
|
|
61
|
+
process.chdir('package');
|
|
62
|
+
// fs.unlinkSync('package.json');
|
|
63
|
+
|
|
64
|
+
let promise = Promise.resolve();
|
|
65
|
+
pathsToProjects.forEach((project) => {
|
|
66
|
+
promise = promise.then(async () => {
|
|
67
|
+
let resultDir = path.resolve(project, 'node_modules', packageName);
|
|
68
|
+
console.log(resultDir, fs.existsSync(resultDir));
|
|
69
|
+
if (!fs.existsSync(resultDir)) {
|
|
70
|
+
fs.mkdirSync(resultDir);
|
|
71
|
+
}
|
|
72
|
+
return execPromise('cp -r ./* ' + resultDir);
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
await promise;
|
|
76
|
+
|
|
77
|
+
process.chdir(thisPath);
|
|
78
|
+
fs.unlinkSync(name);
|
|
79
|
+
deleteFolderRecursive('tmp');
|
|
80
|
+
// fs.unlinkSync("tmp");
|
|
81
|
+
|
|
82
|
+
console.log('done!');
|
|
83
|
+
})
|
|
84
|
+
.catch((e) => {
|
|
85
|
+
console.error(e);
|
|
86
|
+
});
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export * from './src/Components/ActionSheet/ActionSheet';
|
|
2
|
+
export * from './src/Components/Card/Card';
|
|
3
|
+
export * from './src/Components/Clickable/Clickable';
|
|
4
|
+
export * from './src/Components/Dialog/AlertDialog';
|
|
5
|
+
export * from './src/Components/Dialog/ButtonDialog';
|
|
6
|
+
export * from './src/Components/Dialog/ConfirmDialog';
|
|
7
|
+
export * from './src/Components/Dialog/Dialog';
|
|
8
|
+
export * from './src/Components/Dialog/DialogBackground';
|
|
9
|
+
export * from './src/Components/Dialog/DialogContainer';
|
|
10
|
+
export * from './src/Components/Dialog/DialogContext';
|
|
11
|
+
export * from './src/Components/Dialog/useAlertDialog';
|
|
12
|
+
export * from './src/Components/Dialog/useConfirmDialog';
|
|
13
|
+
export * from './src/Components/DragAndDrop/DragItem';
|
|
14
|
+
export * from './src/Components/DragAndDrop/DropArea';
|
|
15
|
+
export * from './src/Components/DragAndDrop/useStrictEnabled';
|
|
16
|
+
export * from './src/Components/FormElements/Button/Button';
|
|
17
|
+
export * from './src/Components/FormElements/CheckBox/Checkbox';
|
|
18
|
+
export * from './src/Components/FormElements/ColorInput/ColorInput';
|
|
19
|
+
export * from './src/Components/FormElements/ColorInput/sharedSelectedColor';
|
|
20
|
+
export * from './src/Components/FormElements/ImageInput/ImageInput';
|
|
21
|
+
export * from './src/Components/FormElements/Input/HiddenInput';
|
|
22
|
+
export * from './src/Components/FormElements/Input/Input';
|
|
23
|
+
export * from './src/Components/FormElements/Input/PasswordInput/PasswordInput';
|
|
24
|
+
export * from './src/Components/FormElements/SearchSelectInput/SearchSelectInput';
|
|
25
|
+
export * from './src/Components/FormElements/Select/Select';
|
|
26
|
+
export * from './src/Components/FormElements/Slider/Slider';
|
|
27
|
+
export * from './src/Components/FormElements/Switch/Switch';
|
|
28
|
+
export * from './src/Components/FormElements/Textarea/Textarea';
|
|
29
|
+
export * from './src/Components/FormElements/hooks/useOnChangeDone';
|
|
30
|
+
export * from './src/Components/FullScreen/FullScreen';
|
|
31
|
+
export * from './src/Components/Hooks/useBreakpoint';
|
|
32
|
+
export * from './src/Components/Hooks/useComposedRef';
|
|
33
|
+
export * from './src/Components/Hooks/useDebounced';
|
|
34
|
+
export * from './src/Components/Hooks/useDelayed';
|
|
35
|
+
export * from './src/Components/Hooks/useInViewport';
|
|
36
|
+
export * from './src/Components/Hooks/useKeyListener';
|
|
37
|
+
export * from './src/Components/Hooks/useListener';
|
|
38
|
+
export * from './src/Components/Hooks/useOnMount';
|
|
39
|
+
export * from './src/Components/Hooks/useOnce';
|
|
40
|
+
export * from './src/Components/Icon/Icon';
|
|
41
|
+
export * from './src/Components/Image/Image';
|
|
42
|
+
export * from './src/Components/InViewport/InViewport';
|
|
43
|
+
export * from './src/Components/Layout/Block';
|
|
44
|
+
export * from './src/Components/Layout/Container';
|
|
45
|
+
export * from './src/Components/Layout/Flex';
|
|
46
|
+
export * from './src/Components/Layout/Grid/Grid';
|
|
47
|
+
export * from './src/Components/Layout/Grid/GridItem';
|
|
48
|
+
export * from './src/Components/Layout/Grow';
|
|
49
|
+
export * from './src/Components/Layout/Inline';
|
|
50
|
+
export * from './src/Components/Layout/InlineBlock';
|
|
51
|
+
export * from './src/Components/Layout/View';
|
|
52
|
+
export * from './src/Components/Layout/ViewWithoutListeners';
|
|
53
|
+
export * from './src/Components/List/BulletList/BulletList';
|
|
54
|
+
export * from './src/Components/List/BulletList/ListItem';
|
|
55
|
+
export * from './src/Components/List/List';
|
|
56
|
+
export * from './src/Components/LoadingArea/LoadingArea';
|
|
57
|
+
export * from './src/Components/LoadingCircle/LoadingCircle';
|
|
58
|
+
export * from './src/Components/Menu/Menu';
|
|
59
|
+
export * from './src/Components/Menu/useMenu';
|
|
60
|
+
export * from './src/Components/RbmComponentProps';
|
|
61
|
+
export * from './src/Components/SizeCalculator/SizeCalculator';
|
|
62
|
+
export * from './src/Components/SpoilerList/Spoiler/Spoiler';
|
|
63
|
+
export * from './src/Components/SpoilerList/SpoilerList';
|
|
64
|
+
export * from './src/Components/SpoilerList/useSpoilerGroup';
|
|
65
|
+
export * from './src/Components/TabBar/TabBar';
|
|
66
|
+
export * from './src/Components/TabBar/TabBarButton';
|
|
67
|
+
export * from './src/Components/Table/Table';
|
|
68
|
+
export * from './src/Components/Text/Heading';
|
|
69
|
+
export * from './src/Components/Text/Text';
|
|
70
|
+
export * from './src/Components/Toast/Toast';
|
|
71
|
+
export * from './src/Components/Toast/ToastContainer';
|
|
72
|
+
export * from './src/Components/TopBar/MoreButton';
|
|
73
|
+
export * from './src/Components/TopBar/TopBar';
|
|
74
|
+
export * from './src/Components/TopBar/TopBarButton';
|
|
75
|
+
export * from './src/StyleProvider';
|
|
76
|
+
export * from './src/TypeHelpers';
|
|
77
|
+
export * from './src/WindowContext/WindowContext';
|
|
78
|
+
export * from './src/WrongChildError';
|
|
79
|
+
export * from './src/helper/Characters';
|
|
80
|
+
export * from './src/helper/DistributiveOmit';
|
|
81
|
+
export * from './src/helper/EmptyProps';
|
|
82
|
+
export * from './src/helper/memoComparator';
|
|
83
|
+
export * from './src/helper/nonEmptyString';
|
|
84
|
+
export * from './src/helper/withForwardRef';
|
|
85
|
+
export * from './src/helper/withMemo';
|
|
86
|
+
export * from './src/helper/withRenderBrowserOnly';
|
|
87
|
+
export * from './src/helper/withRestrictedChildren';
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export * from './src/Components/ActionSheet/ActionSheet';
|
|
2
|
+
export * from './src/Components/Card/Card';
|
|
3
|
+
export * from './src/Components/Clickable/Clickable';
|
|
4
|
+
export * from './src/Components/Dialog/AlertDialog';
|
|
5
|
+
export * from './src/Components/Dialog/ButtonDialog';
|
|
6
|
+
export * from './src/Components/Dialog/ConfirmDialog';
|
|
7
|
+
export * from './src/Components/Dialog/Dialog';
|
|
8
|
+
export * from './src/Components/Dialog/DialogBackground';
|
|
9
|
+
export * from './src/Components/Dialog/DialogContainer';
|
|
10
|
+
export * from './src/Components/Dialog/DialogContext';
|
|
11
|
+
export * from './src/Components/Dialog/useAlertDialog';
|
|
12
|
+
export * from './src/Components/Dialog/useConfirmDialog';
|
|
13
|
+
export * from './src/Components/DragAndDrop/DragItem';
|
|
14
|
+
export * from './src/Components/DragAndDrop/DropArea';
|
|
15
|
+
export * from './src/Components/DragAndDrop/useStrictEnabled';
|
|
16
|
+
export * from './src/Components/FormElements/Button/Button';
|
|
17
|
+
export * from './src/Components/FormElements/CheckBox/Checkbox';
|
|
18
|
+
export * from './src/Components/FormElements/ColorInput/ColorInput';
|
|
19
|
+
export * from './src/Components/FormElements/ColorInput/sharedSelectedColor';
|
|
20
|
+
export * from './src/Components/FormElements/ImageInput/ImageInput';
|
|
21
|
+
export * from './src/Components/FormElements/Input/HiddenInput';
|
|
22
|
+
export * from './src/Components/FormElements/Input/Input';
|
|
23
|
+
export * from './src/Components/FormElements/Input/PasswordInput/PasswordInput';
|
|
24
|
+
export * from './src/Components/FormElements/SearchSelectInput/SearchSelectInput';
|
|
25
|
+
export * from './src/Components/FormElements/Select/Select';
|
|
26
|
+
export * from './src/Components/FormElements/Slider/Slider';
|
|
27
|
+
export * from './src/Components/FormElements/Switch/Switch';
|
|
28
|
+
export * from './src/Components/FormElements/Textarea/Textarea';
|
|
29
|
+
export * from './src/Components/FormElements/hooks/useOnChangeDone';
|
|
30
|
+
export * from './src/Components/FullScreen/FullScreen';
|
|
31
|
+
export * from './src/Components/Hooks/useBreakpoint';
|
|
32
|
+
export * from './src/Components/Hooks/useComposedRef';
|
|
33
|
+
export * from './src/Components/Hooks/useDebounced';
|
|
34
|
+
export * from './src/Components/Hooks/useDelayed';
|
|
35
|
+
export * from './src/Components/Hooks/useInViewport';
|
|
36
|
+
export * from './src/Components/Hooks/useKeyListener';
|
|
37
|
+
export * from './src/Components/Hooks/useListener';
|
|
38
|
+
export * from './src/Components/Hooks/useOnMount';
|
|
39
|
+
export * from './src/Components/Hooks/useOnce';
|
|
40
|
+
export * from './src/Components/Icon/Icon';
|
|
41
|
+
export * from './src/Components/Image/Image';
|
|
42
|
+
export * from './src/Components/InViewport/InViewport';
|
|
43
|
+
export * from './src/Components/Layout/Block';
|
|
44
|
+
export * from './src/Components/Layout/Container';
|
|
45
|
+
export * from './src/Components/Layout/Flex';
|
|
46
|
+
export * from './src/Components/Layout/Grid/Grid';
|
|
47
|
+
export * from './src/Components/Layout/Grid/GridItem';
|
|
48
|
+
export * from './src/Components/Layout/Grow';
|
|
49
|
+
export * from './src/Components/Layout/Inline';
|
|
50
|
+
export * from './src/Components/Layout/InlineBlock';
|
|
51
|
+
export * from './src/Components/Layout/View';
|
|
52
|
+
export * from './src/Components/Layout/ViewWithoutListeners';
|
|
53
|
+
export * from './src/Components/List/BulletList/BulletList';
|
|
54
|
+
export * from './src/Components/List/BulletList/ListItem';
|
|
55
|
+
export * from './src/Components/List/List';
|
|
56
|
+
export * from './src/Components/LoadingArea/LoadingArea';
|
|
57
|
+
export * from './src/Components/LoadingCircle/LoadingCircle';
|
|
58
|
+
export * from './src/Components/Menu/Menu';
|
|
59
|
+
export * from './src/Components/Menu/useMenu';
|
|
60
|
+
export * from './src/Components/RbmComponentProps';
|
|
61
|
+
export * from './src/Components/SizeCalculator/SizeCalculator';
|
|
62
|
+
export * from './src/Components/SpoilerList/Spoiler/Spoiler';
|
|
63
|
+
export * from './src/Components/SpoilerList/SpoilerList';
|
|
64
|
+
export * from './src/Components/SpoilerList/useSpoilerGroup';
|
|
65
|
+
export * from './src/Components/TabBar/TabBar';
|
|
66
|
+
export * from './src/Components/TabBar/TabBarButton';
|
|
67
|
+
export * from './src/Components/Table/Table';
|
|
68
|
+
export * from './src/Components/Text/Heading';
|
|
69
|
+
export * from './src/Components/Text/Text';
|
|
70
|
+
export * from './src/Components/Toast/Toast';
|
|
71
|
+
export * from './src/Components/Toast/ToastContainer';
|
|
72
|
+
export * from './src/Components/TopBar/MoreButton';
|
|
73
|
+
export * from './src/Components/TopBar/TopBar';
|
|
74
|
+
export * from './src/Components/TopBar/TopBarButton';
|
|
75
|
+
export * from './src/StyleProvider';
|
|
76
|
+
export * from './src/TypeHelpers';
|
|
77
|
+
export * from './src/WindowContext/WindowContext';
|
|
78
|
+
export * from './src/WrongChildError';
|
|
79
|
+
export * from './src/helper/Characters';
|
|
80
|
+
export * from './src/helper/DistributiveOmit';
|
|
81
|
+
export * from './src/helper/EmptyProps';
|
|
82
|
+
export * from './src/helper/memoComparator';
|
|
83
|
+
export * from './src/helper/nonEmptyString';
|
|
84
|
+
export * from './src/helper/withForwardRef';
|
|
85
|
+
export * from './src/helper/withMemo';
|
|
86
|
+
export * from './src/helper/withRenderBrowserOnly';
|
|
87
|
+
export * from './src/helper/withRestrictedChildren';
|