@kaizen/tailwind 1.3.5 → 1.3.7

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": "@kaizen/tailwind",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "description": "Kaizen Tailwind presets",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,15 +22,15 @@
22
22
  "private": false,
23
23
  "license": "MIT",
24
24
  "dependencies": {
25
- "@kaizen/design-tokens": "10.7.0"
25
+ "@kaizen/design-tokens": "10.8.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "classnames": "^2.5.1",
29
- "rollup": "^4.24.0",
30
- "tailwindcss": "^3.4.13",
31
- "tslib": "^2.7.0",
32
- "@kaizen/package-bundler": "1.1.7",
33
- "@kaizen/components": "1.64.14"
29
+ "rollup": "^4.24.2",
30
+ "tailwindcss": "^3.4.14",
31
+ "tslib": "^2.8.0",
32
+ "@kaizen/components": "1.67.6",
33
+ "@kaizen/package-bundler": "1.1.8"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "tailwindcss": ">=3.4.7"
@@ -1,5 +1,5 @@
1
1
  import React, { useState } from "react"
2
- import { ClosedIcon, SurveysIcon } from "~components/Icon"
2
+ import { Icon } from "~components/__future__"
3
3
 
4
4
  type Props = {
5
5
  text: string
@@ -25,9 +25,9 @@ export const CodeSnippet = ({ text, onCopy }: Props): React.ReactElement => {
25
25
  <span>{text}</span>
26
26
  <span className="text-underline text-white">
27
27
  {copyIconIsChecked ? (
28
- <ClosedIcon role="img" aria-label="copied" />
28
+ <Icon name="assignment_turned_in" alt="Copied" isFilled />
29
29
  ) : (
30
- <SurveysIcon role="img" aria-label="copy" />
30
+ <Icon name="assignment" alt="Copy" isFilled />
31
31
  )}
32
32
  </span>
33
33
  </p>