@authing/native-js-ui-components 4.3.9 → 4.4.0-alpha.0

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/scripts/start.js DELETED
@@ -1,166 +0,0 @@
1
- 'use strict';
2
-
3
- // Do this as the first thing so that any code reading it knows the right env.
4
- process.env.BABEL_ENV = 'development';
5
- process.env.NODE_ENV = 'development';
6
-
7
- // Makes the script crash on unhandled rejections instead of silently
8
- // ignoring them. In the future, promise rejections that are not handled will
9
- // terminate the Node.js process with a non-zero exit code.
10
- process.on('unhandledRejection', err => {
11
- throw err;
12
- });
13
-
14
- // Ensure environment variables are read.
15
- require('../config/env');
16
-
17
-
18
- const fs = require('fs');
19
- const chalk = require('react-dev-utils/chalk');
20
- const webpack = require('webpack');
21
- const WebpackDevServer = require('webpack-dev-server');
22
- const clearConsole = require('react-dev-utils/clearConsole');
23
- const checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
24
- const {
25
- choosePort,
26
- createCompiler,
27
- prepareProxy,
28
- prepareUrls,
29
- } = require('react-dev-utils/WebpackDevServerUtils');
30
- const openBrowser = require('react-dev-utils/openBrowser');
31
- const semver = require('semver');
32
- const paths = require('../config/paths');
33
- const configFactory = require('../config/webpack.config');
34
- const createDevServerConfig = require('../config/webpackDevServer.config');
35
- const getClientEnvironment = require('../config/env');
36
- const react = require(require.resolve('react', { paths: [paths.appPath] }));
37
-
38
- const env = getClientEnvironment(paths.publicUrlOrPath.slice(0, -1));
39
- const useYarn = fs.existsSync(paths.yarnLockFile);
40
- const isInteractive = process.stdout.isTTY;
41
-
42
- // Warn and crash if required files are missing
43
- if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
44
- process.exit(1);
45
- }
46
-
47
- // Tools like Cloud9 rely on this.
48
- const DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3000;
49
- const HOST = process.env.HOST || '0.0.0.0';
50
-
51
- if (process.env.HOST) {
52
- console.log(
53
- chalk.cyan(
54
- `Attempting to bind to HOST environment variable: ${chalk.yellow(
55
- chalk.bold(process.env.HOST)
56
- )}`
57
- )
58
- );
59
- console.log(
60
- `If this was unintentional, check that you haven't mistakenly set it in your shell.`
61
- );
62
- console.log(
63
- `Learn more here: ${chalk.yellow('https://cra.link/advanced-config')}`
64
- );
65
- console.log();
66
- }
67
-
68
- // We require that you explicitly set browsers and do not fall back to
69
- // browserslist defaults.
70
- const { checkBrowsers } = require('react-dev-utils/browsersHelper');
71
- checkBrowsers(paths.appPath, isInteractive)
72
- .then(() => {
73
- // We attempt to use the default port but if it is busy, we offer the user to
74
- // run on a different port. `choosePort()` Promise resolves to the next free port.
75
- return choosePort(HOST, DEFAULT_PORT);
76
- })
77
- .then(port => {
78
- if (port == null) {
79
- // We have not found a port.
80
- return;
81
- }
82
-
83
- const config = configFactory('development');
84
- const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
85
- const appName = require(paths.appPackageJson).name;
86
-
87
- const useTypeScript = fs.existsSync(paths.appTsConfig);
88
- const tscCompileOnError = process.env.TSC_COMPILE_ON_ERROR === 'true';
89
- const urls = prepareUrls(
90
- protocol,
91
- HOST,
92
- port,
93
- paths.publicUrlOrPath.slice(0, -1)
94
- );
95
- const devSocket = {
96
- warnings: warnings =>
97
- devServer.sockWrite(devServer.sockets, 'warnings', warnings),
98
- errors: errors =>
99
- devServer.sockWrite(devServer.sockets, 'errors', errors),
100
- };
101
- // Create a webpack compiler that is configured with custom messages.
102
- const compiler = createCompiler({
103
- appName,
104
- config,
105
- devSocket,
106
- urls,
107
- useYarn,
108
- useTypeScript,
109
- tscCompileOnError,
110
- webpack,
111
- });
112
- // Load proxy config
113
- const proxySetting = require(paths.appPackageJson).proxy;
114
- const proxyConfig = prepareProxy(
115
- proxySetting,
116
- paths.appPublic,
117
- paths.publicUrlOrPath
118
- );
119
- // Serve webpack assets generated by the compiler over a web server.
120
- const serverConfig = createDevServerConfig(
121
- proxyConfig,
122
- urls.lanUrlForConfig
123
- );
124
- const devServer = new WebpackDevServer(compiler, serverConfig);
125
- // Launch WebpackDevServer.
126
- devServer.listen(port, HOST, err => {
127
- if (err) {
128
- return console.log(err);
129
- }
130
- if (isInteractive) {
131
- clearConsole();
132
- }
133
-
134
- if (env.raw.FAST_REFRESH && semver.lt(react.version, '16.10.0')) {
135
- console.log(
136
- chalk.yellow(
137
- `Fast Refresh requires React 16.10 or higher. You are using React ${react.version}.`
138
- )
139
- );
140
- }
141
-
142
- console.log(chalk.cyan('Starting the development server...\n'));
143
- openBrowser(urls.localUrlForBrowser);
144
- });
145
-
146
- ['SIGINT', 'SIGTERM'].forEach(function (sig) {
147
- process.on(sig, function () {
148
- devServer.close();
149
- process.exit();
150
- });
151
- });
152
-
153
- if (process.env.CI !== 'true') {
154
- // Gracefully exit when stdin ends
155
- process.stdin.on('end', function () {
156
- devServer.close();
157
- process.exit();
158
- });
159
- }
160
- })
161
- .catch(err => {
162
- if (err && err.message) {
163
- console.log(err.message);
164
- }
165
- process.exit(1);
166
- });
package/scripts/test.js DELETED
@@ -1,53 +0,0 @@
1
- 'use strict';
2
-
3
- // Do this as the first thing so that any code reading it knows the right env.
4
- process.env.BABEL_ENV = 'test';
5
- process.env.NODE_ENV = 'test';
6
- process.env.PUBLIC_URL = '';
7
-
8
- // Makes the script crash on unhandled rejections instead of silently
9
- // ignoring them. In the future, promise rejections that are not handled will
10
- // terminate the Node.js process with a non-zero exit code.
11
- process.on('unhandledRejection', err => {
12
- throw err;
13
- });
14
-
15
- // Ensure environment variables are read.
16
- require('../config/env');
17
-
18
-
19
- const jest = require('jest');
20
- const execSync = require('child_process').execSync;
21
- let argv = process.argv.slice(2);
22
-
23
- function isInGitRepository() {
24
- try {
25
- execSync('git rev-parse --is-inside-work-tree', { stdio: 'ignore' });
26
- return true;
27
- } catch (e) {
28
- return false;
29
- }
30
- }
31
-
32
- function isInMercurialRepository() {
33
- try {
34
- execSync('hg --cwd . root', { stdio: 'ignore' });
35
- return true;
36
- } catch (e) {
37
- return false;
38
- }
39
- }
40
-
41
- // Watch unless on CI or explicitly running all tests
42
- if (
43
- !process.env.CI &&
44
- argv.indexOf('--watchAll') === -1 &&
45
- argv.indexOf('--watchAll=false') === -1
46
- ) {
47
- // https://github.com/facebook/create-react-app/issues/5210
48
- const hasSourceControl = isInGitRepository() || isInMercurialRepository();
49
- argv.push(hasSourceControl ? '--watch' : '--watchAll');
50
- }
51
-
52
-
53
- jest.run(argv);
package/src/App.css DELETED
@@ -1,38 +0,0 @@
1
- .App {
2
- text-align: center;
3
- }
4
-
5
- .App-logo {
6
- height: 40vmin;
7
- pointer-events: none;
8
- }
9
-
10
- @media (prefers-reduced-motion: no-preference) {
11
- .App-logo {
12
- animation: App-logo-spin infinite 20s linear;
13
- }
14
- }
15
-
16
- .App-header {
17
- background-color: #282c34;
18
- min-height: 100vh;
19
- display: flex;
20
- flex-direction: column;
21
- align-items: center;
22
- justify-content: center;
23
- font-size: calc(10px + 2vmin);
24
- color: white;
25
- }
26
-
27
- .App-link {
28
- color: #61dafb;
29
- }
30
-
31
- @keyframes App-logo-spin {
32
- from {
33
- transform: rotate(0deg);
34
- }
35
- to {
36
- transform: rotate(360deg);
37
- }
38
- }
package/src/App.test.tsx DELETED
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- import { render, screen } from '@testing-library/react';
3
- import App from './App';
4
-
5
- test('renders learn react link', () => {
6
- render(<App />);
7
- const linkElement = screen.getByText(/learn react/i);
8
- expect(linkElement).toBeInTheDocument();
9
- });
package/src/App.tsx DELETED
@@ -1,34 +0,0 @@
1
- import React, { useEffect } from "react";
2
- import "./App.css";
3
- import { Guard, GuardEventsCamelToKebabMapping, GuardMode } from "./components";
4
-
5
- function App() {
6
- console.log(GuardEventsCamelToKebabMapping);
7
- useEffect(() => {
8
- const guard = new Guard("62cd66dc014378042b55154f", {
9
- target: ".App",
10
- mode: GuardMode.Modal,
11
- });
12
-
13
- // @ts-ignore
14
- window.guard = guard;
15
- guard.render("center", () => {
16
- console.log("mount");
17
- });
18
- guard.show();
19
-
20
- guard.on("load", (e: any) => {
21
- console.log("加载啊", e);
22
- });
23
-
24
- guard.on("close", () => {
25
- setTimeout(() => {
26
- guard.show();
27
- }, 2000);
28
- });
29
- }, []);
30
-
31
- return <div className="App"></div>;
32
- }
33
-
34
- export default App;
@@ -1,198 +0,0 @@
1
- import React from "react";
2
- import ReactDOM from "react-dom";
3
- import { Guard as ReactAuthingGuard } from "@authing/react-ui-components";
4
- import {
5
- GuardMode,
6
- GuardEvents,
7
- AuthenticationClient,
8
- GuardEventsKebabToCamelType,
9
- GuardEventsCamelToKebabMapping,
10
- GuardLocalConfig,
11
- GuardProps,
12
- } from "@authing/react-ui-components";
13
- import "@authing/react-ui-components/lib/index.min.css";
14
- // import { GuardComponentConfig, GuardLocalConfig } from "@authing/react-ui-components/components/Guard/config";
15
-
16
- export interface NativeGuardProps {
17
- appId?: string;
18
- config?: Partial<GuardLocalConfig>;
19
- tenantId?: string;
20
- authClient?: AuthenticationClient;
21
- }
22
-
23
- export interface NativeGuardConstructor {
24
- (
25
- appId?: string | NativeGuardProps,
26
- config?: Partial<GuardLocalConfig>,
27
- tenantId?: string,
28
- authClient?: AuthenticationClient
29
- ): void;
30
-
31
- (props: NativeGuardProps): void;
32
- }
33
-
34
- export type GuardEventListeners = {
35
- [key in keyof GuardEventsKebabToCamelType]: Exclude<Required<GuardEventsKebabToCamelType>[key], undefined>[];
36
- };
37
-
38
- export class Guard {
39
- public appId?: string;
40
- public config?: Partial<GuardLocalConfig>;
41
- public tenantId?: string;
42
- public authClient?: AuthenticationClient;
43
-
44
- public visible?: boolean;
45
- constructor(props?: NativeGuardProps);
46
- constructor(appId?: string, config?: Partial<GuardLocalConfig>, tenantId?: string, authClient?: AuthenticationClient);
47
-
48
- constructor(
49
- appIdOrProps?: string | NativeGuardProps,
50
- config?: Partial<GuardLocalConfig>,
51
- tenantId?: string,
52
- authClient?: AuthenticationClient
53
- ) {
54
- if (appIdOrProps && typeof appIdOrProps !== "string") {
55
- const { appId, config: configProps, tenantId: tenantIdProps, authClient: authClientProps } = appIdOrProps;
56
- this.appId = appId;
57
- this.config = configProps;
58
- this.tenantId = tenantIdProps;
59
- this.authClient = authClientProps;
60
- } else {
61
- this.appId = appIdOrProps;
62
- this.config = config;
63
- this.tenantId = tenantId;
64
- this.authClient = authClient;
65
- }
66
-
67
- this.visible = this.config?.mode === GuardMode.Modal ? false : true;
68
-
69
- this.render();
70
- }
71
-
72
- static getGuardContainer(selector?: string | HTMLElement) {
73
- const defaultId = "authing_guard_container";
74
-
75
- if (!selector) {
76
- let container = document.querySelector(`#${defaultId}`);
77
- if (!container) {
78
- container = document.createElement("div");
79
- container.id = defaultId;
80
- document.body.appendChild(container);
81
- }
82
-
83
- return container;
84
- }
85
-
86
- if (typeof selector === "string") {
87
- return document.querySelector(selector);
88
- }
89
-
90
- return selector;
91
- }
92
-
93
- private eventListeners = Object.values(GuardEventsCamelToKebabMapping).reduce((acc, evtName) => {
94
- return Object.assign({}, acc, {
95
- [evtName as string]: [],
96
- });
97
- }, {} as GuardEventListeners);
98
-
99
- public render(): void;
100
- public render(aliginOrCb: () => void): void;
101
- public render(aliginOrCb: "none" | "center" | "left" | "right"): void;
102
- public render(aliginOrCb: "none" | "center" | "left" | "right", callback: () => void): void;
103
- public render(aliginOrCb?: any, cb?: any) {
104
- const l = arguments.length;
105
- let align: "none" | "center" | "left" | "right";
106
-
107
- let callback: (() => void) | undefined;
108
- if (l === 0) {
109
- align = "none";
110
- } else if (l === 1) {
111
- if (typeof aliginOrCb === "function") {
112
- align = "none";
113
- callback = aliginOrCb;
114
- } else {
115
- align = aliginOrCb;
116
- }
117
- } else if (l === 2) {
118
- align = aliginOrCb;
119
- callback = cb;
120
- } else {
121
- throw new Error("参数格式错误");
122
- }
123
-
124
- // 两个都有
125
-
126
- // let justifyContent = "none";
127
- // let renderCb;
128
- // if (typeof aligin === "string") {
129
- // justifyContent = aligin;
130
- // renderCb = cb;
131
- // } else {
132
- // renderCb = aligin;
133
- // }
134
-
135
- const evts: GuardEvents = Object.entries(GuardEventsCamelToKebabMapping).reduce((acc, [reactEvt, nativeEvt]) => {
136
- return Object.assign({}, acc, {
137
- [reactEvt]: (...rest: any) => {
138
- if (nativeEvt === "close") {
139
- this.hide();
140
- }
141
-
142
- // TODO 返回最后一个执行函数的值,实际应该只让监听一次
143
- return (
144
- (this.eventListeners as any)[nativeEvt as string]
145
- // @ts-ignore
146
- .map((item: any) => {
147
- return item(...rest);
148
- })
149
- .slice(-1)[0] ?? true
150
- );
151
- },
152
- });
153
- }, {} as GuardEvents);
154
-
155
- return ReactDOM.render(
156
- <div
157
- style={{
158
- display: "flex",
159
- alignItems: "center",
160
- justifyContent: align,
161
- }}
162
- >
163
- <ReactAuthingGuard
164
- {...(evts as GuardEvents)}
165
- appId={this.appId}
166
- config={this.config as GuardProps["config"]}
167
- visible={this.visible}
168
- tenantId={this.tenantId}
169
- authClient={this.authClient}
170
- />
171
- </div>,
172
- Guard.getGuardContainer(this.config?.target),
173
- callback
174
- );
175
- }
176
-
177
- on<T extends keyof GuardEventsKebabToCamelType>(evt: T, handler: Exclude<GuardEventsKebabToCamelType[T], undefined>) {
178
- (this.eventListeners as any)[evt]!.push(handler as any);
179
- }
180
-
181
- show() {
182
- this.visible = true;
183
- this.render();
184
- }
185
-
186
- hide() {
187
- this.visible = false;
188
- this.render();
189
- }
190
-
191
- unmountComponent() {
192
- const node = Guard.getGuardContainer(this.config?.target);
193
-
194
- if (node) {
195
- ReactDOM.unmountComponentAtNode(node);
196
- }
197
- }
198
- }
@@ -1,18 +0,0 @@
1
- import { Guard } from "./Guard";
2
-
3
- import {
4
- User,
5
- GuardMode,
6
- GuardModuleType,
7
- LoginMethods,
8
- CommonMessage,
9
- RegisterMethods,
10
- AuthenticationClient,
11
- GuardEvents,
12
- GuardEventsKebabToCamelType,
13
- GuardEventsCamelToKebabMapping,
14
- GuardLocalConfig,
15
- } from "@authing/react-ui-components";
16
-
17
- export { Guard, GuardMode, GuardModuleType, LoginMethods, RegisterMethods, GuardEventsCamelToKebabMapping };
18
- export type { GuardLocalConfig, GuardEvents, User, CommonMessage, AuthenticationClient, GuardEventsKebabToCamelType };
package/src/index.css DELETED
@@ -1,13 +0,0 @@
1
- body {
2
- margin: 0;
3
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4
- 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5
- sans-serif;
6
- -webkit-font-smoothing: antialiased;
7
- -moz-osx-font-smoothing: grayscale;
8
- }
9
-
10
- code {
11
- font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12
- monospace;
13
- }
package/src/index.tsx DELETED
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- import ReactDOM from 'react-dom';
3
- import './index.css';
4
- import App from './App';
5
- import reportWebVitals from './reportWebVitals';
6
-
7
- ReactDOM.render(
8
- <React.StrictMode>
9
- <App />
10
- </React.StrictMode>,
11
- document.getElementById('root')
12
- );
13
-
14
- // If you want to start measuring performance in your app, pass a function
15
- // to log results (for example: reportWebVitals(console.log))
16
- // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17
- reportWebVitals();
package/src/logo.svg DELETED
@@ -1,7 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
2
- <g fill="#61DAFB">
3
- <path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/>
4
- <circle cx="420.9" cy="296.5" r="45.7"/>
5
- <path d="M520.5 78.1z"/>
6
- </g>
7
- </svg>
@@ -1,71 +0,0 @@
1
- /// <reference types="node" />
2
- /// <reference types="react" />
3
- /// <reference types="react-dom" />
4
-
5
- declare namespace NodeJS {
6
- interface ProcessEnv {
7
- readonly NODE_ENV: 'development' | 'production' | 'test';
8
- readonly PUBLIC_URL: string;
9
- }
10
- }
11
-
12
- declare module '*.avif' {
13
- const src: string;
14
- export default src;
15
- }
16
-
17
- declare module '*.bmp' {
18
- const src: string;
19
- export default src;
20
- }
21
-
22
- declare module '*.gif' {
23
- const src: string;
24
- export default src;
25
- }
26
-
27
- declare module '*.jpg' {
28
- const src: string;
29
- export default src;
30
- }
31
-
32
- declare module '*.jpeg' {
33
- const src: string;
34
- export default src;
35
- }
36
-
37
- declare module '*.png' {
38
- const src: string;
39
- export default src;
40
- }
41
-
42
- declare module '*.webp' {
43
- const src: string;
44
- export default src;
45
- }
46
-
47
- declare module '*.svg' {
48
- import * as React from 'react';
49
-
50
- export const ReactComponent: React.FunctionComponent<React.SVGProps<
51
- SVGSVGElement
52
- > & { title?: string }>;
53
-
54
- const src: string;
55
- export default src;
56
- }
57
-
58
- declare module '*.module.css' {
59
- const classes: { readonly [key: string]: string };
60
- export default classes;
61
- }
62
-
63
- declare module '*.module.scss' {
64
- const classes: { readonly [key: string]: string };
65
- export default classes;
66
- }
67
-
68
- declare module '*.module.sass' {
69
- const classes: { readonly [key: string]: string };
70
- export default classes;
71
- }
@@ -1,15 +0,0 @@
1
- import { ReportHandler } from 'web-vitals';
2
-
3
- const reportWebVitals = (onPerfEntry?: ReportHandler) => {
4
- if (onPerfEntry && onPerfEntry instanceof Function) {
5
- import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
6
- getCLS(onPerfEntry);
7
- getFID(onPerfEntry);
8
- getFCP(onPerfEntry);
9
- getLCP(onPerfEntry);
10
- getTTFB(onPerfEntry);
11
- });
12
- }
13
- }
14
-
15
- export default reportWebVitals;
package/src/setupTests.ts DELETED
@@ -1,5 +0,0 @@
1
- // jest-dom adds custom jest matchers for asserting on DOM nodes.
2
- // allows you to do things like:
3
- // expect(element).toHaveTextContent(/react/i)
4
- // learn more: https://github.com/testing-library/jest-dom
5
- import '@testing-library/jest-dom';
package/tsconfig.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "baseUrl": ".",
4
- "outDir": "lib/",
5
- "target": "es5",
6
- "lib": ["dom", "dom.iterable", "esnext"],
7
- "allowJs": true,
8
- "skipLibCheck": true,
9
- "esModuleInterop": true,
10
- "allowSyntheticDefaultImports": true,
11
- "strict": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "noFallthroughCasesInSwitch": true,
14
- "module": "esnext",
15
- "moduleResolution": "node",
16
- "resolveJsonModule": true,
17
- "declaration": true,
18
- "noEmit": false,
19
- "jsx": "react",
20
- "downlevelIteration": true
21
- },
22
- "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.json"],
23
- "exclude": ["node_modules", "lib", "build"]
24
- }