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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhre-component-lib",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -1,9 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Avatar Component matches snapshot for default rendering 1`] = `
4
- <img
5
- alt="Test Avatar"
6
- class="avatar-class"
7
- src="test-image.jpg"
8
- />
9
- `;
@@ -1,9 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Badge Component matches snapshot for default rendering 1`] = `
4
- <span
5
- class="badge-class"
6
- >
7
- Test Badge
8
- </span>
9
- `;
@@ -1,9 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Button Component renders correctly without crashing 1`] = `
4
- <button
5
- class="button-class"
6
- >
7
- Click Me
8
- </button>
9
- `;
@@ -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,9 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Tag Component renders correctly without crashing 1`] = `
4
- <span
5
- class="tag-class"
6
- >
7
- Sample Tag
8
- </span>
9
- `;
@@ -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
- `;