@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.
- package/.vscode/extensions.json +7 -0
- package/.vscode/settings.json +10 -0
- package/.yarn/releases/yarn-4.0.2.cjs +893 -0
- 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/.yarnrc.yml +1 -1
- package/lib/components/Accordion/Accordion.styles.d.ts +2 -2
- package/lib/components/Icon/storyHelpers.d.ts +3 -6
- package/lib/components/ListTable/Header/Header.styles.d.ts +1 -2
- package/lib/components/ListTable/ListTable.styles.d.ts +1 -2
- package/lib/components/Pagination/Pagination.styles.d.ts +1 -2
- package/lib/components/basic-section/Section/Section.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -2
- package/lib/components/buttons/Button/Button.styles.d.ts +1 -2
- package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +2 -4
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -4
- package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -2
- package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -2
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -2
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -4
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -2
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -2
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -2
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -2
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +477 -471
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
- package/rollup.config.mjs +2 -0
- package/src/components/inputs/SearchInput/SearchInput.tsx +1 -0
- package/.husky/pre-commit +0 -4
- package/.yarn/releases/yarn-classic.cjs +0 -179386
|
@@ -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
|
+
}
|