@payfit/unity-icons 2.60.9 → 2.60.10

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": "@payfit/unity-icons",
3
- "version": "2.60.9",
3
+ "version": "2.60.10",
4
4
  "module": "./dist/esm/index.js",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -80,13 +80,13 @@
80
80
  "@payfit/hr-app-eslint": "0.0.0-use.local",
81
81
  "@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
82
82
  "@payfit/storybook-config": "0.0.0-use.local",
83
- "@payfit/unity-themes": "2.60.9",
83
+ "@payfit/unity-themes": "2.60.10",
84
84
  "@payfit/vite-configs": "0.0.0-use.local"
85
85
  },
86
86
  "dependencies": {
87
87
  "react": "18.3.1",
88
88
  "react-dom": "18.3.1",
89
- "@payfit/unity-themes": "2.60.9"
89
+ "@payfit/unity-themes": "2.60.10"
90
90
  },
91
91
  "peerDependenciesMeta": {
92
92
  "storybook": {
@@ -23,10 +23,10 @@ jq '.icons[] | select(.baseName | test("search|glass"; "i"))' \
23
23
  2. Compare all plausible `baseName` matches and their available variants.
24
24
  3. Return the exact icon name, preserving its PascalCase spelling and suffix.
25
25
  4. Only inspect `src/components/icon/Icon.tsx`, `src/components/icon/parts/IconSprite.tsx`, or `src/components/icons-provider/UnityIconsProvider.tsx` when usage or API details are needed.
26
- 5. Prefer `Icon` from `@payfit/unity-components` for product UI. Use `IconSprite` from `@payfit/unity-icons` only when the lower-level sprite API is specifically required.
26
+ 5. Prefer `Icon` from `@payfit/unity-icons` for product UI. Use `IconSprite` from `@payfit/unity-icons` when the lower-level sprite API is specifically required.
27
27
 
28
28
  ```tsx
29
- import { Icon } from '@payfit/unity-components'
29
+ import { Icon } from '@payfit/unity-icons'
30
30
  ;<Icon src="MagnifyingGlassOutlined" size={20} />
31
31
  ```
32
32