@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
@@ -0,0 +1,7 @@
1
+ {
2
+ "recommendations": [
3
+ "arcanis.vscode-zipfs",
4
+ "dbaeumer.vscode-eslint",
5
+ "esbenp.prettier-vscode"
6
+ ]
7
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "search.exclude": {
3
+ "**/.yarn": true,
4
+ "**/.pnp.*": true
5
+ },
6
+ "eslint.nodePath": ".yarn/sdks",
7
+ "prettier.prettierPath": ".yarn/sdks/prettier/index.cjs",
8
+ "typescript.tsdk": ".yarn/sdks/typescript/lib",
9
+ "typescript.enablePromptUseWorkspaceTsdk": true
10
+ }