@indico-data/design-system 1.0.39 → 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.
Files changed (46) hide show
  1. package/.vscode/extensions.json +7 -0
  2. package/.vscode/settings.json +10 -0
  3. package/.yarn/releases/yarn-4.0.2.cjs +893 -0
  4. package/.yarn/sdks/eslint/bin/eslint.js +20 -0
  5. package/.yarn/sdks/eslint/package.json +14 -0
  6. package/.yarn/sdks/integrations.yml +5 -0
  7. package/.yarn/sdks/prettier/bin/prettier.cjs +20 -0
  8. package/.yarn/sdks/prettier/index.cjs +20 -0
  9. package/.yarn/sdks/prettier/package.json +7 -0
  10. package/.yarn/sdks/typescript/bin/tsc +20 -0
  11. package/.yarn/sdks/typescript/bin/tsserver +20 -0
  12. package/.yarn/sdks/typescript/package.json +10 -0
  13. package/.yarnrc.yml +1 -1
  14. package/lib/components/Accordion/Accordion.styles.d.ts +2 -2
  15. package/lib/components/Icon/storyHelpers.d.ts +3 -6
  16. package/lib/components/ListTable/Header/Header.styles.d.ts +1 -2
  17. package/lib/components/ListTable/ListTable.styles.d.ts +1 -2
  18. package/lib/components/Pagination/Pagination.styles.d.ts +1 -2
  19. package/lib/components/basic-section/Section/Section.styles.d.ts +1 -2
  20. package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -2
  21. package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -2
  22. package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -2
  23. package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -2
  24. package/lib/components/buttons/Button/Button.styles.d.ts +1 -2
  25. package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
  26. package/lib/components/buttons/IconButton/IconButton.styles.d.ts +2 -4
  27. package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -4
  28. package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
  29. package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -2
  30. package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
  31. package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -2
  32. package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -2
  33. package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -4
  34. package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -2
  35. package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -2
  36. package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -2
  37. package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -2
  38. package/lib/index.esm.js +1 -1
  39. package/lib/index.esm.js.map +1 -1
  40. package/lib/index.js +477 -471
  41. package/lib/index.js.map +1 -1
  42. package/package.json +8 -8
  43. package/rollup.config.mjs +2 -0
  44. package/src/components/inputs/SearchInput/SearchInput.tsx +1 -0
  45. package/.husky/pre-commit +0 -4
  46. package/.yarn/releases/yarn-classic.cjs +0 -179386
@@ -18,7 +18,6 @@ export declare const StyledPercentageRing: import("styled-components").IStyledCo
18
18
  id?: string | undefined;
19
19
  lang?: string | undefined;
20
20
  nonce?: string | undefined;
21
- placeholder?: string | undefined;
22
21
  slot?: string | undefined;
23
22
  spellCheck?: (boolean | "false" | "true") | undefined;
24
23
  style?: import("react").CSSProperties | undefined;
@@ -49,7 +48,7 @@ export declare const StyledPercentageRing: import("styled-components").IStyledCo
49
48
  itemRef?: string | undefined;
50
49
  results?: number | undefined;
51
50
  security?: string | undefined;
52
- unselectable?: "on" | "off" | undefined;
51
+ unselectable?: "off" | "on" | undefined;
53
52
  inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
54
53
  is?: string | undefined;
55
54
  "aria-activedescendant"?: string | undefined;
@@ -18,7 +18,6 @@ export declare const StyledShrug: import("styled-components").IStyledComponent<"
18
18
  id?: string | undefined;
19
19
  lang?: string | undefined;
20
20
  nonce?: string | undefined;
21
- placeholder?: string | undefined;
22
21
  slot?: string | undefined;
23
22
  spellCheck?: (boolean | "false" | "true") | undefined;
24
23
  style?: import("react").CSSProperties | undefined;
@@ -49,7 +48,7 @@ export declare const StyledShrug: import("styled-components").IStyledComponent<"
49
48
  itemRef?: string | undefined;
50
49
  results?: number | undefined;
51
50
  security?: string | undefined;
52
- unselectable?: "on" | "off" | undefined;
51
+ unselectable?: "off" | "on" | undefined;
53
52
  inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
54
53
  is?: string | undefined;
55
54
  "aria-activedescendant"?: string | undefined;
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)),