@charcoal-ui/react 3.11.0 → 3.13.0-beta.0

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 (49) hide show
  1. package/dist/components/Modal/index.d.ts +3 -0
  2. package/dist/components/Modal/index.d.ts.map +1 -1
  3. package/dist/index.cjs.js +10 -7
  4. package/dist/index.cjs.js.map +1 -1
  5. package/dist/index.d.ts +1 -1
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.esm.js +9 -7
  8. package/dist/index.esm.js.map +1 -1
  9. package/package.json +8 -8
  10. package/src/components/Button/__snapshots__/index.story.storyshot +9 -9
  11. package/src/components/Button/index.story.tsx +1 -1
  12. package/src/components/Checkbox/__snapshots__/index.story.storyshot +86 -64
  13. package/src/components/Checkbox/index.story.tsx +32 -24
  14. package/src/components/Checkbox/index.tsx +6 -2
  15. package/src/components/Clickable/__snapshots__/index.story.storyshot +2 -2
  16. package/src/components/Clickable/index.story.tsx +1 -1
  17. package/src/components/DropdownSelector/ListItem/__snapshots__/index.story.storyshot +1 -1
  18. package/src/components/DropdownSelector/ListItem/index.story.tsx +1 -1
  19. package/src/components/DropdownSelector/MenuList/__snapshots__/index.story.storyshot +3 -3
  20. package/src/components/DropdownSelector/MenuList/index.story.tsx +1 -1
  21. package/src/components/DropdownSelector/Popover/__snapshots__/index.story.storyshot +1 -1
  22. package/src/components/DropdownSelector/Popover/index.story.tsx +1 -1
  23. package/src/components/DropdownSelector/__snapshots__/index.story.storyshot +14 -936
  24. package/src/components/DropdownSelector/index.story.tsx +2 -2
  25. package/src/components/Icon/__snapshots__/index.story.storyshot +1 -1
  26. package/src/components/Icon/index.story.tsx +1 -1
  27. package/src/components/IconButton/__snapshots__/index.story.storyshot +6 -3
  28. package/src/components/IconButton/index.story.tsx +1 -1
  29. package/src/components/IconButton/index.tsx +1 -1
  30. package/src/components/LoadingSpinner/__snapshots__/index.story.storyshot +4 -4
  31. package/src/components/LoadingSpinner/index.story.tsx +1 -1
  32. package/src/components/Modal/__snapshots__/index.story.storyshot +24 -12
  33. package/src/components/Modal/index.story.tsx +2 -2
  34. package/src/components/Modal/index.tsx +6 -2
  35. package/src/components/MultiSelect/__snapshots__/index.story.storyshot +4 -4
  36. package/src/components/MultiSelect/index.story.tsx +1 -1
  37. package/src/components/Radio/__snapshots__/index.story.storyshot +5 -5
  38. package/src/components/Radio/index.story.tsx +1 -1
  39. package/src/components/SegmentedControl/__snapshots__/index.story.storyshot +2 -2
  40. package/src/components/SegmentedControl/index.story.tsx +1 -1
  41. package/src/components/Switch/__snapshots__/index.story.storyshot +4 -4
  42. package/src/components/Switch/index.story.tsx +1 -1
  43. package/src/components/TagItem/__snapshots__/index.story.storyshot +9 -9
  44. package/src/components/TagItem/index.story.tsx +2 -2
  45. package/src/components/TextArea/TextArea.story.tsx +1 -1
  46. package/src/components/TextArea/__snapshots__/TextArea.story.storyshot +11 -11
  47. package/src/components/TextField/TextField.story.tsx +1 -1
  48. package/src/components/TextField/__snapshots__/TextField.story.storyshot +13 -13
  49. package/src/index.ts +5 -1
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`Storybook Tests DropdownSelector/MenuList Basic 1`] = `
3
+ exports[`Storybook Tests react/internals/MenuList Basic 1`] = `
4
4
  .c0 {
5
5
  padding: 0;
6
6
  margin: 0;
@@ -210,7 +210,7 @@ exports[`Storybook Tests DropdownSelector/MenuList Basic 1`] = `
210
210
  </div>
211
211
  `;
212
212
 
213
- exports[`Storybook Tests DropdownSelector/MenuList Disabled 1`] = `
213
+ exports[`Storybook Tests react/internals/MenuList Disabled 1`] = `
214
214
  .c0 {
215
215
  padding: 0;
216
216
  margin: 0;
@@ -291,7 +291,7 @@ exports[`Storybook Tests DropdownSelector/MenuList Disabled 1`] = `
291
291
  </div>
292
292
  `;
293
293
 
294
- exports[`Storybook Tests DropdownSelector/MenuList Group 1`] = `
294
+ exports[`Storybook Tests react/internals/MenuList Group 1`] = `
295
295
  .c0 {
296
296
  padding: 0;
297
297
  margin: 0;
@@ -5,7 +5,7 @@ import MenuItemGroup from '../MenuItemGroup'
5
5
  import { Meta, StoryObj } from '@storybook/react'
6
6
 
7
7
  export default {
8
- title: 'DropdownSelector/MenuList',
8
+ title: 'react/internals/MenuList',
9
9
  component: MenuList,
10
10
  } as Meta<typeof MenuList>
11
11
 
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`Storybook Tests DropdownSelector/Popover Basic 1`] = `
3
+ exports[`Storybook Tests react/internals/Popover Basic 1`] = `
4
4
  .c0 {
5
5
  cursor: pointer;
6
6
  -webkit-appearance: none;
@@ -4,7 +4,7 @@ import Button from '../../Button'
4
4
  import { Meta, StoryObj } from '@storybook/react'
5
5
 
6
6
  export default {
7
- title: 'DropdownSelector/Popover',
7
+ title: 'react/internals/Popover',
8
8
  component: Popover,
9
9
  } as Meta<typeof Popover>
10
10