dhre-component-lib 0.0.3 → 0.0.4
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/package.json +1 -1
- package/src/components/Avatar/__snapshots__/Avatar.test.tsx.snap +0 -9
- package/src/components/Badge/__snapshots__/Badge.test.tsx.snap +0 -9
- package/src/components/Button/__snapshots__/Button.test.tsx.snap +0 -9
- package/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap +0 -17
- package/src/components/Tag/__snapshots__/Tag.test.tsx.snap +0 -9
- package/src/components/Tooltip/__snapshots__/Tooltip.test.tsx.snap +0 -22
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`CustomCheckbox Component renders correctly without crashing 1`] = `
|
|
4
|
-
<div
|
|
5
|
-
class="custom-container"
|
|
6
|
-
>
|
|
7
|
-
<input
|
|
8
|
-
class="custom-checkbox"
|
|
9
|
-
type="checkbox"
|
|
10
|
-
/>
|
|
11
|
-
<label
|
|
12
|
-
class="custom-label"
|
|
13
|
-
>
|
|
14
|
-
Accept Terms
|
|
15
|
-
</label>
|
|
16
|
-
</div>
|
|
17
|
-
`;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`Tooltip Component matches snapshot when tooltip is hidden 1`] = `
|
|
4
|
-
<div>
|
|
5
|
-
<button>
|
|
6
|
-
Hover me
|
|
7
|
-
</button>
|
|
8
|
-
</div>
|
|
9
|
-
`;
|
|
10
|
-
|
|
11
|
-
exports[`Tooltip Component matches snapshot when tooltip is visible 1`] = `
|
|
12
|
-
<div>
|
|
13
|
-
<button>
|
|
14
|
-
Hover me
|
|
15
|
-
</button>
|
|
16
|
-
<div
|
|
17
|
-
class="tooltip-class"
|
|
18
|
-
>
|
|
19
|
-
Tooltip content
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
`;
|