@edifice.io/react 2.5.22-develop-b2school.20260608181736 → 2.5.22-develop.20260615120808
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/dist/components/Avatar/Avatar.d.ts +1 -1
- package/dist/components/Dropdown/DropdownTrigger.d.ts +1 -1
- package/dist/components/MediaViewer/MediaViewer.d.ts +1 -1
- package/dist/components/MediaViewer/MediaWrapper.d.ts +1 -1
- package/dist/modules/modals/OnboardingModal/index.d.ts +1 -1
- package/package.json +8 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { Color } from '
|
|
2
|
+
import { Color } from '../../types/color';
|
|
3
3
|
export type AvatarVariants = 'square' | 'rounded' | 'circle';
|
|
4
4
|
export type AvatarSizes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
5
5
|
export interface AvatarProps extends React.ComponentPropsWithRef<'img'> {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as OnboardingModal } from './OnboardingModal';
|
|
2
|
-
export type {
|
|
2
|
+
export type { OnboardingModalRef } from './OnboardingModal';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.5.22-develop
|
|
3
|
+
"version": "2.5.22-develop.20260615120808",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -134,9 +134,9 @@
|
|
|
134
134
|
"react-slugify": "3.0.3",
|
|
135
135
|
"swiper": "10.1.0",
|
|
136
136
|
"ua-parser-js": "1.0.36",
|
|
137
|
-
"@edifice.io/bootstrap": "2.5.22-develop
|
|
138
|
-
"@edifice.io/
|
|
139
|
-
"@edifice.io/
|
|
137
|
+
"@edifice.io/bootstrap": "2.5.22-develop.20260615120808",
|
|
138
|
+
"@edifice.io/utilities": "2.5.22-develop.20260615120808",
|
|
139
|
+
"@edifice.io/tiptap-extensions": "2.5.22-develop.20260615120808"
|
|
140
140
|
},
|
|
141
141
|
"devDependencies": {
|
|
142
142
|
"@babel/plugin-transform-react-pure-annotations": "7.27.1",
|
|
@@ -167,8 +167,8 @@
|
|
|
167
167
|
"vite": "5.4.14",
|
|
168
168
|
"vite-plugin-dts": "4.5.4",
|
|
169
169
|
"vite-tsconfig-paths": "5.1.4",
|
|
170
|
-
"@edifice.io/client": "2.5.22-develop
|
|
171
|
-
"@edifice.io/config": "2.5.22-develop
|
|
170
|
+
"@edifice.io/client": "2.5.22-develop.20260615120808",
|
|
171
|
+
"@edifice.io/config": "2.5.22-develop.20260615120808"
|
|
172
172
|
},
|
|
173
173
|
"peerDependencies": {
|
|
174
174
|
"@react-spring/web": "9.7.5",
|
|
@@ -187,9 +187,8 @@
|
|
|
187
187
|
"build:icons": "svgr src/modules/icons/assets --config-file ./svgr.config.cjs",
|
|
188
188
|
"build:analyze": "vite build --mode analyze",
|
|
189
189
|
"fix": "eslint --fix --report-unused-disable-directives --max-warnings 0",
|
|
190
|
-
"format": "
|
|
191
|
-
"format:
|
|
192
|
-
"format:write": "npx prettier --write \"src/**/*.{ts,tsx}\"",
|
|
190
|
+
"format": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
191
|
+
"format:write": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
193
192
|
"lint": "eslint",
|
|
194
193
|
"test": "vitest",
|
|
195
194
|
"test:watch": "vitest --watch"
|