@indico-data/design-system 1.0.40 → 1.0.42
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/.yarn/sdks/eslint/bin/eslint.js +20 -0
- package/.yarn/sdks/eslint/package.json +14 -0
- package/.yarn/sdks/integrations.yml +5 -0
- package/.yarn/sdks/prettier/bin/prettier.cjs +20 -0
- package/.yarn/sdks/prettier/index.cjs +20 -0
- package/.yarn/sdks/prettier/package.json +7 -0
- package/.yarn/sdks/typescript/bin/tsc +20 -0
- package/.yarn/sdks/typescript/bin/tsserver +20 -0
- package/.yarn/sdks/typescript/package.json +10 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/inputs/SearchInput/SearchInput.tsx +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const {existsSync} = require(`fs`);
|
|
4
|
+
const {createRequire} = require(`module`);
|
|
5
|
+
const {resolve} = require(`path`);
|
|
6
|
+
|
|
7
|
+
const relPnpApiPath = "../../../../.pnp.cjs";
|
|
8
|
+
|
|
9
|
+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
|
10
|
+
const absRequire = createRequire(absPnpApiPath);
|
|
11
|
+
|
|
12
|
+
if (existsSync(absPnpApiPath)) {
|
|
13
|
+
if (!process.versions.pnp) {
|
|
14
|
+
// Setup the environment to be able to require eslint/bin/eslint.js
|
|
15
|
+
require(absPnpApiPath).setup();
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Defer to the real eslint/bin/eslint.js your application uses
|
|
20
|
+
module.exports = absRequire(`eslint/bin/eslint.js`);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eslint",
|
|
3
|
+
"version": "8.56.0-sdk",
|
|
4
|
+
"main": "./lib/api.js",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"bin": {
|
|
7
|
+
"eslint": "./bin/eslint.js"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
"./package.json": "./package.json",
|
|
11
|
+
".": "./lib/api.js",
|
|
12
|
+
"./use-at-your-own-risk": "./lib/unsupported-api.js"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const {existsSync} = require(`fs`);
|
|
4
|
+
const {createRequire} = require(`module`);
|
|
5
|
+
const {resolve} = require(`path`);
|
|
6
|
+
|
|
7
|
+
const relPnpApiPath = "../../../../.pnp.cjs";
|
|
8
|
+
|
|
9
|
+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
|
10
|
+
const absRequire = createRequire(absPnpApiPath);
|
|
11
|
+
|
|
12
|
+
if (existsSync(absPnpApiPath)) {
|
|
13
|
+
if (!process.versions.pnp) {
|
|
14
|
+
// Setup the environment to be able to require prettier/bin/prettier.cjs
|
|
15
|
+
require(absPnpApiPath).setup();
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Defer to the real prettier/bin/prettier.cjs your application uses
|
|
20
|
+
module.exports = absRequire(`prettier/bin/prettier.cjs`);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const {existsSync} = require(`fs`);
|
|
4
|
+
const {createRequire} = require(`module`);
|
|
5
|
+
const {resolve} = require(`path`);
|
|
6
|
+
|
|
7
|
+
const relPnpApiPath = "../../../.pnp.cjs";
|
|
8
|
+
|
|
9
|
+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
|
10
|
+
const absRequire = createRequire(absPnpApiPath);
|
|
11
|
+
|
|
12
|
+
if (existsSync(absPnpApiPath)) {
|
|
13
|
+
if (!process.versions.pnp) {
|
|
14
|
+
// Setup the environment to be able to require prettier
|
|
15
|
+
require(absPnpApiPath).setup();
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Defer to the real prettier your application uses
|
|
20
|
+
module.exports = absRequire(`prettier`);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const {existsSync} = require(`fs`);
|
|
4
|
+
const {createRequire} = require(`module`);
|
|
5
|
+
const {resolve} = require(`path`);
|
|
6
|
+
|
|
7
|
+
const relPnpApiPath = "../../../../.pnp.cjs";
|
|
8
|
+
|
|
9
|
+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
|
10
|
+
const absRequire = createRequire(absPnpApiPath);
|
|
11
|
+
|
|
12
|
+
if (existsSync(absPnpApiPath)) {
|
|
13
|
+
if (!process.versions.pnp) {
|
|
14
|
+
// Setup the environment to be able to require typescript/bin/tsc
|
|
15
|
+
require(absPnpApiPath).setup();
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Defer to the real typescript/bin/tsc your application uses
|
|
20
|
+
module.exports = absRequire(`typescript/bin/tsc`);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const {existsSync} = require(`fs`);
|
|
4
|
+
const {createRequire} = require(`module`);
|
|
5
|
+
const {resolve} = require(`path`);
|
|
6
|
+
|
|
7
|
+
const relPnpApiPath = "../../../../.pnp.cjs";
|
|
8
|
+
|
|
9
|
+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
|
10
|
+
const absRequire = createRequire(absPnpApiPath);
|
|
11
|
+
|
|
12
|
+
if (existsSync(absPnpApiPath)) {
|
|
13
|
+
if (!process.versions.pnp) {
|
|
14
|
+
// Setup the environment to be able to require typescript/bin/tsserver
|
|
15
|
+
require(absPnpApiPath).setup();
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Defer to the real typescript/bin/tsserver your application uses
|
|
20
|
+
module.exports = absRequire(`typescript/bin/tsserver`);
|
package/lib/index.esm.js
CHANGED
|
@@ -12326,7 +12326,7 @@ const StyledSearchField = styled.div `
|
|
|
12326
12326
|
const SearchInput = (props) => {
|
|
12327
12327
|
const { border, showSearchIcon, showClearInputIcon, className, inputProps, onChange, onClear, onKeyUp, placeholder, value, } = props;
|
|
12328
12328
|
const id = v4();
|
|
12329
|
-
return (React.createElement(StyledSearchField, { className: className, border: border, showSearchIcon: showSearchIcon, showClearInputIcon: showClearInputIcon, "data-cy": props['data-cy'], id: props.id },
|
|
12329
|
+
return (React.createElement(StyledSearchField, { className: className, border: border, showSearchIcon: showSearchIcon, showClearInputIcon: showClearInputIcon, "data-cy": props['data-cy'], id: props.id, "data-testId": props['data-testid'] },
|
|
12330
12330
|
showSearchIcon && (React.createElement("label", { htmlFor: id },
|
|
12331
12331
|
React.createElement(Icon, { name: "fa-search", ariaLabel: "search" }))),
|
|
12332
12332
|
React.createElement("input", Object.assign({ type: "search", id: id, placeholder: placeholder, value: value, onChange: onChange, onKeyUp: onKeyUp }, inputProps)),
|