@indico-data/design-system 1.0.11 → 1.0.13

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 (34) hide show
  1. package/lib/components/Accordion/Accordion.styles.d.ts +24 -24
  2. package/lib/components/Icon/Icon.stories.d.ts +2 -2
  3. package/lib/components/Icon/storyHelpers.d.ts +72 -72
  4. package/lib/components/ListTable/Header/Header.styles.d.ts +24 -24
  5. package/lib/components/ListTable/ListTable.styles.d.ts +24 -24
  6. package/lib/components/Pagination/Pagination.styles.d.ts +24 -24
  7. package/lib/components/basic-section/Section/Section.styles.d.ts +24 -24
  8. package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +24 -24
  9. package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +24 -24
  10. package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +24 -24
  11. package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +24 -24
  12. package/lib/components/buttons/Button/Button.styles.d.ts +24 -24
  13. package/lib/components/buttons/IconButton/IconButton.styles.d.ts +56 -56
  14. package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +48 -48
  15. package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
  16. package/lib/components/dropdowns/Select/Select.styles.d.ts +24 -24
  17. package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
  18. package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +24 -24
  19. package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +24 -24
  20. package/lib/components/inputs/SearchInput/SearchInput.styles.d.ts +24 -24
  21. package/lib/components/inputs/TextInput/TextInput.styles.d.ts +48 -48
  22. package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +24 -24
  23. package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +24 -24
  24. package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +24 -24
  25. package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +24 -24
  26. package/lib/index.d.ts +3 -1
  27. package/lib/index.esm.js +7699 -7175
  28. package/lib/index.esm.js.map +1 -1
  29. package/lib/index.js +7698 -7173
  30. package/lib/index.js.map +1 -1
  31. package/lib/styles/index.d.ts +1 -0
  32. package/package.json +1 -1
  33. package/rollup.config.mjs +5 -0
  34. package/src/styles/globals/index.tsx +2 -2
@@ -0,0 +1 @@
1
+ export { GlobalStyles } from './globals';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indico-data/design-system",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "author": "",
package/rollup.config.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  import peerDepsExternal from 'rollup-plugin-peer-deps-external';
2
+ import babel from '@rollup/plugin-babel';
2
3
  import resolve from '@rollup/plugin-node-resolve';
3
4
  import commonjs from '@rollup/plugin-commonjs';
4
5
  import typescript from '@rollup/plugin-typescript';
@@ -30,6 +31,10 @@ export default [
30
31
  plugins: [
31
32
  peerDepsExternal(),
32
33
  resolve(),
34
+ babel({
35
+ exclude: 'node_modules/**',
36
+ presets: ['@babel/env', '@babel/preset-react'],
37
+ }),
33
38
  commonjs(),
34
39
  typescript(),
35
40
  postcss({
@@ -11,7 +11,7 @@ import { Typography } from './typography';
11
11
  import { MarginPadding } from './margin-padding';
12
12
 
13
13
  export const GlobalStyles = () => (
14
- <>
14
+ <React.Fragment>
15
15
  <UtilityClasses />
16
16
  <Buttons />
17
17
  <Forms />
@@ -21,5 +21,5 @@ export const GlobalStyles = () => (
21
21
  <Tables />
22
22
  <Typography />
23
23
  <MarginPadding />
24
- </>
24
+ </React.Fragment>
25
25
  );