@integrigo/integrigo-ui 1.6.17-g → 1.6.17-h

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 (38) hide show
  1. package/jest.config.js +1 -1
  2. package/lib/index.esm.js +1 -1
  3. package/lib/index.esm.js.map +1 -1
  4. package/lib/index.js +1 -1
  5. package/lib/index.js.map +1 -1
  6. package/lib/src/components/atoms/Chip/Chip.stories.d.ts +5 -4
  7. package/lib/src/components/atoms/Dot/Dot.stories.d.ts +3 -3
  8. package/lib/src/components/atoms/Icon/Icon.d.ts +1 -0
  9. package/lib/src/components/atoms/Icon/Icon.stories.d.ts +2 -2
  10. package/lib/src/components/atoms/Icon/IconAddition.d.ts +5 -5
  11. package/lib/src/components/atoms/Icon/icons/Eye.d.ts +3 -0
  12. package/lib/src/components/atoms/Icon/icons/Search.d.ts +3 -0
  13. package/lib/src/components/molecules/Checkbox/Checkbox.stories.d.ts +4 -4
  14. package/lib/src/components/molecules/Input/Input.d.ts +8 -8
  15. package/lib/src/components/molecules/Input/Input.stories.d.ts +9 -9
  16. package/lib/src/components/molecules/Radio/Radio.stories.d.ts +4 -4
  17. package/lib/src/components/organisms/Table/Table.d.ts +12 -0
  18. package/lib/src/components/organisms/Table/Table.stories.d.ts +7 -0
  19. package/lib/src/components/organisms/Table/Table.test.d.ts +1 -0
  20. package/lib/src/components/organisms/Table/index.d.ts +1 -0
  21. package/lib/src/components/organisms/index.d.ts +1 -0
  22. package/lib/src/index.d.ts +4 -4
  23. package/package.json +7 -6
  24. package/src/components/atoms/Chip/Chip.stories.tsx +21 -20
  25. package/src/components/atoms/Icon/Icon.tsx +2 -0
  26. package/src/components/atoms/Icon/IconAddition.tsx +22 -20
  27. package/src/components/atoms/Icon/icons/Eye.tsx +9 -0
  28. package/src/components/atoms/Icon/icons/Search.tsx +9 -0
  29. package/src/components/molecules/Button/BasicButton.tsx +2 -1
  30. package/src/components/molecules/Button/Button.tsx +5 -4
  31. package/src/components/molecules/Input/Input.tsx +51 -47
  32. package/src/components/organisms/Table/Table.stories.tsx +180 -0
  33. package/src/components/organisms/Table/Table.test.tsx +82 -0
  34. package/src/components/organisms/Table/Table.tsx +162 -0
  35. package/src/components/organisms/Table/__snapshots__/Table.test.tsx.snap +101 -0
  36. package/src/components/organisms/Table/index.ts +1 -0
  37. package/src/components/organisms/index.ts +3 -2
  38. package/src/index.ts +4 -4
@@ -0,0 +1,101 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`<Table /> enabled - should match snapshot 1`] = `
4
+ <div>
5
+ <div>
6
+ <table
7
+ cellspacing="0"
8
+ class="sc-bcXHqe eCGCkv"
9
+ >
10
+ <thead
11
+ class="sc-gswNZR qcRyf"
12
+ >
13
+ <tr>
14
+ <th>
15
+ firstName
16
+ </th>
17
+ <th>
18
+ Last Name
19
+ </th>
20
+ <th>
21
+ Age
22
+ </th>
23
+ <th>
24
+ Visits
25
+ </th>
26
+ <th>
27
+ Status
28
+ </th>
29
+ <th>
30
+ Profile Progress
31
+ </th>
32
+ </tr>
33
+ </thead>
34
+ <tbody
35
+ class="sc-dkrFOg jkyDVI"
36
+ >
37
+ <tr>
38
+ <td>
39
+ tanner
40
+ </td>
41
+ <td>
42
+ linsley
43
+ </td>
44
+ <td>
45
+ 24
46
+ </td>
47
+ <td>
48
+ 100
49
+ </td>
50
+ <td>
51
+ In Relationship
52
+ </td>
53
+ <td>
54
+ 50
55
+ </td>
56
+ </tr>
57
+ <tr>
58
+ <td>
59
+ tandy
60
+ </td>
61
+ <td>
62
+ miller
63
+ </td>
64
+ <td>
65
+ 40
66
+ </td>
67
+ <td>
68
+ 40
69
+ </td>
70
+ <td>
71
+ Single
72
+ </td>
73
+ <td>
74
+ 80
75
+ </td>
76
+ </tr>
77
+ <tr>
78
+ <td>
79
+ joe
80
+ </td>
81
+ <td>
82
+ dirte
83
+ </td>
84
+ <td>
85
+ 45
86
+ </td>
87
+ <td>
88
+ 20
89
+ </td>
90
+ <td>
91
+ Complicated
92
+ </td>
93
+ <td>
94
+ 10
95
+ </td>
96
+ </tr>
97
+ </tbody>
98
+ </table>
99
+ </div>
100
+ </div>
101
+ `;
@@ -0,0 +1 @@
1
+ export { Table } from './Table';
@@ -1,4 +1,5 @@
1
1
  export { Menu } from './Menu';
2
2
  export { Setting } from './Setting';
3
- export { Modal } from './Modal'
4
- export { Select } from './Select'
3
+ export { Modal } from './Modal';
4
+ export { Select } from './Select';
5
+ export { Table } from './Table';
package/src/index.ts CHANGED
@@ -12,7 +12,7 @@ export {
12
12
  Chip,
13
13
  Dot,
14
14
  Gradient,
15
- } from "./components/atoms";
15
+ } from './components/atoms';
16
16
 
17
17
  export {
18
18
  InfoCard,
@@ -25,8 +25,8 @@ export {
25
25
  Radio,
26
26
  Tile,
27
27
  Switch,
28
- } from "./components/molecules";
28
+ } from './components/molecules';
29
29
 
30
- export { Menu, Setting, Modal, Select } from "./components/organisms";
30
+ export { Menu, Setting, Modal, Select, Table } from './components/organisms';
31
31
 
32
- export { GlobalStyles as IntegrigoUI, Color } from "./styles";
32
+ export { GlobalStyles as IntegrigoUI, Color } from './styles';