@indico-data/design-system 1.0.40 → 1.0.41

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.
@@ -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,5 @@
1
+ # This file is automatically generated by @yarnpkg/sdks.
2
+ # Manual changes might be lost!
3
+
4
+ integrations:
5
+ - vscode
@@ -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,7 @@
1
+ {
2
+ "name": "prettier",
3
+ "version": "3.1.0-sdk",
4
+ "main": "./index.cjs",
5
+ "type": "commonjs",
6
+ "bin": "./bin/prettier.cjs"
7
+ }
@@ -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`);
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "typescript",
3
+ "version": "5.3.3-sdk",
4
+ "main": "./lib/typescript.js",
5
+ "type": "commonjs",
6
+ "bin": {
7
+ "tsc": "./bin/tsc",
8
+ "tsserver": "./bin/tsserver"
9
+ }
10
+ }
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)),