@edifice.io/react 2.5.24-develop.20260629180112 → 2.5.24-develop.20260701113224

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": "@edifice.io/react",
3
- "version": "2.5.24-develop.20260629180112",
3
+ "version": "2.5.24-develop.20260701113224",
4
4
  "description": "Edifice React Library",
5
5
  "keywords": [
6
6
  "react",
@@ -140,9 +140,9 @@
140
140
  "swiper": "10.1.0",
141
141
  "ua-parser-js": "1.0.36",
142
142
  "zustand": "4.5.7",
143
- "@edifice.io/bootstrap": "2.5.24-develop.20260629180112",
144
- "@edifice.io/utilities": "2.5.24-develop.20260629180112",
145
- "@edifice.io/tiptap-extensions": "2.5.24-develop.20260629180112"
143
+ "@edifice.io/bootstrap": "2.5.24-develop.20260701113224",
144
+ "@edifice.io/tiptap-extensions": "2.5.24-develop.20260701113224",
145
+ "@edifice.io/utilities": "2.5.24-develop.20260701113224"
146
146
  },
147
147
  "devDependencies": {
148
148
  "@babel/plugin-transform-react-pure-annotations": "7.27.1",
@@ -173,8 +173,8 @@
173
173
  "vite": "5.4.14",
174
174
  "vite-plugin-dts": "4.5.4",
175
175
  "vite-tsconfig-paths": "5.1.4",
176
- "@edifice.io/client": "2.5.24-develop.20260629180112",
177
- "@edifice.io/config": "2.5.24-develop.20260629180112"
176
+ "@edifice.io/client": "2.5.24-develop.20260701113224",
177
+ "@edifice.io/config": "2.5.24-develop.20260701113224"
178
178
  },
179
179
  "peerDependencies": {
180
180
  "@react-spring/web": "9.7.5",
@@ -189,9 +189,10 @@
189
189
  },
190
190
  "gitHead": "3e1c3f5b48505564db1b70aab22063a70336f3b0",
191
191
  "scripts": {
192
- "build": "pnpm build:icons && vite build",
193
- "build:icons": "svgr src/modules/icons/assets --config-file ./svgr.config.cjs",
192
+ "build": "vite build",
194
193
  "build:analyze": "vite build --mode analyze",
194
+ "generate:icons": "rm -rf src/modules/icons/components && svgr src/modules/icons/assets --config-file ./svgr.config.cjs --silent",
195
+ "icons:check": "pnpm generate:icons && git add --intent-to-add -- src/modules/icons/components && git diff --exit-code -- src/modules/icons/components",
195
196
  "fix": "eslint --fix --report-unused-disable-directives --max-warnings 0",
196
197
  "format": "prettier --check \"src/**/*.{ts,tsx}\"",
197
198
  "format:write": "prettier --write \"src/**/*.{ts,tsx}\"",
@@ -1,7 +0,0 @@
1
- import { SVGProps } from 'react';
2
- interface SVGRProps {
3
- title?: string;
4
- titleId?: string;
5
- }
6
- declare const SvgIconStarFavorite: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
- export default SvgIconStarFavorite;