@sproutsocial/seeds-react-label 1.0.30 → 1.0.32

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.
@@ -66,12 +66,12 @@ $ tsup --dts && cp src/label.css dist/label.css
66
66
 
67
67
  CJS dist/index.js 4.70 KB
68
68
  CJS dist/index.js.map 5.91 KB
69
- CJS ⚡️ Build success in 71ms
69
+ CJS ⚡️ Build success in 80ms
70
70
  ESM dist/esm/index.js 2.60 KB
71
71
  ESM dist/esm/index.js.map 5.75 KB
72
- ESM ⚡️ Build success in 71ms
72
+ ESM ⚡️ Build success in 80ms
73
73
  DTS Build start
74
- DTS ⚡️ Build success in 4502ms
74
+ DTS ⚡️ Build success in 5100ms
75
75
  DTS dist/index.d.ts 665.00 B
76
76
  DTS dist/index.d.mts 665.00 B
77
- Done in 6.22s.
77
+ Done in 6.66s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @sproutsocial/seeds-react-label
2
2
 
3
+ ## 1.0.32
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3371484]
8
+ - @sproutsocial/seeds-react-theme@4.4.0
9
+
10
+ ## 1.0.31
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [56661b6]
15
+ - @sproutsocial/seeds-react-system-props@3.2.0
16
+ - @sproutsocial/seeds-react-theme@4.3.2
17
+ - @sproutsocial/seeds-react-text@1.5.4
18
+
3
19
  ## 1.0.30
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-react-label",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Seeds React Label",
5
5
  "author": "Sprout Social, Inc.",
6
6
  "license": "MIT",
@@ -26,9 +26,9 @@
26
26
  "test:watch": "jest --watch --coverage=false"
27
27
  },
28
28
  "dependencies": {
29
- "@sproutsocial/seeds-react-theme": "^4.3.1",
30
- "@sproutsocial/seeds-react-system-props": "^3.1.4",
31
- "@sproutsocial/seeds-react-text": "^1.5.3"
29
+ "@sproutsocial/seeds-react-theme": "^4.4.0",
30
+ "@sproutsocial/seeds-react-system-props": "^3.2.0",
31
+ "@sproutsocial/seeds-react-text": "^1.5.4"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/react": "^18.0.0",
@@ -10,7 +10,9 @@ describe("Label", () => {
10
10
  });
11
11
 
12
12
  it("renders the Tailwind path with the seeds-label class and qa attribute", () => {
13
- const { container } = render(<Label htmlFor="firstname">First Name:</Label>);
13
+ const { container } = render(
14
+ <Label htmlFor="firstname">First Name:</Label>
15
+ );
14
16
  const label = container.querySelector("[data-qa-label]");
15
17
  expect(label).toHaveClass("seeds-label");
16
18
  expect(label).toHaveAttribute("data-qa-label", "firstname");