admin_core 0.0.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.
- checksums.yaml +7 -0
- data/.gitattributes +2 -0
- data/.gitignore +53 -0
- data/.rspec +2 -0
- data/.rubocop.yml +27 -0
- data/CHANGELOG.md +15 -0
- data/Gemfile +3 -0
- data/README.md +48 -0
- data/Rakefile +31 -0
- data/admin_core.gemspec +32 -0
- data/client/.babelrc +19 -0
- data/client/.eslintignore +3 -0
- data/client/.eslintrc.yml +20 -0
- data/client/.flowconfig +7 -0
- data/client/.gitignore +64 -0
- data/client/README.md +3 -0
- data/client/admin-core.scss +8 -0
- data/client/flow-typed/npm/axios_v0.16.x.js +120 -0
- data/client/flow-typed/npm/classnames_v2.x.x.js +16 -0
- data/client/flow-typed/npm/lodash_v4.x.x.js +514 -0
- data/client/flow-typed/npm/react-router-dom_v4.x.x.js +166 -0
- data/client/flow-typed/npm/reactstrap_vx.x.x.js +536 -0
- data/client/package.json +60 -0
- data/client/src/.eslintrc.yml +23 -0
- data/client/src/AdminCore.jsx +44 -0
- data/client/src/components/Breadcrumb.jsx +18 -0
- data/client/src/components/Header.jsx +45 -0
- data/client/src/components/Pagination.jsx +72 -0
- data/client/src/components/ResourceFilters.jsx +87 -0
- data/client/src/components/ResourceForm.jsx +103 -0
- data/client/src/components/ResourcesCollection.jsx +41 -0
- data/client/src/components/Sidebar.jsx +90 -0
- data/client/src/decls.js +119 -0
- data/client/src/http-client.js +18 -0
- data/client/src/main.js +9 -0
- data/client/src/resource-field/BelongsTo.jsx +26 -0
- data/client/src/resource-field/Boolean.jsx +43 -0
- data/client/src/resource-field/Date.jsx +29 -0
- data/client/src/resource-field/DateTime.jsx +29 -0
- data/client/src/resource-field/Enum.jsx +34 -0
- data/client/src/resource-field/Number.jsx +28 -0
- data/client/src/resource-field/String.jsx +28 -0
- data/client/src/resource-field/Text.jsx +27 -0
- data/client/src/resource-field-renderer.js +45 -0
- data/client/src/resource-filter/Boolean.jsx +22 -0
- data/client/src/resource-filter/Number.jsx +45 -0
- data/client/src/resource-filter/String.jsx +46 -0
- data/client/src/resource-filter-renderer.js +17 -0
- data/client/src/resource-page/Base.js +36 -0
- data/client/src/resource-page/Edit.jsx +48 -0
- data/client/src/resource-page/Index.jsx +141 -0
- data/client/src/resource-page/New.jsx +48 -0
- data/client/src/resource-page/Show.jsx +116 -0
- data/client/webpack.config.js +26 -0
- data/client/yarn.lock +3816 -0
- data/lib/admin_core/base_controller.rb +114 -0
- data/lib/admin_core/base_resource_manager.rb +24 -0
- data/lib/admin_core/configuration.rb +20 -0
- data/lib/admin_core/engine.rb +6 -0
- data/lib/admin_core/errors.rb +17 -0
- data/lib/admin_core/resource_field/base.rb +69 -0
- data/lib/admin_core/resource_field/belongs_to.rb +38 -0
- data/lib/admin_core/resource_field/boolean.rb +18 -0
- data/lib/admin_core/resource_field/date.rb +18 -0
- data/lib/admin_core/resource_field/date_time.rb +18 -0
- data/lib/admin_core/resource_field/enum.rb +26 -0
- data/lib/admin_core/resource_field/number.rb +18 -0
- data/lib/admin_core/resource_field/string.rb +18 -0
- data/lib/admin_core/resource_field/text.rb +23 -0
- data/lib/admin_core/resource_field_builder.rb +48 -0
- data/lib/admin_core/resource_filter/base.rb +63 -0
- data/lib/admin_core/resource_filter/boolean.rb +17 -0
- data/lib/admin_core/resource_filter/number.rb +25 -0
- data/lib/admin_core/resource_filter/string.rb +27 -0
- data/lib/admin_core/resource_filter_builder.rb +37 -0
- data/lib/admin_core/resource_manager/buildable.rb +42 -0
- data/lib/admin_core/resource_manager/convert.rb +95 -0
- data/lib/admin_core/resource_manager/has_many_fields.rb +71 -0
- data/lib/admin_core/resource_manager/permission.rb +35 -0
- data/lib/admin_core/resource_manager/searchable.rb +57 -0
- data/lib/admin_core/resource_page/base.rb +17 -0
- data/lib/admin_core/resource_page/edit.rb +22 -0
- data/lib/admin_core/resource_page/index.rb +52 -0
- data/lib/admin_core/resource_page/new.rb +26 -0
- data/lib/admin_core/resource_page/show.rb +22 -0
- data/lib/admin_core/resource_router.rb +58 -0
- data/lib/admin_core/resource_search.rb +22 -0
- data/lib/admin_core/rspec/matchers.rb +18 -0
- data/lib/admin_core/rspec/resource_field_spec_helper.rb +54 -0
- data/lib/admin_core/version.rb +11 -0
- data/lib/admin_core/view_object/sidebar_dropdown.rb +21 -0
- data/lib/admin_core/view_object/sidebar_link.rb +24 -0
- data/lib/admin_core/view_object/sidebar_resource_link.rb +23 -0
- data/lib/admin_core/view_object/sidebar_title.rb +18 -0
- data/lib/admin_core.rb +69 -0
- data/lib/generators/admin_core/install_generator.rb +39 -0
- data/lib/generators/admin_core/resource_manager_generator.rb +166 -0
- data/lib/generators/admin_core/templates/admin-core.css +1 -0
- data/lib/generators/admin_core/templates/admin-core.js +38196 -0
- data/lib/generators/admin_core/templates/controller.rb.erb +4 -0
- data/lib/generators/admin_core/templates/initializer.rb.erb +3 -0
- data/lib/generators/admin_core/templates/resource_manager.rb.erb +33 -0
- data/lib/generators/admin_core/templates/view.html.erb +58 -0
- data/sample/.gitignore +21 -0
- data/sample/Gemfile +35 -0
- data/sample/Gemfile.lock +147 -0
- data/sample/README.md +24 -0
- data/sample/Rakefile +6 -0
- data/sample/app/assets/config/manifest.js +2 -0
- data/sample/app/assets/images/.keep +0 -0
- data/sample/app/assets/stylesheets/application.css +15 -0
- data/sample/app/controllers/admin/application_controller.rb +4 -0
- data/sample/app/controllers/admin/tweets_controller.rb +4 -0
- data/sample/app/controllers/admin/users_controller.rb +4 -0
- data/sample/app/controllers/application_controller.rb +3 -0
- data/sample/app/controllers/concerns/.keep +0 -0
- data/sample/app/helpers/application_helper.rb +2 -0
- data/sample/app/jobs/application_job.rb +2 -0
- data/sample/app/models/admin/tweet.rb +35 -0
- data/sample/app/models/admin/user.rb +41 -0
- data/sample/app/models/application_record.rb +3 -0
- data/sample/app/models/concerns/.keep +0 -0
- data/sample/app/models/tweet.rb +3 -0
- data/sample/app/models/user.rb +3 -0
- data/sample/app/views/admin/application.html.erb +64 -0
- data/sample/app/views/layouts/application.html.erb +13 -0
- data/sample/bin/bundle +3 -0
- data/sample/bin/rails +4 -0
- data/sample/bin/rake +4 -0
- data/sample/bin/setup +34 -0
- data/sample/bin/update +29 -0
- data/sample/config/application.rb +25 -0
- data/sample/config/boot.rb +3 -0
- data/sample/config/database.yml +25 -0
- data/sample/config/environment.rb +5 -0
- data/sample/config/environments/development.rb +42 -0
- data/sample/config/environments/production.rb +69 -0
- data/sample/config/environments/test.rb +36 -0
- data/sample/config/initializers/admin_core.rb +8 -0
- data/sample/config/initializers/application_controller_renderer.rb +6 -0
- data/sample/config/initializers/backtrace_silencers.rb +7 -0
- data/sample/config/initializers/cookies_serializer.rb +5 -0
- data/sample/config/initializers/filter_parameter_logging.rb +4 -0
- data/sample/config/initializers/inflections.rb +16 -0
- data/sample/config/initializers/mime_types.rb +4 -0
- data/sample/config/initializers/new_framework_defaults.rb +24 -0
- data/sample/config/initializers/session_store.rb +3 -0
- data/sample/config/initializers/wrap_parameters.rb +14 -0
- data/sample/config/locales/en.yml +23 -0
- data/sample/config/routes.rb +6 -0
- data/sample/config/secrets.yml +22 -0
- data/sample/config.ru +5 -0
- data/sample/db/migrate/20170417055257_create_users.rb +10 -0
- data/sample/db/migrate/20170417055412_create_tweets.rb +9 -0
- data/sample/db/schema.rb +31 -0
- data/sample/db/seeds.rb +7 -0
- data/sample/lib/assets/.keep +0 -0
- data/sample/lib/tasks/.keep +0 -0
- data/sample/log/.keep +0 -0
- data/sample/public/404.html +67 -0
- data/sample/public/422.html +67 -0
- data/sample/public/500.html +66 -0
- data/sample/public/apple-touch-icon-precomposed.png +0 -0
- data/sample/public/apple-touch-icon.png +0 -0
- data/sample/public/bundle.min.js +27 -0
- data/sample/public/bundle.min.js.map +1 -0
- data/sample/public/favicon.ico +0 -0
- data/sample/public/javascripts/admin-core.js +38196 -0
- data/sample/public/robots.txt +5 -0
- data/sample/public/stylesheets/admin-core.css +1 -0
- data/sample/tmp/.keep +0 -0
- data/sample/vendor/assets/stylesheets/.keep +0 -0
- metadata +368 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
// flow-typed signature: a36f060877e62b3caf807efe7db6aa1a
|
|
2
|
+
// flow-typed version: 7f8b059d5f/react-router-dom_v4.x.x/flow_>=v0.38.x
|
|
3
|
+
|
|
4
|
+
declare module 'react-router-dom' {
|
|
5
|
+
declare export class BrowserRouter extends React$Component {
|
|
6
|
+
props: {
|
|
7
|
+
basename?: string,
|
|
8
|
+
forceRefresh?: boolean,
|
|
9
|
+
getUserConfirmation?: GetUserConfirmation,
|
|
10
|
+
keyLength?: number,
|
|
11
|
+
children?: React$Element<*>,
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare export class HashRouter extends React$Component {
|
|
16
|
+
props: {
|
|
17
|
+
basename?: string,
|
|
18
|
+
getUserConfirmation?: GetUserConfirmation,
|
|
19
|
+
hashType?: 'slash' | 'noslash' | 'hashbang',
|
|
20
|
+
children?: React$Element<*>,
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare export class Link extends React$Component {
|
|
25
|
+
props: {
|
|
26
|
+
to: string | LocationShape,
|
|
27
|
+
replace?: boolean,
|
|
28
|
+
children?: React$Element<*>,
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
declare export class NavLink extends React$Component {
|
|
33
|
+
props: {
|
|
34
|
+
to: string | LocationShape,
|
|
35
|
+
activeClassName?: string,
|
|
36
|
+
className?: string,
|
|
37
|
+
activeStyle?: Object,
|
|
38
|
+
style?: Object,
|
|
39
|
+
isActive?: (match: Match, location: Location) => boolean,
|
|
40
|
+
children?: React$Element<*>,
|
|
41
|
+
exact?: bool,
|
|
42
|
+
strict?: bool,
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// NOTE: Below are duplicated from react-router. If updating these, please
|
|
47
|
+
// update the react-router and react-router-native types as well.
|
|
48
|
+
declare export type Location = {
|
|
49
|
+
pathname: string,
|
|
50
|
+
search: string,
|
|
51
|
+
hash: string,
|
|
52
|
+
state?: any,
|
|
53
|
+
key?: string,
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
declare export type LocationShape = {
|
|
57
|
+
pathname?: string,
|
|
58
|
+
search?: string,
|
|
59
|
+
hash?: string,
|
|
60
|
+
state?: any,
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
declare export type HistoryAction = 'PUSH' | 'REPLACE' | 'POP'
|
|
64
|
+
|
|
65
|
+
declare export type RouterHistory = {
|
|
66
|
+
length: number,
|
|
67
|
+
location: Location,
|
|
68
|
+
action: HistoryAction,
|
|
69
|
+
listen(callback: (location: Location, action: HistoryAction) => void): () => void,
|
|
70
|
+
push(path: string | LocationShape, state?: any): void,
|
|
71
|
+
replace(path: string | LocationShape, state?: any): void,
|
|
72
|
+
go(n: number): void,
|
|
73
|
+
goBack(): void,
|
|
74
|
+
goForward(): void,
|
|
75
|
+
canGo?: (n: number) => bool,
|
|
76
|
+
block(callback: (location: Location, action: HistoryAction) => boolean): void,
|
|
77
|
+
// createMemoryHistory
|
|
78
|
+
index?: number,
|
|
79
|
+
entries?: Array<Location>,
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
declare export type Match = {
|
|
83
|
+
params: Object,
|
|
84
|
+
isExact: boolean,
|
|
85
|
+
path: string,
|
|
86
|
+
url: string,
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
declare export type ContextRouter = RouterHistory & {
|
|
90
|
+
match: Match,
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
declare export type GetUserConfirmation =
|
|
94
|
+
(message: string, callback: (confirmed: boolean) => void) => void
|
|
95
|
+
|
|
96
|
+
declare type StaticRouterContext = {
|
|
97
|
+
url?: string,
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
declare export class StaticRouter extends React$Component {
|
|
101
|
+
props: {
|
|
102
|
+
basename?: string,
|
|
103
|
+
location?: string | Location,
|
|
104
|
+
context: StaticRouterContext,
|
|
105
|
+
children?: React$Element<*>,
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
declare export class MemoryRouter extends React$Component {
|
|
110
|
+
props: {
|
|
111
|
+
initialEntries?: Array<LocationShape | string>,
|
|
112
|
+
initialIndex?: number,
|
|
113
|
+
getUserConfirmation?: GetUserConfirmation,
|
|
114
|
+
keyLength?: number,
|
|
115
|
+
children?: React$Element<*>,
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare export class Router extends React$Component {
|
|
120
|
+
props: {
|
|
121
|
+
history: RouterHistory,
|
|
122
|
+
children?: React$Element<*>,
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
declare export class Prompt extends React$Component {
|
|
127
|
+
props: {
|
|
128
|
+
message: string | (location: Location) => string | true,
|
|
129
|
+
when?: boolean,
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
declare export class Redirect extends React$Component {
|
|
134
|
+
props: {
|
|
135
|
+
to: string | LocationShape,
|
|
136
|
+
push?: boolean,
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
declare export class Route extends React$Component {
|
|
141
|
+
props: {
|
|
142
|
+
component?: ReactClass<*>,
|
|
143
|
+
render?: (router: ContextRouter) => React$Element<*>,
|
|
144
|
+
children?: (router: ContextRouter) => React$Element<*>,
|
|
145
|
+
path?: string,
|
|
146
|
+
exact?: bool,
|
|
147
|
+
strict?: bool,
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
declare export class Switch extends React$Component {
|
|
152
|
+
props: {
|
|
153
|
+
children?: Array<React$Element<*>>,
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare type FunctionComponent<P> = (props: P) => ?React$Element<any>;
|
|
158
|
+
declare type ClassComponent<D, P, S> = Class<React$Component<D, P, S>>;
|
|
159
|
+
declare export function withRouter<P, S>(Component: ClassComponent<void, P, S> | FunctionComponent<P>): ClassComponent<void, $Diff<P, ContextRouter>, S>;
|
|
160
|
+
|
|
161
|
+
declare type MatchPathOptions = {
|
|
162
|
+
exact?: boolean,
|
|
163
|
+
strict?: boolean,
|
|
164
|
+
}
|
|
165
|
+
declare export function matchPath(pathname: string, path: string, options?: MatchPathOptions): null | Match
|
|
166
|
+
}
|
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
// flow-typed signature: 945adfdfdd4cedc5e74adb1d07e7f949
|
|
2
|
+
// flow-typed version: <<STUB>>/reactstrap_v4.5.0/flow_v0.44.0
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* This is an autogenerated libdef stub for:
|
|
6
|
+
*
|
|
7
|
+
* 'reactstrap'
|
|
8
|
+
*
|
|
9
|
+
* Fill this stub out by replacing all the `any` types.
|
|
10
|
+
*
|
|
11
|
+
* Once filled out, we encourage you to share your work with the
|
|
12
|
+
* community by sending a pull request to:
|
|
13
|
+
* https://github.com/flowtype/flow-typed
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
declare module 'reactstrap' {
|
|
17
|
+
declare module.exports: any;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* We include stubs for each file inside this npm package in case you need to
|
|
22
|
+
* require those files directly. Feel free to delete any files that aren't
|
|
23
|
+
* needed.
|
|
24
|
+
*/
|
|
25
|
+
declare module 'reactstrap/dist/reactstrap.es' {
|
|
26
|
+
declare module.exports: any;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare module 'reactstrap/dist/reactstrap.min' {
|
|
30
|
+
declare module.exports: any;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare module 'reactstrap/lib/Alert' {
|
|
34
|
+
declare module.exports: any;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
declare module 'reactstrap/lib/Badge' {
|
|
38
|
+
declare module.exports: any;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare module 'reactstrap/lib/Breadcrumb' {
|
|
42
|
+
declare module.exports: any;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
declare module 'reactstrap/lib/BreadcrumbItem' {
|
|
46
|
+
declare module.exports: any;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare module 'reactstrap/lib/Button' {
|
|
50
|
+
declare module.exports: any;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
declare module 'reactstrap/lib/ButtonDropdown' {
|
|
54
|
+
declare module.exports: any;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
declare module 'reactstrap/lib/ButtonGroup' {
|
|
58
|
+
declare module.exports: any;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
declare module 'reactstrap/lib/ButtonToolbar' {
|
|
62
|
+
declare module.exports: any;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
declare module 'reactstrap/lib/Card' {
|
|
66
|
+
declare module.exports: any;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
declare module 'reactstrap/lib/CardBlock' {
|
|
70
|
+
declare module.exports: any;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
declare module 'reactstrap/lib/CardColumns' {
|
|
74
|
+
declare module.exports: any;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
declare module 'reactstrap/lib/CardDeck' {
|
|
78
|
+
declare module.exports: any;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare module 'reactstrap/lib/CardFooter' {
|
|
82
|
+
declare module.exports: any;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
declare module 'reactstrap/lib/CardGroup' {
|
|
86
|
+
declare module.exports: any;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
declare module 'reactstrap/lib/CardHeader' {
|
|
90
|
+
declare module.exports: any;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
declare module 'reactstrap/lib/CardImg' {
|
|
94
|
+
declare module.exports: any;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
declare module 'reactstrap/lib/CardImgOverlay' {
|
|
98
|
+
declare module.exports: any;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
declare module 'reactstrap/lib/CardLink' {
|
|
102
|
+
declare module.exports: any;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
declare module 'reactstrap/lib/CardSubtitle' {
|
|
106
|
+
declare module.exports: any;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
declare module 'reactstrap/lib/CardText' {
|
|
110
|
+
declare module.exports: any;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
declare module 'reactstrap/lib/CardTitle' {
|
|
114
|
+
declare module.exports: any;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
declare module 'reactstrap/lib/Col' {
|
|
118
|
+
declare module.exports: any;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
declare module 'reactstrap/lib/Collapse' {
|
|
122
|
+
declare module.exports: any;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
declare module 'reactstrap/lib/Container' {
|
|
126
|
+
declare module.exports: any;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
declare module 'reactstrap/lib/Dropdown' {
|
|
130
|
+
declare module.exports: any;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
declare module 'reactstrap/lib/DropdownItem' {
|
|
134
|
+
declare module.exports: any;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
declare module 'reactstrap/lib/DropdownMenu' {
|
|
138
|
+
declare module.exports: any;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
declare module 'reactstrap/lib/DropdownToggle' {
|
|
142
|
+
declare module.exports: any;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
declare module 'reactstrap/lib/Fade' {
|
|
146
|
+
declare module.exports: any;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
declare module 'reactstrap/lib/Form' {
|
|
150
|
+
declare module.exports: any;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
declare module 'reactstrap/lib/FormFeedback' {
|
|
154
|
+
declare module.exports: any;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare module 'reactstrap/lib/FormGroup' {
|
|
158
|
+
declare module.exports: any;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
declare module 'reactstrap/lib/FormText' {
|
|
162
|
+
declare module.exports: any;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
declare module 'reactstrap/lib/index' {
|
|
166
|
+
declare module.exports: any;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
declare module 'reactstrap/lib/Input' {
|
|
170
|
+
declare module.exports: any;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
declare module 'reactstrap/lib/InputGroup' {
|
|
174
|
+
declare module.exports: any;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
declare module 'reactstrap/lib/InputGroupAddon' {
|
|
178
|
+
declare module.exports: any;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
declare module 'reactstrap/lib/InputGroupButton' {
|
|
182
|
+
declare module.exports: any;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
declare module 'reactstrap/lib/Jumbotron' {
|
|
186
|
+
declare module.exports: any;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare module 'reactstrap/lib/Label' {
|
|
190
|
+
declare module.exports: any;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
declare module 'reactstrap/lib/ListGroup' {
|
|
194
|
+
declare module.exports: any;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
declare module 'reactstrap/lib/ListGroupItem' {
|
|
198
|
+
declare module.exports: any;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
declare module 'reactstrap/lib/ListGroupItemHeading' {
|
|
202
|
+
declare module.exports: any;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
declare module 'reactstrap/lib/ListGroupItemText' {
|
|
206
|
+
declare module.exports: any;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare module 'reactstrap/lib/Media' {
|
|
210
|
+
declare module.exports: any;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
declare module 'reactstrap/lib/Modal' {
|
|
214
|
+
declare module.exports: any;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
declare module 'reactstrap/lib/ModalBody' {
|
|
218
|
+
declare module.exports: any;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
declare module 'reactstrap/lib/ModalFooter' {
|
|
222
|
+
declare module.exports: any;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
declare module 'reactstrap/lib/ModalHeader' {
|
|
226
|
+
declare module.exports: any;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare module 'reactstrap/lib/Nav' {
|
|
230
|
+
declare module.exports: any;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
declare module 'reactstrap/lib/Navbar' {
|
|
234
|
+
declare module.exports: any;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
declare module 'reactstrap/lib/NavbarBrand' {
|
|
238
|
+
declare module.exports: any;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
declare module 'reactstrap/lib/NavbarToggler' {
|
|
242
|
+
declare module.exports: any;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
declare module 'reactstrap/lib/NavDropdown' {
|
|
246
|
+
declare module.exports: any;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
declare module 'reactstrap/lib/NavItem' {
|
|
250
|
+
declare module.exports: any;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
declare module 'reactstrap/lib/NavLink' {
|
|
254
|
+
declare module.exports: any;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
declare module 'reactstrap/lib/Pagination' {
|
|
258
|
+
declare module.exports: any;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
declare module 'reactstrap/lib/PaginationItem' {
|
|
262
|
+
declare module.exports: any;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
declare module 'reactstrap/lib/PaginationLink' {
|
|
266
|
+
declare module.exports: any;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
declare module 'reactstrap/lib/Popover' {
|
|
270
|
+
declare module.exports: any;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
declare module 'reactstrap/lib/PopoverContent' {
|
|
274
|
+
declare module.exports: any;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
declare module 'reactstrap/lib/PopoverTitle' {
|
|
278
|
+
declare module.exports: any;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
declare module 'reactstrap/lib/Progress' {
|
|
282
|
+
declare module.exports: any;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
declare module 'reactstrap/lib/Row' {
|
|
286
|
+
declare module.exports: any;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
declare module 'reactstrap/lib/TabContent' {
|
|
290
|
+
declare module.exports: any;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
declare module 'reactstrap/lib/Table' {
|
|
294
|
+
declare module.exports: any;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
declare module 'reactstrap/lib/TabPane' {
|
|
298
|
+
declare module.exports: any;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
declare module 'reactstrap/lib/TetherContent' {
|
|
302
|
+
declare module.exports: any;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
declare module 'reactstrap/lib/Tooltip' {
|
|
306
|
+
declare module.exports: any;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
declare module 'reactstrap/lib/Uncontrolled' {
|
|
310
|
+
declare module.exports: any;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
declare module 'reactstrap/lib/utils' {
|
|
314
|
+
declare module.exports: any;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
// Filename aliases
|
|
318
|
+
declare module 'reactstrap/dist/reactstrap.es.js' {
|
|
319
|
+
declare module.exports: $Exports<'reactstrap/dist/reactstrap.es'>;
|
|
320
|
+
}
|
|
321
|
+
declare module 'reactstrap/dist/reactstrap.min.js' {
|
|
322
|
+
declare module.exports: $Exports<'reactstrap/dist/reactstrap.min'>;
|
|
323
|
+
}
|
|
324
|
+
declare module 'reactstrap/lib/Alert.js' {
|
|
325
|
+
declare module.exports: $Exports<'reactstrap/lib/Alert'>;
|
|
326
|
+
}
|
|
327
|
+
declare module 'reactstrap/lib/Badge.js' {
|
|
328
|
+
declare module.exports: $Exports<'reactstrap/lib/Badge'>;
|
|
329
|
+
}
|
|
330
|
+
declare module 'reactstrap/lib/Breadcrumb.js' {
|
|
331
|
+
declare module.exports: $Exports<'reactstrap/lib/Breadcrumb'>;
|
|
332
|
+
}
|
|
333
|
+
declare module 'reactstrap/lib/BreadcrumbItem.js' {
|
|
334
|
+
declare module.exports: $Exports<'reactstrap/lib/BreadcrumbItem'>;
|
|
335
|
+
}
|
|
336
|
+
declare module 'reactstrap/lib/Button.js' {
|
|
337
|
+
declare module.exports: $Exports<'reactstrap/lib/Button'>;
|
|
338
|
+
}
|
|
339
|
+
declare module 'reactstrap/lib/ButtonDropdown.js' {
|
|
340
|
+
declare module.exports: $Exports<'reactstrap/lib/ButtonDropdown'>;
|
|
341
|
+
}
|
|
342
|
+
declare module 'reactstrap/lib/ButtonGroup.js' {
|
|
343
|
+
declare module.exports: $Exports<'reactstrap/lib/ButtonGroup'>;
|
|
344
|
+
}
|
|
345
|
+
declare module 'reactstrap/lib/ButtonToolbar.js' {
|
|
346
|
+
declare module.exports: $Exports<'reactstrap/lib/ButtonToolbar'>;
|
|
347
|
+
}
|
|
348
|
+
declare module 'reactstrap/lib/Card.js' {
|
|
349
|
+
declare module.exports: $Exports<'reactstrap/lib/Card'>;
|
|
350
|
+
}
|
|
351
|
+
declare module 'reactstrap/lib/CardBlock.js' {
|
|
352
|
+
declare module.exports: $Exports<'reactstrap/lib/CardBlock'>;
|
|
353
|
+
}
|
|
354
|
+
declare module 'reactstrap/lib/CardColumns.js' {
|
|
355
|
+
declare module.exports: $Exports<'reactstrap/lib/CardColumns'>;
|
|
356
|
+
}
|
|
357
|
+
declare module 'reactstrap/lib/CardDeck.js' {
|
|
358
|
+
declare module.exports: $Exports<'reactstrap/lib/CardDeck'>;
|
|
359
|
+
}
|
|
360
|
+
declare module 'reactstrap/lib/CardFooter.js' {
|
|
361
|
+
declare module.exports: $Exports<'reactstrap/lib/CardFooter'>;
|
|
362
|
+
}
|
|
363
|
+
declare module 'reactstrap/lib/CardGroup.js' {
|
|
364
|
+
declare module.exports: $Exports<'reactstrap/lib/CardGroup'>;
|
|
365
|
+
}
|
|
366
|
+
declare module 'reactstrap/lib/CardHeader.js' {
|
|
367
|
+
declare module.exports: $Exports<'reactstrap/lib/CardHeader'>;
|
|
368
|
+
}
|
|
369
|
+
declare module 'reactstrap/lib/CardImg.js' {
|
|
370
|
+
declare module.exports: $Exports<'reactstrap/lib/CardImg'>;
|
|
371
|
+
}
|
|
372
|
+
declare module 'reactstrap/lib/CardImgOverlay.js' {
|
|
373
|
+
declare module.exports: $Exports<'reactstrap/lib/CardImgOverlay'>;
|
|
374
|
+
}
|
|
375
|
+
declare module 'reactstrap/lib/CardLink.js' {
|
|
376
|
+
declare module.exports: $Exports<'reactstrap/lib/CardLink'>;
|
|
377
|
+
}
|
|
378
|
+
declare module 'reactstrap/lib/CardSubtitle.js' {
|
|
379
|
+
declare module.exports: $Exports<'reactstrap/lib/CardSubtitle'>;
|
|
380
|
+
}
|
|
381
|
+
declare module 'reactstrap/lib/CardText.js' {
|
|
382
|
+
declare module.exports: $Exports<'reactstrap/lib/CardText'>;
|
|
383
|
+
}
|
|
384
|
+
declare module 'reactstrap/lib/CardTitle.js' {
|
|
385
|
+
declare module.exports: $Exports<'reactstrap/lib/CardTitle'>;
|
|
386
|
+
}
|
|
387
|
+
declare module 'reactstrap/lib/Col.js' {
|
|
388
|
+
declare module.exports: $Exports<'reactstrap/lib/Col'>;
|
|
389
|
+
}
|
|
390
|
+
declare module 'reactstrap/lib/Collapse.js' {
|
|
391
|
+
declare module.exports: $Exports<'reactstrap/lib/Collapse'>;
|
|
392
|
+
}
|
|
393
|
+
declare module 'reactstrap/lib/Container.js' {
|
|
394
|
+
declare module.exports: $Exports<'reactstrap/lib/Container'>;
|
|
395
|
+
}
|
|
396
|
+
declare module 'reactstrap/lib/Dropdown.js' {
|
|
397
|
+
declare module.exports: $Exports<'reactstrap/lib/Dropdown'>;
|
|
398
|
+
}
|
|
399
|
+
declare module 'reactstrap/lib/DropdownItem.js' {
|
|
400
|
+
declare module.exports: $Exports<'reactstrap/lib/DropdownItem'>;
|
|
401
|
+
}
|
|
402
|
+
declare module 'reactstrap/lib/DropdownMenu.js' {
|
|
403
|
+
declare module.exports: $Exports<'reactstrap/lib/DropdownMenu'>;
|
|
404
|
+
}
|
|
405
|
+
declare module 'reactstrap/lib/DropdownToggle.js' {
|
|
406
|
+
declare module.exports: $Exports<'reactstrap/lib/DropdownToggle'>;
|
|
407
|
+
}
|
|
408
|
+
declare module 'reactstrap/lib/Fade.js' {
|
|
409
|
+
declare module.exports: $Exports<'reactstrap/lib/Fade'>;
|
|
410
|
+
}
|
|
411
|
+
declare module 'reactstrap/lib/Form.js' {
|
|
412
|
+
declare module.exports: $Exports<'reactstrap/lib/Form'>;
|
|
413
|
+
}
|
|
414
|
+
declare module 'reactstrap/lib/FormFeedback.js' {
|
|
415
|
+
declare module.exports: $Exports<'reactstrap/lib/FormFeedback'>;
|
|
416
|
+
}
|
|
417
|
+
declare module 'reactstrap/lib/FormGroup.js' {
|
|
418
|
+
declare module.exports: $Exports<'reactstrap/lib/FormGroup'>;
|
|
419
|
+
}
|
|
420
|
+
declare module 'reactstrap/lib/FormText.js' {
|
|
421
|
+
declare module.exports: $Exports<'reactstrap/lib/FormText'>;
|
|
422
|
+
}
|
|
423
|
+
declare module 'reactstrap/lib/index.js' {
|
|
424
|
+
declare module.exports: $Exports<'reactstrap/lib/index'>;
|
|
425
|
+
}
|
|
426
|
+
declare module 'reactstrap/lib/Input.js' {
|
|
427
|
+
declare module.exports: $Exports<'reactstrap/lib/Input'>;
|
|
428
|
+
}
|
|
429
|
+
declare module 'reactstrap/lib/InputGroup.js' {
|
|
430
|
+
declare module.exports: $Exports<'reactstrap/lib/InputGroup'>;
|
|
431
|
+
}
|
|
432
|
+
declare module 'reactstrap/lib/InputGroupAddon.js' {
|
|
433
|
+
declare module.exports: $Exports<'reactstrap/lib/InputGroupAddon'>;
|
|
434
|
+
}
|
|
435
|
+
declare module 'reactstrap/lib/InputGroupButton.js' {
|
|
436
|
+
declare module.exports: $Exports<'reactstrap/lib/InputGroupButton'>;
|
|
437
|
+
}
|
|
438
|
+
declare module 'reactstrap/lib/Jumbotron.js' {
|
|
439
|
+
declare module.exports: $Exports<'reactstrap/lib/Jumbotron'>;
|
|
440
|
+
}
|
|
441
|
+
declare module 'reactstrap/lib/Label.js' {
|
|
442
|
+
declare module.exports: $Exports<'reactstrap/lib/Label'>;
|
|
443
|
+
}
|
|
444
|
+
declare module 'reactstrap/lib/ListGroup.js' {
|
|
445
|
+
declare module.exports: $Exports<'reactstrap/lib/ListGroup'>;
|
|
446
|
+
}
|
|
447
|
+
declare module 'reactstrap/lib/ListGroupItem.js' {
|
|
448
|
+
declare module.exports: $Exports<'reactstrap/lib/ListGroupItem'>;
|
|
449
|
+
}
|
|
450
|
+
declare module 'reactstrap/lib/ListGroupItemHeading.js' {
|
|
451
|
+
declare module.exports: $Exports<'reactstrap/lib/ListGroupItemHeading'>;
|
|
452
|
+
}
|
|
453
|
+
declare module 'reactstrap/lib/ListGroupItemText.js' {
|
|
454
|
+
declare module.exports: $Exports<'reactstrap/lib/ListGroupItemText'>;
|
|
455
|
+
}
|
|
456
|
+
declare module 'reactstrap/lib/Media.js' {
|
|
457
|
+
declare module.exports: $Exports<'reactstrap/lib/Media'>;
|
|
458
|
+
}
|
|
459
|
+
declare module 'reactstrap/lib/Modal.js' {
|
|
460
|
+
declare module.exports: $Exports<'reactstrap/lib/Modal'>;
|
|
461
|
+
}
|
|
462
|
+
declare module 'reactstrap/lib/ModalBody.js' {
|
|
463
|
+
declare module.exports: $Exports<'reactstrap/lib/ModalBody'>;
|
|
464
|
+
}
|
|
465
|
+
declare module 'reactstrap/lib/ModalFooter.js' {
|
|
466
|
+
declare module.exports: $Exports<'reactstrap/lib/ModalFooter'>;
|
|
467
|
+
}
|
|
468
|
+
declare module 'reactstrap/lib/ModalHeader.js' {
|
|
469
|
+
declare module.exports: $Exports<'reactstrap/lib/ModalHeader'>;
|
|
470
|
+
}
|
|
471
|
+
declare module 'reactstrap/lib/Nav.js' {
|
|
472
|
+
declare module.exports: $Exports<'reactstrap/lib/Nav'>;
|
|
473
|
+
}
|
|
474
|
+
declare module 'reactstrap/lib/Navbar.js' {
|
|
475
|
+
declare module.exports: $Exports<'reactstrap/lib/Navbar'>;
|
|
476
|
+
}
|
|
477
|
+
declare module 'reactstrap/lib/NavbarBrand.js' {
|
|
478
|
+
declare module.exports: $Exports<'reactstrap/lib/NavbarBrand'>;
|
|
479
|
+
}
|
|
480
|
+
declare module 'reactstrap/lib/NavbarToggler.js' {
|
|
481
|
+
declare module.exports: $Exports<'reactstrap/lib/NavbarToggler'>;
|
|
482
|
+
}
|
|
483
|
+
declare module 'reactstrap/lib/NavDropdown.js' {
|
|
484
|
+
declare module.exports: $Exports<'reactstrap/lib/NavDropdown'>;
|
|
485
|
+
}
|
|
486
|
+
declare module 'reactstrap/lib/NavItem.js' {
|
|
487
|
+
declare module.exports: $Exports<'reactstrap/lib/NavItem'>;
|
|
488
|
+
}
|
|
489
|
+
declare module 'reactstrap/lib/NavLink.js' {
|
|
490
|
+
declare module.exports: $Exports<'reactstrap/lib/NavLink'>;
|
|
491
|
+
}
|
|
492
|
+
declare module 'reactstrap/lib/Pagination.js' {
|
|
493
|
+
declare module.exports: $Exports<'reactstrap/lib/Pagination'>;
|
|
494
|
+
}
|
|
495
|
+
declare module 'reactstrap/lib/PaginationItem.js' {
|
|
496
|
+
declare module.exports: $Exports<'reactstrap/lib/PaginationItem'>;
|
|
497
|
+
}
|
|
498
|
+
declare module 'reactstrap/lib/PaginationLink.js' {
|
|
499
|
+
declare module.exports: $Exports<'reactstrap/lib/PaginationLink'>;
|
|
500
|
+
}
|
|
501
|
+
declare module 'reactstrap/lib/Popover.js' {
|
|
502
|
+
declare module.exports: $Exports<'reactstrap/lib/Popover'>;
|
|
503
|
+
}
|
|
504
|
+
declare module 'reactstrap/lib/PopoverContent.js' {
|
|
505
|
+
declare module.exports: $Exports<'reactstrap/lib/PopoverContent'>;
|
|
506
|
+
}
|
|
507
|
+
declare module 'reactstrap/lib/PopoverTitle.js' {
|
|
508
|
+
declare module.exports: $Exports<'reactstrap/lib/PopoverTitle'>;
|
|
509
|
+
}
|
|
510
|
+
declare module 'reactstrap/lib/Progress.js' {
|
|
511
|
+
declare module.exports: $Exports<'reactstrap/lib/Progress'>;
|
|
512
|
+
}
|
|
513
|
+
declare module 'reactstrap/lib/Row.js' {
|
|
514
|
+
declare module.exports: $Exports<'reactstrap/lib/Row'>;
|
|
515
|
+
}
|
|
516
|
+
declare module 'reactstrap/lib/TabContent.js' {
|
|
517
|
+
declare module.exports: $Exports<'reactstrap/lib/TabContent'>;
|
|
518
|
+
}
|
|
519
|
+
declare module 'reactstrap/lib/Table.js' {
|
|
520
|
+
declare module.exports: $Exports<'reactstrap/lib/Table'>;
|
|
521
|
+
}
|
|
522
|
+
declare module 'reactstrap/lib/TabPane.js' {
|
|
523
|
+
declare module.exports: $Exports<'reactstrap/lib/TabPane'>;
|
|
524
|
+
}
|
|
525
|
+
declare module 'reactstrap/lib/TetherContent.js' {
|
|
526
|
+
declare module.exports: $Exports<'reactstrap/lib/TetherContent'>;
|
|
527
|
+
}
|
|
528
|
+
declare module 'reactstrap/lib/Tooltip.js' {
|
|
529
|
+
declare module.exports: $Exports<'reactstrap/lib/Tooltip'>;
|
|
530
|
+
}
|
|
531
|
+
declare module 'reactstrap/lib/Uncontrolled.js' {
|
|
532
|
+
declare module.exports: $Exports<'reactstrap/lib/Uncontrolled'>;
|
|
533
|
+
}
|
|
534
|
+
declare module 'reactstrap/lib/utils.js' {
|
|
535
|
+
declare module.exports: $Exports<'reactstrap/lib/utils'>;
|
|
536
|
+
}
|